JScriptz_MegaMenu2 - Version 1.8.1.4

Version Notes

This is a mega nav extension that allows you to control your top menu links and the content below them through the admin interface. It supports HTML, Video, Tabbed Jquery, and even has a nifty contact us form.

Download this release

Release Info

Developer Jason Lotzer
Extension JScriptz_MegaMenu2
Version 1.8.1.4
Comparing to
See all releases


Code changes from version 1.8.1.3 to 1.8.1.4

app/code/community/JScriptz/MegaMenu2/data/jscriptz_megamenu2_setup/data-install-0.0.1.php CHANGED
@@ -271,3 +271,7 @@ Mage::getModel('megamenu2/menuitem_menusetting')->load(13)
271
  ->setMenusettingId(1)
272
  ->setPosition(2)
273
  ->save();
 
 
 
 
271
  ->setMenusettingId(1)
272
  ->setPosition(2)
273
  ->save();
274
+ $session = $adminuser = Mage::getSingleton('admin/session');
275
+ /* @var $adminuser Mage_Admin_Model_User */
276
+ $adminuser = $session->getUser();
277
+ $adminuser->setReloadAclFlag(true);
app/code/community/JScriptz/MegaMenu2/etc/config.xml CHANGED
@@ -19,7 +19,7 @@
19
  <config>
20
  <modules>
21
  <JScriptz_MegaMenu2>
22
- <version>1.8.1.3</version>
23
  </JScriptz_MegaMenu2>
24
  </modules>
25
  <global>
19
  <config>
20
  <modules>
21
  <JScriptz_MegaMenu2>
22
+ <version>1.8.1.4</version>
23
  </JScriptz_MegaMenu2>
24
  </modules>
25
  <global>
