Version Notes
Magento Absolute Theme
Download this release
Release Info
Developer | TemplatesMaster |
Extension | magento_absolute_theme_free |
Version | 1.7.0.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0.2 to 1.7.0.2.1
- app/code/community/TM/Core/Block/Adminhtml/Module.php +13 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Grid.php +77 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Grid/Renderer/Actions.php +45 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Grid/Renderer/VersionStatus.php +42 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Manage.php +46 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Form.php +12 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Tab/Main.php +150 -0
- app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Tabs.php +12 -0
- app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Field/Notification.php +11 -0
- app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Fieldset/Modules/List.php +46 -0
- app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Fieldset/Troubleshooting.php +13 -0
- app/code/community/TM/Core/Helper/Data.php +6 -0
- app/code/community/TM/Core/Model/Adminhtml/System/Config/Source/Notification/Channel.php +33 -0
- app/code/community/TM/Core/Model/Module.php +455 -0
- app/code/community/TM/Core/Model/Module/MessageLogger.php +56 -0
- app/code/community/TM/Core/Model/Module/Upgrade.php +727 -0
- app/code/community/TM/Core/Model/Notification/Feed.php +151 -0
- app/code/community/TM/Core/Model/Observer.php +17 -0
- app/code/community/TM/Core/Model/Resource/Module.php +16 -0
- app/code/community/TM/Core/Model/Resource/Module/AdminGridCollection.php +17 -0
- app/code/community/TM/Core/Model/Resource/Module/Collection.php +9 -0
- app/code/community/TM/Core/Model/Resource/Module/MergedCollection.php +496 -0
- app/code/community/TM/Core/Model/Resource/Module/RemoteCollection.php +202 -0
- app/code/community/TM/Core/controllers/Adminhtml/Tmcore/ModuleController.php +100 -0
- app/code/community/TM/Core/etc/adminhtml.xml +45 -0
- app/code/community/TM/Core/etc/config.xml +150 -0
- app/code/community/TM/Core/etc/system.xml +86 -0
- app/code/community/TM/Core/sql/tm_core_setup/mysql4-install-1.0.0.php +23 -0
- app/code/community/TM/Core/sql/tm_core_setup/mysql4-upgrade-1.0.0-1.0.1.php +12 -0
- app/code/local/TM/Ajax/controllers/ProductController.php +1 -1
- app/code/local/TM/Featured/etc/config.xml +15 -15
- app/code/local/TM/Templatef001/etc/config.xml +19 -19
- app/design/frontend/default/f001/template/catalog/navigation/sidebox.phtml +31 -31
- app/design/frontend/default/f001/template/page/html/footer.phtml +1 -1
- app/etc/modules/TM_Ajax.xml +1 -1
- app/etc/modules/TM_Core.xml +9 -0
- app/etc/modules/TM_Featured.xml +11 -11
- package.xml +5 -5
- skin/frontend/default/f001/css/custom.css +314 -314
- skin/frontend/default/f001/css/ie8.css +16 -16
- skin/frontend/default/f001/js/slider.js +89 -89
- skin/frontend/default/f001_green/css/custom.css +329 -329
- skin/frontend/default/f001_green/css/ie8.css +16 -16
- skin/frontend/default/f001_green/js/slider.js +89 -89
- skin/frontend/default/f001_grey/css/custom.css +329 -329
- skin/frontend/default/f001_grey/css/ie8.css +16 -16
- skin/frontend/default/f001_grey/js/slider.js +89 -89
- skin/frontend/default/f001_orange/css/custom.css +331 -331
- skin/frontend/default/f001_orange/css/ie8.css +16 -16
- skin/frontend/default/f001_orange/js/slider.js +89 -89
- skin/frontend/default/f001_pink/css/custom.css +333 -333
- skin/frontend/default/f001_pink/css/ie8.css +16 -16
- skin/frontend/default/f001_pink/js/slider.js +89 -89
- skin/frontend/default/f001_red/css/custom.css +315 -315
- skin/frontend/default/f001_red/css/ie8.css +16 -16
- skin/frontend/default/f001_red/js/slider.js +89 -89
- skin/frontend/default/f001_sea_green/css/custom.css +328 -328
- skin/frontend/default/f001_sea_green/css/ie8.css +16 -16
- skin/frontend/default/f001_sea_green/js/slider.js +89 -89
- skin/frontend/default/f001_silver/css/custom.css +333 -333
- skin/frontend/default/f001_silver/css/ie8.css +16 -16
- skin/frontend/default/f001_silver/js/slider.js +89 -89
- skin/frontend/default/f001_violet/css/custom.css +333 -333
- skin/frontend/default/f001_violet/css/ie8.css +16 -16
- skin/frontend/default/f001_violet/js/slider.js +89 -89
- skin/frontend/default/f001_yellow/css/custom.css +315 -315
- skin/frontend/default/f001_yellow/css/ie8.css +16 -16
- skin/frontend/default/f001_yellow/js/slider.js +89 -89
app/code/community/TM/Core/Block/Adminhtml/Module.php
ADDED
@@ -0,0 +1,13 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module extends Mage_Adminhtml_Block_Widget_Grid_Container
|
4 |
+
{
|
5 |
+
public function __construct()
|
6 |
+
{
|
7 |
+
$this->_controller = 'adminhtml_module';
|
8 |
+
$this->_blockGroup = 'tmcore';
|
9 |
+
$this->_headerText = Mage::helper('tmcore')->__('Modules');
|
10 |
+
parent::__construct();
|
11 |
+
$this->_removeButton('add');
|
12 |
+
}
|
13 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Grid.php
ADDED
@@ -0,0 +1,77 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
4 |
+
{
|
5 |
+
public function __construct()
|
6 |
+
{
|
7 |
+
parent::__construct();
|
8 |
+
$this->setId('moduleGrid');
|
9 |
+
$this->setDefaultSort('code');
|
10 |
+
$this->setDefaultDir('ASC');
|
11 |
+
$this->setSaveParametersInSession(true);
|
12 |
+
$this->setUseAjax(true);
|
13 |
+
$this->setVarNameFilter('module_filter');
|
14 |
+
}
|
15 |
+
|
16 |
+
protected function _prepareCollection()
|
17 |
+
{
|
18 |
+
$collection = Mage::getResourceModel('tmcore/module_AdminGridCollection');
|
19 |
+
$this->setCollection($collection);
|
20 |
+
return parent::_prepareCollection();
|
21 |
+
}
|
22 |
+
|
23 |
+
protected function _prepareColumns()
|
24 |
+
{
|
25 |
+
$this->addColumn('code', array(
|
26 |
+
'header' => Mage::helper('tmcore')->__('Code'),
|
27 |
+
'align' => 'left',
|
28 |
+
'index' => 'code'
|
29 |
+
));
|
30 |
+
|
31 |
+
$this->addColumn('version', array(
|
32 |
+
'header' => Mage::helper('tmcore')->__('Local Version'),
|
33 |
+
'align' => 'right',
|
34 |
+
'index' => 'version',
|
35 |
+
'width' => '80px'
|
36 |
+
));
|
37 |
+
|
38 |
+
$this->addColumn('latest_version', array(
|
39 |
+
'header' => Mage::helper('tmcore')->__('Latest Version'),
|
40 |
+
'align' => 'right',
|
41 |
+
'index' => 'latest_version',
|
42 |
+
'width' => '80px'
|
43 |
+
));
|
44 |
+
|
45 |
+
$this->addColumn('version_status', array(
|
46 |
+
'header' => Mage::helper('tmcore')->__('Version Status'),
|
47 |
+
'width' => '60px',
|
48 |
+
'index' => 'version_status',
|
49 |
+
'renderer' => 'tmcore/adminhtml_module_grid_renderer_versionStatus',
|
50 |
+
'type' => 'options',
|
51 |
+
'options' => Mage::getModel('tmcore/module')->getVersionStatuses()
|
52 |
+
));
|
53 |
+
|
54 |
+
$this->addColumn('actions', array(
|
55 |
+
'header' => Mage::helper('adminnotification')->__('Actions'),
|
56 |
+
'width' => '200px',
|
57 |
+
'filter' => false,
|
58 |
+
'sortable' => false,
|
59 |
+
'renderer' => 'tmcore/adminhtml_module_grid_renderer_actions'
|
60 |
+
));
|
61 |
+
|
62 |
+
return parent::_prepareColumns();
|
63 |
+
}
|
64 |
+
|
65 |
+
public function getGridUrl()
|
66 |
+
{
|
67 |
+
return $this->getUrl('*/*/grid', array('_current'=>true));
|
68 |
+
}
|
69 |
+
|
70 |
+
public function getRowUrl($row)
|
71 |
+
{
|
72 |
+
if ($row->hasUpgradesDir() || $row->getIdentityKeyLink()) {
|
73 |
+
return $this->getUrl('*/*/manage', array('id' => $row->getId()));
|
74 |
+
}
|
75 |
+
return false;
|
76 |
+
}
|
77 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Grid/Renderer/Actions.php
ADDED
@@ -0,0 +1,45 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Grid_Renderer_Actions
|
4 |
+
extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
|
5 |
+
{
|
6 |
+
/**
|
7 |
+
* Renders grid column
|
8 |
+
*
|
9 |
+
* @param Varien_Object $row
|
10 |
+
* @return string
|
11 |
+
*/
|
12 |
+
public function render(Varien_Object $row)
|
13 |
+
{
|
14 |
+
$links = array();
|
15 |
+
|
16 |
+
if ($row->getChangelog()) {
|
17 |
+
$links[] = sprintf(
|
18 |
+
'<a href="javascript:void(0)" onclick="%s">%s</a><div style="display:none" class="changelog"><div class="title">%s</div><div class="content">%s</div></div>',
|
19 |
+
"tmcoreWindow.update(this.next('.changelog').down('.content').innerHTML, this.next('.changelog').down('.title').innerHTML).show()",
|
20 |
+
Mage::helper('tmcore')->__('Changelog'),
|
21 |
+
strip_tags($row->getCode()),
|
22 |
+
nl2br(htmlspecialchars($row->getChangelog()))
|
23 |
+
);
|
24 |
+
}
|
25 |
+
|
26 |
+
if ($row->getDownloadLink()) {
|
27 |
+
$links[] = sprintf(
|
28 |
+
'<a href="%s" title="%s" onclick="window.open(this.href); return false;">%s</a>',
|
29 |
+
$row->getDownloadLink(),
|
30 |
+
Mage::helper('tmcore')->__('Download Latest Version'),
|
31 |
+
Mage::helper('tmcore')->__('Download')
|
32 |
+
);
|
33 |
+
}
|
34 |
+
|
35 |
+
if ($row->hasUpgradesDir() || $row->getIdentityKeyLink()) {
|
36 |
+
$links[] = sprintf(
|
37 |
+
'<a href="%s">%s</a>',
|
38 |
+
$this->getUrl('*/*/manage/', array('_current' => true, 'id' => $row->getId())),
|
39 |
+
Mage::helper('tmcore')->__('Manage')
|
40 |
+
);
|
41 |
+
}
|
42 |
+
|
43 |
+
return implode(' | ', $links);
|
44 |
+
}
|
45 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Grid/Renderer/VersionStatus.php
ADDED
@@ -0,0 +1,42 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Grid_Renderer_VersionStatus
|
4 |
+
extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
|
5 |
+
{
|
6 |
+
/**
|
7 |
+
* Renders grid column
|
8 |
+
*
|
9 |
+
* @param Varien_Object $row
|
10 |
+
* @return string
|
11 |
+
*/
|
12 |
+
public function render(Varien_Object $row)
|
13 |
+
{
|
14 |
+
/**
|
15 |
+
* @var TM_Core_Model_Module
|
16 |
+
*/
|
17 |
+
$module = Mage::getSingleton('tmcore/module');
|
18 |
+
$status = $row->getData($this->getColumn()->getIndex());
|
19 |
+
|
20 |
+
if (null === $status) {
|
21 |
+
return '';
|
22 |
+
}
|
23 |
+
|
24 |
+
$title = '';
|
25 |
+
switch ($status) {
|
26 |
+
case TM_Core_Model_Module::VERSION_UPDATED:
|
27 |
+
$class = 'notice';
|
28 |
+
break;
|
29 |
+
case TM_Core_Model_Module::VERSION_OUTDATED:
|
30 |
+
$class = 'minor';
|
31 |
+
$title = Mage::helper('tmcore')->__('Upgrades are not installed');
|
32 |
+
break;
|
33 |
+
case TM_Core_Model_Module::VERSION_DEPRECATED:
|
34 |
+
$class = 'major';
|
35 |
+
$title = Mage::helper('tmcore')->__('New version is available');
|
36 |
+
break;
|
37 |
+
}
|
38 |
+
$value = $module->getVersionStatuses($status);
|
39 |
+
|
40 |
+
return '<span class="grid-severity-' . $class . '" title="' . $title . '"><span>' . $value . '</span></span>';
|
41 |
+
}
|
42 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Manage.php
ADDED
@@ -0,0 +1,46 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Manage extends Mage_Adminhtml_Block_Widget_Form_Container
|
4 |
+
{
|
5 |
+
public function __construct()
|
6 |
+
{
|
7 |
+
$this->_objectId = 'id';
|
8 |
+
$this->_blockGroup = 'tmcore';
|
9 |
+
$this->_controller = 'adminhtml_module';
|
10 |
+
$this->_mode = 'manage';
|
11 |
+
|
12 |
+
parent::__construct();
|
13 |
+
|
14 |
+
$this->setData('form_action_url', $this->getUrl('*/*/run'));
|
15 |
+
$this->_updateButton('save', 'label', Mage::helper('tmcore')->__('Run'));
|
16 |
+
$this->_removeButton('delete');
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Get edit form container header text
|
21 |
+
*
|
22 |
+
* @return string
|
23 |
+
*/
|
24 |
+
public function getHeaderText()
|
25 |
+
{
|
26 |
+
$model = Mage::registry('tmcore_module');
|
27 |
+
if ($model->getDataVersion()) { // module is installed already
|
28 |
+
if ($model->getUpgradesToRun()) {
|
29 |
+
$label = 'Upgrade and Install/Reinstall %s %s (Data version %s)';
|
30 |
+
} else {
|
31 |
+
$label = 'Install or Reinstall %s %s (Data version %s)';
|
32 |
+
}
|
33 |
+
return Mage::helper('tmcore')->__(
|
34 |
+
$label,
|
35 |
+
$model->getCode(),
|
36 |
+
$model->getVersion(),
|
37 |
+
$model->getDataVersion()
|
38 |
+
);
|
39 |
+
}
|
40 |
+
return Mage::helper('tmcore')->__(
|
41 |
+
'Install %s %s',
|
42 |
+
$model->getCode(),
|
43 |
+
$model->getVersion()
|
44 |
+
);
|
45 |
+
}
|
46 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Form.php
ADDED
@@ -0,0 +1,12 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Manage_Form extends Mage_Adminhtml_Block_Widget_Form
|
4 |
+
{
|
5 |
+
protected function _prepareForm()
|
6 |
+
{
|
7 |
+
$form = new Varien_Data_Form(array('id' => 'edit_form', 'action' => $this->getData('action'), 'method' => 'post'));
|
8 |
+
$form->setUseContainer(true);
|
9 |
+
$this->setForm($form);
|
10 |
+
return parent::_prepareForm();
|
11 |
+
}
|
12 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Tab/Main.php
ADDED
@@ -0,0 +1,150 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Manage_Tab_Main
|
4 |
+
extends Mage_Adminhtml_Block_Widget_Form
|
5 |
+
implements Mage_Adminhtml_Block_Widget_Tab_Interface
|
6 |
+
{
|
7 |
+
protected function _prepareForm()
|
8 |
+
{
|
9 |
+
$model = Mage::registry('tmcore_module');
|
10 |
+
|
11 |
+
$form = new Varien_Data_Form(
|
12 |
+
array('id' => 'edit_form', 'action' => $this->getData('action'), 'method' => 'post')
|
13 |
+
);
|
14 |
+
|
15 |
+
$form->setHtmlIdPrefix('module_');
|
16 |
+
|
17 |
+
$stores = Mage::getSingleton('adminhtml/system_store')->getStoreOptionHash(true);
|
18 |
+
if (isset($stores[0])) {
|
19 |
+
$stores[0] = Mage::helper('adminhtml')->__('All Store Views');
|
20 |
+
}
|
21 |
+
|
22 |
+
if ($model->getDataVersion() && ($upgrades = $model->getUpgradesToRun())) {
|
23 |
+
$fieldset = $form->addFieldset('upgrade_fieldset', array(
|
24 |
+
'legend' => Mage::helper('tmcore')->__('Upgrade Information'),
|
25 |
+
'class' => 'fieldset-wide'
|
26 |
+
));
|
27 |
+
$fieldset->addField('skip_upgrade', 'checkbox', array(
|
28 |
+
'name' => 'skip_upgrade',
|
29 |
+
'label' => Mage::helper('tmcore')->__('Activate this checkbox, if you want to skip the upgrade operations'),
|
30 |
+
'title' => Mage::helper('tmcore')->__('Activate this checkbox, if you want to skip the upgrade operations'),
|
31 |
+
'value' => 1
|
32 |
+
));
|
33 |
+
|
34 |
+
$label = Mage::helper('tmcore')->__(
|
35 |
+
'Module data will be upgraded from %s to %s at the following stores',
|
36 |
+
$model->getDataVersion(),
|
37 |
+
$upgrades[count($upgrades) - 1]
|
38 |
+
);
|
39 |
+
$fieldset->addField('installed_stores', 'textarea', array(
|
40 |
+
'label' => $label,
|
41 |
+
'title' => $label,
|
42 |
+
'value' => implode("\n", array_intersect_key($stores, array_flip($model->getStores()))),
|
43 |
+
'readonly' => 1
|
44 |
+
));
|
45 |
+
}
|
46 |
+
|
47 |
+
$fieldset = $form->addFieldset('base_fieldset', array(
|
48 |
+
'legend' => Mage::helper('tmcore')->__('Install and Reinstall Information'),
|
49 |
+
'class' => 'fieldset-wide'
|
50 |
+
));
|
51 |
+
|
52 |
+
$fieldset->addField('code', 'hidden', array(
|
53 |
+
'name' => 'id'
|
54 |
+
));
|
55 |
+
|
56 |
+
if ($model->isValidationRequired()) {
|
57 |
+
$note = '';
|
58 |
+
if ($model->getRemote()) {
|
59 |
+
$link = $model->getRemote()->getIdentityKeyLink();
|
60 |
+
$note = Mage::helper('tmcore')->__(
|
61 |
+
'Get your identity key at <a href="%s" title="%s" target="_blank">%s</a>',
|
62 |
+
$link,
|
63 |
+
$link,
|
64 |
+
$link
|
65 |
+
);
|
66 |
+
}
|
67 |
+
$fieldset->addField('identity_key', 'textarea', array(
|
68 |
+
'name' => 'identity_key',
|
69 |
+
'required' => true,
|
70 |
+
'label' => Mage::helper('tmcore')->__('Identity Key'),
|
71 |
+
'title' => Mage::helper('tmcore')->__('Identity Key'),
|
72 |
+
'note' => $note
|
73 |
+
));
|
74 |
+
}
|
75 |
+
|
76 |
+
$field = $fieldset->addField('new_stores', 'multiselect', array(
|
77 |
+
'name' => 'new_stores[]',
|
78 |
+
'label' => Mage::helper('tmcore')->__('Select stores to install or reinstall module'),
|
79 |
+
'title' => Mage::helper('tmcore')->__('Select stores to install or reinstall module'),
|
80 |
+
'values' => Mage::getSingleton('adminhtml/system_store')->getStoreValuesForForm(false, true)
|
81 |
+
));
|
82 |
+
$renderer = $this->getLayout()->createBlock('adminhtml/store_switcher_form_renderer_fieldset_element');
|
83 |
+
$field->setRenderer($renderer);
|
84 |
+
|
85 |
+
if ($installedStores = $model->getStores()) {
|
86 |
+
$fieldset->addField('installed_stores_info', 'label', array(
|
87 |
+
'label' => Mage::helper('tmcore')->__('Module is already installed at following stores'),
|
88 |
+
'title' => Mage::helper('tmcore')->__('Module is already installed at following stores'),
|
89 |
+
'value' => implode(", ", array_intersect_key($stores, array_flip($installedStores))),
|
90 |
+
'readonly' => 1
|
91 |
+
));
|
92 |
+
}
|
93 |
+
|
94 |
+
$form->addValues($model->getData());
|
95 |
+
$this->setForm($form);
|
96 |
+
|
97 |
+
return parent::_prepareForm();
|
98 |
+
}
|
99 |
+
|
100 |
+
/**
|
101 |
+
* Prepare label for tab
|
102 |
+
*
|
103 |
+
* @return string
|
104 |
+
*/
|
105 |
+
public function getTabLabel()
|
106 |
+
{
|
107 |
+
return Mage::helper('cms')->__('Main');
|
108 |
+
}
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Prepare title for tab
|
112 |
+
*
|
113 |
+
* @return string
|
114 |
+
*/
|
115 |
+
public function getTabTitle()
|
116 |
+
{
|
117 |
+
return Mage::helper('cms')->__('Main');
|
118 |
+
}
|
119 |
+
|
120 |
+
/**
|
121 |
+
* Returns status flag about this tab can be shown or not
|
122 |
+
*
|
123 |
+
* @return true
|
124 |
+
*/
|
125 |
+
public function canShowTab()
|
126 |
+
{
|
127 |
+
return true;
|
128 |
+
}
|
129 |
+
|
130 |
+
/**
|
131 |
+
* Returns status flag about this tab hidden or not
|
132 |
+
*
|
133 |
+
* @return true
|
134 |
+
*/
|
135 |
+
public function isHidden()
|
136 |
+
{
|
137 |
+
return false;
|
138 |
+
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Check permission for passed action
|
142 |
+
*
|
143 |
+
* @param string $action
|
144 |
+
* @return bool
|
145 |
+
*/
|
146 |
+
protected function _isAllowedAction($action)
|
147 |
+
{
|
148 |
+
return Mage::getSingleton('admin/session')->isAllowed('tmcore/module/' . $action);
|
149 |
+
}
|
150 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Tabs.php
ADDED
@@ -0,0 +1,12 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_Module_Manage_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
4 |
+
{
|
5 |
+
public function __construct()
|
6 |
+
{
|
7 |
+
parent::__construct();
|
8 |
+
$this->setId('module_tabs');
|
9 |
+
$this->setDestElementId('edit_form');
|
10 |
+
$this->setTitle(Mage::helper('tmcore')->__('Manage Module'));
|
11 |
+
}
|
12 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Field/Notification.php
ADDED
@@ -0,0 +1,11 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_System_Config_Form_Field_Notification extends Mage_Adminhtml_Block_System_Config_Form_Field
|
4 |
+
{
|
5 |
+
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
6 |
+
{
|
7 |
+
$element->setValue(Mage::app()->loadCache('tmcore_notifications_lastcheck'));
|
8 |
+
$format = Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM);
|
9 |
+
return Mage::app()->getLocale()->date(intval($element->getValue()))->toString($format);
|
10 |
+
}
|
11 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Fieldset/Modules/List.php
ADDED
@@ -0,0 +1,46 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_System_Config_Form_Fieldset_Modules_List
|
4 |
+
extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
|
5 |
+
{
|
6 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
7 |
+
{
|
8 |
+
$html = $this->_getHeaderHtml($element);
|
9 |
+
$modules = Mage::getConfig()->getNode('modules')->children();
|
10 |
+
$linkTitle = Mage::helper('tmcore')->__('Open Extension Page');
|
11 |
+
foreach ($modules as $moduleName => $values) {
|
12 |
+
if (0 !== strpos($moduleName, 'TM_')) {
|
13 |
+
continue;
|
14 |
+
}
|
15 |
+
|
16 |
+
if ($values->tm_link) {
|
17 |
+
if (@is_readable(MAGENTO_ROOT . '/lib/Varien/Data/Form/Element/Link.php')) {
|
18 |
+
$field = $element->addField($moduleName, 'link', array(
|
19 |
+
'label' => $moduleName,
|
20 |
+
'value' => (string) $values->version,
|
21 |
+
'href' => (string) $values->tm_link,
|
22 |
+
'onclick' => 'window.open(this.href); return false;',
|
23 |
+
'title' => $linkTitle
|
24 |
+
));
|
25 |
+
} else {
|
26 |
+
$link = (string) $values->tm_link;
|
27 |
+
$moduleName = "<a href='{$link}' onclick='window.open(this.href); return false;' title='{$linkTitle}'>{$moduleName}</a>";
|
28 |
+
|
29 |
+
$field = $element->addField($moduleName, 'label', array(
|
30 |
+
'label' => $moduleName,
|
31 |
+
'value' => (string) $values->version
|
32 |
+
));
|
33 |
+
}
|
34 |
+
} else {
|
35 |
+
$field = $element->addField($moduleName, 'label', array(
|
36 |
+
'label' => $moduleName,
|
37 |
+
'value' => (string) $values->version
|
38 |
+
));
|
39 |
+
}
|
40 |
+
$html .= $field->toHtml();
|
41 |
+
}
|
42 |
+
$html .= $this->_getFooterHtml($element);
|
43 |
+
|
44 |
+
return $html;
|
45 |
+
}
|
46 |
+
}
|
app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Fieldset/Troubleshooting.php
ADDED
@@ -0,0 +1,13 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Block_Adminhtml_System_Config_Form_Fieldset_Troubleshooting
|
4 |
+
extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
|
5 |
+
{
|
6 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
7 |
+
{
|
8 |
+
$html = $this->_getHeaderHtml($element);
|
9 |
+
$html .= Mage::helper('tmcore')->__(Mage::getStoreConfig('tmcore/troubleshooting/text'));
|
10 |
+
$html .= $this->_getFooterHtml($element);
|
11 |
+
return $html;
|
12 |
+
}
|
13 |
+
}
|
app/code/community/TM/Core/Helper/Data.php
ADDED
@@ -0,0 +1,6 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Helper_Data extends Mage_Core_Helper_Abstract
|
4 |
+
{
|
5 |
+
|
6 |
+
}
|
app/code/community/TM/Core/Model/Adminhtml/System/Config/Source/Notification/Channel.php
ADDED
@@ -0,0 +1,33 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Adminhtml_System_Config_Source_Notification_Channel
|
4 |
+
{
|
5 |
+
const CHANNEL_INSTALLED = 'installed';
|
6 |
+
const CHANNEL_PROMO = 'promo';
|
7 |
+
const CHANNEL_RELEASE = 'release';
|
8 |
+
const CHANNEL_UPDATE = 'update';
|
9 |
+
const CHANNEL_OTHER = 'other';
|
10 |
+
|
11 |
+
protected $_labels = array(
|
12 |
+
self::CHANNEL_INSTALLED => 'Installed products', // must be first item
|
13 |
+
// @see TM_Notifier_Block_Adminhtml_Message_Edit_Form~45
|
14 |
+
// unset($channels[0]);
|
15 |
+
self::CHANNEL_PROMO => 'Product promotions and discounts',
|
16 |
+
self::CHANNEL_RELEASE => 'New Products',
|
17 |
+
self::CHANNEL_UPDATE => 'Product updates',
|
18 |
+
self::CHANNEL_OTHER => 'Other'
|
19 |
+
);
|
20 |
+
|
21 |
+
public function toOptionArray()
|
22 |
+
{
|
23 |
+
$filters = array();
|
24 |
+
$helper = Mage::helper('core');
|
25 |
+
foreach ($this->_labels as $value => $label) {
|
26 |
+
$filters[] = array(
|
27 |
+
'value' => $value,
|
28 |
+
'label' => $helper->__($label)
|
29 |
+
);
|
30 |
+
}
|
31 |
+
return $filters;
|
32 |
+
}
|
33 |
+
}
|
app/code/community/TM/Core/Model/Module.php
ADDED
@@ -0,0 +1,455 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Module extends Mage_Core_Model_Abstract
|
4 |
+
{
|
5 |
+
const VERSION_UPDATED = 1;
|
6 |
+
const VERSION_OUTDATED = 2; // new upgrades are avaialble
|
7 |
+
const VERSION_DEPRECATED = 3; // new version is avaialble but now uploaded
|
8 |
+
|
9 |
+
const XML_USE_HTTPS_PATH = 'tmcore/license/use_https';
|
10 |
+
const XML_VALIDATE_URL_PATH = 'tmcore/license/url';
|
11 |
+
|
12 |
+
/**
|
13 |
+
* @var TM_Core_Model_Module_ErrorLogger
|
14 |
+
*/
|
15 |
+
protected static $_messageLogger = null;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Retrieve Severity collection array
|
19 |
+
*
|
20 |
+
* @return array|string
|
21 |
+
*/
|
22 |
+
public function getVersionStatuses($status = null)
|
23 |
+
{
|
24 |
+
$versionStatuses = array(
|
25 |
+
self::VERSION_UPDATED => Mage::helper('tmcore')->__('updated'),
|
26 |
+
self::VERSION_OUTDATED => Mage::helper('tmcore')->__('outdated'),
|
27 |
+
self::VERSION_DEPRECATED => Mage::helper('tmcore')->__('deprecated')
|
28 |
+
);
|
29 |
+
|
30 |
+
if (!is_null($status)) {
|
31 |
+
if (isset($versionStatuses[$status])) {
|
32 |
+
return $versionStatuses[$status];
|
33 |
+
}
|
34 |
+
return null;
|
35 |
+
}
|
36 |
+
|
37 |
+
return $versionStatuses;
|
38 |
+
}
|
39 |
+
|
40 |
+
protected function _construct()
|
41 |
+
{
|
42 |
+
$this->_init('tmcore/module');
|
43 |
+
}
|
44 |
+
|
45 |
+
public function load($id, $field=null)
|
46 |
+
{
|
47 |
+
parent::load($id, $field);
|
48 |
+
|
49 |
+
$xml = Mage::getConfig()->getNode('modules/' . $id);
|
50 |
+
$this->setId($id);
|
51 |
+
$this->setDepends(array());
|
52 |
+
if ($xml) {
|
53 |
+
$data = $xml->asCanonicalArray();
|
54 |
+
if (isset($data['depends']) && is_array($data['depends'])) {
|
55 |
+
$data['depends'] = array_keys($data['depends']);
|
56 |
+
} else {
|
57 |
+
$data['depends'] = array();
|
58 |
+
}
|
59 |
+
$this->addData($data);
|
60 |
+
}
|
61 |
+
|
62 |
+
return $this;
|
63 |
+
}
|
64 |
+
|
65 |
+
/**
|
66 |
+
* Merge new_store_ids and store_ids arrays
|
67 |
+
*
|
68 |
+
* @return Mage_Core_Model_Abstract
|
69 |
+
*/
|
70 |
+
protected function _beforeSave()
|
71 |
+
{
|
72 |
+
$oldStores = $this->getOldStores();
|
73 |
+
$newStores = $this->getNewStoreIds();
|
74 |
+
if (is_array($newStores)) {
|
75 |
+
$stores = array_merge($oldStores, $newStores);
|
76 |
+
$this->setStoreIds(implode(',', array_unique($stores)));
|
77 |
+
}
|
78 |
+
return parent::_beforeSave();
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* Retrieve module remote information
|
83 |
+
*
|
84 |
+
* @return Varien_Object
|
85 |
+
*/
|
86 |
+
public function getRemote()
|
87 |
+
{
|
88 |
+
if (null === $this->getData('remote')) {
|
89 |
+
$remote = Mage::getResourceModel('tmcore/module_remoteCollection')
|
90 |
+
->getItemById($this->getId());
|
91 |
+
|
92 |
+
$this->setData('remote', $remote);
|
93 |
+
}
|
94 |
+
return $this->getData('remote');
|
95 |
+
}
|
96 |
+
|
97 |
+
/**
|
98 |
+
* Retreive is validation required flag.
|
99 |
+
* True, if remote has identity_key_link
|
100 |
+
*
|
101 |
+
* @return boolean
|
102 |
+
*/
|
103 |
+
public function isValidationRequired()
|
104 |
+
{
|
105 |
+
return !$this->getRemote() || $this->getRemote()->getIdentityKeyLink();
|
106 |
+
}
|
107 |
+
|
108 |
+
/**
|
109 |
+
* Validates module license
|
110 |
+
*
|
111 |
+
* @return true|array Response
|
112 |
+
* <pre>
|
113 |
+
* error : error_message[optional]
|
114 |
+
* success: true|false
|
115 |
+
* </pre>
|
116 |
+
*/
|
117 |
+
public function validateLicense()
|
118 |
+
{
|
119 |
+
if (!$this->isValidationRequired()) {
|
120 |
+
return true;
|
121 |
+
}
|
122 |
+
|
123 |
+
$key = trim($this->getIdentityKey());
|
124 |
+
if (empty($key)) {
|
125 |
+
return array('error' => array('Identity key is required'));
|
126 |
+
}
|
127 |
+
|
128 |
+
// key format is: encoded_site:secret_key:optional_suffix
|
129 |
+
$parts = explode(':', $key);
|
130 |
+
if (count($parts) < 3) {
|
131 |
+
return array('error' => array('Identity key is not valid'));
|
132 |
+
}
|
133 |
+
list($site, $secret, $suffix) = explode(':', $key);
|
134 |
+
|
135 |
+
// @todo implement cached response storage
|
136 |
+
try {
|
137 |
+
$client = new Zend_Http_Client();
|
138 |
+
$adapter = new Zend_Http_Client_Adapter_Curl();
|
139 |
+
$client->setAdapter($adapter);
|
140 |
+
$client->setUri($this->_getValidateUri($site));
|
141 |
+
$client->setConfig(array('maxredirects'=>0, 'timeout'=>30));
|
142 |
+
$client->setParameterGet('key', $secret);
|
143 |
+
$client->setParameterGet('suffix', $suffix);
|
144 |
+
$module = $this->getTmPurchaseCode() ? $this->getTmPurchaseCode() : $this->getCode();
|
145 |
+
$client->setParameterGet('module', $module);
|
146 |
+
$client->setParameterGet('module_code', $this->getCode());
|
147 |
+
$client->setParameterGet('domain', Mage::app()->getRequest()->getHttpHost());
|
148 |
+
$response = $client->request();
|
149 |
+
$responseBody = $response->getBody();
|
150 |
+
} catch (Exception $e) {
|
151 |
+
return array('error' => array(
|
152 |
+
'Response error: %s',
|
153 |
+
$e->getMessage()
|
154 |
+
));
|
155 |
+
}
|
156 |
+
|
157 |
+
return $this->_parseResponse($responseBody);
|
158 |
+
}
|
159 |
+
|
160 |
+
/**
|
161 |
+
* Parse server response
|
162 |
+
*
|
163 |
+
* @param string $response
|
164 |
+
* <pre>
|
165 |
+
* "{success: true}" or "{error: error_message}"
|
166 |
+
* </pre>
|
167 |
+
*/
|
168 |
+
protected function _parseResponse($response)
|
169 |
+
{
|
170 |
+
try {
|
171 |
+
$result = Mage::helper('core')->jsonDecode($response);
|
172 |
+
if (!is_array($result)) {
|
173 |
+
throw new Exception('Decoding failed');
|
174 |
+
}
|
175 |
+
} catch (Exception $e) {
|
176 |
+
$result = array('error' => array(
|
177 |
+
'Sorry, try again in five minutes. Validation response parsing error: %s',
|
178 |
+
$e->getMessage()
|
179 |
+
));
|
180 |
+
}
|
181 |
+
return $result;
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* Retrieve validation url according to the encoded $site
|
186 |
+
*
|
187 |
+
* @param string $site Base64 encoded site url [example.com]
|
188 |
+
*/
|
189 |
+
protected function _getValidateUri($site)
|
190 |
+
{
|
191 |
+
$site = base64_decode($site);
|
192 |
+
return (Mage::getStoreConfigFlag(self::XML_USE_HTTPS_PATH) ? 'https://' : 'http://')
|
193 |
+
. rtrim($site, '/ ')
|
194 |
+
. Mage::getStoreConfig(self::XML_VALIDATE_URL_PATH);
|
195 |
+
}
|
196 |
+
|
197 |
+
|
198 |
+
/**
|
199 |
+
* Set the stores, where the module should be installed or reinstalled
|
200 |
+
*
|
201 |
+
* @param array $ids
|
202 |
+
* @return TM_Core_Model_Module
|
203 |
+
*/
|
204 |
+
public function setNewStores(array $ids)
|
205 |
+
{
|
206 |
+
$this->setData('new_store_ids', array_unique($ids));
|
207 |
+
return $this;
|
208 |
+
}
|
209 |
+
|
210 |
+
/**
|
211 |
+
* Retieve store ids, where the module is already installed
|
212 |
+
*
|
213 |
+
* @return array
|
214 |
+
*/
|
215 |
+
public function getOldStores()
|
216 |
+
{
|
217 |
+
$ids = $this->getStoreIds();
|
218 |
+
if (null === $ids || '' === $ids) {
|
219 |
+
return array();
|
220 |
+
}
|
221 |
+
if (!is_array($ids)) {
|
222 |
+
$ids = explode(',', $ids);
|
223 |
+
}
|
224 |
+
return $ids;
|
225 |
+
}
|
226 |
+
|
227 |
+
/**
|
228 |
+
* Retieve store ids, where the module is already installed
|
229 |
+
*
|
230 |
+
* @return array
|
231 |
+
*/
|
232 |
+
public function getStores()
|
233 |
+
{
|
234 |
+
return $this->getOldStores();
|
235 |
+
}
|
236 |
+
|
237 |
+
/**
|
238 |
+
* Retrieve store ids to install module on
|
239 |
+
*
|
240 |
+
* @return array
|
241 |
+
*/
|
242 |
+
public function getNewStores()
|
243 |
+
{
|
244 |
+
return $this->getNewStoreIds();
|
245 |
+
}
|
246 |
+
|
247 |
+
public function isInstalled()
|
248 |
+
{
|
249 |
+
return false;// we always can install the extension to the new stores
|
250 |
+
}
|
251 |
+
|
252 |
+
/**
|
253 |
+
* Checks is the upgrades directory is exists in the module
|
254 |
+
*
|
255 |
+
* @return boolean
|
256 |
+
*/
|
257 |
+
public function hasUpgradesDir()
|
258 |
+
{
|
259 |
+
return is_readable($this->getUpgradesPath());
|
260 |
+
}
|
261 |
+
|
262 |
+
/**
|
263 |
+
* Retrieve the list of not installed upgrade filenames
|
264 |
+
* sorted by version_compare.
|
265 |
+
* The list could be filtered with optional from and to parameters.
|
266 |
+
* These parameters are usefull, when the module is installed and new upgrades
|
267 |
+
* are available
|
268 |
+
*
|
269 |
+
* @param string $from
|
270 |
+
* @return array
|
271 |
+
*/
|
272 |
+
public function getUpgradesToRun($from = null)
|
273 |
+
{
|
274 |
+
if (null === $from) {
|
275 |
+
$from = $this->getDataVersion();
|
276 |
+
}
|
277 |
+
|
278 |
+
$upgrades = array();
|
279 |
+
foreach ($this->getUpgrades() as $upgradeVersion) {
|
280 |
+
if (version_compare($from, $upgradeVersion) >= 0) {
|
281 |
+
continue;
|
282 |
+
}
|
283 |
+
$upgrades[] = $upgradeVersion;
|
284 |
+
}
|
285 |
+
|
286 |
+
return $upgrades;
|
287 |
+
}
|
288 |
+
|
289 |
+
/**
|
290 |
+
* Retrive the list of all module upgrade filenames
|
291 |
+
* sorted by version_compare
|
292 |
+
*
|
293 |
+
* @return array
|
294 |
+
*/
|
295 |
+
public function getUpgrades()
|
296 |
+
{
|
297 |
+
$upgrades = $this->getData('upgrades');
|
298 |
+
if (is_array($upgrades)) {
|
299 |
+
return $upgrades;
|
300 |
+
}
|
301 |
+
|
302 |
+
try {
|
303 |
+
$dir = $this->getUpgradesPath();
|
304 |
+
if (!is_readable($dir)) {
|
305 |
+
return array();
|
306 |
+
}
|
307 |
+
$dir = new DirectoryIterator($dir);
|
308 |
+
} catch (Exception $e) {
|
309 |
+
// module doesn't has upgrades
|
310 |
+
return array();
|
311 |
+
}
|
312 |
+
|
313 |
+
$upgrades = array();
|
314 |
+
foreach ($dir as $file) {
|
315 |
+
$file = $file->getFilename();
|
316 |
+
if (false === strstr($file, '.php')) {
|
317 |
+
continue;
|
318 |
+
}
|
319 |
+
$upgrades[] = substr($file, 0, -4);
|
320 |
+
}
|
321 |
+
usort($upgrades, 'version_compare');
|
322 |
+
$this->setData('upgrades', $upgrades);
|
323 |
+
return $upgrades;
|
324 |
+
}
|
325 |
+
|
326 |
+
/**
|
327 |
+
* Run the module upgrades. Depends run first.
|
328 |
+
*
|
329 |
+
* @return void
|
330 |
+
*/
|
331 |
+
public function up()
|
332 |
+
{
|
333 |
+
$oldStores = $this->getOldStores(); // update to newest data_version
|
334 |
+
$newStores = $this->getNewStores(); // run all upgrade files
|
335 |
+
if (!count($oldStores) && !count($newStores)) {
|
336 |
+
return;
|
337 |
+
}
|
338 |
+
|
339 |
+
foreach ($this->getDepends() as $moduleCode) {
|
340 |
+
if (0 !== strpos($moduleCode, 'TM_')) {
|
341 |
+
continue;
|
342 |
+
}
|
343 |
+
$this->_getModuleObject($moduleCode)->up();
|
344 |
+
}
|
345 |
+
$saved = false;
|
346 |
+
|
347 |
+
// upgrade currently installed version to the latest data_version
|
348 |
+
if (count($oldStores)) {
|
349 |
+
foreach ($this->getUpgradesToRun() as $version) {
|
350 |
+
// customer able to skip upgrading data of installed modules
|
351 |
+
if (!$this->getSkipUpgrade()) {
|
352 |
+
$this->getUpgradeObject($version)
|
353 |
+
->setStoreIds($oldStores)
|
354 |
+
->upgrade();
|
355 |
+
}
|
356 |
+
$this->setDataVersion($version)->save();
|
357 |
+
$saved = true;
|
358 |
+
}
|
359 |
+
}
|
360 |
+
|
361 |
+
// install module to the new stores
|
362 |
+
if (count($newStores)) {
|
363 |
+
foreach ($this->getUpgradesToRun(0) as $version) {
|
364 |
+
$this->getUpgradeObject($version)
|
365 |
+
->setStoreIds($newStores)
|
366 |
+
->upgrade();
|
367 |
+
$this->setDataVersion($version)->save();
|
368 |
+
$saved = true;
|
369 |
+
}
|
370 |
+
}
|
371 |
+
|
372 |
+
if (!$saved) {
|
373 |
+
$this->save(); // identity key could be updated without running the upgrades
|
374 |
+
}
|
375 |
+
}
|
376 |
+
|
377 |
+
/**
|
378 |
+
* Retrieve singleton instance of error logger, used in upgrade file
|
379 |
+
* to write errors and module controller to read them.
|
380 |
+
*
|
381 |
+
* @return TM_Core_Model_Module_MessageLogger
|
382 |
+
*/
|
383 |
+
public function getMessageLogger()
|
384 |
+
{
|
385 |
+
if (null === self::$_messageLogger) {
|
386 |
+
self::$_messageLogger = Mage::getSingleton('tmcore/module_messageLogger');
|
387 |
+
}
|
388 |
+
return self::$_messageLogger;
|
389 |
+
}
|
390 |
+
|
391 |
+
/**
|
392 |
+
* Retrieve upgrade class name from version string:
|
393 |
+
* 1.0.0 => ModuleCode_Upgrade_1_0_0
|
394 |
+
*
|
395 |
+
* @param string $version
|
396 |
+
* @return string Class name
|
397 |
+
*/
|
398 |
+
protected function _getUpgradeClassName($version)
|
399 |
+
{
|
400 |
+
$version = ucwords(preg_replace("/\W+/", " ", $version));
|
401 |
+
$version = str_replace(' ', '_', $version);
|
402 |
+
return $this->getId() . '_Upgrade_' . $version;
|
403 |
+
}
|
404 |
+
|
405 |
+
/**
|
406 |
+
* Returns upgrade class instance by given version
|
407 |
+
*
|
408 |
+
* @param string $version
|
409 |
+
* @return TM_Core_Model_Module_Upgrade
|
410 |
+
*/
|
411 |
+
public function getUpgradeObject($version)
|
412 |
+
{
|
413 |
+
require_once $this->getUpgradesPath() . "/{$version}.php";
|
414 |
+
$className = $this->_getUpgradeClassName($version);
|
415 |
+
$upgrade = new $className();
|
416 |
+
$upgrade->setModule($this);
|
417 |
+
return $upgrade;
|
418 |
+
}
|
419 |
+
|
420 |
+
/**
|
421 |
+
* Retrieve module upgrade directory
|
422 |
+
*
|
423 |
+
* @return string
|
424 |
+
*/
|
425 |
+
public function getUpgradesPath()
|
426 |
+
{
|
427 |
+
return Mage::getBaseDir('code')
|
428 |
+
. DS
|
429 |
+
. $this->_getData('codePool')
|
430 |
+
. DS
|
431 |
+
. uc_words($this->getId(), DS)
|
432 |
+
. DS
|
433 |
+
. 'upgrades';
|
434 |
+
}
|
435 |
+
|
436 |
+
/**
|
437 |
+
* Returns loded module object with copied new_store_ids and skip_upgrade
|
438 |
+
* instructions into it
|
439 |
+
*
|
440 |
+
* @return TM_Core_Model_Module
|
441 |
+
*/
|
442 |
+
protected function _getModuleObject($code)
|
443 |
+
{
|
444 |
+
$module = Mage::getModel('tmcore/module')->load($code)
|
445 |
+
->setNewStores($this->getNewStores())
|
446 |
+
->setSkipUpgrade($this->getSkipUpgrade());
|
447 |
+
|
448 |
+
if (!$module->getIdentityKey()) {
|
449 |
+
// dependent modules will have the same license if not exists
|
450 |
+
$module->setIdentityKey($this->getIdentityKey());
|
451 |
+
}
|
452 |
+
|
453 |
+
return $module;
|
454 |
+
}
|
455 |
+
}
|
app/code/community/TM/Core/Model/Module/MessageLogger.php
ADDED
@@ -0,0 +1,56 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Module_MessageLogger
|
4 |
+
{
|
5 |
+
protected $_messages = array(
|
6 |
+
'errors' => array(),
|
7 |
+
'notices' => array(),
|
8 |
+
'success' => array()
|
9 |
+
);
|
10 |
+
|
11 |
+
/**
|
12 |
+
* @param string $type
|
13 |
+
* @param mixed $error array or string with error message
|
14 |
+
* <pre>
|
15 |
+
* message required
|
16 |
+
* trace optional
|
17 |
+
* </pre>
|
18 |
+
*/
|
19 |
+
public function addError($type, $error)
|
20 |
+
{
|
21 |
+
$this->_messages['errors'][$type][] = $error;
|
22 |
+
}
|
23 |
+
|
24 |
+
public function getErrors()
|
25 |
+
{
|
26 |
+
return $this->_messages['errors'];
|
27 |
+
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @param string $type
|
31 |
+
* @param string $notice
|
32 |
+
*/
|
33 |
+
public function addNotice($type, $notice)
|
34 |
+
{
|
35 |
+
$this->_messages['notices'][$type][] = $notice;
|
36 |
+
}
|
37 |
+
|
38 |
+
public function getNotices()
|
39 |
+
{
|
40 |
+
return $this->_messages['notices'];
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* @param string $type
|
45 |
+
* @param string $notice
|
46 |
+
*/
|
47 |
+
public function addSuccess($type, $success)
|
48 |
+
{
|
49 |
+
$this->_messages['success'][$type][] = $notice;
|
50 |
+
}
|
51 |
+
|
52 |
+
public function getSuccess()
|
53 |
+
{
|
54 |
+
return $this->_messages['success'];
|
55 |
+
}
|
56 |
+
}
|
app/code/community/TM/Core/Model/Module/Upgrade.php
ADDED
@@ -0,0 +1,727 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
abstract class TM_Core_Model_Module_Upgrade extends Varien_Object
|
4 |
+
{
|
5 |
+
/**
|
6 |
+
* @var array Store ids, where the module will be installed
|
7 |
+
*/
|
8 |
+
protected $_storeIds = array();
|
9 |
+
|
10 |
+
/**
|
11 |
+
* @var array Store instances
|
12 |
+
*/
|
13 |
+
protected static $_stores = array();
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Used to guarantee unique backup names in case of duplicate name and date
|
17 |
+
*
|
18 |
+
* @var int
|
19 |
+
*/
|
20 |
+
protected static $_backupIterator = 0;
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Additional operations could be done from this method
|
24 |
+
*/
|
25 |
+
public function up(){}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Retrieve the list of operation to be done,
|
29 |
+
* including module depends.
|
30 |
+
*
|
31 |
+
* Supported operations:
|
32 |
+
* configuration @see runConfiguration
|
33 |
+
* cmsblock @see runCmsblock
|
34 |
+
* cmspage @see runCmspage
|
35 |
+
* easyslide @see runEasyslide
|
36 |
+
* easybanner @see runEasybanner
|
37 |
+
* prolabels @see runProlabels
|
38 |
+
* productAttribute @see runProductAttribute
|
39 |
+
*
|
40 |
+
* @return array
|
41 |
+
*/
|
42 |
+
public function getOperations()
|
43 |
+
{
|
44 |
+
return array();
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Set store ids to run the upgrade on
|
49 |
+
*
|
50 |
+
* @return TM_Core_Model_Module_Upgrade
|
51 |
+
*/
|
52 |
+
public function setStoreIds(array $ids)
|
53 |
+
{
|
54 |
+
if (Mage::app()->isSingleStoreMode()) {
|
55 |
+
$this->_storeIds = array(Mage::app()->getStore(true)->getId());
|
56 |
+
} else {
|
57 |
+
$this->_storeIds = $ids;
|
58 |
+
}
|
59 |
+
return $this;
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Retrieve store ids
|
64 |
+
*
|
65 |
+
* @return array
|
66 |
+
*/
|
67 |
+
public function getStoreIds()
|
68 |
+
{
|
69 |
+
return $this->_storeIds;
|
70 |
+
}
|
71 |
+
|
72 |
+
public function upgrade()
|
73 |
+
{
|
74 |
+
foreach ($this->getOperations() as $operation => $instructions) {
|
75 |
+
$method = 'run' . ucfirst($operation);
|
76 |
+
if (method_exists($this, $method)) {
|
77 |
+
$this->$method($instructions);
|
78 |
+
}
|
79 |
+
}
|
80 |
+
$this->up();
|
81 |
+
}
|
82 |
+
|
83 |
+
/**
|
84 |
+
* @param array $data
|
85 |
+
* <pre>
|
86 |
+
* section/group/field => value,
|
87 |
+
* section/group => array(
|
88 |
+
* field => value,
|
89 |
+
* field => value
|
90 |
+
* )
|
91 |
+
* section => array(
|
92 |
+
* group/field => value,
|
93 |
+
* group => array(
|
94 |
+
* field => value
|
95 |
+
* )
|
96 |
+
* )
|
97 |
+
* </pre>
|
98 |
+
*/
|
99 |
+
public function runConfiguration($data)
|
100 |
+
{
|
101 |
+
$fieldsToAppendValue = array(
|
102 |
+
'design/head/includes'
|
103 |
+
);
|
104 |
+
|
105 |
+
// transform data format to splitted into sections, groups and fields:
|
106 |
+
// section => array(
|
107 |
+
// group => array(
|
108 |
+
// field => value
|
109 |
+
// field => value
|
110 |
+
// )
|
111 |
+
// group => ...
|
112 |
+
// )
|
113 |
+
$sections = array();
|
114 |
+
foreach ($data as $path => $values) {
|
115 |
+
$pathParts = explode('/', $path);
|
116 |
+
$pathCount = count($pathParts);
|
117 |
+
switch ($pathCount) {
|
118 |
+
case 3:
|
119 |
+
$sections[$pathParts[0]][$pathParts[1]][$pathParts[2]] = $values;
|
120 |
+
break;
|
121 |
+
case 2:
|
122 |
+
foreach ($values as $field => $value) {
|
123 |
+
$sections[$pathParts[0]][$pathParts[1]][$field] = $value;
|
124 |
+
}
|
125 |
+
break;
|
126 |
+
case 1:
|
127 |
+
foreach ($values as $group => $fields) {
|
128 |
+
$groupParts = explode('/', $group);
|
129 |
+
$groupCount = count($groupParts);
|
130 |
+
if (2 === $groupCount) {
|
131 |
+
$sections[$pathParts[0]][$groupParts[0]][$groupParts[1]] = $fields;
|
132 |
+
} else {
|
133 |
+
foreach ($fields as $field => $value) {
|
134 |
+
$sections[$pathParts[0]][$groupParts[0]][$field] = $value;
|
135 |
+
}
|
136 |
+
}
|
137 |
+
}
|
138 |
+
break;
|
139 |
+
}
|
140 |
+
}
|
141 |
+
|
142 |
+
foreach ($sections as $section => $values) {
|
143 |
+
// transform fields array to magento config format:
|
144 |
+
// general => array
|
145 |
+
// fields => array
|
146 |
+
// enabled => array
|
147 |
+
// value => 1
|
148 |
+
// load => array
|
149 |
+
// value => 1
|
150 |
+
$groups = array();
|
151 |
+
foreach ($values as $key => $fields) {
|
152 |
+
foreach ($fields as $field => $value) {
|
153 |
+
$groups[$key]['fields'][$field]['value'] = $value;
|
154 |
+
}
|
155 |
+
}
|
156 |
+
|
157 |
+
foreach ($this->getStoreIds() as $storeId) {
|
158 |
+
if (!$storeId) { // all stores selected
|
159 |
+
$website = null;
|
160 |
+
$store = null;
|
161 |
+
} else {
|
162 |
+
$website = $this->_getStore($storeId)->getWebsite()->getCode();
|
163 |
+
$store = $this->_getStore($storeId)->getCode();
|
164 |
+
}
|
165 |
+
|
166 |
+
// get old values of required fields and combine old and new value
|
167 |
+
// foreach ($values as $key => $fields) {
|
168 |
+
// foreach ($fields as $field => $value) {
|
169 |
+
// $path = implode('/', array($section, $key, $field));
|
170 |
+
// if (in_array($path, $fieldsToAppendValue)) {
|
171 |
+
// $oldValue = Mage::getStoreConfig($path, $store);
|
172 |
+
// $groups[$key]['fields'][$field]['value'] .= "\n" . $oldValue;
|
173 |
+
// }
|
174 |
+
// }
|
175 |
+
// }
|
176 |
+
|
177 |
+
try {
|
178 |
+
Mage::getModel('adminhtml/config_data')
|
179 |
+
->setSection($section)
|
180 |
+
->setWebsite($website)
|
181 |
+
->setStore($store)
|
182 |
+
->setGroups($groups)
|
183 |
+
->save();
|
184 |
+
} catch (Exception $e) {
|
185 |
+
$this->_fault('configuration_save', $e);
|
186 |
+
}
|
187 |
+
}
|
188 |
+
}
|
189 |
+
}
|
190 |
+
|
191 |
+
/**
|
192 |
+
* Backup existing blocks if needed and create the required blocks.
|
193 |
+
*
|
194 |
+
* @param array $data
|
195 |
+
* <pre>
|
196 |
+
* header_links => array
|
197 |
+
* title => title,
|
198 |
+
* identifier => identifier,
|
199 |
+
* status => 1,
|
200 |
+
* content => content
|
201 |
+
* </pre>
|
202 |
+
*/
|
203 |
+
public function runCmsblock($data)
|
204 |
+
{
|
205 |
+
$isSingleStore = Mage::app()->isSingleStoreMode();
|
206 |
+
foreach ($data as $blockData) {
|
207 |
+
// backup existing similar blocks
|
208 |
+
$collection = Mage::getModel('cms/block')->getCollection()
|
209 |
+
->addFilter('identifier', $blockData['identifier']);
|
210 |
+
|
211 |
+
if (!$isSingleStore) {
|
212 |
+
$collection->addStoreFilter($this->getStoreIds());
|
213 |
+
}
|
214 |
+
|
215 |
+
foreach ($collection as $block) {
|
216 |
+
$block->load($block->getId()); // load stores
|
217 |
+
$storesToLeave = array_diff($block->getStores(), $this->getStoreIds());
|
218 |
+
if (count($storesToLeave) && !$isSingleStore) {
|
219 |
+
$block->setStores($storesToLeave);
|
220 |
+
} else {
|
221 |
+
$block->setIsActive(0)
|
222 |
+
->setIdentifier($this->_getUniqueString($block->getIdentifier()));
|
223 |
+
}
|
224 |
+
|
225 |
+
try {
|
226 |
+
$block->save();
|
227 |
+
} catch (Exception $e) {
|
228 |
+
$this->_fault('cmsblock_backup', $e);
|
229 |
+
}
|
230 |
+
|
231 |
+
}
|
232 |
+
|
233 |
+
try {
|
234 |
+
// create required block
|
235 |
+
Mage::getModel('cms/block')
|
236 |
+
->setData($blockData)
|
237 |
+
->setStores($this->getStoreIds())
|
238 |
+
->save();
|
239 |
+
} catch (Exception $e) {
|
240 |
+
$this->_fault('cmsblock_save', $e);
|
241 |
+
}
|
242 |
+
}
|
243 |
+
}
|
244 |
+
|
245 |
+
/**
|
246 |
+
* Backup existing pages if needed and create the required pages.
|
247 |
+
*
|
248 |
+
* @param array $data
|
249 |
+
* <pre>
|
250 |
+
* homepage => array
|
251 |
+
* title
|
252 |
+
* root_template
|
253 |
+
* meta_keywords
|
254 |
+
* meta_description
|
255 |
+
* identifier
|
256 |
+
* content_heading
|
257 |
+
* content
|
258 |
+
* is_active
|
259 |
+
* sort_order
|
260 |
+
* layout_update_xml
|
261 |
+
* </pre>
|
262 |
+
*/
|
263 |
+
public function runCmspage($data)
|
264 |
+
{
|
265 |
+
$isSingleStore = Mage::app()->isSingleStoreMode();
|
266 |
+
foreach ($data as $pageData) {
|
267 |
+
// backup existing similar blocks
|
268 |
+
$collection = Mage::getModel('cms/page')->getCollection()
|
269 |
+
->addFilter('identifier', $pageData['identifier']);
|
270 |
+
|
271 |
+
if (!$isSingleStore) {
|
272 |
+
$collection->addStoreFilter($this->getStoreIds());
|
273 |
+
}
|
274 |
+
|
275 |
+
foreach ($collection as $page) {
|
276 |
+
$page->load($page->getId()); // load stores
|
277 |
+
$storesToLeave = array_diff($page->getStoreId(), $this->getStoreIds());
|
278 |
+
if (count($storesToLeave) && !$isSingleStore) {
|
279 |
+
$page->setStores($storesToLeave);
|
280 |
+
} else {
|
281 |
+
$page->setIsActive(0)
|
282 |
+
->setIdentifier($this->_getUniqueString($page->getIdentifier()));
|
283 |
+
}
|
284 |
+
|
285 |
+
try {
|
286 |
+
$page->save();
|
287 |
+
} catch (Exception $e) {
|
288 |
+
$this->_fault('cmspage_backup', $e);
|
289 |
+
}
|
290 |
+
}
|
291 |
+
|
292 |
+
try {
|
293 |
+
// create required page
|
294 |
+
Mage::getModel('cms/page')
|
295 |
+
->setData($pageData)
|
296 |
+
->setStores($this->getStoreIds())
|
297 |
+
->save();
|
298 |
+
} catch (Exception $e) {
|
299 |
+
$this->_fault('cmspage_save', $e);
|
300 |
+
}
|
301 |
+
}
|
302 |
+
}
|
303 |
+
|
304 |
+
/**
|
305 |
+
* If placeholder with the same name already exists - skip and
|
306 |
+
* add banners to existing placeholder
|
307 |
+
* If banner already exists - backup before inserting new one.
|
308 |
+
*
|
309 |
+
* @param array $data
|
310 |
+
* <pre>
|
311 |
+
* name
|
312 |
+
* parent_block
|
313 |
+
* position
|
314 |
+
* status
|
315 |
+
* limit
|
316 |
+
* mode
|
317 |
+
* banner_offset
|
318 |
+
* sort_mode
|
319 |
+
* banners => array(
|
320 |
+
* array(
|
321 |
+
* identifier
|
322 |
+
* sort_order
|
323 |
+
* title
|
324 |
+
* url
|
325 |
+
* image
|
326 |
+
* html
|
327 |
+
* status
|
328 |
+
* mode
|
329 |
+
* target
|
330 |
+
* hide_url
|
331 |
+
* conditions_serialized
|
332 |
+
* )
|
333 |
+
* )
|
334 |
+
* </pre>
|
335 |
+
*/
|
336 |
+
public function runEasybanner($data)
|
337 |
+
{
|
338 |
+
$placeholderDefaults = array(
|
339 |
+
'position' => '',
|
340 |
+
'status' => 1,
|
341 |
+
'limit' => 1,
|
342 |
+
'mode' => 'rotator',
|
343 |
+
'banner_offset' => 1,
|
344 |
+
'sort_mode' => 'sort_order'
|
345 |
+
);
|
346 |
+
$bannerDefaults = array(
|
347 |
+
'sort_order' => 10,
|
348 |
+
'html' => '',
|
349 |
+
'status' => 1,
|
350 |
+
'mode' => 'image',
|
351 |
+
'target' => 'popup',
|
352 |
+
'hide_url' => 0
|
353 |
+
);
|
354 |
+
$isSingleStore = Mage::app()->isSingleStoreMode();
|
355 |
+
foreach ($data as $placeholderData) {
|
356 |
+
$placeholder = Mage::getModel('easybanner/placeholder');
|
357 |
+
if (!empty($placeholderData['name'])) {
|
358 |
+
$placeholder->load($placeholderData['name'], 'name');
|
359 |
+
if (!$placeholder->getId()) {
|
360 |
+
try {
|
361 |
+
$placeholder
|
362 |
+
->setData(array_merge($placeholderDefaults, $placeholderData))
|
363 |
+
->save();
|
364 |
+
} catch (Exception $e) {
|
365 |
+
$this->_fault('easybanner_placeholder_save', $e);
|
366 |
+
}
|
367 |
+
}
|
368 |
+
}
|
369 |
+
|
370 |
+
$bannerDefaults['sort_order'] = 10;
|
371 |
+
foreach ($placeholderData['banners'] as $bannerData) {
|
372 |
+
if (!empty($bannerData['sort_order'])) {
|
373 |
+
$bannerDefaults['sort_order'] = $bannerData['sort_order'];
|
374 |
+
}
|
375 |
+
|
376 |
+
// backup existing similar banners
|
377 |
+
$collection = Mage::getModel('easybanner/banner')->getCollection()
|
378 |
+
->addFilter('identifier', $bannerData['identifier']);
|
379 |
+
|
380 |
+
foreach ($collection as $banner) {
|
381 |
+
$storesToLeave = array_diff($banner->getStoreIds(), $this->getStoreIds());
|
382 |
+
$banner->getPlaceholderIds(); // we should load placeholders, because they will cleared in _AfterSave method
|
383 |
+
if (count($storesToLeave) && !$isSingleStore) {
|
384 |
+
$banner->setStoreIds($storesToLeave);
|
385 |
+
} else {
|
386 |
+
$banner->setStatus(0)
|
387 |
+
->setIdentifier($this->_getUniqueString($banner->getIdentifier()));
|
388 |
+
}
|
389 |
+
|
390 |
+
try {
|
391 |
+
$banner->save();
|
392 |
+
} catch (Exception $e) {
|
393 |
+
$this->_fault('easybanner_banner_backup', $e);
|
394 |
+
}
|
395 |
+
}
|
396 |
+
|
397 |
+
// create required banner
|
398 |
+
$banner = Mage::getModel('easybanner/banner')
|
399 |
+
->setData(array_merge($bannerDefaults, $bannerData))
|
400 |
+
->setStoreIds($this->getStoreIds());
|
401 |
+
|
402 |
+
if ($placeholder->getId()) {
|
403 |
+
$banner->setPlaceholderIds(array($placeholder->getId()));
|
404 |
+
}
|
405 |
+
|
406 |
+
try {
|
407 |
+
$banner->save();
|
408 |
+
} catch (Exception $e) {
|
409 |
+
$this->_fault('easybanner_banner_save', $e);
|
410 |
+
}
|
411 |
+
|
412 |
+
$bannerDefaults['sort_order'] += 5;
|
413 |
+
}
|
414 |
+
}
|
415 |
+
}
|
416 |
+
|
417 |
+
/**
|
418 |
+
* If slider already exists - skip adding.
|
419 |
+
*
|
420 |
+
* @param $data
|
421 |
+
* <pre>
|
422 |
+
* array(
|
423 |
+
* array(
|
424 |
+
* identifier
|
425 |
+
* title
|
426 |
+
* width
|
427 |
+
* height
|
428 |
+
* duration
|
429 |
+
* frequency
|
430 |
+
* autoglide
|
431 |
+
* controls_type
|
432 |
+
* status
|
433 |
+
* slides => array(
|
434 |
+
* array(
|
435 |
+
* url
|
436 |
+
* image
|
437 |
+
* description
|
438 |
+
* ),
|
439 |
+
* ...
|
440 |
+
* )
|
441 |
+
* ),
|
442 |
+
* ...
|
443 |
+
* )
|
444 |
+
* </pre>
|
445 |
+
*/
|
446 |
+
public function runEasyslide($data)
|
447 |
+
{
|
448 |
+
$now = Mage::getSingleton('core/date')->gmtDate();
|
449 |
+
foreach ($data as $sliderData) {
|
450 |
+
$slider = Mage::getModel('easyslide/easyslide')
|
451 |
+
->load($sliderData['identifier']);
|
452 |
+
if ($slider->getId()) {
|
453 |
+
continue;
|
454 |
+
}
|
455 |
+
|
456 |
+
$slider = Mage::getModel('easyslide/easyslide');
|
457 |
+
$sliderData['created_time'] = $now;
|
458 |
+
$sliderData['modified_time'] = $now;
|
459 |
+
|
460 |
+
$slideDefaults = array(
|
461 |
+
'is_enabled' => 1,
|
462 |
+
'target' => '/',
|
463 |
+
'description' => '',
|
464 |
+
'sort_order' => 10
|
465 |
+
);
|
466 |
+
foreach ($sliderData['slides'] as &$slide) {
|
467 |
+
if (!empty($slide['sort_order'])) {
|
468 |
+
$slideDefaults['sort_order'] = $slide['sort_order'];
|
469 |
+
}
|
470 |
+
|
471 |
+
$slide = array_merge($slideDefaults, $slide);
|
472 |
+
$slideDefaults['sort_order'] += 10;
|
473 |
+
}
|
474 |
+
|
475 |
+
try {
|
476 |
+
$slider->setData($sliderData)->save();
|
477 |
+
} catch (Exception $e) {
|
478 |
+
$this->_fault('easyslide_save', $e);
|
479 |
+
}
|
480 |
+
}
|
481 |
+
}
|
482 |
+
|
483 |
+
/**
|
484 |
+
* Backup and create new labels
|
485 |
+
*
|
486 |
+
* @param array $data
|
487 |
+
* <pre>
|
488 |
+
* type [optional][manual|new|sale|stock]
|
489 |
+
* label_status
|
490 |
+
* system_label_name
|
491 |
+
* l_status
|
492 |
+
* product_position
|
493 |
+
* product_image
|
494 |
+
* product_round_method
|
495 |
+
* category_position
|
496 |
+
* category_image
|
497 |
+
* category_round_method
|
498 |
+
* </pre>
|
499 |
+
*/
|
500 |
+
public function runProlabels($data)
|
501 |
+
{
|
502 |
+
$typeMapping = array(
|
503 |
+
'sale' => 1,
|
504 |
+
'stock' => 2,
|
505 |
+
'new' => 3
|
506 |
+
);
|
507 |
+
$isSingleStore = Mage::app()->isSingleStoreMode();
|
508 |
+
foreach ($data as $labelData) {
|
509 |
+
if (!empty($labelData['type']) && isset($typeMapping[$labelData['type']])) {
|
510 |
+
$system = true;
|
511 |
+
$modelType = 'prolabels/system';
|
512 |
+
$collection = Mage::getModel($modelType)->getCollection()
|
513 |
+
->addFilter('main_table.rules_id', $typeMapping[$labelData['type']])
|
514 |
+
->addStoreFilter($this->getStoreIds());
|
515 |
+
} else {
|
516 |
+
$system = false;
|
517 |
+
$modelType = 'prolabels/label';
|
518 |
+
$collection = Mage::getModel($modelType)->getCollection()
|
519 |
+
->addFilter('main_table.label_name', $labelData['label_name'])
|
520 |
+
->addFilter('main_table.system_label <> 1')
|
521 |
+
->addStoreFilter($this->getStoreIds());
|
522 |
+
}
|
523 |
+
|
524 |
+
foreach ($collection as $label) {
|
525 |
+
$label->load($label->getId()); // load stores
|
526 |
+
$storesToLeave = array_diff($label->getStoreId(), $this->getStoreIds());
|
527 |
+
if (count($storesToLeave) && !$isSingleStore) {
|
528 |
+
$label->setStores($storesToLeave) // @todo _afterSave for system label
|
529 |
+
->setStoreIds($storesToLeave);
|
530 |
+
} else {
|
531 |
+
$label->setLabelStatus(0)
|
532 |
+
->setLabelName($this->_getUniqueString($label->getLabelName()))
|
533 |
+
->setLStatus(0)
|
534 |
+
->setSystemLabelName($this->_getUniqueString($label->getSystemLabelName()));
|
535 |
+
}
|
536 |
+
|
537 |
+
try {
|
538 |
+
$label->save();
|
539 |
+
} catch (Exception $e) {
|
540 |
+
$this->_fault('prolabels_label_backup', $e);
|
541 |
+
continue;
|
542 |
+
}
|
543 |
+
|
544 |
+
if ($system) {
|
545 |
+
Mage::getModel('prolabels/sysstore')->deleteSystemStore($label->getId());
|
546 |
+
foreach ($storesToLeave as $store) {
|
547 |
+
$storeM = Mage::getModel('prolabels/sysstore');
|
548 |
+
$storeM->addData(array('store_id' => $store));
|
549 |
+
$storeM->addData(array('system_id' => $label->getId()));
|
550 |
+
$storeM->addData(array('rules_id' => $label->getRulesId()));
|
551 |
+
try {
|
552 |
+
$storeM->save();
|
553 |
+
} catch (Exception $e) {
|
554 |
+
$this->_fault('prolabels_sysstore_backup', $e);
|
555 |
+
}
|
556 |
+
}
|
557 |
+
}
|
558 |
+
}
|
559 |
+
|
560 |
+
// create required label
|
561 |
+
$label = Mage::getModel($modelType)
|
562 |
+
->setData($labelData);
|
563 |
+
|
564 |
+
if (!empty($labelData['type']) && isset($typeMapping[$labelData['type']])) {
|
565 |
+
$label->setRulesId($typeMapping[$labelData['type']]);
|
566 |
+
}
|
567 |
+
$label->setStores($this->getStoreIds()) // @todo _afterSave for system label
|
568 |
+
->setStoreIds($this->getStoreIds());
|
569 |
+
|
570 |
+
try {
|
571 |
+
$label->save();
|
572 |
+
} catch (Exception $e) {
|
573 |
+
$this->_fault('prolabels_label_save', $e);
|
574 |
+
continue;
|
575 |
+
}
|
576 |
+
|
577 |
+
if ($system) {
|
578 |
+
foreach ($this->getStoreIds() as $store) {
|
579 |
+
$storeM = Mage::getModel('prolabels/sysstore');
|
580 |
+
$storeM->addData(array('store_id' => $store));
|
581 |
+
$storeM->addData(array('system_id' => $label->getId()));
|
582 |
+
$storeM->addData(array('rules_id' => $label->getRulesId()));
|
583 |
+
try {
|
584 |
+
$storeM->save();
|
585 |
+
} catch (Exception $e) {
|
586 |
+
$this->_fault('prolabels_sysstore_save', $e);
|
587 |
+
}
|
588 |
+
}
|
589 |
+
}
|
590 |
+
}
|
591 |
+
}
|
592 |
+
|
593 |
+
/**
|
594 |
+
* Add new product attrubute to all of attribute sets.
|
595 |
+
* If attribute is already exists - skip.
|
596 |
+
*
|
597 |
+
* @param array $data
|
598 |
+
* <pre>
|
599 |
+
* attribute_code
|
600 |
+
* is_global 0
|
601 |
+
* frontend_input[text|boolean|textarea|select|price|media_image|etc]
|
602 |
+
* default_value_text
|
603 |
+
* is_searchable
|
604 |
+
* is_visible_in_advanced_search
|
605 |
+
* is_comparable
|
606 |
+
* frontend_label array
|
607 |
+
* sort_order Set 0 to use MaxSortOrder
|
608 |
+
* </pre>
|
609 |
+
*/
|
610 |
+
public function runProductAttribute($data)
|
611 |
+
{
|
612 |
+
$defaults = array(
|
613 |
+
'is_global' => 0,
|
614 |
+
'frontend_input' => 'boolean',
|
615 |
+
'is_configurable' => 0,
|
616 |
+
'is_filterable' => 0,
|
617 |
+
'is_filterable_in_search' => 0,
|
618 |
+
'sort_order' => 1
|
619 |
+
);
|
620 |
+
$entityTypeId = Mage::getModel('eav/entity')
|
621 |
+
->setType(Mage_Catalog_Model_Product::ENTITY)
|
622 |
+
->getTypeId();
|
623 |
+
$setCollection = Mage::getResourceModel('eav/entity_attribute_set_collection')
|
624 |
+
->setEntityTypeFilter($entityTypeId);
|
625 |
+
|
626 |
+
foreach ($data as $attributeData) {
|
627 |
+
/**
|
628 |
+
* @var $model Mage_Catalog_Model_Entity_Attribute
|
629 |
+
*/
|
630 |
+
$attribute = Mage::getModel('catalog/resource_eav_attribute')
|
631 |
+
->load($attributeData['attribute_code'], 'attribute_code');
|
632 |
+
if ($attribute->getId()) {
|
633 |
+
continue;
|
634 |
+
}
|
635 |
+
|
636 |
+
/* @var $helper Mage_Catalog_Helper_Product */
|
637 |
+
$helper = Mage::helper('catalog/product');
|
638 |
+
|
639 |
+
/**
|
640 |
+
* @todo add to helper and specify all relations for properties
|
641 |
+
*/
|
642 |
+
$attributeData = array_merge($defaults, $attributeData);
|
643 |
+
if (!isset($attributeData['source_model'])) {
|
644 |
+
$attributeData['source_model'] = $helper
|
645 |
+
->getAttributeSourceModelByInputType($attributeData['frontend_input']);
|
646 |
+
}
|
647 |
+
if (!isset($attributeData['backend_model'])) {
|
648 |
+
$attributeData['backend_model'] = $helper
|
649 |
+
->getAttributeBackendModelByInputType($attributeData['frontend_input']);
|
650 |
+
}
|
651 |
+
if (!isset($attributeData['backend_type'])) {
|
652 |
+
$attributeData['backend_type'] = $attribute
|
653 |
+
->getBackendTypeByInput($attributeData['frontend_input']);
|
654 |
+
}
|
655 |
+
$attribute->addData($attributeData);
|
656 |
+
$attribute->setEntityTypeId($entityTypeId);
|
657 |
+
$attribute->setIsUserDefined(1);
|
658 |
+
|
659 |
+
foreach ($setCollection as $set) {
|
660 |
+
$attribute->setAttributeSetId($set->getId());
|
661 |
+
$attribute->setAttributeGroupId($set->getDefaultGroupId());
|
662 |
+
try {
|
663 |
+
$attribute->save();
|
664 |
+
} catch (Exception $e) {
|
665 |
+
$this->_fault('product_attribute_save', $e);
|
666 |
+
}
|
667 |
+
}
|
668 |
+
|
669 |
+
if (!$setCollection->count()) {
|
670 |
+
try {
|
671 |
+
$attribute->save();
|
672 |
+
} catch (Exception $e) {
|
673 |
+
$this->_fault('product_attribute_save', $e);
|
674 |
+
}
|
675 |
+
}
|
676 |
+
}
|
677 |
+
}
|
678 |
+
|
679 |
+
/**
|
680 |
+
* Log installation errors
|
681 |
+
*
|
682 |
+
* @param string $type
|
683 |
+
* @param Exception $e
|
684 |
+
*/
|
685 |
+
protected function _fault($type, Exception $e)
|
686 |
+
{
|
687 |
+
$this->_getMessageLogger()->addError($type, array(
|
688 |
+
'message' => $e->getMessage(),
|
689 |
+
'trace' => $e->getTraceAsString()
|
690 |
+
));
|
691 |
+
}
|
692 |
+
|
693 |
+
/**
|
694 |
+
* @return TM_Core_Model_Module_ErrorLogger
|
695 |
+
*/
|
696 |
+
protected function _getMessageLogger()
|
697 |
+
{
|
698 |
+
return $this->getModule()->getMessageLogger();
|
699 |
+
}
|
700 |
+
|
701 |
+
/**
|
702 |
+
* Returns unique string. Used to backup existing pages, blocks, etc
|
703 |
+
* Theoretically it's possible to get existing identifier intentionally.
|
704 |
+
* But there is very low chance to do that accidently.
|
705 |
+
*
|
706 |
+
* @param string $prefix
|
707 |
+
* @return string
|
708 |
+
*/
|
709 |
+
protected function _getUniqueString($prefix)
|
710 |
+
{
|
711 |
+
$today = Mage::app()->getLocale()->date()
|
712 |
+
->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
|
713 |
+
$filteredToday = str_replace(array(' ', ':'), '-', $today);
|
714 |
+
return $prefix . '_backup_' . self::$_backupIterator++ . '_' . $filteredToday;
|
715 |
+
}
|
716 |
+
|
717 |
+
/**
|
718 |
+
* @return Mage_Core_Model_Store
|
719 |
+
*/
|
720 |
+
protected function _getStore($id)
|
721 |
+
{
|
722 |
+
if (!isset(self::$_stores[$id])) {
|
723 |
+
self::$_stores[$id] = Mage::getModel('core/store')->load($id);
|
724 |
+
}
|
725 |
+
return self::$_stores[$id];
|
726 |
+
}
|
727 |
+
}
|
app/code/community/TM/Core/Model/Notification/Feed.php
ADDED
@@ -0,0 +1,151 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Notification_Feed extends Mage_AdminNotification_Model_Feed
|
4 |
+
{
|
5 |
+
const XML_USE_HTTPS_PATH = 'tmcore/notification/use_https';
|
6 |
+
const XML_FEED_URL_PATH = 'tmcore/notification/feed_url';
|
7 |
+
const XML_FREQUENCY_PATH = 'tmcore/notification/frequency';
|
8 |
+
const XML_LAST_UPDATE_PATH = 'tmcore/notification/last_update';
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Retrieve feed url
|
12 |
+
*
|
13 |
+
* @return string
|
14 |
+
*/
|
15 |
+
public function getFeedUrl()
|
16 |
+
{
|
17 |
+
if (is_null($this->_feedUrl)) {
|
18 |
+
$this->_feedUrl = (Mage::getStoreConfigFlag(self::XML_USE_HTTPS_PATH) ? 'https://' : 'http://')
|
19 |
+
. Mage::getStoreConfig(self::XML_FEED_URL_PATH);
|
20 |
+
}
|
21 |
+
return $this->_feedUrl;
|
22 |
+
}
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Check feed for modification.
|
26 |
+
* Copy of parent method, but isRead logic added to hide filteted news.
|
27 |
+
*
|
28 |
+
* @return TM_Core_Model_Notification_Feed
|
29 |
+
*/
|
30 |
+
public function checkUpdate()
|
31 |
+
{
|
32 |
+
if (($this->getFrequency() + $this->getLastUpdate()) > time()) {
|
33 |
+
return $this;
|
34 |
+
}
|
35 |
+
|
36 |
+
$feedData = array();
|
37 |
+
|
38 |
+
$feedXml = $this->getFeedData();
|
39 |
+
|
40 |
+
if ($feedXml && $feedXml->channel && $feedXml->channel->item) {
|
41 |
+
foreach ($feedXml->channel->item as $item) {
|
42 |
+
$feedData[] = array(
|
43 |
+
'severity' => (int)$item->severity,
|
44 |
+
'date_added' => $this->getDate((string)$item->pubDate),
|
45 |
+
'title' => (string)$item->title,
|
46 |
+
'description' => (string)$item->description,
|
47 |
+
'url' => (string)$item->link,
|
48 |
+
'is_read' => $this->_getIsReadStatus($item)
|
49 |
+
);
|
50 |
+
}
|
51 |
+
|
52 |
+
if ($feedData) {
|
53 |
+
Mage::getModel('adminnotification/inbox')->parse(array_reverse($feedData));
|
54 |
+
}
|
55 |
+
|
56 |
+
}
|
57 |
+
$this->setLastUpdate();
|
58 |
+
|
59 |
+
return $this;
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* If the item channel matches notification filter,
|
64 |
+
* or item channel is not exists in TM_Core_Model_Adminhtml_System_Config_Source_Notification_Filter, then
|
65 |
+
* the item will be marken as not readed
|
66 |
+
*
|
67 |
+
* @param object $item
|
68 |
+
* @return boolean
|
69 |
+
*/
|
70 |
+
protected function _getIsReadStatus($item)
|
71 |
+
{
|
72 |
+
if (!$item->channel) {
|
73 |
+
return false;
|
74 |
+
}
|
75 |
+
|
76 |
+
$channels = (string)$item->channel;
|
77 |
+
if (!$channels) {
|
78 |
+
return false;
|
79 |
+
}
|
80 |
+
|
81 |
+
$filters = Mage::getStoreConfig('tmcore/notification/filter');
|
82 |
+
if (empty($filters)) {
|
83 |
+
return true; // disable notifications
|
84 |
+
}
|
85 |
+
|
86 |
+
$filters = explode(',', $filters);
|
87 |
+
$channels = explode(',', $channels);
|
88 |
+
$matches = array_intersect($filters, $channels);
|
89 |
+
if (count($matches)) {
|
90 |
+
return false;
|
91 |
+
}
|
92 |
+
|
93 |
+
$installedFilter = TM_Core_Model_Adminhtml_System_Config_Source_Notification_Channel::CHANNEL_INSTALLED;
|
94 |
+
if ($item->product && false !== array_search($installedFilter, $filters)) {
|
95 |
+
$products = explode(',', (string)$item->product);
|
96 |
+
$installedProducts = $this->_getInstalledModules('TM_', false);
|
97 |
+
$matches = array_intersect($installedProducts, $products);
|
98 |
+
return !(bool)count($matches);
|
99 |
+
}
|
100 |
+
|
101 |
+
return true; // installed mode only and item does not have product entry
|
102 |
+
}
|
103 |
+
|
104 |
+
protected function _getInstalledModules($namespace = 'TM_', $returnWithNamespace = true)
|
105 |
+
{
|
106 |
+
$modules = Mage::getConfig()->getNode('modules')->children();
|
107 |
+
$result = array();
|
108 |
+
foreach ($modules as $code => $values) {
|
109 |
+
if (0 !== strpos($code, $namespace)) {
|
110 |
+
continue;
|
111 |
+
}
|
112 |
+
if ($returnWithNamespace) {
|
113 |
+
$result[] = $code;
|
114 |
+
} else {
|
115 |
+
$result[] = str_replace($namespace, '', $code);
|
116 |
+
}
|
117 |
+
}
|
118 |
+
return $result;
|
119 |
+
}
|
120 |
+
|
121 |
+
/**
|
122 |
+
* Retrieve Update Frequency
|
123 |
+
*
|
124 |
+
* @return int
|
125 |
+
*/
|
126 |
+
public function getFrequency()
|
127 |
+
{
|
128 |
+
return Mage::getStoreConfig(self::XML_FREQUENCY_PATH) * 3600;
|
129 |
+
}
|
130 |
+
|
131 |
+
/**
|
132 |
+
* Retrieve Last update time
|
133 |
+
*
|
134 |
+
* @return int
|
135 |
+
*/
|
136 |
+
public function getLastUpdate()
|
137 |
+
{
|
138 |
+
return Mage::app()->loadCache('tmcore_notifications_lastcheck');
|
139 |
+
}
|
140 |
+
|
141 |
+
/**
|
142 |
+
* Set last update time (now)
|
143 |
+
*
|
144 |
+
* @return TM_Core_Model_Notification_Feed
|
145 |
+
*/
|
146 |
+
public function setLastUpdate()
|
147 |
+
{
|
148 |
+
Mage::app()->saveCache(time(), 'tmcore_notifications_lastcheck');
|
149 |
+
return $this;
|
150 |
+
}
|
151 |
+
}
|
app/code/community/TM/Core/Model/Observer.php
ADDED
@@ -0,0 +1,17 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Observer
|
4 |
+
{
|
5 |
+
/**
|
6 |
+
* Predispath admin action controller
|
7 |
+
*
|
8 |
+
* @param Varien_Event_Observer $observer
|
9 |
+
*/
|
10 |
+
public function preDispatch(Varien_Event_Observer $observer)
|
11 |
+
{
|
12 |
+
if (Mage::getSingleton('admin/session')->isLoggedIn()) {
|
13 |
+
$feedModel = Mage::getModel('tmcore/notification_feed');
|
14 |
+
$feedModel->checkUpdate();
|
15 |
+
}
|
16 |
+
}
|
17 |
+
}
|
app/code/community/TM/Core/Model/Resource/Module.php
ADDED
@@ -0,0 +1,16 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Resource_Module extends Mage_Core_Model_Mysql4_Abstract
|
4 |
+
{
|
5 |
+
/**
|
6 |
+
* Primery key auto increment flag
|
7 |
+
*
|
8 |
+
* @var bool
|
9 |
+
*/
|
10 |
+
protected $_isPkAutoIncrement = false;
|
11 |
+
|
12 |
+
protected function _construct()
|
13 |
+
{
|
14 |
+
$this->_init('tmcore/module', 'code');
|
15 |
+
}
|
16 |
+
}
|
app/code/community/TM/Core/Model/Resource/Module/AdminGridCollection.php
ADDED
@@ -0,0 +1,17 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Resource_Module_AdminGridCollection extends TM_Core_Model_Resource_Module_MergedCollection
|
4 |
+
{
|
5 |
+
public function getModulesFromConfigNodes()
|
6 |
+
{
|
7 |
+
$modules = Mage::getConfig()->getNode('modules')->children();
|
8 |
+
$result = array();
|
9 |
+
foreach ($modules as $code => $values) {
|
10 |
+
if ($values->tm_hidden) {
|
11 |
+
continue;
|
12 |
+
}
|
13 |
+
$result[$code] = $values;
|
14 |
+
}
|
15 |
+
return $result;
|
16 |
+
}
|
17 |
+
}
|
app/code/community/TM/Core/Model/Resource/Module/Collection.php
ADDED
@@ -0,0 +1,9 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Resource_Module_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
4 |
+
{
|
5 |
+
protected function _construct()
|
6 |
+
{
|
7 |
+
$this->_init('tmcore/module');
|
8 |
+
}
|
9 |
+
}
|
app/code/community/TM/Core/Model/Resource/Module/MergedCollection.php
ADDED
@@ -0,0 +1,496 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Resource_Module_MergedCollection extends Varien_Data_Collection
|
4 |
+
{
|
5 |
+
/**
|
6 |
+
* Item object class name
|
7 |
+
*
|
8 |
+
* @var string
|
9 |
+
*/
|
10 |
+
protected $_itemObjectClass = 'TM_Core_Model_Module';
|
11 |
+
|
12 |
+
protected $_collectedModules = array();
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Filter rendering helper variables
|
16 |
+
*
|
17 |
+
* @see Varien_Data_Collection::$_filter
|
18 |
+
* @see Varien_Data_Collection::$_isFiltersRendered
|
19 |
+
*/
|
20 |
+
private $_filterIncrement = 0;
|
21 |
+
private $_filterBrackets = array();
|
22 |
+
private $_filterEvalRendered = '';
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Lauch data collecting
|
26 |
+
*
|
27 |
+
* @param bool $printQuery
|
28 |
+
* @param bool $logQuery
|
29 |
+
* @return Varien_Data_Collection_Filesystem
|
30 |
+
*/
|
31 |
+
public function loadData($printQuery = false, $logQuery = false)
|
32 |
+
{
|
33 |
+
if ($this->isLoaded()) {
|
34 |
+
return $this;
|
35 |
+
}
|
36 |
+
|
37 |
+
$modules = $this->getModulesFromConfigNodes();
|
38 |
+
$remoteCollection = Mage::getResourceModel('tmcore/module_remoteCollection');
|
39 |
+
$localCollection = Mage::getResourceModel('tmcore/module_collection');
|
40 |
+
foreach ($modules as $code => $values) {
|
41 |
+
if (0 !== strpos($code, 'TM_')) {
|
42 |
+
continue;
|
43 |
+
}
|
44 |
+
|
45 |
+
$module = $localCollection->getItemById($code);
|
46 |
+
if (!$module) {
|
47 |
+
$module = new $this->_itemObjectClass();
|
48 |
+
}
|
49 |
+
|
50 |
+
$localData = array_merge(
|
51 |
+
array(
|
52 |
+
'id' => $code,
|
53 |
+
'data_version' => $module->getDataVersion(),
|
54 |
+
'code' => $code
|
55 |
+
),
|
56 |
+
$values->asCanonicalArray()
|
57 |
+
);
|
58 |
+
|
59 |
+
$this->_collectedModules[$code] =
|
60 |
+
$this->_syncLocalAndRemoteData(
|
61 |
+
$localData,
|
62 |
+
$remoteCollection->getItemById($code)
|
63 |
+
);
|
64 |
+
}
|
65 |
+
|
66 |
+
$this->_filterAndSort();
|
67 |
+
|
68 |
+
// calculate totals
|
69 |
+
$this->_totalRecords = count($this->_collectedModules);
|
70 |
+
$this->_setIsLoaded();
|
71 |
+
|
72 |
+
// paginate and add items
|
73 |
+
$from = ($this->getCurPage() - 1) * $this->getPageSize();
|
74 |
+
$to = $from + $this->getPageSize() - 1;
|
75 |
+
$isPaginated = $this->getPageSize() > 0;
|
76 |
+
|
77 |
+
$cnt = 0;
|
78 |
+
foreach ($this->_collectedModules as $row) {
|
79 |
+
$cnt++;
|
80 |
+
if ($isPaginated && ($cnt < $from || $cnt > $to)) {
|
81 |
+
continue;
|
82 |
+
}
|
83 |
+
$item = new $this->_itemObjectClass();
|
84 |
+
$this->addItem($item->addData($row));
|
85 |
+
if (!$item->hasId()) {
|
86 |
+
$item->setId($cnt);
|
87 |
+
}
|
88 |
+
}
|
89 |
+
|
90 |
+
return $this;
|
91 |
+
}
|
92 |
+
|
93 |
+
public function getModulesFromConfigNodes()
|
94 |
+
{
|
95 |
+
return Mage::getConfig()->getNode('modules')->children();
|
96 |
+
}
|
97 |
+
|
98 |
+
private function _syncLocalAndRemoteData(array $local, $remote)
|
99 |
+
{
|
100 |
+
$result = array();
|
101 |
+
if ($remote) {
|
102 |
+
$remote = $remote->toArray();
|
103 |
+
$result = $remote;
|
104 |
+
$version = $remote['version'];
|
105 |
+
$dataVersion = '';
|
106 |
+
if (isset($remote['data_version'])) {
|
107 |
+
$dataVersion = $remote['data_version'];
|
108 |
+
}
|
109 |
+
|
110 |
+
unset($result['version']);
|
111 |
+
unset($result['data_version']);
|
112 |
+
|
113 |
+
$result['latest_version'] = $version;
|
114 |
+
$result['latest_data_version'] = $dataVersion;
|
115 |
+
$result['version_status'] = $this->_getVersionStatusLabel($local, $remote);
|
116 |
+
}
|
117 |
+
return array_merge($local, $result);
|
118 |
+
}
|
119 |
+
|
120 |
+
/**
|
121 |
+
* Retrieve version status label
|
122 |
+
*
|
123 |
+
* @param array $localData Local module data
|
124 |
+
* @param array $remoteData Latest module data
|
125 |
+
* @return string
|
126 |
+
*/
|
127 |
+
private function _getVersionStatusLabel(array $local, array $remote = array())
|
128 |
+
{
|
129 |
+
$versionCompare = version_compare($local['version'], $remote['version']);
|
130 |
+
$dataCompare = 0;
|
131 |
+
if (isset($remote['data_version'])) {
|
132 |
+
$dataCompare = version_compare($local['data_version'], $remote['data_version']);
|
133 |
+
}
|
134 |
+
|
135 |
+
if ($versionCompare > -1 && $dataCompare > -1) {
|
136 |
+
$status = TM_Core_Model_Module::VERSION_UPDATED;
|
137 |
+
} else if ($versionCompare === -1) {
|
138 |
+
$status = TM_Core_Model_Module::VERSION_DEPRECATED;
|
139 |
+
} else {
|
140 |
+
$status = TM_Core_Model_Module::VERSION_OUTDATED;
|
141 |
+
}
|
142 |
+
return $status;
|
143 |
+
}
|
144 |
+
|
145 |
+
/**
|
146 |
+
* With specified collected items:
|
147 |
+
* - generate data
|
148 |
+
* - apply filters
|
149 |
+
* - sort
|
150 |
+
*
|
151 |
+
* @param string $attributeName '_collectedFiles' | '_collectedDirs'
|
152 |
+
*/
|
153 |
+
private function _filterAndSort()
|
154 |
+
{
|
155 |
+
// apply filters on generated data
|
156 |
+
if (!empty($this->_filters)) {
|
157 |
+
foreach ($this->_collectedModules as $key => $row) {
|
158 |
+
if (!$this->_filterRow($row)) {
|
159 |
+
unset($this->_collectedModules[$key]);
|
160 |
+
}
|
161 |
+
}
|
162 |
+
}
|
163 |
+
|
164 |
+
// sort (keys are lost!)
|
165 |
+
if (!empty($this->_orders)) {
|
166 |
+
usort($this->_collectedModules, array($this, '_usort'));
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
+
protected function _usort($a, $b)
|
171 |
+
{
|
172 |
+
foreach ($this->_orders as $key => $direction) {
|
173 |
+
$result = $a[$key] > $b[$key] ? 1 : ($a[$key] < $b[$key] ? -1 : 0);
|
174 |
+
return (self::SORT_ORDER_ASC === strtoupper($direction) ? $result : -$result);
|
175 |
+
break;
|
176 |
+
}
|
177 |
+
}
|
178 |
+
|
179 |
+
/**
|
180 |
+
* Set select order
|
181 |
+
* Currently supports only sorting by one column
|
182 |
+
*
|
183 |
+
* @param string $field
|
184 |
+
* @param string $direction
|
185 |
+
* @return Varien_Data_Collection
|
186 |
+
*/
|
187 |
+
public function setOrder($field, $direction = self::SORT_ORDER_DESC)
|
188 |
+
{
|
189 |
+
$this->_orders = array($field => $direction);
|
190 |
+
return $this;
|
191 |
+
}
|
192 |
+
|
193 |
+
/**
|
194 |
+
* Set a custom filter with callback
|
195 |
+
* The callback must take 3 params:
|
196 |
+
* string $field - field key,
|
197 |
+
* mixed $filterValue - value to filter by,
|
198 |
+
* array $row - a generated row (before generaring varien objects)
|
199 |
+
*
|
200 |
+
* @param string $field
|
201 |
+
* @param mixed $value
|
202 |
+
* @param string $type 'and'|'or'
|
203 |
+
* @param callback $callback
|
204 |
+
* @param bool $isInverted
|
205 |
+
* @return Varien_Data_Collection_Filesystem
|
206 |
+
*/
|
207 |
+
public function addCallbackFilter($field, $value, $type, $callback, $isInverted = false)
|
208 |
+
{
|
209 |
+
$this->_filters[$this->_filterIncrement] = array(
|
210 |
+
'field' => $field,
|
211 |
+
'value' => $value,
|
212 |
+
'is_and' => 'and' === $type,
|
213 |
+
'callback' => $callback,
|
214 |
+
'is_inverted' => $isInverted
|
215 |
+
);
|
216 |
+
$this->_filterIncrement++;
|
217 |
+
return $this;
|
218 |
+
}
|
219 |
+
|
220 |
+
/**
|
221 |
+
* The filters renderer and caller
|
222 |
+
* Aplies to each row, renders once.
|
223 |
+
*
|
224 |
+
* @param array $row
|
225 |
+
* @return bool
|
226 |
+
*/
|
227 |
+
protected function _filterRow($row)
|
228 |
+
{
|
229 |
+
// render filters once
|
230 |
+
if (!$this->_isFiltersRendered) {
|
231 |
+
$eval = '';
|
232 |
+
for ($i = 0; $i < $this->_filterIncrement; $i++) {
|
233 |
+
if (isset($this->_filterBrackets[$i])) {
|
234 |
+
$eval .= $this->_renderConditionBeforeFilterElement($i, $this->_filterBrackets[$i]['is_and'])
|
235 |
+
. $this->_filterBrackets[$i]['value'];
|
236 |
+
}
|
237 |
+
else {
|
238 |
+
$f = '$this->_filters[' . $i . ']';
|
239 |
+
$eval .= $this->_renderConditionBeforeFilterElement($i, $this->_filters[$i]['is_and'])
|
240 |
+
. ($this->_filters[$i]['is_inverted'] ? '!' : '')
|
241 |
+
. '$this->_invokeFilter(' . "{$f}['callback'], array({$f}['field'], {$f}['value'], " . '$row))';
|
242 |
+
}
|
243 |
+
}
|
244 |
+
$this->_filterEvalRendered = $eval;
|
245 |
+
$this->_isFiltersRendered = true;
|
246 |
+
}
|
247 |
+
$result = false;
|
248 |
+
if ($this->_filterEvalRendered) {
|
249 |
+
eval('$result = ' . $this->_filterEvalRendered . ';');
|
250 |
+
}
|
251 |
+
return $result;
|
252 |
+
}
|
253 |
+
|
254 |
+
/**
|
255 |
+
* Invokes specified callback
|
256 |
+
* Skips, if there is no filtered key in the row
|
257 |
+
*
|
258 |
+
* @param callback $callback
|
259 |
+
* @param array $callbackParams
|
260 |
+
* @return bool
|
261 |
+
*/
|
262 |
+
protected function _invokeFilter($callback, $callbackParams)
|
263 |
+
{
|
264 |
+
list($field, $value, $row) = $callbackParams;
|
265 |
+
if (!array_key_exists($field, $row)) {
|
266 |
+
return false;
|
267 |
+
}
|
268 |
+
return call_user_func_array($callback, $callbackParams);
|
269 |
+
}
|
270 |
+
|
271 |
+
/**
|
272 |
+
* Fancy field filter
|
273 |
+
*
|
274 |
+
* @param string $field
|
275 |
+
* @param mixed $cond
|
276 |
+
* @param string $type 'and' | 'or'
|
277 |
+
* @see Varien_Data_Collection_Db::addFieldToFilter()
|
278 |
+
* @return Varien_Data_Collection_Filesystem
|
279 |
+
*/
|
280 |
+
public function addFieldToFilter($field, $cond, $type = 'and')
|
281 |
+
{
|
282 |
+
$inverted = true;
|
283 |
+
|
284 |
+
// simply check whether equals
|
285 |
+
if (!is_array($cond)) {
|
286 |
+
return $this->addCallbackFilter($field, $cond, $type, array($this, 'filterCallbackEq'));
|
287 |
+
}
|
288 |
+
|
289 |
+
// versatile filters
|
290 |
+
if (isset($cond['from']) || isset($cond['to'])) {
|
291 |
+
$this->_addFilterBracket('(', 'and' === $type);
|
292 |
+
if (isset($cond['from'])) {
|
293 |
+
$this->addCallbackFilter($field, $cond['from'], 'and', array($this, 'filterCallbackIsLessThan'), $inverted);
|
294 |
+
}
|
295 |
+
if (isset($cond['to'])) {
|
296 |
+
$this->addCallbackFilter($field, $cond['to'], 'and', array($this, 'filterCallbackIsMoreThan'), $inverted);
|
297 |
+
}
|
298 |
+
return $this->_addFilterBracket(')');
|
299 |
+
}
|
300 |
+
if (isset($cond['eq'])) {
|
301 |
+
return $this->addCallbackFilter($field, $cond['eq'], $type, array($this, 'filterCallbackEq'));
|
302 |
+
}
|
303 |
+
if (isset($cond['neq'])) {
|
304 |
+
return $this->addCallbackFilter($field, $cond['neq'], $type, array($this, 'filterCallbackEq'), $inverted);
|
305 |
+
}
|
306 |
+
if (isset($cond['like'])) {
|
307 |
+
return $this->addCallbackFilter($field, $cond['like'], $type, array($this, 'filterCallbackLike'));
|
308 |
+
}
|
309 |
+
if (isset($cond['nlike'])) {
|
310 |
+
return $this->addCallbackFilter($field, $cond['nlike'], $type, array($this, 'filterCallbackLike'), $inverted);
|
311 |
+
}
|
312 |
+
if (isset($cond['in'])) {
|
313 |
+
return $this->addCallbackFilter($field, $cond['in'], $type, array($this, 'filterCallbackInArray'));
|
314 |
+
}
|
315 |
+
if (isset($cond['nin'])) {
|
316 |
+
return $this->addCallbackFilter($field, $cond['nin'], $type, array($this, 'filterCallbackInArray'), $inverted);
|
317 |
+
}
|
318 |
+
if (isset($cond['notnull'])) {
|
319 |
+
return $this->addCallbackFilter($field, $cond['notnull'], $type, array($this, 'filterCallbackIsNull'), $inverted);
|
320 |
+
}
|
321 |
+
if (isset($cond['null'])) {
|
322 |
+
return $this->addCallbackFilter($field, $cond['null'], $type, array($this, 'filterCallbackIsNull'));
|
323 |
+
}
|
324 |
+
if (isset($cond['moreq'])) {
|
325 |
+
return $this->addCallbackFilter($field, $cond['moreq'], $type, array($this, 'filterCallbackIsLessThan'), $inverted);
|
326 |
+
}
|
327 |
+
if (isset($cond['gt'])) {
|
328 |
+
return $this->addCallbackFilter($field, $cond['gt'], $type, array($this, 'filterCallbackIsMoreThan'));
|
329 |
+
}
|
330 |
+
if (isset($cond['lt'])) {
|
331 |
+
return $this->addCallbackFilter($field, $cond['lt'], $type, array($this, 'filterCallbackIsLessThan'));
|
332 |
+
}
|
333 |
+
if (isset($cond['gteq'])) {
|
334 |
+
return $this->addCallbackFilter($field, $cond['gteq'], $type, array($this, 'filterCallbackIsLessThan'), $inverted);
|
335 |
+
}
|
336 |
+
if (isset($cond['lteq'])) {
|
337 |
+
return $this->addCallbackFilter($field, $cond['lteq'], $type, array($this, 'filterCallbackIsMoreThan'), $inverted);
|
338 |
+
}
|
339 |
+
if (isset($cond['finset'])) {
|
340 |
+
$filterValue = ($cond['finset'] ? explode(',', $cond['finset']) : array());
|
341 |
+
return $this->addCallbackFilter($field, $filterValue, $type, array($this, 'filterCallbackInArray'));
|
342 |
+
}
|
343 |
+
|
344 |
+
// add OR recursively
|
345 |
+
foreach ($cond as $orCond) {
|
346 |
+
$this->_addFilterBracket('(', 'and' === $type);
|
347 |
+
$this->addFieldToFilter($field, $orCond, 'or');
|
348 |
+
$this->_addFilterBracket(')');
|
349 |
+
}
|
350 |
+
return $this;
|
351 |
+
}
|
352 |
+
|
353 |
+
/**
|
354 |
+
* Prepare a bracket into filters
|
355 |
+
*
|
356 |
+
* @param string $bracket
|
357 |
+
* @param bool $isAnd
|
358 |
+
* @return Varien_Data_Collection_Filesystem
|
359 |
+
*/
|
360 |
+
protected function _addFilterBracket($bracket = '(', $isAnd = true)
|
361 |
+
{
|
362 |
+
$this->_filterBrackets[$this->_filterIncrement] = array(
|
363 |
+
'value' => $bracket === ')' ? ')' : '(',
|
364 |
+
'is_and' => $isAnd,
|
365 |
+
);
|
366 |
+
$this->_filterIncrement++;
|
367 |
+
return $this;
|
368 |
+
}
|
369 |
+
|
370 |
+
/**
|
371 |
+
* Render condition sign before element, if required
|
372 |
+
*
|
373 |
+
* @param int $increment
|
374 |
+
* @param bool $isAnd
|
375 |
+
* @return string
|
376 |
+
*/
|
377 |
+
protected function _renderConditionBeforeFilterElement($increment, $isAnd)
|
378 |
+
{
|
379 |
+
if (isset($this->_filterBrackets[$increment]) && ')' === $this->_filterBrackets[$increment]['value']) {
|
380 |
+
return '';
|
381 |
+
}
|
382 |
+
$prevIncrement = $increment - 1;
|
383 |
+
$prevBracket = false;
|
384 |
+
if (isset($this->_filterBrackets[$prevIncrement])) {
|
385 |
+
$prevBracket = $this->_filterBrackets[$prevIncrement]['value'];
|
386 |
+
}
|
387 |
+
if ($prevIncrement < 0 || $prevBracket === '(') {
|
388 |
+
return '';
|
389 |
+
}
|
390 |
+
return ($isAnd ? ' && ' : ' || ');
|
391 |
+
}
|
392 |
+
|
393 |
+
/**
|
394 |
+
* Does nothing. Intentionally disabled parent method
|
395 |
+
*
|
396 |
+
* @return Varien_Data_Collection_Filesystem
|
397 |
+
*/
|
398 |
+
public function addFilter($field, $value, $type = 'and')
|
399 |
+
{
|
400 |
+
return $this;
|
401 |
+
}
|
402 |
+
|
403 |
+
/**
|
404 |
+
* Callback method for 'like' fancy filter
|
405 |
+
*
|
406 |
+
* @param string $field
|
407 |
+
* @param mixed $filterValue
|
408 |
+
* @param array $row
|
409 |
+
* @return bool
|
410 |
+
* @see addFieldToFilter()
|
411 |
+
* @see addCallbackFilter()
|
412 |
+
*/
|
413 |
+
public function filterCallbackLike($field, $filterValue, $row)
|
414 |
+
{
|
415 |
+
// removing single quotes, added by filter for mysql query: "'%FILTER_TEXT%'"
|
416 |
+
$filterValue = preg_replace("/(^')(.*)('$)/", "$2", $filterValue);
|
417 |
+
|
418 |
+
$filterValueRegex = str_replace('%', '(.*?)', preg_quote($filterValue, '/'));
|
419 |
+
return (bool)preg_match("/^{$filterValueRegex}$/i", $row[$field]);
|
420 |
+
}
|
421 |
+
|
422 |
+
/**
|
423 |
+
* Callback method for 'eq' fancy filter
|
424 |
+
*
|
425 |
+
* @param string $field
|
426 |
+
* @param mixed $filterValue
|
427 |
+
* @param array $row
|
428 |
+
* @return bool
|
429 |
+
* @see addFieldToFilter()
|
430 |
+
* @see addCallbackFilter()
|
431 |
+
*/
|
432 |
+
public function filterCallbackEq($field, $filterValue, $row)
|
433 |
+
{
|
434 |
+
return $filterValue == $row[$field];
|
435 |
+
}
|
436 |
+
|
437 |
+
/**
|
438 |
+
* Callback method for 'in' fancy filter
|
439 |
+
*
|
440 |
+
* @param string $field
|
441 |
+
* @param mixed $filterValue
|
442 |
+
* @param array $row
|
443 |
+
* @return bool
|
444 |
+
* @see addFieldToFilter()
|
445 |
+
* @see addCallbackFilter()
|
446 |
+
*/
|
447 |
+
public function filterCallbackInArray($field, $filterValue, $row)
|
448 |
+
{
|
449 |
+
return in_array($row[$field], $filterValue);
|
450 |
+
}
|
451 |
+
|
452 |
+
/**
|
453 |
+
* Callback method for 'isnull' fancy filter
|
454 |
+
*
|
455 |
+
* @param string $field
|
456 |
+
* @param mixed $filterValue
|
457 |
+
* @param array $row
|
458 |
+
* @return bool
|
459 |
+
* @see addFieldToFilter()
|
460 |
+
* @see addCallbackFilter()
|
461 |
+
*/
|
462 |
+
public function filterCallbackIsNull($field, $filterValue, $row)
|
463 |
+
{
|
464 |
+
return null === $row[$field];
|
465 |
+
}
|
466 |
+
|
467 |
+
/**
|
468 |
+
* Callback method for 'moreq' fancy filter
|
469 |
+
*
|
470 |
+
* @param string $field
|
471 |
+
* @param mixed $filterValue
|
472 |
+
* @param array $row
|
473 |
+
* @return bool
|
474 |
+
* @see addFieldToFilter()
|
475 |
+
* @see addCallbackFilter()
|
476 |
+
*/
|
477 |
+
public function filterCallbackIsMoreThan($field, $filterValue, $row)
|
478 |
+
{
|
479 |
+
return $row[$field] > $filterValue;
|
480 |
+
}
|
481 |
+
|
482 |
+
/**
|
483 |
+
* Callback method for 'lteq' fancy filter
|
484 |
+
*
|
485 |
+
* @param string $field
|
486 |
+
* @param mixed $filterValue
|
487 |
+
* @param array $row
|
488 |
+
* @return bool
|
489 |
+
* @see addFieldToFilter()
|
490 |
+
* @see addCallbackFilter()
|
491 |
+
*/
|
492 |
+
public function filterCallbackIsLessThan($field, $filterValue, $row)
|
493 |
+
{
|
494 |
+
return $row[$field] < $filterValue;
|
495 |
+
}
|
496 |
+
}
|
app/code/community/TM/Core/Model/Resource/Module/RemoteCollection.php
ADDED
@@ -0,0 +1,202 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Model_Resource_Module_RemoteCollection extends Varien_Data_Collection
|
4 |
+
{
|
5 |
+
const XML_FEED_URL_PATH = 'tmcore/modules/feed_url';
|
6 |
+
|
7 |
+
protected $_collectedModules = array();
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Lauch data collecting
|
11 |
+
*
|
12 |
+
* @param bool $printQuery
|
13 |
+
* @param bool $logQuery
|
14 |
+
* @return Varien_Data_Collection_Filesystem
|
15 |
+
*/
|
16 |
+
public function loadData($printQuery = false, $logQuery = false)
|
17 |
+
{
|
18 |
+
if ($this->isLoaded()) {
|
19 |
+
return $this;
|
20 |
+
}
|
21 |
+
|
22 |
+
try {
|
23 |
+
$client = new Zend_Http_Client();
|
24 |
+
$adapter = new Zend_Http_Client_Adapter_Curl();
|
25 |
+
$client->setAdapter($adapter);
|
26 |
+
$client->setUri($this->_getFeedUri());
|
27 |
+
$client->setConfig(array('maxredirects'=>0, 'timeout'=>30));
|
28 |
+
$client->setParameterGet('domain', Mage::app()->getRequest()->getHttpHost());
|
29 |
+
$responseBody = $client->request()->getBody();
|
30 |
+
$modules = Mage::helper('core')->jsonDecode($responseBody);
|
31 |
+
if (!is_array($modules)) {
|
32 |
+
throw new Exception('Decoding failed');
|
33 |
+
}
|
34 |
+
} catch (Exception $e) {
|
35 |
+
// @todo remove this fix and add error message
|
36 |
+
$modules = array(
|
37 |
+
'TM_Core' => array(
|
38 |
+
'code' => 'TM_Core',
|
39 |
+
'version' => '1.1.1',
|
40 |
+
'changelog' => '',
|
41 |
+
'link' => '',
|
42 |
+
'download_link' => '',
|
43 |
+
'identity_key_link' => ''
|
44 |
+
),
|
45 |
+
'TM_License' => array(
|
46 |
+
'code' => 'TM_License',
|
47 |
+
'version' => '1.2.0',
|
48 |
+
'changelog' => '',
|
49 |
+
'link' => '',
|
50 |
+
'download_link' => '',
|
51 |
+
'identity_key_link' => ''
|
52 |
+
),
|
53 |
+
'TM_Argento' => array(
|
54 |
+
'code' => 'TM_Argento',
|
55 |
+
'version' => '1.2.0',
|
56 |
+
'changelog' => '',
|
57 |
+
'link' => '',
|
58 |
+
'download_link' => '',
|
59 |
+
'identity_key_link' => '',
|
60 |
+
'changelog' => "
|
61 |
+
1.2.0
|
62 |
+
New Pure theme added
|
63 |
+
Css styles optimization
|
64 |
+
Css styles improvements for small tablet devices
|
65 |
+
Removed php warnings during Argento installation
|
66 |
+
Fixed upsell products decoration with first/last classes
|
67 |
+
AjaxSearch
|
68 |
+
* Security bugfix
|
69 |
+
Askit
|
70 |
+
* Grammar errors fixed
|
71 |
+
Easyslider
|
72 |
+
* Nivo slider updated to version 3.2
|
73 |
+
Easybanner
|
74 |
+
* Title field should not be required, when using html mode
|
75 |
+
FacebookLikeButton
|
76 |
+
* Fixed access to facebook like button config section when internet connection is not available
|
77 |
+
Highlight
|
78 |
+
* Added translation of the highlight page title
|
79 |
+
Soldtogether
|
80 |
+
* Fixed bug, when no product is available, but soldtogether block is called
|
81 |
+
|
82 |
+
1.1.2
|
83 |
+
Argento
|
84 |
+
* Html markup and css improvements. YSlow - 86 PageSpeed - 93
|
85 |
+
* Review url fixed on product page
|
86 |
+
* Lightboxpro config options updated to look good on mobile screens
|
87 |
+
* Related products styles and image size improvements for small screen devices
|
88 |
+
* All small images styles improved for mobile devices
|
89 |
+
* Improved form styles
|
90 |
+
* Fixed product listing on advanced search results
|
91 |
+
* Facebook Like Button added
|
92 |
+
* Scroll to top button added
|
93 |
+
Soldtogether updated
|
94 |
+
* Table prefix added to query
|
95 |
+
* Amazon styled template will show only simple products
|
96 |
+
* Fixed price calculation for bundle, configurable and grouped products when using amazon template
|
97 |
+
* Collection queries improvements
|
98 |
+
Easyslide updated
|
99 |
+
* jQuery will not be added if nivo slider is not used
|
100 |
+
* Default slider options added when creating new slider
|
101 |
+
* Enabled option removed. Please use status option for each slider instance.
|
102 |
+
* Load jQuery option now affects on adding jQuery library only: nivo javascript will be added if nivo slider is used.
|
103 |
+
Easycatalogimg updated
|
104 |
+
* Optional retina support added
|
105 |
+
* Image dimensions added to html markup
|
106 |
+
Easybanner updated
|
107 |
+
* Ability to set image size added
|
108 |
+
* Optional retina support added
|
109 |
+
* Ability to use banner url for html mode added. Use the {{tm_banner_url}} variable in banner content.
|
110 |
+
* Backend banner management interface improvements
|
111 |
+
* Image dimensions added to html markup, when resizer is used
|
112 |
+
|
113 |
+
1.1.1
|
114 |
+
Fixed column count with cache enabled on advanced search results and highlight pages
|
115 |
+
|
116 |
+
1.1.0
|
117 |
+
Add to cart button improvements
|
118 |
+
Header styles made more compact for mobile devices
|
119 |
+
Sitemap toolbar style fixed
|
120 |
+
Product page tabs made horizontal for wide screens
|
121 |
+
Checkout page design improvements
|
122 |
+
Product labels added to the product page image
|
123 |
+
Product labels output fixed for mobile devices
|
124 |
+
All module depends updated to the latest versions
|
125 |
+
|
126 |
+
1.0.0
|
127 |
+
Release
|
128 |
+
"
|
129 |
+
),
|
130 |
+
'TM_ArgentoArgento' => array(
|
131 |
+
'code' => 'TM_ArgentoArgento',
|
132 |
+
'version' => '1.1.2',
|
133 |
+
'changelog' => "
|
134 |
+
1.1.2
|
135 |
+
See TM_Argento changelog
|
136 |
+
Improved form styles
|
137 |
+
|
138 |
+
1.1.1
|
139 |
+
See TM_Argento changelog
|
140 |
+
|
141 |
+
1.1.0
|
142 |
+
See TM_Argento changelog
|
143 |
+
Fixed box shadow around the product on category listing
|
144 |
+
|
145 |
+
1.0.0
|
146 |
+
Release
|
147 |
+
",
|
148 |
+
'link' => 'http://argentotheme.com',
|
149 |
+
'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
|
150 |
+
'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
|
151 |
+
),
|
152 |
+
'TM_ArgentoPure' => array(
|
153 |
+
'code' => 'TM_ArgentoPure',
|
154 |
+
'version' => '1.0.0',
|
155 |
+
'changelog' => "
|
156 |
+
1.0.0
|
157 |
+
Release
|
158 |
+
",
|
159 |
+
'link' => 'http://argentotheme.com',
|
160 |
+
'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
|
161 |
+
'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
|
162 |
+
)
|
163 |
+
);
|
164 |
+
}
|
165 |
+
|
166 |
+
foreach ($modules as $moduleName => $values) {
|
167 |
+
$values['id'] = $values['code'];
|
168 |
+
$this->_collectedModules[$values['code']] = $values;
|
169 |
+
}
|
170 |
+
|
171 |
+
// calculate totals
|
172 |
+
$this->_totalRecords = count($this->_collectedModules);
|
173 |
+
$this->_setIsLoaded();
|
174 |
+
|
175 |
+
// paginate and add items
|
176 |
+
$from = ($this->getCurPage() - 1) * $this->getPageSize();
|
177 |
+
$to = $from + $this->getPageSize() - 1;
|
178 |
+
$isPaginated = $this->getPageSize() > 0;
|
179 |
+
|
180 |
+
$cnt = 0;
|
181 |
+
foreach ($this->_collectedModules as $row) {
|
182 |
+
$cnt++;
|
183 |
+
if ($isPaginated && ($cnt < $from || $cnt > $to)) {
|
184 |
+
continue;
|
185 |
+
}
|
186 |
+
$item = new $this->_itemObjectClass();
|
187 |
+
$this->addItem($item->addData($row));
|
188 |
+
if (!$item->hasId()) {
|
189 |
+
$item->setId($cnt);
|
190 |
+
}
|
191 |
+
}
|
192 |
+
|
193 |
+
return $this;
|
194 |
+
}
|
195 |
+
|
196 |
+
protected function _getFeedUri()
|
197 |
+
{
|
198 |
+
$useHttps = Mage::getStoreConfigFlag(TM_Core_Model_Module::XML_USE_HTTPS_PATH);
|
199 |
+
return ($useHttps ? 'https://' : 'http://')
|
200 |
+
. Mage::getStoreConfig(self::XML_FEED_URL_PATH);
|
201 |
+
}
|
202 |
+
}
|
app/code/community/TM/Core/controllers/Adminhtml/Tmcore/ModuleController.php
ADDED
@@ -0,0 +1,100 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class TM_Core_Adminhtml_Tmcore_ModuleController extends Mage_Adminhtml_Controller_Action
|
4 |
+
{
|
5 |
+
protected function _initAction()
|
6 |
+
{
|
7 |
+
$this->loadLayout()
|
8 |
+
->_setActiveMenu('templates_master/tmcore_module')
|
9 |
+
->_addBreadcrumb('Templates Master', 'Templates Master')
|
10 |
+
->_addBreadcrumb(Mage::helper('tmcore')->__('Modules'), Mage::helper('tmcore')->__('Modules'));
|
11 |
+
return $this;
|
12 |
+
}
|
13 |
+
|
14 |
+
public function indexAction()
|
15 |
+
{
|
16 |
+
$this->_initAction();
|
17 |
+
$this->renderLayout();
|
18 |
+
}
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Placeholder grid for AJAX request
|
22 |
+
*/
|
23 |
+
public function gridAction()
|
24 |
+
{
|
25 |
+
$this->loadLayout();
|
26 |
+
$this->renderLayout();
|
27 |
+
}
|
28 |
+
|
29 |
+
public function manageAction()
|
30 |
+
{
|
31 |
+
if (!$this->getRequest()->getParam('id')) {
|
32 |
+
return $this->_redirect('*/*/index');
|
33 |
+
}
|
34 |
+
|
35 |
+
$module = Mage::getModel('tmcore/module');
|
36 |
+
$module->load($this->getRequest()->getParam('id'));
|
37 |
+
|
38 |
+
$data = Mage::getSingleton('adminhtml/session')->getFormData(true);
|
39 |
+
if (!empty($data)) {
|
40 |
+
$module->addData($data);
|
41 |
+
}
|
42 |
+
|
43 |
+
Mage::register('tmcore_module', $module);
|
44 |
+
|
45 |
+
$this->_initAction()
|
46 |
+
->_addBreadcrumb(Mage::helper('tmcore')->__('Manage'), Mage::helper('tmcore')->__('Manage'));
|
47 |
+
$this->renderLayout();
|
48 |
+
}
|
49 |
+
|
50 |
+
public function runAction()
|
51 |
+
{
|
52 |
+
if (!$this->getRequest()->isPost()) {
|
53 |
+
return $this->_redirect('*/*/index');
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* @var TM_Core_Model_Module
|
58 |
+
*/
|
59 |
+
$module = Mage::getModel('tmcore/module');
|
60 |
+
$module->load($this->getRequest()->getParam('id'))
|
61 |
+
->setSkipUpgrade($this->getRequest()->getPost('skip_upgrade', false))
|
62 |
+
->setNewStores($this->getRequest()->getPost('new_stores', array()))
|
63 |
+
->setIdentityKey($this->getRequest()->getParam('identity_key'));
|
64 |
+
|
65 |
+
$result = $module->validateLicense();
|
66 |
+
if (is_array($result) && isset($result['error'])) {
|
67 |
+
Mage::getSingleton('adminhtml/session')->setFormData($this->getRequest()->getPost());
|
68 |
+
Mage::getSingleton('adminhtml/session')->addError(
|
69 |
+
// try to translate remote response
|
70 |
+
call_user_func_array(array(Mage::helper('tmcore'), '__'), $result['error'])
|
71 |
+
);
|
72 |
+
return $this->_redirect('*/*/manage', array('id' => $module->getId()));
|
73 |
+
}
|
74 |
+
|
75 |
+
$module->up();
|
76 |
+
|
77 |
+
Mage::app()->cleanCache();
|
78 |
+
Mage::dispatchEvent('adminhtml_cache_flush_system');
|
79 |
+
|
80 |
+
$groupedErrors = $module->getMessageLogger()->getErrors();
|
81 |
+
if (count($groupedErrors)) {
|
82 |
+
foreach ($groupedErrors as $type => $errors) {
|
83 |
+
foreach ($errors as $error) {
|
84 |
+
if (is_array($error)) {
|
85 |
+
$message = $error['message'];
|
86 |
+
} else {
|
87 |
+
$message = $error;
|
88 |
+
}
|
89 |
+
Mage::getSingleton('adminhtml/session')->addError($message);
|
90 |
+
}
|
91 |
+
}
|
92 |
+
Mage::getSingleton('adminhtml/session')->setFormData($this->getRequest()->getPost());
|
93 |
+
return $this->_redirect('*/*/manage', array('id' => $module->getId()));
|
94 |
+
}
|
95 |
+
|
96 |
+
Mage::getSingleton('adminhtml/session')->setFormData(false);
|
97 |
+
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('tmcore')->__("The module has been saved"));
|
98 |
+
$this->_redirect('*/*/');
|
99 |
+
}
|
100 |
+
}
|
app/code/community/TM/Core/etc/adminhtml.xml
ADDED
@@ -0,0 +1,45 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<menu>
|
4 |
+
<templates_master>
|
5 |
+
<title>Templates Master</title>
|
6 |
+
<sort_order>71</sort_order>
|
7 |
+
<children>
|
8 |
+
<tmcore_module translate="title" module="tmcore">
|
9 |
+
<title>Modules</title>
|
10 |
+
<sort_order>999</sort_order>
|
11 |
+
<action>adminhtml/tmcore_module/index</action>
|
12 |
+
</tmcore_module>
|
13 |
+
</children>
|
14 |
+
</templates_master>
|
15 |
+
</menu>
|
16 |
+
<acl>
|
17 |
+
<resources>
|
18 |
+
<admin>
|
19 |
+
<children>
|
20 |
+
<system>
|
21 |
+
<children>
|
22 |
+
<config>
|
23 |
+
<children>
|
24 |
+
<tmcore>
|
25 |
+
<title>Core</title>
|
26 |
+
</tmcore>
|
27 |
+
</children>
|
28 |
+
</config>
|
29 |
+
</children>
|
30 |
+
</system>
|
31 |
+
<templates_master>
|
32 |
+
<title>Templates Master</title>
|
33 |
+
<sort_order>71</sort_order>
|
34 |
+
<children>
|
35 |
+
<tmcore_module translate="title" module="tmcore">
|
36 |
+
<title>Modules</title>
|
37 |
+
<sort_order>999</sort_order>
|
38 |
+
</tmcore_module>
|
39 |
+
</children>
|
40 |
+
</templates_master>
|
41 |
+
</children>
|
42 |
+
</admin>
|
43 |
+
</resources>
|
44 |
+
</acl>
|
45 |
+
</config>
|
app/code/community/TM/Core/etc/config.xml
ADDED
@@ -0,0 +1,150 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<TM_Core>
|
5 |
+
<version>1.2.0</version>
|
6 |
+
</TM_Core>
|
7 |
+
</modules>
|
8 |
+
|
9 |
+
<global>
|
10 |
+
<models>
|
11 |
+
<tmcore>
|
12 |
+
<class>TM_Core_Model</class>
|
13 |
+
<resourceModel>tmcore_resource</resourceModel>
|
14 |
+
</tmcore>
|
15 |
+
<tmcore_resource>
|
16 |
+
<class>TM_Core_Model_Resource</class>
|
17 |
+
<entities>
|
18 |
+
<module>
|
19 |
+
<table>tm_core_module</table>
|
20 |
+
</module>
|
21 |
+
</entities>
|
22 |
+
</tmcore_resource>
|
23 |
+
</models>
|
24 |
+
<blocks>
|
25 |
+
<tmcore>
|
26 |
+
<class>TM_Core_Block</class>
|
27 |
+
</tmcore>
|
28 |
+
</blocks>
|
29 |
+
<helpers>
|
30 |
+
<tmcore>
|
31 |
+
<class>TM_Core_Helper</class>
|
32 |
+
</tmcore>
|
33 |
+
</helpers>
|
34 |
+
<resources>
|
35 |
+
<tm_core_setup>
|
36 |
+
<setup>
|
37 |
+
<module>TM_Core</module>
|
38 |
+
</setup>
|
39 |
+
<connection>
|
40 |
+
<use>core_setup</use>
|
41 |
+
</connection>
|
42 |
+
</tm_core_setup>
|
43 |
+
</resources>
|
44 |
+
</global>
|
45 |
+
|
46 |
+
<adminhtml>
|
47 |
+
<layout>
|
48 |
+
<updates>
|
49 |
+
<tmcore>
|
50 |
+
<file>tmcore.xml</file>
|
51 |
+
</tmcore>
|
52 |
+
</updates>
|
53 |
+
</layout>
|
54 |
+
<events>
|
55 |
+
<controller_action_predispatch>
|
56 |
+
<observers>
|
57 |
+
<tmcore>
|
58 |
+
<class>tmcore/observer</class>
|
59 |
+
<method>preDispatch</method>
|
60 |
+
</tmcore>
|
61 |
+
</observers>
|
62 |
+
</controller_action_predispatch>
|
63 |
+
</events>
|
64 |
+
<translate>
|
65 |
+
<modules>
|
66 |
+
<TM_Core>
|
67 |
+
<files>
|
68 |
+
<default>TM_Core.csv</default>
|
69 |
+
</files>
|
70 |
+
</TM_Core>
|
71 |
+
</modules>
|
72 |
+
</translate>
|
73 |
+
<menu>
|
74 |
+
<templates_master>
|
75 |
+
<title>Templates Master</title>
|
76 |
+
<sort_order>71</sort_order>
|
77 |
+
<children>
|
78 |
+
<tmcore_module translate="title" module="tmcore">
|
79 |
+
<title>Modules</title>
|
80 |
+
<sort_order>999</sort_order>
|
81 |
+
<action>adminhtml/tmcore_module/index</action>
|
82 |
+
</tmcore_module>
|
83 |
+
</children>
|
84 |
+
</templates_master>
|
85 |
+
</menu>
|
86 |
+
<acl>
|
87 |
+
<resources>
|
88 |
+
<admin>
|
89 |
+
<children>
|
90 |
+
<system>
|
91 |
+
<children>
|
92 |
+
<config>
|
93 |
+
<children>
|
94 |
+
<tmcore>
|
95 |
+
<title>Core</title>
|
96 |
+
</tmcore>
|
97 |
+
</children>
|
98 |
+
</config>
|
99 |
+
</children>
|
100 |
+
</system>
|
101 |
+
<templates_master>
|
102 |
+
<title>Templates Master</title>
|
103 |
+
<sort_order>71</sort_order>
|
104 |
+
<children>
|
105 |
+
<tmcore_module translate="title" module="tmcore">
|
106 |
+
<title>Modules</title>
|
107 |
+
<sort_order>999</sort_order>
|
108 |
+
</tmcore_module>
|
109 |
+
</children>
|
110 |
+
</templates_master>
|
111 |
+
</children>
|
112 |
+
</admin>
|
113 |
+
</resources>
|
114 |
+
</acl>
|
115 |
+
</adminhtml>
|
116 |
+
|
117 |
+
<admin>
|
118 |
+
<routers>
|
119 |
+
<adminhtml>
|
120 |
+
<args>
|
121 |
+
<modules>
|
122 |
+
<tmcore before="Mage_Adminhtml">TM_Core_Adminhtml</tmcore>
|
123 |
+
</modules>
|
124 |
+
</args>
|
125 |
+
</adminhtml>
|
126 |
+
</routers>
|
127 |
+
</admin>
|
128 |
+
|
129 |
+
<default>
|
130 |
+
<tmcore>
|
131 |
+
<modules>
|
132 |
+
<feed_url>templates-master.com/modules</feed_url>
|
133 |
+
</modules>
|
134 |
+
<license>
|
135 |
+
<use_https>0</use_https>
|
136 |
+
<url>/license/validate</url>
|
137 |
+
</license>
|
138 |
+
<notification>
|
139 |
+
<feed_url>templates-master.com/notifier</feed_url>
|
140 |
+
<use_https>0</use_https>
|
141 |
+
<frequency>24</frequency>
|
142 |
+
<filter>installed,promo,release,update,other</filter>
|
143 |
+
<last_update>0</last_update>
|
144 |
+
</notification>
|
145 |
+
<troubleshooting>
|
146 |
+
<text><![CDATA[Please <a href='http://templates-master.com/contacts' onclick='window.open(this.href); return false;'>contact us</a>, if you have some issues with one of our modules.]]></text>
|
147 |
+
</troubleshooting>
|
148 |
+
</tmcore>
|
149 |
+
</default>
|
150 |
+
</config>
|
app/code/community/TM/Core/etc/system.xml
ADDED
@@ -0,0 +1,86 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<tabs>
|
4 |
+
<templates_master>
|
5 |
+
<label>Templates-master</label>
|
6 |
+
<sort_order>195</sort_order>
|
7 |
+
</templates_master>
|
8 |
+
</tabs>
|
9 |
+
<sections>
|
10 |
+
<tmcore>
|
11 |
+
<label>Core</label>
|
12 |
+
<tab>templates_master</tab>
|
13 |
+
<frontend_type>text</frontend_type>
|
14 |
+
<sort_order>11</sort_order>
|
15 |
+
<show_in_default>1</show_in_default>
|
16 |
+
<show_in_website>1</show_in_website>
|
17 |
+
<show_in_store>1</show_in_store>
|
18 |
+
<groups>
|
19 |
+
<troubleshooting translate="label comment" module="tmcore">
|
20 |
+
<label>Troubleshooting</label>
|
21 |
+
<frontend_type>text</frontend_type>
|
22 |
+
<frontend_model>tmcore/adminhtml_system_config_form_fieldset_troubleshooting</frontend_model>
|
23 |
+
<sort_order>10</sort_order>
|
24 |
+
<show_in_default>1</show_in_default>
|
25 |
+
<show_in_website>0</show_in_website>
|
26 |
+
<show_in_store>0</show_in_store>
|
27 |
+
</troubleshooting>
|
28 |
+
<modules translate="label" module="tmcore">
|
29 |
+
<label>Modules Information</label>
|
30 |
+
<frontend_type>text</frontend_type>
|
31 |
+
<frontend_model>tmcore/adminhtml_system_config_form_fieldset_modules_list</frontend_model>
|
32 |
+
<sort_order>20</sort_order>
|
33 |
+
<show_in_default>1</show_in_default>
|
34 |
+
<show_in_website>0</show_in_website>
|
35 |
+
<show_in_store>0</show_in_store>
|
36 |
+
</modules>
|
37 |
+
<notification translate="label" module="adminnotification">
|
38 |
+
<label>Notifications</label>
|
39 |
+
<frontend_type>text</frontend_type>
|
40 |
+
<sort_order>30</sort_order>
|
41 |
+
<show_in_default>1</show_in_default>
|
42 |
+
<show_in_website>0</show_in_website>
|
43 |
+
<show_in_store>0</show_in_store>
|
44 |
+
<fields>
|
45 |
+
<!-- <use_https translate="label">
|
46 |
+
<label>Use HTTPS to Get Feed</label>
|
47 |
+
<frontend_type>select</frontend_type>
|
48 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
49 |
+
<sort_order>10</sort_order>
|
50 |
+
<show_in_default>1</show_in_default>
|
51 |
+
<show_in_website>0</show_in_website>
|
52 |
+
<show_in_store>0</show_in_store>
|
53 |
+
</use_https> -->
|
54 |
+
<frequency translate="label">
|
55 |
+
<label>Update Frequency</label>
|
56 |
+
<frontend_type>select</frontend_type>
|
57 |
+
<source_model>adminhtml/system_config_source_notification_frequency</source_model>
|
58 |
+
<sort_order>20</sort_order>
|
59 |
+
<show_in_default>1</show_in_default>
|
60 |
+
<show_in_website>0</show_in_website>
|
61 |
+
<show_in_store>0</show_in_store>
|
62 |
+
</frequency>
|
63 |
+
<filter translate="label" module="tmcore">
|
64 |
+
<label>News to show in notification bar</label>
|
65 |
+
<frontend_type>multiselect</frontend_type>
|
66 |
+
<source_model>tmcore/adminhtml_system_config_source_notification_channel</source_model>
|
67 |
+
<sort_order>25</sort_order>
|
68 |
+
<show_in_default>1</show_in_default>
|
69 |
+
<show_in_website>0</show_in_website>
|
70 |
+
<show_in_store>0</show_in_store>
|
71 |
+
</filter>
|
72 |
+
<last_update translate="label">
|
73 |
+
<label>Last Update</label>
|
74 |
+
<frontend_type>label</frontend_type>
|
75 |
+
<frontend_model>tmcore/adminhtml_system_config_form_field_notification</frontend_model>
|
76 |
+
<sort_order>30</sort_order>
|
77 |
+
<show_in_default>1</show_in_default>
|
78 |
+
<show_in_website>0</show_in_website>
|
79 |
+
<show_in_store>0</show_in_store>
|
80 |
+
</last_update>
|
81 |
+
</fields>
|
82 |
+
</notification>
|
83 |
+
</groups>
|
84 |
+
</tmcore>
|
85 |
+
</sections>
|
86 |
+
</config>
|
app/code/community/TM/Core/sql/tm_core_setup/mysql4-install-1.0.0.php
ADDED
@@ -0,0 +1,23 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* @var $installer Mage_Core_Model_Resource_Setup */
|
4 |
+
$installer = $this;
|
5 |
+
|
6 |
+
$installer->startSetup();
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Create table 'tmcore/module'
|
10 |
+
*/
|
11 |
+
$table = $installer->getConnection()
|
12 |
+
->newTable($installer->getTable('tmcore/module'))
|
13 |
+
->addColumn('code', Varien_Db_Ddl_Table::TYPE_TEXT, 50, array(
|
14 |
+
'nullable' => false,
|
15 |
+
'primary' => true,
|
16 |
+
)
|
17 |
+
)
|
18 |
+
// ->addColumn('version', Varien_Db_Ddl_Table::TYPE_TEXT, 50)
|
19 |
+
->addColumn('data_version', Varien_Db_Ddl_Table::TYPE_TEXT, 50)
|
20 |
+
->addColumn('license_key', Varien_Db_Ddl_Table::TYPE_TEXT, 32);
|
21 |
+
$installer->getConnection()->createTable($table);
|
22 |
+
|
23 |
+
$installer->endSetup();
|
app/code/community/TM/Core/sql/tm_core_setup/mysql4-upgrade-1.0.0-1.0.1.php
ADDED
@@ -0,0 +1,12 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* @var $installer Mage_Core_Model_Resource_Setup */
|
4 |
+
$installer = $this;
|
5 |
+
|
6 |
+
$installer->startSetup();
|
7 |
+
|
8 |
+
$tableName = $installer->getTable('tmcore/module');
|
9 |
+
$installer->getConnection()->changeColumn($tableName, 'license_key', 'identity_key', 'TEXT', true);
|
10 |
+
$installer->getConnection()->addColumn($tableName, 'store_ids', 'VARCHAR(64) NOT NULL');
|
11 |
+
|
12 |
+
$installer->endSetup();
|
app/code/local/TM/Ajax/controllers/ProductController.php
CHANGED
@@ -56,7 +56,7 @@ class TM_Ajax_ProductController extends Mage_Catalog_ProductController
|
|
56 |
Â
} else {
|
57 |
Â
$result .= Mage::helper('catalog')->__('Error. Product not found');
|
58 |
Â
}
|
59 |
-
|
60 |
Â
}
|
61 |
Â
}
|
62 |
Â
|
56 |
Â
} else {
|
57 |
Â
$result .= Mage::helper('catalog')->__('Error. Product not found');
|
58 |
Â
}
|
59 |
+
$this->getResponse()->setBody($result);
|
60 |
Â
}
|
61 |
Â
}
|
62 |
Â
|
app/code/local/TM/Featured/etc/config.xml
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<config>
|
3 |
-
<modules>
|
4 |
-
<TM_Featured>
|
5 |
-
<version>1.1.0</version>
|
6 |
-
</TM_Featured>
|
7 |
-
</modules>
|
8 |
-
<global>
|
9 |
-
<blocks>
|
10 |
-
<featured>
|
11 |
-
<class>TM_Featured_Block</class>
|
12 |
-
</featured>
|
13 |
-
</blocks>
|
14 |
-
</global>
|
15 |
-
</config>
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<TM_Featured>
|
5 |
+
<version>1.1.0</version>
|
6 |
+
</TM_Featured>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<blocks>
|
10 |
+
<featured>
|
11 |
+
<class>TM_Featured_Block</class>
|
12 |
+
</featured>
|
13 |
+
</blocks>
|
14 |
+
</global>
|
15 |
+
</config>
|
app/code/local/TM/Templatef001/etc/config.xml
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<config>
|
3 |
-
<modules>
|
4 |
-
<TM_Templatef001>
|
5 |
-
<version>1.7.0.0</version>
|
6 |
-
</TM_Templatef001>
|
7 |
-
</modules>
|
8 |
-
<global>
|
9 |
-
<resources>
|
10 |
-
<templatef001_setup>
|
11 |
-
<setup>
|
12 |
-
<module>TM_Templatef001</module>
|
13 |
-
</setup>
|
14 |
-
<connection>
|
15 |
-
<use>core_setup</use>
|
16 |
-
</connection>
|
17 |
-
</templatef001_setup>
|
18 |
-
</resources>
|
19 |
-
</global>
|
20 |
Â
</config>
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<TM_Templatef001>
|
5 |
+
<version>1.7.0.0</version>
|
6 |
+
</TM_Templatef001>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<resources>
|
10 |
+
<templatef001_setup>
|
11 |
+
<setup>
|
12 |
+
<module>TM_Templatef001</module>
|
13 |
+
</setup>
|
14 |
+
<connection>
|
15 |
+
<use>core_setup</use>
|
16 |
+
</connection>
|
17 |
+
</templatef001_setup>
|
18 |
+
</resources>
|
19 |
+
</global>
|
20 |
Â
</config>
|
app/design/frontend/default/f001/template/catalog/navigation/sidebox.phtml
CHANGED
@@ -1,31 +1,31 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Top menu for store
|
4 |
-
*
|
5 |
-
* @see Mage_Catalog_Block_Navigation
|
6 |
-
*/
|
7 |
-
?>
|
8 |
-
<?php
|
9 |
-
/**
|
10 |
-
* $this->renderCategoriesMenuHtml() supports optional arguments:
|
11 |
-
* int Level number for list item class to start from
|
12 |
-
* string Extra class of outermost list items
|
13 |
-
* string If specified wraps children list in div with this class
|
14 |
-
*/
|
15 |
-
?>
|
16 |
-
<?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
|
17 |
-
<?php if($_menu): ?>
|
18 |
-
<div class="block block-navigation">
|
19 |
-
<div class="block-title"><strong><span><?php echo $this->__('Store Catalog') ?></span></strong></div>
|
20 |
-
<div class="block-content">
|
21 |
-
<ul id="nav-sidebox">
|
22 |
-
<?php echo $_menu ?>
|
23 |
-
</ul>
|
24 |
-
</div>
|
25 |
-
</div>
|
26 |
-
<script type="text/javascript">
|
27 |
-
document.observe("dom:loaded", function() {
|
28 |
-
mainNav("nav-sidebox", {"show_delay":"100","hide_delay":"100"});
|
29 |
-
});
|
30 |
-
</script>
|
31 |
-
<?php endif ?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Top menu for store
|
4 |
+
*
|
5 |
+
* @see Mage_Catalog_Block_Navigation
|
6 |
+
*/
|
7 |
+
?>
|
8 |
+
<?php
|
9 |
+
/**
|
10 |
+
* $this->renderCategoriesMenuHtml() supports optional arguments:
|
11 |
+
* int Level number for list item class to start from
|
12 |
+
* string Extra class of outermost list items
|
13 |
+
* string If specified wraps children list in div with this class
|
14 |
+
*/
|
15 |
+
?>
|
16 |
+
<?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
|
17 |
+
<?php if($_menu): ?>
|
18 |
+
<div class="block block-navigation">
|
19 |
+
<div class="block-title"><strong><span><?php echo $this->__('Store Catalog') ?></span></strong></div>
|
20 |
+
<div class="block-content">
|
21 |
+
<ul id="nav-sidebox">
|
22 |
+
<?php echo $_menu ?>
|
23 |
+
</ul>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
<script type="text/javascript">
|
27 |
+
document.observe("dom:loaded", function() {
|
28 |
+
mainNav("nav-sidebox", {"show_delay":"100","hide_delay":"100"});
|
29 |
+
});
|
30 |
+
</script>
|
31 |
+
<?php endif ?>
|
app/design/frontend/default/f001/template/page/html/footer.phtml
CHANGED
@@ -35,7 +35,7 @@
|
|
35 |
Â
<br />
|
36 |
Â
<p class="legality">
|
37 |
Â
<?php echo $this->getCopyright() ?>
|
38 |
-
<!-- This theme is avalable udner Creative Commons License http://creativecommons.org/licenses/by/3.0/ Removing links to is similarly prohibited.
|
39 |
Â
<?php echo $this->getChildHtml('store_switcher') ?>
|
40 |
Â
</p>
|
41 |
Â
<div class="clear"></div>
|
35 |
Â
<br />
|
36 |
Â
<p class="legality">
|
37 |
Â
<?php echo $this->getCopyright() ?>
|
38 |
+
<!-- This theme is avalable udner Creative Commons License http://creativecommons.org/licenses/by/3.0/ Removing links to is similarly prohibited. -->Magento Theme by <a href="http://templates-master.com" title="Templates master" rel="nofollow">templates-master.com</a><!-- Removing links to is similarly prohibited. -->
|
39 |
Â
<?php echo $this->getChildHtml('store_switcher') ?>
|
40 |
Â
</p>
|
41 |
Â
<div class="clear"></div>
|
app/etc/modules/TM_Ajax.xml
CHANGED
@@ -6,4 +6,4 @@
|
|
6 |
Â
<codePool>local</codePool>
|
7 |
Â
</TM_Ajax>
|
8 |
Â
</modules>
|
9 |
-
</config>
|
6 |
Â
<codePool>local</codePool>
|
7 |
Â
</TM_Ajax>
|
8 |
Â
</modules>
|
9 |
+
</config>
|
app/etc/modules/TM_Core.xml
ADDED
@@ -0,0 +1,9 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<TM_Core>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
</TM_Core>
|
8 |
+
</modules>
|
9 |
+
</config>
|
app/etc/modules/TM_Featured.xml
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<config>
|
3 |
-
<modules>
|
4 |
-
<TM_Featured>
|
5 |
-
<active>true</active>
|
6 |
-
<codePool>local</codePool>
|
7 |
-
<depends>
|
8 |
-
<Mage_Catalog />
|
9 |
-
</depends>
|
10 |
-
</TM_Featured>
|
11 |
-
</modules>
|
12 |
Â
</config>
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<TM_Featured>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>local</codePool>
|
7 |
+
<depends>
|
8 |
+
<Mage_Catalog />
|
9 |
+
</depends>
|
10 |
+
</TM_Featured>
|
11 |
+
</modules>
|
12 |
Â
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
Â
<?xml version="1.0"?>
|
2 |
Â
<package>
|
3 |
Â
<name>magento_absolute_theme_free</name>
|
4 |
-
<version>1.7.0.2</version>
|
5 |
Â
<stability>stable</stability>
|
6 |
Â
<license uri="http://creativecommons.org/licenses/by/3.0/">Creative Commons License </license>
|
7 |
Â
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
Â
<description>Magento Absolute Template based on 2 column home page layout with products slider and image slider on welcome page. JavaScript slider on front page is easy to use and SEO friendly.</description>
|
11 |
Â
<notes>Magento Absolute Theme</notes>
|
12 |
Â
<authors><author><name>TemplatesMaster</name><user>TemplatesMaster</user><email>support@templates-master.com</email></author></authors>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="f001"><dir name="layout"><file name="catalog.xml" hash="60cba63d3e9a3ec7c9154c84ecdf86fc"/><file name="newsletter.xml" hash="2483c7e07f0e0b421dc4e04cc83b35b3"/><file name="page.xml" hash="61d30182aa8f86c60c055c439e447b64"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="457b6b450e46822c93405efb93c5bd37"/></dir></dir><dir name="template"><dir name="catalog"><dir name="navigation"><file name="sidebox.phtml" hash="60d840429020cabe6e71d670a2b43edc"/><file name="top.phtml" hash="1d1ec8283aee977eb593951bf32824de"/></dir><dir name="product"><file name="featured.phtml" hash="ea7f2c01bcfc1bcfdcda28d66b91c4eb"/><file name="list.phtml" hash="a53b69013755953e8d91f1ac82595c40"/><file name="new.phtml" hash="4c6330e7a3cace8c53e2328134c85ab5"/></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="020da532207364ebc0445765f141f7df"/></dir><dir name="checkout"><dir name="cart"><file name="header.phtml" hash="8b9ccc7f5e2ad092341283039919ceb0"/></dir></dir><dir name="page"><file name="1column.phtml" hash="24019992f30be20cc541a6553bdee260"/><file name="2columns-left.phtml" hash="8638d9c5e7865302a24e16127e16e7d6"/><file name="2columns-right.phtml" hash="4828de7bbbfae3305a21d751541ab04f"/><file name="3columns.phtml" hash="40b1f5035277c533d05c1c5169086600"/><dir name="html"><file name="footer.phtml" hash="60e8c1ee59eb7f6852c0af01bc23b084"/><file name="header.phtml" hash="5908a8ea17c284b6867b02ff26cfa715"/><file name="topmenu.phtml" hash="1451f8154d775585b43e187317fc6453"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="f001"><dir name="css"><file name="custom.css" hash="4162f5b5d50114dd6d8777deac61958d"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="b64aaf7cf66b29979609d6e4e2249a48"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7e6c364b484caf8d20bfbe6f7a3d3231"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="fb6dd894a89491093e5478582a2f4f85"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="57780ee8e915941b3614c1033be45034"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="aeab65b269a5fffe798b0ea0546b6394"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="eb465b91728c58f5689ede4fde04dac5"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="386bb9b19e3e4a8e2eb2b594a9c5e961"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c6a557e47b7b1c0a9a4d64e2ff207ef1"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="68898e14ec31e32c965e99ba64bbc02b"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><dir name="slider"><file name="Thumbs.db" hash="8a87784142b0e07a892484023d31a7a8"/><file name="slider1.jpg" hash="e2d9cb0bd51fa97fed13a73f63e14627"/><file name="slider2.jpg" hash="49674fbfc58aea297c7c0b2ac817e328"/><file name="slider3.jpg" hash="fcf194ccac88253c332c7fa32376b526"/><file name="slider4.jpg" hash="641e84ecf3268c3dc2e4ee6ee3354597"/><file name="slider5.jpg" hash="57a552086c1ee7481e59d3226298b29b"/></dir><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="803b83fe695baed72b7333ed95d20b6e"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_green"><dir name="css"><file name="custom.css" hash="da03ce3e8e6078eda03ef4663be20270"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="ea4e9ef0134e99675e61ff385bbbfc2d"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="16926ff1b34f816d18e46bdcdd5d43db"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="acdec4dc2fac0e12d13cbfbbb9a93c03"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="8a4a4e73ff01ee1b3e36e0a4a66ec500"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="263614de994bffba8507cb143bc88448"/><file name="container.gif" hash="e7c533bcf201f18b0c59fe76eea777c4"/><file name="container.png" hash="e734791ccb935606b59e9731c5aa47e1"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="5897be8b0ae3a295d32e41e666c65e44"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="fba09675b0f15221b8e3df4c31c04021"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="4595a9c19ce0bbb1da019414e78f3cdb"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="21b22479dd05e2ffd3440a7b6f61aff4"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="ae0001e526ba724882f508fac17a0108"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="7691e972420aa28dc13fb374ccf7114c"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_grey"><dir name="css"><file name="custom.css" hash="115ac97890b68414409df276234ca9c2"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="a1a2766d6bf127e942c4758c3fc45360"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="d151ba54bbc5952827fff671cb74d1e5"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="6752ad6abd0fa2e6e9a13654eca24987"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="80b32c240a2580fae18458ef30017ec4"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="5d1bd1b915045263cf57efc27490ff42"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="c09df53946d819dc3f6d401bbc019838"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="b305b1cab762ff4ec05d9cd7c92f9a41"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_orange"><dir name="css"><file name="custom.css" hash="cc249981c1e60b5e672b6464730bf52b"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="129ccfc4db22b2a9b33a4b76a249763f"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="62716db929c7b26be53febe2337376a3"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="8bbf714e8f1b3ed8fc6991ce54b922a4"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="18dcb00c059031489adcaa5919327d30"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="a82693e74779b2095a94a40c9d5d7cc4"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="08df2159554c5f700a3abde378d4ef63"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="d57ff42c6a76b9d80cae2b20f50bd8ed"/><file name="callout_side2.jpg" hash="554879fc61f1c404b9fc27f275067220"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="254b1c9810d0e68ebd4e22cc7e62a7d9"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="f23995ba564be57ffb1150ff65af8205"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="f731fb638fbdb071337d86153f09edee"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="7cdda682dc5a0bac7e4be6c8cf6fab29"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_pink"><dir name="css"><file name="custom.css" hash="148e293aedb20e037674844f854bb2a6"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="9e424fa456d23bf9cff04ca8bb32d5f6"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="c915f8754bc12e0004b58727e71f7d9a"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="59a8edd2e0636e7ace27c879a4b61ebe"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="7b922ff69fa25d993da8a070c15586df"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="10502aa0aba5d3aca8fae78e69e68188"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="5133d2785f3d7a2dfbb1f7dd5ce9368b"/><file name="callout_side2.jpg" hash="5aa052d413633736c71ae6e874f2e906"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="96804ce76cca8d3d6d699b8eaf64237d"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="a1da3005852d780ee6eb6b9df15de8cb"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="a941dc6450f16333a22b21c752f252d5"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_red"><dir name="css"><file name="custom.css" hash="b669159caa11c21b91c4ae5c9c3ce772"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="dea11da7257ee62fa93e58cc45ad2525"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="37df2c010a2270fdcd07ab35c8f13675"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="787633791a751b11def8d8eb307058e7"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="8d3c3d071b7c74b2d701be9253b663bf"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="2fbe39de64a57f4d6e677719ac6ca41a"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="38e0ca2d946b22f85757db0aef3b4a72"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="310d19d6a140aee110260a48cc7c84b0"/><file name="callout_side2.jpg" hash="e6f57ce0d4ac6e8f6e6ecf192e604338"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="0d5b374c40498b1be97ac59a94e25228"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="7971c3fe80424327487720949b7f167e"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="6feb3506bbb60623c3ebb652aa6e99b3"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="956cc822ffa012feb18c40638ab7e13c"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_sea_green"><dir name="css"><file name="custom.css" hash="23de118ff7cdbaaf6bd596ca4ae5e59f"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="e7955dcd324b4c7aaa9fb5128a41a35f"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="4bc4310a93fb3e67c536134c725d6542"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="86cd0c9b9e2f2b85b4f3bd67be8f7a2c"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="2fc4a5ef5051b3c2615abf6672b3d1d8"/><file name="container.gif" hash="e7c533bcf201f18b0c59fe76eea777c4"/><file name="container.png" hash="8b91469008df5dc280a9f377a47e78c7"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="2ab8f3bf4a603e59a203f534e644ac9b"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="5324de8ba8f39ae0140bce46fc1c9080"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="bd4edb4ecaccf6ec15184ce4e08d6db3"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="24366a5a372cf30e287c932b7ad4417b"/><file name="callout_side2.jpg" hash="9a0f541b3bba6e978b0872b90d6b959d"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="5ef56b7d1d87cf7f403654c3230a9fe8"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="119fc3484ea9de980b3b227a8c825a1c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="eb98a3262d39e1100b723f2feed62c72"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="397d5fdf6deeec011a88df938099258f"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_silver"><dir name="css"><file name="custom.css" hash="5c0a0d7277bb1f3b2911757a0d1643a6"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="8395b4931d7b9f9e0700a9539d90b5e0"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="061086f1eaa34a46e433206d23b8d406"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="3af4ec304d0ff76429b080684e97fcf7"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="206886b2eec1f4d7034826322d319a58"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="94e2d86a01158c79b5989a575605ccd6"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="e3614f262687005e23006f654bce522b"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="bf43329b06a2183554484016fae4c762"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="169d8f2d26b064b888fd0d63ef4b4efb"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="174208ac2d2f3a9031aa39d62759d821"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_violet"><dir name="css"><file name="custom.css" hash="7eb51a4336b8490ccba87874c3470da7"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="0b7c75ee0f04cc386d8147ede4de6251"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="6bf3a12f5d8b50758982ded9f8461182"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="3fd8c4ed0278b532e16f61cc087e0a66"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="6abd434c5d2dd651bc96196937433848"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="e689b301e4b5f2c941e06b9290bac387"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="db3ec3c1675e57e9ee9754564da05627"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="1beff3be378b35b75ea9a55beee7df04"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="937d758c68df0b2515002c684036236a"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="280db6c4c1e0cbf22ef065713bceb83c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="17d2f7694aeb1292ce5447219da3c9db"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="05f717c66625a1e3ea22b04bd318c721"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir><dir name="f001_yellow"><dir name="css"><file name="custom.css" hash="a26ef0cbce8f52a9e2b74f66554156fd"/><file name="ie8.css" hash="2c0e336c3723f1368a432450508442a1"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="c63b0077f3052ff5a00fb0a8d58f4638"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7d24442ed060adcaabe84b6fa0d2b1b5"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="aff1d7d151a8fba6995d2f9552095b70"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="ba81114d24532bd0319dcb8c8e62857b"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="6cc2a8428f13e2b33e88448abb646766"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="4e296efa86f508a96f94510e6f178eeb"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="d47f87e077fe7c6fb8563b14c32ba7d0"/><file name="callout_side2.jpg" hash="24670765f1f834125a19f3e4c37c0d95"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="8f1f190643c8d4a94209b30c5fe5e756"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="1423ac32de587be6301798ef3bb4968c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="0be1590aac8f347d52d1cb696f5d3b3d"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="06875ee060353a26729cb3147467c35b"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="167adf4c67bb10f5fdf23b60e8c3e01f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TM_Ajax.xml" hash="8029cd8c445b6f76e4a50fd1d0b82eba"/><file name="TM_Featured.xml" hash="3ee4fe30b51b395481246bb876503f2d"/><file name="TM_Templatef001.xml" hash="f566cc9354a5b863d63d4802413e7691"/></dir></target><target name="magelocal"><dir name="TM"><dir name="Ajax"><dir name="controllers"><file name="ProductController.php" hash="1f987dc417b9a0549b27ebfd5330ce41"/></dir><dir name="etc"><file name="config.xml" hash="89de1a3ab210c048ecf4736347bfd558"/></dir></dir><dir name="Featured"><dir name="Block"><file name="Featured.php" hash="f8ae106bd3f27ae60fa14e3db21c2604"/></dir><dir name="etc"><file name="config.xml" hash="8836ec1f8701f05c008a21adebbe8cf7"/></dir></dir><dir name="Templatef001"><dir name="etc"><file name="config.xml" hash="bd79ab8ba1a949900828e6037cbd9ac4"/></dir></dir></dir></target></contents>
|
16 |
Â
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>
|
18 |
Â
</package>
|
1 |
Â
<?xml version="1.0"?>
|
2 |
Â
<package>
|
3 |
Â
<name>magento_absolute_theme_free</name>
|
4 |
+
<version>1.7.0.2.1</version>
|
5 |
Â
<stability>stable</stability>
|
6 |
Â
<license uri="http://creativecommons.org/licenses/by/3.0/">Creative Commons License </license>
|
7 |
Â
<channel>community</channel>
|
10 |
Â
<description>Magento Absolute Template based on 2 column home page layout with products slider and image slider on welcome page. JavaScript slider on front page is easy to use and SEO friendly.</description>
|
11 |
Â
<notes>Magento Absolute Theme</notes>
|
12 |
Â
<authors><author><name>TemplatesMaster</name><user>TemplatesMaster</user><email>support@templates-master.com</email></author></authors>
|
13 |
+
<date>2013-05-28</date>
|
14 |
+
<time>12:07:40</time>
|
15 |
+
<contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="f001"><dir name="layout"><file name="catalog.xml" hash="60cba63d3e9a3ec7c9154c84ecdf86fc"/><file name="newsletter.xml" hash="2483c7e07f0e0b421dc4e04cc83b35b3"/><file name="page.xml" hash="61d30182aa8f86c60c055c439e447b64"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="457b6b450e46822c93405efb93c5bd37"/></dir></dir><dir name="template"><dir name="catalog"><dir name="navigation"><file name="sidebox.phtml" hash="efbc38b23097fde43fbb08df6947568e"/><file name="top.phtml" hash="1d1ec8283aee977eb593951bf32824de"/></dir><dir name="product"><file name="featured.phtml" hash="ea7f2c01bcfc1bcfdcda28d66b91c4eb"/><file name="list.phtml" hash="a53b69013755953e8d91f1ac82595c40"/><file name="new.phtml" hash="4c6330e7a3cace8c53e2328134c85ab5"/></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="020da532207364ebc0445765f141f7df"/></dir><dir name="checkout"><dir name="cart"><file name="header.phtml" hash="8b9ccc7f5e2ad092341283039919ceb0"/></dir></dir><dir name="page"><file name="1column.phtml" hash="24019992f30be20cc541a6553bdee260"/><file name="2columns-left.phtml" hash="8638d9c5e7865302a24e16127e16e7d6"/><file name="2columns-right.phtml" hash="4828de7bbbfae3305a21d751541ab04f"/><file name="3columns.phtml" hash="40b1f5035277c533d05c1c5169086600"/><dir name="html"><file name="footer.phtml" hash="b8e10a4866af58bd3f621226f9bd6bb1"/><file name="header.phtml" hash="5908a8ea17c284b6867b02ff26cfa715"/><file name="topmenu.phtml" hash="1451f8154d775585b43e187317fc6453"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="f001"><dir name="css"><file name="custom.css" hash="a896728106c561d2e56b5237063a1845"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="b64aaf7cf66b29979609d6e4e2249a48"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7e6c364b484caf8d20bfbe6f7a3d3231"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="fb6dd894a89491093e5478582a2f4f85"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="57780ee8e915941b3614c1033be45034"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="aeab65b269a5fffe798b0ea0546b6394"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="eb465b91728c58f5689ede4fde04dac5"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="386bb9b19e3e4a8e2eb2b594a9c5e961"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c6a557e47b7b1c0a9a4d64e2ff207ef1"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="68898e14ec31e32c965e99ba64bbc02b"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><dir name="slider"><file name="Thumbs.db" hash="8a87784142b0e07a892484023d31a7a8"/><file name="slider1.jpg" hash="e2d9cb0bd51fa97fed13a73f63e14627"/><file name="slider2.jpg" hash="49674fbfc58aea297c7c0b2ac817e328"/><file name="slider3.jpg" hash="fcf194ccac88253c332c7fa32376b526"/><file name="slider4.jpg" hash="641e84ecf3268c3dc2e4ee6ee3354597"/><file name="slider5.jpg" hash="57a552086c1ee7481e59d3226298b29b"/></dir><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="803b83fe695baed72b7333ed95d20b6e"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_green"><dir name="css"><file name="custom.css" hash="e58a7d006c1a0adcc59ccdf1db943258"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="ea4e9ef0134e99675e61ff385bbbfc2d"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="16926ff1b34f816d18e46bdcdd5d43db"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="acdec4dc2fac0e12d13cbfbbb9a93c03"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="8a4a4e73ff01ee1b3e36e0a4a66ec500"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="263614de994bffba8507cb143bc88448"/><file name="container.gif" hash="e7c533bcf201f18b0c59fe76eea777c4"/><file name="container.png" hash="e734791ccb935606b59e9731c5aa47e1"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="5897be8b0ae3a295d32e41e666c65e44"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="fba09675b0f15221b8e3df4c31c04021"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="4595a9c19ce0bbb1da019414e78f3cdb"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="21b22479dd05e2ffd3440a7b6f61aff4"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="ae0001e526ba724882f508fac17a0108"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="7691e972420aa28dc13fb374ccf7114c"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_grey"><dir name="css"><file name="custom.css" hash="7a2a2e823f04e6baaa258645ea922dfe"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="a1a2766d6bf127e942c4758c3fc45360"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="d151ba54bbc5952827fff671cb74d1e5"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="6752ad6abd0fa2e6e9a13654eca24987"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="80b32c240a2580fae18458ef30017ec4"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="5d1bd1b915045263cf57efc27490ff42"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="c09df53946d819dc3f6d401bbc019838"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="b305b1cab762ff4ec05d9cd7c92f9a41"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_orange"><dir name="css"><file name="custom.css" hash="7685eeb69b65644d642d4f46ad84dfcd"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="129ccfc4db22b2a9b33a4b76a249763f"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="62716db929c7b26be53febe2337376a3"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="8bbf714e8f1b3ed8fc6991ce54b922a4"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="18dcb00c059031489adcaa5919327d30"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="a82693e74779b2095a94a40c9d5d7cc4"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="08df2159554c5f700a3abde378d4ef63"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="d57ff42c6a76b9d80cae2b20f50bd8ed"/><file name="callout_side2.jpg" hash="554879fc61f1c404b9fc27f275067220"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="254b1c9810d0e68ebd4e22cc7e62a7d9"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="f23995ba564be57ffb1150ff65af8205"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="f731fb638fbdb071337d86153f09edee"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="7cdda682dc5a0bac7e4be6c8cf6fab29"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_pink"><dir name="css"><file name="custom.css" hash="48e8f02eddffe8f8f08fea81e8d1a6e7"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="9e424fa456d23bf9cff04ca8bb32d5f6"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="c915f8754bc12e0004b58727e71f7d9a"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="59a8edd2e0636e7ace27c879a4b61ebe"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="7b922ff69fa25d993da8a070c15586df"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="10502aa0aba5d3aca8fae78e69e68188"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="5133d2785f3d7a2dfbb1f7dd5ce9368b"/><file name="callout_side2.jpg" hash="5aa052d413633736c71ae6e874f2e906"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="96804ce76cca8d3d6d699b8eaf64237d"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="a1da3005852d780ee6eb6b9df15de8cb"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="a941dc6450f16333a22b21c752f252d5"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_red"><dir name="css"><file name="custom.css" hash="c049ed096cc2bd5359e38c65a86ba05c"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="dea11da7257ee62fa93e58cc45ad2525"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="37df2c010a2270fdcd07ab35c8f13675"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="787633791a751b11def8d8eb307058e7"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="8d3c3d071b7c74b2d701be9253b663bf"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="2fbe39de64a57f4d6e677719ac6ca41a"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="38e0ca2d946b22f85757db0aef3b4a72"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="310d19d6a140aee110260a48cc7c84b0"/><file name="callout_side2.jpg" hash="e6f57ce0d4ac6e8f6e6ecf192e604338"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="0d5b374c40498b1be97ac59a94e25228"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="7971c3fe80424327487720949b7f167e"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="6feb3506bbb60623c3ebb652aa6e99b3"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="956cc822ffa012feb18c40638ab7e13c"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_sea_green"><dir name="css"><file name="custom.css" hash="8fcea1d66ee3450a7234a0089db7b31e"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="e7955dcd324b4c7aaa9fb5128a41a35f"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="4bc4310a93fb3e67c536134c725d6542"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="86cd0c9b9e2f2b85b4f3bd67be8f7a2c"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="2fc4a5ef5051b3c2615abf6672b3d1d8"/><file name="container.gif" hash="e7c533bcf201f18b0c59fe76eea777c4"/><file name="container.png" hash="8b91469008df5dc280a9f377a47e78c7"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="2ab8f3bf4a603e59a203f534e644ac9b"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="5324de8ba8f39ae0140bce46fc1c9080"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="bd4edb4ecaccf6ec15184ce4e08d6db3"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="24366a5a372cf30e287c932b7ad4417b"/><file name="callout_side2.jpg" hash="9a0f541b3bba6e978b0872b90d6b959d"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="5ef56b7d1d87cf7f403654c3230a9fe8"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="119fc3484ea9de980b3b227a8c825a1c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="eb98a3262d39e1100b723f2feed62c72"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="397d5fdf6deeec011a88df938099258f"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_silver"><dir name="css"><file name="custom.css" hash="a872213ebf9c10945195c2cd1a80a8f9"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="8395b4931d7b9f9e0700a9539d90b5e0"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="061086f1eaa34a46e433206d23b8d406"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="3af4ec304d0ff76429b080684e97fcf7"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="206886b2eec1f4d7034826322d319a58"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="94e2d86a01158c79b5989a575605ccd6"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="e3614f262687005e23006f654bce522b"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="bf43329b06a2183554484016fae4c762"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="169d8f2d26b064b888fd0d63ef4b4efb"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="174208ac2d2f3a9031aa39d62759d821"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_violet"><dir name="css"><file name="custom.css" hash="115b760b81d6dd1e1c9f9a5ab00f91ca"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="0b7c75ee0f04cc386d8147ede4de6251"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="6bf3a12f5d8b50758982ded9f8461182"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="3fd8c4ed0278b532e16f61cc087e0a66"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="6abd434c5d2dd651bc96196937433848"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="e689b301e4b5f2c941e06b9290bac387"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="db3ec3c1675e57e9ee9754564da05627"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="1beff3be378b35b75ea9a55beee7df04"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="937d758c68df0b2515002c684036236a"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="280db6c4c1e0cbf22ef065713bceb83c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="17d2f7694aeb1292ce5447219da3c9db"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="05f717c66625a1e3ea22b04bd318c721"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_yellow"><dir name="css"><file name="custom.css" hash="fe362d171fbb147c8228615afb316ee9"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="cef1d6c09295c50a2905221d11caf160"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="c63b0077f3052ff5a00fb0a8d58f4638"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7d24442ed060adcaabe84b6fa0d2b1b5"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="aff1d7d151a8fba6995d2f9552095b70"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="ba81114d24532bd0319dcb8c8e62857b"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="6cc2a8428f13e2b33e88448abb646766"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="4e296efa86f508a96f94510e6f178eeb"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="d47f87e077fe7c6fb8563b14c32ba7d0"/><file name="callout_side2.jpg" hash="24670765f1f834125a19f3e4c37c0d95"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="8f1f190643c8d4a94209b30c5fe5e756"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="1423ac32de587be6301798ef3bb4968c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="0be1590aac8f347d52d1cb696f5d3b3d"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="06875ee060353a26729cb3147467c35b"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TM_Ajax.xml" hash="9a91443169a792f5ee45cb24ad566b70"/><file name="TM_Featured.xml" hash="3b9d222a29b5136fd1a84d5d8931b822"/><file name="TM_Core.xml" hash="432801c3e16eb2ffa4d48309024617bb"/><file name="TM_Templatef001.xml" hash="f566cc9354a5b863d63d4802413e7691"/></dir></target><target name="magelocal"><dir name="TM"><dir name="Ajax"><dir name="controllers"><file name="ProductController.php" hash="483b20b1c7b986b3a0b1b91ccbb290c7"/></dir><dir name="etc"><file name="config.xml" hash="89de1a3ab210c048ecf4736347bfd558"/></dir></dir><dir name="Featured"><dir name="Block"><file name="Featured.php" hash="f8ae106bd3f27ae60fa14e3db21c2604"/></dir><dir name="etc"><file name="config.xml" hash="5245acac004a1c746d33a51b038805d4"/></dir></dir><dir name="Templatef001"><dir name="etc"><file name="config.xml" hash="35de60c2d00431477e7937df1c592fa4"/></dir></dir></dir></target><target name="magecommunity"><dir name="TM"><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="Module"><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="94e4642076a653933f831d21587f0e0b"/><file name="VersionStatus.php" hash="f437375fa42bd6d5811e9ac357b25b92"/></dir></dir><file name="Grid.php" hash="88147fb4413a034d9baeb72be2862f19"/><dir name="Manage"><file name="Form.php" hash="445f9d528e6649634ef998676edca76d"/><dir name="Tab"><file name="Main.php" hash="2515917547f38ab32f540b20c98b055a"/></dir><file name="Tabs.php" hash="b8b94209331a74de8f74b43096957b46"/></dir><file name="Manage.php" hash="de66455cf3b3c137d63600fcfb752c2e"/></dir><file name="Module.php" hash="5fc47720bda5db44a99ee33dc6682088"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Notification.php" hash="6c06aec0e04520f2dffe9a8ec580d545"/></dir><dir name="Fieldset"><dir name="Modules"><file name="List.php" hash="e4fcb7c10f265a111e754d2776afd9a8"/></dir><file name="Troubleshooting.php" hash="9516baca7da47dffc4c70123260c0ae8"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="04f3938da6e900e9a393899e9a7f8600"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Notification"><file name="Channel.php" hash="a617b0f2a905bc28d2946a23e68ede5f"/></dir></dir></dir></dir></dir><dir name="Module"><file name="MessageLogger.php" hash="23ae476aa7a9ef6379ffe6953e869e0e"/><file name="Upgrade.php" hash="565caeb2c67a0866668d18fcd4c8c7e7"/></dir><file name="Module.php" hash="b72f0452c524f6372c53cfbb26fac8a5"/><dir name="Notification"><file name="Feed.php" hash="9984b660f75579f593bdcf6f47b09302"/></dir><file name="Observer.php" hash="86ab42323c4782aa3aa5e9b3f2b2f300"/><dir name="Resource"><dir name="Module"><file name="AdminGridCollection.php" hash="fb9642aff21c3c833195aebf4cf65644"/><file name="Collection.php" hash="a6fe79d80f1e7039abd51010e5e1ec4c"/><file name="MergedCollection.php" hash="88df0f1531adbf2496d27801c9fd259c"/><file name="RemoteCollection.php" hash="f39e96bebe0d5a39164b578382acb032"/></dir><file name="Module.php" hash="3338136f015ec2ef531214c3430fa087"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Tmcore"><file name="ModuleController.php" hash="b00a654a61aafefa782ff1603656f725"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0e13b7aa740612aeb2a3db22072a24ed"/><file name="config.xml" hash="96ad706f504ee143d88ee11f7c65cf0b"/><file name="system.xml" hash="e0b8f8f7e41058b8de97c1ae22ba5ccc"/></dir><dir name="sql"><dir name="tm_core_setup"><file name="mysql4-install-1.0.0.php" hash="83ec99b96faa96ae51b33ad51f343348"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="26da85d76c4ad2469e3723f16154234f"/></dir></dir></dir></dir></target></contents>
|
16 |
Â
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>5.3.5</max></php></required></dependencies>
|
18 |
Â
</package>
|
skin/frontend/default/f001/css/custom.css
CHANGED
@@ -1,314 +1,314 @@
|
|
1 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #00628E;color:#2F2F2F}
|
2 |
-
|
3 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
4 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
5 |
-
|
6 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
7 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
8 |
-
|
9 |
-
.header {z-index: 100;}
|
10 |
-
.header .logo { margin: 0; }
|
11 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
12 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
13 |
-
.shop-access a:hover { text-decoration: underline; }
|
14 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
15 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
16 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
17 |
-
.header .form-search label{display:none}
|
18 |
-
.header .form-search button.button{width:20px}
|
19 |
-
.header .form-search button.button span { background: none; }
|
20 |
-
|
21 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
22 |
-
.page-title h1 {color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
23 |
-
|
24 |
-
.block-content a{}
|
25 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
26 |
-
.block-subscribe .block-title strong{background:none}
|
27 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
28 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
29 |
-
.block-subscribe .actions{margin-top:15px}
|
30 |
-
.block-cart .subtotal{background:#eee}
|
31 |
-
|
32 |
-
.block-tags .block-content ul { border: none; }
|
33 |
-
|
34 |
-
.block-layered-nav{}
|
35 |
-
.block-layered-nav .block-title{ padding:0px; }
|
36 |
-
|
37 |
-
.block-layered-nav{padding:5px 10px}
|
38 |
-
.block-layered-nav .block-subtitle,
|
39 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
40 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
41 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
42 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
43 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
44 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
45 |
-
|
46 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
47 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
48 |
-
.products-grid .ratings .amount{display:none}
|
49 |
-
.products-grid .actions{}
|
50 |
-
/*************************Buttons*************************/
|
51 |
-
button.button{background:none; border:0px solid #000}
|
52 |
-
|
53 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
54 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
55 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
56 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
57 |
-
|
58 |
-
/**ALT BTNS**/
|
59 |
-
.grey-box .button span,
|
60 |
-
.cart-table .btn-continue span,
|
61 |
-
.cart-table .btn-update span,
|
62 |
-
.cart-table .btn-empty span,
|
63 |
-
.cart .discount button span,
|
64 |
-
.cart .shipping button span,
|
65 |
-
.block-compare button.button span,
|
66 |
-
.block-poll button.button span,
|
67 |
-
.block-login .actions button.button span,
|
68 |
-
.product-view .box-tags .form-add button.button span,
|
69 |
-
.multiple-checkout .title-buttons button.button span,
|
70 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
71 |
-
.grey-box .button:hover span,
|
72 |
-
.cart-table .btn-continue:hover span,
|
73 |
-
.cart-table .btn-update:hover span,
|
74 |
-
.cart-table .btn-empty:hover span,
|
75 |
-
.cart .discount button:hover span,
|
76 |
-
.cart .shipping button:hover span,
|
77 |
-
.block-compare button.button:hover span,
|
78 |
-
.block-poll button.button:hover span,
|
79 |
-
.block-login .actions button.button:hover span,
|
80 |
-
.product-view .box-tags .form-add button.button:hover span,
|
81 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
82 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
83 |
-
.grey-box .button span span,
|
84 |
-
.cart-table .btn-continue span span,
|
85 |
-
.cart-table .btn-update span span,
|
86 |
-
.cart-table .btn-empty span span,
|
87 |
-
.cart .discount button span span,
|
88 |
-
.cart .shipping button span span,
|
89 |
-
.block-compare button.button span span,
|
90 |
-
.block-poll button.button span span,
|
91 |
-
.block-login .actions button.button span span,
|
92 |
-
.product-view .box-tags .form-add button.button span span,
|
93 |
-
.multiple-checkout .title-buttons button.button span span,
|
94 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
95 |
-
.grey-box .button:hover span span,
|
96 |
-
.cart-table .btn-continue:hover span span,
|
97 |
-
.cart-table .btn-update:hover span span,
|
98 |
-
.cart-table .btn-empty:hover span span,
|
99 |
-
.cart .discount button:hover span span,
|
100 |
-
.cart .shipping button:hover span span,
|
101 |
-
.block-compare button.button:hover span span,
|
102 |
-
.block-poll button.button:hover span span,
|
103 |
-
.block-login .actions button.button:hover span span,
|
104 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
105 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
106 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
107 |
-
|
108 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
109 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
110 |
-
|
111 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
112 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
113 |
-
|
114 |
-
button.btn-checkout span span{padding:0 16px}
|
115 |
-
/****************************End Buttons***************************/
|
116 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
117 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
118 |
-
|
119 |
-
|
120 |
-
/********** < Navigation */
|
121 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
122 |
-
|
123 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
124 |
-
#nav li { position:relative; text-align:left; }
|
125 |
-
#nav li.over { z-index:998; }
|
126 |
-
#nav a,
|
127 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
128 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
129 |
-
#nav li ul span {white-space:normal; }
|
130 |
-
|
131 |
-
/* 0 Level */
|
132 |
-
#nav li { float:left; }
|
133 |
-
#nav a{float:left; color:#c3d5e3; font-weight:bold}
|
134 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
135 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
136 |
-
/*#nav li.first span{padding-left:18px}*/
|
137 |
-
#nav li.over a,
|
138 |
-
#nav a:hover{color:#fff}
|
139 |
-
|
140 |
-
/* 1st Level */
|
141 |
-
#nav ul li,
|
142 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
143 |
-
#nav li.active li a,
|
144 |
-
#nav ul li.active a{background:#fff}
|
145 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
146 |
-
*/
|
147 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
148 |
-
|
149 |
-
#nav ul a,
|
150 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
151 |
-
#nav ul li a { font-weight:normal !important; }
|
152 |
-
|
153 |
-
/* 2nd Level */
|
154 |
-
#nav ul,
|
155 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
156 |
-
#nav div ul { position:static; width:auto; border:none; }
|
157 |
-
#nav ul span {background:none}
|
158 |
-
|
159 |
-
/* 3rd+ Level */
|
160 |
-
#nav ul ul,
|
161 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
162 |
-
|
163 |
-
#nav ul li a {background:#fff}
|
164 |
-
#nav ul li a:hover {background:#f4f4f4}
|
165 |
-
#nav ul li.over > a {background:#f4f4f4}
|
166 |
-
#nav ul li a,
|
167 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
168 |
-
#nav ul span,
|
169 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
170 |
-
|
171 |
-
/* Show menu */
|
172 |
-
#nav li ul.shown-sub,
|
173 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
174 |
-
#nav li .shown-sub ul.shown-sub,
|
175 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
176 |
-
/********** Navigation > */
|
177 |
-
/* ======================================================================================= */
|
178 |
-
|
179 |
-
.cms-home .nav-home a,
|
180 |
-
.contacts-index-index .nav-contacts a,
|
181 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
182 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
183 |
-
|
184 |
-
.f-right{float:right}
|
185 |
-
.f-left{float:left}
|
186 |
-
.a-right{text-align:right}
|
187 |
-
.a-left{text-align:left}
|
188 |
-
.a-center{text-align:center}
|
189 |
-
|
190 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
191 |
-
|
192 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
193 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
194 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
195 |
-
.header-cart .title a{color:#fff}
|
196 |
-
.header-cart .content{background:#f3f8fb; padding:0}
|
197 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
198 |
-
.header-cart .content li a:hover{color:#333}
|
199 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
200 |
-
.header-cart .title a{color:#fff}
|
201 |
-
|
202 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
203 |
-
|
204 |
-
#nav-sidebox{font-size:1.1em}
|
205 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
206 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
207 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
208 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
209 |
-
#nav-sidebox ul{}
|
210 |
-
#nav-sidebox ul li{padding-left:10px}
|
211 |
-
#nav-sidebox ul li ul{display:none}
|
212 |
-
|
213 |
-
.featured-container{margin-bottom:20px}
|
214 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
215 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
216 |
-
|
217 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
218 |
-
.mini-newsletter label{color:#fff}
|
219 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
220 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
221 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
222 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
223 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
224 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
225 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
226 |
-
|
227 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
228 |
-
|
229 |
-
.recently .last{border-bottom:0px solid #FFF}
|
230 |
-
.recently .subtitle{color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
231 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
232 |
-
.recently li.item .price-box{}
|
233 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
234 |
-
|
235 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
236 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
237 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
238 |
-
a.product-name:hover { text-decoration: underline; }
|
239 |
-
|
240 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
241 |
-
|
242 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
243 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
244 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
245 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#D5E1E9; font-size:0.9em}
|
246 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
247 |
-
.footer .informational h6{margin-bottom:0.4em; color:#d5e1e9; font-size:1.1em}
|
248 |
-
|
249 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #136793; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
250 |
-
|
251 |
-
.footer .payments{float:right; margin:5px 0 0}
|
252 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
253 |
-
.footer .legality a{color:#b5e2ff; text-decoration: none;}
|
254 |
-
|
255 |
-
/* glider */
|
256 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
257 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
258 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
259 |
-
div.scroller img{ border:none}
|
260 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
261 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
262 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
263 |
-
|
264 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
265 |
-
div.sliderdescription:hover{background:#fff}
|
266 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
267 |
-
.content a:hover{text-decoration:underline}
|
268 |
-
|
269 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
270 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
271 |
-
|
272 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
273 |
-
|
274 |
-
.slidercontrol a:hover,
|
275 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
276 |
-
|
277 |
-
/* slider */
|
278 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
279 |
-
.featured-products h4{margin-right:10px; color:#459b06; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
280 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
281 |
-
.featured-products #move-left,
|
282 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
283 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
284 |
-
.featured-products #move-left.disabled,
|
285 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
286 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
287 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
288 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
289 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
290 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
291 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
292 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
293 |
-
|
294 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
295 |
-
#quick-window .product-img-box{width:230px; float:left}
|
296 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
297 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
298 |
-
|
299 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
300 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
301 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
302 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
303 |
-
.catalog-listing .product-image{position:relative}
|
304 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
305 |
-
|
306 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
307 |
-
a.ajax:hover{text-decoration:none}
|
308 |
-
|
309 |
-
|
310 |
-
/****Update styles ****/
|
311 |
-
|
312 |
-
.footer li {background: none; display: block; padding: 0;}
|
313 |
-
|
314 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #00628E;color:#2F2F2F}
|
2 |
+
|
3 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
4 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
5 |
+
|
6 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
7 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
8 |
+
|
9 |
+
.header {z-index: 100;}
|
10 |
+
.header .logo { margin: 0; }
|
11 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
12 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
13 |
+
.shop-access a:hover { text-decoration: underline; }
|
14 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
15 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
16 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
17 |
+
.header .form-search label{display:none}
|
18 |
+
.header .form-search button.button{width:20px}
|
19 |
+
.header .form-search button.button span { background: none; }
|
20 |
+
|
21 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
22 |
+
.page-title h1 {color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
23 |
+
|
24 |
+
.block-content a{}
|
25 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
26 |
+
.block-subscribe .block-title strong{background:none}
|
27 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
28 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
29 |
+
.block-subscribe .actions{margin-top:15px}
|
30 |
+
.block-cart .subtotal{background:#eee}
|
31 |
+
|
32 |
+
.block-tags .block-content ul { border: none; }
|
33 |
+
|
34 |
+
.block-layered-nav{}
|
35 |
+
.block-layered-nav .block-title{ padding:0px; }
|
36 |
+
|
37 |
+
.block-layered-nav{padding:5px 10px}
|
38 |
+
.block-layered-nav .block-subtitle,
|
39 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
40 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
41 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
42 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
43 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
44 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
45 |
+
|
46 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
47 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
48 |
+
.products-grid .ratings .amount{display:none}
|
49 |
+
.products-grid .actions{}
|
50 |
+
/*************************Buttons*************************/
|
51 |
+
button.button{background:none; border:0px solid #000}
|
52 |
+
|
53 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
54 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
55 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
56 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
57 |
+
|
58 |
+
/**ALT BTNS**/
|
59 |
+
.grey-box .button span,
|
60 |
+
.cart-table .btn-continue span,
|
61 |
+
.cart-table .btn-update span,
|
62 |
+
.cart-table .btn-empty span,
|
63 |
+
.cart .discount button span,
|
64 |
+
.cart .shipping button span,
|
65 |
+
.block-compare button.button span,
|
66 |
+
.block-poll button.button span,
|
67 |
+
.block-login .actions button.button span,
|
68 |
+
.product-view .box-tags .form-add button.button span,
|
69 |
+
.multiple-checkout .title-buttons button.button span,
|
70 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
71 |
+
.grey-box .button:hover span,
|
72 |
+
.cart-table .btn-continue:hover span,
|
73 |
+
.cart-table .btn-update:hover span,
|
74 |
+
.cart-table .btn-empty:hover span,
|
75 |
+
.cart .discount button:hover span,
|
76 |
+
.cart .shipping button:hover span,
|
77 |
+
.block-compare button.button:hover span,
|
78 |
+
.block-poll button.button:hover span,
|
79 |
+
.block-login .actions button.button:hover span,
|
80 |
+
.product-view .box-tags .form-add button.button:hover span,
|
81 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
82 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
83 |
+
.grey-box .button span span,
|
84 |
+
.cart-table .btn-continue span span,
|
85 |
+
.cart-table .btn-update span span,
|
86 |
+
.cart-table .btn-empty span span,
|
87 |
+
.cart .discount button span span,
|
88 |
+
.cart .shipping button span span,
|
89 |
+
.block-compare button.button span span,
|
90 |
+
.block-poll button.button span span,
|
91 |
+
.block-login .actions button.button span span,
|
92 |
+
.product-view .box-tags .form-add button.button span span,
|
93 |
+
.multiple-checkout .title-buttons button.button span span,
|
94 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
95 |
+
.grey-box .button:hover span span,
|
96 |
+
.cart-table .btn-continue:hover span span,
|
97 |
+
.cart-table .btn-update:hover span span,
|
98 |
+
.cart-table .btn-empty:hover span span,
|
99 |
+
.cart .discount button:hover span span,
|
100 |
+
.cart .shipping button:hover span span,
|
101 |
+
.block-compare button.button:hover span span,
|
102 |
+
.block-poll button.button:hover span span,
|
103 |
+
.block-login .actions button.button:hover span span,
|
104 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
105 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
106 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
107 |
+
|
108 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
109 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
110 |
+
|
111 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
112 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
113 |
+
|
114 |
+
button.btn-checkout span span{padding:0 16px}
|
115 |
+
/****************************End Buttons***************************/
|
116 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
117 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
118 |
+
|
119 |
+
|
120 |
+
/********** < Navigation */
|
121 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
122 |
+
|
123 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
124 |
+
#nav li { position:relative; text-align:left; }
|
125 |
+
#nav li.over { z-index:998; }
|
126 |
+
#nav a,
|
127 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
128 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
129 |
+
#nav li ul span {white-space:normal; }
|
130 |
+
|
131 |
+
/* 0 Level */
|
132 |
+
#nav li { float:left; }
|
133 |
+
#nav a{float:left; color:#c3d5e3; font-weight:bold}
|
134 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
135 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
136 |
+
/*#nav li.first span{padding-left:18px}*/
|
137 |
+
#nav li.over a,
|
138 |
+
#nav a:hover{color:#fff}
|
139 |
+
|
140 |
+
/* 1st Level */
|
141 |
+
#nav ul li,
|
142 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
143 |
+
#nav li.active li a,
|
144 |
+
#nav ul li.active a{background:#fff}
|
145 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
146 |
+
*/
|
147 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
148 |
+
|
149 |
+
#nav ul a,
|
150 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
151 |
+
#nav ul li a { font-weight:normal !important; }
|
152 |
+
|
153 |
+
/* 2nd Level */
|
154 |
+
#nav ul,
|
155 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
156 |
+
#nav div ul { position:static; width:auto; border:none; }
|
157 |
+
#nav ul span {background:none}
|
158 |
+
|
159 |
+
/* 3rd+ Level */
|
160 |
+
#nav ul ul,
|
161 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
162 |
+
|
163 |
+
#nav ul li a {background:#fff}
|
164 |
+
#nav ul li a:hover {background:#f4f4f4}
|
165 |
+
#nav ul li.over > a {background:#f4f4f4}
|
166 |
+
#nav ul li a,
|
167 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
168 |
+
#nav ul span,
|
169 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
170 |
+
|
171 |
+
/* Show menu */
|
172 |
+
#nav li ul.shown-sub,
|
173 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
174 |
+
#nav li .shown-sub ul.shown-sub,
|
175 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
176 |
+
/********** Navigation > */
|
177 |
+
/* ======================================================================================= */
|
178 |
+
|
179 |
+
.cms-home .nav-home a,
|
180 |
+
.contacts-index-index .nav-contacts a,
|
181 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
182 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
183 |
+
|
184 |
+
.f-right{float:right}
|
185 |
+
.f-left{float:left}
|
186 |
+
.a-right{text-align:right}
|
187 |
+
.a-left{text-align:left}
|
188 |
+
.a-center{text-align:center}
|
189 |
+
|
190 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
191 |
+
|
192 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
193 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
194 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
195 |
+
.header-cart .title a{color:#fff}
|
196 |
+
.header-cart .content{background:#f3f8fb; padding:0}
|
197 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
198 |
+
.header-cart .content li a:hover{color:#333}
|
199 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
200 |
+
.header-cart .title a{color:#fff}
|
201 |
+
|
202 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
203 |
+
|
204 |
+
#nav-sidebox{font-size:1.1em}
|
205 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
206 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
207 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
208 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
209 |
+
#nav-sidebox ul{}
|
210 |
+
#nav-sidebox ul li{padding-left:10px}
|
211 |
+
#nav-sidebox ul li ul{display:none}
|
212 |
+
|
213 |
+
.featured-container{margin-bottom:20px}
|
214 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
215 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
216 |
+
|
217 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
218 |
+
.mini-newsletter label{color:#fff}
|
219 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
220 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
221 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
222 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
223 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
224 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
225 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
226 |
+
|
227 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
228 |
+
|
229 |
+
.recently .last{border-bottom:0px solid #FFF}
|
230 |
+
.recently .subtitle{color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
231 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
232 |
+
.recently li.item .price-box{}
|
233 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
234 |
+
|
235 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
236 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
237 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
238 |
+
a.product-name:hover { text-decoration: underline; }
|
239 |
+
|
240 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
241 |
+
|
242 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
243 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
244 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
245 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#D5E1E9; font-size:0.9em}
|
246 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
247 |
+
.footer .informational h6{margin-bottom:0.4em; color:#d5e1e9; font-size:1.1em}
|
248 |
+
|
249 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #136793; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
250 |
+
|
251 |
+
.footer .payments{float:right; margin:5px 0 0}
|
252 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
253 |
+
.footer .legality a{color:#b5e2ff; text-decoration: none;}
|
254 |
+
|
255 |
+
/* glider */
|
256 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
257 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
258 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
259 |
+
div.scroller img{ border:none}
|
260 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
261 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
262 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
263 |
+
|
264 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
265 |
+
div.sliderdescription:hover{background:#fff}
|
266 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
267 |
+
.content a:hover{text-decoration:underline}
|
268 |
+
|
269 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
270 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
271 |
+
|
272 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
273 |
+
|
274 |
+
.slidercontrol a:hover,
|
275 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
276 |
+
|
277 |
+
/* slider */
|
278 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
279 |
+
.featured-products h4{margin-right:10px; color:#459b06; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
280 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
281 |
+
.featured-products #move-left,
|
282 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
283 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
284 |
+
.featured-products #move-left.disabled,
|
285 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
286 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
287 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
288 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
289 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
290 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
291 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
292 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
293 |
+
|
294 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
295 |
+
#quick-window .product-img-box{width:230px; float:left}
|
296 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
297 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
298 |
+
|
299 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
300 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
301 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
302 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
303 |
+
.catalog-listing .product-image{position:relative}
|
304 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
305 |
+
|
306 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
307 |
+
a.ajax:hover{text-decoration:none}
|
308 |
+
|
309 |
+
|
310 |
+
/****Update styles ****/
|
311 |
+
|
312 |
+
.footer li {background: none; display: block; padding: 0;}
|
313 |
+
|
314 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_green/css/custom.css
CHANGED
@@ -1,329 +1,329 @@
|
|
1 |
-
/*
|
2 |
-
* body : #58822f;
|
3 |
-
* .block-subscribe : #58822f;
|
4 |
-
* .footer .informational li ul li a : #dfe7d8;
|
5 |
-
* .footer .informational h6 : #dfe7d8;
|
6 |
-
* .footer .legality a : #c7f19e;
|
7 |
-
* #nav a : #D1E1C6;
|
8 |
-
* .header-cart .title : #C1E2A0;
|
9 |
-
* .header .form-language label : #C1E2A0;
|
10 |
-
*
|
11 |
-
*/
|
12 |
-
|
13 |
-
body{background:url("../images/body_bg.gif") repeat-x #58822f; color:#2F2F2F}
|
14 |
-
|
15 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
16 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
17 |
-
|
18 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
19 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
20 |
-
|
21 |
-
.header {z-index: 100;}
|
22 |
-
.header .logo { margin: 0; }
|
23 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
24 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
25 |
-
.shop-access a:hover { text-decoration: underline; }
|
26 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
27 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
28 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
29 |
-
.header .form-search label{display:none}
|
30 |
-
.header .form-search button.button{height:27px;width:25px;}
|
31 |
-
.header .form-search {background:url("../images/mini_search_bg.gif") no-repeat scroll right top transparent;}
|
32 |
-
.header .form-search button.button span { background: none; }
|
33 |
-
|
34 |
-
.header .form-language label { color:#C1E2A0; }
|
35 |
-
|
36 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
37 |
-
.page-title h1 {color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
38 |
-
|
39 |
-
.block-content a{}
|
40 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #58822f; border:medium none; color:#FFF; min-height:124px}
|
41 |
-
.block-subscribe .block-title strong{background:none}
|
42 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
43 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
44 |
-
.block-subscribe .actions{margin-top:15px}
|
45 |
-
.block-cart .subtotal{background:#eee}
|
46 |
-
|
47 |
-
.block-tags .block-content ul { border: none; }
|
48 |
-
|
49 |
-
.block-layered-nav{}
|
50 |
-
.block-layered-nav .block-title{ padding:0px; }
|
51 |
-
|
52 |
-
.block-layered-nav{padding:5px 10px}
|
53 |
-
.block-layered-nav .block-subtitle,
|
54 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
55 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
56 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
57 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
58 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
59 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
60 |
-
|
61 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
62 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
63 |
-
.products-grid .ratings .amount{display:none}
|
64 |
-
.products-grid .actions{}
|
65 |
-
/*************************Buttons*************************/
|
66 |
-
button.button{background:none; border:0px solid #000}
|
67 |
-
|
68 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
69 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
70 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
71 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
72 |
-
|
73 |
-
/**ALT BTNS**/
|
74 |
-
.grey-box .button span,
|
75 |
-
.cart-table .btn-continue span,
|
76 |
-
.cart-table .btn-update span,
|
77 |
-
.cart-table .btn-empty span,
|
78 |
-
.cart .discount button span,
|
79 |
-
.cart .shipping button span,
|
80 |
-
.block-compare button.button span,
|
81 |
-
.block-poll button.button span,
|
82 |
-
.block-login .actions button.button span,
|
83 |
-
.product-view .box-tags .form-add button.button span,
|
84 |
-
.multiple-checkout .title-buttons button.button span,
|
85 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
86 |
-
.grey-box .button:hover span,
|
87 |
-
.cart-table .btn-continue:hover span,
|
88 |
-
.cart-table .btn-update:hover span,
|
89 |
-
.cart-table .btn-empty:hover span,
|
90 |
-
.cart .discount button:hover span,
|
91 |
-
.cart .shipping button:hover span,
|
92 |
-
.block-compare button.button:hover span,
|
93 |
-
.block-poll button.button:hover span,
|
94 |
-
.block-login .actions button.button:hover span,
|
95 |
-
.product-view .box-tags .form-add button.button:hover span,
|
96 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
97 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
98 |
-
.grey-box .button span span,
|
99 |
-
.cart-table .btn-continue span span,
|
100 |
-
.cart-table .btn-update span span,
|
101 |
-
.cart-table .btn-empty span span,
|
102 |
-
.cart .discount button span span,
|
103 |
-
.cart .shipping button span span,
|
104 |
-
.block-compare button.button span span,
|
105 |
-
.block-poll button.button span span,
|
106 |
-
.block-login .actions button.button span span,
|
107 |
-
.product-view .box-tags .form-add button.button span span,
|
108 |
-
.multiple-checkout .title-buttons button.button span span,
|
109 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
110 |
-
.grey-box .button:hover span span,
|
111 |
-
.cart-table .btn-continue:hover span span,
|
112 |
-
.cart-table .btn-update:hover span span,
|
113 |
-
.cart-table .btn-empty:hover span span,
|
114 |
-
.cart .discount button:hover span span,
|
115 |
-
.cart .shipping button:hover span span,
|
116 |
-
.block-compare button.button:hover span span,
|
117 |
-
.block-poll button.button:hover span span,
|
118 |
-
.block-login .actions button.button:hover span span,
|
119 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
120 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
121 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
122 |
-
|
123 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
124 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
125 |
-
|
126 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
127 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
128 |
-
|
129 |
-
button.btn-checkout span span{padding:0 16px}
|
130 |
-
/****************************End Buttons***************************/
|
131 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
132 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
133 |
-
|
134 |
-
|
135 |
-
/********** < Navigation */
|
136 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
137 |
-
|
138 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
139 |
-
#nav li { position:relative; text-align:left; }
|
140 |
-
#nav li.over { z-index:998; }
|
141 |
-
#nav a,
|
142 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
143 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
144 |
-
#nav li ul span {white-space:normal; }
|
145 |
-
|
146 |
-
/* 0 Level */
|
147 |
-
#nav li { float:left; }
|
148 |
-
#nav a{float:left; color:#D1E1C6; font-weight:bold}
|
149 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
150 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
151 |
-
/*#nav li.first span{padding-left:18px}*/
|
152 |
-
#nav li.over a,
|
153 |
-
#nav a:hover{color:#fff}
|
154 |
-
|
155 |
-
/* 1st Level */
|
156 |
-
#nav ul li,
|
157 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
158 |
-
#nav li.active li a,
|
159 |
-
#nav ul li.active a{background:#fff}
|
160 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
161 |
-
*/
|
162 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
163 |
-
|
164 |
-
#nav ul a,
|
165 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
166 |
-
#nav ul li a { font-weight:normal !important; }
|
167 |
-
|
168 |
-
/* 2nd Level */
|
169 |
-
#nav ul,
|
170 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
171 |
-
#nav div ul { position:static; width:auto; border:none; }
|
172 |
-
#nav ul span {background:none}
|
173 |
-
|
174 |
-
/* 3rd+ Level */
|
175 |
-
#nav ul ul,
|
176 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
177 |
-
|
178 |
-
#nav ul li a {background:#fff}
|
179 |
-
#nav ul li a:hover {background:#f4f4f4}
|
180 |
-
#nav ul li.over > a {background:#f4f4f4}
|
181 |
-
#nav ul li a,
|
182 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
183 |
-
#nav ul span,
|
184 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
185 |
-
|
186 |
-
/* Show menu */
|
187 |
-
#nav li ul.shown-sub,
|
188 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
189 |
-
#nav li .shown-sub ul.shown-sub,
|
190 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
191 |
-
/********** Navigation > */
|
192 |
-
/* ======================================================================================= */
|
193 |
-
|
194 |
-
.cms-home .nav-home a,
|
195 |
-
.contacts-index-index .nav-contacts a,
|
196 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
197 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
198 |
-
|
199 |
-
.f-right{float:right}
|
200 |
-
.f-left{float:left}
|
201 |
-
.a-right{text-align:right}
|
202 |
-
.a-left{text-align:left}
|
203 |
-
.a-center{text-align:center}
|
204 |
-
|
205 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
206 |
-
|
207 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
208 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
209 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c1e2a0; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
210 |
-
.header-cart .title a{color:#fff}
|
211 |
-
.header-cart .content{background:#f3f8fb; padding:0}
|
212 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
213 |
-
.header-cart .content li a:hover{color:#333}
|
214 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
215 |
-
.header-cart .title a{color:#fff}
|
216 |
-
|
217 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
218 |
-
|
219 |
-
#nav-sidebox{font-size:1.1em}
|
220 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
221 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
222 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
223 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
224 |
-
#nav-sidebox ul{}
|
225 |
-
#nav-sidebox ul li{padding-left:10px}
|
226 |
-
#nav-sidebox ul li ul{display:none}
|
227 |
-
|
228 |
-
.featured-container{margin-bottom:20px}
|
229 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
230 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
231 |
-
|
232 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
233 |
-
.mini-newsletter label{color:#fff}
|
234 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
235 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
236 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
237 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
238 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
239 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
240 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
241 |
-
|
242 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
243 |
-
|
244 |
-
.recently .last{border-bottom:0px solid #FFF}
|
245 |
-
.recently .subtitle{color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
246 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
247 |
-
.recently li.item .price-box{}
|
248 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
249 |
-
|
250 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
251 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
252 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
253 |
-
a.product-name:hover { text-decoration: underline; }
|
254 |
-
|
255 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
256 |
-
|
257 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
258 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
259 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
260 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#dfe7d8;; font-size:0.9em}
|
261 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
262 |
-
.footer .informational h6{margin-bottom:0.4em; color:#dfe7d8;; font-size:1.1em}
|
263 |
-
|
264 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
265 |
-
|
266 |
-
.footer .payments{float:right; margin:5px 0 0}
|
267 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
268 |
-
.footer .legality a{color:#c7f19e; text-decoration: none;}
|
269 |
-
|
270 |
-
/* glider */
|
271 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
272 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
273 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
274 |
-
div.scroller img{ border:none}
|
275 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
276 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
277 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
278 |
-
|
279 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
280 |
-
div.sliderdescription:hover{background:#fff}
|
281 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
282 |
-
.content a:hover{text-decoration:underline}
|
283 |
-
|
284 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
285 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
286 |
-
|
287 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
288 |
-
|
289 |
-
.slidercontrol a:hover,
|
290 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
291 |
-
|
292 |
-
/* slider */
|
293 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
294 |
-
.featured-products h4{margin-right:10px; color:#459b06; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
295 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
296 |
-
.featured-products #move-left,
|
297 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
298 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
299 |
-
.featured-products #move-left.disabled,
|
300 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
301 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
302 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
303 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
304 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
305 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
306 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
307 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
308 |
-
|
309 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
310 |
-
#quick-window .product-img-box{width:230px; float:left}
|
311 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
312 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
313 |
-
|
314 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
315 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
316 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
317 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
318 |
-
.catalog-listing .product-image{position:relative}
|
319 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
320 |
-
|
321 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
322 |
-
a.ajax:hover{text-decoration:none}
|
323 |
-
|
324 |
-
|
325 |
-
/****Update styles ****/
|
326 |
-
|
327 |
-
.footer li {background: none; display: block; padding: 0;}
|
328 |
-
|
329 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #58822f;
|
3 |
+
* .block-subscribe : #58822f;
|
4 |
+
* .footer .informational li ul li a : #dfe7d8;
|
5 |
+
* .footer .informational h6 : #dfe7d8;
|
6 |
+
* .footer .legality a : #c7f19e;
|
7 |
+
* #nav a : #D1E1C6;
|
8 |
+
* .header-cart .title : #C1E2A0;
|
9 |
+
* .header .form-language label : #C1E2A0;
|
10 |
+
*
|
11 |
+
*/
|
12 |
+
|
13 |
+
body{background:url("../images/body_bg.gif") repeat-x #58822f; color:#2F2F2F}
|
14 |
+
|
15 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
16 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
17 |
+
|
18 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
19 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
20 |
+
|
21 |
+
.header {z-index: 100;}
|
22 |
+
.header .logo { margin: 0; }
|
23 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
24 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
25 |
+
.shop-access a:hover { text-decoration: underline; }
|
26 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
27 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
28 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
29 |
+
.header .form-search label{display:none}
|
30 |
+
.header .form-search button.button{height:27px;width:25px;}
|
31 |
+
.header .form-search {background:url("../images/mini_search_bg.gif") no-repeat scroll right top transparent;}
|
32 |
+
.header .form-search button.button span { background: none; }
|
33 |
+
|
34 |
+
.header .form-language label { color:#C1E2A0; }
|
35 |
+
|
36 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
37 |
+
.page-title h1 {color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
38 |
+
|
39 |
+
.block-content a{}
|
40 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #58822f; border:medium none; color:#FFF; min-height:124px}
|
41 |
+
.block-subscribe .block-title strong{background:none}
|
42 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
43 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
44 |
+
.block-subscribe .actions{margin-top:15px}
|
45 |
+
.block-cart .subtotal{background:#eee}
|
46 |
+
|
47 |
+
.block-tags .block-content ul { border: none; }
|
48 |
+
|
49 |
+
.block-layered-nav{}
|
50 |
+
.block-layered-nav .block-title{ padding:0px; }
|
51 |
+
|
52 |
+
.block-layered-nav{padding:5px 10px}
|
53 |
+
.block-layered-nav .block-subtitle,
|
54 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
55 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
56 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
57 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
58 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
59 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
60 |
+
|
61 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
62 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
63 |
+
.products-grid .ratings .amount{display:none}
|
64 |
+
.products-grid .actions{}
|
65 |
+
/*************************Buttons*************************/
|
66 |
+
button.button{background:none; border:0px solid #000}
|
67 |
+
|
68 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
69 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
70 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
71 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
72 |
+
|
73 |
+
/**ALT BTNS**/
|
74 |
+
.grey-box .button span,
|
75 |
+
.cart-table .btn-continue span,
|
76 |
+
.cart-table .btn-update span,
|
77 |
+
.cart-table .btn-empty span,
|
78 |
+
.cart .discount button span,
|
79 |
+
.cart .shipping button span,
|
80 |
+
.block-compare button.button span,
|
81 |
+
.block-poll button.button span,
|
82 |
+
.block-login .actions button.button span,
|
83 |
+
.product-view .box-tags .form-add button.button span,
|
84 |
+
.multiple-checkout .title-buttons button.button span,
|
85 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
86 |
+
.grey-box .button:hover span,
|
87 |
+
.cart-table .btn-continue:hover span,
|
88 |
+
.cart-table .btn-update:hover span,
|
89 |
+
.cart-table .btn-empty:hover span,
|
90 |
+
.cart .discount button:hover span,
|
91 |
+
.cart .shipping button:hover span,
|
92 |
+
.block-compare button.button:hover span,
|
93 |
+
.block-poll button.button:hover span,
|
94 |
+
.block-login .actions button.button:hover span,
|
95 |
+
.product-view .box-tags .form-add button.button:hover span,
|
96 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
97 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
98 |
+
.grey-box .button span span,
|
99 |
+
.cart-table .btn-continue span span,
|
100 |
+
.cart-table .btn-update span span,
|
101 |
+
.cart-table .btn-empty span span,
|
102 |
+
.cart .discount button span span,
|
103 |
+
.cart .shipping button span span,
|
104 |
+
.block-compare button.button span span,
|
105 |
+
.block-poll button.button span span,
|
106 |
+
.block-login .actions button.button span span,
|
107 |
+
.product-view .box-tags .form-add button.button span span,
|
108 |
+
.multiple-checkout .title-buttons button.button span span,
|
109 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
110 |
+
.grey-box .button:hover span span,
|
111 |
+
.cart-table .btn-continue:hover span span,
|
112 |
+
.cart-table .btn-update:hover span span,
|
113 |
+
.cart-table .btn-empty:hover span span,
|
114 |
+
.cart .discount button:hover span span,
|
115 |
+
.cart .shipping button:hover span span,
|
116 |
+
.block-compare button.button:hover span span,
|
117 |
+
.block-poll button.button:hover span span,
|
118 |
+
.block-login .actions button.button:hover span span,
|
119 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
120 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
121 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
122 |
+
|
123 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
124 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
125 |
+
|
126 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
127 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
128 |
+
|
129 |
+
button.btn-checkout span span{padding:0 16px}
|
130 |
+
/****************************End Buttons***************************/
|
131 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
132 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
133 |
+
|
134 |
+
|
135 |
+
/********** < Navigation */
|
136 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
137 |
+
|
138 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
139 |
+
#nav li { position:relative; text-align:left; }
|
140 |
+
#nav li.over { z-index:998; }
|
141 |
+
#nav a,
|
142 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
143 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
144 |
+
#nav li ul span {white-space:normal; }
|
145 |
+
|
146 |
+
/* 0 Level */
|
147 |
+
#nav li { float:left; }
|
148 |
+
#nav a{float:left; color:#D1E1C6; font-weight:bold}
|
149 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
150 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
151 |
+
/*#nav li.first span{padding-left:18px}*/
|
152 |
+
#nav li.over a,
|
153 |
+
#nav a:hover{color:#fff}
|
154 |
+
|
155 |
+
/* 1st Level */
|
156 |
+
#nav ul li,
|
157 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
158 |
+
#nav li.active li a,
|
159 |
+
#nav ul li.active a{background:#fff}
|
160 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
161 |
+
*/
|
162 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
163 |
+
|
164 |
+
#nav ul a,
|
165 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
166 |
+
#nav ul li a { font-weight:normal !important; }
|
167 |
+
|
168 |
+
/* 2nd Level */
|
169 |
+
#nav ul,
|
170 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
171 |
+
#nav div ul { position:static; width:auto; border:none; }
|
172 |
+
#nav ul span {background:none}
|
173 |
+
|
174 |
+
/* 3rd+ Level */
|
175 |
+
#nav ul ul,
|
176 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
177 |
+
|
178 |
+
#nav ul li a {background:#fff}
|
179 |
+
#nav ul li a:hover {background:#f4f4f4}
|
180 |
+
#nav ul li.over > a {background:#f4f4f4}
|
181 |
+
#nav ul li a,
|
182 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
183 |
+
#nav ul span,
|
184 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
185 |
+
|
186 |
+
/* Show menu */
|
187 |
+
#nav li ul.shown-sub,
|
188 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
189 |
+
#nav li .shown-sub ul.shown-sub,
|
190 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
191 |
+
/********** Navigation > */
|
192 |
+
/* ======================================================================================= */
|
193 |
+
|
194 |
+
.cms-home .nav-home a,
|
195 |
+
.contacts-index-index .nav-contacts a,
|
196 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
197 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
198 |
+
|
199 |
+
.f-right{float:right}
|
200 |
+
.f-left{float:left}
|
201 |
+
.a-right{text-align:right}
|
202 |
+
.a-left{text-align:left}
|
203 |
+
.a-center{text-align:center}
|
204 |
+
|
205 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
206 |
+
|
207 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
208 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
209 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c1e2a0; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
210 |
+
.header-cart .title a{color:#fff}
|
211 |
+
.header-cart .content{background:#f3f8fb; padding:0}
|
212 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
213 |
+
.header-cart .content li a:hover{color:#333}
|
214 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
215 |
+
.header-cart .title a{color:#fff}
|
216 |
+
|
217 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
218 |
+
|
219 |
+
#nav-sidebox{font-size:1.1em}
|
220 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
221 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
222 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
223 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
224 |
+
#nav-sidebox ul{}
|
225 |
+
#nav-sidebox ul li{padding-left:10px}
|
226 |
+
#nav-sidebox ul li ul{display:none}
|
227 |
+
|
228 |
+
.featured-container{margin-bottom:20px}
|
229 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
230 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
231 |
+
|
232 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
233 |
+
.mini-newsletter label{color:#fff}
|
234 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
235 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
236 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
237 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
238 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
239 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
240 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
241 |
+
|
242 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
243 |
+
|
244 |
+
.recently .last{border-bottom:0px solid #FFF}
|
245 |
+
.recently .subtitle{color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
246 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
247 |
+
.recently li.item .price-box{}
|
248 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
249 |
+
|
250 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
251 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
252 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
253 |
+
a.product-name:hover { text-decoration: underline; }
|
254 |
+
|
255 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
256 |
+
|
257 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
258 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
259 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
260 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#dfe7d8;; font-size:0.9em}
|
261 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
262 |
+
.footer .informational h6{margin-bottom:0.4em; color:#dfe7d8;; font-size:1.1em}
|
263 |
+
|
264 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
265 |
+
|
266 |
+
.footer .payments{float:right; margin:5px 0 0}
|
267 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
268 |
+
.footer .legality a{color:#c7f19e; text-decoration: none;}
|
269 |
+
|
270 |
+
/* glider */
|
271 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
272 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
273 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
274 |
+
div.scroller img{ border:none}
|
275 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
276 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
277 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
278 |
+
|
279 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
280 |
+
div.sliderdescription:hover{background:#fff}
|
281 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
282 |
+
.content a:hover{text-decoration:underline}
|
283 |
+
|
284 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
285 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
286 |
+
|
287 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
288 |
+
|
289 |
+
.slidercontrol a:hover,
|
290 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
291 |
+
|
292 |
+
/* slider */
|
293 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
294 |
+
.featured-products h4{margin-right:10px; color:#459b06; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
295 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
296 |
+
.featured-products #move-left,
|
297 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
298 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
299 |
+
.featured-products #move-left.disabled,
|
300 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
301 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
302 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
303 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
304 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
305 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
306 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
307 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
308 |
+
|
309 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
310 |
+
#quick-window .product-img-box{width:230px; float:left}
|
311 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
312 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
313 |
+
|
314 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
315 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
316 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
317 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
318 |
+
.catalog-listing .product-image{position:relative}
|
319 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
320 |
+
|
321 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
322 |
+
a.ajax:hover{text-decoration:none}
|
323 |
+
|
324 |
+
|
325 |
+
/****Update styles ****/
|
326 |
+
|
327 |
+
.footer li {background: none; display: block; padding: 0;}
|
328 |
+
|
329 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_green/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_green/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_grey/css/custom.css
CHANGED
@@ -1,329 +1,329 @@
|
|
1 |
-
/*
|
2 |
-
* body : #bebebe;
|
3 |
-
* .footer .informational li ul li a : #f2f2f2;
|
4 |
-
* .footer .informational h6 : #f2f2f2;
|
5 |
-
* .footer .legality a : #d6d6d6;
|
6 |
-
* #nav a : #d1d1d1;
|
7 |
-
* .header-cart .title : #d1d1d1;
|
8 |
-
* .header .form-language label : #d1d1d1;
|
9 |
-
* .recently .subtitle : #3297db;
|
10 |
-
* .page-title h1 : #3297db;
|
11 |
-
* .featured-products h4 : #1E7EC8;
|
12 |
-
*/
|
13 |
-
|
14 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #bebebe; color:#2F2F2F}
|
15 |
-
|
16 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
17 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
18 |
-
|
19 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
20 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
21 |
-
|
22 |
-
.header {z-index: 100;}
|
23 |
-
.header .logo { margin: 0; }
|
24 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
25 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
26 |
-
.shop-access a:hover { text-decoration: underline; }
|
27 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
28 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
29 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
30 |
-
.header .form-search label{display:none}
|
31 |
-
.header .form-search button.button{width:20px}
|
32 |
-
.header .form-search button.button span { background: none; }
|
33 |
-
|
34 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
35 |
-
.page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
36 |
-
|
37 |
-
.block-content a{}
|
38 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
39 |
-
.block-subscribe .block-title strong{background:none}
|
40 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
41 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
42 |
-
.block-subscribe .actions{margin-top:15px}
|
43 |
-
.block-cart .subtotal{background:#eee}
|
44 |
-
|
45 |
-
.block-tags .block-content ul { border: none; }
|
46 |
-
|
47 |
-
.block-layered-nav{}
|
48 |
-
.block-layered-nav .block-title{ padding:0px; }
|
49 |
-
|
50 |
-
.block-layered-nav{padding:5px 10px}
|
51 |
-
.block-layered-nav .block-subtitle,
|
52 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
53 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
54 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
55 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
56 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
57 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
58 |
-
|
59 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
60 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
61 |
-
.products-grid .ratings .amount{display:none}
|
62 |
-
.products-grid .actions{}
|
63 |
-
/*************************Buttons*************************/
|
64 |
-
button.button{background:none; border:0px solid #000}
|
65 |
-
|
66 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
67 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
68 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
69 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
70 |
-
|
71 |
-
/**ALT BTNS**/
|
72 |
-
.grey-box .button span,
|
73 |
-
.cart-table .btn-continue span,
|
74 |
-
.cart-table .btn-update span,
|
75 |
-
.cart-table .btn-empty span,
|
76 |
-
.cart .discount button span,
|
77 |
-
.cart .shipping button span,
|
78 |
-
.block-compare button.button span,
|
79 |
-
.block-poll button.button span,
|
80 |
-
.block-login .actions button.button span,
|
81 |
-
.product-view .box-tags .form-add button.button span,
|
82 |
-
.multiple-checkout .title-buttons button.button span,
|
83 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
84 |
-
.grey-box .button:hover span,
|
85 |
-
.cart-table .btn-continue:hover span,
|
86 |
-
.cart-table .btn-update:hover span,
|
87 |
-
.cart-table .btn-empty:hover span,
|
88 |
-
.cart .discount button:hover span,
|
89 |
-
.cart .shipping button:hover span,
|
90 |
-
.block-compare button.button:hover span,
|
91 |
-
.block-poll button.button:hover span,
|
92 |
-
.block-login .actions button.button:hover span,
|
93 |
-
.product-view .box-tags .form-add button.button:hover span,
|
94 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
95 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
96 |
-
.grey-box .button span span,
|
97 |
-
.cart-table .btn-continue span span,
|
98 |
-
.cart-table .btn-update span span,
|
99 |
-
.cart-table .btn-empty span span,
|
100 |
-
.cart .discount button span span,
|
101 |
-
.cart .shipping button span span,
|
102 |
-
.block-compare button.button span span,
|
103 |
-
.block-poll button.button span span,
|
104 |
-
.block-login .actions button.button span span,
|
105 |
-
.product-view .box-tags .form-add button.button span span,
|
106 |
-
.multiple-checkout .title-buttons button.button span span,
|
107 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
108 |
-
.grey-box .button:hover span span,
|
109 |
-
.cart-table .btn-continue:hover span span,
|
110 |
-
.cart-table .btn-update:hover span span,
|
111 |
-
.cart-table .btn-empty:hover span span,
|
112 |
-
.cart .discount button:hover span span,
|
113 |
-
.cart .shipping button:hover span span,
|
114 |
-
.block-compare button.button:hover span span,
|
115 |
-
.block-poll button.button:hover span span,
|
116 |
-
.block-login .actions button.button:hover span span,
|
117 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
118 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
119 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
120 |
-
|
121 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
122 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
123 |
-
|
124 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
125 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
126 |
-
|
127 |
-
button.btn-checkout span span{padding:0 16px}
|
128 |
-
/****************************End Buttons***************************/
|
129 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
130 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
131 |
-
|
132 |
-
|
133 |
-
/********** < Navigation */
|
134 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
135 |
-
|
136 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
137 |
-
#nav li { position:relative; text-align:left; }
|
138 |
-
#nav li.over { z-index:998; }
|
139 |
-
#nav a,
|
140 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
141 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
142 |
-
#nav li ul span {white-space:normal; }
|
143 |
-
|
144 |
-
/* 0 Level */
|
145 |
-
#nav li { float:left; }
|
146 |
-
#nav a{float:left; color:#d1d1d1; font-weight:bold}
|
147 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
148 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
149 |
-
/*#nav li.first span{padding-left:18px}*/
|
150 |
-
#nav li.over a,
|
151 |
-
#nav a:hover{color:#fff}
|
152 |
-
|
153 |
-
/* 1st Level */
|
154 |
-
#nav ul li,
|
155 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
156 |
-
#nav li.active li a,
|
157 |
-
#nav ul li.active a{background:#fff}
|
158 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
159 |
-
*/
|
160 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
161 |
-
|
162 |
-
#nav ul a,
|
163 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
164 |
-
#nav ul li a { font-weight:normal !important; }
|
165 |
-
|
166 |
-
/* 2nd Level */
|
167 |
-
#nav ul,
|
168 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
169 |
-
#nav div ul { position:static; width:auto; border:none; }
|
170 |
-
#nav ul span {background:none}
|
171 |
-
|
172 |
-
/* 3rd+ Level */
|
173 |
-
#nav ul ul,
|
174 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
175 |
-
|
176 |
-
#nav ul li a {background:#fff}
|
177 |
-
#nav ul li a:hover {background:#f4f4f4}
|
178 |
-
#nav ul li.over > a {background:#f4f4f4}
|
179 |
-
#nav ul li a,
|
180 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
181 |
-
#nav ul span,
|
182 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
183 |
-
|
184 |
-
/* Show menu */
|
185 |
-
#nav li ul.shown-sub,
|
186 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
187 |
-
#nav li .shown-sub ul.shown-sub,
|
188 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
189 |
-
/********** Navigation > */
|
190 |
-
/* ======================================================================================= */
|
191 |
-
|
192 |
-
.cms-home .nav-home a,
|
193 |
-
.contacts-index-index .nav-contacts a,
|
194 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
195 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
196 |
-
|
197 |
-
.f-right{float:right}
|
198 |
-
.f-left{float:left}
|
199 |
-
.a-right{text-align:right}
|
200 |
-
.a-left{text-align:left}
|
201 |
-
.a-center{text-align:center}
|
202 |
-
|
203 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
204 |
-
|
205 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
206 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
207 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#d1d1d1; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
208 |
-
.header-cart .title a{color:#fff}
|
209 |
-
.header-cart .content{background:#f3f8fb; padding:0}
|
210 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
211 |
-
.header-cart .content li a:hover{color:#333}
|
212 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
213 |
-
.header-cart .title a{color:#fff}
|
214 |
-
|
215 |
-
.header .form-language label {color: #d1d1d1;}
|
216 |
-
|
217 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
218 |
-
|
219 |
-
#nav-sidebox{font-size:1.1em}
|
220 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
221 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
222 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
223 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
224 |
-
#nav-sidebox ul{}
|
225 |
-
#nav-sidebox ul li{padding-left:10px}
|
226 |
-
#nav-sidebox ul li ul{display:none}
|
227 |
-
|
228 |
-
.featured-container{margin-bottom:20px}
|
229 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
230 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
231 |
-
|
232 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
233 |
-
.mini-newsletter label{color:#fff}
|
234 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
235 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
236 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
237 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
238 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
239 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
240 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
241 |
-
|
242 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
243 |
-
|
244 |
-
.recently .last{border-bottom:0px solid #FFF}
|
245 |
-
.recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
246 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
247 |
-
.recently li.item .price-box{}
|
248 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
249 |
-
|
250 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
251 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
252 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
253 |
-
a.product-name:hover { text-decoration: underline; }
|
254 |
-
|
255 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
256 |
-
|
257 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
258 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
259 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
260 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f2f2f2; font-size:0.9em}
|
261 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
262 |
-
.footer .informational h6{margin-bottom:0.4em; color:#f2f2f2; font-size:1.1em}
|
263 |
-
|
264 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #a8a8a8; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
265 |
-
|
266 |
-
.footer .payments{float:right; margin:5px 0 0}
|
267 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
268 |
-
.footer .legality a{color:#d6d6d6; text-decoration: none;}
|
269 |
-
|
270 |
-
/* glider */
|
271 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
272 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
273 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
274 |
-
div.scroller img{ border:none}
|
275 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
276 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
277 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
278 |
-
|
279 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
280 |
-
div.sliderdescription:hover{background:#fff}
|
281 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
282 |
-
.content a:hover{text-decoration:underline}
|
283 |
-
|
284 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
285 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
286 |
-
|
287 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
288 |
-
|
289 |
-
.slidercontrol a:hover,
|
290 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
291 |
-
|
292 |
-
/* slider */
|
293 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
294 |
-
.featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
295 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
296 |
-
.featured-products #move-left,
|
297 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
298 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
299 |
-
.featured-products #move-left.disabled,
|
300 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
301 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
302 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
303 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
304 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
305 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
306 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
307 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
308 |
-
|
309 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
310 |
-
#quick-window .product-img-box{width:230px; float:left}
|
311 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
312 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
313 |
-
|
314 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
315 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
316 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
317 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
318 |
-
.catalog-listing .product-image{position:relative}
|
319 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
320 |
-
|
321 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
322 |
-
a.ajax:hover{text-decoration:none}
|
323 |
-
|
324 |
-
|
325 |
-
/****Update styles ****/
|
326 |
-
|
327 |
-
.footer li {background: none; display: block; padding: 0;}
|
328 |
-
|
329 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #bebebe;
|
3 |
+
* .footer .informational li ul li a : #f2f2f2;
|
4 |
+
* .footer .informational h6 : #f2f2f2;
|
5 |
+
* .footer .legality a : #d6d6d6;
|
6 |
+
* #nav a : #d1d1d1;
|
7 |
+
* .header-cart .title : #d1d1d1;
|
8 |
+
* .header .form-language label : #d1d1d1;
|
9 |
+
* .recently .subtitle : #3297db;
|
10 |
+
* .page-title h1 : #3297db;
|
11 |
+
* .featured-products h4 : #1E7EC8;
|
12 |
+
*/
|
13 |
+
|
14 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #bebebe; color:#2F2F2F}
|
15 |
+
|
16 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
17 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
18 |
+
|
19 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
20 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
21 |
+
|
22 |
+
.header {z-index: 100;}
|
23 |
+
.header .logo { margin: 0; }
|
24 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
25 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
26 |
+
.shop-access a:hover { text-decoration: underline; }
|
27 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
28 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
29 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
30 |
+
.header .form-search label{display:none}
|
31 |
+
.header .form-search button.button{width:20px}
|
32 |
+
.header .form-search button.button span { background: none; }
|
33 |
+
|
34 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
35 |
+
.page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
36 |
+
|
37 |
+
.block-content a{}
|
38 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
39 |
+
.block-subscribe .block-title strong{background:none}
|
40 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
41 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
42 |
+
.block-subscribe .actions{margin-top:15px}
|
43 |
+
.block-cart .subtotal{background:#eee}
|
44 |
+
|
45 |
+
.block-tags .block-content ul { border: none; }
|
46 |
+
|
47 |
+
.block-layered-nav{}
|
48 |
+
.block-layered-nav .block-title{ padding:0px; }
|
49 |
+
|
50 |
+
.block-layered-nav{padding:5px 10px}
|
51 |
+
.block-layered-nav .block-subtitle,
|
52 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
53 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
54 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
55 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
56 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
57 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
58 |
+
|
59 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
60 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
61 |
+
.products-grid .ratings .amount{display:none}
|
62 |
+
.products-grid .actions{}
|
63 |
+
/*************************Buttons*************************/
|
64 |
+
button.button{background:none; border:0px solid #000}
|
65 |
+
|
66 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
67 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
68 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
69 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
70 |
+
|
71 |
+
/**ALT BTNS**/
|
72 |
+
.grey-box .button span,
|
73 |
+
.cart-table .btn-continue span,
|
74 |
+
.cart-table .btn-update span,
|
75 |
+
.cart-table .btn-empty span,
|
76 |
+
.cart .discount button span,
|
77 |
+
.cart .shipping button span,
|
78 |
+
.block-compare button.button span,
|
79 |
+
.block-poll button.button span,
|
80 |
+
.block-login .actions button.button span,
|
81 |
+
.product-view .box-tags .form-add button.button span,
|
82 |
+
.multiple-checkout .title-buttons button.button span,
|
83 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
84 |
+
.grey-box .button:hover span,
|
85 |
+
.cart-table .btn-continue:hover span,
|
86 |
+
.cart-table .btn-update:hover span,
|
87 |
+
.cart-table .btn-empty:hover span,
|
88 |
+
.cart .discount button:hover span,
|
89 |
+
.cart .shipping button:hover span,
|
90 |
+
.block-compare button.button:hover span,
|
91 |
+
.block-poll button.button:hover span,
|
92 |
+
.block-login .actions button.button:hover span,
|
93 |
+
.product-view .box-tags .form-add button.button:hover span,
|
94 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
95 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
96 |
+
.grey-box .button span span,
|
97 |
+
.cart-table .btn-continue span span,
|
98 |
+
.cart-table .btn-update span span,
|
99 |
+
.cart-table .btn-empty span span,
|
100 |
+
.cart .discount button span span,
|
101 |
+
.cart .shipping button span span,
|
102 |
+
.block-compare button.button span span,
|
103 |
+
.block-poll button.button span span,
|
104 |
+
.block-login .actions button.button span span,
|
105 |
+
.product-view .box-tags .form-add button.button span span,
|
106 |
+
.multiple-checkout .title-buttons button.button span span,
|
107 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
108 |
+
.grey-box .button:hover span span,
|
109 |
+
.cart-table .btn-continue:hover span span,
|
110 |
+
.cart-table .btn-update:hover span span,
|
111 |
+
.cart-table .btn-empty:hover span span,
|
112 |
+
.cart .discount button:hover span span,
|
113 |
+
.cart .shipping button:hover span span,
|
114 |
+
.block-compare button.button:hover span span,
|
115 |
+
.block-poll button.button:hover span span,
|
116 |
+
.block-login .actions button.button:hover span span,
|
117 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
118 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
119 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
120 |
+
|
121 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
122 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
123 |
+
|
124 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
125 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
126 |
+
|
127 |
+
button.btn-checkout span span{padding:0 16px}
|
128 |
+
/****************************End Buttons***************************/
|
129 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
130 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
131 |
+
|
132 |
+
|
133 |
+
/********** < Navigation */
|
134 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
135 |
+
|
136 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
137 |
+
#nav li { position:relative; text-align:left; }
|
138 |
+
#nav li.over { z-index:998; }
|
139 |
+
#nav a,
|
140 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
141 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
142 |
+
#nav li ul span {white-space:normal; }
|
143 |
+
|
144 |
+
/* 0 Level */
|
145 |
+
#nav li { float:left; }
|
146 |
+
#nav a{float:left; color:#d1d1d1; font-weight:bold}
|
147 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
148 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
149 |
+
/*#nav li.first span{padding-left:18px}*/
|
150 |
+
#nav li.over a,
|
151 |
+
#nav a:hover{color:#fff}
|
152 |
+
|
153 |
+
/* 1st Level */
|
154 |
+
#nav ul li,
|
155 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
156 |
+
#nav li.active li a,
|
157 |
+
#nav ul li.active a{background:#fff}
|
158 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
159 |
+
*/
|
160 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
161 |
+
|
162 |
+
#nav ul a,
|
163 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
164 |
+
#nav ul li a { font-weight:normal !important; }
|
165 |
+
|
166 |
+
/* 2nd Level */
|
167 |
+
#nav ul,
|
168 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
169 |
+
#nav div ul { position:static; width:auto; border:none; }
|
170 |
+
#nav ul span {background:none}
|
171 |
+
|
172 |
+
/* 3rd+ Level */
|
173 |
+
#nav ul ul,
|
174 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
175 |
+
|
176 |
+
#nav ul li a {background:#fff}
|
177 |
+
#nav ul li a:hover {background:#f4f4f4}
|
178 |
+
#nav ul li.over > a {background:#f4f4f4}
|
179 |
+
#nav ul li a,
|
180 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
181 |
+
#nav ul span,
|
182 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
183 |
+
|
184 |
+
/* Show menu */
|
185 |
+
#nav li ul.shown-sub,
|
186 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
187 |
+
#nav li .shown-sub ul.shown-sub,
|
188 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
189 |
+
/********** Navigation > */
|
190 |
+
/* ======================================================================================= */
|
191 |
+
|
192 |
+
.cms-home .nav-home a,
|
193 |
+
.contacts-index-index .nav-contacts a,
|
194 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
195 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
196 |
+
|
197 |
+
.f-right{float:right}
|
198 |
+
.f-left{float:left}
|
199 |
+
.a-right{text-align:right}
|
200 |
+
.a-left{text-align:left}
|
201 |
+
.a-center{text-align:center}
|
202 |
+
|
203 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
204 |
+
|
205 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
206 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
207 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#d1d1d1; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
208 |
+
.header-cart .title a{color:#fff}
|
209 |
+
.header-cart .content{background:#f3f8fb; padding:0}
|
210 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
211 |
+
.header-cart .content li a:hover{color:#333}
|
212 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
213 |
+
.header-cart .title a{color:#fff}
|
214 |
+
|
215 |
+
.header .form-language label {color: #d1d1d1;}
|
216 |
+
|
217 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
218 |
+
|
219 |
+
#nav-sidebox{font-size:1.1em}
|
220 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
221 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
222 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
223 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
224 |
+
#nav-sidebox ul{}
|
225 |
+
#nav-sidebox ul li{padding-left:10px}
|
226 |
+
#nav-sidebox ul li ul{display:none}
|
227 |
+
|
228 |
+
.featured-container{margin-bottom:20px}
|
229 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
230 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
231 |
+
|
232 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
233 |
+
.mini-newsletter label{color:#fff}
|
234 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
235 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
236 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
237 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
238 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
239 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
240 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
241 |
+
|
242 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
243 |
+
|
244 |
+
.recently .last{border-bottom:0px solid #FFF}
|
245 |
+
.recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
246 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
247 |
+
.recently li.item .price-box{}
|
248 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
249 |
+
|
250 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
251 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
252 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
253 |
+
a.product-name:hover { text-decoration: underline; }
|
254 |
+
|
255 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
256 |
+
|
257 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
258 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
259 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
260 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f2f2f2; font-size:0.9em}
|
261 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
262 |
+
.footer .informational h6{margin-bottom:0.4em; color:#f2f2f2; font-size:1.1em}
|
263 |
+
|
264 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #a8a8a8; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
265 |
+
|
266 |
+
.footer .payments{float:right; margin:5px 0 0}
|
267 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
268 |
+
.footer .legality a{color:#d6d6d6; text-decoration: none;}
|
269 |
+
|
270 |
+
/* glider */
|
271 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
272 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
273 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
274 |
+
div.scroller img{ border:none}
|
275 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
276 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
277 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
278 |
+
|
279 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
280 |
+
div.sliderdescription:hover{background:#fff}
|
281 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
282 |
+
.content a:hover{text-decoration:underline}
|
283 |
+
|
284 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
285 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
286 |
+
|
287 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
288 |
+
|
289 |
+
.slidercontrol a:hover,
|
290 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
291 |
+
|
292 |
+
/* slider */
|
293 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
294 |
+
.featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
295 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
296 |
+
.featured-products #move-left,
|
297 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
298 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
299 |
+
.featured-products #move-left.disabled,
|
300 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
301 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
302 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
303 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
304 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
305 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
306 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
307 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
308 |
+
|
309 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
310 |
+
#quick-window .product-img-box{width:230px; float:left}
|
311 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
312 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
313 |
+
|
314 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
315 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
316 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
317 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
318 |
+
.catalog-listing .product-image{position:relative}
|
319 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
320 |
+
|
321 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
322 |
+
a.ajax:hover{text-decoration:none}
|
323 |
+
|
324 |
+
|
325 |
+
/****Update styles ****/
|
326 |
+
|
327 |
+
.footer li {background: none; display: block; padding: 0;}
|
328 |
+
|
329 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_grey/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_grey/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_orange/css/custom.css
CHANGED
@@ -1,331 +1,331 @@
|
|
1 |
-
/*
|
2 |
-
* body : #db6200;
|
3 |
-
* .footer .informational li ul li a : #f8e1cf;
|
4 |
-
* .footer .informational h6 : #f8e1cf;
|
5 |
-
* .footer .legality a : #ffd2ad;
|
6 |
-
* #nav a : #ffc697;
|
7 |
-
* .header-cart .title : #d1d1d1;
|
8 |
-
* .header .form-language label : #d1d1d1;
|
9 |
-
* .header-cart .content : #FFF3EA;
|
10 |
-
* .recently .subtitle : #db6200;
|
11 |
-
* .page-title h1 : #db6200;
|
12 |
-
* .featured-products h4 : #db6200;
|
13 |
-
*/
|
14 |
-
|
15 |
-
|
16 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #db6200; color:#2F2F2F}
|
17 |
-
|
18 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
-
|
21 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
-
|
24 |
-
.header {z-index: 100;}
|
25 |
-
.header .logo { margin: 0; }
|
26 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
-
.shop-access a:hover { text-decoration: underline; }
|
29 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
-
.header .form-search label{display:none}
|
33 |
-
.header .form-search button.button{width:20px}
|
34 |
-
.header .form-search button.button span { background: none; }
|
35 |
-
|
36 |
-
.header .form-language label { color:#C3D5E3;}
|
37 |
-
|
38 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
-
.page-title h1 {color:#db6200; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
-
|
41 |
-
.block-content a{}
|
42 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
-
.block-subscribe .block-title strong{background:none}
|
44 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
-
.block-subscribe .actions{margin-top:15px}
|
47 |
-
.block-cart .subtotal{background:#eee}
|
48 |
-
|
49 |
-
.block-tags .block-content ul { border: none; }
|
50 |
-
|
51 |
-
.block-layered-nav{}
|
52 |
-
.block-layered-nav .block-title{ padding:0px; }
|
53 |
-
|
54 |
-
.block-layered-nav{padding:5px 10px}
|
55 |
-
.block-layered-nav .block-subtitle,
|
56 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
-
|
63 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
-
.products-grid .ratings .amount{display:none}
|
66 |
-
.products-grid .actions{}
|
67 |
-
/*************************Buttons*************************/
|
68 |
-
button.button{background:none; border:0px solid #000}
|
69 |
-
|
70 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
-
|
75 |
-
/**ALT BTNS**/
|
76 |
-
.grey-box .button span,
|
77 |
-
.cart-table .btn-continue span,
|
78 |
-
.cart-table .btn-update span,
|
79 |
-
.cart-table .btn-empty span,
|
80 |
-
.cart .discount button span,
|
81 |
-
.cart .shipping button span,
|
82 |
-
.block-compare button.button span,
|
83 |
-
.block-poll button.button span,
|
84 |
-
.block-login .actions button.button span,
|
85 |
-
.product-view .box-tags .form-add button.button span,
|
86 |
-
.multiple-checkout .title-buttons button.button span,
|
87 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
-
.grey-box .button:hover span,
|
89 |
-
.cart-table .btn-continue:hover span,
|
90 |
-
.cart-table .btn-update:hover span,
|
91 |
-
.cart-table .btn-empty:hover span,
|
92 |
-
.cart .discount button:hover span,
|
93 |
-
.cart .shipping button:hover span,
|
94 |
-
.block-compare button.button:hover span,
|
95 |
-
.block-poll button.button:hover span,
|
96 |
-
.block-login .actions button.button:hover span,
|
97 |
-
.product-view .box-tags .form-add button.button:hover span,
|
98 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
-
.grey-box .button span span,
|
101 |
-
.cart-table .btn-continue span span,
|
102 |
-
.cart-table .btn-update span span,
|
103 |
-
.cart-table .btn-empty span span,
|
104 |
-
.cart .discount button span span,
|
105 |
-
.cart .shipping button span span,
|
106 |
-
.block-compare button.button span span,
|
107 |
-
.block-poll button.button span span,
|
108 |
-
.block-login .actions button.button span span,
|
109 |
-
.product-view .box-tags .form-add button.button span span,
|
110 |
-
.multiple-checkout .title-buttons button.button span span,
|
111 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
-
.grey-box .button:hover span span,
|
113 |
-
.cart-table .btn-continue:hover span span,
|
114 |
-
.cart-table .btn-update:hover span span,
|
115 |
-
.cart-table .btn-empty:hover span span,
|
116 |
-
.cart .discount button:hover span span,
|
117 |
-
.cart .shipping button:hover span span,
|
118 |
-
.block-compare button.button:hover span span,
|
119 |
-
.block-poll button.button:hover span span,
|
120 |
-
.block-login .actions button.button:hover span span,
|
121 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
-
|
125 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
-
|
128 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
-
|
131 |
-
button.btn-checkout span span{padding:0 16px}
|
132 |
-
/****************************End Buttons***************************/
|
133 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
-
|
136 |
-
|
137 |
-
/********** < Navigation */
|
138 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
-
|
140 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
-
#nav li { position:relative; text-align:left; }
|
142 |
-
#nav li.over { z-index:998; }
|
143 |
-
#nav a,
|
144 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
-
#nav li ul span {white-space:normal; }
|
147 |
-
|
148 |
-
/* 0 Level */
|
149 |
-
#nav li { float:left; }
|
150 |
-
#nav a{float:left; color:#ffc697; font-weight:bold}
|
151 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
-
/*#nav li.first span{padding-left:18px}*/
|
154 |
-
#nav li.over a,
|
155 |
-
#nav a:hover{color:#fff}
|
156 |
-
|
157 |
-
/* 1st Level */
|
158 |
-
#nav ul li,
|
159 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
-
#nav li.active li a,
|
161 |
-
#nav ul li.active a{background:#fff}
|
162 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
-
*/
|
164 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
-
|
166 |
-
#nav ul a,
|
167 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
-
#nav ul li a { font-weight:normal !important; }
|
169 |
-
|
170 |
-
/* 2nd Level */
|
171 |
-
#nav ul,
|
172 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
-
#nav div ul { position:static; width:auto; border:none; }
|
174 |
-
#nav ul span {background:none}
|
175 |
-
|
176 |
-
/* 3rd+ Level */
|
177 |
-
#nav ul ul,
|
178 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
-
|
180 |
-
#nav ul li a {background:#fff}
|
181 |
-
#nav ul li a:hover {background:#f4f4f4}
|
182 |
-
#nav ul li.over > a {background:#f4f4f4}
|
183 |
-
#nav ul li a,
|
184 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
-
#nav ul span,
|
186 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
-
|
188 |
-
/* Show menu */
|
189 |
-
#nav li ul.shown-sub,
|
190 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
-
#nav li .shown-sub ul.shown-sub,
|
192 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
-
/********** Navigation > */
|
194 |
-
/* ======================================================================================= */
|
195 |
-
|
196 |
-
.cms-home .nav-home a,
|
197 |
-
.contacts-index-index .nav-contacts a,
|
198 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
-
|
201 |
-
.f-right{float:right}
|
202 |
-
.f-left{float:left}
|
203 |
-
.a-right{text-align:right}
|
204 |
-
.a-left{text-align:left}
|
205 |
-
.a-center{text-align:center}
|
206 |
-
|
207 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
-
|
209 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
-
.header-cart .title a{color:#fff}
|
213 |
-
.header-cart .content{background:#FFF3EA; padding:0}
|
214 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
-
.header-cart .content li a:hover{color:#333}
|
216 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
-
.header-cart .title a{color:#fff}
|
218 |
-
|
219 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
220 |
-
|
221 |
-
#nav-sidebox{font-size:1.1em}
|
222 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
223 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
224 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
225 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
226 |
-
#nav-sidebox ul{}
|
227 |
-
#nav-sidebox ul li{padding-left:10px}
|
228 |
-
#nav-sidebox ul li ul{display:none}
|
229 |
-
|
230 |
-
.featured-container{margin-bottom:20px}
|
231 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
232 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
233 |
-
|
234 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
235 |
-
.mini-newsletter label{color:#fff}
|
236 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
237 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
238 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
239 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
240 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
241 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
242 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
243 |
-
|
244 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
245 |
-
|
246 |
-
.recently .last{border-bottom:0px solid #FFF}
|
247 |
-
.recently .subtitle{color:#db6200; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
248 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
249 |
-
.recently li.item .price-box{}
|
250 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
251 |
-
|
252 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
253 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
254 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
255 |
-
a.product-name:hover { text-decoration: underline; }
|
256 |
-
|
257 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
258 |
-
|
259 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
260 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
261 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
262 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f8e1cf; font-size:0.9em}
|
263 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
264 |
-
.footer .informational h6{margin-bottom:0.4em; color:#f8e1cf; font-size:1.1em}
|
265 |
-
|
266 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #d56000; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
267 |
-
|
268 |
-
.footer .payments{float:right; margin:5px 0 0}
|
269 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
270 |
-
.footer .legality a{color:#ffd2ad; text-decoration: none;}
|
271 |
-
|
272 |
-
/* glider */
|
273 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
274 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
275 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
276 |
-
div.scroller img{ border:none}
|
277 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
278 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
279 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
280 |
-
|
281 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
282 |
-
div.sliderdescription:hover{background:#fff}
|
283 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
284 |
-
.content a:hover{text-decoration:underline}
|
285 |
-
|
286 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
287 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
288 |
-
|
289 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
290 |
-
|
291 |
-
.slidercontrol a:hover,
|
292 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
293 |
-
|
294 |
-
/* slider */
|
295 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
296 |
-
.featured-products h4{margin-right:10px; color:#db6200; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
297 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
298 |
-
.featured-products #move-left,
|
299 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
300 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
301 |
-
.featured-products #move-left.disabled,
|
302 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
303 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
304 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
305 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
306 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
307 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
308 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
309 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
310 |
-
|
311 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
312 |
-
#quick-window .product-img-box{width:230px; float:left}
|
313 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
314 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
315 |
-
|
316 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
317 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
318 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
319 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
320 |
-
.catalog-listing .product-image{position:relative}
|
321 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
322 |
-
|
323 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
324 |
-
a.ajax:hover{text-decoration:none}
|
325 |
-
|
326 |
-
|
327 |
-
/****Update styles ****/
|
328 |
-
|
329 |
-
.footer li {background: none; display: block; padding: 0;}
|
330 |
-
|
331 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #db6200;
|
3 |
+
* .footer .informational li ul li a : #f8e1cf;
|
4 |
+
* .footer .informational h6 : #f8e1cf;
|
5 |
+
* .footer .legality a : #ffd2ad;
|
6 |
+
* #nav a : #ffc697;
|
7 |
+
* .header-cart .title : #d1d1d1;
|
8 |
+
* .header .form-language label : #d1d1d1;
|
9 |
+
* .header-cart .content : #FFF3EA;
|
10 |
+
* .recently .subtitle : #db6200;
|
11 |
+
* .page-title h1 : #db6200;
|
12 |
+
* .featured-products h4 : #db6200;
|
13 |
+
*/
|
14 |
+
|
15 |
+
|
16 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #db6200; color:#2F2F2F}
|
17 |
+
|
18 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
+
|
21 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
+
|
24 |
+
.header {z-index: 100;}
|
25 |
+
.header .logo { margin: 0; }
|
26 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
+
.shop-access a:hover { text-decoration: underline; }
|
29 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
+
.header .form-search label{display:none}
|
33 |
+
.header .form-search button.button{width:20px}
|
34 |
+
.header .form-search button.button span { background: none; }
|
35 |
+
|
36 |
+
.header .form-language label { color:#C3D5E3;}
|
37 |
+
|
38 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
+
.page-title h1 {color:#db6200; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
+
|
41 |
+
.block-content a{}
|
42 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
+
.block-subscribe .block-title strong{background:none}
|
44 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
+
.block-subscribe .actions{margin-top:15px}
|
47 |
+
.block-cart .subtotal{background:#eee}
|
48 |
+
|
49 |
+
.block-tags .block-content ul { border: none; }
|
50 |
+
|
51 |
+
.block-layered-nav{}
|
52 |
+
.block-layered-nav .block-title{ padding:0px; }
|
53 |
+
|
54 |
+
.block-layered-nav{padding:5px 10px}
|
55 |
+
.block-layered-nav .block-subtitle,
|
56 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
+
|
63 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
+
.products-grid .ratings .amount{display:none}
|
66 |
+
.products-grid .actions{}
|
67 |
+
/*************************Buttons*************************/
|
68 |
+
button.button{background:none; border:0px solid #000}
|
69 |
+
|
70 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
+
|
75 |
+
/**ALT BTNS**/
|
76 |
+
.grey-box .button span,
|
77 |
+
.cart-table .btn-continue span,
|
78 |
+
.cart-table .btn-update span,
|
79 |
+
.cart-table .btn-empty span,
|
80 |
+
.cart .discount button span,
|
81 |
+
.cart .shipping button span,
|
82 |
+
.block-compare button.button span,
|
83 |
+
.block-poll button.button span,
|
84 |
+
.block-login .actions button.button span,
|
85 |
+
.product-view .box-tags .form-add button.button span,
|
86 |
+
.multiple-checkout .title-buttons button.button span,
|
87 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
+
.grey-box .button:hover span,
|
89 |
+
.cart-table .btn-continue:hover span,
|
90 |
+
.cart-table .btn-update:hover span,
|
91 |
+
.cart-table .btn-empty:hover span,
|
92 |
+
.cart .discount button:hover span,
|
93 |
+
.cart .shipping button:hover span,
|
94 |
+
.block-compare button.button:hover span,
|
95 |
+
.block-poll button.button:hover span,
|
96 |
+
.block-login .actions button.button:hover span,
|
97 |
+
.product-view .box-tags .form-add button.button:hover span,
|
98 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
+
.grey-box .button span span,
|
101 |
+
.cart-table .btn-continue span span,
|
102 |
+
.cart-table .btn-update span span,
|
103 |
+
.cart-table .btn-empty span span,
|
104 |
+
.cart .discount button span span,
|
105 |
+
.cart .shipping button span span,
|
106 |
+
.block-compare button.button span span,
|
107 |
+
.block-poll button.button span span,
|
108 |
+
.block-login .actions button.button span span,
|
109 |
+
.product-view .box-tags .form-add button.button span span,
|
110 |
+
.multiple-checkout .title-buttons button.button span span,
|
111 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
+
.grey-box .button:hover span span,
|
113 |
+
.cart-table .btn-continue:hover span span,
|
114 |
+
.cart-table .btn-update:hover span span,
|
115 |
+
.cart-table .btn-empty:hover span span,
|
116 |
+
.cart .discount button:hover span span,
|
117 |
+
.cart .shipping button:hover span span,
|
118 |
+
.block-compare button.button:hover span span,
|
119 |
+
.block-poll button.button:hover span span,
|
120 |
+
.block-login .actions button.button:hover span span,
|
121 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
+
|
125 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
+
|
128 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
+
|
131 |
+
button.btn-checkout span span{padding:0 16px}
|
132 |
+
/****************************End Buttons***************************/
|
133 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
+
|
136 |
+
|
137 |
+
/********** < Navigation */
|
138 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
+
|
140 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
+
#nav li { position:relative; text-align:left; }
|
142 |
+
#nav li.over { z-index:998; }
|
143 |
+
#nav a,
|
144 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
+
#nav li ul span {white-space:normal; }
|
147 |
+
|
148 |
+
/* 0 Level */
|
149 |
+
#nav li { float:left; }
|
150 |
+
#nav a{float:left; color:#ffc697; font-weight:bold}
|
151 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
+
/*#nav li.first span{padding-left:18px}*/
|
154 |
+
#nav li.over a,
|
155 |
+
#nav a:hover{color:#fff}
|
156 |
+
|
157 |
+
/* 1st Level */
|
158 |
+
#nav ul li,
|
159 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
+
#nav li.active li a,
|
161 |
+
#nav ul li.active a{background:#fff}
|
162 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
+
*/
|
164 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
+
|
166 |
+
#nav ul a,
|
167 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
+
#nav ul li a { font-weight:normal !important; }
|
169 |
+
|
170 |
+
/* 2nd Level */
|
171 |
+
#nav ul,
|
172 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
+
#nav div ul { position:static; width:auto; border:none; }
|
174 |
+
#nav ul span {background:none}
|
175 |
+
|
176 |
+
/* 3rd+ Level */
|
177 |
+
#nav ul ul,
|
178 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
+
|
180 |
+
#nav ul li a {background:#fff}
|
181 |
+
#nav ul li a:hover {background:#f4f4f4}
|
182 |
+
#nav ul li.over > a {background:#f4f4f4}
|
183 |
+
#nav ul li a,
|
184 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
+
#nav ul span,
|
186 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
+
|
188 |
+
/* Show menu */
|
189 |
+
#nav li ul.shown-sub,
|
190 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
+
#nav li .shown-sub ul.shown-sub,
|
192 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
+
/********** Navigation > */
|
194 |
+
/* ======================================================================================= */
|
195 |
+
|
196 |
+
.cms-home .nav-home a,
|
197 |
+
.contacts-index-index .nav-contacts a,
|
198 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
+
|
201 |
+
.f-right{float:right}
|
202 |
+
.f-left{float:left}
|
203 |
+
.a-right{text-align:right}
|
204 |
+
.a-left{text-align:left}
|
205 |
+
.a-center{text-align:center}
|
206 |
+
|
207 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
+
|
209 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
+
.header-cart .title a{color:#fff}
|
213 |
+
.header-cart .content{background:#FFF3EA; padding:0}
|
214 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
+
.header-cart .content li a:hover{color:#333}
|
216 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
+
.header-cart .title a{color:#fff}
|
218 |
+
|
219 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
220 |
+
|
221 |
+
#nav-sidebox{font-size:1.1em}
|
222 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
223 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
224 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
225 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
226 |
+
#nav-sidebox ul{}
|
227 |
+
#nav-sidebox ul li{padding-left:10px}
|
228 |
+
#nav-sidebox ul li ul{display:none}
|
229 |
+
|
230 |
+
.featured-container{margin-bottom:20px}
|
231 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
232 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
233 |
+
|
234 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
235 |
+
.mini-newsletter label{color:#fff}
|
236 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
237 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
238 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
239 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
240 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
241 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
242 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
243 |
+
|
244 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
245 |
+
|
246 |
+
.recently .last{border-bottom:0px solid #FFF}
|
247 |
+
.recently .subtitle{color:#db6200; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
248 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
249 |
+
.recently li.item .price-box{}
|
250 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
251 |
+
|
252 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
253 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
254 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
255 |
+
a.product-name:hover { text-decoration: underline; }
|
256 |
+
|
257 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
258 |
+
|
259 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
260 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
261 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
262 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f8e1cf; font-size:0.9em}
|
263 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
264 |
+
.footer .informational h6{margin-bottom:0.4em; color:#f8e1cf; font-size:1.1em}
|
265 |
+
|
266 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #d56000; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
267 |
+
|
268 |
+
.footer .payments{float:right; margin:5px 0 0}
|
269 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
270 |
+
.footer .legality a{color:#ffd2ad; text-decoration: none;}
|
271 |
+
|
272 |
+
/* glider */
|
273 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
274 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
275 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
276 |
+
div.scroller img{ border:none}
|
277 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
278 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
279 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
280 |
+
|
281 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
282 |
+
div.sliderdescription:hover{background:#fff}
|
283 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
284 |
+
.content a:hover{text-decoration:underline}
|
285 |
+
|
286 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
287 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
288 |
+
|
289 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
290 |
+
|
291 |
+
.slidercontrol a:hover,
|
292 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
293 |
+
|
294 |
+
/* slider */
|
295 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
296 |
+
.featured-products h4{margin-right:10px; color:#db6200; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
297 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
298 |
+
.featured-products #move-left,
|
299 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
300 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
301 |
+
.featured-products #move-left.disabled,
|
302 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
303 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
304 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
305 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
306 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
307 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
308 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
309 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
310 |
+
|
311 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
312 |
+
#quick-window .product-img-box{width:230px; float:left}
|
313 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
314 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
315 |
+
|
316 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
317 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
318 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
319 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
320 |
+
.catalog-listing .product-image{position:relative}
|
321 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
322 |
+
|
323 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
324 |
+
a.ajax:hover{text-decoration:none}
|
325 |
+
|
326 |
+
|
327 |
+
/****Update styles ****/
|
328 |
+
|
329 |
+
.footer li {background: none; display: block; padding: 0;}
|
330 |
+
|
331 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_orange/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_orange/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_pink/css/custom.css
CHANGED
@@ -1,333 +1,333 @@
|
|
1 |
-
/*
|
2 |
-
* body : #c72475;
|
3 |
-
* .footer .informational li ul li a : #f8e1cf;
|
4 |
-
* .footer .informational h6 : #f4d5e5;
|
5 |
-
* .footer .legality a : #f4d5e5;
|
6 |
-
* #nav a : #ffb9db;
|
7 |
-
* .header-cart .title : #ffffff;
|
8 |
-
* .header .form-language label : #ffffff;
|
9 |
-
* .header-cart .content : #FFF3EA;
|
10 |
-
* .recently .subtitle : #db6200;
|
11 |
-
* .page-title h1 : #db6200;
|
12 |
-
* .featured-products h4 : #db6200;
|
13 |
-
*/
|
14 |
-
|
15 |
-
|
16 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #c72475; color:#2F2F2F}
|
17 |
-
|
18 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
-
|
21 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
-
|
24 |
-
.header {z-index: 100;}
|
25 |
-
.header .logo { margin: 0; }
|
26 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
-
.shop-access a:hover { text-decoration: underline; }
|
29 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
-
.header .form-search label{display:none}
|
33 |
-
.header .form-search button.button{width:20px}
|
34 |
-
.header .form-search button.button span { background: none; }
|
35 |
-
|
36 |
-
.header .form-language label {color: #ffffff;}
|
37 |
-
|
38 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
-
.page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
-
|
41 |
-
.block-content a{}
|
42 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
-
.block-subscribe .block-title strong{background:none}
|
44 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
-
.block-subscribe .actions{margin-top:15px}
|
47 |
-
.block-cart .subtotal{background:#eee}
|
48 |
-
|
49 |
-
.block-tags .block-content ul { border: none; }
|
50 |
-
|
51 |
-
.block-layered-nav{}
|
52 |
-
.block-layered-nav .block-title{ padding:0px; }
|
53 |
-
|
54 |
-
.block-layered-nav{padding:5px 10px}
|
55 |
-
.block-layered-nav .block-subtitle,
|
56 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
-
|
63 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
-
.products-grid .ratings .amount{display:none}
|
66 |
-
.products-grid .actions{}
|
67 |
-
/*************************Buttons*************************/
|
68 |
-
button.button{background:none; border:0px solid #000}
|
69 |
-
|
70 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
-
|
75 |
-
/**ALT BTNS**/
|
76 |
-
.grey-box .button span,
|
77 |
-
.cart-table .btn-continue span,
|
78 |
-
.cart-table .btn-update span,
|
79 |
-
.cart-table .btn-empty span,
|
80 |
-
.cart .discount button span,
|
81 |
-
.cart .shipping button span,
|
82 |
-
.block-compare button.button span,
|
83 |
-
.block-poll button.button span,
|
84 |
-
.block-login .actions button.button span,
|
85 |
-
.product-view .box-tags .form-add button.button span,
|
86 |
-
.multiple-checkout .title-buttons button.button span,
|
87 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
-
.grey-box .button:hover span,
|
89 |
-
.cart-table .btn-continue:hover span,
|
90 |
-
.cart-table .btn-update:hover span,
|
91 |
-
.cart-table .btn-empty:hover span,
|
92 |
-
.cart .discount button:hover span,
|
93 |
-
.cart .shipping button:hover span,
|
94 |
-
.block-compare button.button:hover span,
|
95 |
-
.block-poll button.button:hover span,
|
96 |
-
.block-login .actions button.button:hover span,
|
97 |
-
.product-view .box-tags .form-add button.button:hover span,
|
98 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
-
.grey-box .button span span,
|
101 |
-
.cart-table .btn-continue span span,
|
102 |
-
.cart-table .btn-update span span,
|
103 |
-
.cart-table .btn-empty span span,
|
104 |
-
.cart .discount button span span,
|
105 |
-
.cart .shipping button span span,
|
106 |
-
.block-compare button.button span span,
|
107 |
-
.block-poll button.button span span,
|
108 |
-
.block-login .actions button.button span span,
|
109 |
-
.product-view .box-tags .form-add button.button span span,
|
110 |
-
.multiple-checkout .title-buttons button.button span span,
|
111 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
-
.grey-box .button:hover span span,
|
113 |
-
.cart-table .btn-continue:hover span span,
|
114 |
-
.cart-table .btn-update:hover span span,
|
115 |
-
.cart-table .btn-empty:hover span span,
|
116 |
-
.cart .discount button:hover span span,
|
117 |
-
.cart .shipping button:hover span span,
|
118 |
-
.block-compare button.button:hover span span,
|
119 |
-
.block-poll button.button:hover span span,
|
120 |
-
.block-login .actions button.button:hover span span,
|
121 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
-
|
125 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
-
|
128 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
-
|
131 |
-
button.btn-checkout span span{padding:0 16px}
|
132 |
-
/****************************End Buttons***************************/
|
133 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
-
|
136 |
-
|
137 |
-
/********** < Navigation */
|
138 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
-
|
140 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
-
#nav li { position:relative; text-align:left; }
|
142 |
-
#nav li.over { z-index:998; }
|
143 |
-
#nav a,
|
144 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
-
#nav li ul span {white-space:normal; }
|
147 |
-
|
148 |
-
/* 0 Level */
|
149 |
-
#nav li { float:left; }
|
150 |
-
#nav a{float:left; color:#ffb9db; font-weight:bold}
|
151 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
-
/*#nav li.first span{padding-left:18px}*/
|
154 |
-
#nav li.over a,
|
155 |
-
#nav a:hover{color:#fff}
|
156 |
-
|
157 |
-
/* 1st Level */
|
158 |
-
#nav ul li,
|
159 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
-
#nav li.active li a,
|
161 |
-
#nav ul li.active a{background:#fff}
|
162 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
-
*/
|
164 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
-
|
166 |
-
#nav ul a,
|
167 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
-
#nav ul li a { font-weight:normal !important; }
|
169 |
-
|
170 |
-
/* 2nd Level */
|
171 |
-
#nav ul,
|
172 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
-
#nav div ul { position:static; width:auto; border:none; }
|
174 |
-
#nav ul span {background:none}
|
175 |
-
|
176 |
-
/* 3rd+ Level */
|
177 |
-
#nav ul ul,
|
178 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
-
|
180 |
-
#nav ul li a {background:#fff}
|
181 |
-
#nav ul li a:hover {background:#f4f4f4}
|
182 |
-
#nav ul li.over > a {background:#f4f4f4}
|
183 |
-
#nav ul li a,
|
184 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
-
#nav ul span,
|
186 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
-
|
188 |
-
/* Show menu */
|
189 |
-
#nav li ul.shown-sub,
|
190 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
-
#nav li .shown-sub ul.shown-sub,
|
192 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
-
/********** Navigation > */
|
194 |
-
/* ======================================================================================= */
|
195 |
-
|
196 |
-
.cms-home .nav-home a,
|
197 |
-
.contacts-index-index .nav-contacts a,
|
198 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
-
|
201 |
-
.f-right{float:right}
|
202 |
-
.f-left{float:left}
|
203 |
-
.a-right{text-align:right}
|
204 |
-
.a-left{text-align:left}
|
205 |
-
.a-center{text-align:center}
|
206 |
-
|
207 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
-
|
209 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
-
.header-cart .title a{color:#fff}
|
213 |
-
.header-cart .content{background:#ffe5f2; padding:0}
|
214 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
-
.header-cart .content li a:hover{color:#333}
|
216 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
-
.header-cart .title a{color:#fff}
|
218 |
-
|
219 |
-
.header .form-language label {color: #c3d5e3;}
|
220 |
-
|
221 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
222 |
-
|
223 |
-
#nav-sidebox{font-size:1.1em}
|
224 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
225 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
226 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
227 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
228 |
-
#nav-sidebox ul{}
|
229 |
-
#nav-sidebox ul li{padding-left:10px}
|
230 |
-
#nav-sidebox ul li ul{display:none}
|
231 |
-
|
232 |
-
.featured-container{margin-bottom:20px}
|
233 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
234 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
235 |
-
|
236 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
237 |
-
.mini-newsletter label{color:#fff}
|
238 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
239 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
240 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
241 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
242 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
243 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
244 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
245 |
-
|
246 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
247 |
-
|
248 |
-
.recently .last{border-bottom:0px solid #FFF}
|
249 |
-
.recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
250 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
251 |
-
.recently li.item .price-box{}
|
252 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
253 |
-
|
254 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
255 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
256 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
257 |
-
a.product-name:hover { text-decoration: underline; }
|
258 |
-
|
259 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
260 |
-
|
261 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
262 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
263 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
264 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f4d5e5; font-size:0.9em}
|
265 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
266 |
-
.footer .informational h6{margin-bottom:0.4em; color:#f4d5e5; font-size:1.1em}
|
267 |
-
|
268 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #cc297a; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
269 |
-
|
270 |
-
.footer .payments{float:right; margin:5px 0 0}
|
271 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
272 |
-
.footer .legality a{color:#d6d6d6; text-decoration: none;}
|
273 |
-
|
274 |
-
/* glider */
|
275 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
276 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
277 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
278 |
-
div.scroller img{ border:none}
|
279 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
280 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
281 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
282 |
-
|
283 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
284 |
-
div.sliderdescription:hover{background:#fff}
|
285 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
286 |
-
.content a:hover{text-decoration:underline}
|
287 |
-
|
288 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
289 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
290 |
-
|
291 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
292 |
-
|
293 |
-
.slidercontrol a:hover,
|
294 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
295 |
-
|
296 |
-
/* slider */
|
297 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
298 |
-
.featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
299 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
300 |
-
.featured-products #move-left,
|
301 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
302 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
303 |
-
.featured-products #move-left.disabled,
|
304 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
305 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
306 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
307 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
308 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
309 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
310 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
311 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
312 |
-
|
313 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
314 |
-
#quick-window .product-img-box{width:230px; float:left}
|
315 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
316 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
317 |
-
|
318 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
319 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
320 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
321 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
322 |
-
.catalog-listing .product-image{position:relative}
|
323 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
324 |
-
|
325 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
326 |
-
a.ajax:hover{text-decoration:none}
|
327 |
-
|
328 |
-
|
329 |
-
/****Update styles ****/
|
330 |
-
|
331 |
-
.footer li {background: none; display: block; padding: 0;}
|
332 |
-
|
333 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #c72475;
|
3 |
+
* .footer .informational li ul li a : #f8e1cf;
|
4 |
+
* .footer .informational h6 : #f4d5e5;
|
5 |
+
* .footer .legality a : #f4d5e5;
|
6 |
+
* #nav a : #ffb9db;
|
7 |
+
* .header-cart .title : #ffffff;
|
8 |
+
* .header .form-language label : #ffffff;
|
9 |
+
* .header-cart .content : #FFF3EA;
|
10 |
+
* .recently .subtitle : #db6200;
|
11 |
+
* .page-title h1 : #db6200;
|
12 |
+
* .featured-products h4 : #db6200;
|
13 |
+
*/
|
14 |
+
|
15 |
+
|
16 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #c72475; color:#2F2F2F}
|
17 |
+
|
18 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
+
|
21 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
+
|
24 |
+
.header {z-index: 100;}
|
25 |
+
.header .logo { margin: 0; }
|
26 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
+
.shop-access a:hover { text-decoration: underline; }
|
29 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
+
.header .form-search label{display:none}
|
33 |
+
.header .form-search button.button{width:20px}
|
34 |
+
.header .form-search button.button span { background: none; }
|
35 |
+
|
36 |
+
.header .form-language label {color: #ffffff;}
|
37 |
+
|
38 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
+
.page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
+
|
41 |
+
.block-content a{}
|
42 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
+
.block-subscribe .block-title strong{background:none}
|
44 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
+
.block-subscribe .actions{margin-top:15px}
|
47 |
+
.block-cart .subtotal{background:#eee}
|
48 |
+
|
49 |
+
.block-tags .block-content ul { border: none; }
|
50 |
+
|
51 |
+
.block-layered-nav{}
|
52 |
+
.block-layered-nav .block-title{ padding:0px; }
|
53 |
+
|
54 |
+
.block-layered-nav{padding:5px 10px}
|
55 |
+
.block-layered-nav .block-subtitle,
|
56 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
+
|
63 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
+
.products-grid .ratings .amount{display:none}
|
66 |
+
.products-grid .actions{}
|
67 |
+
/*************************Buttons*************************/
|
68 |
+
button.button{background:none; border:0px solid #000}
|
69 |
+
|
70 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
+
|
75 |
+
/**ALT BTNS**/
|
76 |
+
.grey-box .button span,
|
77 |
+
.cart-table .btn-continue span,
|
78 |
+
.cart-table .btn-update span,
|
79 |
+
.cart-table .btn-empty span,
|
80 |
+
.cart .discount button span,
|
81 |
+
.cart .shipping button span,
|
82 |
+
.block-compare button.button span,
|
83 |
+
.block-poll button.button span,
|
84 |
+
.block-login .actions button.button span,
|
85 |
+
.product-view .box-tags .form-add button.button span,
|
86 |
+
.multiple-checkout .title-buttons button.button span,
|
87 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
+
.grey-box .button:hover span,
|
89 |
+
.cart-table .btn-continue:hover span,
|
90 |
+
.cart-table .btn-update:hover span,
|
91 |
+
.cart-table .btn-empty:hover span,
|
92 |
+
.cart .discount button:hover span,
|
93 |
+
.cart .shipping button:hover span,
|
94 |
+
.block-compare button.button:hover span,
|
95 |
+
.block-poll button.button:hover span,
|
96 |
+
.block-login .actions button.button:hover span,
|
97 |
+
.product-view .box-tags .form-add button.button:hover span,
|
98 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
+
.grey-box .button span span,
|
101 |
+
.cart-table .btn-continue span span,
|
102 |
+
.cart-table .btn-update span span,
|
103 |
+
.cart-table .btn-empty span span,
|
104 |
+
.cart .discount button span span,
|
105 |
+
.cart .shipping button span span,
|
106 |
+
.block-compare button.button span span,
|
107 |
+
.block-poll button.button span span,
|
108 |
+
.block-login .actions button.button span span,
|
109 |
+
.product-view .box-tags .form-add button.button span span,
|
110 |
+
.multiple-checkout .title-buttons button.button span span,
|
111 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
+
.grey-box .button:hover span span,
|
113 |
+
.cart-table .btn-continue:hover span span,
|
114 |
+
.cart-table .btn-update:hover span span,
|
115 |
+
.cart-table .btn-empty:hover span span,
|
116 |
+
.cart .discount button:hover span span,
|
117 |
+
.cart .shipping button:hover span span,
|
118 |
+
.block-compare button.button:hover span span,
|
119 |
+
.block-poll button.button:hover span span,
|
120 |
+
.block-login .actions button.button:hover span span,
|
121 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
+
|
125 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
+
|
128 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
+
|
131 |
+
button.btn-checkout span span{padding:0 16px}
|
132 |
+
/****************************End Buttons***************************/
|
133 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
+
|
136 |
+
|
137 |
+
/********** < Navigation */
|
138 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
+
|
140 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
+
#nav li { position:relative; text-align:left; }
|
142 |
+
#nav li.over { z-index:998; }
|
143 |
+
#nav a,
|
144 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
+
#nav li ul span {white-space:normal; }
|
147 |
+
|
148 |
+
/* 0 Level */
|
149 |
+
#nav li { float:left; }
|
150 |
+
#nav a{float:left; color:#ffb9db; font-weight:bold}
|
151 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
+
/*#nav li.first span{padding-left:18px}*/
|
154 |
+
#nav li.over a,
|
155 |
+
#nav a:hover{color:#fff}
|
156 |
+
|
157 |
+
/* 1st Level */
|
158 |
+
#nav ul li,
|
159 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
+
#nav li.active li a,
|
161 |
+
#nav ul li.active a{background:#fff}
|
162 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
+
*/
|
164 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
+
|
166 |
+
#nav ul a,
|
167 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
+
#nav ul li a { font-weight:normal !important; }
|
169 |
+
|
170 |
+
/* 2nd Level */
|
171 |
+
#nav ul,
|
172 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
+
#nav div ul { position:static; width:auto; border:none; }
|
174 |
+
#nav ul span {background:none}
|
175 |
+
|
176 |
+
/* 3rd+ Level */
|
177 |
+
#nav ul ul,
|
178 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
+
|
180 |
+
#nav ul li a {background:#fff}
|
181 |
+
#nav ul li a:hover {background:#f4f4f4}
|
182 |
+
#nav ul li.over > a {background:#f4f4f4}
|
183 |
+
#nav ul li a,
|
184 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
+
#nav ul span,
|
186 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
+
|
188 |
+
/* Show menu */
|
189 |
+
#nav li ul.shown-sub,
|
190 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
+
#nav li .shown-sub ul.shown-sub,
|
192 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
+
/********** Navigation > */
|
194 |
+
/* ======================================================================================= */
|
195 |
+
|
196 |
+
.cms-home .nav-home a,
|
197 |
+
.contacts-index-index .nav-contacts a,
|
198 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
+
|
201 |
+
.f-right{float:right}
|
202 |
+
.f-left{float:left}
|
203 |
+
.a-right{text-align:right}
|
204 |
+
.a-left{text-align:left}
|
205 |
+
.a-center{text-align:center}
|
206 |
+
|
207 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
+
|
209 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
+
.header-cart .title a{color:#fff}
|
213 |
+
.header-cart .content{background:#ffe5f2; padding:0}
|
214 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
+
.header-cart .content li a:hover{color:#333}
|
216 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
+
.header-cart .title a{color:#fff}
|
218 |
+
|
219 |
+
.header .form-language label {color: #c3d5e3;}
|
220 |
+
|
221 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
222 |
+
|
223 |
+
#nav-sidebox{font-size:1.1em}
|
224 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
225 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
226 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
227 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
228 |
+
#nav-sidebox ul{}
|
229 |
+
#nav-sidebox ul li{padding-left:10px}
|
230 |
+
#nav-sidebox ul li ul{display:none}
|
231 |
+
|
232 |
+
.featured-container{margin-bottom:20px}
|
233 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
234 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
235 |
+
|
236 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
237 |
+
.mini-newsletter label{color:#fff}
|
238 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
239 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
240 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
241 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
242 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
243 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
244 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
245 |
+
|
246 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
247 |
+
|
248 |
+
.recently .last{border-bottom:0px solid #FFF}
|
249 |
+
.recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
250 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
251 |
+
.recently li.item .price-box{}
|
252 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
253 |
+
|
254 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
255 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
256 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
257 |
+
a.product-name:hover { text-decoration: underline; }
|
258 |
+
|
259 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
260 |
+
|
261 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
262 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
263 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
264 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f4d5e5; font-size:0.9em}
|
265 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
266 |
+
.footer .informational h6{margin-bottom:0.4em; color:#f4d5e5; font-size:1.1em}
|
267 |
+
|
268 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #cc297a; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
269 |
+
|
270 |
+
.footer .payments{float:right; margin:5px 0 0}
|
271 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
272 |
+
.footer .legality a{color:#d6d6d6; text-decoration: none;}
|
273 |
+
|
274 |
+
/* glider */
|
275 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
276 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
277 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
278 |
+
div.scroller img{ border:none}
|
279 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
280 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
281 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
282 |
+
|
283 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
284 |
+
div.sliderdescription:hover{background:#fff}
|
285 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
286 |
+
.content a:hover{text-decoration:underline}
|
287 |
+
|
288 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
289 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
290 |
+
|
291 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
292 |
+
|
293 |
+
.slidercontrol a:hover,
|
294 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
295 |
+
|
296 |
+
/* slider */
|
297 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
298 |
+
.featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
299 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
300 |
+
.featured-products #move-left,
|
301 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
302 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
303 |
+
.featured-products #move-left.disabled,
|
304 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
305 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
306 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
307 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
308 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
309 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
310 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
311 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
312 |
+
|
313 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
314 |
+
#quick-window .product-img-box{width:230px; float:left}
|
315 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
316 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
317 |
+
|
318 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
319 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
320 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
321 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
322 |
+
.catalog-listing .product-image{position:relative}
|
323 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
324 |
+
|
325 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
326 |
+
a.ajax:hover{text-decoration:none}
|
327 |
+
|
328 |
+
|
329 |
+
/****Update styles ****/
|
330 |
+
|
331 |
+
.footer li {background: none; display: block; padding: 0;}
|
332 |
+
|
333 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_pink/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_pink/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_red/css/custom.css
CHANGED
@@ -1,315 +1,315 @@
|
|
1 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #be1818; color:#2F2F2F}
|
2 |
-
|
3 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
4 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
5 |
-
|
6 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
7 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
8 |
-
|
9 |
-
.header {z-index: 100;}
|
10 |
-
.header .logo { margin: 0; }
|
11 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
12 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
13 |
-
.shop-access a:hover { text-decoration: underline; }
|
14 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
15 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
16 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
17 |
-
.header .form-search label{display:none}
|
18 |
-
.header .form-search button.button{width:20px}
|
19 |
-
.header .form-search button.button span { background: none; }
|
20 |
-
|
21 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
22 |
-
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
23 |
-
|
24 |
-
.block-content a{}
|
25 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
26 |
-
.block-subscribe .block-title strong{background:none}
|
27 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
28 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
29 |
-
.block-subscribe .actions{margin-top:15px}
|
30 |
-
.block-cart .subtotal{background:#eee}
|
31 |
-
|
32 |
-
.block-tags .block-content ul { border: none; }
|
33 |
-
|
34 |
-
.block-layered-nav{}
|
35 |
-
.block-layered-nav .block-title{ padding:0px; }
|
36 |
-
|
37 |
-
.block-layered-nav{padding:5px 10px}
|
38 |
-
.block-layered-nav .block-subtitle,
|
39 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
40 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
41 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
42 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
43 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
44 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
45 |
-
|
46 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
47 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
48 |
-
.products-grid .ratings .amount{display:none}
|
49 |
-
.products-grid .actions{}
|
50 |
-
/*************************Buttons*************************/
|
51 |
-
button.button{background:none; border:0px solid #000}
|
52 |
-
|
53 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
54 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
55 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
56 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
57 |
-
|
58 |
-
/**ALT BTNS**/
|
59 |
-
.grey-box .button span,
|
60 |
-
.cart-table .btn-continue span,
|
61 |
-
.cart-table .btn-update span,
|
62 |
-
.cart-table .btn-empty span,
|
63 |
-
.cart .discount button span,
|
64 |
-
.cart .shipping button span,
|
65 |
-
.block-compare button.button span,
|
66 |
-
.block-poll button.button span,
|
67 |
-
.block-login .actions button.button span,
|
68 |
-
.product-view .box-tags .form-add button.button span,
|
69 |
-
.multiple-checkout .title-buttons button.button span,
|
70 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
71 |
-
.grey-box .button:hover span,
|
72 |
-
.cart-table .btn-continue:hover span,
|
73 |
-
.cart-table .btn-update:hover span,
|
74 |
-
.cart-table .btn-empty:hover span,
|
75 |
-
.cart .discount button:hover span,
|
76 |
-
.cart .shipping button:hover span,
|
77 |
-
.block-compare button.button:hover span,
|
78 |
-
.block-poll button.button:hover span,
|
79 |
-
.block-login .actions button.button:hover span,
|
80 |
-
.product-view .box-tags .form-add button.button:hover span,
|
81 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
82 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
83 |
-
.grey-box .button span span,
|
84 |
-
.cart-table .btn-continue span span,
|
85 |
-
.cart-table .btn-update span span,
|
86 |
-
.cart-table .btn-empty span span,
|
87 |
-
.cart .discount button span span,
|
88 |
-
.cart .shipping button span span,
|
89 |
-
.block-compare button.button span span,
|
90 |
-
.block-poll button.button span span,
|
91 |
-
.block-login .actions button.button span span,
|
92 |
-
.product-view .box-tags .form-add button.button span span,
|
93 |
-
.multiple-checkout .title-buttons button.button span span,
|
94 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
95 |
-
.grey-box .button:hover span span,
|
96 |
-
.cart-table .btn-continue:hover span span,
|
97 |
-
.cart-table .btn-update:hover span span,
|
98 |
-
.cart-table .btn-empty:hover span span,
|
99 |
-
.cart .discount button:hover span span,
|
100 |
-
.cart .shipping button:hover span span,
|
101 |
-
.block-compare button.button:hover span span,
|
102 |
-
.block-poll button.button:hover span span,
|
103 |
-
.block-login .actions button.button:hover span span,
|
104 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
105 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
106 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
107 |
-
|
108 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
109 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
110 |
-
|
111 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
112 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
113 |
-
|
114 |
-
button.btn-checkout span span{padding:0 16px}
|
115 |
-
/****************************End Buttons***************************/
|
116 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
117 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
118 |
-
|
119 |
-
|
120 |
-
/********** < Navigation */
|
121 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
122 |
-
|
123 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
124 |
-
#nav li { position:relative; text-align:left; }
|
125 |
-
#nav li.over { z-index:998; }
|
126 |
-
#nav a,
|
127 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
128 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
129 |
-
#nav li ul span {white-space:normal; }
|
130 |
-
|
131 |
-
/* 0 Level */
|
132 |
-
#nav li { float:left; }
|
133 |
-
#nav a{float:left; color:#ffbebe; font-weight:bold}
|
134 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
135 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
136 |
-
/*#nav li.first span{padding-left:18px}*/
|
137 |
-
#nav li.over a,
|
138 |
-
#nav a:hover{color:#fff}
|
139 |
-
|
140 |
-
/* 1st Level */
|
141 |
-
#nav ul li,
|
142 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
143 |
-
#nav li.active li a,
|
144 |
-
#nav ul li.active a{background:#fff}
|
145 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
146 |
-
*/
|
147 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
148 |
-
|
149 |
-
#nav ul a,
|
150 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
151 |
-
#nav ul li a { font-weight:normal !important; }
|
152 |
-
|
153 |
-
/* 2nd Level */
|
154 |
-
#nav ul,
|
155 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
156 |
-
#nav div ul { position:static; width:auto; border:none; }
|
157 |
-
#nav ul span {background:none}
|
158 |
-
|
159 |
-
/* 3rd+ Level */
|
160 |
-
#nav ul ul,
|
161 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
162 |
-
|
163 |
-
#nav ul li a {background:#fff}
|
164 |
-
#nav ul li a:hover {background:#f4f4f4}
|
165 |
-
#nav ul li.over > a {background:#f4f4f4}
|
166 |
-
#nav ul li a,
|
167 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
168 |
-
#nav ul span,
|
169 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
170 |
-
|
171 |
-
/* Show menu */
|
172 |
-
#nav li ul.shown-sub,
|
173 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
174 |
-
#nav li .shown-sub ul.shown-sub,
|
175 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
176 |
-
/********** Navigation > */
|
177 |
-
/* ======================================================================================= */
|
178 |
-
|
179 |
-
.cms-home .nav-home a,
|
180 |
-
.contacts-index-index .nav-contacts a,
|
181 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
182 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
183 |
-
|
184 |
-
.f-right{float:right}
|
185 |
-
.f-left{float:left}
|
186 |
-
.a-right{text-align:right}
|
187 |
-
.a-left{text-align:left}
|
188 |
-
.a-center{text-align:center}
|
189 |
-
|
190 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
191 |
-
|
192 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
193 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
194 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#FFF; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
195 |
-
.header-cart .title a{color:#fff}
|
196 |
-
.header .form-language label { color:#FFF;}
|
197 |
-
.header-cart .content{background:#fbf0f0; padding:0}
|
198 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
199 |
-
.header-cart .content li a:hover{color:#333}
|
200 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
201 |
-
.header-cart .title a{color:#fff}
|
202 |
-
|
203 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
204 |
-
|
205 |
-
#nav-sidebox{font-size:1.1em}
|
206 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
207 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
208 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
209 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
210 |
-
#nav-sidebox ul{}
|
211 |
-
#nav-sidebox ul li{padding-left:10px}
|
212 |
-
#nav-sidebox ul li ul{display:none}
|
213 |
-
|
214 |
-
.featured-container{margin-bottom:20px}
|
215 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
216 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
217 |
-
|
218 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
219 |
-
.mini-newsletter label{color:#fff}
|
220 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
221 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
222 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
223 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
224 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
225 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
226 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
227 |
-
|
228 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
229 |
-
|
230 |
-
.recently .last{border-bottom:0px solid #FFF}
|
231 |
-
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
232 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
233 |
-
.recently li.item .price-box{}
|
234 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
235 |
-
|
236 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
237 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
238 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
239 |
-
a.product-name:hover { text-decoration: underline; }
|
240 |
-
|
241 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
242 |
-
|
243 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
244 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
245 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
246 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f2d3d3; font-size:0.9em}
|
247 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
248 |
-
.footer .informational h6{margin-bottom:0.4em; color:#f2d3d3; font-size:1.1em}
|
249 |
-
|
250 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #c92323; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
251 |
-
|
252 |
-
.footer .payments{float:right; margin:5px 0 0}
|
253 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
254 |
-
.footer .legality a{color:#f2d3d3; text-decoration: none;}
|
255 |
-
|
256 |
-
/* glider */
|
257 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
258 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
259 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
260 |
-
div.scroller img{ border:none}
|
261 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
262 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
263 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
264 |
-
|
265 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
266 |
-
div.sliderdescription:hover{background:#fff}
|
267 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
268 |
-
.content a:hover{text-decoration:underline}
|
269 |
-
|
270 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
271 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
272 |
-
|
273 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
274 |
-
|
275 |
-
.slidercontrol a:hover,
|
276 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
277 |
-
|
278 |
-
/* slider */
|
279 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
280 |
-
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
281 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
282 |
-
.featured-products #move-left,
|
283 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
284 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
285 |
-
.featured-products #move-left.disabled,
|
286 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
287 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
288 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
289 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
290 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
291 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
292 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
293 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
294 |
-
|
295 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
296 |
-
#quick-window .product-img-box{width:230px; float:left}
|
297 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
298 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
299 |
-
|
300 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
301 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
302 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
303 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
304 |
-
.catalog-listing .product-image{position:relative}
|
305 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
306 |
-
|
307 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
308 |
-
a.ajax:hover{text-decoration:none}
|
309 |
-
|
310 |
-
|
311 |
-
/****Update styles ****/
|
312 |
-
|
313 |
-
.footer li {background: none; display: block; padding: 0;}
|
314 |
-
|
315 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #be1818; color:#2F2F2F}
|
2 |
+
|
3 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
4 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
5 |
+
|
6 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
7 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
8 |
+
|
9 |
+
.header {z-index: 100;}
|
10 |
+
.header .logo { margin: 0; }
|
11 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
12 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
13 |
+
.shop-access a:hover { text-decoration: underline; }
|
14 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
15 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
16 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
17 |
+
.header .form-search label{display:none}
|
18 |
+
.header .form-search button.button{width:20px}
|
19 |
+
.header .form-search button.button span { background: none; }
|
20 |
+
|
21 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
22 |
+
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
23 |
+
|
24 |
+
.block-content a{}
|
25 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
26 |
+
.block-subscribe .block-title strong{background:none}
|
27 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
28 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
29 |
+
.block-subscribe .actions{margin-top:15px}
|
30 |
+
.block-cart .subtotal{background:#eee}
|
31 |
+
|
32 |
+
.block-tags .block-content ul { border: none; }
|
33 |
+
|
34 |
+
.block-layered-nav{}
|
35 |
+
.block-layered-nav .block-title{ padding:0px; }
|
36 |
+
|
37 |
+
.block-layered-nav{padding:5px 10px}
|
38 |
+
.block-layered-nav .block-subtitle,
|
39 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
40 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
41 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
42 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
43 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
44 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
45 |
+
|
46 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
47 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
48 |
+
.products-grid .ratings .amount{display:none}
|
49 |
+
.products-grid .actions{}
|
50 |
+
/*************************Buttons*************************/
|
51 |
+
button.button{background:none; border:0px solid #000}
|
52 |
+
|
53 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
54 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
55 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
56 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
57 |
+
|
58 |
+
/**ALT BTNS**/
|
59 |
+
.grey-box .button span,
|
60 |
+
.cart-table .btn-continue span,
|
61 |
+
.cart-table .btn-update span,
|
62 |
+
.cart-table .btn-empty span,
|
63 |
+
.cart .discount button span,
|
64 |
+
.cart .shipping button span,
|
65 |
+
.block-compare button.button span,
|
66 |
+
.block-poll button.button span,
|
67 |
+
.block-login .actions button.button span,
|
68 |
+
.product-view .box-tags .form-add button.button span,
|
69 |
+
.multiple-checkout .title-buttons button.button span,
|
70 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
71 |
+
.grey-box .button:hover span,
|
72 |
+
.cart-table .btn-continue:hover span,
|
73 |
+
.cart-table .btn-update:hover span,
|
74 |
+
.cart-table .btn-empty:hover span,
|
75 |
+
.cart .discount button:hover span,
|
76 |
+
.cart .shipping button:hover span,
|
77 |
+
.block-compare button.button:hover span,
|
78 |
+
.block-poll button.button:hover span,
|
79 |
+
.block-login .actions button.button:hover span,
|
80 |
+
.product-view .box-tags .form-add button.button:hover span,
|
81 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
82 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
83 |
+
.grey-box .button span span,
|
84 |
+
.cart-table .btn-continue span span,
|
85 |
+
.cart-table .btn-update span span,
|
86 |
+
.cart-table .btn-empty span span,
|
87 |
+
.cart .discount button span span,
|
88 |
+
.cart .shipping button span span,
|
89 |
+
.block-compare button.button span span,
|
90 |
+
.block-poll button.button span span,
|
91 |
+
.block-login .actions button.button span span,
|
92 |
+
.product-view .box-tags .form-add button.button span span,
|
93 |
+
.multiple-checkout .title-buttons button.button span span,
|
94 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
95 |
+
.grey-box .button:hover span span,
|
96 |
+
.cart-table .btn-continue:hover span span,
|
97 |
+
.cart-table .btn-update:hover span span,
|
98 |
+
.cart-table .btn-empty:hover span span,
|
99 |
+
.cart .discount button:hover span span,
|
100 |
+
.cart .shipping button:hover span span,
|
101 |
+
.block-compare button.button:hover span span,
|
102 |
+
.block-poll button.button:hover span span,
|
103 |
+
.block-login .actions button.button:hover span span,
|
104 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
105 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
106 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
107 |
+
|
108 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
109 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
110 |
+
|
111 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
112 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
113 |
+
|
114 |
+
button.btn-checkout span span{padding:0 16px}
|
115 |
+
/****************************End Buttons***************************/
|
116 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
117 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
118 |
+
|
119 |
+
|
120 |
+
/********** < Navigation */
|
121 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
122 |
+
|
123 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
124 |
+
#nav li { position:relative; text-align:left; }
|
125 |
+
#nav li.over { z-index:998; }
|
126 |
+
#nav a,
|
127 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
128 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
129 |
+
#nav li ul span {white-space:normal; }
|
130 |
+
|
131 |
+
/* 0 Level */
|
132 |
+
#nav li { float:left; }
|
133 |
+
#nav a{float:left; color:#ffbebe; font-weight:bold}
|
134 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
135 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
136 |
+
/*#nav li.first span{padding-left:18px}*/
|
137 |
+
#nav li.over a,
|
138 |
+
#nav a:hover{color:#fff}
|
139 |
+
|
140 |
+
/* 1st Level */
|
141 |
+
#nav ul li,
|
142 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
143 |
+
#nav li.active li a,
|
144 |
+
#nav ul li.active a{background:#fff}
|
145 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
146 |
+
*/
|
147 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
148 |
+
|
149 |
+
#nav ul a,
|
150 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
151 |
+
#nav ul li a { font-weight:normal !important; }
|
152 |
+
|
153 |
+
/* 2nd Level */
|
154 |
+
#nav ul,
|
155 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
156 |
+
#nav div ul { position:static; width:auto; border:none; }
|
157 |
+
#nav ul span {background:none}
|
158 |
+
|
159 |
+
/* 3rd+ Level */
|
160 |
+
#nav ul ul,
|
161 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
162 |
+
|
163 |
+
#nav ul li a {background:#fff}
|
164 |
+
#nav ul li a:hover {background:#f4f4f4}
|
165 |
+
#nav ul li.over > a {background:#f4f4f4}
|
166 |
+
#nav ul li a,
|
167 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
168 |
+
#nav ul span,
|
169 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
170 |
+
|
171 |
+
/* Show menu */
|
172 |
+
#nav li ul.shown-sub,
|
173 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
174 |
+
#nav li .shown-sub ul.shown-sub,
|
175 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
176 |
+
/********** Navigation > */
|
177 |
+
/* ======================================================================================= */
|
178 |
+
|
179 |
+
.cms-home .nav-home a,
|
180 |
+
.contacts-index-index .nav-contacts a,
|
181 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
182 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
183 |
+
|
184 |
+
.f-right{float:right}
|
185 |
+
.f-left{float:left}
|
186 |
+
.a-right{text-align:right}
|
187 |
+
.a-left{text-align:left}
|
188 |
+
.a-center{text-align:center}
|
189 |
+
|
190 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
191 |
+
|
192 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
193 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
194 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#FFF; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
195 |
+
.header-cart .title a{color:#fff}
|
196 |
+
.header .form-language label { color:#FFF;}
|
197 |
+
.header-cart .content{background:#fbf0f0; padding:0}
|
198 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
199 |
+
.header-cart .content li a:hover{color:#333}
|
200 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
201 |
+
.header-cart .title a{color:#fff}
|
202 |
+
|
203 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
204 |
+
|
205 |
+
#nav-sidebox{font-size:1.1em}
|
206 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
207 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
208 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
209 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
210 |
+
#nav-sidebox ul{}
|
211 |
+
#nav-sidebox ul li{padding-left:10px}
|
212 |
+
#nav-sidebox ul li ul{display:none}
|
213 |
+
|
214 |
+
.featured-container{margin-bottom:20px}
|
215 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
216 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
217 |
+
|
218 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
219 |
+
.mini-newsletter label{color:#fff}
|
220 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
221 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
222 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
223 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
224 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
225 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
226 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
227 |
+
|
228 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
229 |
+
|
230 |
+
.recently .last{border-bottom:0px solid #FFF}
|
231 |
+
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
232 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
233 |
+
.recently li.item .price-box{}
|
234 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
235 |
+
|
236 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
237 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
238 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
239 |
+
a.product-name:hover { text-decoration: underline; }
|
240 |
+
|
241 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
242 |
+
|
243 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
244 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
245 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
246 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f2d3d3; font-size:0.9em}
|
247 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
248 |
+
.footer .informational h6{margin-bottom:0.4em; color:#f2d3d3; font-size:1.1em}
|
249 |
+
|
250 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #c92323; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
251 |
+
|
252 |
+
.footer .payments{float:right; margin:5px 0 0}
|
253 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
254 |
+
.footer .legality a{color:#f2d3d3; text-decoration: none;}
|
255 |
+
|
256 |
+
/* glider */
|
257 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
258 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
259 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
260 |
+
div.scroller img{ border:none}
|
261 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
262 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
263 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
264 |
+
|
265 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
266 |
+
div.sliderdescription:hover{background:#fff}
|
267 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
268 |
+
.content a:hover{text-decoration:underline}
|
269 |
+
|
270 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
271 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
272 |
+
|
273 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
274 |
+
|
275 |
+
.slidercontrol a:hover,
|
276 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
277 |
+
|
278 |
+
/* slider */
|
279 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
280 |
+
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
281 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
282 |
+
.featured-products #move-left,
|
283 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
284 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
285 |
+
.featured-products #move-left.disabled,
|
286 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
287 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
288 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
289 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
290 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
291 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
292 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
293 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
294 |
+
|
295 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
296 |
+
#quick-window .product-img-box{width:230px; float:left}
|
297 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
298 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
299 |
+
|
300 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
301 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
302 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
303 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
304 |
+
.catalog-listing .product-image{position:relative}
|
305 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
306 |
+
|
307 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
308 |
+
a.ajax:hover{text-decoration:none}
|
309 |
+
|
310 |
+
|
311 |
+
/****Update styles ****/
|
312 |
+
|
313 |
+
.footer li {background: none; display: block; padding: 0;}
|
314 |
+
|
315 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_red/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_red/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_sea_green/css/custom.css
CHANGED
@@ -1,328 +1,328 @@
|
|
1 |
-
/*
|
2 |
-
* body : #13717e;
|
3 |
-
* .footer .informational li ul li a : #d2e4e6;
|
4 |
-
* .footer .informational h6 : #d2e4e6;
|
5 |
-
* .footer .legality a : #c7f19e;
|
6 |
-
* #nav a : #c3d5e3;
|
7 |
-
* .header-cart .title : #C1E2A0;
|
8 |
-
* .header .form-language label : #C1E2A0;
|
9 |
-
*
|
10 |
-
*/
|
11 |
-
|
12 |
-
body{background:url("../images/body_bg.gif") repeat-x #13717e; color:#2F2F2F}
|
13 |
-
|
14 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
15 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
16 |
-
|
17 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
18 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
19 |
-
|
20 |
-
.header {z-index: 100;}
|
21 |
-
.header .logo { margin: 0; }
|
22 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
23 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
24 |
-
.shop-access a:hover { text-decoration: underline; }
|
25 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
26 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
27 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
28 |
-
.header .form-search label{display:none}
|
29 |
-
.header .form-search button.button{height:27px;width:25px;}
|
30 |
-
.header .form-search button.button span { background: none; }
|
31 |
-
.header .form-search {background:url("../images/mini_search_bg.gif") no-repeat scroll right top transparent;}
|
32 |
-
|
33 |
-
.header .form-language label { color:#c3d5e3; }
|
34 |
-
|
35 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
36 |
-
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
37 |
-
|
38 |
-
.block-content a{}
|
39 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #295e86; border:medium none; color:#FFF; min-height:124px}
|
40 |
-
.block-subscribe .block-title strong{background:none}
|
41 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
42 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
43 |
-
.block-subscribe .actions{margin-top:15px}
|
44 |
-
.block-cart .subtotal{background:#eee}
|
45 |
-
|
46 |
-
.block-tags .block-content ul { border: none; }
|
47 |
-
|
48 |
-
.block-layered-nav{}
|
49 |
-
.block-layered-nav .block-title{ padding:0px; }
|
50 |
-
|
51 |
-
.block-layered-nav{padding:5px 10px}
|
52 |
-
.block-layered-nav .block-subtitle,
|
53 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
54 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
55 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
56 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
57 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
58 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
59 |
-
|
60 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
61 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
62 |
-
.products-grid .ratings .amount{display:none}
|
63 |
-
.products-grid .actions{}
|
64 |
-
/*************************Buttons*************************/
|
65 |
-
button.button{background:none; border:0px solid #000}
|
66 |
-
|
67 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
68 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
69 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
70 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
71 |
-
|
72 |
-
/**ALT BTNS**/
|
73 |
-
.grey-box .button span,
|
74 |
-
.cart-table .btn-continue span,
|
75 |
-
.cart-table .btn-update span,
|
76 |
-
.cart-table .btn-empty span,
|
77 |
-
.cart .discount button span,
|
78 |
-
.cart .shipping button span,
|
79 |
-
.block-compare button.button span,
|
80 |
-
.block-poll button.button span,
|
81 |
-
.block-login .actions button.button span,
|
82 |
-
.product-view .box-tags .form-add button.button span,
|
83 |
-
.multiple-checkout .title-buttons button.button span,
|
84 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
85 |
-
.grey-box .button:hover span,
|
86 |
-
.cart-table .btn-continue:hover span,
|
87 |
-
.cart-table .btn-update:hover span,
|
88 |
-
.cart-table .btn-empty:hover span,
|
89 |
-
.cart .discount button:hover span,
|
90 |
-
.cart .shipping button:hover span,
|
91 |
-
.block-compare button.button:hover span,
|
92 |
-
.block-poll button.button:hover span,
|
93 |
-
.block-login .actions button.button:hover span,
|
94 |
-
.product-view .box-tags .form-add button.button:hover span,
|
95 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
96 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
97 |
-
.grey-box .button span span,
|
98 |
-
.cart-table .btn-continue span span,
|
99 |
-
.cart-table .btn-update span span,
|
100 |
-
.cart-table .btn-empty span span,
|
101 |
-
.cart .discount button span span,
|
102 |
-
.cart .shipping button span span,
|
103 |
-
.block-compare button.button span span,
|
104 |
-
.block-poll button.button span span,
|
105 |
-
.block-login .actions button.button span span,
|
106 |
-
.product-view .box-tags .form-add button.button span span,
|
107 |
-
.multiple-checkout .title-buttons button.button span span,
|
108 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
109 |
-
.grey-box .button:hover span span,
|
110 |
-
.cart-table .btn-continue:hover span span,
|
111 |
-
.cart-table .btn-update:hover span span,
|
112 |
-
.cart-table .btn-empty:hover span span,
|
113 |
-
.cart .discount button:hover span span,
|
114 |
-
.cart .shipping button:hover span span,
|
115 |
-
.block-compare button.button:hover span span,
|
116 |
-
.block-poll button.button:hover span span,
|
117 |
-
.block-login .actions button.button:hover span span,
|
118 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
119 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
120 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
121 |
-
|
122 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
123 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
124 |
-
|
125 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
126 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
127 |
-
|
128 |
-
button.btn-checkout span span{padding:0 16px}
|
129 |
-
/****************************End Buttons***************************/
|
130 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
131 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
132 |
-
|
133 |
-
|
134 |
-
/********** < Navigation */
|
135 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
136 |
-
|
137 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
138 |
-
#nav li { position:relative; text-align:left; }
|
139 |
-
#nav li.over { z-index:998; }
|
140 |
-
#nav a,
|
141 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
142 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
143 |
-
#nav li ul span {white-space:normal; }
|
144 |
-
|
145 |
-
/* 0 Level */
|
146 |
-
#nav li { float:left; }
|
147 |
-
#nav a{float:left; color:#c3d5e3; font-weight:bold}
|
148 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
149 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
150 |
-
/*#nav li.first span{padding-left:18px}*/
|
151 |
-
#nav li.over a,
|
152 |
-
#nav a:hover{color:#fff}
|
153 |
-
|
154 |
-
/* 1st Level */
|
155 |
-
#nav ul li,
|
156 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
157 |
-
#nav li.active li a,
|
158 |
-
#nav ul li.active a{background:#fff}
|
159 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
160 |
-
*/
|
161 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
162 |
-
|
163 |
-
#nav ul a,
|
164 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
165 |
-
#nav ul li a { font-weight:normal !important; }
|
166 |
-
|
167 |
-
/* 2nd Level */
|
168 |
-
#nav ul,
|
169 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
170 |
-
#nav div ul { position:static; width:auto; border:none; }
|
171 |
-
#nav ul span {background:none}
|
172 |
-
|
173 |
-
/* 3rd+ Level */
|
174 |
-
#nav ul ul,
|
175 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
176 |
-
|
177 |
-
#nav ul li a {background:#fff}
|
178 |
-
#nav ul li a:hover {background:#f4f4f4}
|
179 |
-
#nav ul li.over > a {background:#f4f4f4}
|
180 |
-
#nav ul li a,
|
181 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
182 |
-
#nav ul span,
|
183 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
184 |
-
|
185 |
-
/* Show menu */
|
186 |
-
#nav li ul.shown-sub,
|
187 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
188 |
-
#nav li .shown-sub ul.shown-sub,
|
189 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
190 |
-
/********** Navigation > */
|
191 |
-
/* ======================================================================================= */
|
192 |
-
|
193 |
-
.cms-home .nav-home a,
|
194 |
-
.contacts-index-index .nav-contacts a,
|
195 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
196 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
197 |
-
|
198 |
-
.f-right{float:right}
|
199 |
-
.f-left{float:left}
|
200 |
-
.a-right{text-align:right}
|
201 |
-
.a-left{text-align:left}
|
202 |
-
.a-center{text-align:center}
|
203 |
-
|
204 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
205 |
-
|
206 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
207 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
208 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
209 |
-
.header-cart .title a{color:#fff}
|
210 |
-
.header-cart .content{background:#f3f8fb; padding:0}
|
211 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
212 |
-
.header-cart .content li a:hover{color:#333}
|
213 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
214 |
-
.header-cart .title a{color:#fff}
|
215 |
-
|
216 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
217 |
-
|
218 |
-
#nav-sidebox{font-size:1.1em}
|
219 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
220 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
221 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
222 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
223 |
-
#nav-sidebox ul{}
|
224 |
-
#nav-sidebox ul li{padding-left:10px}
|
225 |
-
#nav-sidebox ul li ul{display:none}
|
226 |
-
|
227 |
-
.featured-container{margin-bottom:20px}
|
228 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
229 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
230 |
-
|
231 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
232 |
-
.mini-newsletter label{color:#fff}
|
233 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
234 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
235 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
236 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
237 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
238 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
239 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
240 |
-
|
241 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
242 |
-
|
243 |
-
.recently .last{border-bottom:0px solid #FFF}
|
244 |
-
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
245 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
246 |
-
.recently li.item .price-box{}
|
247 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
248 |
-
|
249 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
250 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
251 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
252 |
-
a.product-name:hover { text-decoration: underline; }
|
253 |
-
|
254 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
255 |
-
|
256 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
257 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
258 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
259 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#d2e4e6; font-size:0.9em}
|
260 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
261 |
-
.footer .informational h6{margin-bottom:0.4em; color:#d2e4e6; font-size:1.1em}
|
262 |
-
|
263 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; height:32px; margin:17px 0 10px;border:1px solid #1a7885; border-width:1px 0; line-height:31px;}
|
264 |
-
|
265 |
-
.footer .payments{float:right; margin:5px 0 0}
|
266 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
267 |
-
.footer .legality a{color:#a0f3ff; text-decoration: none;}
|
268 |
-
|
269 |
-
/* glider */
|
270 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
271 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
272 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
273 |
-
div.scroller img{ border:none}
|
274 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
275 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
276 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
277 |
-
|
278 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
279 |
-
div.sliderdescription:hover{background:#fff}
|
280 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
281 |
-
.content a:hover{text-decoration:underline}
|
282 |
-
|
283 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
284 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
285 |
-
|
286 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
287 |
-
|
288 |
-
.slidercontrol a:hover,
|
289 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
290 |
-
|
291 |
-
/* slider */
|
292 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
293 |
-
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
294 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
295 |
-
.featured-products #move-left,
|
296 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
297 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
298 |
-
.featured-products #move-left.disabled,
|
299 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
300 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
301 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
302 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
303 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
304 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
305 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
306 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
307 |
-
|
308 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
309 |
-
#quick-window .product-img-box{width:230px; float:left}
|
310 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
311 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
312 |
-
|
313 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
314 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
315 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
316 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
317 |
-
.catalog-listing .product-image{position:relative}
|
318 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
319 |
-
|
320 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
321 |
-
a.ajax:hover{text-decoration:none}
|
322 |
-
|
323 |
-
|
324 |
-
/****Update styles ****/
|
325 |
-
|
326 |
-
.footer li {background: none; display: block; padding: 0;}
|
327 |
-
|
328 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #13717e;
|
3 |
+
* .footer .informational li ul li a : #d2e4e6;
|
4 |
+
* .footer .informational h6 : #d2e4e6;
|
5 |
+
* .footer .legality a : #c7f19e;
|
6 |
+
* #nav a : #c3d5e3;
|
7 |
+
* .header-cart .title : #C1E2A0;
|
8 |
+
* .header .form-language label : #C1E2A0;
|
9 |
+
*
|
10 |
+
*/
|
11 |
+
|
12 |
+
body{background:url("../images/body_bg.gif") repeat-x #13717e; color:#2F2F2F}
|
13 |
+
|
14 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
15 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
16 |
+
|
17 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
18 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
19 |
+
|
20 |
+
.header {z-index: 100;}
|
21 |
+
.header .logo { margin: 0; }
|
22 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
23 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
24 |
+
.shop-access a:hover { text-decoration: underline; }
|
25 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
26 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
27 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
28 |
+
.header .form-search label{display:none}
|
29 |
+
.header .form-search button.button{height:27px;width:25px;}
|
30 |
+
.header .form-search button.button span { background: none; }
|
31 |
+
.header .form-search {background:url("../images/mini_search_bg.gif") no-repeat scroll right top transparent;}
|
32 |
+
|
33 |
+
.header .form-language label { color:#c3d5e3; }
|
34 |
+
|
35 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
36 |
+
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
37 |
+
|
38 |
+
.block-content a{}
|
39 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #295e86; border:medium none; color:#FFF; min-height:124px}
|
40 |
+
.block-subscribe .block-title strong{background:none}
|
41 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
42 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
43 |
+
.block-subscribe .actions{margin-top:15px}
|
44 |
+
.block-cart .subtotal{background:#eee}
|
45 |
+
|
46 |
+
.block-tags .block-content ul { border: none; }
|
47 |
+
|
48 |
+
.block-layered-nav{}
|
49 |
+
.block-layered-nav .block-title{ padding:0px; }
|
50 |
+
|
51 |
+
.block-layered-nav{padding:5px 10px}
|
52 |
+
.block-layered-nav .block-subtitle,
|
53 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
54 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
55 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
56 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
57 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
58 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
59 |
+
|
60 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
61 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
62 |
+
.products-grid .ratings .amount{display:none}
|
63 |
+
.products-grid .actions{}
|
64 |
+
/*************************Buttons*************************/
|
65 |
+
button.button{background:none; border:0px solid #000}
|
66 |
+
|
67 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
68 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
69 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
70 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
71 |
+
|
72 |
+
/**ALT BTNS**/
|
73 |
+
.grey-box .button span,
|
74 |
+
.cart-table .btn-continue span,
|
75 |
+
.cart-table .btn-update span,
|
76 |
+
.cart-table .btn-empty span,
|
77 |
+
.cart .discount button span,
|
78 |
+
.cart .shipping button span,
|
79 |
+
.block-compare button.button span,
|
80 |
+
.block-poll button.button span,
|
81 |
+
.block-login .actions button.button span,
|
82 |
+
.product-view .box-tags .form-add button.button span,
|
83 |
+
.multiple-checkout .title-buttons button.button span,
|
84 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
85 |
+
.grey-box .button:hover span,
|
86 |
+
.cart-table .btn-continue:hover span,
|
87 |
+
.cart-table .btn-update:hover span,
|
88 |
+
.cart-table .btn-empty:hover span,
|
89 |
+
.cart .discount button:hover span,
|
90 |
+
.cart .shipping button:hover span,
|
91 |
+
.block-compare button.button:hover span,
|
92 |
+
.block-poll button.button:hover span,
|
93 |
+
.block-login .actions button.button:hover span,
|
94 |
+
.product-view .box-tags .form-add button.button:hover span,
|
95 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
96 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
97 |
+
.grey-box .button span span,
|
98 |
+
.cart-table .btn-continue span span,
|
99 |
+
.cart-table .btn-update span span,
|
100 |
+
.cart-table .btn-empty span span,
|
101 |
+
.cart .discount button span span,
|
102 |
+
.cart .shipping button span span,
|
103 |
+
.block-compare button.button span span,
|
104 |
+
.block-poll button.button span span,
|
105 |
+
.block-login .actions button.button span span,
|
106 |
+
.product-view .box-tags .form-add button.button span span,
|
107 |
+
.multiple-checkout .title-buttons button.button span span,
|
108 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
109 |
+
.grey-box .button:hover span span,
|
110 |
+
.cart-table .btn-continue:hover span span,
|
111 |
+
.cart-table .btn-update:hover span span,
|
112 |
+
.cart-table .btn-empty:hover span span,
|
113 |
+
.cart .discount button:hover span span,
|
114 |
+
.cart .shipping button:hover span span,
|
115 |
+
.block-compare button.button:hover span span,
|
116 |
+
.block-poll button.button:hover span span,
|
117 |
+
.block-login .actions button.button:hover span span,
|
118 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
119 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
120 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
121 |
+
|
122 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
123 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
124 |
+
|
125 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
126 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
127 |
+
|
128 |
+
button.btn-checkout span span{padding:0 16px}
|
129 |
+
/****************************End Buttons***************************/
|
130 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
131 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
132 |
+
|
133 |
+
|
134 |
+
/********** < Navigation */
|
135 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
136 |
+
|
137 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
138 |
+
#nav li { position:relative; text-align:left; }
|
139 |
+
#nav li.over { z-index:998; }
|
140 |
+
#nav a,
|
141 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
142 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
143 |
+
#nav li ul span {white-space:normal; }
|
144 |
+
|
145 |
+
/* 0 Level */
|
146 |
+
#nav li { float:left; }
|
147 |
+
#nav a{float:left; color:#c3d5e3; font-weight:bold}
|
148 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
149 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
150 |
+
/*#nav li.first span{padding-left:18px}*/
|
151 |
+
#nav li.over a,
|
152 |
+
#nav a:hover{color:#fff}
|
153 |
+
|
154 |
+
/* 1st Level */
|
155 |
+
#nav ul li,
|
156 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
157 |
+
#nav li.active li a,
|
158 |
+
#nav ul li.active a{background:#fff}
|
159 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
160 |
+
*/
|
161 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
162 |
+
|
163 |
+
#nav ul a,
|
164 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
165 |
+
#nav ul li a { font-weight:normal !important; }
|
166 |
+
|
167 |
+
/* 2nd Level */
|
168 |
+
#nav ul,
|
169 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
170 |
+
#nav div ul { position:static; width:auto; border:none; }
|
171 |
+
#nav ul span {background:none}
|
172 |
+
|
173 |
+
/* 3rd+ Level */
|
174 |
+
#nav ul ul,
|
175 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
176 |
+
|
177 |
+
#nav ul li a {background:#fff}
|
178 |
+
#nav ul li a:hover {background:#f4f4f4}
|
179 |
+
#nav ul li.over > a {background:#f4f4f4}
|
180 |
+
#nav ul li a,
|
181 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
182 |
+
#nav ul span,
|
183 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
184 |
+
|
185 |
+
/* Show menu */
|
186 |
+
#nav li ul.shown-sub,
|
187 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
188 |
+
#nav li .shown-sub ul.shown-sub,
|
189 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
190 |
+
/********** Navigation > */
|
191 |
+
/* ======================================================================================= */
|
192 |
+
|
193 |
+
.cms-home .nav-home a,
|
194 |
+
.contacts-index-index .nav-contacts a,
|
195 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
196 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
197 |
+
|
198 |
+
.f-right{float:right}
|
199 |
+
.f-left{float:left}
|
200 |
+
.a-right{text-align:right}
|
201 |
+
.a-left{text-align:left}
|
202 |
+
.a-center{text-align:center}
|
203 |
+
|
204 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
205 |
+
|
206 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
207 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
208 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
209 |
+
.header-cart .title a{color:#fff}
|
210 |
+
.header-cart .content{background:#f3f8fb; padding:0}
|
211 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
212 |
+
.header-cart .content li a:hover{color:#333}
|
213 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
214 |
+
.header-cart .title a{color:#fff}
|
215 |
+
|
216 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
217 |
+
|
218 |
+
#nav-sidebox{font-size:1.1em}
|
219 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
220 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
221 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
222 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
223 |
+
#nav-sidebox ul{}
|
224 |
+
#nav-sidebox ul li{padding-left:10px}
|
225 |
+
#nav-sidebox ul li ul{display:none}
|
226 |
+
|
227 |
+
.featured-container{margin-bottom:20px}
|
228 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
229 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
230 |
+
|
231 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
232 |
+
.mini-newsletter label{color:#fff}
|
233 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
234 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
235 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
236 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
237 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
238 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
239 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
240 |
+
|
241 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
242 |
+
|
243 |
+
.recently .last{border-bottom:0px solid #FFF}
|
244 |
+
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
245 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
246 |
+
.recently li.item .price-box{}
|
247 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
248 |
+
|
249 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
250 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
251 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
252 |
+
a.product-name:hover { text-decoration: underline; }
|
253 |
+
|
254 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
255 |
+
|
256 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
257 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
258 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
259 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#d2e4e6; font-size:0.9em}
|
260 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
261 |
+
.footer .informational h6{margin-bottom:0.4em; color:#d2e4e6; font-size:1.1em}
|
262 |
+
|
263 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; height:32px; margin:17px 0 10px;border:1px solid #1a7885; border-width:1px 0; line-height:31px;}
|
264 |
+
|
265 |
+
.footer .payments{float:right; margin:5px 0 0}
|
266 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
267 |
+
.footer .legality a{color:#a0f3ff; text-decoration: none;}
|
268 |
+
|
269 |
+
/* glider */
|
270 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
271 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
272 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
273 |
+
div.scroller img{ border:none}
|
274 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
275 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
276 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
277 |
+
|
278 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
279 |
+
div.sliderdescription:hover{background:#fff}
|
280 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
281 |
+
.content a:hover{text-decoration:underline}
|
282 |
+
|
283 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
284 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
285 |
+
|
286 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
287 |
+
|
288 |
+
.slidercontrol a:hover,
|
289 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
290 |
+
|
291 |
+
/* slider */
|
292 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
293 |
+
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
294 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
295 |
+
.featured-products #move-left,
|
296 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
297 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
298 |
+
.featured-products #move-left.disabled,
|
299 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
300 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
301 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
302 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
303 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
304 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
305 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
306 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
307 |
+
|
308 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
309 |
+
#quick-window .product-img-box{width:230px; float:left}
|
310 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
311 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
312 |
+
|
313 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
314 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
315 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
316 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
317 |
+
.catalog-listing .product-image{position:relative}
|
318 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
319 |
+
|
320 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
321 |
+
a.ajax:hover{text-decoration:none}
|
322 |
+
|
323 |
+
|
324 |
+
/****Update styles ****/
|
325 |
+
|
326 |
+
.footer li {background: none; display: block; padding: 0;}
|
327 |
+
|
328 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_sea_green/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_sea_green/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_silver/css/custom.css
CHANGED
@@ -1,333 +1,333 @@
|
|
1 |
-
/*
|
2 |
-
* body : #575759;
|
3 |
-
* .footer .informational li ul li a : #ddddde;
|
4 |
-
* .footer .informational h6 : #ddddde;
|
5 |
-
* .footer .legality a : #dbdbdd;
|
6 |
-
* #nav a : #d1d1d3;
|
7 |
-
* .header-cart .title : #ffffff;
|
8 |
-
* .header .form-language label : #ffffff;
|
9 |
-
* .header-cart .content : #d1d1d3;
|
10 |
-
* .recently .subtitle : #db6200;
|
11 |
-
* .page-title h1 : #db6200;
|
12 |
-
* .featured-products h4 : #db6200;
|
13 |
-
*/
|
14 |
-
|
15 |
-
|
16 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #575759; color:#2F2F2F}
|
17 |
-
|
18 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
-
|
21 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
-
|
24 |
-
.header {z-index: 100;}
|
25 |
-
.header .logo { margin: 0; }
|
26 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
-
.shop-access a:hover { text-decoration: underline; }
|
29 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
-
.header .form-search label{display:none}
|
33 |
-
.header .form-search button.button{width:20px}
|
34 |
-
.header .form-search button.button span { background: none; }
|
35 |
-
|
36 |
-
.header .form-language label {color: #ffffff;}
|
37 |
-
|
38 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
-
.page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
-
|
41 |
-
.block-content a{}
|
42 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
-
.block-subscribe .block-title strong{background:none}
|
44 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
-
.block-subscribe .actions{margin-top:15px}
|
47 |
-
.block-cart .subtotal{background:#eee}
|
48 |
-
|
49 |
-
.block-tags .block-content ul { border: none; }
|
50 |
-
|
51 |
-
.block-layered-nav{}
|
52 |
-
.block-layered-nav .block-title{ padding:0px; }
|
53 |
-
|
54 |
-
.block-layered-nav{padding:5px 10px}
|
55 |
-
.block-layered-nav .block-subtitle,
|
56 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
-
|
63 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
-
.products-grid .ratings .amount{display:none}
|
66 |
-
.products-grid .actions{}
|
67 |
-
/*************************Buttons*************************/
|
68 |
-
button.button{background:none; border:0px solid #000}
|
69 |
-
|
70 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
-
|
75 |
-
/**ALT BTNS**/
|
76 |
-
.grey-box .button span,
|
77 |
-
.cart-table .btn-continue span,
|
78 |
-
.cart-table .btn-update span,
|
79 |
-
.cart-table .btn-empty span,
|
80 |
-
.cart .discount button span,
|
81 |
-
.cart .shipping button span,
|
82 |
-
.block-compare button.button span,
|
83 |
-
.block-poll button.button span,
|
84 |
-
.block-login .actions button.button span,
|
85 |
-
.product-view .box-tags .form-add button.button span,
|
86 |
-
.multiple-checkout .title-buttons button.button span,
|
87 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
-
.grey-box .button:hover span,
|
89 |
-
.cart-table .btn-continue:hover span,
|
90 |
-
.cart-table .btn-update:hover span,
|
91 |
-
.cart-table .btn-empty:hover span,
|
92 |
-
.cart .discount button:hover span,
|
93 |
-
.cart .shipping button:hover span,
|
94 |
-
.block-compare button.button:hover span,
|
95 |
-
.block-poll button.button:hover span,
|
96 |
-
.block-login .actions button.button:hover span,
|
97 |
-
.product-view .box-tags .form-add button.button:hover span,
|
98 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
-
.grey-box .button span span,
|
101 |
-
.cart-table .btn-continue span span,
|
102 |
-
.cart-table .btn-update span span,
|
103 |
-
.cart-table .btn-empty span span,
|
104 |
-
.cart .discount button span span,
|
105 |
-
.cart .shipping button span span,
|
106 |
-
.block-compare button.button span span,
|
107 |
-
.block-poll button.button span span,
|
108 |
-
.block-login .actions button.button span span,
|
109 |
-
.product-view .box-tags .form-add button.button span span,
|
110 |
-
.multiple-checkout .title-buttons button.button span span,
|
111 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
-
.grey-box .button:hover span span,
|
113 |
-
.cart-table .btn-continue:hover span span,
|
114 |
-
.cart-table .btn-update:hover span span,
|
115 |
-
.cart-table .btn-empty:hover span span,
|
116 |
-
.cart .discount button:hover span span,
|
117 |
-
.cart .shipping button:hover span span,
|
118 |
-
.block-compare button.button:hover span span,
|
119 |
-
.block-poll button.button:hover span span,
|
120 |
-
.block-login .actions button.button:hover span span,
|
121 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
-
|
125 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
-
|
128 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
-
|
131 |
-
button.btn-checkout span span{padding:0 16px}
|
132 |
-
/****************************End Buttons***************************/
|
133 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
-
|
136 |
-
|
137 |
-
/********** < Navigation */
|
138 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
-
|
140 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
-
#nav li { position:relative; text-align:left; }
|
142 |
-
#nav li.over { z-index:998; }
|
143 |
-
#nav a,
|
144 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
-
#nav li ul span {white-space:normal; }
|
147 |
-
|
148 |
-
/* 0 Level */
|
149 |
-
#nav li { float:left; }
|
150 |
-
#nav a{float:left; color:#d1d1d3; font-weight:bold}
|
151 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
-
/*#nav li.first span{padding-left:18px}*/
|
154 |
-
#nav li.over a,
|
155 |
-
#nav a:hover{color:#fff}
|
156 |
-
|
157 |
-
/* 1st Level */
|
158 |
-
#nav ul li,
|
159 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
-
#nav li.active li a,
|
161 |
-
#nav ul li.active a{background:#fff}
|
162 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
-
*/
|
164 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
-
|
166 |
-
#nav ul a,
|
167 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
-
#nav ul li a { font-weight:normal !important; }
|
169 |
-
|
170 |
-
/* 2nd Level */
|
171 |
-
#nav ul,
|
172 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
-
#nav div ul { position:static; width:auto; border:none; }
|
174 |
-
#nav ul span {background:none}
|
175 |
-
|
176 |
-
/* 3rd+ Level */
|
177 |
-
#nav ul ul,
|
178 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
-
|
180 |
-
#nav ul li a {background:#fff}
|
181 |
-
#nav ul li a:hover {background:#f4f4f4}
|
182 |
-
#nav ul li.over > a {background:#f4f4f4}
|
183 |
-
#nav ul li a,
|
184 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
-
#nav ul span,
|
186 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
-
|
188 |
-
/* Show menu */
|
189 |
-
#nav li ul.shown-sub,
|
190 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
-
#nav li .shown-sub ul.shown-sub,
|
192 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
-
/********** Navigation > */
|
194 |
-
/* ======================================================================================= */
|
195 |
-
|
196 |
-
.cms-home .nav-home a,
|
197 |
-
.contacts-index-index .nav-contacts a,
|
198 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
-
|
201 |
-
.f-right{float:right}
|
202 |
-
.f-left{float:left}
|
203 |
-
.a-right{text-align:right}
|
204 |
-
.a-left{text-align:left}
|
205 |
-
.a-center{text-align:center}
|
206 |
-
|
207 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
-
|
209 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
-
.header-cart .title a{color:#fff}
|
213 |
-
.header-cart .content{background:#d1d1d3; padding:0}
|
214 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
-
.header-cart .content li a:hover{color:#333}
|
216 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
-
.header-cart .title a{color:#fff}
|
218 |
-
|
219 |
-
.header .form-language label {color: #c3d5e3;}
|
220 |
-
|
221 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
222 |
-
|
223 |
-
#nav-sidebox{font-size:1.1em}
|
224 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
225 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
226 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
227 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
228 |
-
#nav-sidebox ul{}
|
229 |
-
#nav-sidebox ul li{padding-left:10px}
|
230 |
-
#nav-sidebox ul li ul{display:none}
|
231 |
-
|
232 |
-
.featured-container{margin-bottom:20px}
|
233 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
234 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
235 |
-
|
236 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
237 |
-
.mini-newsletter label{color:#fff}
|
238 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
239 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
240 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
241 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
242 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
243 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
244 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
245 |
-
|
246 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
247 |
-
|
248 |
-
.recently .last{border-bottom:0px solid #FFF}
|
249 |
-
.recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
250 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
251 |
-
.recently li.item .price-box{}
|
252 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
253 |
-
|
254 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
255 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
256 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
257 |
-
a.product-name:hover { text-decoration: underline; }
|
258 |
-
|
259 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
260 |
-
|
261 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
262 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
263 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
264 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#ddddde; font-size:0.9em}
|
265 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
266 |
-
.footer .informational h6{margin-bottom:0.4em; color:#ddddde; font-size:1.1em}
|
267 |
-
|
268 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #5e5e60; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
269 |
-
|
270 |
-
.footer .payments{float:right; margin:5px 0 0}
|
271 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
272 |
-
.footer .legality a{color:#dbdbdd; text-decoration: none;}
|
273 |
-
|
274 |
-
/* glider */
|
275 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
276 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
277 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
278 |
-
div.scroller img{ border:none}
|
279 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
280 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
281 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
282 |
-
|
283 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
284 |
-
div.sliderdescription:hover{background:#fff}
|
285 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
286 |
-
.content a:hover{text-decoration:underline}
|
287 |
-
|
288 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
289 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
290 |
-
|
291 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
292 |
-
|
293 |
-
.slidercontrol a:hover,
|
294 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
295 |
-
|
296 |
-
/* slider */
|
297 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
298 |
-
.featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
299 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
300 |
-
.featured-products #move-left,
|
301 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
302 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
303 |
-
.featured-products #move-left.disabled,
|
304 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
305 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
306 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
307 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
308 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
309 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
310 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
311 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
312 |
-
|
313 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
314 |
-
#quick-window .product-img-box{width:230px; float:left}
|
315 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
316 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
317 |
-
|
318 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
319 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
320 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
321 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
322 |
-
.catalog-listing .product-image{position:relative}
|
323 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
324 |
-
|
325 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
326 |
-
a.ajax:hover{text-decoration:none}
|
327 |
-
|
328 |
-
|
329 |
-
/****Update styles ****/
|
330 |
-
|
331 |
-
.footer li {background: none; display: block; padding: 0;}
|
332 |
-
|
333 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #575759;
|
3 |
+
* .footer .informational li ul li a : #ddddde;
|
4 |
+
* .footer .informational h6 : #ddddde;
|
5 |
+
* .footer .legality a : #dbdbdd;
|
6 |
+
* #nav a : #d1d1d3;
|
7 |
+
* .header-cart .title : #ffffff;
|
8 |
+
* .header .form-language label : #ffffff;
|
9 |
+
* .header-cart .content : #d1d1d3;
|
10 |
+
* .recently .subtitle : #db6200;
|
11 |
+
* .page-title h1 : #db6200;
|
12 |
+
* .featured-products h4 : #db6200;
|
13 |
+
*/
|
14 |
+
|
15 |
+
|
16 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #575759; color:#2F2F2F}
|
17 |
+
|
18 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
+
|
21 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
+
|
24 |
+
.header {z-index: 100;}
|
25 |
+
.header .logo { margin: 0; }
|
26 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
+
.shop-access a:hover { text-decoration: underline; }
|
29 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
+
.header .form-search label{display:none}
|
33 |
+
.header .form-search button.button{width:20px}
|
34 |
+
.header .form-search button.button span { background: none; }
|
35 |
+
|
36 |
+
.header .form-language label {color: #ffffff;}
|
37 |
+
|
38 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
+
.page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
+
|
41 |
+
.block-content a{}
|
42 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
+
.block-subscribe .block-title strong{background:none}
|
44 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
+
.block-subscribe .actions{margin-top:15px}
|
47 |
+
.block-cart .subtotal{background:#eee}
|
48 |
+
|
49 |
+
.block-tags .block-content ul { border: none; }
|
50 |
+
|
51 |
+
.block-layered-nav{}
|
52 |
+
.block-layered-nav .block-title{ padding:0px; }
|
53 |
+
|
54 |
+
.block-layered-nav{padding:5px 10px}
|
55 |
+
.block-layered-nav .block-subtitle,
|
56 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
+
|
63 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
+
.products-grid .ratings .amount{display:none}
|
66 |
+
.products-grid .actions{}
|
67 |
+
/*************************Buttons*************************/
|
68 |
+
button.button{background:none; border:0px solid #000}
|
69 |
+
|
70 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
+
|
75 |
+
/**ALT BTNS**/
|
76 |
+
.grey-box .button span,
|
77 |
+
.cart-table .btn-continue span,
|
78 |
+
.cart-table .btn-update span,
|
79 |
+
.cart-table .btn-empty span,
|
80 |
+
.cart .discount button span,
|
81 |
+
.cart .shipping button span,
|
82 |
+
.block-compare button.button span,
|
83 |
+
.block-poll button.button span,
|
84 |
+
.block-login .actions button.button span,
|
85 |
+
.product-view .box-tags .form-add button.button span,
|
86 |
+
.multiple-checkout .title-buttons button.button span,
|
87 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
+
.grey-box .button:hover span,
|
89 |
+
.cart-table .btn-continue:hover span,
|
90 |
+
.cart-table .btn-update:hover span,
|
91 |
+
.cart-table .btn-empty:hover span,
|
92 |
+
.cart .discount button:hover span,
|
93 |
+
.cart .shipping button:hover span,
|
94 |
+
.block-compare button.button:hover span,
|
95 |
+
.block-poll button.button:hover span,
|
96 |
+
.block-login .actions button.button:hover span,
|
97 |
+
.product-view .box-tags .form-add button.button:hover span,
|
98 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
+
.grey-box .button span span,
|
101 |
+
.cart-table .btn-continue span span,
|
102 |
+
.cart-table .btn-update span span,
|
103 |
+
.cart-table .btn-empty span span,
|
104 |
+
.cart .discount button span span,
|
105 |
+
.cart .shipping button span span,
|
106 |
+
.block-compare button.button span span,
|
107 |
+
.block-poll button.button span span,
|
108 |
+
.block-login .actions button.button span span,
|
109 |
+
.product-view .box-tags .form-add button.button span span,
|
110 |
+
.multiple-checkout .title-buttons button.button span span,
|
111 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
+
.grey-box .button:hover span span,
|
113 |
+
.cart-table .btn-continue:hover span span,
|
114 |
+
.cart-table .btn-update:hover span span,
|
115 |
+
.cart-table .btn-empty:hover span span,
|
116 |
+
.cart .discount button:hover span span,
|
117 |
+
.cart .shipping button:hover span span,
|
118 |
+
.block-compare button.button:hover span span,
|
119 |
+
.block-poll button.button:hover span span,
|
120 |
+
.block-login .actions button.button:hover span span,
|
121 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
+
|
125 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
+
|
128 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
+
|
131 |
+
button.btn-checkout span span{padding:0 16px}
|
132 |
+
/****************************End Buttons***************************/
|
133 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
+
|
136 |
+
|
137 |
+
/********** < Navigation */
|
138 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
+
|
140 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
+
#nav li { position:relative; text-align:left; }
|
142 |
+
#nav li.over { z-index:998; }
|
143 |
+
#nav a,
|
144 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
+
#nav li ul span {white-space:normal; }
|
147 |
+
|
148 |
+
/* 0 Level */
|
149 |
+
#nav li { float:left; }
|
150 |
+
#nav a{float:left; color:#d1d1d3; font-weight:bold}
|
151 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
+
/*#nav li.first span{padding-left:18px}*/
|
154 |
+
#nav li.over a,
|
155 |
+
#nav a:hover{color:#fff}
|
156 |
+
|
157 |
+
/* 1st Level */
|
158 |
+
#nav ul li,
|
159 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
+
#nav li.active li a,
|
161 |
+
#nav ul li.active a{background:#fff}
|
162 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
+
*/
|
164 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
+
|
166 |
+
#nav ul a,
|
167 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
+
#nav ul li a { font-weight:normal !important; }
|
169 |
+
|
170 |
+
/* 2nd Level */
|
171 |
+
#nav ul,
|
172 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
+
#nav div ul { position:static; width:auto; border:none; }
|
174 |
+
#nav ul span {background:none}
|
175 |
+
|
176 |
+
/* 3rd+ Level */
|
177 |
+
#nav ul ul,
|
178 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
+
|
180 |
+
#nav ul li a {background:#fff}
|
181 |
+
#nav ul li a:hover {background:#f4f4f4}
|
182 |
+
#nav ul li.over > a {background:#f4f4f4}
|
183 |
+
#nav ul li a,
|
184 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
+
#nav ul span,
|
186 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
+
|
188 |
+
/* Show menu */
|
189 |
+
#nav li ul.shown-sub,
|
190 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
+
#nav li .shown-sub ul.shown-sub,
|
192 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
+
/********** Navigation > */
|
194 |
+
/* ======================================================================================= */
|
195 |
+
|
196 |
+
.cms-home .nav-home a,
|
197 |
+
.contacts-index-index .nav-contacts a,
|
198 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
+
|
201 |
+
.f-right{float:right}
|
202 |
+
.f-left{float:left}
|
203 |
+
.a-right{text-align:right}
|
204 |
+
.a-left{text-align:left}
|
205 |
+
.a-center{text-align:center}
|
206 |
+
|
207 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
+
|
209 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
+
.header-cart .title a{color:#fff}
|
213 |
+
.header-cart .content{background:#d1d1d3; padding:0}
|
214 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
+
.header-cart .content li a:hover{color:#333}
|
216 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
+
.header-cart .title a{color:#fff}
|
218 |
+
|
219 |
+
.header .form-language label {color: #c3d5e3;}
|
220 |
+
|
221 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
222 |
+
|
223 |
+
#nav-sidebox{font-size:1.1em}
|
224 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
225 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
226 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
227 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
228 |
+
#nav-sidebox ul{}
|
229 |
+
#nav-sidebox ul li{padding-left:10px}
|
230 |
+
#nav-sidebox ul li ul{display:none}
|
231 |
+
|
232 |
+
.featured-container{margin-bottom:20px}
|
233 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
234 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
235 |
+
|
236 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
237 |
+
.mini-newsletter label{color:#fff}
|
238 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
239 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
240 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
241 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
242 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
243 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
244 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
245 |
+
|
246 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
247 |
+
|
248 |
+
.recently .last{border-bottom:0px solid #FFF}
|
249 |
+
.recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
250 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
251 |
+
.recently li.item .price-box{}
|
252 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
253 |
+
|
254 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
255 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
256 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
257 |
+
a.product-name:hover { text-decoration: underline; }
|
258 |
+
|
259 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
260 |
+
|
261 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
262 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
263 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
264 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#ddddde; font-size:0.9em}
|
265 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
266 |
+
.footer .informational h6{margin-bottom:0.4em; color:#ddddde; font-size:1.1em}
|
267 |
+
|
268 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #5e5e60; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
269 |
+
|
270 |
+
.footer .payments{float:right; margin:5px 0 0}
|
271 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
272 |
+
.footer .legality a{color:#dbdbdd; text-decoration: none;}
|
273 |
+
|
274 |
+
/* glider */
|
275 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
276 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
277 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
278 |
+
div.scroller img{ border:none}
|
279 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
280 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
281 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
282 |
+
|
283 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
284 |
+
div.sliderdescription:hover{background:#fff}
|
285 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
286 |
+
.content a:hover{text-decoration:underline}
|
287 |
+
|
288 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
289 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
290 |
+
|
291 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
292 |
+
|
293 |
+
.slidercontrol a:hover,
|
294 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
295 |
+
|
296 |
+
/* slider */
|
297 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
298 |
+
.featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
299 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
300 |
+
.featured-products #move-left,
|
301 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
302 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
303 |
+
.featured-products #move-left.disabled,
|
304 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
305 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
306 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
307 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
308 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
309 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
310 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
311 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
312 |
+
|
313 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
314 |
+
#quick-window .product-img-box{width:230px; float:left}
|
315 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
316 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
317 |
+
|
318 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
319 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
320 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
321 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
322 |
+
.catalog-listing .product-image{position:relative}
|
323 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
324 |
+
|
325 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
326 |
+
a.ajax:hover{text-decoration:none}
|
327 |
+
|
328 |
+
|
329 |
+
/****Update styles ****/
|
330 |
+
|
331 |
+
.footer li {background: none; display: block; padding: 0;}
|
332 |
+
|
333 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_silver/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_silver/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_violet/css/custom.css
CHANGED
@@ -1,333 +1,333 @@
|
|
1 |
-
/*
|
2 |
-
* body : #48307e;
|
3 |
-
* .footer .informational li ul li a : #dcd7e6;
|
4 |
-
* .footer .informational h6 : #dcd7e6;
|
5 |
-
* .footer .legality a : #e0d3ff;
|
6 |
-
* #nav a : #c3d5e3;
|
7 |
-
* .header-cart .title : #c3d5e3;
|
8 |
-
* .header .form-language label : #c3d5e3;
|
9 |
-
* .header-cart .content : #f1ebff;
|
10 |
-
* .recently .subtitle : #007ed3;
|
11 |
-
* .page-title h1 : #007ed3;
|
12 |
-
* .featured-products h4 : #007ed3;
|
13 |
-
*/
|
14 |
-
|
15 |
-
|
16 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #48307e; color:#2F2F2F}
|
17 |
-
|
18 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
-
|
21 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
-
|
24 |
-
.header {z-index: 100;}
|
25 |
-
.header .logo { margin: 0; }
|
26 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
-
.shop-access a:hover { text-decoration: underline; }
|
29 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
-
.header .form-search label{display:none}
|
33 |
-
.header .form-search button.button{width:20px}
|
34 |
-
.header .form-search button.button span { background: none; }
|
35 |
-
|
36 |
-
.header .form-language label {color: #ffffff;}
|
37 |
-
|
38 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
-
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
-
|
41 |
-
.block-content a{}
|
42 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
-
.block-subscribe .block-title strong{background:none}
|
44 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
-
.block-subscribe .actions{margin-top:15px}
|
47 |
-
.block-cart .subtotal{background:#eee}
|
48 |
-
|
49 |
-
.block-tags .block-content ul { border: none; }
|
50 |
-
|
51 |
-
.block-layered-nav{}
|
52 |
-
.block-layered-nav .block-title{ padding:0px; }
|
53 |
-
|
54 |
-
.block-layered-nav{padding:5px 10px}
|
55 |
-
.block-layered-nav .block-subtitle,
|
56 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
-
|
63 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
-
.products-grid .ratings .amount{display:none}
|
66 |
-
.products-grid .actions{}
|
67 |
-
/*************************Buttons*************************/
|
68 |
-
button.button{background:none; border:0px solid #000}
|
69 |
-
|
70 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
-
|
75 |
-
/**ALT BTNS**/
|
76 |
-
.grey-box .button span,
|
77 |
-
.cart-table .btn-continue span,
|
78 |
-
.cart-table .btn-update span,
|
79 |
-
.cart-table .btn-empty span,
|
80 |
-
.cart .discount button span,
|
81 |
-
.cart .shipping button span,
|
82 |
-
.block-compare button.button span,
|
83 |
-
.block-poll button.button span,
|
84 |
-
.block-login .actions button.button span,
|
85 |
-
.product-view .box-tags .form-add button.button span,
|
86 |
-
.multiple-checkout .title-buttons button.button span,
|
87 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
-
.grey-box .button:hover span,
|
89 |
-
.cart-table .btn-continue:hover span,
|
90 |
-
.cart-table .btn-update:hover span,
|
91 |
-
.cart-table .btn-empty:hover span,
|
92 |
-
.cart .discount button:hover span,
|
93 |
-
.cart .shipping button:hover span,
|
94 |
-
.block-compare button.button:hover span,
|
95 |
-
.block-poll button.button:hover span,
|
96 |
-
.block-login .actions button.button:hover span,
|
97 |
-
.product-view .box-tags .form-add button.button:hover span,
|
98 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
-
.grey-box .button span span,
|
101 |
-
.cart-table .btn-continue span span,
|
102 |
-
.cart-table .btn-update span span,
|
103 |
-
.cart-table .btn-empty span span,
|
104 |
-
.cart .discount button span span,
|
105 |
-
.cart .shipping button span span,
|
106 |
-
.block-compare button.button span span,
|
107 |
-
.block-poll button.button span span,
|
108 |
-
.block-login .actions button.button span span,
|
109 |
-
.product-view .box-tags .form-add button.button span span,
|
110 |
-
.multiple-checkout .title-buttons button.button span span,
|
111 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
-
.grey-box .button:hover span span,
|
113 |
-
.cart-table .btn-continue:hover span span,
|
114 |
-
.cart-table .btn-update:hover span span,
|
115 |
-
.cart-table .btn-empty:hover span span,
|
116 |
-
.cart .discount button:hover span span,
|
117 |
-
.cart .shipping button:hover span span,
|
118 |
-
.block-compare button.button:hover span span,
|
119 |
-
.block-poll button.button:hover span span,
|
120 |
-
.block-login .actions button.button:hover span span,
|
121 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
-
|
125 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
-
|
128 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
-
|
131 |
-
button.btn-checkout span span{padding:0 16px}
|
132 |
-
/****************************End Buttons***************************/
|
133 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
-
|
136 |
-
|
137 |
-
/********** < Navigation */
|
138 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
-
|
140 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
-
#nav li { position:relative; text-align:left; }
|
142 |
-
#nav li.over { z-index:998; }
|
143 |
-
#nav a,
|
144 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
-
#nav li ul span {white-space:normal; }
|
147 |
-
|
148 |
-
/* 0 Level */
|
149 |
-
#nav li { float:left; }
|
150 |
-
#nav a{float:left; color:#c3d5e3; font-weight:bold}
|
151 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
-
/*#nav li.first span{padding-left:18px}*/
|
154 |
-
#nav li.over a,
|
155 |
-
#nav a:hover{color:#fff}
|
156 |
-
|
157 |
-
/* 1st Level */
|
158 |
-
#nav ul li,
|
159 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
-
#nav li.active li a,
|
161 |
-
#nav ul li.active a{background:#fff}
|
162 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
-
*/
|
164 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
-
|
166 |
-
#nav ul a,
|
167 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
-
#nav ul li a { font-weight:normal !important; }
|
169 |
-
|
170 |
-
/* 2nd Level */
|
171 |
-
#nav ul,
|
172 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
-
#nav div ul { position:static; width:auto; border:none; }
|
174 |
-
#nav ul span {background:none}
|
175 |
-
|
176 |
-
/* 3rd+ Level */
|
177 |
-
#nav ul ul,
|
178 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
-
|
180 |
-
#nav ul li a {background:#fff}
|
181 |
-
#nav ul li a:hover {background:#f4f4f4}
|
182 |
-
#nav ul li.over > a {background:#f4f4f4}
|
183 |
-
#nav ul li a,
|
184 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
-
#nav ul span,
|
186 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
-
|
188 |
-
/* Show menu */
|
189 |
-
#nav li ul.shown-sub,
|
190 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
-
#nav li .shown-sub ul.shown-sub,
|
192 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
-
/********** Navigation > */
|
194 |
-
/* ======================================================================================= */
|
195 |
-
|
196 |
-
.cms-home .nav-home a,
|
197 |
-
.contacts-index-index .nav-contacts a,
|
198 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
-
|
201 |
-
.f-right{float:right}
|
202 |
-
.f-left{float:left}
|
203 |
-
.a-right{text-align:right}
|
204 |
-
.a-left{text-align:left}
|
205 |
-
.a-center{text-align:center}
|
206 |
-
|
207 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
-
|
209 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
-
.header-cart .title a{color:#fff}
|
213 |
-
.header-cart .content{background:#f1ebff; padding:0}
|
214 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
-
.header-cart .content li a:hover{color:#333}
|
216 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
-
.header-cart .title a{color:#fff}
|
218 |
-
|
219 |
-
.header .form-language label {color: #c3d5e3;}
|
220 |
-
|
221 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
222 |
-
|
223 |
-
#nav-sidebox{font-size:1.1em}
|
224 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
225 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
226 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
227 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
228 |
-
#nav-sidebox ul{}
|
229 |
-
#nav-sidebox ul li{padding-left:10px}
|
230 |
-
#nav-sidebox ul li ul{display:none}
|
231 |
-
|
232 |
-
.featured-container{margin-bottom:20px}
|
233 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
234 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
235 |
-
|
236 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
237 |
-
.mini-newsletter label{color:#fff}
|
238 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
239 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
240 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
241 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
242 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
243 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
244 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
245 |
-
|
246 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
247 |
-
|
248 |
-
.recently .last{border-bottom:0px solid #FFF}
|
249 |
-
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
250 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
251 |
-
.recently li.item .price-box{}
|
252 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
253 |
-
|
254 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
255 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
256 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
257 |
-
a.product-name:hover { text-decoration: underline; }
|
258 |
-
|
259 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
260 |
-
|
261 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
262 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
263 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
264 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#dcd7e6; font-size:0.9em}
|
265 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
266 |
-
.footer .informational h6{margin-bottom:0.4em; color:#dcd7e6; font-size:1.1em}
|
267 |
-
|
268 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #553d8b; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
269 |
-
|
270 |
-
.footer .payments{float:right; margin:5px 0 0}
|
271 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
272 |
-
.footer .legality a{color:#e0d3ff; text-decoration: none;}
|
273 |
-
|
274 |
-
/* glider */
|
275 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
276 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
277 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
278 |
-
div.scroller img{ border:none}
|
279 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
280 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
281 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
282 |
-
|
283 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
284 |
-
div.sliderdescription:hover{background:#fff}
|
285 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
286 |
-
.content a:hover{text-decoration:underline}
|
287 |
-
|
288 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
289 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
290 |
-
|
291 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
292 |
-
|
293 |
-
.slidercontrol a:hover,
|
294 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
295 |
-
|
296 |
-
/* slider */
|
297 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
298 |
-
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
299 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
300 |
-
.featured-products #move-left,
|
301 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
302 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
303 |
-
.featured-products #move-left.disabled,
|
304 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
305 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
306 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
307 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
308 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
309 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
310 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
311 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
312 |
-
|
313 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
314 |
-
#quick-window .product-img-box{width:230px; float:left}
|
315 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
316 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
317 |
-
|
318 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
319 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
320 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
321 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
322 |
-
.catalog-listing .product-image{position:relative}
|
323 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
324 |
-
|
325 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
326 |
-
a.ajax:hover{text-decoration:none}
|
327 |
-
|
328 |
-
|
329 |
-
/****Update styles ****/
|
330 |
-
|
331 |
-
.footer li {background: none; display: block; padding: 0;}
|
332 |
-
|
333 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
/*
|
2 |
+
* body : #48307e;
|
3 |
+
* .footer .informational li ul li a : #dcd7e6;
|
4 |
+
* .footer .informational h6 : #dcd7e6;
|
5 |
+
* .footer .legality a : #e0d3ff;
|
6 |
+
* #nav a : #c3d5e3;
|
7 |
+
* .header-cart .title : #c3d5e3;
|
8 |
+
* .header .form-language label : #c3d5e3;
|
9 |
+
* .header-cart .content : #f1ebff;
|
10 |
+
* .recently .subtitle : #007ed3;
|
11 |
+
* .page-title h1 : #007ed3;
|
12 |
+
* .featured-products h4 : #007ed3;
|
13 |
+
*/
|
14 |
+
|
15 |
+
|
16 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #48307e; color:#2F2F2F}
|
17 |
+
|
18 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
19 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
20 |
+
|
21 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
22 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
23 |
+
|
24 |
+
.header {z-index: 100;}
|
25 |
+
.header .logo { margin: 0; }
|
26 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
27 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
28 |
+
.shop-access a:hover { text-decoration: underline; }
|
29 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
30 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
31 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
32 |
+
.header .form-search label{display:none}
|
33 |
+
.header .form-search button.button{width:20px}
|
34 |
+
.header .form-search button.button span { background: none; }
|
35 |
+
|
36 |
+
.header .form-language label {color: #ffffff;}
|
37 |
+
|
38 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
39 |
+
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
40 |
+
|
41 |
+
.block-content a{}
|
42 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
43 |
+
.block-subscribe .block-title strong{background:none}
|
44 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
45 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
46 |
+
.block-subscribe .actions{margin-top:15px}
|
47 |
+
.block-cart .subtotal{background:#eee}
|
48 |
+
|
49 |
+
.block-tags .block-content ul { border: none; }
|
50 |
+
|
51 |
+
.block-layered-nav{}
|
52 |
+
.block-layered-nav .block-title{ padding:0px; }
|
53 |
+
|
54 |
+
.block-layered-nav{padding:5px 10px}
|
55 |
+
.block-layered-nav .block-subtitle,
|
56 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
57 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
58 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
59 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
60 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
61 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
62 |
+
|
63 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
64 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
65 |
+
.products-grid .ratings .amount{display:none}
|
66 |
+
.products-grid .actions{}
|
67 |
+
/*************************Buttons*************************/
|
68 |
+
button.button{background:none; border:0px solid #000}
|
69 |
+
|
70 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
71 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
72 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
73 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
74 |
+
|
75 |
+
/**ALT BTNS**/
|
76 |
+
.grey-box .button span,
|
77 |
+
.cart-table .btn-continue span,
|
78 |
+
.cart-table .btn-update span,
|
79 |
+
.cart-table .btn-empty span,
|
80 |
+
.cart .discount button span,
|
81 |
+
.cart .shipping button span,
|
82 |
+
.block-compare button.button span,
|
83 |
+
.block-poll button.button span,
|
84 |
+
.block-login .actions button.button span,
|
85 |
+
.product-view .box-tags .form-add button.button span,
|
86 |
+
.multiple-checkout .title-buttons button.button span,
|
87 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
88 |
+
.grey-box .button:hover span,
|
89 |
+
.cart-table .btn-continue:hover span,
|
90 |
+
.cart-table .btn-update:hover span,
|
91 |
+
.cart-table .btn-empty:hover span,
|
92 |
+
.cart .discount button:hover span,
|
93 |
+
.cart .shipping button:hover span,
|
94 |
+
.block-compare button.button:hover span,
|
95 |
+
.block-poll button.button:hover span,
|
96 |
+
.block-login .actions button.button:hover span,
|
97 |
+
.product-view .box-tags .form-add button.button:hover span,
|
98 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
99 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
100 |
+
.grey-box .button span span,
|
101 |
+
.cart-table .btn-continue span span,
|
102 |
+
.cart-table .btn-update span span,
|
103 |
+
.cart-table .btn-empty span span,
|
104 |
+
.cart .discount button span span,
|
105 |
+
.cart .shipping button span span,
|
106 |
+
.block-compare button.button span span,
|
107 |
+
.block-poll button.button span span,
|
108 |
+
.block-login .actions button.button span span,
|
109 |
+
.product-view .box-tags .form-add button.button span span,
|
110 |
+
.multiple-checkout .title-buttons button.button span span,
|
111 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
112 |
+
.grey-box .button:hover span span,
|
113 |
+
.cart-table .btn-continue:hover span span,
|
114 |
+
.cart-table .btn-update:hover span span,
|
115 |
+
.cart-table .btn-empty:hover span span,
|
116 |
+
.cart .discount button:hover span span,
|
117 |
+
.cart .shipping button:hover span span,
|
118 |
+
.block-compare button.button:hover span span,
|
119 |
+
.block-poll button.button:hover span span,
|
120 |
+
.block-login .actions button.button:hover span span,
|
121 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
122 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
123 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
124 |
+
|
125 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
126 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
127 |
+
|
128 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
129 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
130 |
+
|
131 |
+
button.btn-checkout span span{padding:0 16px}
|
132 |
+
/****************************End Buttons***************************/
|
133 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
134 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
135 |
+
|
136 |
+
|
137 |
+
/********** < Navigation */
|
138 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
139 |
+
|
140 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
141 |
+
#nav li { position:relative; text-align:left; }
|
142 |
+
#nav li.over { z-index:998; }
|
143 |
+
#nav a,
|
144 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
145 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
146 |
+
#nav li ul span {white-space:normal; }
|
147 |
+
|
148 |
+
/* 0 Level */
|
149 |
+
#nav li { float:left; }
|
150 |
+
#nav a{float:left; color:#c3d5e3; font-weight:bold}
|
151 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
152 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
153 |
+
/*#nav li.first span{padding-left:18px}*/
|
154 |
+
#nav li.over a,
|
155 |
+
#nav a:hover{color:#fff}
|
156 |
+
|
157 |
+
/* 1st Level */
|
158 |
+
#nav ul li,
|
159 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
160 |
+
#nav li.active li a,
|
161 |
+
#nav ul li.active a{background:#fff}
|
162 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
163 |
+
*/
|
164 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
165 |
+
|
166 |
+
#nav ul a,
|
167 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
168 |
+
#nav ul li a { font-weight:normal !important; }
|
169 |
+
|
170 |
+
/* 2nd Level */
|
171 |
+
#nav ul,
|
172 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
173 |
+
#nav div ul { position:static; width:auto; border:none; }
|
174 |
+
#nav ul span {background:none}
|
175 |
+
|
176 |
+
/* 3rd+ Level */
|
177 |
+
#nav ul ul,
|
178 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
179 |
+
|
180 |
+
#nav ul li a {background:#fff}
|
181 |
+
#nav ul li a:hover {background:#f4f4f4}
|
182 |
+
#nav ul li.over > a {background:#f4f4f4}
|
183 |
+
#nav ul li a,
|
184 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
185 |
+
#nav ul span,
|
186 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
187 |
+
|
188 |
+
/* Show menu */
|
189 |
+
#nav li ul.shown-sub,
|
190 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
191 |
+
#nav li .shown-sub ul.shown-sub,
|
192 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
193 |
+
/********** Navigation > */
|
194 |
+
/* ======================================================================================= */
|
195 |
+
|
196 |
+
.cms-home .nav-home a,
|
197 |
+
.contacts-index-index .nav-contacts a,
|
198 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
199 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
200 |
+
|
201 |
+
.f-right{float:right}
|
202 |
+
.f-left{float:left}
|
203 |
+
.a-right{text-align:right}
|
204 |
+
.a-left{text-align:left}
|
205 |
+
.a-center{text-align:center}
|
206 |
+
|
207 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
208 |
+
|
209 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
210 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
211 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
212 |
+
.header-cart .title a{color:#fff}
|
213 |
+
.header-cart .content{background:#f1ebff; padding:0}
|
214 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
215 |
+
.header-cart .content li a:hover{color:#333}
|
216 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
217 |
+
.header-cart .title a{color:#fff}
|
218 |
+
|
219 |
+
.header .form-language label {color: #c3d5e3;}
|
220 |
+
|
221 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
222 |
+
|
223 |
+
#nav-sidebox{font-size:1.1em}
|
224 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
225 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
226 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
227 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
228 |
+
#nav-sidebox ul{}
|
229 |
+
#nav-sidebox ul li{padding-left:10px}
|
230 |
+
#nav-sidebox ul li ul{display:none}
|
231 |
+
|
232 |
+
.featured-container{margin-bottom:20px}
|
233 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
234 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
235 |
+
|
236 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
237 |
+
.mini-newsletter label{color:#fff}
|
238 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
239 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
240 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
241 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
242 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
243 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
244 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
245 |
+
|
246 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
247 |
+
|
248 |
+
.recently .last{border-bottom:0px solid #FFF}
|
249 |
+
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
250 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
251 |
+
.recently li.item .price-box{}
|
252 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
253 |
+
|
254 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
255 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
256 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
257 |
+
a.product-name:hover { text-decoration: underline; }
|
258 |
+
|
259 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
260 |
+
|
261 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
262 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
263 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
264 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#dcd7e6; font-size:0.9em}
|
265 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
266 |
+
.footer .informational h6{margin-bottom:0.4em; color:#dcd7e6; font-size:1.1em}
|
267 |
+
|
268 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #553d8b; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
269 |
+
|
270 |
+
.footer .payments{float:right; margin:5px 0 0}
|
271 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
272 |
+
.footer .legality a{color:#e0d3ff; text-decoration: none;}
|
273 |
+
|
274 |
+
/* glider */
|
275 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
276 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
277 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
278 |
+
div.scroller img{ border:none}
|
279 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
280 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
281 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
282 |
+
|
283 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
284 |
+
div.sliderdescription:hover{background:#fff}
|
285 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
286 |
+
.content a:hover{text-decoration:underline}
|
287 |
+
|
288 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
289 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
290 |
+
|
291 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
292 |
+
|
293 |
+
.slidercontrol a:hover,
|
294 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
295 |
+
|
296 |
+
/* slider */
|
297 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
298 |
+
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
299 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
300 |
+
.featured-products #move-left,
|
301 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
302 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
303 |
+
.featured-products #move-left.disabled,
|
304 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
305 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
306 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
307 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
308 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
309 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
310 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
311 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
312 |
+
|
313 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
314 |
+
#quick-window .product-img-box{width:230px; float:left}
|
315 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
316 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
317 |
+
|
318 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
319 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
320 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
321 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
322 |
+
.catalog-listing .product-image{position:relative}
|
323 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
324 |
+
|
325 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
326 |
+
a.ajax:hover{text-decoration:none}
|
327 |
+
|
328 |
+
|
329 |
+
/****Update styles ****/
|
330 |
+
|
331 |
+
.footer li {background: none; display: block; padding: 0;}
|
332 |
+
|
333 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_violet/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_violet/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|
skin/frontend/default/f001_yellow/css/custom.css
CHANGED
@@ -1,315 +1,315 @@
|
|
1 |
-
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #e7d403; color:#2F2F2F}
|
2 |
-
|
3 |
-
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
4 |
-
a {color:#1E7EC8; text-decoration:underline; }
|
5 |
-
|
6 |
-
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
7 |
-
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
8 |
-
|
9 |
-
.header {z-index: 100;}
|
10 |
-
.header .logo { margin: 0; }
|
11 |
-
.shop-access{float:right; margin:0; font-size:1em;}
|
12 |
-
.shop-access a{color:#7386BE; text-decoration:none}
|
13 |
-
.shop-access a:hover { text-decoration: underline; }
|
14 |
-
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
15 |
-
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
16 |
-
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
17 |
-
.header .form-search label{display:none}
|
18 |
-
.header .form-search button.button{width:20px}
|
19 |
-
.header .form-search button.button span { background: none; }
|
20 |
-
|
21 |
-
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
22 |
-
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
23 |
-
|
24 |
-
.block-content a{}
|
25 |
-
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
26 |
-
.block-subscribe .block-title strong{background:none}
|
27 |
-
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
28 |
-
.block-subscribe label{font-weight:bold; color:#FFF}
|
29 |
-
.block-subscribe .actions{margin-top:15px}
|
30 |
-
.block-cart .subtotal{background:#eee}
|
31 |
-
|
32 |
-
.block-tags .block-content ul { border: none; }
|
33 |
-
|
34 |
-
.block-layered-nav{}
|
35 |
-
.block-layered-nav .block-title{ padding:0px; }
|
36 |
-
|
37 |
-
.block-layered-nav{padding:5px 10px}
|
38 |
-
.block-layered-nav .block-subtitle,
|
39 |
-
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
40 |
-
.block-layered-nav dt{padding:7px 10px 0 7px}
|
41 |
-
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
42 |
-
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
43 |
-
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
44 |
-
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
45 |
-
|
46 |
-
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
47 |
-
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
48 |
-
.products-grid .ratings .amount{display:none}
|
49 |
-
.products-grid .actions{}
|
50 |
-
/*************************Buttons*************************/
|
51 |
-
button.button{background:none; border:0px solid #000}
|
52 |
-
|
53 |
-
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
54 |
-
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
55 |
-
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
56 |
-
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
57 |
-
|
58 |
-
/**ALT BTNS**/
|
59 |
-
.grey-box .button span,
|
60 |
-
.cart-table .btn-continue span,
|
61 |
-
.cart-table .btn-update span,
|
62 |
-
.cart-table .btn-empty span,
|
63 |
-
.cart .discount button span,
|
64 |
-
.cart .shipping button span,
|
65 |
-
.block-compare button.button span,
|
66 |
-
.block-poll button.button span,
|
67 |
-
.block-login .actions button.button span,
|
68 |
-
.product-view .box-tags .form-add button.button span,
|
69 |
-
.multiple-checkout .title-buttons button.button span,
|
70 |
-
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
71 |
-
.grey-box .button:hover span,
|
72 |
-
.cart-table .btn-continue:hover span,
|
73 |
-
.cart-table .btn-update:hover span,
|
74 |
-
.cart-table .btn-empty:hover span,
|
75 |
-
.cart .discount button:hover span,
|
76 |
-
.cart .shipping button:hover span,
|
77 |
-
.block-compare button.button:hover span,
|
78 |
-
.block-poll button.button:hover span,
|
79 |
-
.block-login .actions button.button:hover span,
|
80 |
-
.product-view .box-tags .form-add button.button:hover span,
|
81 |
-
.multiple-checkout .title-buttons button.button:hover span,
|
82 |
-
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
83 |
-
.grey-box .button span span,
|
84 |
-
.cart-table .btn-continue span span,
|
85 |
-
.cart-table .btn-update span span,
|
86 |
-
.cart-table .btn-empty span span,
|
87 |
-
.cart .discount button span span,
|
88 |
-
.cart .shipping button span span,
|
89 |
-
.block-compare button.button span span,
|
90 |
-
.block-poll button.button span span,
|
91 |
-
.block-login .actions button.button span span,
|
92 |
-
.product-view .box-tags .form-add button.button span span,
|
93 |
-
.multiple-checkout .title-buttons button.button span span,
|
94 |
-
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
95 |
-
.grey-box .button:hover span span,
|
96 |
-
.cart-table .btn-continue:hover span span,
|
97 |
-
.cart-table .btn-update:hover span span,
|
98 |
-
.cart-table .btn-empty:hover span span,
|
99 |
-
.cart .discount button:hover span span,
|
100 |
-
.cart .shipping button:hover span span,
|
101 |
-
.block-compare button.button:hover span span,
|
102 |
-
.block-poll button.button:hover span span,
|
103 |
-
.block-login .actions button.button:hover span span,
|
104 |
-
.product-view .box-tags .form-add button.button:hover span span,
|
105 |
-
.multiple-checkout .title-buttons button.button:hover span span,
|
106 |
-
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
107 |
-
|
108 |
-
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
109 |
-
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
110 |
-
|
111 |
-
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
112 |
-
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
113 |
-
|
114 |
-
button.btn-checkout span span{padding:0 16px}
|
115 |
-
/****************************End Buttons***************************/
|
116 |
-
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
117 |
-
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
118 |
-
|
119 |
-
|
120 |
-
/********** < Navigation */
|
121 |
-
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
122 |
-
|
123 |
-
/* All Levels */ /* Style consistent throughout all nav levels */
|
124 |
-
#nav li { position:relative; text-align:left; }
|
125 |
-
#nav li.over { z-index:998; }
|
126 |
-
#nav a,
|
127 |
-
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
128 |
-
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
129 |
-
#nav li ul span {white-space:normal; }
|
130 |
-
|
131 |
-
/* 0 Level */
|
132 |
-
#nav li { float:left; }
|
133 |
-
#nav a{float:left; color:#FFF; font-weight:bold}
|
134 |
-
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
135 |
-
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
136 |
-
/*#nav li.first span{padding-left:18px}*/
|
137 |
-
#nav li.over a,
|
138 |
-
#nav a:hover{color:#fff}
|
139 |
-
|
140 |
-
/* 1st Level */
|
141 |
-
#nav ul li,
|
142 |
-
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
143 |
-
#nav li.active li a,
|
144 |
-
#nav ul li.active a{background:#fff}
|
145 |
-
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
146 |
-
*/
|
147 |
-
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
148 |
-
|
149 |
-
#nav ul a,
|
150 |
-
#nav ul a:hover { float:none; padding:0; background:none; }
|
151 |
-
#nav ul li a { font-weight:normal !important; }
|
152 |
-
|
153 |
-
/* 2nd Level */
|
154 |
-
#nav ul,
|
155 |
-
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
156 |
-
#nav div ul { position:static; width:auto; border:none; }
|
157 |
-
#nav ul span {background:none}
|
158 |
-
|
159 |
-
/* 3rd+ Level */
|
160 |
-
#nav ul ul,
|
161 |
-
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
162 |
-
|
163 |
-
#nav ul li a {background:#fff}
|
164 |
-
#nav ul li a:hover {background:#f4f4f4}
|
165 |
-
#nav ul li.over > a {background:#f4f4f4}
|
166 |
-
#nav ul li a,
|
167 |
-
#nav ul li a:hover {color:#2f2f2f !important}
|
168 |
-
#nav ul span,
|
169 |
-
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
170 |
-
|
171 |
-
/* Show menu */
|
172 |
-
#nav li ul.shown-sub,
|
173 |
-
#nav li div.shown-sub { left:-1px; z-index:999; }
|
174 |
-
#nav li .shown-sub ul.shown-sub,
|
175 |
-
#nav li .shown-sub li div.shown-sub { left:100px; }
|
176 |
-
/********** Navigation > */
|
177 |
-
/* ======================================================================================= */
|
178 |
-
|
179 |
-
.cms-home .nav-home a,
|
180 |
-
.contacts-index-index .nav-contacts a,
|
181 |
-
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
182 |
-
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
183 |
-
|
184 |
-
.f-right{float:right}
|
185 |
-
.f-left{float:left}
|
186 |
-
.a-right{text-align:right}
|
187 |
-
.a-left{text-align:left}
|
188 |
-
.a-center{text-align:center}
|
189 |
-
|
190 |
-
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
191 |
-
|
192 |
-
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
193 |
-
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
194 |
-
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#FFF; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
195 |
-
.header-cart .title a{color:#fff}
|
196 |
-
.header .form-language label { color:#FFF;}
|
197 |
-
.header-cart .content{background:#fdfbea; padding:0}
|
198 |
-
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
199 |
-
.header-cart .content li a:hover{color:#333}
|
200 |
-
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
201 |
-
.header-cart .title a{color:#fff}
|
202 |
-
|
203 |
-
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
204 |
-
|
205 |
-
#nav-sidebox{font-size:1.1em}
|
206 |
-
#nav-sidebox a{text-decoration:none; color:#000}
|
207 |
-
#nav-sidebox a:hover{text-decoration:underline}
|
208 |
-
#nav-sidebox li{line-height:22px; font-weight:bold}
|
209 |
-
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
210 |
-
#nav-sidebox ul{}
|
211 |
-
#nav-sidebox ul li{padding-left:10px}
|
212 |
-
#nav-sidebox ul li ul{display:none}
|
213 |
-
|
214 |
-
.featured-container{margin-bottom:20px}
|
215 |
-
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
216 |
-
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
217 |
-
|
218 |
-
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
219 |
-
.mini-newsletter label{color:#fff}
|
220 |
-
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
221 |
-
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
222 |
-
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
223 |
-
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
224 |
-
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
225 |
-
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
226 |
-
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
227 |
-
|
228 |
-
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
229 |
-
|
230 |
-
.recently .last{border-bottom:0px solid #FFF}
|
231 |
-
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
232 |
-
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
233 |
-
.recently li.item .price-box{}
|
234 |
-
.recently li.item .actions { position: absolute; bottom: 12px; }
|
235 |
-
|
236 |
-
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
237 |
-
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
238 |
-
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
239 |
-
a.product-name:hover { text-decoration: underline; }
|
240 |
-
|
241 |
-
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
242 |
-
|
243 |
-
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
244 |
-
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
245 |
-
.footer .informational li ul li{float:none; margin:0; display: block;}
|
246 |
-
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#FFF; font-size:0.9em}
|
247 |
-
.footer .informational li ul li a:hover { text-decoration: underline; }
|
248 |
-
.footer .informational h6{margin-bottom:0.4em; color:#FFF; font-size:1.1em}
|
249 |
-
|
250 |
-
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #ccbb02; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
251 |
-
|
252 |
-
.footer .payments{float:right; margin:5px 0 0}
|
253 |
-
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
254 |
-
.footer .legality a{color:#fff9b4; text-decoration: none;}
|
255 |
-
|
256 |
-
/* glider */
|
257 |
-
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
258 |
-
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
259 |
-
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
260 |
-
div.scroller img{ border:none}
|
261 |
-
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
262 |
-
div.scroller div.content{ width:10000px; padding:0px}
|
263 |
-
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
264 |
-
|
265 |
-
.content .sliderdescription p{line-height:20px; text-align:center}
|
266 |
-
div.sliderdescription:hover{background:#fff}
|
267 |
-
.content a{text-decoration:none; color:#5a5a5a}
|
268 |
-
.content a:hover{text-decoration:underline}
|
269 |
-
|
270 |
-
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
271 |
-
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
272 |
-
|
273 |
-
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
274 |
-
|
275 |
-
.slidercontrol a:hover,
|
276 |
-
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
277 |
-
|
278 |
-
/* slider */
|
279 |
-
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
280 |
-
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
281 |
-
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
282 |
-
.featured-products #move-left,
|
283 |
-
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
284 |
-
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
285 |
-
.featured-products #move-left.disabled,
|
286 |
-
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
287 |
-
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
288 |
-
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
289 |
-
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
290 |
-
.slider-wrapper .list-featured li.last{ margin:0px}
|
291 |
-
.slider-wrapper .list-featured .product-image{ text-align:center}
|
292 |
-
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
293 |
-
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
294 |
-
|
295 |
-
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
296 |
-
#quick-window .product-img-box{width:230px; float:left}
|
297 |
-
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
298 |
-
#quickview-header{background-color:#888; height:26px; width:650px}
|
299 |
-
|
300 |
-
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
301 |
-
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
302 |
-
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
303 |
-
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
304 |
-
.catalog-listing .product-image{position:relative}
|
305 |
-
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
306 |
-
|
307 |
-
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
308 |
-
a.ajax:hover{text-decoration:none}
|
309 |
-
|
310 |
-
|
311 |
-
/****Update styles ****/
|
312 |
-
|
313 |
-
.footer li {background: none; display: block; padding: 0;}
|
314 |
-
|
315 |
-
.product-collateral { background: #faf7ee; }
|
1 |
+
body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #e7d403; color:#2F2F2F}
|
2 |
+
|
3 |
+
h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
|
4 |
+
a {color:#1E7EC8; text-decoration:underline; }
|
5 |
+
|
6 |
+
.header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
|
7 |
+
.quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
|
8 |
+
|
9 |
+
.header {z-index: 100;}
|
10 |
+
.header .logo { margin: 0; }
|
11 |
+
.shop-access{float:right; margin:0; font-size:1em;}
|
12 |
+
.shop-access a{color:#7386BE; text-decoration:none}
|
13 |
+
.shop-access a:hover { text-decoration: underline; }
|
14 |
+
.header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
|
15 |
+
.header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
|
16 |
+
.main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
|
17 |
+
.header .form-search label{display:none}
|
18 |
+
.header .form-search button.button{width:20px}
|
19 |
+
.header .form-search button.button span { background: none; }
|
20 |
+
|
21 |
+
.page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
|
22 |
+
.page-title h1 {color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
|
23 |
+
|
24 |
+
.block-content a{}
|
25 |
+
.block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
|
26 |
+
.block-subscribe .block-title strong{background:none}
|
27 |
+
.block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
|
28 |
+
.block-subscribe label{font-weight:bold; color:#FFF}
|
29 |
+
.block-subscribe .actions{margin-top:15px}
|
30 |
+
.block-cart .subtotal{background:#eee}
|
31 |
+
|
32 |
+
.block-tags .block-content ul { border: none; }
|
33 |
+
|
34 |
+
.block-layered-nav{}
|
35 |
+
.block-layered-nav .block-title{ padding:0px; }
|
36 |
+
|
37 |
+
.block-layered-nav{padding:5px 10px}
|
38 |
+
.block-layered-nav .block-subtitle,
|
39 |
+
.block-layered-nav .block-content{background:none; border:0px solid #ddd}
|
40 |
+
.block-layered-nav dt{padding:7px 10px 0 7px}
|
41 |
+
.block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
|
42 |
+
.block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
|
43 |
+
.block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
|
44 |
+
.block-layered-nav dd li a:hover { text-decoration: underline; }
|
45 |
+
|
46 |
+
h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
|
47 |
+
.products-grid h5 a{color:#007ed3; text-decoration:none}
|
48 |
+
.products-grid .ratings .amount{display:none}
|
49 |
+
.products-grid .actions{}
|
50 |
+
/*************************Buttons*************************/
|
51 |
+
button.button{background:none; border:0px solid #000}
|
52 |
+
|
53 |
+
.button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
|
54 |
+
.button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
|
55 |
+
.button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
|
56 |
+
.button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
|
57 |
+
|
58 |
+
/**ALT BTNS**/
|
59 |
+
.grey-box .button span,
|
60 |
+
.cart-table .btn-continue span,
|
61 |
+
.cart-table .btn-update span,
|
62 |
+
.cart-table .btn-empty span,
|
63 |
+
.cart .discount button span,
|
64 |
+
.cart .shipping button span,
|
65 |
+
.block-compare button.button span,
|
66 |
+
.block-poll button.button span,
|
67 |
+
.block-login .actions button.button span,
|
68 |
+
.product-view .box-tags .form-add button.button span,
|
69 |
+
.multiple-checkout .title-buttons button.button span,
|
70 |
+
#multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
|
71 |
+
.grey-box .button:hover span,
|
72 |
+
.cart-table .btn-continue:hover span,
|
73 |
+
.cart-table .btn-update:hover span,
|
74 |
+
.cart-table .btn-empty:hover span,
|
75 |
+
.cart .discount button:hover span,
|
76 |
+
.cart .shipping button:hover span,
|
77 |
+
.block-compare button.button:hover span,
|
78 |
+
.block-poll button.button:hover span,
|
79 |
+
.block-login .actions button.button:hover span,
|
80 |
+
.product-view .box-tags .form-add button.button:hover span,
|
81 |
+
.multiple-checkout .title-buttons button.button:hover span,
|
82 |
+
#multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
|
83 |
+
.grey-box .button span span,
|
84 |
+
.cart-table .btn-continue span span,
|
85 |
+
.cart-table .btn-update span span,
|
86 |
+
.cart-table .btn-empty span span,
|
87 |
+
.cart .discount button span span,
|
88 |
+
.cart .shipping button span span,
|
89 |
+
.block-compare button.button span span,
|
90 |
+
.block-poll button.button span span,
|
91 |
+
.block-login .actions button.button span span,
|
92 |
+
.product-view .box-tags .form-add button.button span span,
|
93 |
+
.multiple-checkout .title-buttons button.button span span,
|
94 |
+
#multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
|
95 |
+
.grey-box .button:hover span span,
|
96 |
+
.cart-table .btn-continue:hover span span,
|
97 |
+
.cart-table .btn-update:hover span span,
|
98 |
+
.cart-table .btn-empty:hover span span,
|
99 |
+
.cart .discount button:hover span span,
|
100 |
+
.cart .shipping button:hover span span,
|
101 |
+
.block-compare button.button:hover span span,
|
102 |
+
.block-poll button.button:hover span span,
|
103 |
+
.block-login .actions button.button:hover span span,
|
104 |
+
.product-view .box-tags .form-add button.button:hover span span,
|
105 |
+
.multiple-checkout .title-buttons button.button:hover span span,
|
106 |
+
#multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
|
107 |
+
|
108 |
+
.block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
|
109 |
+
.block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
|
110 |
+
|
111 |
+
.block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
|
112 |
+
.block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
|
113 |
+
|
114 |
+
button.btn-checkout span span{padding:0 16px}
|
115 |
+
/****************************End Buttons***************************/
|
116 |
+
.footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
|
117 |
+
.footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
|
118 |
+
|
119 |
+
|
120 |
+
/********** < Navigation */
|
121 |
+
#nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
|
122 |
+
|
123 |
+
/* All Levels */ /* Style consistent throughout all nav levels */
|
124 |
+
#nav li { position:relative; text-align:left; }
|
125 |
+
#nav li.over { z-index:998; }
|
126 |
+
#nav a,
|
127 |
+
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
128 |
+
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
129 |
+
#nav li ul span {white-space:normal; }
|
130 |
+
|
131 |
+
/* 0 Level */
|
132 |
+
#nav li { float:left; }
|
133 |
+
#nav a{float:left; color:#FFF; font-weight:bold}
|
134 |
+
#nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
|
135 |
+
#nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
|
136 |
+
/*#nav li.first span{padding-left:18px}*/
|
137 |
+
#nav li.over a,
|
138 |
+
#nav a:hover{color:#fff}
|
139 |
+
|
140 |
+
/* 1st Level */
|
141 |
+
#nav ul li,
|
142 |
+
#nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
|
143 |
+
#nav li.active li a,
|
144 |
+
#nav ul li.active a{background:#fff}
|
145 |
+
/*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
|
146 |
+
*/
|
147 |
+
#nav ul li.last { background:#ecf3f6; padding-bottom:0; }
|
148 |
+
|
149 |
+
#nav ul a,
|
150 |
+
#nav ul a:hover { float:none; padding:0; background:none; }
|
151 |
+
#nav ul li a { font-weight:normal !important; }
|
152 |
+
|
153 |
+
/* 2nd Level */
|
154 |
+
#nav ul,
|
155 |
+
#nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
|
156 |
+
#nav div ul { position:static; width:auto; border:none; }
|
157 |
+
#nav ul span {background:none}
|
158 |
+
|
159 |
+
/* 3rd+ Level */
|
160 |
+
#nav ul ul,
|
161 |
+
#nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
|
162 |
+
|
163 |
+
#nav ul li a {background:#fff}
|
164 |
+
#nav ul li a:hover {background:#f4f4f4}
|
165 |
+
#nav ul li.over > a {background:#f4f4f4}
|
166 |
+
#nav ul li a,
|
167 |
+
#nav ul li a:hover {color:#2f2f2f !important}
|
168 |
+
#nav ul span,
|
169 |
+
#nav ul li.last li span {padding:4px 15px 5px 15px}
|
170 |
+
|
171 |
+
/* Show menu */
|
172 |
+
#nav li ul.shown-sub,
|
173 |
+
#nav li div.shown-sub { left:-1px; z-index:999; }
|
174 |
+
#nav li .shown-sub ul.shown-sub,
|
175 |
+
#nav li .shown-sub li div.shown-sub { left:100px; }
|
176 |
+
/********** Navigation > */
|
177 |
+
/* ======================================================================================= */
|
178 |
+
|
179 |
+
.cms-home .nav-home a,
|
180 |
+
.contacts-index-index .nav-contacts a,
|
181 |
+
.cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
|
182 |
+
.cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
|
183 |
+
|
184 |
+
.f-right{float:right}
|
185 |
+
.f-left{float:left}
|
186 |
+
.a-right{text-align:right}
|
187 |
+
.a-left{text-align:left}
|
188 |
+
.a-center{text-align:center}
|
189 |
+
|
190 |
+
.header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
|
191 |
+
|
192 |
+
.header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
|
193 |
+
.header-cart .head{margin:0; overflow:hidden; cursor:pointer}
|
194 |
+
.header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#FFF; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
|
195 |
+
.header-cart .title a{color:#fff}
|
196 |
+
.header .form-language label { color:#FFF;}
|
197 |
+
.header-cart .content{background:#fdfbea; padding:0}
|
198 |
+
.header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
|
199 |
+
.header-cart .content li a:hover{color:#333}
|
200 |
+
.header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
|
201 |
+
.header-cart .title a{color:#fff}
|
202 |
+
|
203 |
+
.slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
|
204 |
+
|
205 |
+
#nav-sidebox{font-size:1.1em}
|
206 |
+
#nav-sidebox a{text-decoration:none; color:#000}
|
207 |
+
#nav-sidebox a:hover{text-decoration:underline}
|
208 |
+
#nav-sidebox li{line-height:22px; font-weight:bold}
|
209 |
+
#nav-sidebox li ul li{font-weight:normal; margin:0}
|
210 |
+
#nav-sidebox ul{}
|
211 |
+
#nav-sidebox ul li{padding-left:10px}
|
212 |
+
#nav-sidebox ul li ul{display:none}
|
213 |
+
|
214 |
+
.featured-container{margin-bottom:20px}
|
215 |
+
.featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
|
216 |
+
.featured-top{background:url(../images/container.png) no-repeat -1957px 0}
|
217 |
+
|
218 |
+
.mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
|
219 |
+
.mini-newsletter label{color:#fff}
|
220 |
+
.mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
|
221 |
+
.mini-newsletter .input-text{border:none; padding:4px 2px}
|
222 |
+
.mini-newsletter .form-button-alt{background-position:100% -256px}
|
223 |
+
.mini-newsletter .form-button-alt span{background-position:0 -228px}
|
224 |
+
.mini-newsletter .form-button-alt:hover{background-position:100% -314px}
|
225 |
+
.mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
|
226 |
+
.mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
|
227 |
+
|
228 |
+
.recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
|
229 |
+
|
230 |
+
.recently .last{border-bottom:0px solid #FFF}
|
231 |
+
.recently .subtitle{color:#007ed3; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
|
232 |
+
.recently li.item{width:167px; float:left; padding:10px 10px 40px;}
|
233 |
+
.recently li.item .price-box{}
|
234 |
+
.recently li.item .actions { position: absolute; bottom: 12px; }
|
235 |
+
|
236 |
+
.category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
|
237 |
+
.product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
|
238 |
+
h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
|
239 |
+
a.product-name:hover { text-decoration: underline; }
|
240 |
+
|
241 |
+
.regular-price .price{color:#777; font-size:13px; font-weight:bold}
|
242 |
+
|
243 |
+
.footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
|
244 |
+
.footer .informational li{float:left; margin:0 40px; display: inline;}
|
245 |
+
.footer .informational li ul li{float:none; margin:0; display: block;}
|
246 |
+
.footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#FFF; font-size:0.9em}
|
247 |
+
.footer .informational li ul li a:hover { text-decoration: underline; }
|
248 |
+
.footer .informational h6{margin-bottom:0.4em; color:#FFF; font-size:1.1em}
|
249 |
+
|
250 |
+
.footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #ccbb02; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
|
251 |
+
|
252 |
+
.footer .payments{float:right; margin:5px 0 0}
|
253 |
+
.footer .legality{text-align:center; color:#FFF; font-size: .9em}
|
254 |
+
.footer .legality a{color:#fff9b4; text-decoration: none;}
|
255 |
+
|
256 |
+
/* glider */
|
257 |
+
#slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
|
258 |
+
div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
|
259 |
+
div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
|
260 |
+
div.scroller img{ border:none}
|
261 |
+
div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
|
262 |
+
div.scroller div.content{ width:10000px; padding:0px}
|
263 |
+
.content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
|
264 |
+
|
265 |
+
.content .sliderdescription p{line-height:20px; text-align:center}
|
266 |
+
div.sliderdescription:hover{background:#fff}
|
267 |
+
.content a{text-decoration:none; color:#5a5a5a}
|
268 |
+
.content a:hover{text-decoration:underline}
|
269 |
+
|
270 |
+
.slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
|
271 |
+
.slidercontrol{list-style:none; padding:0px; margin:0px}
|
272 |
+
|
273 |
+
.slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
|
274 |
+
|
275 |
+
.slidercontrol a:hover,
|
276 |
+
.slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
|
277 |
+
|
278 |
+
/* slider */
|
279 |
+
.featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
|
280 |
+
.featured-products h4{margin-right:10px; color:#007ed3; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
|
281 |
+
.featured-products .head{text-align:left; margin:0; padding:21px 0}
|
282 |
+
.featured-products #move-left,
|
283 |
+
.featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
|
284 |
+
.featured-products #move-right{background-position:-335px -450px; right:940px !important; }
|
285 |
+
.featured-products #move-left.disabled,
|
286 |
+
.featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
|
287 |
+
.slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
|
288 |
+
.slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
|
289 |
+
.slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
|
290 |
+
.slider-wrapper .list-featured li.last{ margin:0px}
|
291 |
+
.slider-wrapper .list-featured .product-image{ text-align:center}
|
292 |
+
.slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
|
293 |
+
.slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
|
294 |
+
|
295 |
+
#quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
|
296 |
+
#quick-window .product-img-box{width:230px; float:left}
|
297 |
+
#quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
|
298 |
+
#quickview-header{background-color:#888; height:26px; width:650px}
|
299 |
+
|
300 |
+
#ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
|
301 |
+
#ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
|
302 |
+
#quick-window .product-shop{float:right; text-align:left; width:385px}
|
303 |
+
#quick-window .product-essential{padding:25px 10px 25px 10px}
|
304 |
+
.catalog-listing .product-image{position:relative}
|
305 |
+
.catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
|
306 |
+
|
307 |
+
a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:0px 10px}
|
308 |
+
a.ajax:hover{text-decoration:none}
|
309 |
+
|
310 |
+
|
311 |
+
/****Update styles ****/
|
312 |
+
|
313 |
+
.footer li {background: none; display: block; padding: 0;}
|
314 |
+
|
315 |
+
.product-collateral { background: #faf7ee; }
|
skin/frontend/default/f001_yellow/css/ie8.css
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
-
.form-button:hover { background-position: 100% -84px; }
|
3 |
-
.form-button-alt { background-position: 100% -142px; }
|
4 |
-
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
-
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
-
.form-button:hover span { background-position: 0 -56px; }
|
7 |
-
.form-button-alt span { background-position: 0 -113px; }
|
8 |
-
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
-
|
10 |
-
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
-
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
-
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
-
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
-
|
15 |
-
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
-
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
1 |
+
.form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
|
2 |
+
.form-button:hover { background-position: 100% -84px; }
|
3 |
+
.form-button-alt { background-position: 100% -142px; }
|
4 |
+
.form-button-alt:hover { background-position: 100% -200px; }
|
5 |
+
.form-button span, .form-button-alt span { background-position: 0 0; }
|
6 |
+
.form-button:hover span { background-position: 0 -56px; }
|
7 |
+
.form-button-alt span { background-position: 0 -113px; }
|
8 |
+
.form-button-alt:hover span { background-position: 0 -171px; }
|
9 |
+
|
10 |
+
.mini-newsletter .form-button-alt { background-position: 100% -256px; }
|
11 |
+
.mini-newsletter .form-button-alt span { background-position: 0 -227px; }
|
12 |
+
.mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
|
13 |
+
.mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
|
14 |
+
|
15 |
+
/*Search Autocomplete Misplase fix for IE8*/
|
16 |
+
#search_autocomplete { left: 25px !important; top: 27px !important;}
|
skin/frontend/default/f001_yellow/js/slider.js
CHANGED
@@ -1,89 +1,89 @@
|
|
1 |
-
var Slider = Class.create();
|
2 |
-
Slider.prototype = {
|
3 |
-
options: {
|
4 |
-
shift: 900
|
5 |
-
},
|
6 |
-
|
7 |
-
initialize: function(container, controlLeft, controlRight){
|
8 |
-
this.animating = false;
|
9 |
-
this.containerSize = {
|
10 |
-
width: $(container).offsetWidth,
|
11 |
-
height: $(container).offsetHeight
|
12 |
-
},
|
13 |
-
this.content = $(container).down();
|
14 |
-
this.controlLeft = $(controlLeft);
|
15 |
-
this.controlRight = $(controlRight);
|
16 |
-
|
17 |
-
this.initControls();
|
18 |
-
},
|
19 |
-
|
20 |
-
initControls: function(){
|
21 |
-
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
-
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
-
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
-
this.updateControls(1, 0);
|
25 |
-
},
|
26 |
-
|
27 |
-
shiftRight: function(){
|
28 |
-
if (this.animating)
|
29 |
-
return;
|
30 |
-
|
31 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
-
|
33 |
-
if ((left + this.options.shift) < 0) {
|
34 |
-
var shift = this.options.shift;
|
35 |
-
this.updateControls(1, 1);
|
36 |
-
} else {
|
37 |
-
var shift = Math.abs(left);
|
38 |
-
this.updateControls(1, 0);
|
39 |
-
}
|
40 |
-
this.moveTo(shift);
|
41 |
-
},
|
42 |
-
|
43 |
-
shiftLeft: function(){
|
44 |
-
if (this.animating)
|
45 |
-
return;
|
46 |
-
|
47 |
-
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
-
|
49 |
-
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
-
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
-
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
-
|
53 |
-
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
-
var shift = this.options.shift;
|
55 |
-
this.updateControls(1, 1);
|
56 |
-
} else {
|
57 |
-
var shift = contentWidth + left - this.containerSize.width;
|
58 |
-
this.updateControls(0, 1);
|
59 |
-
}
|
60 |
-
this.moveTo(-shift);
|
61 |
-
},
|
62 |
-
|
63 |
-
moveTo: function(shift){
|
64 |
-
var scope = this;
|
65 |
-
|
66 |
-
this.animating = true;
|
67 |
-
|
68 |
-
new Effect.Move(this.content, {
|
69 |
-
x: shift,
|
70 |
-
duration: 0.4,
|
71 |
-
delay: 0,
|
72 |
-
afterFinish: function(){
|
73 |
-
scope.animating = false;
|
74 |
-
}
|
75 |
-
});
|
76 |
-
},
|
77 |
-
|
78 |
-
updateControls: function(left, right){
|
79 |
-
if (!left)
|
80 |
-
this.controlLeft.addClassName('disabled');
|
81 |
-
else
|
82 |
-
this.controlLeft.removeClassName('disabled');
|
83 |
-
|
84 |
-
if (!right)
|
85 |
-
this.controlRight.addClassName('disabled');
|
86 |
-
else
|
87 |
-
this.controlRight.removeClassName('disabled');
|
88 |
-
}
|
89 |
-
}
|
1 |
+
var Slider = Class.create();
|
2 |
+
Slider.prototype = {
|
3 |
+
options: {
|
4 |
+
shift: 900
|
5 |
+
},
|
6 |
+
|
7 |
+
initialize: function(container, controlLeft, controlRight){
|
8 |
+
this.animating = false;
|
9 |
+
this.containerSize = {
|
10 |
+
width: $(container).offsetWidth,
|
11 |
+
height: $(container).offsetHeight
|
12 |
+
},
|
13 |
+
this.content = $(container).down();
|
14 |
+
this.controlLeft = $(controlLeft);
|
15 |
+
this.controlRight = $(controlRight);
|
16 |
+
|
17 |
+
this.initControls();
|
18 |
+
},
|
19 |
+
|
20 |
+
initControls: function(){
|
21 |
+
this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
|
22 |
+
Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
|
23 |
+
Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
|
24 |
+
this.updateControls(1, 0);
|
25 |
+
},
|
26 |
+
|
27 |
+
shiftRight: function(){
|
28 |
+
if (this.animating)
|
29 |
+
return;
|
30 |
+
|
31 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
32 |
+
|
33 |
+
if ((left + this.options.shift) < 0) {
|
34 |
+
var shift = this.options.shift;
|
35 |
+
this.updateControls(1, 1);
|
36 |
+
} else {
|
37 |
+
var shift = Math.abs(left);
|
38 |
+
this.updateControls(1, 0);
|
39 |
+
}
|
40 |
+
this.moveTo(shift);
|
41 |
+
},
|
42 |
+
|
43 |
+
shiftLeft: function(){
|
44 |
+
if (this.animating)
|
45 |
+
return;
|
46 |
+
|
47 |
+
var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
|
48 |
+
|
49 |
+
var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
|
50 |
+
var lastItemWidth = this.content.childElements().last().getWidth();
|
51 |
+
var contentWidth = lastItemLeft + lastItemWidth + 8;
|
52 |
+
|
53 |
+
if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
|
54 |
+
var shift = this.options.shift;
|
55 |
+
this.updateControls(1, 1);
|
56 |
+
} else {
|
57 |
+
var shift = contentWidth + left - this.containerSize.width;
|
58 |
+
this.updateControls(0, 1);
|
59 |
+
}
|
60 |
+
this.moveTo(-shift);
|
61 |
+
},
|
62 |
+
|
63 |
+
moveTo: function(shift){
|
64 |
+
var scope = this;
|
65 |
+
|
66 |
+
this.animating = true;
|
67 |
+
|
68 |
+
new Effect.Move(this.content, {
|
69 |
+
x: shift,
|
70 |
+
duration: 0.4,
|
71 |
+
delay: 0,
|
72 |
+
afterFinish: function(){
|
73 |
+
scope.animating = false;
|
74 |
+
}
|
75 |
+
});
|
76 |
+
},
|
77 |
+
|
78 |
+
updateControls: function(left, right){
|
79 |
+
if (!left)
|
80 |
+
this.controlLeft.addClassName('disabled');
|
81 |
+
else
|
82 |
+
this.controlLeft.removeClassName('disabled');
|
83 |
+
|
84 |
+
if (!right)
|
85 |
+
this.controlRight.addClassName('disabled');
|
86 |
+
else
|
87 |
+
this.controlRight.removeClassName('disabled');
|
88 |
+
}
|
89 |
+
}
|