app/design/frontend/base/default/template/jscriptz/html/topmenu.phtml CHANGED
@@ -1,290 +1,299 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Top menu for store
30
- *
31
- * @see JScriptz_MegaMenu2_Block_Html_Topmenu extends Mage_Page_Block_Html_Topmenu
32
- */
33
- ?>
34
- <?php
35
- $z=0;
36
- $_menu = $this->getHtml('level-top');
37
- $_menuItem = $this->getMenuItem();
38
- $menuDisabled = $this->isMenuDisabled();
39
- $menuItemSettings = $this->getMenuItemSettings();
40
- $store = $this->helper('core')->getStoreId();
41
-
42
- ?>
43
-
44
- <?php if($menuDisabled == true): ?>
45
- <div class="nav-container">
46
- <ul id="nav">
47
- <?php echo $_menu ?>
48
- </ul>
49
- </div>
50
- <?php else: ?>
51
- <script>
52
- $.noConflict();
53
- jQuery( document ).ready(function( $ ) {
54
- jQuery('#mgmenu1').universalMegaMenu({
55
- menu_effect: 'hover_fade',
56
- menu_speed_show: 300,
57
- menu_speed_hide: 200,
58
- menu_speed_delay: 200,
59
- menu_click_outside: false,
60
- menubar_trigger : false,
61
- menubar_hide : false,
62
- menu_responsive: true
63
- });
64
- megaMenuContactForm();
65
- });
66
- </script>
67
-
68
- <div class="mgmenu_container" id="mgmenu1"><!-- Begin Mega Menu Container -->
69
-
70
- <ul class="mgmenu"><!-- Begin Mega Menu -->
71
-
72
-
73
-
74
- <!-- Begin MegaMenu Items -->
75
-
76
- <?php if(!empty($_menuItem)): ?>
77
- <?php foreach($menuItemSettings as $setting){
78
- $storeSetting[] = $setting;
79
- }
80
- ?>
81
- <?php function mySort($a,$b){
82
- if ($a['position'] == $b['position']) {
83
- return 0;
84
- }
85
- return ($a['position'] < $b['position']) ? -1 : 1;
86
- }
87
-
88
- usort($_menuItem, "mySort");
89
-
90
- foreach($_menuItem as $item): ?>
91
- <?php foreach($storeSetting as $set): ?>
92
- <?php if($item['linktitle'] != 'ROOT' && $item['level'] == 1 && $set['menuitem_id'] == $item['entity_id']): ?>
93
-
94
- <?php if($item['linktype'] == 1): ?>
95
- <li style=""><span><i class="mini_icon ic_grid"></i><?php echo $item['linktitle']; ?></span><!-- Begin Products Item -->
96
-
97
- <div class="dropdown_2columns dropdown_container" style="display: none;"><!-- Begin Products Item Container -->
98
- <?php if($_menu): ?>
99
- <ul class="dropdown_flyout">
100
- <li class="mgmenu_button" style="display: none;"><?php echo $item["linktitle"]; ?></li><!-- Button (Mobile Devices) -->
101
- <?php echo $_menu; ?>
102
- </ul>
103
- <?php endif ?>
104
- </div><!-- End Products Item Container -->
105
-
106
- </li><!-- End Products Item -->
107
- <?php endif; ?>
108
- <?php if($item['linktype'] == 0 || $item['linktype'] == 2): ?>
109
-
110
-
111
- <!-- Begin Dropdown Link -->
112
- <li>
113
- <?php if($item['linktype'] == 0): ?>
114
- <?php
115
- $target = ($item['linktarget']) ? 'blank' : 'self';
116
- echo "<a href='".$item['linkpath']."' target='_".$target."' class='".$item["linkclass"]."' title ='".$item["titletag"]."' >".$item["linktitle"]."</a>";
117
- ?>
118
- <?php endif; ?>
119
- <?php if($item['linktype'] == 2): ?>
120
-
121
- <span><?php echo "<a title='".$item['titletag']."' class='".$item['linkclass']."'>".$item["linktitle"]."</a>"; ?></span>
122
-
123
-
124
- <?php echo $item["menuhtml"]; ?>
125
- <?php endif; ?>
126
-
127
-
128
- </li>
129
- <!-- End Dropdown Link -->
130
- <?php endif; ?>
131
-
132
- <?php if($item['linktype'] == 4 && $set['menuitem_id'] == $item['entity_id']): ?>
133
-
134
- <li style="" title="<?php echo $item['titletag']; ?>"><span><i class="mini_icon ic_grid"></i><?php echo $item['linktitle']; ?></span><!-- Begin Products Item -->
135
-
136
- <div class='dropdown_fullwidth mgmenu_tabs' style='display: none;'><!-- Begin Item Container -->
137
-
138
-
139
- <ul class='mgmenu_tabs_nav'>
140
-
141
- <li><a class='current' href='#section1'>Popular Products</a></li>
142
- <li><a href='#section2'>Related Products</a></li>
143
-
144
-
145
- </ul>
146
-
147
- <div class='mgmenu_tabs_panels'><!-- Begin Panels Container -->
148
-
149
- <div class='mgmenu_tabs' id='section1'><!-- Begin Section 1 -->
150
-
151
-
152
- <?php $model = Mage::getModel('megamenu2/menuitem_product')->getProductCollection($item['entity_id']);
153
- if($model){
154
- $ent = $model->getData();
155
- foreach($ent as $ent2){
156
- $prod = Mage::getModel('catalog/product')->loadByAttribute('entity_id',$ent2['entity_id']);
157
- if($prod){
158
- foreach($prod as $p){
159
-
160
- if(!empty($p["name"]) && $p['name'] != 'e'){
161
- echo "<div class='col_3'>
162
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/media/catalog/product".$p['image']."'></a>";
163
- echo nl2br("<p class='img_description'>".$p["name"]." \n Price: $".$p['price']."</p><br /></div>");
164
- }
165
- }
166
- }
167
- }
168
- unset($model);
169
- }
170
- ?>
171
-
172
- </div><!-- End Section 2 -->
173
-
174
- <div class='mgmenu_tabs_hide' id='section2'><!-- Begin Section 2 -->
175
-
176
- <div class='col_3'>
177
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product01@2x.jpg'></a>
178
- <p class='img_description'>Image Description</p>
179
- </div>
180
-
181
- <div class='col_3'>
182
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product02@2x.jpg'></a>
183
- <p class='img_description'>Image Description</p>
184
- </div>
185
-
186
- <div class='col_3'>
187
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product03@2x.jpg'></a>
188
- <p class='img_description'>Image Description</p>
189
- </div>
190
-
191
- <div class='col_3'>
192
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product04@2x.jpg'></a>
193
- <p class='img_description'>Image Description</p>
194
- </div>
195
-
196
- <div class='col_3'>
197
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product05@2x.jpg'></a>
198
- <p class='img_description'>Image Description</p>
199
- </div>
200
-
201
- <div class='col_3'>
202
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product06@2x.jpg'></a>
203
- <p class='img_description'>Image Description</p>
204
- </div>
205
-
206
- <div class='col_3'>
207
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product07@2x.jpg'></a>
208
- <p class='img_description'>Image Description</p>
209
- </div>
210
-
211
- <div class='col_3'>
212
- <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product08@2x.jpg'></a>
213
- <p class='img_description'>Image Description</p>
214
- </div>
215
-
216
- </div><!-- End Section 2 -->
217
-
218
-
219
-
220
- </div><!-- End Panels Container -->
221
-
222
-
223
- </div><!-- End Item Container -->
224
-
225
-
226
- </li><!-- End Item -->
227
-
228
- <?php endif; ?>
229
-
230
- <?php if($item['linktype'] == 3 && $set['menuitem_id'] == $item['entity_id']): ?>
231
- <li class="right_item" style=""><span><i class="mini_icon ic_chat"></i>Contact</span><!-- Begin Item -->
232
-
233
-
234
- <div class="dropdown_container dropdown_4columns dropdown_right" style="display: none;"><!-- Begin Item Container -->
235
-
236
-
237
- <div class="col_12">
238
-
239
- <h4 class="contact">Contact us</h4>
240
- <p></p>
241
-
242
- <div id="contact_form" class="contact_form"><!-- Begin Contact Form -->
243
-
244
- <form action="/contacts/index/post" id="mgmenu_form" method="POST">
245
-
246
- <label for="name">Name<span class="required"> *</span></label><br>
247
- <input type="text" id="name" name="name" class="form_element">
248
-
249
- <label for="email">Email<span class="required"> *</span></label><br>
250
- <input type="text" id="email" name="email" class="form_element">
251
-
252
- <label for="telephone">Telephone</label>
253
- <input name="telephone" id="telephone" title="<?php echo Mage::helper('contacts')->__('Telephone') ?>" value="" class="form_element" type="text" />
254
-
255
- <label for="message">Message<span class="required"> *</span></label><br>
256
- <textarea id="comment" class="form_element" name="comment"></textarea>
257
-
258
- <input type="text" id="hideit" name="hideit" value="" style="display:none !important">
259
- <div class="form_buttons">
260
- <input type="submit" value="Submit" id="submit" class="button">
261
- <input type="reset" value="Reset" id="reset" class="button">
262
- </div>
263
-
264
- </form>
265
-
266
- </div><!-- End Contact Form -->
267
-
268
- </div>
269
-
270
-
271
- </div><!-- End Item Container -->
272
-
273
-
274
- </li><!-- End Item -->
275
- <?php endif; ?>
276
- <?php endif; ?>
277
- <?php endforeach; ?>
278
- <?php endforeach; ?>
279
- <?php endif ?>
280
-
281
-
282
-
283
-
284
-
285
- </ul><!-- End Mega Menu -->
286
-
287
-
288
-
289
- </div>
290
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Top menu for store
30
+ *
31
+ * @see JScriptz_MegaMenu2_Block_Html_Topmenu extends Mage_Page_Block_Html_Topmenu
32
+ */
33
+ ?>
34
+ <?php
35
+ $z=0;
36
+ $_menu = $this->getHtml('level-top');
37
+ $_menuItem = $this->getMenuItem();
38
+ $menuDisabled = $this->isMenuDisabled();
39
+ $menuItemSettings = $this->getMenuItemSettings();
40
+ $store = $this->helper('core')->getStoreId();
41
+
42
+ ?>
43
+
44
+ <?php if($menuDisabled == true): ?>
45
+ <div class="nav-container">
46
+ <ul id="nav">
47
+ <?php echo $_menu ?>
48
+ </ul>
49
+ </div>
50
+ <?php else: ?>
51
+ <script>
52
+ $.noConflict();
53
+ jQuery( document ).ready(function( $ ) {
54
+ jQuery('#mgmenu1').universalMegaMenu({
55
+ menu_effect: 'hover_fade',
56
+ menu_speed_show: 300,
57
+ menu_speed_hide: 200,
58
+ menu_speed_delay: 200,
59
+ menu_click_outside: false,
60
+ menubar_trigger : false,
61
+ menubar_hide : false,
62
+ menu_responsive: true
63
+ });
64
+ megaMenuContactForm();
65
+ });
66
+ </script>
67
+
68
+ <div class="mgmenu_container" id="mgmenu1"><!-- Begin Mega Menu Container -->
69
+
70
+ <ul class="mgmenu"><!-- Begin Mega Menu -->
71
+
72
+
73
+
74
+ <!-- Begin MegaMenu Items -->
75
+
76
+ <?php if(!empty($_menuItem)): ?>
77
+ <?php foreach($menuItemSettings as $setting){
78
+ $storeSetting[] = $setting;
79
+ }
80
+ ?>
81
+ <?php function mySort($a,$b){
82
+ if ($a['position'] == $b['position']) {
83
+ return 0;
84
+ }
85
+ return ($a['position'] < $b['position']) ? -1 : 1;
86
+ }
87
+
88
+ usort($_menuItem, "mySort");
89
+
90
+ foreach($_menuItem as $item): ?>
91
+ <?php foreach($storeSetting as $set): ?>
92
+ <?php if($item['linktitle'] != 'ROOT' && $item['level'] == 1 && $set['menuitem_id'] == $item['entity_id'] && $item['status'] == 1): ?>
93
+
94
+ <?php if($item['linktype'] == 1): ?>
95
+ <li style=""><span><!--<i class="mini_icon ic_grid"></i>--><a class="<?php echo $item['linkclass']; ?>" href="<?php $item['linkpath']; ?>"><?php echo $item['linktitle']; ?></a></span><!-- Begin Products Item -->
96
+
97
+ <div class="dropdown_2columns dropdown_container" style="display: none;"><!-- Begin Products Item Container -->
98
+ <?php if($_menu): ?>
99
+ <ul class="dropdown_flyout">
100
+ <li class="mgmenu_button" style="display: none;"><?php echo $item["linktitle"]; ?></li><!-- Button (Mobile Devices) -->
101
+ <?php echo $_menu; ?>
102
+ </ul>
103
+ <?php endif ?>
104
+ </div><!-- End Products Item Container -->
105
+
106
+ </li><!-- End Products Item -->
107
+ <?php endif; ?>
108
+ <?php if($item['linktype'] == 0 || $item['linktype'] == 2): ?>
109
+
110
+
111
+ <!-- Begin Dropdown Link -->
112
+ <li>
113
+ <?php if($item['linktype'] == 0): ?>
114
+ <?php
115
+ $target = ($item['linktarget']) ? 'blank' : 'self';
116
+ echo "<a href='".$item['linkpath']."' target='_".$target."' class='".$item["linkclass"]."' title ='".$item["titletag"]."' >".$item["linktitle"]."</a>";
117
+ ?>
118
+ <?php endif; ?>
119
+ <?php if($item['linktype'] == 2): ?>
120
+
121
+ <span><?php echo "<a title='".$item['titletag']."' class='".$item['linkclass']."'>".$item["linktitle"]."</a>"; ?></span>
122
+
123
+
124
+ <?php echo $item["menuhtml"]; ?>
125
+ <?php endif; ?>
126
+
127
+
128
+ </li>
129
+ <!-- End Dropdown Link -->
130
+ <?php endif; ?>
131
+
132
+ <?php if($item['linktype'] == 4 && $set['menuitem_id'] == $item['entity_id']): ?>
133
+
134
+ <li style="" title="<?php echo $item['titletag']; ?>"><span><i class="mini_icon ic_grid"></i><?php echo $item['linktitle']; ?></span><!-- Begin Products Item -->
135
+
136
+ <div class='dropdown_fullwidth mgmenu_tabs' style='display: none;'><!-- Begin Item Container -->
137
+
138
+
139
+ <ul class='mgmenu_tabs_nav'>
140
+
141
+ <li><a class='current' href='#section1'>Popular Products</a></li>
142
+ <li><a href='#section2'>Related Products</a></li>
143
+
144
+
145
+ </ul>
146
+
147
+ <div class='mgmenu_tabs_panels'><!-- Begin Panels Container -->
148
+
149
+ <div class='mgmenu_tabs' id='section1'><!-- Begin Section 1 -->
150
+
151
+
152
+ <?php $model = Mage::getModel('megamenu2/menuitem_product')->getProductCollection($item['entity_id']);
153
+ if($model){
154
+ $ent = $model->getData();
155
+
156
+
157
+ foreach($ent as $ent2){
158
+ $prod = Mage::getModel('catalog/product')->loadByAttribute('entity_id',$ent2['entity_id']);
159
+ if($prod){
160
+ foreach($prod as $p){
161
+
162
+ if(!empty($p["name"]) && $p['name'] != 'e'){
163
+ echo "<div class='col_3 featured'>
164
+ <a href='".$p["url_path"]."'><img width='220' height='140' class='inline_img' alt='' src='/media/catalog/product".$p['image']."'></a>";
165
+ echo nl2br("
166
+ <p class='img_description'>
167
+ <a title='".$p["name"]."' href='".$p["url_path"]."'>".$p["name"]."</a>
168
+ </p>
169
+ <p class='featured_price'>
170
+ Price: $".sprintf('%01.2f', $p['price'])."
171
+ </p>
172
+ <br /></div>");
173
+ }
174
+ }
175
+ }
176
+ }
177
+ unset($model);
178
+ }
179
+ ?>
180
+
181
+ </div><!-- End Section 2 -->
182
+
183
+ <div class='mgmenu_tabs_hide' id='section2'><!-- Begin Section 2 -->
184
+
185
+ <div class='col_3'>
186
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product01@2x.jpg'></a>
187
+ <p class='img_description'>Image Description</p>
188
+ </div>
189
+
190
+ <div class='col_3'>
191
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product02@2x.jpg'></a>
192
+ <p class='img_description'>Image Description</p>
193
+ </div>
194
+
195
+ <div class='col_3'>
196
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product03@2x.jpg'></a>
197
+ <p class='img_description'>Image Description</p>
198
+ </div>
199
+
200
+ <div class='col_3'>
201
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product04@2x.jpg'></a>
202
+ <p class='img_description'>Image Description</p>
203
+ </div>
204
+
205
+ <div class='col_3'>
206
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product05@2x.jpg'></a>
207
+ <p class='img_description'>Image Description</p>
208
+ </div>
209
+
210
+ <div class='col_3'>
211
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product06@2x.jpg'></a>
212
+ <p class='img_description'>Image Description</p>
213
+ </div>
214
+
215
+ <div class='col_3'>
216
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product07@2x.jpg'></a>
217
+ <p class='img_description'>Image Description</p>
218
+ </div>
219
+
220
+ <div class='col_3'>
221
+ <a href='#'><img width='220' height='140' class='inline_img' alt='' src='/skin/frontend/base/default/images/jscriptz_megamenu2/product08@2x.jpg'></a>
222
+ <p class='img_description'>Image Description</p>
223
+ </div>
224
+
225
+ </div><!-- End Section 2 -->
226
+
227
+
228
+
229
+ </div><!-- End Panels Container -->
230
+
231
+
232
+ </div><!-- End Item Container -->
233
+
234
+
235
+ </li><!-- End Item -->
236
+
237
+ <?php endif; ?>
238
+
239
+ <?php if($item['linktype'] == 3 && $set['menuitem_id'] == $item['entity_id']): ?>
240
+ <li class="right_item" style=""><span><i class="mini_icon ic_chat"></i>Contact</span><!-- Begin Item -->
241
+
242
+
243
+ <div class="dropdown_container dropdown_4columns dropdown_right" style="display: none;"><!-- Begin Item Container -->
244
+
245
+
246
+ <div class="col_12">
247
+
248
+ <h4 class="contact">Contact us</h4>
249
+ <p></p>
250
+
251
+ <div id="contact_form" class="contact_form"><!-- Begin Contact Form -->
252
+
253
+ <form action="/contacts/index/post" id="mgmenu_form" method="POST">
254
+
255
+ <label for="name">Name<span class="required"> *</span></label><br>
256
+ <input type="text" id="name" name="name" class="form_element">
257
+
258
+ <label for="email">Email<span class="required"> *</span></label><br>
259
+ <input type="text" id="email" name="email" class="form_element">
260
+
261
+ <label for="telephone">Telephone</label>
262
+ <input name="telephone" id="telephone" title="<?php echo Mage::helper('contacts')->__('Telephone') ?>" value="" class="form_element" type="text" />
263
+
264
+ <label for="message">Message<span class="required"> *</span></label><br>
265
+ <textarea id="comment" class="form_element" name="comment"></textarea>
266
+
267
+ <input type="text" id="hideit" name="hideit" value="" style="display:none !important">
268
+ <div class="form_buttons">
269
+ <input type="submit" value="Submit" id="submit" class="button">
270
+ <input type="reset" value="Reset" id="reset" class="button">
271
+ </div>
272
+
273
+ </form>
274
+
275
+ </div><!-- End Contact Form -->
276
+
277
+ </div>
278
+
279
+
280
+ </div><!-- End Item Container -->
281
+
282
+
283
+ </li><!-- End Item -->
284
+ <?php endif; ?>
285
+ <?php endif; ?>
286
+ <?php endforeach; ?>
287
+ <?php endforeach; ?>
288
+ <?php endif ?>
289
+
290
+
291
+
292
+
293
+
294
+ </ul><!-- End Mega Menu -->
295
+
296
+
297
+
298
+ </div>
299
+ <?php endif; ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>JScriptz_MegaMenu2</name>
4
- <version>1.8.1.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>This is a mega nav extension that allows you to control your top menu links and the content below them through the admin interface. It supports HTML, Video, Tabbed Jquery, and even has a nifty contact us form. </description>
11
  <notes>This is a mega nav extension that allows you to control your top menu links and the content below them through the admin interface. It supports HTML, Video, Tabbed Jquery, and even has a nifty contact us form. </notes>
12
  <authors><author><name>Jason Lotzer</name><user>jlotty22</user><email>jasonlotzer@gmail.com</email></author></authors>
13
- <date>2013-11-15</date>
14
- <time>06:16:42</time>
15
- <contents><target name="magecommunity"><dir name="JScriptz"><dir name="MegaMenu2"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Menuitem.php" hash="e2bd922a15f9e3722e2a3c4ee25927fd"/><file name="Menusetting.php" hash="19db0dceef26855ef21bd78083f308bf"/></dir></dir></dir></dir><dir name="Helper"><file name="Wysiwyg.php" hash="f4a101bec7b37f9944eae9689370684d"/></dir><dir name="Menuitem"><file name="Abstract.php" hash="544dae0a11c8de66a7c6ffe57d0eb772"/><dir name="Edit"><file name="Form.php" hash="a7a860fcfddfb8ae2482edc592ff20fe"/><dir name="Tab"><file name="Form.php" hash="750ae3a863e072850145703f7fd65318"/><file name="Menusetting.php" hash="30aa64433e394114fe74ef3396b9236f"/><file name="Product.php" hash="b56c7e3cb152b7182ba08dea451ed8c0"/><file name="Stores.php" hash="8bff88326d87be92ae08e18ded9bb986"/></dir><file name="Tabs.php" hash="13b78e0b9687c4a93f4ee9f25664a82e"/></dir><file name="Edit.php" hash="53c4b8799fc428878c93ba3755a3f742"/><dir name="Helper"><file name="File.php" hash="5b36bea0f832e02725d0b7ecb8ed1070"/></dir><file name="Tree.php" hash="2902a61d2adcfef9bbb1b3a2fd8e87f2"/></dir><file name="Menuitem.php" hash="c79ebb1c09cd2fe0c2d3fe8144f61b06"/><dir name="Menusetting"><dir name="Edit"><file name="Form.php" hash="a69448e661f36d9ea375e98037ad7f4e"/><dir name="Tab"><file name="Form.php" hash="00f79b3660ec3dc512853d067ef02096"/><file name="Menuitem.php" hash="98b9dfbea0404e0a1e35ec44ff670290"/><file name="Product.php" hash="c2c775b987076ed41df4718160841adf"/><file name="Stores.php" hash="875b61d43a2dddee4e5ad3769ab845dc"/></dir><file name="Tabs.php" hash="a1e2561648cec96f1be4ce9fd1675b3d"/></dir><file name="Edit.php" hash="88824815a1ed7e2b085940537313878e"/><file name="Grid.php" hash="a458f730218b18518f08b126b2060e6f"/></dir><file name="Menusetting.php" hash="44b201a704f43f77ddbd2c248c9e8dca"/></dir><dir name="Html"><file name="Topmenu.php" hash="02a723f02c83dfe1e9c9373bd366ecea"/></dir><dir name="Menuitem"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="cf9a03ca751aaf595be5e1d3d9d096e6"/></dir></dir></dir></dir><dir name="Controller"><dir name="Adminhtml"><file name="MegaMenu2.php" hash="77ca9ac3d1c50c17911eba2339c035a9"/></dir></dir><dir name="Helper"><file name="Data.php" hash="4533f8233b792a416c15633a02ef67cf"/><file name="Menuitem.php" hash="86ecb51a9403537463a04685a4835326"/><file name="Menusetting.php" hash="95692e375b8b1bb2215a9d6b56f6a935"/><file name="Product.php" hash="7a4e09d1fd17a29d4041028c33aa8d95"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="45ea1d41d594176902e025d83dc35458"/></dir><dir name="Menuitem"><file name="Menusetting.php" hash="71c8259fa2b93a5a77ef7d2712ff813c"/><file name="Product.php" hash="4566ebbe417967b8f4f5f7e7da6cdebb"/></dir><file name="Menuitem.php" hash="d1ce3f9542c78ebd852ab43379bde217"/><dir name="Menusetting"><file name="Menuitem.php" hash="3f471b1e2d12f4a927c8ab9b2d630095"/><file name="Product.php" hash="569f352e734404ec70daef6bf4ef1a7a"/></dir><file name="Menusetting.php" hash="c716e95e715cafeab96d3315c3c93ad2"/><dir name="Resource"><dir name="Menuitem"><file name="Collection.php" hash="c9e597f713791ad32aefc55a0872749f"/><dir name="Menusetting"><file name="Collection.php" hash="22c49b57bd8286638c2df2e0a26cb261"/></dir><file name="Menusetting.php" hash="23effd90a04cdfe2fcf7a101e50dd637"/><dir name="Product"><file name="Collection.php" hash="ab51ee672f2a2860a4b372aa091265d8"/></dir><file name="Product.php" hash="052426e4629d8f2b277cd7a27ad72205"/><file name="Tree.php" hash="455695c0634713489dbb60b4651e6582"/></dir><file name="Menuitem.php" hash="5034856c86dc072f0979937adda4196f"/><dir name="Menusetting"><file name="Collection.php" hash="f9c136c4a78cea82d3ecf4ad0ce84882"/><dir name="Menuitem"><file name="Collection.php" hash="ff404b85f7b3bca0bf4a26ddac125f1f"/></dir><file name="Menuitem.php" hash="ef66bee098cc58b2416bbbfbc1c42b08"/><dir name="Product"><file name="Collection.php" hash="20b37059480b89b5a3fe11336b881ef4"/></dir><file name="Product.php" hash="031090881509beb8b738595aee1ea47d"/></dir><file name="Menusetting.php" hash="668bea4882c149da910eec49aa4ccf57"/><file name="Setup.php" hash="c6a7c5f548d829f9b2fcb6586d7640a3"/></dir><file name="SystemSettings.php" hash="3471e98e9548a06aae94bc01846bff72"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="MegaMenu2"><dir name="Menuitem"><dir name="Catalog"><file name="ProductController.php" hash="b1a2aac464fe0e11106e49b5e1e019e6"/></dir></dir><file name="MenuitemController.php" hash="e77eb3251fb78ee278e5c22c6517593d"/><dir name="Menusetting"><dir name="Catalog"><file name="ProductController.php" hash="f0f852781e8b910a577bf1a7f244eba2"/></dir></dir><file name="MenusettingController.php" hash="3be2b40143cff833a2044722bc63c4e7"/></dir></dir></dir><dir name="data"><dir name="jscriptz_megamenu2_setup"><file name="data-install-0.0.1.php" hash="d12fff1665f30238edec4dd1960b09b6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e0278dad3ceb7f0a48574f04c09de26c"/><file name="config.xml" hash="6be73ee17cd111c9430592e763efd11c"/><file name="system.xml" hash="6f4990accf9b94b1e76141db9f744e0d"/></dir><dir name="sql"><dir name="jscriptz_megamenu2_setup"><file name="install-0.0.1.php" hash="cad9ff2f986256e1a4c5f6da31ac80bf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="JScriptz_MegaMenu2.xml" hash="35ebf14afac4c63cafb1531bd00ebdc1"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="jscriptz_megamenu2.xml" hash="b53fe6b7dff9d19cac8814dbb2dcd00f"/></dir><dir name="template"><dir name="jscriptz_megamenu2"><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><file name="menuitem.phtml" hash="efdb8e992bf21a54c4c599f6d30097bd"/></dir></dir></dir></dir><dir name="menuitem"><dir name="edit"><file name="form.phtml" hash="30339f175fd3c2de5927d36000093a6b"/></dir><file name="edit.phtml" hash="7e33f666f86b3eecf034b45f2c6ce86a"/><file name="tree.phtml" hash="968cc1808a7be1e9a01f904f352f629b"/></dir><dir name="menusetting"><dir name="edit"><dir name="tab"><file name="menuitem.phtml" hash="c21c0e4865c68957b8b85c71a4580a23"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="jscriptz_megamenu2.xml" hash="80cd1bcd33c5e8c77d7cfa8de0daeed4"/></dir><dir name="template"><dir name="jscriptz"><dir name="html"><file name="topmenu.phtml" hash="975a804bdef6a5ec2710a5f531753642"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="JScriptz"><file name="mgmenu.css" hash="15a93606b4ad0550b65eb98906d25514"/></dir></dir><dir name="js"><dir name="JScriptz"><file name="mgmenu.js" hash="b808a4e75addeeb519f24b1349ed7824"/></dir></dir><dir name="images"><dir name="jscriptz_megamenu2"><file name="Thumbs.db" hash="9bab36cc58b18e803ae6101ef6e34a31"/><file name="add-cart-mini.png" hash="a9f33fd5e6be5695a09ca4afb4d4b47b"/><file name="bg-checkout.png" hash="2a6f733742c6e47c37d7bc2305801930"/><file name="bg-product-tab.png" hash="678ed7222bb8840acb3b67ed4328c9ca"/><file name="bg-search.png" hash="432730c25de66b2651326272b99d2c4c"/><file name="bg-select.png" hash="4db99b517bdf913c4f6fa02328b49673"/><file name="bg-slider.png" hash="cf3f315a748073a991f8f4bb4b88b124"/><file name="cart.png" hash="ad3c077c0ede126538754d863ee6f52b"/><file name="checkbox.png" hash="92c5f3dd56746f7dad9a4e8ed632fa94"/><file name="collapsed.gif" hash="ef74c08289e94b7aae81766fb00d4195"/><file name="collapsed.png" hash="0613450d25c762b6a40c51768b02462d"/><file name="comments-link.png" hash="8ad80cb8806e2d072660831b1cd52122"/><file name="dotted.png" hash="0508c81a969e2b93b24936e14751d3d0"/><file name="expanded.gif" hash="3f5512a54f359343273caf7b3787ee8a"/><file name="expanded.png" hash="f7f28ae897708c78b28ead22c3692bb8"/><file name="glyphicons-halflings-white.png" hash="9bbc6e9602998a385c2ea13df56470fd"/><file name="glyphicons-halflings.png" hash="2516339970d710819585f90773aebe0a"/><file name="home-icon.png" hash="2b7a2e01a66b31ab10a749af8d0ff593"/><dir name="icons"><file name="Thumbs.db" hash="0fa02b97fb79bc05a901c4ca94e963d7"/><file name="mini-icons-white.png" hash="e83d93e748b6eff7e75d8b76fa570159"/></dir><file name="leftArrow.png" hash="109ca46ae5697e64b3a36a91fcdcbf8b"/><file name="line1.gif" hash="65b0c812c8d57ea72b84fc69a077a40a"/><file name="line1.png" hash="4e01064a2c78b8885f65ff7a40f78c02"/><file name="line2.gif" hash="95fc5c58069ece5eb44e198ee53b3fe1"/><file name="line2.png" hash="4e01064a2c78b8885f65ff7a40f78c02"/><file name="loading.gif" hash="e38c1a034a0c8577705e493aa95d6937"/><file name="menu-sidebar-active.png" hash="3033d40078a4b66378b7191f152a7654"/><file name="menu-sidebar.png" hash="c4305a06ab8ffaf0200fd791089e7525"/><file name="mini-icons-white.png" hash="e83d93e748b6eff7e75d8b76fa570159"/><file name="moogaloop.swf" hash="9791b5365fb156913005c3354add9bac"/><file name="page_bg.png" hash="ea2316224d45899c59bc285ba09dd920"/><file name="product01@2x.jpg" hash="707a8ebb46061e668d7e6b5cdcf9a233"/><file name="product02@2x.jpg" hash="b05b4c27c327a98db5bc116e26214948"/><file name="product03@2x.jpg" hash="bf853d2a7f37a421ad023323e339b12b"/><file name="product04@2x.jpg" hash="6a65fe14cc889d4f8effdb436fb3c946"/><file name="product05@2x.jpg" hash="a89c4fb832e7ae1c5f01e615026931b8"/><file name="product06@2x.jpg" hash="269cbd6ee56b42c962aac918905d4f4e"/><file name="product07@2x.jpg" hash="12e0afee056f22209cf58440d7233434"/><file name="product08@2x.jpg" hash="0f9a079770c7f18eeb3e5a34cc716660"/><file name="product09@2x.jpg" hash="7ef8a6b71be1ee7ce29a94983be0d1d5"/><file name="product10@2x.jpg" hash="5aa4dab244dfd6a0af36edf5769b778c"/><file name="product11@2x.jpg" hash="3bd6e862edf08870a8998f10ccc4f52a"/><file name="radio.png" hash="16cc8bc843e38e5ce17653d744c480a7"/><file name="rating-box.png" hash="6ebb6c46b545d8b97c013b2750a98ef5"/><file name="rating.png" hash="7eabd5b17ecec1a4dd9b9ffeb2f2094c"/><file name="rightArrow.png" hash="4b49ad18782e91b345d0298104d86bfc"/><file name="select.png" hash="d905661b016949f1a377491fb4cfd56a"/><file name="separator.png" hash="b0964148cb3bbd9e22ecccbfcc6f0899"/><file name="shadow.png" hash="dbfa3bd02e813a59ea34ef1ac1553932"/><file name="slider-sep.png" hash="ec2f6209e6cf8bd2af3802accd4b0754"/><file name="sort-down.png" hash="0e8844880f3e3c8dfc57ef9891220cae"/><file name="sort-up.png" hash="4828cb352ac273ea730476760bd290b6"/><file name="tab.jpg" hash="b24b12ac429c450a3d93c39def33eab7"/><file name="tab.png" hash="809e564f8c32c53a0f0e74f85b3e7934"/><file name="tab_key.jpg" hash="b24b12ac429c450a3d93c39def33eab7"/><file name="tick.png" hash="1bc3837af70694b07569f005df42e61b"/><file name="toggle.png" hash="a6c443b70fdc9d9cf3576e0f9927a97c"/><file name="up.png" hash="83dd8253ab279bfacfe7eeb05c7ebc9b"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="JScriptz_MegaMenu2.csv" hash="f2c1f74b320597380fbb560a693f3893"/></dir></target><target name="magemedia"><dir name="menuitem"><dir name="file"><dir name="p"><dir name="r"><file name="prod_icon.png" hash="6d31b464f8214b7bdf0307d78d0c02da"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>JScriptz_MegaMenu2</name>
4
+ <version>1.8.1.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
7
  <channel>community</channel>
10
  <description>This is a mega nav extension that allows you to control your top menu links and the content below them through the admin interface. It supports HTML, Video, Tabbed Jquery, and even has a nifty contact us form. </description>
11
  <notes>This is a mega nav extension that allows you to control your top menu links and the content below them through the admin interface. It supports HTML, Video, Tabbed Jquery, and even has a nifty contact us form. </notes>
12
  <authors><author><name>Jason Lotzer</name><user>jlotty22</user><email>jasonlotzer@gmail.com</email></author></authors>
13
+ <date>2013-11-16</date>
14
+ <time>01:28:07</time>
15
+ <contents><target name="magecommunity"><dir name="JScriptz"><dir name="MegaMenu2"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Menuitem.php" hash="e2bd922a15f9e3722e2a3c4ee25927fd"/><file name="Menusetting.php" hash="19db0dceef26855ef21bd78083f308bf"/></dir></dir></dir></dir><dir name="Helper"><file name="Wysiwyg.php" hash="f4a101bec7b37f9944eae9689370684d"/></dir><dir name="Menuitem"><file name="Abstract.php" hash="544dae0a11c8de66a7c6ffe57d0eb772"/><dir name="Edit"><file name="Form.php" hash="a7a860fcfddfb8ae2482edc592ff20fe"/><dir name="Tab"><file name="Form.php" hash="750ae3a863e072850145703f7fd65318"/><file name="Menusetting.php" hash="30aa64433e394114fe74ef3396b9236f"/><file name="Product.php" hash="b56c7e3cb152b7182ba08dea451ed8c0"/><file name="Stores.php" hash="8bff88326d87be92ae08e18ded9bb986"/></dir><file name="Tabs.php" hash="13b78e0b9687c4a93f4ee9f25664a82e"/></dir><file name="Edit.php" hash="53c4b8799fc428878c93ba3755a3f742"/><dir name="Helper"><file name="File.php" hash="5b36bea0f832e02725d0b7ecb8ed1070"/></dir><file name="Tree.php" hash="2902a61d2adcfef9bbb1b3a2fd8e87f2"/></dir><file name="Menuitem.php" hash="c79ebb1c09cd2fe0c2d3fe8144f61b06"/><dir name="Menusetting"><dir name="Edit"><file name="Form.php" hash="a69448e661f36d9ea375e98037ad7f4e"/><dir name="Tab"><file name="Form.php" hash="00f79b3660ec3dc512853d067ef02096"/><file name="Menuitem.php" hash="98b9dfbea0404e0a1e35ec44ff670290"/><file name="Product.php" hash="c2c775b987076ed41df4718160841adf"/><file name="Stores.php" hash="875b61d43a2dddee4e5ad3769ab845dc"/></dir><file name="Tabs.php" hash="a1e2561648cec96f1be4ce9fd1675b3d"/></dir><file name="Edit.php" hash="88824815a1ed7e2b085940537313878e"/><file name="Grid.php" hash="a458f730218b18518f08b126b2060e6f"/></dir><file name="Menusetting.php" hash="44b201a704f43f77ddbd2c248c9e8dca"/></dir><dir name="Html"><file name="Topmenu.php" hash="02a723f02c83dfe1e9c9373bd366ecea"/></dir><dir name="Menuitem"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="cf9a03ca751aaf595be5e1d3d9d096e6"/></dir></dir></dir></dir><dir name="Controller"><dir name="Adminhtml"><file name="MegaMenu2.php" hash="77ca9ac3d1c50c17911eba2339c035a9"/></dir></dir><dir name="Helper"><file name="Data.php" hash="4533f8233b792a416c15633a02ef67cf"/><file name="Menuitem.php" hash="86ecb51a9403537463a04685a4835326"/><file name="Menusetting.php" hash="95692e375b8b1bb2215a9d6b56f6a935"/><file name="Product.php" hash="7a4e09d1fd17a29d4041028c33aa8d95"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="45ea1d41d594176902e025d83dc35458"/></dir><dir name="Menuitem"><file name="Menusetting.php" hash="71c8259fa2b93a5a77ef7d2712ff813c"/><file name="Product.php" hash="4566ebbe417967b8f4f5f7e7da6cdebb"/></dir><file name="Menuitem.php" hash="d1ce3f9542c78ebd852ab43379bde217"/><dir name="Menusetting"><file name="Menuitem.php" hash="3f471b1e2d12f4a927c8ab9b2d630095"/><file name="Product.php" hash="569f352e734404ec70daef6bf4ef1a7a"/></dir><file name="Menusetting.php" hash="c716e95e715cafeab96d3315c3c93ad2"/><dir name="Resource"><dir name="Menuitem"><file name="Collection.php" hash="c9e597f713791ad32aefc55a0872749f"/><dir name="Menusetting"><file name="Collection.php" hash="22c49b57bd8286638c2df2e0a26cb261"/></dir><file name="Menusetting.php" hash="23effd90a04cdfe2fcf7a101e50dd637"/><dir name="Product"><file name="Collection.php" hash="ab51ee672f2a2860a4b372aa091265d8"/></dir><file name="Product.php" hash="052426e4629d8f2b277cd7a27ad72205"/><file name="Tree.php" hash="455695c0634713489dbb60b4651e6582"/></dir><file name="Menuitem.php" hash="5034856c86dc072f0979937adda4196f"/><dir name="Menusetting"><file name="Collection.php" hash="f9c136c4a78cea82d3ecf4ad0ce84882"/><dir name="Menuitem"><file name="Collection.php" hash="ff404b85f7b3bca0bf4a26ddac125f1f"/></dir><file name="Menuitem.php" hash="ef66bee098cc58b2416bbbfbc1c42b08"/><dir name="Product"><file name="Collection.php" hash="20b37059480b89b5a3fe11336b881ef4"/></dir><file name="Product.php" hash="031090881509beb8b738595aee1ea47d"/></dir><file name="Menusetting.php" hash="668bea4882c149da910eec49aa4ccf57"/><file name="Setup.php" hash="c6a7c5f548d829f9b2fcb6586d7640a3"/></dir><file name="SystemSettings.php" hash="3471e98e9548a06aae94bc01846bff72"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="MegaMenu2"><dir name="Menuitem"><dir name="Catalog"><file name="ProductController.php" hash="b1a2aac464fe0e11106e49b5e1e019e6"/></dir></dir><file name="MenuitemController.php" hash="e77eb3251fb78ee278e5c22c6517593d"/><dir name="Menusetting"><dir name="Catalog"><file name="ProductController.php" hash="f0f852781e8b910a577bf1a7f244eba2"/></dir></dir><file name="MenusettingController.php" hash="3be2b40143cff833a2044722bc63c4e7"/></dir></dir></dir><dir name="data"><dir name="jscriptz_megamenu2_setup"><file name="data-install-0.0.1.php" hash="12d868d578f3b91df3e2c575a2662729"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e0278dad3ceb7f0a48574f04c09de26c"/><file name="config.xml" hash="08c0cbb92715bdc86d6c03284742fb6b"/><file name="system.xml" hash="6f4990accf9b94b1e76141db9f744e0d"/></dir><dir name="sql"><dir name="jscriptz_megamenu2_setup"><file name="install-0.0.1.php" hash="cad9ff2f986256e1a4c5f6da31ac80bf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="JScriptz_MegaMenu2.xml" hash="35ebf14afac4c63cafb1531bd00ebdc1"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="jscriptz_megamenu2.xml" hash="b53fe6b7dff9d19cac8814dbb2dcd00f"/></dir><dir name="template"><dir name="jscriptz_megamenu2"><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><file name="menuitem.phtml" hash="efdb8e992bf21a54c4c599f6d30097bd"/></dir></dir></dir></dir><dir name="menuitem"><dir name="edit"><file name="form.phtml" hash="30339f175fd3c2de5927d36000093a6b"/></dir><file name="edit.phtml" hash="7e33f666f86b3eecf034b45f2c6ce86a"/><file name="tree.phtml" hash="968cc1808a7be1e9a01f904f352f629b"/></dir><dir name="menusetting"><dir name="edit"><dir name="tab"><file name="menuitem.phtml" hash="c21c0e4865c68957b8b85c71a4580a23"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="jscriptz_megamenu2.xml" hash="80cd1bcd33c5e8c77d7cfa8de0daeed4"/></dir><dir name="template"><dir name="jscriptz"><dir name="html"><file name="topmenu.phtml" hash="a35f5ea94b66e0236999c46465f57172"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="JScriptz"><file name="mgmenu.css" hash="fb864a221213a187848071f4822b4c4e"/></dir></dir><dir name="js"><dir name="JScriptz"><file name="mgmenu.js" hash="b808a4e75addeeb519f24b1349ed7824"/></dir></dir><dir name="images"><dir name="jscriptz_megamenu2"><file name="Thumbs.db" hash="9bab36cc58b18e803ae6101ef6e34a31"/><file name="add-cart-mini.png" hash="a9f33fd5e6be5695a09ca4afb4d4b47b"/><file name="bg-checkout.png" hash="2a6f733742c6e47c37d7bc2305801930"/><file name="bg-product-tab.png" hash="678ed7222bb8840acb3b67ed4328c9ca"/><file name="bg-search.png" hash="432730c25de66b2651326272b99d2c4c"/><file name="bg-select.png" hash="4db99b517bdf913c4f6fa02328b49673"/><file name="bg-slider.png" hash="cf3f315a748073a991f8f4bb4b88b124"/><file name="cart.png" hash="ad3c077c0ede126538754d863ee6f52b"/><file name="checkbox.png" hash="92c5f3dd56746f7dad9a4e8ed632fa94"/><file name="collapsed.gif" hash="ef74c08289e94b7aae81766fb00d4195"/><file name="collapsed.png" hash="0613450d25c762b6a40c51768b02462d"/><file name="comments-link.png" hash="8ad80cb8806e2d072660831b1cd52122"/><file name="dotted.png" hash="0508c81a969e2b93b24936e14751d3d0"/><file name="expanded.gif" hash="3f5512a54f359343273caf7b3787ee8a"/><file name="expanded.png" hash="f7f28ae897708c78b28ead22c3692bb8"/><file name="glyphicons-halflings-white.png" hash="9bbc6e9602998a385c2ea13df56470fd"/><file name="glyphicons-halflings.png" hash="2516339970d710819585f90773aebe0a"/><file name="home-icon.png" hash="2b7a2e01a66b31ab10a749af8d0ff593"/><dir name="icons"><file name="Thumbs.db" hash="0fa02b97fb79bc05a901c4ca94e963d7"/><file name="mini-icons-white.png" hash="e83d93e748b6eff7e75d8b76fa570159"/></dir><file name="leftArrow.png" hash="109ca46ae5697e64b3a36a91fcdcbf8b"/><file name="line1.gif" hash="65b0c812c8d57ea72b84fc69a077a40a"/><file name="line1.png" hash="4e01064a2c78b8885f65ff7a40f78c02"/><file name="line2.gif" hash="95fc5c58069ece5eb44e198ee53b3fe1"/><file name="line2.png" hash="4e01064a2c78b8885f65ff7a40f78c02"/><file name="loading.gif" hash="e38c1a034a0c8577705e493aa95d6937"/><file name="menu-sidebar-active.png" hash="3033d40078a4b66378b7191f152a7654"/><file name="menu-sidebar.png" hash="c4305a06ab8ffaf0200fd791089e7525"/><file name="mini-icons-white.png" hash="e83d93e748b6eff7e75d8b76fa570159"/><file name="moogaloop.swf" hash="9791b5365fb156913005c3354add9bac"/><file name="page_bg.png" hash="ea2316224d45899c59bc285ba09dd920"/><file name="product01@2x.jpg" hash="707a8ebb46061e668d7e6b5cdcf9a233"/><file name="product02@2x.jpg" hash="b05b4c27c327a98db5bc116e26214948"/><file name="product03@2x.jpg" hash="bf853d2a7f37a421ad023323e339b12b"/><file name="product04@2x.jpg" hash="6a65fe14cc889d4f8effdb436fb3c946"/><file name="product05@2x.jpg" hash="a89c4fb832e7ae1c5f01e615026931b8"/><file name="product06@2x.jpg" hash="269cbd6ee56b42c962aac918905d4f4e"/><file name="product07@2x.jpg" hash="12e0afee056f22209cf58440d7233434"/><file name="product08@2x.jpg" hash="0f9a079770c7f18eeb3e5a34cc716660"/><file name="product09@2x.jpg" hash="7ef8a6b71be1ee7ce29a94983be0d1d5"/><file name="product10@2x.jpg" hash="5aa4dab244dfd6a0af36edf5769b778c"/><file name="product11@2x.jpg" hash="3bd6e862edf08870a8998f10ccc4f52a"/><file name="radio.png" hash="16cc8bc843e38e5ce17653d744c480a7"/><file name="rating-box.png" hash="6ebb6c46b545d8b97c013b2750a98ef5"/><file name="rating.png" hash="7eabd5b17ecec1a4dd9b9ffeb2f2094c"/><file name="rightArrow.png" hash="4b49ad18782e91b345d0298104d86bfc"/><file name="select.png" hash="d905661b016949f1a377491fb4cfd56a"/><file name="separator.png" hash="b0964148cb3bbd9e22ecccbfcc6f0899"/><file name="shadow.png" hash="dbfa3bd02e813a59ea34ef1ac1553932"/><file name="slider-sep.png" hash="ec2f6209e6cf8bd2af3802accd4b0754"/><file name="sort-down.png" hash="0e8844880f3e3c8dfc57ef9891220cae"/><file name="sort-up.png" hash="4828cb352ac273ea730476760bd290b6"/><file name="tab.jpg" hash="b24b12ac429c450a3d93c39def33eab7"/><file name="tab.png" hash="809e564f8c32c53a0f0e74f85b3e7934"/><file name="tab_key.jpg" hash="b24b12ac429c450a3d93c39def33eab7"/><file name="tick.png" hash="1bc3837af70694b07569f005df42e61b"/><file name="toggle.png" hash="a6c443b70fdc9d9cf3576e0f9927a97c"/><file name="up.png" hash="83dd8253ab279bfacfe7eeb05c7ebc9b"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="JScriptz_MegaMenu2.csv" hash="f2c1f74b320597380fbb560a693f3893"/></dir></target><target name="magemedia"><dir name="menuitem"><dir name="file"><dir name="p"><dir name="r"><file name="prod_icon.png" hash="6d31b464f8214b7bdf0307d78d0c02da"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
skin/frontend/base/default/css/JScriptz/mgmenu.css CHANGED
@@ -1,305 +1,306 @@
1
-
2
- @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){body{background:url(/skin/frontend/base/default/images/jscriptz_megamenu2/page_bg@2x.png) repeat}}
3
- .page_wrapper{width:80%;margin:0 auto;max-width:960px}p{font-size:12px;line-height:21px;margin-bottom:18px}
4
- .dummy_content{width:100%;margin:32px auto}
5
- .dummy_content_margin{width:100%;margin:75px auto;*padding-top:60px}
6
- .dummy_content p,.dummy_content_margin p,.dummy_content li,.dummy_content_margin li{color:#666;font-size:12px;line-height:21px;text-shadow:1px 1px 1px #fff}
7
- .dummy_content .pusher,.dummy_content_margin .pusher{width:100%;height:50px}
8
- .dummy_content a,.dummy_content_margin a{color:#888;text-decoration:none}
9
- .dummy_content a:hover,.dummy_content_margin a:hover{color:#999}
10
- .dummy_content ul,.dummy_content_margin ul{list-style:square;line-height:21px}
11
- .dummy_content h1,.dummy_content_margin h1,.dummy_content h2,.dummy_content_margin h2,.dummy_content h3,.dummy_content_margin h3{color:#222;text-shadow:1px 1px 1px #fff}@media only screen and (max-width:980px){.dummy_content,.dummy_content_margin{width:100%}
12
- .dummy_content_margin{margin:32px auto}}
13
-
14
- #mgmenu1{z-index:12;width:950px;text-align:left}
15
- #mgmenu2{margin-top:12px;z-index:11}
16
- .mgmenu_container,
17
- .mgmenu_fixed,
18
- .mgmenu_footer
19
- {width:100%;height:41px;z-index:10;background:#282828;background:-webkit-linear-gradient(top,#282828 0,#1f1f1f 100%);background:-moz-linear-gradient(top,#282828 0,#1f1f1f 100%);background:-o-linear-gradient(top,#282828 0,#1f1f1f 100%);background:-ms-linear-gradient(top,#282828 0,#1f1f1f 100%);background:linear-gradient(top,#282828 0,#1f1f1f 100%)}
20
- .mgmenu_container{position:relative;margin:0 auto}
21
- .mgmenu_fixed,.mgmenu_footer{width:inherit;max-width:inherit;position:fixed;top:0;*width:expression(this.parentNode.currentStyle['width'])}
22
- .mgmenu_footer{top:auto;bottom:0}
23
- .mgmenu{font-family:Arial,Helvetica,sans-serif;font-size:13px;list-style:none;padding:0;margin:0;position:relative;line-height:1;}
24
- .mgmenu>li{float:left;margin:0;padding-right:15px;-webkit-transition:background .3s;-moz-transition:background .3s;-o-transition:background .3s;-ms-transition:background .3s;transition:background .3s}
25
- .mgmenu>li:hover,.mgmenu>li.active{background-color:#131313}
26
- .mgmenu li.noactive{background:0}
27
- .mgmenu>li>a,.mgmenu>li>span{display:block;color:#fff;text-shadow:1px 1px 1px #000;font-size:12px;outline:0;text-decoration:none;padding:15px 0 14px 15px}
28
- .mgmenu>li>span:hover,.mgmenu>li>a:hover,.mgmenu>li>a:focus{cursor:pointer;color:#fff;outline:0}
29
- .mgmenu>li .mgmenu_drop{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow.png");background-repeat:no-repeat;background-position:right 19px;padding-right:20px}
30
- .mgmenu_footer .mgmenu>li .mgmenu_drop{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/upArrow.png")}
31
- .mgmenu>li.right_item{float:right;margin-right:0}
32
- .mgmenu_container>.mgmenu>li.mgmenu_button,
33
- .mgmenu_fixed>.mgmenu>li.mgmenu_button,
34
- .mgmenu_footer>.mgmenu>li.mgmenu_button{display:none;cursor:pointer;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;font-weight:bold;background-color:transparent;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/toggle.png");background-repeat:no-repeat;background-position:96% 10px;line-height:12px;padding:14px 4% 14px 4%;color:#fff;text-shadow:1px 1px 1px #000}
35
- .mgmenu_container>.mgmenu>li.mgmenu_button_active,.mgmenu_fixed>.mgmenu>li.mgmenu_button_active,.mgmenu_footer>.mgmenu>li.mgmenu_button_active{background-color:#000}
36
- .mgmenu_trigger{position:fixed;z-index:2;margin:0 auto;right:0;margin-right:20px;width:35px;height:41px;display:block}
37
- .mgmenu_trigger{top:0;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up.png");background-position:center center;background-repeat:no-repeat;background-color:#121212}
38
- .mgmenu_trigger.active{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down.png")}
39
- .mgmenu_footer ~ .mgmenu_trigger{top:auto;bottom:0;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down.png")}
40
- .mgmenu_footer ~ .mgmenu_trigger.active{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up.png")}
41
- .mgmenu li .dropdown_container,
42
- .mgmenu li .dropdown_fullwidth,
43
- .mgmenu li .mgmenu_multilevel{position:absolute;top:auto;display:none;float:left;zoom:1;z-index:10;margin:0 0 40px -1px;padding:20px 0 6px 0;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 2px 2px rgba(0,0,0,0.05);box-shadow:0 2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;border-top:0;background:#e5e5e5;color:#212121}
44
- .mgmenu li .dropdown_container{left:auto}
45
- .mgmenu li .dropdown_fullwidth{left:0}
46
- .mgmenu li.right_item .dropdown_container{left:auto;right:-1px}
47
- .mgmenu_footer .mgmenu>li .dropdown_container,
48
- .mgmenu_footer .mgmenu>li .dropdown_fullwidth,
49
- .mgmenu_footer .mgmenu>li .mgmenu_multilevel{margin:0 0 0 -1px;top:auto;bottom:0;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;-webkit-box-shadow:0 -2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 -2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 -2px 2px rgba(0,0,0,0.05);box-shadow:0 -2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;border-bottom:0}
50
- .mgmenu>li:hover .dropdown_container,.mgmenu>li:hover .dropdown_fullwidth,.mgmenu>li.right_item:hover .dropdown_container{display:block}
51
- .mgmenu li .dropdown_1column{width:8.3334%;padding-left:2%;padding-right:2%}
52
- .mgmenu li .dropdown_2columns{width:250px;padding-left:1.8333%;padding-right:1.8333%}
53
- .mgmenu li .dropdown_3columns{width:25%;padding-left:1.5%;padding-right:1.5%}
54
- .mgmenu li .dropdown_4columns{width:33.3334%;padding-left:1.333%;padding-right:1.333%}
55
- .mgmenu li .dropdown_5columns{width:41.6667%;padding-left:1.166%;padding-right:1.166%}
56
- .mgmenu li .dropdown_6columns{width:50%;padding-left:1%;padding-right:1%}
57
- .mgmenu li .dropdown_7columns{width:58.3334%;padding-left:.833%;padding-right:.833%}
58
- .mgmenu li .dropdown_8columns{width:66.6667%;padding-left:.666%;padding-right:.666%}
59
- .mgmenu li .dropdown_9columns{width:75%;padding-left:.5%;padding-right:.5%}
60
- .mgmenu li .dropdown_10columns{width:83.3334%;padding-left:.333%;padding-right:.333%}
61
- .mgmenu li .dropdown_11columns{width:91.6667%;padding-left:.1666%;padding-right:.1666%}
62
- .mgmenu li .dropdown_fullwidth{width:100%}
63
- .mgmenu .col_1,.mgmenu .col_2,.mgmenu .col_3,.mgmenu .col_4,.mgmenu .col_5,.mgmenu .col_6,.mgmenu .col_7,.mgmenu .col_8,.mgmenu .col_9,
64
- .mgmenu .col_10,.mgmenu .col_11,.mgmenu .col_12{float:left;display:inline;position:relative;padding-left:2%;padding-right:2%;*padding-left:1.9%;*padding-right:1.9%}
65
- .mgmenu .col_1{width:4.33%}
66
- .mgmenu .col_2{width:12.66%}
67
- .mgmenu .col_3{width:21%}
68
- .mgmenu .col_4{width:29.33%}
69
- .mgmenu .col_5{width:37.66%}
70
- .mgmenu .col_6{width:46%}
71
- .mgmenu .col_7{width:54.33%}
72
- .mgmenu .col_8{width:62.66%}
73
- .mgmenu .col_9{width:71%}
74
- .mgmenu .col_10{width:79.33%}
75
- .mgmenu .col_11{width:87.66%}
76
- .mgmenu .col_12{width:96%}
77
- .mgmenu .clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:18px}
78
- .mgmenu .col_border{-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.15);-moz-box-shadow:-1px 0 0 rgba(0,0,0,0.15);-o-box-shadow:-1px 0 0 rgba(0,0,0,0.15);box-shadow:-1px 0 0 rgba(0,0,0,0.15)}
79
- .mgmenu .dropdown_flyout,.mgmenu .dropdown_flyout .dropdown_flyout_level{padding:0;margin:0;list-style:none;z-index:9;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}
80
- .mgmenu .dropdown_flyout .dropdown_flyout_level{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 2px 2px rgba(0,0,0,0.05);box-shadow:0 2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;background:#e5e5e5}
81
- .mgmenu .dropdown_flyout li{margin-top:-5px;float:left;width:100%;padding:0px 0 3px 0}
82
- .mgmenu .dropdown_flyout ul li{width:250px;padding:3px 0px 3px 0px}
83
- .mgmenu .dropdown_flyout li.last{margin-bottom:12px}
84
- .mgmenu .dropdown_flyout a{display:block;width:10em}
85
- .mgmenu .dropdown_flyout .dropdown_flyout_level{position:absolute;margin:15px 0 0 4px;padding:6px;left:98%;top:-21px;display:none;zoom:1;float:left}
86
- .mgmenu .dropdown_flyout .dropdown_flyout_level_left{left:-102%;right:100%}
87
- .mgmenu .dropdown_flyout .dropdown_parent{background:url("/skin/frontend/base/default/images/jscriptz_megamenu2/rightArrow.png") no-repeat 90% 9px}
88
- .mgmenu .dropdown_flyout .dropdown_parent_left{background:url("/skin/frontend/base/default/images/jscriptz_megamenu2/leftArrow.png") no-repeat 90% 9px}
89
- .mgmenu .dropdown_flyout li:hover>.dropdown_flyout_level,.mgmenu .dropdown_flyout li:hover>.dropdown_flyout_level_left{display:block}
90
- .mgmenu .dropdown_flyout .flyout_heading{font-family:Georgia,Times,"Times New Roman",serif;padding-bottom:9px;margin-bottom:9px;font-size:16px;border-bottom:1px solid #ccc;-webkit-box-shadow:0 1px 1px #f4f4f4;-moz-box-shadow:0 1px 1px #f4f4f4;-o-box-shadow:0 1px 1px #f4f4f4;box-shadow:0 1px 1px #f4f4f4}
91
- .mgmenu p,.mgmenu h1,.mgmenu h2,.mgmenu h3,.mgmenu h4,.mgmenu h5,.mgmenu h6{padding:0;margin:0;font-weight:normal;color:#222;text-shadow:1px 1px 1px #fff;margin-bottom:18px}
92
- .mgmenu h1,.mgmenu h2,.mgmenu h3,.mgmenu h4,.mgmenu h5,.mgmenu h6{font-family:Georgia,Times,"Times New Roman",serif}
93
- .mgmenu p{font-size:12px}
94
- .mgmenu h1{font-size:32px}
95
- .mgmenu h2{font-size:28px}
96
- .mgmenu h3{font-size:24px}
97
- .mgmenu h4{font-size:18px}
98
- .mgmenu h5{font-size:16px}
99
- .mgmenu h6{font-size:14px;text-transform:uppercase}
100
- .mgmenu a{text-decoration:none;color:#222;-webkit-transition:color .3s;-moz-transition:color .3s;-o-transition:color .3s;-ms-transition:color .3s;transition:color .3s}
101
- .mgmenu a:hover{color:#777}
102
- .mgmenu a:focus{background:0}
103
- .mgmenu>li ul,.mgmenu>li ol{padding:0 0 0 18px;margin:0 0 18px 0}
104
- .mgmenu>li ul{list-style:square}
105
- .mgmenu>li ol{list-style:decimal}
106
- .mgmenu>li ul.no_bullets{list-style:none;padding:0}
107
- .mgmenu>li ul.no_bullets li{line-height:24px}
108
- .mgmenu>li ul li,.mgmenu>li ol li{font-size:12px;line-height:22px;position:relative;color:#222;text-shadow:1px 1px 1px #fff}
109
- .mgmenu blockquote{color:#aaa;border-left:5px solid #ccc;padding-left:20px;font-family:Georgia,serif;font-style:italic;font-size:18px;line-height:27px}
110
- .mgmenu .text_box{width:84%;background:#fff;padding:12px 8% 12px 8%;-webkit-box-shadow:0 1px 1px #bbb;-moz-box-shadow:0 1px 1px #bbb;-o-box-shadow:0 1px 1px #bbb;box-shadow:0 1px 1px #bbb}
111
- .mgmenu .text_box_black{background:#212121}
112
- .mgmenu .text_box_red{background:#e48a76}
113
- .mgmenu .text_box_blue{background:#92bfd1}
114
- .mgmenu .text_box_green{background:#b4ca91}
115
- .mgmenu .text_box_yellow{background:#f3d067}
116
- .mgmenu .text_box_purple{background:#c0addb}
117
- .mgmenu .text_box_brown{background:#b2aa9f}
118
- .mgmenu .text_box_black,.mgmenu .text_box_red,.mgmenu .text_box_blue,.mgmenu .text_box_green,.mgmenu .text_box_yellow,.mgmenu .text_box_purple,.mgmenu .text_box_brown{color:#fff;text-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none;box-shadow:none}
119
- .mgmenu .img_description{text-align:center;font-style:italic;margin-top:-6px;font-family:Georgia,Times,"Times New Roman",serif}
120
- .mgmenu hr{width:100%;height:0;*height:2px;margin-bottom:18px;border:0;border-bottom:1px solid #f4f4f4;border-top:1px solid #ccc}
121
- .mgmenu .video_container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden;margin-bottom:18px}
122
- .mgmenu .video_container iframe,.mgmenu .video_container object,.mgmenu .video_container embed{position:absolute;top:0;left:0;width:100%;height:100%;border:0;outline:0}
123
- .mgmenu iframe{border:0;outline:0;width:100%;font-size:100%;vertical-align:baseline;background:transparent;margin-bottom:12px}
124
- .mgmenu img{border:0}
125
- .mgmenu .inline_img{max-width:100%;height:auto;width:auto\9;box-sizing:border-box;-webkit-box-shadow:0 1px 1px #999;-moz-box-shadow:0 1px 1px #999;-o-box-shadow:0 1px 1px #999;box-shadow:0 1px 1px #999;margin-bottom:18px;margin-top:6px}
126
- .mgmenu a .inline_img{opacity:.8;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-o-transition:opacity .3s;-ms-transition:opacity .3s;transition:opacity .3s}
127
- .mgmenu a:hover .inline_img{opacity:1}
128
- .mgmenu .inline_img_border{border:5px solid #fff}
129
- .mgmenu .mini_icon{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/mini-icons-white.png");background-repeat:no-repeat;margin-top:-2px;padding-left:6px;float:left;width:20px;height:20px}
130
- .mgmenu .ic_empty_document{background-position:0 0}
131
- .mgmenu .ic_documents{background-position:-32px 0}
132
- .mgmenu .ic_text_document{background-position:-64px 0}
133
- .mgmenu .ic_folder{background-position:-96px 0}
134
- .mgmenu .ic_picture{background-position:-128px 0}
135
- .mgmenu .ic_cloud{background-position:-160px 0}
136
- .mgmenu .ic_archive{background-position:-192px 0}
137
- .mgmenu .ic_download{background-position:-224px 0}
138
- .mgmenu .ic_user{background-position:-256px 0}
139
- .mgmenu .ic_tag{background-position:-288px 0}
140
- .mgmenu .ic_lock{background-position:0 -32px}
141
- .mgmenu .ic_unlock{background-position:-32px -32px}
142
- .mgmenu .ic_mail{background-position:-64px -32px}
143
- .mgmenu .ic_brush{background-position:-96px -32px}
144
- .mgmenu .ic_refresh{background-position:-128px -32px}
145
- .mgmenu .ic_grid{background-position:-160px -32px}
146
- .mgmenu .ic_list{background-position:-192px -32px}
147
- .mgmenu .ic_delete{background-position:-224px -32px}
148
- .mgmenu .ic_settings{background-position:-256px -32px}
149
- .mgmenu .ic_time{background-position:-288px -32px}
150
- .mgmenu .ic_bookmark{background-position:0 -64px}
151
- .mgmenu .ic_calendar{background-position:-32px -64px}
152
- .mgmenu .ic_graph{background-position:-64px -64px}
153
- .mgmenu .ic_pin{background-position:-96px -64px}
154
- .mgmenu .ic_chat{background-position:-128px -64px}
155
- .mgmenu .ic_chats{background-position:-160px -64px}
156
- .mgmenu .ic_print{background-position:-192px -64px}
157
- .mgmenu .ic_attachment{background-position:-224px -64px}
158
- .mgmenu .ic_power{background-position:-256px -64px}
159
- .mgmenu .ic_favorite{background-position:-288px -64px}
160
- .mgmenu .ic_sound{background-position:0 -96px}
161
- .mgmenu .ic_edit{background-position:-32px -96px}
162
- .mgmenu .ic_fullscreen{background-position:-64px -96px}
163
- .mgmenu .ic_target{background-position:-96px -96px}
164
- .mgmenu .ic_sync{background-position:-128px -96px}
165
- .mgmenu .ic_zoom{background-position:-160px -96px}
166
- .mgmenu .ic_plus{background-position:-192px -96px}
167
- .mgmenu .ic_minus{background-position:-224px -96px}
168
- .mgmenu .ic_cancel{background-position:-256px -96px}
169
- .mgmenu .ic_ok{background-position:-288px -96px}
170
- .mgmenu .ic_users{background-position:0 -128px}
171
- .mgmenu .ic_calc{background-position:-32px -128px}
172
- .mgmenu .ic_left{background-position:-64px -128px}
173
- .mgmenu .ic_right{background-position:-96px -128px}
174
- .mgmenu .ic_up{background-position:-128px -128px}
175
- .mgmenu .ic_down{background-position:-160px -128px}
176
- .mgmenu .ic_up_circle{background-position:-192px -128px}
177
- .mgmenu .ic_down_circle{background-position:-224px -128px}
178
- .mgmenu .ic_left_circle{background-position:-256px -128px}
179
- .mgmenu .ic_right_circle{background-position:-288px -128px}
180
- .mgmenu .menubar_icon{padding:0;list-style:none;float:left}
181
- .mgmenu .menubar_icon:hover{background:0}
182
- .mgmenu .menubar_icon ul>li{list-style:none;float:left;-webkit-transition:background-color .3s;-moz-transition:background-color .3s;-o-transition:background-color .3s;-ms-transition:background-color .3s;transition:background-color .3s}
183
- .mgmenu .menubar_icon ul>li:hover{background-color:#131313}
184
- .mgmenu .menubar_icon ul>li>a{background-repeat:no-repeat;background-position:center center;background-size:24px 24px;display:block;padding:7px 4px 9px 4px;width:24px;height:24px}
185
- .mgmenu .icon_vimeo{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_vimeo.png")}
186
- .mgmenu .icon_dribbble{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_dribbble.png")}
187
- .mgmenu .icon_twitter{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_twitter.png")}
188
- .mgmenu .icon_facebook{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_facebook.png")}
189
- .mgmenu .icon_flickr{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_flickr.png")}
190
- .mgmenu .contact_form{display:block;margin-bottom:10px}
191
- .mgmenu .contact_form label{font-size:12px;font-family:Arial,Helvetica,sans-serif}
192
- .mgmenu .form_element{color:#000;background-color:#fbfbfb;border:1px solid #ddd;font-family:Arial,Helvetica,sans-serif;font-size:12px;width:96%;padding:9px 2% 9px 2%;margin:12px 0 18px 0;-webkit-box-shadow:0 1px 1px #efefef;-moz-box-shadow:0 1px 1px #efefef;-o-box-shadow:0 1px 1px #efefef;box-shadow:0 1px 1px #efefef;-webkit-transition:background-color .3s ease-out;-moz-transition:background-color .3s ease-out;-o-transition:background-color .3s ease-out;-ms-transition:background-color .3s ease-out;transition:background-color .3s ease-out}
193
- .mgmenu .form_element:hover{background-color:#fcfcfc}
194
- .mgmenu .form_element:focus{background-color:#fff}
195
- .mgmenu .form_element:focus{outline:0}
196
- .mgmenu .contact_form textarea{height:120px;resize:none}
197
- .mgmenu .contact_form .required{color:#C00}
198
- .mgmenu .contact_form .error,.mgmenu .contact_form .success{width:96%;padding:9px 2% 9px 2%;margin:12px 0 6px 0;border:1px solid rgba(0,0,0,0.15);text-shadow:1px 1px 1px #fff;-webkit-box-shadow:0 1px 1px #efefef;-moz-box-shadow:0 1px 1px #efefef;-o-box-shadow:0 1px 1px #efefef;box-shadow:0 1px 1px #efefef}
199
- .mgmenu .contact_form .error{background:#f7cac4;color:#992213}
200
- .mgmenu .contact_form .success{background:#d8f6bc;color:#2f530b;margin-bottom:12px}
201
- .mgmenu .contact_form .button{padding:7px 12px;margin:9px 12px 0 0;white-space:nowrap;font-size:11px;text-transform:uppercase;vertical-align:middle;cursor:pointer;border:1px solid #000;color:#fff;background-color:#222;text-shadow:0 1px 1px #000;-webkit-transition:background-color .3s;-moz-transition:background-color .3s;-o-transition:background-color .3s;-ms-transition:background-color .3s;transition:background-color .3s}
202
- .mgmenu .contact_form .button:hover,.mgmenu .contact_form .button:focus{color:#fff;background-color:#1a1a1a}
203
- .mgmenu .contact_form .select_element{float:left;width:310px;overflow:hidden;position:relative;background-color:#fbfbfb;border:1px solid #ddd;font-family:Arial,Helvetica,sans-serif;font-size:12px;width:100%;margin:12px 0 18px 0;-webkit-box-shadow:0 1px 1px #efefef;-moz-box-shadow:0 1px 1px #efefef;-o-box-shadow:0 1px 1px #efefef;box-shadow:0 1px 1px #efefef}
204
- .mgmenu .contact_form .select_element select{width:100%;height:30px;font-size:12px;color:#999;padding:6px 0 6px 10px;border:0;background:0;outline:0}
205
- .mgmenu .contact_form .select_element select option{background:#fdfdfd;width:100%;color:#666}@media screen and (-webkit-min-device-pixel-ratio:0){.mgmenu .contact_form .select_element:after{content:'';position:absolute;top:50%;right:10px;margin-top:-3px;border:5px solid transparent;border-top:5px solid #333;pointer-events:none}
206
- .mgmenu .contact_form .select_element select,.mgmenu .contact_form .select_element select option{-webkit-appearance:none;appearance:none}}
207
- .mgmenu li>.mgmenu_tabs{padding:0!important}
208
- .mgmenu_tabs>ul{list-style:none;margin:0;padding:0}
209
- .mgmenu_tabs_hide{display:none}
210
- .mgmenu_tabs .mgmenu_tabs_nav{width:20%;float:left;position:relative;margin:0;padding:0}
211
- .mgmenu_tabs .mgmenu_tabs_panels{margin:0;padding:21px 1% 12px 1%;width:78%;*width:77.9%;float:left;background-color:#fff;-webkit-box-shadow:-1px 0 1px rgba(0,0,0,0.05);-moz-box-shadow:-1px 0 1px rgba(0,0,0,0.05);-o-box-shadow:-1px 0 1px rgba(0,0,0,0.05);box-shadow:-1px 0 1px rgba(0,0,0,0.05)}
212
- .mgmenu_tabs .mgmenu_tabs_nav li{list-style:none;margin:0;border:0;margin:0;float:left;width:100%;clear:left;-webkit-transition:background .5s ease;-moz-transition:background .5s ease;-o-transition:background .5s ease;-ms-transition:background .5s ease;transition:background .5s ease}
213
- .mgmenu_tabs .mgmenu_tabs_nav li a{font-size:12px;outline:0;text-decoration:none;display:block;padding:9px 15px 9px 15px}
214
- .mgmenu_tabs li a.current,.mgmenu_tabs li a.current:hover{background-color:#fff;-webkit-box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);-o-box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);top:1px}
215
- .mgmenu_tabs_right .mgmenu_tabs_panels{-webkit-box-shadow:1px 0 1px rgba(0,0,0,0.05);-moz-box-shadow:1px 0 1px rgba(0,0,0,0.05);-o-box-shadow:1px 0 1px rgba(0,0,0,0.05);box-shadow:1px 0 1px rgba(0,0,0,0.05)}
216
- .mgmenu_tabs_top .mgmenu_tabs_nav,.mgmenu_tabs_bottom .mgmenu_tabs_nav{width:100%}
217
- .mgmenu_tabs_top .mgmenu_tabs_panels,.mgmenu_tabs_bottom .mgmenu_tabs_panels{padding:21px 1% 12px 1%;width:98%;*width:97.9%}
218
- .mgmenu_tabs_top .mgmenu_tabs_nav li,.mgmenu_tabs_bottom .mgmenu_tabs_nav li{float:none;width:auto;clear:none;display:inline}
219
- .mgmenu_tabs_top .mgmenu_tabs_nav li a,.mgmenu_tabs_bottom .mgmenu_tabs_nav li a{display:inline;float:left}
220
- .mgmenu_tabs_top li a.current,.mgmenu_tabs_top li a.current:hover,.mgmenu_tabs_bottom li a.current,.mgmenu_tabs_bottom li a.current:hover{-webkit-box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05);-moz-box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05);-o-box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05);box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05)}
221
- .mgmenu_tabs_top .mgmenu_tabs_panels{-webkit-box-shadow:0 -1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 -1px 1px rgba(0,0,0,0.05);-o-box-shadow:0 -1px 1px rgba(0,0,0,0.05);box-shadow:0 -1px 1px rgba(0,0,0,0.05)}
222
- .mgmenu_tabs_bottom .mgmenu_tabs_panels{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.05);-o-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}@media only screen and (min-width:768px) and (max-width:984px){.mgmenu>li{padding-right:10px}
223
- .mgmenu>li>a,.mgmenu>li>span{padding-left:10px}
224
- .mgmenu .mini_icon{padding-left:3px}}@media only screen and (max-width:767px){.mgmenu_container,.mgmenu_fixed,.mgmenu_footer{width:100%;height:auto;margin:0;position:relative;left:auto;top:auto;bottom:auto}
225
- .mgmenu_container .mgmenu>li,.mgmenu_fixed .mgmenu>li,.mgmenu_footer .mgmenu>li{float:none;width:auto;border:0;display:block;padding:0}
226
- .mgmenu>li>span,.mgmenu>li>a{display:block}
227
- .mgmenu>li .mgmenu_drop{background-position:96% 19px}
228
- .mgmenu>li .dropdown_container,.mgmenu>li .dropdown_fullwidth,.mgmenu_footer .mgmenu>li .dropdown_container,.mgmenu_footer .mgmenu>li .dropdown_fullwidth{position:absolute;top:auto;bottom:auto;width:100%;margin:0 0 0 -1px;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 2px 2px rgba(0,0,0,0.05);box-shadow:0 2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;border-top:0}
229
- .mgmenu li .dropdown_1column,.mgmenu li .dropdown_2columns,.mgmenu li .dropdown_3columns,.mgmenu li .dropdown_4columns,.mgmenu li .dropdown_5columns,.mgmenu li .dropdown_6columns,.mgmenu li .dropdown_7columns,.mgmenu li .dropdown_8columns,.mgmenu li .dropdown_9columns,.mgmenu li .dropdown_10columns,.mgmenu li .dropdown_11columns,.mgmenu li .dropdown_fullwidth{width:100%;padding-left:0;padding-right:0}
230
- .mgmenu .col_1,.mgmenu .col_2,.mgmenu .col_3,.mgmenu .col_4,.mgmenu .col_5,.mgmenu .col_6,.mgmenu .col_7,.mgmenu .col_8,.mgmenu .col_9,.mgmenu .col_10,.mgmenu .col_11,.mgmenu .col_12{width:92%;margin-left:4%;margin-right:4%;padding:0;float:left;display:block}
231
- .mgmenu .col_border{box-shadow:none}
232
- .mgmenu .dropdown_flyout,.mgmenu .dropdown_flyout .dropdown_flyout_level,.mgmenu .dropdown_flyout .dropdown_flyout_level_left{position:relative;left:auto;right:auto;top:auto;padding:0;margin:6px 4% 0 4%}
233
- .mgmenu .dropdown_flyout .dropdown_flyout_level{border:0;background:0;box-shadow:none}
234
- .mgmenu .dropdown_flyout li,.mgmenu .dropdown_flyout ul li{width:100%;padding:6px 0 6px 0}
235
- .mgmenu li .dropdown_flyout .dropdown_parent{background:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow-b.png") no-repeat 98% 14px}
236
- .mgmenu li>.mgmenu_tabs{width:100%}
237
- .mgmenu_tabs .mgmenu_tabs_nav{width:100%;float:left;margin:0;padding:0}
238
- .mgmenu_tabs .mgmenu_tabs_panels{padding:21px 0 12px 0;width:100%}
239
- .mgmenu_trigger{display:none}
240
- .mgmenu blockquote{margin-left:12px}
241
- .mgmenu .img_description{text-align:left}
242
- .mgmenu .menubar_icon{z-index:9;float:none!important;padding:0 0 14px 0!important}
243
- .mgmenu .menubar_icon ul{width:100%;padding:0 0 9px 0!important}
244
- .mgmenu .menubar_icon ul>li{padding-left:2%;padding-right:2%}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.mgmenu>li .mgmenu_drop{background-size:9px 5px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow@2x.png")}
245
- .mgmenu_footer .mgmenu>li .mgmenu_drop{background-size:9px 5px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/upArrow@2x.png")}
246
- .mgmenu_container>.mgmenu>li.mgmenu_button,.mgmenu_fixed>.mgmenu>li.mgmenu_button,.mgmenu_footer>.mgmenu>li.mgmenu_button{background-size:24px 24px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/toggle@2x.png")}
247
- .mgmenu_trigger{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up@2x.png")}
248
- .mgmenu_trigger.active{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down@2x.png")}
249
- .mgmenu_footer ~ .mgmenu_trigger{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down@2x.png")}
250
- .mgmenu_footer ~ .mgmenu_trigger.active{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up@2x.png")}
251
- .mgmenu .dropdown_flyout .dropdown_parent{background-size:5px 9px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/rightArrow@2x.png")}
252
- .mgmenu .dropdown_flyout .dropdown_parent_left{background-size:5px 9px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/leftArrow@2x.png")}
253
- .mgmenu .mini_icon{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/mini-icons-white@2x.png");background-repeat:no-repeat;background-size:304px 144px}
254
- .mgmenu .menubar_icon ul>li>a{background-size:24px 24px}
255
- .mgmenu .icon_vimeo{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_vimeo@2x.png")}
256
- .mgmenu .icon_dribbble{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_dribbble@2x.png")}
257
- .mgmenu .icon_twitter{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_twitter@2x.png")}
258
- .mgmenu .icon_facebook{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_facebook@2x.png")}
259
- .mgmenu .icon_flickr{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_flickr@2x.png")}}@media only screen and (max-width:767px) and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.mgmenu li .dropdown_flyout .dropdown_parent{background-size:9px 5px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow-b@2x.png")}}
260
- body{font-family:Arial,Helvetica,sans-serif}
261
- .description{margin:48px auto;width:70%}
262
- .description h2{margin-bottom:48px;text-align:center;text-shadow:1px 1px 1px #fff}
263
- .description p{font-size:12px;line-height:18px;margin-bottom:18px;text-shadow:1px 1px 1px #fff;clear:both}
264
- .dropdown_flyout {}
265
- a.topnav-link {color:#fff}
266
- a.topnav-link:hover {color:#eee}
267
- .dropdown_parent {width:250px}
268
- .mgmenu .dropdown_flyout, .mgmenu .dropdown_flyout .dropdown_flyout_level {width:250px}
269
- .mgmenu .dropdown_flyout a, .mgmenu .dropdown_flyout .dropdown_flyout_level a{width:250px}
270
- .page_wrapper a.demo{
271
- color:#444;
272
- line-height: 24px;
273
- padding-top: 20px;
274
- padding-bottom: 20px;
275
- text-decoration:none;
276
- width:45%;
277
- margin-right:10%;
278
- font-size:16px;
279
- text-align:center;
280
- margin-bottom:36px;
281
- float:left;
282
- display:inline;
283
- border-radius:4px;
284
- box-shadow:0 1px 2px #bbb,inset 0 1px 1px #fafafa;
285
- background:#eee;
286
- background:-webkit-linear-gradient(top,#eee 0,#e8e8e8);
287
- background:-moz-linear-gradient(top,#eee 0,#e8e8e8);
288
- background:-o-linear-gradient(top,#eee 0,#e8e8e8);
289
- background:-ms-linear-gradient(top,#eee 0,#e8e8e8);
290
- background:linear-gradient(top,#eee 0,#e8e8e8)
291
- }
292
- .page_wrapper a.second{margin-right:0}
293
- @media only screen and (min-width:320px) and (max-width:767px){.page_wrapper .index{width:100%;margin-right:0}}
294
- .page_wrapper a.demo {
295
- }
296
-
297
- .page_wrapper .small {
298
- line-height: 12px;
299
- font-size: 10px;
300
- padding: 0;
301
- }
302
-
303
- @media only screen and (max-width: 767px) {
304
- .page_wrapper a.demo{width:100%;margin-right: 0;}
 
305
  }
1
+
2
+ @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){body{background:url(/skin/frontend/base/default/images/jscriptz_megamenu2/page_bg@2x.png) repeat}}
3
+ .page_wrapper{width:80%;margin:0 auto;max-width:960px}p{font-size:12px;line-height:21px;margin-bottom:18px}
4
+ .dummy_content{width:100%;margin:32px auto}
5
+ .dummy_content_margin{width:100%;margin:75px auto;*padding-top:60px}
6
+ .dummy_content p,.dummy_content_margin p,.dummy_content li,.dummy_content_margin li{color:#666;font-size:12px;line-height:21px;text-shadow:1px 1px 1px #fff}
7
+ .dummy_content .pusher,.dummy_content_margin .pusher{width:100%;height:50px}
8
+ .dummy_content a,.dummy_content_margin a{color:#888;text-decoration:none}
9
+ .dummy_content a:hover,.dummy_content_margin a:hover{color:#999}
10
+ .dummy_content ul,.dummy_content_margin ul{list-style:square;line-height:21px}
11
+ .dummy_content h1,.dummy_content_margin h1,.dummy_content h2,.dummy_content_margin h2,.dummy_content h3,.dummy_content_margin h3{color:#222;text-shadow:1px 1px 1px #fff}@media only screen and (max-width:980px){.dummy_content,.dummy_content_margin{width:100%}
12
+ .dummy_content_margin{margin:32px auto}}
13
+ .col_3 {text-align:center;}
14
+ .col_3 .featured_price {font-size:14px;font-weight:bold;line-height:.2em}
15
+ #mgmenu1{z-index:12;width:950px;text-align:left}
16
+ #mgmenu2{margin-top:12px;z-index:11}
17
+ .mgmenu_container,
18
+ .mgmenu_fixed,
19
+ .mgmenu_footer
20
+ {width:100%;height:41px;z-index:10;background:#282828;background:-webkit-linear-gradient(top,#282828 0,#1f1f1f 100%);background:-moz-linear-gradient(top,#282828 0,#1f1f1f 100%);background:-o-linear-gradient(top,#282828 0,#1f1f1f 100%);background:-ms-linear-gradient(top,#282828 0,#1f1f1f 100%);background:linear-gradient(top,#282828 0,#1f1f1f 100%)}
21
+ .mgmenu_container{position:relative;margin:0 auto}
22
+ .mgmenu_fixed,.mgmenu_footer{width:inherit;max-width:inherit;position:fixed;top:0;*width:expression(this.parentNode.currentStyle['width'])}
23
+ .mgmenu_footer{top:auto;bottom:0}
24
+ .mgmenu{font-family:Arial,Helvetica,sans-serif;font-size:13px;list-style:none;padding:0;margin:0;position:relative;line-height:1;}
25
+ .mgmenu>li{float:left;margin:0;padding-right:15px;-webkit-transition:background .3s;-moz-transition:background .3s;-o-transition:background .3s;-ms-transition:background .3s;transition:background .3s}
26
+ .mgmenu>li:hover,.mgmenu>li.active{background-color:#131313}
27
+ .mgmenu li.noactive{background:0}
28
+ .mgmenu>li>a,.mgmenu>li>span{display:block;color:#fff;text-shadow:1px 1px 1px #000;font-size:12px;outline:0;text-decoration:none;padding:15px 0 14px 15px}
29
+ .mgmenu>li>span:hover,.mgmenu>li>a:hover,.mgmenu>li>a:focus{cursor:pointer;color:#fff;outline:0}
30
+ .mgmenu>li .mgmenu_drop{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow.png");background-repeat:no-repeat;background-position:right 19px;padding-right:20px}
31
+ .mgmenu_footer .mgmenu>li .mgmenu_drop{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/upArrow.png")}
32
+ .mgmenu>li.right_item{float:right;margin-right:0}
33
+ .mgmenu_container>.mgmenu>li.mgmenu_button,
34
+ .mgmenu_fixed>.mgmenu>li.mgmenu_button,
35
+ .mgmenu_footer>.mgmenu>li.mgmenu_button{display:none;cursor:pointer;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;font-weight:bold;background-color:transparent;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/toggle.png");background-repeat:no-repeat;background-position:96% 10px;line-height:12px;padding:14px 4% 14px 4%;color:#fff;text-shadow:1px 1px 1px #000}
36
+ .mgmenu_container>.mgmenu>li.mgmenu_button_active,.mgmenu_fixed>.mgmenu>li.mgmenu_button_active,.mgmenu_footer>.mgmenu>li.mgmenu_button_active{background-color:#000}
37
+ .mgmenu_trigger{position:fixed;z-index:2;margin:0 auto;right:0;margin-right:20px;width:35px;height:41px;display:block}
38
+ .mgmenu_trigger{top:0;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up.png");background-position:center center;background-repeat:no-repeat;background-color:#121212}
39
+ .mgmenu_trigger.active{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down.png")}
40
+ .mgmenu_footer ~ .mgmenu_trigger{top:auto;bottom:0;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down.png")}
41
+ .mgmenu_footer ~ .mgmenu_trigger.active{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up.png")}
42
+ .mgmenu li .dropdown_container,
43
+ .mgmenu li .dropdown_fullwidth,
44
+ .mgmenu li .mgmenu_multilevel{position:absolute;top:auto;display:none;float:left;zoom:1;z-index:10;margin:0 0 40px -1px;padding:20px 0 6px 0;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 2px 2px rgba(0,0,0,0.05);box-shadow:0 2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;border-top:0;background:#e5e5e5;color:#212121}
45
+ .mgmenu li .dropdown_container{left:auto}
46
+ .mgmenu li .dropdown_fullwidth{left:0}
47
+ .mgmenu li.right_item .dropdown_container{left:auto;right:-1px}
48
+ .mgmenu_footer .mgmenu>li .dropdown_container,
49
+ .mgmenu_footer .mgmenu>li .dropdown_fullwidth,
50
+ .mgmenu_footer .mgmenu>li .mgmenu_multilevel{margin:0 0 0 -1px;top:auto;bottom:0;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;-webkit-box-shadow:0 -2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 -2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 -2px 2px rgba(0,0,0,0.05);box-shadow:0 -2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;border-bottom:0}
51
+ .mgmenu>li:hover .dropdown_container,.mgmenu>li:hover .dropdown_fullwidth,.mgmenu>li.right_item:hover .dropdown_container{display:block}
52
+ .mgmenu li .dropdown_1column{width:8.3334%;padding-left:2%;padding-right:2%}
53
+ .mgmenu li .dropdown_2columns{width:250px;padding-left:1.8333%;padding-right:1.8333%}
54
+ .mgmenu li .dropdown_3columns{width:25%;padding-left:1.5%;padding-right:1.5%}
55
+ .mgmenu li .dropdown_4columns{width:33.3334%;padding-left:1.333%;padding-right:1.333%}
56
+ .mgmenu li .dropdown_5columns{width:41.6667%;padding-left:1.166%;padding-right:1.166%}
57
+ .mgmenu li .dropdown_6columns{width:50%;padding-left:1%;padding-right:1%}
58
+ .mgmenu li .dropdown_7columns{width:58.3334%;padding-left:.833%;padding-right:.833%}
59
+ .mgmenu li .dropdown_8columns{width:66.6667%;padding-left:.666%;padding-right:.666%}
60
+ .mgmenu li .dropdown_9columns{width:75%;padding-left:.5%;padding-right:.5%}
61
+ .mgmenu li .dropdown_10columns{width:83.3334%;padding-left:.333%;padding-right:.333%}
62
+ .mgmenu li .dropdown_11columns{width:91.6667%;padding-left:.1666%;padding-right:.1666%}
63
+ .mgmenu li .dropdown_fullwidth{width:100%}
64
+ .mgmenu .col_1,.mgmenu .col_2,.mgmenu .col_3,.mgmenu .col_4,.mgmenu .col_5,.mgmenu .col_6,.mgmenu .col_7,.mgmenu .col_8,.mgmenu .col_9,
65
+ .mgmenu .col_10,.mgmenu .col_11,.mgmenu .col_12{float:left;display:inline;position:relative;padding-left:2%;padding-right:2%;*padding-left:1.9%;*padding-right:1.9%}
66
+ .mgmenu .col_1{width:4.33%}
67
+ .mgmenu .col_2{width:12.66%}
68
+ .mgmenu .col_3{width:21%}
69
+ .mgmenu .col_4{width:29.33%}
70
+ .mgmenu .col_5{width:37.66%}
71
+ .mgmenu .col_6{width:46%}
72
+ .mgmenu .col_7{width:54.33%}
73
+ .mgmenu .col_8{width:62.66%}
74
+ .mgmenu .col_9{width:71%}
75
+ .mgmenu .col_10{width:79.33%}
76
+ .mgmenu .col_11{width:87.66%}
77
+ .mgmenu .col_12{width:96%}
78
+ .mgmenu .clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:18px}
79
+ .mgmenu .col_border{-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.15);-moz-box-shadow:-1px 0 0 rgba(0,0,0,0.15);-o-box-shadow:-1px 0 0 rgba(0,0,0,0.15);box-shadow:-1px 0 0 rgba(0,0,0,0.15)}
80
+ .mgmenu .dropdown_flyout,.mgmenu .dropdown_flyout .dropdown_flyout_level{padding:0;margin:0;list-style:none;z-index:9;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}
81
+ .mgmenu .dropdown_flyout .dropdown_flyout_level{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 2px 2px rgba(0,0,0,0.05);box-shadow:0 2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;background:#e5e5e5}
82
+ .mgmenu .dropdown_flyout li{margin-top:-5px;float:left;width:100%;padding:0px 0 3px 0}
83
+ .mgmenu .dropdown_flyout ul li{width:250px;padding:3px 0px 3px 0px}
84
+ .mgmenu .dropdown_flyout li.last{margin-bottom:12px}
85
+ .mgmenu .dropdown_flyout a{display:block;width:10em}
86
+ .mgmenu .dropdown_flyout .dropdown_flyout_level{position:absolute;margin:15px 0 0 4px;padding:6px;left:98%;top:-21px;display:none;zoom:1;float:left}
87
+ .mgmenu .dropdown_flyout .dropdown_flyout_level_left{left:-102%;right:100%}
88
+ .mgmenu .dropdown_flyout .dropdown_parent{background:url("/skin/frontend/base/default/images/jscriptz_megamenu2/rightArrow.png") no-repeat 90% 9px}
89
+ .mgmenu .dropdown_flyout .dropdown_parent_left{background:url("/skin/frontend/base/default/images/jscriptz_megamenu2/leftArrow.png") no-repeat 90% 9px}
90
+ .mgmenu .dropdown_flyout li:hover>.dropdown_flyout_level,.mgmenu .dropdown_flyout li:hover>.dropdown_flyout_level_left{display:block}
91
+ .mgmenu .dropdown_flyout .flyout_heading{font-family:Georgia,Times,"Times New Roman",serif;padding-bottom:9px;margin-bottom:9px;font-size:16px;border-bottom:1px solid #ccc;-webkit-box-shadow:0 1px 1px #f4f4f4;-moz-box-shadow:0 1px 1px #f4f4f4;-o-box-shadow:0 1px 1px #f4f4f4;box-shadow:0 1px 1px #f4f4f4}
92
+ .mgmenu p,.mgmenu h1,.mgmenu h2,.mgmenu h3,.mgmenu h4,.mgmenu h5,.mgmenu h6{padding:0;margin:0;font-weight:normal;color:#222;text-shadow:1px 1px 1px #fff;margin-bottom:18px}
93
+ .mgmenu h1,.mgmenu h2,.mgmenu h3,.mgmenu h4,.mgmenu h5,.mgmenu h6{font-family:Georgia,Times,"Times New Roman",serif}
94
+ .mgmenu p{font-size:12px}
95
+ .mgmenu h1{font-size:32px}
96
+ .mgmenu h2{font-size:28px}
97
+ .mgmenu h3{font-size:24px}
98
+ .mgmenu h4{font-size:18px}
99
+ .mgmenu h5{font-size:16px}
100
+ .mgmenu h6{font-size:14px;text-transform:uppercase}
101
+ .mgmenu a{text-decoration:none;color:#222;-webkit-transition:color .3s;-moz-transition:color .3s;-o-transition:color .3s;-ms-transition:color .3s;transition:color .3s}
102
+ .mgmenu a:hover{color:#777}
103
+ .mgmenu a:focus{background:0}
104
+ .mgmenu>li ul,.mgmenu>li ol{padding:0 0 0 18px;margin:0 0 18px 0}
105
+ .mgmenu>li ul{list-style:square}
106
+ .mgmenu>li ol{list-style:decimal}
107
+ .mgmenu>li ul.no_bullets{list-style:none;padding:0}
108
+ .mgmenu>li ul.no_bullets li{line-height:24px}
109
+ .mgmenu>li ul li,.mgmenu>li ol li{font-size:12px;line-height:22px;position:relative;color:#222;text-shadow:1px 1px 1px #fff}
110
+ .mgmenu blockquote{color:#aaa;border-left:5px solid #ccc;padding-left:20px;font-family:Georgia,serif;font-style:italic;font-size:18px;line-height:27px}
111
+ .mgmenu .text_box{width:84%;background:#fff;padding:12px 8% 12px 8%;-webkit-box-shadow:0 1px 1px #bbb;-moz-box-shadow:0 1px 1px #bbb;-o-box-shadow:0 1px 1px #bbb;box-shadow:0 1px 1px #bbb}
112
+ .mgmenu .text_box_black{background:#212121}
113
+ .mgmenu .text_box_red{background:#e48a76}
114
+ .mgmenu .text_box_blue{background:#92bfd1}
115
+ .mgmenu .text_box_green{background:#b4ca91}
116
+ .mgmenu .text_box_yellow{background:#f3d067}
117
+ .mgmenu .text_box_purple{background:#c0addb}
118
+ .mgmenu .text_box_brown{background:#b2aa9f}
119
+ .mgmenu .text_box_black,.mgmenu .text_box_red,.mgmenu .text_box_blue,.mgmenu .text_box_green,.mgmenu .text_box_yellow,.mgmenu .text_box_purple,.mgmenu .text_box_brown{color:#fff;text-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none;box-shadow:none}
120
+ .mgmenu .img_description{text-align:center;font-style:italic;margin-top:-6px;font-family:Georgia,Times,"Times New Roman",serif}
121
+ .mgmenu hr{width:100%;height:0;*height:2px;margin-bottom:18px;border:0;border-bottom:1px solid #f4f4f4;border-top:1px solid #ccc}
122
+ .mgmenu .video_container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden;margin-bottom:18px}
123
+ .mgmenu .video_container iframe,.mgmenu .video_container object,.mgmenu .video_container embed{position:absolute;top:0;left:0;width:100%;height:100%;border:0;outline:0}
124
+ .mgmenu iframe{border:0;outline:0;width:100%;font-size:100%;vertical-align:baseline;background:transparent;margin-bottom:12px}
125
+ .mgmenu img{border:0}
126
+ .mgmenu .inline_img{max-width:100%;height:auto;width:auto\9;box-sizing:border-box;-webkit-box-shadow:0 1px 1px #999;-moz-box-shadow:0 1px 1px #999;-o-box-shadow:0 1px 1px #999;box-shadow:0 1px 1px #999;margin-bottom:18px;margin-top:6px}
127
+ .mgmenu a .inline_img{opacity:.8;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-o-transition:opacity .3s;-ms-transition:opacity .3s;transition:opacity .3s}
128
+ .mgmenu a:hover .inline_img{opacity:1}
129
+ .mgmenu .inline_img_border{border:5px solid #fff}
130
+ .mgmenu .mini_icon{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/mini-icons-white.png");background-repeat:no-repeat;margin-top:-2px;padding-left:6px;float:left;width:20px;height:20px}
131
+ .mgmenu .ic_empty_document{background-position:0 0}
132
+ .mgmenu .ic_documents{background-position:-32px 0}
133
+ .mgmenu .ic_text_document{background-position:-64px 0}
134
+ .mgmenu .ic_folder{background-position:-96px 0}
135
+ .mgmenu .ic_picture{background-position:-128px 0}
136
+ .mgmenu .ic_cloud{background-position:-160px 0}
137
+ .mgmenu .ic_archive{background-position:-192px 0}
138
+ .mgmenu .ic_download{background-position:-224px 0}
139
+ .mgmenu .ic_user{background-position:-256px 0}
140
+ .mgmenu .ic_tag{background-position:-288px 0}
141
+ .mgmenu .ic_lock{background-position:0 -32px}
142
+ .mgmenu .ic_unlock{background-position:-32px -32px}
143
+ .mgmenu .ic_mail{background-position:-64px -32px}
144
+ .mgmenu .ic_brush{background-position:-96px -32px}
145
+ .mgmenu .ic_refresh{background-position:-128px -32px}
146
+ .mgmenu .ic_grid{background-position:-160px -32px}
147
+ .mgmenu .ic_list{background-position:-192px -32px}
148
+ .mgmenu .ic_delete{background-position:-224px -32px}
149
+ .mgmenu .ic_settings{background-position:-256px -32px}
150
+ .mgmenu .ic_time{background-position:-288px -32px}
151
+ .mgmenu .ic_bookmark{background-position:0 -64px}
152
+ .mgmenu .ic_calendar{background-position:-32px -64px}
153
+ .mgmenu .ic_graph{background-position:-64px -64px}
154
+ .mgmenu .ic_pin{background-position:-96px -64px}
155
+ .mgmenu .ic_chat{background-position:-128px -64px}
156
+ .mgmenu .ic_chats{background-position:-160px -64px}
157
+ .mgmenu .ic_print{background-position:-192px -64px}
158
+ .mgmenu .ic_attachment{background-position:-224px -64px}
159
+ .mgmenu .ic_power{background-position:-256px -64px}
160
+ .mgmenu .ic_favorite{background-position:-288px -64px}
161
+ .mgmenu .ic_sound{background-position:0 -96px}
162
+ .mgmenu .ic_edit{background-position:-32px -96px}
163
+ .mgmenu .ic_fullscreen{background-position:-64px -96px}
164
+ .mgmenu .ic_target{background-position:-96px -96px}
165
+ .mgmenu .ic_sync{background-position:-128px -96px}
166
+ .mgmenu .ic_zoom{background-position:-160px -96px}
167
+ .mgmenu .ic_plus{background-position:-192px -96px}
168
+ .mgmenu .ic_minus{background-position:-224px -96px}
169
+ .mgmenu .ic_cancel{background-position:-256px -96px}
170
+ .mgmenu .ic_ok{background-position:-288px -96px}
171
+ .mgmenu .ic_users{background-position:0 -128px}
172
+ .mgmenu .ic_calc{background-position:-32px -128px}
173
+ .mgmenu .ic_left{background-position:-64px -128px}
174
+ .mgmenu .ic_right{background-position:-96px -128px}
175
+ .mgmenu .ic_up{background-position:-128px -128px}
176
+ .mgmenu .ic_down{background-position:-160px -128px}
177
+ .mgmenu .ic_up_circle{background-position:-192px -128px}
178
+ .mgmenu .ic_down_circle{background-position:-224px -128px}
179
+ .mgmenu .ic_left_circle{background-position:-256px -128px}
180
+ .mgmenu .ic_right_circle{background-position:-288px -128px}
181
+ .mgmenu .menubar_icon{padding:0;list-style:none;float:left}
182
+ .mgmenu .menubar_icon:hover{background:0}
183
+ .mgmenu .menubar_icon ul>li{list-style:none;float:left;-webkit-transition:background-color .3s;-moz-transition:background-color .3s;-o-transition:background-color .3s;-ms-transition:background-color .3s;transition:background-color .3s}
184
+ .mgmenu .menubar_icon ul>li:hover{background-color:#131313}
185
+ .mgmenu .menubar_icon ul>li>a{background-repeat:no-repeat;background-position:center center;background-size:24px 24px;display:block;padding:7px 4px 9px 4px;width:24px;height:24px}
186
+ .mgmenu .icon_vimeo{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_vimeo.png")}
187
+ .mgmenu .icon_dribbble{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_dribbble.png")}
188
+ .mgmenu .icon_twitter{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_twitter.png")}
189
+ .mgmenu .icon_facebook{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_facebook.png")}
190
+ .mgmenu .icon_flickr{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_flickr.png")}
191
+ .mgmenu .contact_form{display:block;margin-bottom:10px}
192
+ .mgmenu .contact_form label{font-size:12px;font-family:Arial,Helvetica,sans-serif}
193
+ .mgmenu .form_element{color:#000;background-color:#fbfbfb;border:1px solid #ddd;font-family:Arial,Helvetica,sans-serif;font-size:12px;width:96%;padding:9px 2% 9px 2%;margin:12px 0 18px 0;-webkit-box-shadow:0 1px 1px #efefef;-moz-box-shadow:0 1px 1px #efefef;-o-box-shadow:0 1px 1px #efefef;box-shadow:0 1px 1px #efefef;-webkit-transition:background-color .3s ease-out;-moz-transition:background-color .3s ease-out;-o-transition:background-color .3s ease-out;-ms-transition:background-color .3s ease-out;transition:background-color .3s ease-out}
194
+ .mgmenu .form_element:hover{background-color:#fcfcfc}
195
+ .mgmenu .form_element:focus{background-color:#fff}
196
+ .mgmenu .form_element:focus{outline:0}
197
+ .mgmenu .contact_form textarea{height:120px;resize:none}
198
+ .mgmenu .contact_form .required{color:#C00}
199
+ .mgmenu .contact_form .error,.mgmenu .contact_form .success{width:96%;padding:9px 2% 9px 2%;margin:12px 0 6px 0;border:1px solid rgba(0,0,0,0.15);text-shadow:1px 1px 1px #fff;-webkit-box-shadow:0 1px 1px #efefef;-moz-box-shadow:0 1px 1px #efefef;-o-box-shadow:0 1px 1px #efefef;box-shadow:0 1px 1px #efefef}
200
+ .mgmenu .contact_form .error{background:#f7cac4;color:#992213}
201
+ .mgmenu .contact_form .success{background:#d8f6bc;color:#2f530b;margin-bottom:12px}
202
+ .mgmenu .contact_form .button{padding:7px 12px;margin:9px 12px 0 0;white-space:nowrap;font-size:11px;text-transform:uppercase;vertical-align:middle;cursor:pointer;border:1px solid #000;color:#fff;background-color:#222;text-shadow:0 1px 1px #000;-webkit-transition:background-color .3s;-moz-transition:background-color .3s;-o-transition:background-color .3s;-ms-transition:background-color .3s;transition:background-color .3s}
203
+ .mgmenu .contact_form .button:hover,.mgmenu .contact_form .button:focus{color:#fff;background-color:#1a1a1a}
204
+ .mgmenu .contact_form .select_element{float:left;width:310px;overflow:hidden;position:relative;background-color:#fbfbfb;border:1px solid #ddd;font-family:Arial,Helvetica,sans-serif;font-size:12px;width:100%;margin:12px 0 18px 0;-webkit-box-shadow:0 1px 1px #efefef;-moz-box-shadow:0 1px 1px #efefef;-o-box-shadow:0 1px 1px #efefef;box-shadow:0 1px 1px #efefef}
205
+ .mgmenu .contact_form .select_element select{width:100%;height:30px;font-size:12px;color:#999;padding:6px 0 6px 10px;border:0;background:0;outline:0}
206
+ .mgmenu .contact_form .select_element select option{background:#fdfdfd;width:100%;color:#666}@media screen and (-webkit-min-device-pixel-ratio:0){.mgmenu .contact_form .select_element:after{content:'';position:absolute;top:50%;right:10px;margin-top:-3px;border:5px solid transparent;border-top:5px solid #333;pointer-events:none}
207
+ .mgmenu .contact_form .select_element select,.mgmenu .contact_form .select_element select option{-webkit-appearance:none;appearance:none}}
208
+ .mgmenu li>.mgmenu_tabs{padding:0!important}
209
+ .mgmenu_tabs>ul{list-style:none;margin:0;padding:0}
210
+ .mgmenu_tabs_hide{display:none}
211
+ .mgmenu_tabs .mgmenu_tabs_nav{width:20%;float:left;position:relative;margin:0;padding:0}
212
+ .mgmenu_tabs .mgmenu_tabs_panels{margin:0;padding:21px 1% 12px 1%;width:78%;*width:77.9%;float:left;background-color:#fff;-webkit-box-shadow:-1px 0 1px rgba(0,0,0,0.05);-moz-box-shadow:-1px 0 1px rgba(0,0,0,0.05);-o-box-shadow:-1px 0 1px rgba(0,0,0,0.05);box-shadow:-1px 0 1px rgba(0,0,0,0.05)}
213
+ .mgmenu_tabs .mgmenu_tabs_nav li{list-style:none;margin:0;border:0;margin:0;float:left;width:100%;clear:left;-webkit-transition:background .5s ease;-moz-transition:background .5s ease;-o-transition:background .5s ease;-ms-transition:background .5s ease;transition:background .5s ease}
214
+ .mgmenu_tabs .mgmenu_tabs_nav li a{font-size:12px;outline:0;text-decoration:none;display:block;padding:9px 15px 9px 15px}
215
+ .mgmenu_tabs li a.current,.mgmenu_tabs li a.current:hover{background-color:#fff;-webkit-box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);-o-box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);box-shadow:0 -1px 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);top:1px}
216
+ .mgmenu_tabs_right .mgmenu_tabs_panels{-webkit-box-shadow:1px 0 1px rgba(0,0,0,0.05);-moz-box-shadow:1px 0 1px rgba(0,0,0,0.05);-o-box-shadow:1px 0 1px rgba(0,0,0,0.05);box-shadow:1px 0 1px rgba(0,0,0,0.05)}
217
+ .mgmenu_tabs_top .mgmenu_tabs_nav,.mgmenu_tabs_bottom .mgmenu_tabs_nav{width:100%}
218
+ .mgmenu_tabs_top .mgmenu_tabs_panels,.mgmenu_tabs_bottom .mgmenu_tabs_panels{padding:21px 1% 12px 1%;width:98%;*width:97.9%}
219
+ .mgmenu_tabs_top .mgmenu_tabs_nav li,.mgmenu_tabs_bottom .mgmenu_tabs_nav li{float:none;width:auto;clear:none;display:inline}
220
+ .mgmenu_tabs_top .mgmenu_tabs_nav li a,.mgmenu_tabs_bottom .mgmenu_tabs_nav li a{display:inline;float:left}
221
+ .mgmenu_tabs_top li a.current,.mgmenu_tabs_top li a.current:hover,.mgmenu_tabs_bottom li a.current,.mgmenu_tabs_bottom li a.current:hover{-webkit-box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05);-moz-box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05);-o-box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05);box-shadow:-1px 0 1px rgba(0,0,0,0.05),1px 0 1px rgba(0,0,0,0.05)}
222
+ .mgmenu_tabs_top .mgmenu_tabs_panels{-webkit-box-shadow:0 -1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 -1px 1px rgba(0,0,0,0.05);-o-box-shadow:0 -1px 1px rgba(0,0,0,0.05);box-shadow:0 -1px 1px rgba(0,0,0,0.05)}
223
+ .mgmenu_tabs_bottom .mgmenu_tabs_panels{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.05);-o-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}@media only screen and (min-width:768px) and (max-width:984px){.mgmenu>li{padding-right:10px}
224
+ .mgmenu>li>a,.mgmenu>li>span{padding-left:10px}
225
+ .mgmenu .mini_icon{padding-left:3px}}@media only screen and (max-width:767px){.mgmenu_container,.mgmenu_fixed,.mgmenu_footer{width:100%;height:auto;margin:0;position:relative;left:auto;top:auto;bottom:auto}
226
+ .mgmenu_container .mgmenu>li,.mgmenu_fixed .mgmenu>li,.mgmenu_footer .mgmenu>li{float:none;width:auto;border:0;display:block;padding:0}
227
+ .mgmenu>li>span,.mgmenu>li>a{display:block}
228
+ .mgmenu>li .mgmenu_drop{background-position:96% 19px}
229
+ .mgmenu>li .dropdown_container,.mgmenu>li .dropdown_fullwidth,.mgmenu_footer .mgmenu>li .dropdown_container,.mgmenu_footer .mgmenu>li .dropdown_fullwidth{position:absolute;top:auto;bottom:auto;width:100%;margin:0 0 0 -1px;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 2px rgba(0,0,0,0.05);-o-box-shadow:0 2px 2px rgba(0,0,0,0.05);box-shadow:0 2px 2px rgba(0,0,0,0.05);border:1px solid #ccc;border-top:0}
230
+ .mgmenu li .dropdown_1column,.mgmenu li .dropdown_2columns,.mgmenu li .dropdown_3columns,.mgmenu li .dropdown_4columns,.mgmenu li .dropdown_5columns,.mgmenu li .dropdown_6columns,.mgmenu li .dropdown_7columns,.mgmenu li .dropdown_8columns,.mgmenu li .dropdown_9columns,.mgmenu li .dropdown_10columns,.mgmenu li .dropdown_11columns,.mgmenu li .dropdown_fullwidth{width:100%;padding-left:0;padding-right:0}
231
+ .mgmenu .col_1,.mgmenu .col_2,.mgmenu .col_3,.mgmenu .col_4,.mgmenu .col_5,.mgmenu .col_6,.mgmenu .col_7,.mgmenu .col_8,.mgmenu .col_9,.mgmenu .col_10,.mgmenu .col_11,.mgmenu .col_12{width:92%;margin-left:4%;margin-right:4%;padding:0;float:left;display:block}
232
+ .mgmenu .col_border{box-shadow:none}
233
+ .mgmenu .dropdown_flyout,.mgmenu .dropdown_flyout .dropdown_flyout_level,.mgmenu .dropdown_flyout .dropdown_flyout_level_left{position:relative;left:auto;right:auto;top:auto;padding:0;margin:6px 4% 0 4%}
234
+ .mgmenu .dropdown_flyout .dropdown_flyout_level{border:0;background:0;box-shadow:none}
235
+ .mgmenu .dropdown_flyout li,.mgmenu .dropdown_flyout ul li{width:100%;padding:6px 0 6px 0}
236
+ .mgmenu li .dropdown_flyout .dropdown_parent{background:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow-b.png") no-repeat 98% 14px}
237
+ .mgmenu li>.mgmenu_tabs{width:100%}
238
+ .mgmenu_tabs .mgmenu_tabs_nav{width:100%;float:left;margin:0;padding:0}
239
+ .mgmenu_tabs .mgmenu_tabs_panels{padding:21px 0 12px 0;width:100%}
240
+ .mgmenu_trigger{display:none}
241
+ .mgmenu blockquote{margin-left:12px}
242
+ .mgmenu .img_description{text-align:left}
243
+ .mgmenu .menubar_icon{z-index:9;float:none!important;padding:0 0 14px 0!important}
244
+ .mgmenu .menubar_icon ul{width:100%;padding:0 0 9px 0!important}
245
+ .mgmenu .menubar_icon ul>li{padding-left:2%;padding-right:2%}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.mgmenu>li .mgmenu_drop{background-size:9px 5px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow@2x.png")}
246
+ .mgmenu_footer .mgmenu>li .mgmenu_drop{background-size:9px 5px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/upArrow@2x.png")}
247
+ .mgmenu_container>.mgmenu>li.mgmenu_button,.mgmenu_fixed>.mgmenu>li.mgmenu_button,.mgmenu_footer>.mgmenu>li.mgmenu_button{background-size:24px 24px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/toggle@2x.png")}
248
+ .mgmenu_trigger{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up@2x.png")}
249
+ .mgmenu_trigger.active{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down@2x.png")}
250
+ .mgmenu_footer ~ .mgmenu_trigger{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_down@2x.png")}
251
+ .mgmenu_footer ~ .mgmenu_trigger.active{background-size:35px 35px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/button_up@2x.png")}
252
+ .mgmenu .dropdown_flyout .dropdown_parent{background-size:5px 9px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/rightArrow@2x.png")}
253
+ .mgmenu .dropdown_flyout .dropdown_parent_left{background-size:5px 9px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/leftArrow@2x.png")}
254
+ .mgmenu .mini_icon{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/mini-icons-white@2x.png");background-repeat:no-repeat;background-size:304px 144px}
255
+ .mgmenu .menubar_icon ul>li>a{background-size:24px 24px}
256
+ .mgmenu .icon_vimeo{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_vimeo@2x.png")}
257
+ .mgmenu .icon_dribbble{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_dribbble@2x.png")}
258
+ .mgmenu .icon_twitter{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_twitter@2x.png")}
259
+ .mgmenu .icon_facebook{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_facebook@2x.png")}
260
+ .mgmenu .icon_flickr{background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/icons/icon_flickr@2x.png")}}@media only screen and (max-width:767px) and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.mgmenu li .dropdown_flyout .dropdown_parent{background-size:9px 5px;background-image:url("/skin/frontend/base/default/images/jscriptz_megamenu2/downArrow-b@2x.png")}}
261
+ body{font-family:Arial,Helvetica,sans-serif}
262
+ .description{margin:48px auto;width:70%}
263
+ .description h2{margin-bottom:48px;text-align:center;text-shadow:1px 1px 1px #fff}
264
+ .description p{font-size:12px;line-height:18px;margin-bottom:18px;text-shadow:1px 1px 1px #fff;clear:both}
265
+ .dropdown_flyout {}
266
+ a.topnav-link {color:#fff}
267
+ a.topnav-link:hover {color:#eee}
268
+ .dropdown_parent {width:250px}
269
+ .mgmenu .dropdown_flyout, .mgmenu .dropdown_flyout .dropdown_flyout_level {width:250px}
270
+ .mgmenu .dropdown_flyout a, .mgmenu .dropdown_flyout .dropdown_flyout_level a{width:250px}
271
+ .page_wrapper a.demo{
272
+ color:#444;
273
+ line-height: 24px;
274
+ padding-top: 20px;
275
+ padding-bottom: 20px;
276
+ text-decoration:none;
277
+ width:45%;
278
+ margin-right:10%;
279
+ font-size:16px;
280
+ text-align:center;
281
+ margin-bottom:36px;
282
+ float:left;
283
+ display:inline;
284
+ border-radius:4px;
285
+ box-shadow:0 1px 2px #bbb,inset 0 1px 1px #fafafa;
286
+ background:#eee;
287
+ background:-webkit-linear-gradient(top,#eee 0,#e8e8e8);
288
+ background:-moz-linear-gradient(top,#eee 0,#e8e8e8);
289
+ background:-o-linear-gradient(top,#eee 0,#e8e8e8);
290
+ background:-ms-linear-gradient(top,#eee 0,#e8e8e8);
291
+ background:linear-gradient(top,#eee 0,#e8e8e8)
292
+ }
293
+ .page_wrapper a.second{margin-right:0}
294
+ @media only screen and (min-width:320px) and (max-width:767px){.page_wrapper .index{width:100%;margin-right:0}}
295
+ .page_wrapper a.demo {
296
+ }
297
+
298
+ .page_wrapper .small {
299
+ line-height: 12px;
300
+ font-size: 10px;
301
+ padding: 0;
302
+ }
303
+
304
+ @media only screen and (max-width: 767px) {
305
+ .page_wrapper a.demo{width:100%;margin-right: 0;}
306
  }