AAAAPK*A\HZ}}templateDetails.xmlnuW+A Ideas 2012-02-13 1.7 Able Web Professionals, Inc. http://www.ablewebpro.com Free Joomla Template for 1.7/2.5 images joomla_images css html js classes template_thumbnail.png template_preview.png classes.php jquery.js script.js component.php functions.php index.html index.php params.ini position-1 position-2 position-4 position-5 position-7 position-9 position-10 position-11 position-12 position-14 position-15 position-16 position-17 position-18 position-19 position-20 position-21 position-22 position-23 position-24 position-25 position-26 position-27 position-28 position-29 PK*A\F˩classes/ArtxContent.phpnuW+A_component = $component; $this->_componentParams = $params; $this->pageClassSfx = $component->pageclass_sfx; $this->pageHeading = $this->_componentParams->get('show_page_heading', 1) ? $this->_componentParams->get('page_heading') : ''; } public function pageHeading($title = null) { return artxPost(array('header-text' => $this->_component->escape(null == $title ? $this->pageHeading : $title))); } public function article($view, $article, $params, $properties = array()) { switch ($view) { case 'archive': return new ArtxContentArchivedArticle($this->_component, $this->_componentParams, $article, $params); case 'article': return new ArtxContentSingleArticle($this->_component, $this->_componentParams, $article, $params, $properties); case 'category': return new ArtxContentCategoryArticle($this->_component, $this->_componentParams, $article, $params); case 'featured': return new ArtxContentFeaturedArticle($this->_component, $this->_componentParams, $article, $params); } } public function beginPageContainer($class) { return '
'; } public function endPageContainer() { return '
'; } } PK*A\ep p classes/ArtxContentListItem.phpnuW+AisPublished = 0 != $this->_article->state; $this->titleLink = $this->_articleParams->get('link_titles') && $this->_articleParams->get('access-view') ? JRoute::_(ContentHelperRoute::getArticleRoute($this->_article->slug, $this->_article->catid)) : ''; $this->intro = $this->_article->introtext; if ($this->_articleParams->get('show_readmore') && $this->_article->readmore) { if (!$this->_articleParams->get('access-view')) $this->readmore = JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); elseif ($this->readmore = $this->_article->alternative_readmore) { if ($this->_articleParams->get('show_readmore_title', 0) != 0) $this->readmore .= JHtml::_('string.truncate', ($this->_article->title), $this->_articleParams->get('readmore_limit')); } elseif ($this->_articleParams->get('show_readmore_title', 0) == 0) $this->readmore = JText::sprintf('COM_CONTENT_READ_MORE_TITLE'); else $this->readmore = JText::_('COM_CONTENT_READ_MORE') . JHtml::_('string.truncate', $this->_article->title, $this->_articleParams->get('readmore_limit')); if ($this->_articleParams->get('access-view')){ $link = JRoute::_(ContentHelperRoute::getArticleRoute($this->_article->slug, $this->_article->catid)); $this->readmoreLink = $link; } else { $menu = JFactory::getApplication()->getMenu(); $active = $menu->getActive(); $itemId = $active->id; $link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId); $returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->_article->slug, $this->_article->catid)); $link = new JURI($link1); $link->setVar('return', base64_encode($returnURL)); $this->readmoreLink = $link->__toString(); } } else { $this->readmore = ''; $this->readmoreLink = ''; } } public function intro($intro) { return "
" . $intro . "
"; } } PK*A\q-ll"classes/ArtxContentArticleBase.phpnuW+A_component = $component; $this->_componentParams = $componentParams; $this->_article = $article; $this->_articleParams = $articleParams; // Calculate properties: $this->title = $this->_article->title; $this->created = $this->_articleParams->get('show_create_date') ? $this->_article->created : ''; $this->modified = $this->_articleParams->get('show_modify_date') ? $this->_article->modified : ''; $this->published = $this->_articleParams->get('show_publish_date') ? $this->_article->publish_up : ''; $this->hits = $this->_articleParams->get('show_hits') ? $this->_article->hits : ''; $this->author = $this->_articleParams->get('show_author') && !empty($this->_article->author) ? ($this->_article->created_by_alias ? $this->_article->created_by_alias : $this->_article->author) : ''; $this->authorLink = strlen($this->author) && !empty($this->_article->contactid) && $this->_articleParams->get('link_author') ? 'index.php?option=com_contact&view=contact&id=' . $this->_article->contactid : ''; } /** * @see $created */ public function createdDateInfo($created) { return JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $created, JText::_('DATE_FORMAT_LC2'))); } /** * @see $modified */ public function modifiedDateInfo($modified) { return JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $modified, JText::_('DATE_FORMAT_LC2'))); } /** * @see $published */ public function publishedDateInfo($published) { return JText::sprintf('COM_CONTENT_PUBLISHED_DATE', JHtml::_('date', $published, JText::_('DATE_FORMAT_LC2'))); } /** * @see $author */ public function authorInfo($author, $authorLink) { if (strlen($authorLink)) return JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', JRoute::_($authorLink), $author)); return JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); } public function articleSeparator() { return '
 
'; } /** * @see $section, $sectionLink, $category, $categoryLink */ public function categories($parentCategory, $parentCategoryLink, $category, $categoryLink) { if (0 == strlen($parentCategory) && 0 == strlen($category)) return ''; ob_start(); if (strlen($parentCategory)) { echo ''; if (strlen($parentCategoryLink)) echo '' . $this->_component->escape($parentCategory) . ''; else echo $this->_component->escape($parentCategory); echo ''; if (strlen($category)) echo ' / '; } if (strlen($category)) { echo ''; if (strlen($categoryLink)) echo '' . $this->_component->escape($category) . ''; else echo $this->_component->escape($category); echo ''; } return JText::sprintf('COM_CONTENT_CATEGORY', ob_get_clean()); } public function hitsInfo($hits) { return JText::sprintf('COM_CONTENT_ARTICLE_HITS', $hits); } public function event($name) { return $this->_article->event->{$name}; } public function getArticleViewParameters() { return array('metadata-header-icons' => array(), 'metadata-footer-icons' => array()); } public function article($article) { return artxPost($article); } } PK*A\)classes/.htaccessnuW+A Order allow,deny Deny from all PK*A\Gʿooclasses/ArtxContentItem.phpnuW+Atitle = $this->_articleParams->get('show_title') ? $this->_article->title : ''; $this->printIconVisible = $this->_articleParams->get('show_print_icon'); $this->emailIconVisible = $this->_articleParams->get('show_email_icon'); $this->editIconVisible = $this->_articleParams->get('access-edit'); $this->introVisible = $this->_articleParams->get('show_intro'); } /** * @see $emailIconVisible */ public function emailIcon() { return JHtml::_('icon.email', $this->_article, $this->_articleParams); } /** * @see $editIconVisible */ public function editIcon() { return JHtml::_('icon.edit', $this->_article, $this->_articleParams); } /** * @see $printIconVisible */ public function printIcon() { return JHtml::_('icon.print_popup', $this->_article, $this->_articleParams); } /** * Returns decoration for unpublished article. * * Together with endUnpublishedArticle() this function decorates * the unpublished article with
...
. * By default, this decoration is applied only for articles in list. */ public function beginUnpublishedArticle() { return '
'; } public function endUnpublishedArticle() { return '
'; } public function readmore($readmore, $readmoreLink) { return '

' . artxLinkButton(array( 'classes' => array('a' => 'readon'), 'link' => $readmoreLink, 'content' => str_replace(' ', ' ', $readmore))) . '

'; } } PK*A\R$QQ&classes/ArtxContentFeaturedArticle.phpnuW+Acategory = $this->_articleParams->get('show_category') ? $this->_article->category_title : ''; $this->categoryLink = $this->_articleParams->get('link_category') && $this->_article->catslug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->catslug)) : ''; $this->parentCategory = $this->_articleParams->get('show_category') && $this->_article->parent_id != 1 ? $this->_article->parent_title : ''; $this->parentCategoryLink = $this->_articleParams->get('link_parent_category') && $this->_article->parent_slug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->parent_slug)) : ''; } } PK*A\2&classes/ArtxContentArchivedArticle.phpnuW+AtitleLink = $this->_articleParams->get('link_titles') ? JRoute::_(ContentHelperRoute::getArticleRoute($this->_article->slug, $this->_article->catslug)) : ''; $this->category = $this->_articleParams->get('show_category') ? $this->_article->category_title : ''; $this->categoryLink = $this->_articleParams->get('link_category') && $this->_article->catslug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->catslug)) : ''; $this->parentCategoryLink = $this->_articleParams->get('link_parent_category') && $this->_article->parent_slug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->parent_slug)) : ''; $this->intro = $this->_articleParams->get('show_intro') ? $this->_article->introtext : ''; } public function intro($intro) { return '
' . JHtml::_('string.truncate', $intro, $this->_articleParams->get('introtext_limit')) . '
'; } } PK*A\޸RR$classes/ArtxContentSingleArticle.phpnuW+Aprint = isset($properties['print']) ? $properties['print'] : ''; $this->pageHeading = $this->_componentParams->get('show_page_heading', 1) ? $this->_componentParams->get('page_heading') : ''; $this->titleLink = $this->_articleParams->get('link_titles') && !empty($this->_article->readmore_link) ? $this->_article->readmore_link : ''; $this->emailIconVisible = $this->emailIconVisible && !$this->print; $this->editIconVisible = $this->editIconVisible && !$this->print; $this->categoryLink = $this->_articleParams->get('link_category') && $this->_article->catslug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->catslug)) : ''; $this->category = $this->_articleParams->get('show_category') ? $this->_article->category_title : ''; $this->categoryLink = $this->_articleParams->get('link_category') && $this->_article->catslug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->catslug)) : ''; $this->parentCategory = $this->_articleParams->get('show_parent_category') && $this->_article->parent_slug != '1:root' ? $this->_article->parent_title : ''; $this->parentCategoryLink = $this->_articleParams->get('link_parent_category') && $this->_article->parent_slug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->parent_slug)) : ''; $this->author = $this->_articleParams->get('show_author') && !empty($this->_article->author) ? ($this->_article->created_by_alias ? $this->_article->created_by_alias : $this->_article->author) : ''; if (strlen($this->author)) { $needle = 'index.php?option=com_contact&view=contact&id=' . $this->_article->contactid; $item = JSite::getMenu()->getItems('link', $needle, true); $this->authorLink = !empty($item) ? $needle . '&Itemid=' . $this->_article->id : $needle; } else $this->authorLink = ''; $this->toc = isset($this->_article->toc) ? $this->_article->toc : ''; $this->text = $this->_articleParams->get('access-view') ? $this->_article->text : ''; $user = JFactory::getUser(); $this->introVisible = !$this->_articleParams->get('access-view') && $params->get('show_noauth') && $user->get('guest'); $this->intro = $this->_article->introtext; if (!$this->_articleParams->get('access-view') && $this->_articleParams->get('show_noauth') && $user->get('guest') && $this->_articleParams->get('show_readmore') && $this->_article->fulltext != null) { $attribs = json_decode($this->_article->attribs); if ($attribs->alternative_readmore == null) $this->readmore = JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); elseif ($this->readmore = $this->_article->alternative_readmore) { if ($this->_articleParams->get('show_readmore_title', 0) != 0) $this->readmore .= JHtml::_('string.truncate', ($this->_article->title), $this->_articleParams->get('readmore_limit')); } elseif ($this->_articleParams->get('show_readmore_title', 0) == 0) $this->readmore = JText::sprintf('COM_CONTENT_READ_MORE_TITLE'); else $this->readmore = JText::_('COM_CONTENT_READ_MORE') . JHtml::_('string.truncate', $this->_article->title, $this->_articleParams->get('readmore_limit')); $link = new JURI(JRoute::_('index.php?option=com_users&view=login')); $this->readmoreLink = $link->__toString(); } else { $this->readmore = ''; $this->readmoreLink = ''; } } public function printIcon() { return JHTML::_($this->print ? 'icon.print_screen' : 'icon.print_popup', $this->_article, $this->_articleParams); } public function toc($toc) { return '
' . $toc . '
'; } public function intro($intro) { return '
' . $intro . '
'; } public function text($text) { return '
' . $text . '
'; } } PK*A\f&|  &classes/ArtxContentCategoryArticle.phpnuW+Acategory = $this->_articleParams->get('show_category') ? $this->_article->category_title : ''; $this->categoryLink = $this->_articleParams->get('link_category') ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->catid)) : ''; $this->parentCategory = $this->_articleParams->get('show_category') && $this->_article->parent_id != 1 ? $this->_article->parent_title : ''; $this->parentCategoryLink = $this->_articleParams->get('link_parent_category') ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->parent_id)) : ''; } } PK*A\>&&classes/ArtxPage.phpnuW+Apage = $page; } /** * Checks whether Joomla! has system messages to display. */ public function hasMessages() { $app = JFactory::getApplication(); $messages = $app->getMessageQueue(); if (is_array($messages) && count($messages)) foreach ($messages as $msg) if (isset($msg['type']) && isset($msg['message'])) return true; return false; } /** * Returns true when one of the given positions contains at least one module. * Example: * if ($obj->containsModules('top1', 'top2', 'top3')) { * // the following code will be executed when one of the positions contains modules: * ... * } */ public function containsModules() { foreach (func_get_args() as $position) if (0 != $this->page->countModules($position)) return true; return false; } /** * Builds list of positions, collapsing the empty ones. * * Samples: * Four positions: * No empty positions: 25%:25%:25%:25% * With one empty position: -:50%:25%:25%, 50%:-:25%:25%, 25%:50%:-:25%, 25%:25%:50%:- * With two empty positions: -:-:75%:25%, -:50%:-:50%, -:50%:50%:-, -:50%:50%:-, 75%:-:-:25%, 50%:-:50%:-, 25%:75%:-:- * One non-empty position: 100% * Three positions: * No empty positions: 33%:33%:34% * With one empty position: -:66%:34%, 50%:-:50%, 33%:67%:- * One non-empty position: 100% */ public function positions($positions, $style) { // Build $cells by collapsing empty positions: $cells = array(); $buffer = 0; $cell = null; foreach ($positions as $name => $width) { if ($this->containsModules($name)) { $cells[$name] = $buffer + $width; $buffer = 0; $cell = $name; } else if (null == $cell) $buffer += $width; else $cells[$cell] += $width; } // Backward compatibility: // For three equal width columns with empty center position width should be 50/50: if (3 == count($positions) && 2 == count($cells)) { $columns1 = array_keys($positions); $columns2 = array_keys($cells); if (33 == $positions[$columns1[0]] && 33 == $positions[$columns1[1]] && 34 == $positions[$columns1[2]] && $columns2[0] == $columns1[0] && $columns2[1] == $columns1[2]) { $cells[$columns2[0]] = 50; $cells[$columns2[1]] = 50; } } // Render $cells: if (count($cells) == 0) return ''; $result = '
'; $result .= '
'; foreach ($cells as $name => $width) $result .='
' . $this->position($name, $style) . '
'; $result .= '
'; $result .= '
'; return $result; } public function position($position, $style = null) { return ''; } /** * Wraps component content into article style unless it is not wrapped already. * * The componentWrapper method gets the content of the 'component' buffer and searches for the '
' string in it. * Then it wraps content of the buffer with awp-post. */ public function componentWrapper() { if ($this->page->getType() != 'html') return; $option = JRequest::getCmd('option'); $view = JRequest::getCmd('view'); $layout = JRequest::getCmd('layout'); $content = $this->page->getBuffer('component'); // Workarounds for Joomla bugs and inconsistencies: switch ($option) { case "com_content": switch ($view) { case "form": if ("edit" == $layout) $content = str_replace('
$component->pageHeading, 'content' => ob_get_clean())); echo $this->loadTemplate('items'); ?> endPageContainer(); PK*A\)"html/com_content/archive/.htaccessnuW+A Order allow,deny Deny from all PK*A\#o,,#html/com_content/archive/index.htmlnuW+APK*A\ZUM  *html/com_content/archive/default_items.phpnuW+Aparams); ?>
    items as $i => $item) : ?>
  • article('archive', $item, $this->params); $params = $article->getArticleViewParameters(); if (strlen($article->title)) { $params['header-text'] = $this->escape($article->title); if (strlen($article->titleLink)) $params['header-link'] = $article->titleLink; } // Change the order of "if" statements to change the order of article metadata header items. if (strlen($article->created)) $params['metadata-header-icons'][] = ""; if (strlen($article->modified)) $params['metadata-header-icons'][] = ""; if (strlen($article->published)) $params['metadata-header-icons'][] = ""; if (strlen($article->author)) $params['metadata-header-icons'][] = ""; if (strlen($article->hits)) $params['metadata-header-icons'][] = $article->hitsInfo($article->hits); // Build article content $content = ''; if (strlen($article->intro)) $content .= $article->intro($article->intro); $params['content'] = $content; // Change the order of "if" statements to change the order of article metadata footer items. if (strlen($article->category)) $params['metadata-footer-icons'][] = ""; // Render article echo $article->article($params); ?>
PK*A\)#html/com_content/category/.htaccessnuW+A Order allow,deny Deny from all PK*A\hv"html/com_content/category/blog.phpnuW+Aparams); echo $view->beginPageContainer('blog'); ob_start(); if ($this->params->get('show_category_title', 1) || strlen($this->params->get('page_subheading'))) { echo '

'; echo $this->escape($this->params->get('page_subheading')); if ($this->params->get('show_category_title') && strlen($this->category->title)) echo '' . $this->category->title . ''; echo '

'; } if ($this->params->def('show_description', 1) || $this->params->def('show_description_image', 1)) { echo '
'; if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) echo ''; if ($this->params->get('show_description') && $this->category->description) echo JHtml::_('content.prepare', $this->category->description); echo '
'; } echo artxPost(array('header-text' => $view->pageHeading, 'content' => ob_get_clean())); ?> lead_items)) : ?>
lead_items as &$item) : ?>
item = &$item; echo $this->loadTemplate('item'); ?>
intro_items)); $counter = 0; ?> intro_items)) : ?> intro_items as $key => &$item) : ?> columns) +1; $row = $counter / $this->columns ; if ($rowcount==1) : ?>
item = &$item; echo $this->loadTemplate('item'); ?>
columns) or ($counter ==$introcount)): ?>
link_items)) { ob_start(); echo '
' . $this->loadTemplate('links') . '
'; echo artxPost(ob_get_clean()); } ?> children[$this->category->id])&& $this->maxLevel != 0) : ?>

loadTemplate('children'); ?>
params->def('show_pagination', 1) == 1 || $this->params->get('show_pagination') == 2) && $this->pagination->get('pages.total') > 1) { ob_start(); echo ''; echo artxPost(ob_get_clean()); } echo $view->endPageContainer(); PK*A\ 'html/com_content/category/blog_item.phpnuW+Aparams); $article = $component->article('category', $this->item, $this->item->params); $params = $article->getArticleViewParameters(); if (strlen($article->title)) { $params['header-text'] = $this->escape($article->title); if (strlen($article->titleLink)) $params['header-link'] = $article->titleLink; } // Change the order of "if" statements to change the order of article metadata header items. if (strlen($article->created)) $params['metadata-header-icons'][] = ""; if (strlen($article->modified)) $params['metadata-header-icons'][] = ""; if (strlen($article->published)) $params['metadata-header-icons'][] = ""; if (strlen($article->author)) $params['metadata-header-icons'][] = ""; if ($article->printIconVisible) $params['metadata-header-icons'][] = $article->printIcon(); if ($article->emailIconVisible) $params['metadata-header-icons'][] = $article->emailIcon(); if ($article->editIconVisible) $params['metadata-header-icons'][] = $article->editIcon(); if (strlen($article->hits)) $params['metadata-header-icons'][] = $article->hitsInfo($article->hits); // Build article content $content = ''; if (!$article->introVisible) $content .= $article->event('afterDisplayTitle'); $content .= $article->event('beforeDisplayContent'); $content .= $article->intro($article->intro); if (strlen($article->readmore)) $content .= $article->readmore($article->readmore, $article->readmoreLink); $content .= $article->event('afterDisplayContent'); $params['content'] = $content; // Change the order of "if" statements to change the order of article metadata footer items. if (strlen($article->category)) $params['metadata-footer-icons'][] = ""; // Render article echo $article->article($params); PK*A\a--$html/com_content/category/index.htmlnuW+A PK*A\)"html/com_content/article/.htaccessnuW+A Order allow,deny Deny from all PK*A\ } } $html/com_content/article/default.phpnuW+Aparams); $article = $component->article('article', $this->item, $this->item->params, array('print' => $this->print)); echo $component->beginPageContainer('item-page'); if (strlen($article->pageHeading)) echo $component->pageHeading($article->pageHeading); $params = $article->getArticleViewParameters(); if (strlen($article->title)) { $params['header-text'] = $this->escape($article->title); if (strlen($article->titleLink)) $params['header-link'] = $article->titleLink; } // Change the order of "if" statements to change the order of article metadata header items. if (strlen($article->created)) $params['metadata-header-icons'][] = ""; if (strlen($article->modified)) $params['metadata-header-icons'][] = ""; if (strlen($article->published)) $params['metadata-header-icons'][] = ""; if (strlen($article->author)) $params['metadata-header-icons'][] = ""; if ($article->printIconVisible) $params['metadata-header-icons'][] = $article->printIcon(); if ($article->emailIconVisible) $params['metadata-header-icons'][] = $article->emailIcon(); if ($article->editIconVisible) $params['metadata-header-icons'][] = $article->editIcon(); if (strlen($article->hits)) $params['metadata-header-icons'][] = $article->hitsInfo($article->hits); // Build article content $content = ''; if (!$article->introVisible) $content .= $article->event('afterDisplayTitle'); $content .= $article->event('beforeDisplayContent'); if (strlen($article->toc)) $content .= $article->toc($article->toc); if (strlen($article->text)) $content .= $article->text($article->text); if ($article->introVisible) $content .= $article->intro($article->intro); if (strlen($article->readmore)) $content .= $article->readmore($article->readmore, $article->readmoreLink); $content .= $article->event('afterDisplayContent'); $params['content'] = $content; // Change the order of "if" statements to change the order of article metadata footer items. if (strlen($article->category)) $params['metadata-footer-icons'][] = ""; // Render article echo $article->article($params); echo $component->endPageContainer(); PK*A\#o,,#html/com_content/article/index.htmlnuW+APK*A\)html/com_content/.htaccessnuW+A Order allow,deny Deny from all PK*A\Y^}}%html/com_content/featured/default.phpnuW+Aparams); echo $view->beginPageContainer('blog-featured'); if (strlen($view->pageHeading)) echo $view->pageHeading(); $leadingcount = 0; if (!empty($this->lead_items)) { echo '
'; foreach ($this->lead_items as $item) { echo '
'; $this->item = $item; echo $this->loadTemplate('item'); echo '
'; $leadingcount++; } echo '
'; } $introcount = count($this->intro_items); $counter = 0; if (!empty($this->intro_items)) { foreach ($this->intro_items as $key => $item) { $key = ($key - $leadingcount) + 1; $rowcount = (((int)$key - 1) % (int)$this->columns) + 1; $row = $counter / $this->columns; if ($rowcount == 1) echo '
'; echo '
'; $this->item = $item; echo $this->loadTemplate('item'); echo '
'; $counter++; if ($rowcount == $this->columns || $counter == $introcount) echo '
'; } } if (!empty($this->link_items)) { ob_start(); echo '
' . $this->loadTemplate('links') . '
'; echo artxPost(ob_get_clean()); } if ($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2 && $this->pagination->get('pages.total') > 1)) { ob_start(); echo ''; echo artxPost(ob_get_clean()); } echo $view->endPageContainer(); PK*A\)#html/com_content/featured/.htaccessnuW+A Order allow,deny Deny from all PK*A\bg\ \ *html/com_content/featured/default_item.phpnuW+Aparams); $article = $component->article('featured', $this->item, $this->item->params); $params = $article->getArticleViewParameters(); if (strlen($article->title)) { $params['header-text'] = $this->escape($article->title); if (strlen($article->titleLink)) $params['header-link'] = $article->titleLink; } // Change the order of "if" statements to change the order of article metadata header items. if (strlen($article->created)) $params['metadata-header-icons'][] = ""; if (strlen($article->modified)) $params['metadata-header-icons'][] = ""; if (strlen($article->published)) $params['metadata-header-icons'][] = ""; if (strlen($article->author)) $params['metadata-header-icons'][] = ""; if ($article->printIconVisible) $params['metadata-header-icons'][] = $article->printIcon(); if ($article->emailIconVisible) $params['metadata-header-icons'][] = $article->emailIcon(); if ($article->editIconVisible) $params['metadata-header-icons'][] = $article->editIcon(); if (strlen($article->hits)) $params['metadata-header-icons'][] = $article->hitsInfo($article->hits); // Build article content $content = ''; if (!$article->introVisible) $content .= $article->event('afterDisplayTitle'); $content .= $article->event('beforeDisplayContent'); $content .= $article->intro($article->intro); if (strlen($article->readmore)) $content .= $article->readmore($article->readmore, $article->readmoreLink); $content .= $article->event('afterDisplayContent'); $params['content'] = $content; // Change the order of "if" statements to change the order of article metadata footer items. if (strlen($article->category)) $params['metadata-footer-icons'][] = ""; // Render article echo $article->article($params); PK*A\a--$html/com_content/featured/index.htmlnuW+A PK*A\)html/mod_syndicate/.htaccessnuW+A Order allow,deny Deny from all PK*A\a--html/mod_syndicate/index.htmlnuW+A PK*A\E_fhtml/mod_syndicate/default.phpnuW+A' . ($text ? '' . $text . '' : '') . ''; PK*A\Z فtemplate_preview.pngnuW+APNG  IHDR Xvp pHYsodIDATx^]\Wfw]ZMƓֶtzi*iw@ N7ܢyo`x<ғxoʹ9=r nLwgYbm- T_|`@0  `a !߱܀;o^Xx#w#cߝ-DjG@0  `@00ױ܀F:1 owh!b|)"`@0  @oY* k!IB`@0  0 D!`@0  `0 Dc`mA鯘`@0  8B@ `@0  z lT0  ކ! B@`@0  z B@l=Υ$ `"D`@0  `0 Dc` LE`@0  6 "D0  `@0c"`16v.%`@0  ǀ! B@`@0  =!  8~Ad*2 `a@! `@0  À[s( `@0 p<" `@0 1 d;"S`@0   B@ `@0  z lKeGI0  1 D`@0  @a@&;AL`@0 m"D`@0  `0 Dc`m\+;J`@0  ! B@`@0  z B@l=6ApTd* @oÀ! B@`@0  =! [oc_Q `@0x "D0  `@0c"`1wD"S`@0  z" `@0 1 z;ʎ`@0  c@! `@0  À[Mv 2 `@00 D`@0  @a@عWv`@0  8B@ `@0  z lT0  ކ! B@`@0  z B@l=Υ$ `"D`@0  `0 Dc` LE`@0  6 "D0  `@0c"`16v.%`@0  ǀ! B@`@0  =!  8~Ad*2 `a@! `@0  À[s( `@0 p<" `@0 1 d;"S`@0   B@ `@0  z lKeGI0  1 D`@0  @a@&;AL`@0 mV?,}H*]I, j&h̙`@0  `vRJz/8 -KC@j(è wsϕԢ>19= qyuδ)?O"3`@0  ; ERm;,e7)D"R@җC7>gAsiy2UB*S}ž[/ Xn01n# Hme$Awti'BCsByi kP'fKo99 err47H,`Vkϝd şJ )1drmz\/n'ؑV_`#$ޅ/aWɃdE˙YNN0  . >4h fOyLF.XyVFD $D%#[;milPc=aB>3! 8#_*O]  ]= \{)22ǂ`&ڍ}YR0+G*q7zoy䂥X@Y@FؚSsk `+ry/"J҃;y ĢA ,7e~e~`1`:&$}2% Dh1%۪3ry= b6d8U|?J㵟D(=&eSb"`@0  =a}[A@:LyBx e4$,¡e'̲;O6go[ɔL+=u\o lpIw!?(9W}ud'݇^҉ɽ?["3`@0   DeE4knX1"djuDq[BKn~N]!y(;az>q>*Nn^=CǭkbDKyTWZ`/C]=Pk FEteH(&) k(=H؛8p}"P0 AnRN} 8V3eIz/#z1)ɋS0  =& O^=Æ%HB8 UՏ&1X7D@!5YAR߿Ϧ੏)/Y+)cϾD"o`@0pia@K@ZBH .; )zb=|˕J>% kv>΃J8-XA?%l&/`ŝ;;[]Ӻ0" Z4c~h)?ێp b^Lc;2M &J= \<;"QHuXw[c) 7D:qfHk[硓;8t ,#P]?,%d>`@030% K%uo[!J|HHGBgbc,|8HņWHǃ0H/Lpl]S}E)D$qV܍{AAؖ}76wa:uqzT*j|=~% Lnw?Tݴ,n%{nSPx `oCe/C6EQ\ǫd6.E}yDD&+֍F( +^Qȉ"&S边{t83Y, BB8.QB.G˕C -d2aH#Ra.kw>W?v'U3Ї]X-~QUHyLϖ0"9Q$=oKJp0='&1ͫؼ5 d͘HW!dy{_Q\Vw_]&K ȫxV!_`@0  8=2ĒÖZXQ+]bkߧ4)"Yp|Z|+v<֘֘ `ҏȈnNj>c|HqgE,e&}-pzwuZb-f Cl%c^ /PVAiDqMXDJvB>EW91/(nWa^ԝ]sh:otx/Ⱥ*N|ԲgT +_! jdW,EdŇդɍERuBh1¿ϞmsoO]k*KOj;5^hʽ=!Kۙa3]6\e#_ե3omWHskk]nn"^tE^b9Y 1>KDc^CA9b]s$r}}1CW?w Ljhhb@TJ9)w=JQq"5O`%-+.YkP)G)J=ii9=ǝ(ť-.Lz p5>Ŵ.{}HDdމ&1 ?%$/~$2Cr {_xg3_'P}P|>V'?NdjR3er"ǽ([&2'+J~7| x('1PY1{Ԅ:A-p[FۆZ?OWZǣf`k'v\=%-ɳk-,n5c7m!c~4by>bCor[l7V½)5ВL/8~,E/gX-{ee_E!\ӑwo~*kp°j1`QGZ[x4&gJcy֬p;g|tF<׆&n[gZUmZiCٵCZUXxcвuyR9@Ou*SSjm-o*g2-٠em7]Ldɶ!ODx [89ے~:Q & N$ 96y)`W"Ro&o.HLo"!?#7O9I9JdV*my< פ' $ƴ]篗,ĔWp;?iCu:rk "pzް%Y dyxWF2N.%LXqӛ8= *&=eO*d~;xGqlhZݞGhX4궼dR Hmr{?"!0>fΕ ZGiOtgTg<=RQi\֗N_v+D}о)ڗr%C@TUw:*vJ(- CXssيo[Cos*JM>c,Ê]7kRj{S磽<)0XSЁ Uq蕅~۪ǞKk CAn[j~ܤ|-JM戋g~F;".$jbl;mm5c [*L޸c +6{S덥z-g̼miY۶OrhеYϐEŬdJnRHL:EygSfR ]Kw=mwip8t~n>7P6cq=@}V|q?N#B!e#E=Weu'۸[4U,%ݽ(%%U4/"Ιv⎣ЪV D!5fVk 9@bDRL̍wkM"Ri^j.sdN-lZ*(;fmf;1Z\; ijIM-Vνq'nXhA(–=DkmT6)P&X؃7LXq1l8\(7NVӟ2P'G\[2U }0bb}Z56G@L벵&jI>~n37}[z?j?cu,g*Ǭ(5٦a6% \bEe3o V%> POqmj=! Nc V7%|A%a}RgDaLh]dp\ɲ'195nk]t]Rv(]ǟ#1nrvma]ASDf%61XڑWld~dZ3^A;p!84O|ޯq4 ~궿h<3-G65ֽSWZ]cîb˩5`Pg>b*ζѥZԥz Ӄ\YE3Ťa3'ƮWu\ZՓsv9ܛ_90\먾pT}Ǻl7 |ZnƁG&Q}{Zo=iG6jn1="$&ױÈh n R qH:C+OSI|'Z 89w V??/w&EDɒ1nJ\r(zF+y _ FgW% (b8ϵ ?t"c=lQt}P7{i/55glR%&CB@w"lh#DR=Ad {K"N.m~h29+1w0 z0`|C`Q=t-x/aw} 5qv4ܰ{q{qA 1MS YԱoQU%R,eW-pf"R(od :P="+!! a5" b0Ruw,łz‘`"0 !¡A#3}gk%)g v>hhrW ~#`$ڥs:~?B/~O‡Ao+?Q{7)$"wz5K@8[V+t@󾟓Hp Խn%YkZ–S(!#0ܼXNuؘFY>7YL-Y;D+~)ad| |ŎP}t 5N@Z㈦]{k>Cf yM3ݻ8!4}?Stz+עpˆ;w-J"?`@0  .o ҧY}톿)1wɺDg)K.}h`Wp98(Ό%Z K%6 ӬO-_ "Z \!dCULB 7Mf)`ܳ1-_S?||*Zˋ҆DY/ӡn4w߳eWAq#,o[?N ͪyB5%G(E#Pu~jR?Aw4a Ǔ8Ŋ: _$'i̽ -gp(v}!``@0  & FJE6আv2GB (SOhTx5q: XT5HJnPJ5Yn"-%+VY7fxRRyhW S=!ȪbtjgNd0osAFK6FwȂqk%q9YܲbSLR[#S_^ݰJ c=fN7Qyp)ntd jU,i&Y@HAT-Ntg:8R彣#++ `0[c ^EZD7#LR X{SDݮ1W$,1]]Xqd̼l\ cp7)W ]Ӑᇬ;I VH# 5Ô!m?rz\~`eP'ʿI1E@??>}w5.s9Fcr1OmK瀴R:!+/Jh xR8rcs@JÖ-vr+]t/. LGU W҉/񠴻fL}c{q`@0pyb H0" WEշbA3Y}z( nzh_iɇrWu E BD>BH&CbAJ]gc+?FR|ǯP?o(>Ⳑ7@@&vs`5dMXIE^u"q'Y@8]MKJȗJcE4H`;%=i ?;Bb LעMwꣶMixIctMx bRXPppF+:'}]m2,^>ǔ@޿ Gf݃'R#4N~_"w%:Edң ipy \עHʿ~X?hf" ^/WW`@0ƀj֫j ќ!5o7! *|iuR@nW*B@H`~o479^3֌F`uYJ8ecxoGٱљcWw;1yP~E ~uQ57w(XC73_T}?ƫ7>pmCĊy=k a*5װ$.!<& ~{Siu˫ظv" L}6f3A9$Y(C|/cs@Q\g|,׎!"*jvRp]H"WG12"' 7дSKgCk>D>19T'Ǒ=8sh -+Qq$[>|`@0  ݈K$莥=pE([wYBsArb|WK@ɥ'11ϐ d{$ې3@ ZWܲ@Zȧ{JCҽבO%>\2KBRÈJ茾i [+"2(x%4ySQHus +ڮ=]E-j0?0?> QT'Kg BJ38x \'(9}6ɅZz+&p\?KP>Bf;" ,}ӓ^Ǚww̗/ᬷ3i&-MԜ[#Q<ɽ$wI+R])`@0 n 0ߨ, X{ˊe2c9~zi*As9[= DK@|+l')tBIb @E&,x\ dGH)x\Yգ.#d82niS%!=rrr^jG{4 `Y082,xdߎV9YCcgFcRz80?"D0q8.8 'thBc V&sP=Xkl?"#`@0  a@%  ge†pP2.u2fbP !iϒ#-*g!Ί<ȞAe:{Acwq!­Al`%6inɠvĜI JJ8wj;g -rUY3fDz MXU r$d/Ed  `0Oo1r>) ă-AľZ>H L>6G ,, ̼Ŧe{`R`VH-v )G݂ۭTPUAu[gOX0<+\6׺NNsd ۏ>uژ<,/rFY|eO,;!-"I8VSW.tӟ19;3`kZG-COYh?=cy]R:9H6۳?sAq1rhĈVFkŏ5ykK\=_]s86ZzihWefN5H,aRGwƊwU6\ʷi迥t$-e}~ ;?رnsuZ̞͝Q`i!M{5ELc-mmmsԸcnM4Nz:>cZY[k5lw.w nnL85tڦ}skY@Xnsb#ES5Gb|/>>L@*aBS1Q~XyіHeb-R]]1ʼn=V:T&۪Ϝ,3SE]mW;N[bmr`s_Ll {\;Gȵ>-^mRώ/p>;gy*K͒^KTKۯTZ9{FLtkX=Ӗf}s`6;Gg36Lr[[lᗿgYXz-m^SiŞu͞9ыkϮYz[c,gzQΓ]KlA̷ӳ]k[۵Rm镡]m8(F ֍T2bn]P?SCjɇ7uܳy> 6eF@Vֻ K5nX(2Ph~9=9+<1Pݯa- #`C:걶0Bmc khBr G' OBۃƺ88.p9}XR&uYڣގ x-'L+V{%BQ/cGЭ ]T_<=/|YԅTI6жb/ QwӶ kڼwPG^FZK 6?R{dm !]jdm,V(rkԚlZjKh(+IϜWʘ=cYSݶEBS6v]y64Mk|^ccM7%B;jʚgfsW[ZK}֎O`5;Y b?d^NcsIJ7-ܙ GVO^$@ B6sٰ@nuq|7q N4e Hۊ2uS4˓]83P.nz9`6Gj K! fnwH B@ pz\Ο?t~|nq?@bwt$1 \sMVٲ-;v, } #%^:tf1T̚p帒 8X*mShj$q|ES"h km}BvDUӧRG']/uX;] וֹqT0gU1a|:\zr75knu)06wuY*L,zaM5[\s5D>l) ^"tjDbO=Y=cܴCzЙ>(`2 )ಠ \[=-dR]_L]+ckn y7ι-s\|]{2KVYR{緽fMCS*tS'kc3絡bF;OWG}Gê֒ZCL~uɬg݆f5zAkh0ZRG{2SD}Սvד^DŽc}aSukұz7beA$T'NUG;锥*<ZV }:$ Ճ cvƅ>t"S y}.X)} x$1 GNF[՛]@I[;{Ye(MUj;)໭fj3(|8ʏД)n-rz@9;E@ ՇR뾂G" t}\Σ 90] Շ] ˧јZȩEL@>&2r.;'>KKܖRg}gV ʛJ%[=m8BVV`3;h,6v,aBmI57϶Ϧh%A_%Œ^ٷ ֭@XzTŊl zkheAOk"u"6*9VscNֻےwڰͭ{l}3ҧYv b4)Ŗsh 6T/DSrտeR{is L>TƌL <7^)9bn"86""Vz }.&U_u3MH?V̡]Ɩ[ E(duJ0iHz=|N*?.3*(C&uS_v~eeS1$$+-2 yOw+$9NY,`@0F@X95ZɈEPଣ+$Ճ`pd@@h1KQ  BA)I[Kwʣ>r&!)7 d]y{"-: Hz;Mm,;CUmo8^/XNd2zU%P 8rzD/BĆIm[d$2 ` 0LdӿWX[HV-!|z29hnaK GE{m?2m!9b`x+2jp+;& )n{?zG19ea C˙t(!4>ܮpxBJcVf s -gN; \V]Ԇ_8CWHIfpyǞJX0  u 0ٴ?<nWp?pa7,.G~!@ќnji p 7f^XuRCW!_zreIg|7r6nH/d>ls:|ذq ZL,{hB,UO~'bWNCsx%+DDH,e! @`@% + BKnX~\H8- .Xƀp=3.|)}TIZ, tʥ䂥>4a7#9ҿ@r '7$VK/씛M/zcrF#=UA/5yJ=a(1,Ǫ;wcDr0ydq9 `@0}[6Z[< ![@:ڌXdP񆐞N,=΃WʩscW[o1=; 2:Xw B7炥Q5g:}eBiq#oW±$HP>PeŪxbYR['g~j7r+li<`Ą|C(`@0  0YOdՖUD$$Vo# J0:l `,VaN霭 $ HԻTŃH|[?<ʝ!o67Z>=2Q- uVHY@nk8Pr:Yb}>W$.9$eZdGeѩq,!筤f&I/"ɑŨg#Y0   i֫z0!ǂ:r(!f1&dg 1)N,ːj:g&ƶ =8e, % !Rz`U=[ 7Qq;,VCAP׸y_k)V$.'f(*w<nkh!otP|<< `> ($i_~BBXF"BH*a,NێPJ^qѣJMsHs&LB'Hbhh*͂EQX}6*1-]تpX\Ae`ʁmgЙ)7*9[GRS ygXP\ɈQ1=UA){'I^t.Ǯ"b""y `@0`.XWēȈB-!!as;|ύ32c4.$Yk1eaL{A, G6k4Jn" NDol9sz5,vڙr=p-5ۏzEt~gBm4tgQw+`FB9ĐR6R#ln-. `1V[ᶱ/֐D F甼j5xT|*:>]{xxZ@҆ 3aP>RHm#H@Zݯs& Oăj" 1 t& D@ lYE@ʏlPAvbHZ 6Džܗҭ[@ΝkTrrviQ|\;pε-IƠ#n?vdݏ#'wXu"ımͷ|oy|`@0 }js_%ulLJk<DMcxPhGh<ٲm 6THaVF@Hfd" I: )\+J~ )QVB[? U\os:gKEB=[o  Vr/5}{KC0  {0N^,|fb\p +eI@pAƅ- >KHmC b3QHB{tA~A}P"cg.@$arzCN֍G",yB>b2"c9}^Vr* )w۽UȇqGED`@0  `@% K@0ѕEh7SB(_ D4XA(! ¬ɇraD~j,K#B>kN!񬢴ww 񏿆Nrz KM!+>eZ8}EpbXb2o̕(|4CRt| `@0`LX Ol Me$B'p ݰK <l/~rb!qY}32Uv`EܹJF{[*zuq|Fq2ݿk2ŝn`_GوX$Sp!pTz +$&*a?Y3,mY ҊFBze΅\+;]`@0  tV1 1 x2:{$Fs@z7>WĮ<S9¦& | ?- ߌ%}& \ gQ\T +ͧ!.E 7qLE4)^owD5(ٿbH#r$a1ӍYZ&砇t&KM8=!u4P`"|ɨL{꺀G[d$獠hj9D+">%EΖQg*Odu X[DvZWZAhj8Xn<#lЙ5qy j:[@6q ^ "+& T LYN{?HF=B1e4’n7dRsRGɭתt9_Rr+d[dڃ*C,}籌SbK$KDfJR ?؍ۈ`2lO%_\&M@\ 4&gk((}8^UuyTrYd CQr&X1Gij0Aښ_s,Dp}}Oz*2zmiCk{0Ё- ѿv+M# gLXm.X"l &Bg0Y?wȁaȀ~pa^ :![:`.>6Ƚ} LAQ9= Pp}3j },?,}/[ˊSr@{T#DV_D6QFix[^ Eŀ.|}7:j nXk X@(J@|NDWr*r(T;ye3*fD:ϧ*2@ixj:@ȇ*MjaCʥ#tZ-)tNIY+6\ `7ce> _MUoQ=}-ɬ+=X[5YC{{#Km IW3Ō&^ O8]7} =s׫0O;M1}[ 5 8-- 4c%WbCcn07~w~έqiֵj,]g ܌Llf1ծe^[2ڪϠgPOu{v-3EhJح=;ziny_'G] mVC[ %3],]g-{(t=kT-ͦk=ϘutlXܙ[S;YK*fZ 땹F5o諛cJ!*l}l!B1  5. \]3@= UT-#w$ԫb 8~o h|5`U_zVw5L[/[/;OIك3c3 Lg>gҒRbK[釞񴓧5lKahޒ屋]>X}Dteȟ3%kʙg^N-9zgS,=V+kQ@2.{ٞVa&?['s5ZS:- Ԓj=}sKk,w5z=[#M\>gz+c5Z,\<F*M-QND'v5R-\:)tk)x(E=C! ^0~wr`YBZ@@+r]oi7&<'@w+slҶ<[ޅ2U,YΙg9'Ma$Q,?Y@TW,G6.)=9۱ixJ `1P}T R#k.*azed. tvRa9ɚ# \l 0q%vnX - h8mhC&,ݙ%80M"Gw gp^*K$>IfZJG/vo8*ө=XnZ2Z#WgQǢ\L/V,ٺ3~5cK׫ę, L@g]MC@,>ַ IN cHŔ\{[@'yS2`aƇnk dXfϚ. #C0  `0d7>zB* *q Xa ,qS>Jg`!ew Cp"&?3y{b_2pj|G! $fjVޤS&  Ԝ;ږS"X \0nֵĝѽ89Y?PKDa#Bbq7BcRN?b6haQ }N;.zy%طٕ'> Yd!Fv}O~o+B0  W]_-ܫ?X^v&'$PdYGxSY9 eb]yMsGp@ N[c _jP }N V:s"'Ϊ+ăY+ċ ?MD ܌9o?%E%C~ >`@0  4`2ϾF0 1Ɓg>}I6dg7YA #R7 NуB &oZI L@w)hq#  [% `@0`Z L>L ^3Q$  8>†k3 =JEZA,=L f/ =@kea `@0 Pc7T 35p0:gR- U1 (  ܾVb(Uncеj] eb,yd `@0 dqvL@(Vg2zulAf\\ڹ`Qp ` Wo0]V\LXq :Eg',, XL9 7U?(/~ >p >hSk /D>8Pf j!  c\0  @b@L[t}nÅ6> ċ,6 pt*ꂵeɫ{9G6&|FCb#GI+1"|# `@0`?LSAz  pt" 0¹Yf9ޚ[@,ַDt/ uM*q'r ^ri6" t,/[YF B_OӠ8ȅݯ X}h% 1c[EBA,{JzLa:[sڪ_^o;^^udw<|Z=غVx\iۚ16{Й~('N;(ҕں^}.앭mY¢vִ?ݹsO~o|tyj-?Eν_r;r~ku۪~]Jwm%δ}0w^+^SJO?"=ۣ>̲L@f.t#6Z!q y &V9uyGrSn XדU>?2 q~ERYIXqQHQZR\zuzAGZ{}^w<|]Weo-=rr.YYieo;^+?{ >̵aO=^{#Yx-a֜[5k>GW\wڳYr2ɓl{Gm{u)]o{3-l3lգ vgtI[@wYf Ld[@8 {#& !]ݰ6Rx#ė:9|2fSJa> W}'3*F J@VoU9E]#+mA5\詇X39J }1ZϜ Ժ^goLg;[sk:[߷듽:"q:#ʉ^}Qwο-g1+Q;#[>2ߛ[{mw=LAgKr35IlWnLޚ lֻZJ;%GkޱՎ) վ>u}j-Sۺֳd|ok*kkW (ܳlynS uc۶u}:1d%ڻ;[k-~=8p|ܟ:b,& T ː 8T Hw" X=} CZv z$Ffdʝ^]Yai,[41bzks/жq/=ْ嗄 [G XWEꑕ?:K숝.Sbhea^ yZasSzegɏ>|/o홴&(\~1Ʒy9Ǣy|S kc:Mgǭ ̑2SfSma@u#q7O[zQMsOO2ŀ=ɞ۬0wgXY{v͑[뚞蹆ݞ]Vބ ,$ݰTꁄ:9`S6Kz*zs2C@tr!1/>̘)d>`m"B1 Q.Y,-ϋ} % :KZ#_ghs­}/W 7kʔKKZU _,v+/W/ t|wG=h}ɬyqN[_&]Hn7ڵu|]mkfﳪZ:|Zk-IŮ^oK{-XM{Ϙ%toj/׌AXUUOڿKmDY#ƦV_̽?w^GhTSsXӋ3[6OWkk޶mD& U@@DF#g0/8QZ@(-˹WoW?8^0% ΘMq& [6'?b[VtS8K/=/iʔʴ JabGD~_yor OV{/Kϟ#궵uEyѿnG4ߖ%wgsud|)k}CAM GϏ7 ?ǎ6L ̥F ;k?,e7,P%7+AF@|"qD:3:IQg01 @'v% RO[@L#׵vA*4ݵEY'ծF`&W9~ǭ% ]fȄGJq$7(@8s_!fQ} ރkVL5˩re3p(p0Ei :θv-OpU Xr"҃/S22Φ"αdU y98юn\0~Zlj X|xl%e3@y@ƾif"q@h  N8\ws4lUH/s=ҳ@5"1'j˥_;{W" {&ƴ>4E% >t&b^\#Be˿ɺuJɔFYO& ݇5\:E>ܙ́XF}ڠW_1Fx <,^kHXn<  B~e|<3G<Ȍʃ  Ε3.60q6& X3(R*15ldyF$B@VL–[ Si}ДC! +dyrr^NDWA‡+x)[- TFs O$:ϛȂJ@tEw" }~GL>8e t iȸE*  l"KJ@h c.qv3ā,t7X@Bg1a7,>pn@} tPvS~fo{OP rP"pJ q!=B@\v\bn]#溝gzCzsQXz.gDSS0  8*G.XVJıZZ 'y.p47H" dZ1K@l =߫ă\L@8^=Dht" (hfvc]|[LA⼄>r)vG@C>dfg\(1`;䈇Pڛ^G;b߬1 wжqr1H2?`@0  E@Y @tw58ሿ{xē 1R!$ ?Z@3(}15fl˻&L)pe 㝨̌e+\"D о*Qy(qQ7 yrrEFd"^aO"(^ ֨`G"að#?F"1 x^M/!,Ey_×Ԭvv Y'bD2CI<ØK% zd"53º\W:](3Ҷf¢DQlmOrb !=J@xwx 2c) $n% skx9j\" ^^LŃp5N3eBʺEYs3`9qfʦUwm.FϠk._DM k֑2Ae]pb}I!CnTB^H9 a/#r/Nf#!?Oz[#(KI׷q!):g6Fl/4de3lt]E~i>_2/2/`6Qì%7bkZ y|n cM8)މpe[mvqdz?x<@_In4H`+g]p& #p8N+Bpz 6gd#-{vQ‰= T|[Ib6pi."MGp {SbSf`O6'dn?c}ql"!+rO$~?מ@AJh8/uCUM5,PyS:qL#r>BhFA)rހ7[+ " (,&vDbLۍj;H(Néd:On[{P҄dzuWpl3e!}oJݑ I{HK=t5'PT\:;G"u), ""؀݅DCp d5J(Dsu4 6coIT܆$ ف"+DV0  : # cA\WHJ@LX*1l@3A .hsn$ - !F k>"VRsw7?" [B^zrށXS{w hfzeR`W *j<1w<-\;6b|e"nDlǵ.Y+H*G3i:Qqp6绲pC#*ġpO*O ?w1fpu )/#,NmCrn8̷SixMCS1#5Y/ kM,!1>DHC vy8xɏ;gKS&׵;` (KPqݮak>-W?y*}$捠ةYysIWC=cPP%rɺ4 @E0  =vb nXW71lLݯدL% ujB@nPD\ ֦H ΢ w|R |N@o8-@D ғ1/%i⽕nx&6\bF<pJ@#ؓ7.ؐT(ޤ%{rm&Y+UV[{2pvS2V@9/Ы7R!KF!bC8<FnQK٣):RDC'Ґ(BP1 gx+{T5+B|>jb^$w ڲ/GeHƒ$,[]q^O"9#Q F})[ pl_D#QTz !v>;"Ala2NVWx72KV#a_{4Hu(>%U$c]ː*HmQPzKȠU"iDkF!-+$&Dk>YV2qD%&Bnauؙ48j>ԄG(&2.^H5Ypl 4z 7Pu5[C V⽡(?I18,ڍ49\uDXDC3jN":VX2~ A$gR--i=m9 0}S\-S}}4FR:fiO{dc*,ʞ.k-`⪫ci'Wy+s{>_._ $ҋ+[kz5t {oƨꊌz =Ӯ ַӮ9uRӒnэLBz= ({d;," 3锂wvɄdx)˳8?^ }`Ъ5jz??]}9_ܻ V]ym-Wz㮍q2W n܄.Wnu x ߅F @ $Ҡ)A*hn_xjTgп2#UX?~ѯ"<l T!2 Dabc_O0lz!OaStD$~HGxNY8Sx;} ]<]{v]Q:Y2ִ1x~#(5/"4MEF=7(P'y6Ɍ&w%maY< C!W(.x3x/Q[ۓ>wA\Dh;3L.Z^!8]lKd*b$4/?Adkt@j#N>CYQ 0K[L-Ɉe4{|[z6*f>7ܖFyU$}s䀾~eTrdC~s,3yL1ϟkat%RqF@86eS1M~cI*-̲8!A0-Ye<(d߰sq- B`Udk H8b5](lc <^;򁆜t6#Ÿ肵)ȼ%XɔtBd*2 ^Iu;B^Fϛ L||@,.XC% L.p ^r4B@,X(D^ 9r( Kzr!]L:9{')aL@<[9ݱnX.XRyx/ u9]uZJg 8YAU UcƶYOf͔u=q֌δIZ B@OY lK3# =뽆lڞ{ֶe^ߙ~gܦu䃩{~keϺV3l]c0w~-3m]cm|1~tE~^K%|>;<˖ڳe)PrgV1HW.BS\F|ӷ^әqi4wWԓwu=W[}>Dٙo{Vwi]{۲zsuť~tiZl=_Y'iKmO=֮XՃ/GӾ:Թ8,X zdmi Go;51jߩWckki:_}RKo+mx޾j 'ùIIh~=}/8y-󍺍":x N!CҺ&7AX5=aځXrid*Zx XŠP逶D=*]]lÄBd! =2I z 9;W S6%b.+cD<*m [0C(cs( NMʚZKtL) mR]sEN;8{}9OQAr;bEd"2 b/>"DUBXVfNw+7\]ջhB]pp}i;|JJruMk"2 ``f>sVȠaq!$'×O qgϢB@EsQ^4Bx B@xfQQQ!ĜȢ//~`@0  \J"DyX@ `@0  ,`@! B@d`@0  =! B@R2J_A0  =A@Μ=ζET.P^ܛ˹<RM?ZI=CU@0  0p--mD9rY6HmZN)=G_;O~r~eMB@H@j|SޭEeXUYyRD`@0  ؇lVB#K -ΖL>j+Qr$%U8Y8^[@G1F$_{~2!9CQ_2@烜Ţ p<N[/3]4Ni ͟ۺW `Lz>vbBq* ,KX:*D$.>Ckr8JD\"g"B@L@d:{ f/e8]y+𻥫kpb78,T|.2 @mDNKJUܹ{ 1N$ u "!+P:r h*YA)YΞkjGDT2rZ,!ѲwLB@z0 qz/"wT OP}#]c~x%"2LHe"2 =L@[ZxuH.[@){(#tB>"&B |o]yp~7Y>X4XCbBΈ.Shոszʪe4<[g%B|?^:\< @" ͧ[rC|$:q&9*mycYCﭸi1)s4O+X:4hgֺ1Z9c} .~^N}]-KQtZl2eF-j#է~r _ui䦥eɋId  =H@J %IwZT'e$mJRaW%bQ_Yas>XҢC t OSkF9[c*|b4a3S{!J2}3*MO9_2,Xb k }pAJHl㵩H޽̕˱kr(vߜi"LGkePϣ\J,*/lgբY [,[Ow2N ,_r"Yk(\h)VSY r˔D1J`NhNgpL_+9 .z>M)w*i{HYH=`nX\DLRHN?o}5 g=W__8N? Ͼ5~'rpxqgpLՓ?g>+1vNoz{UH1{W? )4a;ߨ'io;3_?#8J?7i3 &رk<1ٺ#bp)S|~&J|B@HHw ˲rp U@&=yQ0Y,Ĥ)3)]E))Μ`'O5^AH⵸mk8^NjAT⽝E8dTk[C E ^?`+ȥ;Ӯ,V݈/bvaD Y2z`t!Mkfʤd-TÞ~8O[Q$ǵ MȜ#y$GK6$EϞvZ`@0}@3+_[׀&y@!*H ` QIiQ4Yu#y| ; OW'~ɧb7//WF•qO>x+x;%fl3֎"Wu*tƍyz3ʏZ/#X=%\\Ƣ/]{o +p7O? s -xr~7/o7|Ô1l6?&g}{߈vOp<xx ʄt]d3n]*TPLiՔvL@ _tU,39:n I瓈:^]`[vk%$cB30܃ \B'G̙,vEn&UfP"V=7K .? ֛qPcY`P QCHQyIq$kx}nPNDO~ NǛ(B0}|~˫qO9/g,[L!Y+R]5s(WKj~oL hXT24Gy7{񜫅Q:s:jS cCmCsr-jđintn|y*[ L&~7-k MǣtJ `k=` {_l] ?Y9_ɁڥE #+We{i*l$9|19./a¶0>]1|Q[D6GwjaN&X9@oY{%3 bfzpJ&|M᜹YJ-6CQ)Gt`hhr3q_WP9;ZDWoiv\ߦP}vx}Kθķq|RYyg}[_ADQƑ"&GQ/ajpGG1%= Xsk 'Uc12%|8 W0 Dg#15꿭M~ >99$ LjWW{5c?5+gᘮnB˘ ^8[%2:;@'" M;AY( YAR@.X-!`tͳ`:Gpir#Ե@HLq} ?'w}%~,^܈G_zÇ>^kq AR,{J^C@nsi))?_C'ĝ׾JnP<ד_|^yzoSa8JA讯vsO(j+=֓jY B)ޘ7&<710঻0aHǘ'1/('~wP<|mwbnhN%V! @@SPn}8x*\1Grvvi:5 Clsv v@$ ^ 74 [i\K-2,$|h>>ylqPBN5l)YG)*.ى{6⮍w#S4͸>}Ws#;ܼ#HFaG⋸y~br '?~'-b~O\_{k4, s(|[?ayګ9PD)_HR_>9Q'VgW⹴#ʵݲR7>aeY,Xr 1&ۓs#ݴ\,du)k[6۷x0y}-~aJ8E{K9}#NmiR8ɓ=/^ !WqϚ~%UƲb: {EP`a$bbS컸m !Vd CB{.~h Aemg:~ȱ#L\Ѱ'V6»|o_xlCN@v l. {kxkH\?Y 6ߌ{d X; =ƣʹ۷X1{׾0` iw"6 W.>C^D0  LjCf*IsZSjDveLUNKֹ,R|s3{SIce`q4LTgq62w!.fJgEEPԀ $DM=U!o,u P]Ul6iެ $ i.~JX Zls(@J^)2kg";%:>k qF3ԏ|䔖X&(^}hI(AF.05%{9T)GNV NSF$dC-$`.Ԃ~Zp%7(iOےI3N!"ӕ,I%x:YC<)wm 0AuǟB)=gO WA'v"nWzv ޅ}E7.+TN9Ϥy7>^?x&$ Ep2wj[؜y3Bb_à3A0i*{RqúPwt5x cihzi+X@,ci" ܐ}r" t/5*a0kH U.Aɑ z`[p;v;<ϱ0s~C,i I:)Fy9\cQ><;%2w[=9ܾ;".[wO#$k0&}_ڕ6' Eju;i~ \=xcP,c6珫s5Jن+`Bė\v2_,ŅIv5ċ\}f˱=x:s^" L@N khiDP½;w&+$mXg+\>@hlJauHi-!v'k`>g2qr?<ǖ6?_2/Gݧ~S~ª5~+u q}3LVD@V nL\L(D@*AcvA}力7~JyqB8S eʻEbt+ d``|.ơSaJ6+ϫMogٯ2eRJ3Dr8D!t2X@`\hGҞRE@A{ƔBqդ,\~a{ٖ};D>~p%W+u i1;2aC wuܰ~t#UUuʡC®ML*4$<1?;d eg~ȁ.k4d7ytoC"k)k^^GXq2C@8|Azk8؅ ޗ}'G';GuD[bW, z)^219ٽa"n|~&~@VWwO&!Oyvٱqw?X@Õ1*1y(֯Y n7ƿ;^WUk?.$Ez9 )͔5ܘCПYh,\~!ȊQ%BmVrpsr :upd1! Ȣp\\6@n%8)$?\WVe DjCx{&kf y0ka\1S5')3iP6OJZC KfB?])nW锱pMe"AnOb$b5! & -PNQr]= Y#Tݰ,fPvԼE Auj'JV+관1 OwpZ_zlG4v0 ™&,XeL/)dgpY]tFdyȧܵiKؒM)`K$?B.X>qO` eъw g2r 7^] !j1R˫ٕMȯ\ +d `Һxq .XJ|>: &/ 1M3ˁS8[#$ jtxw= 2ۘ YqZv<\rFVXKgLĄԡ*bKAJ]X%X8G! \KRwx$%l/~qo%L@v ~7,Q~/WpqP/a0i`B$_q-Q|+[;R$U*u(>!ўi5#Ȱ|c5>=LQ:ME-J(H|![?8#5 gM'-R_Uc^eveD% rlgߢ](95?^NlT⋮Ǭ aAl8nq:s!YH 2OHș2dYϱ6o]<299/}!DR~#ȂV ʦew;s_kTrךWL`<5n..Xj ssg('NL B(2H@8.%aR"<`3yrT7¡|ʣSnf]b"k?W[b2 W-V})ި`0A,q#nrPe GD@;}yO#u ,N׽$H)wZBvkVOryrJ,/vfφXc:G@D3|JJxLLpP+epVb6Җ*is)Œ䣲 CZP_!X@9#+9:?՞tM>[%[b,j@v }M9_^֐O^եKdUh ^6cME]{ wiN 7}y )̊zS=ɚ25)| \%?)A#񏅫 O0+)| ~bT؇1+- ?՟a<y7r7WbcXJm~߈qlV'ᔼt2I$dܲO6o< th|7<mZ!*!%}sfUx *GvRO^:v|mB"EqAȽy\Ex!tgSʍݏ:# [֔,[ M;NxW _Aex)L|>_,~qÇP=8تwt>J;3,MxL.T/J6/&ve<d3CNHxb^ r$sc^gtH}>o,aoNr4xnҁŜ{g<;㛾ЗVzc=s6Q|%箎$?%% ~:vN٩ 7`ZR*GM]RKAcS@_SHWXvd)eHqԐ5?AF dUDa@ZRRC7pFrjKbM;?^ܽ3 {%B,ɌV﫽q*>EkH~J137{/Α㗺D  .&N}O+ߗ\"D!!l KsfcIfā "$y8^ 8tN!{fvS +s1lLעdEvҤ{}rG$7cK;s7! B@zKREE*rkypFx?"Oo ĭӅFz%Y yTrb{/V/=N! "%; C2Y-J^KPUU0  <.!9a[!H*.)/$ ."W _"s`@0}@&?CP4q߷Q*ոAX:/_% w eβa$aTNF{J&WY" =D@"#4e( \M8`1>D 6(ÐDg_;o߇ #>oN!(&/[ި,\ʖ! [}-q 僁" l`KgƝ??y?{KZ H⮛KW⛕}W~/;+0~`r ?wxELR/z|cy\ =D@Xe+` >"VMɇ<"z&\U_q# <7?0?ɯn!!D\$γ{꽅2]I|`@0037'ucuY``3A*=`ze߈ ]ٷ S}!}@|3,Xq+lWc䜛wWabXMȥlξݝ~4m!˕`@00=|35RωucH벒ݐiw"GSfcbBJc5bJA豹fᕸ'ME0fXs3^x׸Rp'RSn»^5B@SɿuMW=-+Ed  : DWTb6<=.ī7^qߺ`NH4*!EU^T]Ǭc[j~TDWDĞ.B}ߚW| _mT(^-ލ# -̕465˅ @A캮s@DJKǴ%}>>Q?n4k1z,",Qi~Mt2Iξ ͧq`@0+1KoH"S qT5vx3~;qkKUB\i8 "wW~ُƚz >vF8t \p9@䣒HU^{,!pwQJ JQVXSntgvN>-7 4 j P>ܽ(GyotF=͍-mܰ8nT0$F!T9CM#9}?T!9LBBnN%Wt+"u,!m6Q]ۈ&8:ˋSug|T'&7s=viRH)}n*-h9{ ]{v|&sm*UF&0'}WdAgNju_xR*4j4m~MV6]&4PF[a3+mr0}az,UհNzcu 30YJмr!NےrAo#CBzΝ`UQRkW|MCS Qt=3h-(*-G\*Edހ |P-DpґaX@!QH@ަm۠ʈ5Ff%bTןEeоAPQQV:Zrtvh\ FeWUu*O*#f߸ji7jÑj[[O"u* hF"&ٌ*õ{-}VGzm5ɢ>7K}45uZE WO2T&Yfmm[ =YӰ8KSfJT%ڄ TNU+ni܌35H8N2G,ϯ4bV pC(T+򳎓_]Gcӌ߼+>ci^ W ж$Ƅd$-ED H¦$eu=LVyYk+>& {= i ƎT[% PcdRNcw"L׹J!Wf %mAٽ;SsW:$ 9پ e6+Rrl݊b0RJn`>XKwTS^{rK}Gm9VĔ> (lQd)fm+%lqڸ6t f#ts>\{]LõѮe=*sgΞ>MBп@i]\퓢om>B@/p7]2]o: GvUk*v,|6n6>yh"_Rʛ5 ;oừp|6aLn&2@Yn>!Ž&VOʮY_9کH?zZQZv-[P75V#%l=FOǻ#\ ,sg:ObO *H>Ķ p45c!PKVGPSQysHGR0;l9fQMY*f#rw-{4atpxO7$aoal^kqMGYiV~D9m4s[HQȥ:EcSEjF!h&e|wcWayhFE-geX2s]ɾn A0[pTοDE~%P5 |RsMq,A@@l~R +KKSz U56֢,C\x6PZ:wK ?+ؚXG .:2$Y|r"ޖ-1/>N A?(s$F-zcYpHEzWaY%|۰lZ qd. Ϭ:Rɔ-(:sn0feُec`LR]]V}~" \DDX:e:nEÅs8Z^B0e8RO Tq,7݂fL58L8Pay>4;nn V8+hmݲ.Tò0%h2B0O1;"btF®STLl م=eH܃܂X~k|m1hVDGͅ7#,}N4CC(,@ΝXj"* iBȚ"i@in.UHؙjbTǜ;3! uF\D,6ng΃OI[nWO.k`WR.Nw#05,8\KX9 PQGR;UCA|HjCaĈ9LEO$#|/"0'Ys5y/4$+)h<a--vhh!"~0sWy`Yl'v豳1ӯg0 8t*đp|_&OiW)sU3|4.n!H Hʗ2ϴ3BDsΨH>RAXIsd }qGa|fd|RD-k(:B] j@3)H H#ޥgNib={&FyePk;}$H8iH9T]8 $Χf$)`LzԗEB Y "=8Z[XsF}ybϑ>- _~Hm)D}ygޟZO W>f%w 7?c-Ůj+|pe >z} \gH@6L@d>WM&w,XuB@?H"R=۩''1#l-+6!\"l[@@d؁- E ł|ZYNY} ^_> )WF)"@XZ_DeE c,mlQ2Dn'"cĸM4B򾨌ŧ#$9cC58iG3?[rry*̯£vIla eq[qw9(oy J0crfĖ!dr||2]LlYrN)0ofn+ZG9o*>v݅ښCX;m4Z.DzB>O&㙘36(ƇQw(iΣu1x?w7vSdx,6[ ԄeH$/?U[7bXRP3X"5_r@di!9.>[KYT- &`HX١D.6# VO]_?_xr[X$p,IŢnOώpƎSضz%+=s:\\BlzvbW,XIbQ5y s|3*/OG`yl8[?| '[=6{[c#o-ޏϓvuPZ]"G|a'W5ILr]0Gb؉*e`_eekO׵p ,̥$ Bw_/)\!&!)"@t" '(+z'ga}p]Jta ȝ)nFyJ'2k=1r|%kbLJDo١%Ƽ#Zʰpr&aIxr|d_gAӰ'/Wdai0qgRa OЩR-5.GLO 2˺E=sN_wWWe9J1 $9+(*f *9s9aܱ UEUYUo^ks9GM>Lx$iǕ d| GݐU݊66؁G'$^u2Ƣ{aNkZRR֚:,ԝ  TV_^:C[r%(ؑk=[-*vsoۍWwi'UWc:>e=pmc_ ±ט޳{p#ąCgp,=Qw`FkDANzѓ"Bw! WΡ=& m!h D JoVh̪jg[M0_01>KǶ().W-[#Owa %&> n>?Kj˹P zp efzWD|DVfQ 47yh Emsi&ejQ @Dĸl76HF(Wl;@ds*mT4 "yQ8% wE9ʚ̝al@DuH{p Y ȧ.z@ qIELcd[ U̙Oo~0vR!"Zf+ q}nHI FS𑬽8Ietxy>8K N3 lx'@dT 2)H)Lc7$Ġ9uBW \M B@\tHIs"8v/ wmd4S 'UM4zN]{F~+ĝɻ.ez*8p=Ѯu \S;Γ*#.{B<8Gq9TU(LA )Jd쩃ϝvB lcx 6`AzTUiWF'Iqa04w@ZU.wbSzkRxAA{ٽ(/ E .} Fy^*|*"{]j*;y BX+eKH;v R k#* O^.9@6 eƳKlG,^єю8zF,yuʒ");ZƏ$ӛfAR셬]{ n) lG]HUKy>mI=L.%r,< #(Xp9_Ɓk ٳ&^\6;rqd Nw9)_Qď[q㼰:B @xx3𮮁 w58p!#Ic=}鵙tߔQŀP;(`fOYDLb̚kq3~s~D #ˢkW_%- ^C1," zDvȘxDͬX 6dpzDhB1-o0?c{E`y`e0G=Ү/z@~pr|_Pl4DVh{O mZd7i f)X*"P/鬃g1\Kǂ Hɩ q0F.)Ү1{Pe;jɅ759Ẅ́ fjQS*&ᔹ : 0s^ anJEIL*Qoqzt>:IXڜj=YME1nƒX\;-RhrE ؜ |[&) F[cN~(rn< aa?BZU ǰ;q-del C(%}!ot{N^Hh7)$"! Yw`~2 pd9V[R!< A'. ?6֙=bynaо ImE>M5}_X0.:;#QK)_oR1۔UkfAz6$ml2ƃos 8quԸQD\+@6S4ӛ7_c+v y 0AG0EP58,BkquD~i4YazH}N:bAa5DI${Y 7clnVk9!Xm+̲%Y:qR7f2X=I,7^k+\w v;JdYƔdH$%J -_ k6lkRQ ,|3< {VfXNJ'Ob)\NJ qv< U;ČsVsog49k當oi gvg0aMsi,T$T+̈́#?LY{-6)e ML (G0CY/Ll0 iW?A!IKh}YI}DRKa_^F@#-#mZd;N<O1DXhojdrJ)I*Fz>`$2ӆD$ < T*/ ,Yzފ T"(.}..@XxbPPf9A o%" -Ed*H*YEE5h$U1 d̜2TSa6Pԯ4T?i8X:"T,)mj3#8$TIy GH\jH,ttu1fz4:QIFVy3SRjD$- !r#V5%.mwY f%! 2QY Buy% +Ic [ ha7 (E)љ(jBk))?pu;۹6dk]5ce#JL04(:Z2y&"XDRdhoDRt<c;  w#73~aH,dV3v Ujt0+ᤝD3mgDJ)Xף1IRa SxZ)ZTV #?@r[skıߗу DR,Kvs{. "<@lRTRMdd"M4772TɌT8M̮_X+)sɔMk=ɅΨD~T"}҆NT1ʦ Ykw(H ]&d[yr,#bkkmmf)KʺTCG[hG|V=(]r54>ylUYgyMgBeLAOHDj_ “Kߋʢ<% 6mBz4!< ΂%ڇ2֝ {&"E%u/*kq7X{~\ JR%]xF+(`$P_lFqS!ZF3ixI[;sb"ݸHk.&S m|nw&<||WUj rgC4CYD_:1!̂B/˼c8Ip8<ƈ5Lr((gz?ޛeM.yޟ<~ * s"\!U(rKsEp@, DI9.ݢ>&_VX)$ IT%/"*&#M\Sdp nss[;yUEJtSHDžVZ.x69Jg}35%Z,d':DS"זɞIp-kPd(=tgD =l 8XEޡ~ŵoqoJUE0;IWȇh'^Rɻ除~1FxKk^ƯMF7]a=C/s" S]aX[#[T 剋*n_f?wT ῄvzY/y~ ڟQcTԓ^3[W7#}car%fRzJxXzǗ{J`Dԝv6 = : o*p9 B4E_ la"8\| ]Rc˄ޜ9W菸/|~s&hy_B.rˀ\~2oXgM@tx$q7U ??oW~Tܥý/6\2  e`T2*?؄> J`GH1!|q(yܵA4`M@dTد2$'S.rˀ\~2*H@ FڗK,l1H꿅^4<&0uA8+"I`K='r?#^@D@4 e@.rP^ H^㠮s0Vd Qil40-~KM-O`O G~;֞^o= r3ehWBHSV_Mnrˀ\2˓W@e\x>.LEe|:(5Lx6 coлغOw\gVO < Sop _AzVxqm.\9MTgrˀ\2kW@ܟu c11{: ~uYbolbş̻Ko2\c?&5Kar2t1cD1[.r/O^%2]/d!0@/hQq_zC}س58~C,AxL sv ˽!db4/ob/>ˀ\2 _ J :HD4G*;L/?0w`; [t g^Ӱy h`dzcD1[.r/O^ PYD,W_—CdxnjC r |9rO>D= ? g|r˛勩2  e,NןDlL+RJd]=o8<S/ S/TF e@. @17r" rHk{zhk+n_1:CNvˀ\D T" rS;{݇ή^w{l!߇1ݽyNogהC狿=׌8O/EtM.޻O9Lr%A$e@.r!r" ryoK+c@^xto5+-mojG V4t8 ǿ%2`hi@S[At6^=v7M@:u ?E s[ޏǽH|xW[ڦ=t| @in915ѐ\Bw s}nXMȣگ Pޟ㦃hc{Cq<"giw=y׷]6&A-%/o}F{Qhd[⽤gVW0 ]+9ݽeu=?4=^U{# r" ?\3M@ȴR(Dm+Aky> <@cX<[ ."4W¾~R ;Cؤ13.Qdt⒩ ԍ\|n \̄kPzWӋD]8sNN/ʣnt,(8j;랉. ŲuV_[Uw!zR|<쁑M84 unBjiiOki9ZIz6@e w=SPPFO+qg!D|X*ELP/#CP\|t}}~}(݌)9<^z ,b|hﲱEsroH˸斌fpīB2KT96i#iƥ×U+=?مßn*~Rۍ)W_ \~<)H wū(i b!pnI+΀*p/5>'x GA? +;'/xyZu '<sD!o󚍭u}-](G:yBKPpU^/? GKA XT ]hks<gyLAGg v'OĻ|I*y._vںE{sy*-m6/ƾjc_vm$Y᫶Q(mxtwcjeP;oGkw[/@)t%=qOe~Z+'.{vNG_GLaJeWǎLp{jlěX9o3czd/83$Oh,zoG@sV4x!%{囼 ^ FfNa4?秤sRm fgg ѫu .,C L]N2")l-c }}: P#-lϟȬ{x'lٲ ;. s#p.[MpHAqzX9zHK Wjx\10 ,cdTE]^lrՏy:,`cNVq/Yqإ ,Vބ0X4%=`M d?ezHnT㪡!SqpT ⎱ StFPD;Q( VJ_n[F{(j/C}JWV)8so!(4rEu>t VwKрY}MFHhCmފ&]M׻اom^Kn0>Eh>[`Px'"XEn; PS̶"{hbQ cl4 &Za!-߀VCl9r5Zx[ 7c}TP {^ ;e8\*C؄ǻWlRu$fjZӝͧOj] +nj@c/BЊ8؆-;N#^J;Y+XwFn]?zH/c0RAZ_7xD䢠 ϞDZc1S܎mģZ^63[UǷSۂxt-d'D!GFs'|vg\(QwN8roP'yV{gwaVS8D5Swv9'!7%Rk_0giD6# )iPMFňVTc91)-}+:4t~z.C7$]ʪq% %2"ܯR): .UmhrЪ+w^͸-ѩpP[m9̢a#aU6@3N$%Ns"v7" GPEP5@mu4ϣ U bڊu/Cgv ڪsEoGw:ЙUht_;hoy@GMt_{e8p6, zj`9/h>y ?+7N,4 {f#?_VVӿNŶCgam8.܇4O(an嫴1[ 1 t؏9g`XE8JJԔ 1}B쿕,XQ5IIw@kJR2wj #`PTRå.xY0iU{7MLp>y7x,RP݇[(͜]% 7h"8༩:>h ڬEp6(υ 8at=7Vh8Ǜǡ6Wq~',uMZgCAoͤG8;M/P$LQ\z.q8 Tfaz{ԢPK*A\=)Y\g\g functions.phpnuW+A array('has_header' => true), 'menu' => array('show_submenus' => true), 'vmenu' => array('show_submenus' => true, 'simple' => false) ); require_once dirname(__FILE__) . '/classes.php'; /** * Renders article or block in the Post style. * * Elements of the $data array: * 'classes' * 'header-text' * 'header-icon' * 'header-link' * 'metadata-header-icons' * 'metadata-footer-icons' * 'content' */ function artxPost($data) { if (is_string($data)) $data = array('content' => $data); $classes = isset($data['classes']) && strlen($data['classes']) ? $data['classes'] : ''; artxFragmentBegin(str_replace('class="awp-box awp-post">', 'class="awp-box awp-post' . $classes . '">', "
\r\n
\r\n
\r\n")); artxFragmentBegin("

"); artxFragmentBegin(""); if (isset($data['header-text']) && strlen($data['header-text'])) { if (isset($data['header-link']) && strlen($data['header-link'])) artxFragmentContent('' . $data['header-text'] . ''); else artxFragmentContent($data['header-text']); } artxFragmentEnd("\r\n"); artxFragmentEnd("

\r\n"); artxFragmentBegin("
\r\n"); if (isset($data['metadata-header-icons']) && count($data['metadata-header-icons'])) foreach ($data['metadata-header-icons'] as $icon) artxFragment('', $icon, '', ' | '); artxFragmentEnd("\r\n
\r\n"); artxFragmentBegin("
\r\n"); if (isset($data['content']) && strlen($data['content'])) artxFragmentContent(artxPostprocessPostContent($data['content'])); artxFragmentEnd("\r\n
\r\n
\r\n"); artxFragmentBegin("\r\n"); return artxFragmentEnd("\r\n
\r\n\r\n
\r\n
\r\n
\r\n", '', true); } function artxBlock($caption, $content, $classes = '') { $hasCaption = ($GLOBALS['artx_settings']['block']['has_header'] && null !== $caption && strlen(trim($caption)) > 0); $hasContent = (null !== $content && strlen(trim($content)) > 0); if (!$hasCaption && !$hasContent) return ''; ob_start(); ?>
', 'class="awp-box awp-block' . $classes . '">', ob_get_clean()); ?>

0); $hasContent = (null !== $content && strlen(trim($content)) > 0); if (!$hasCaption && !$hasContent) return ''; ob_start(); ob_start(); ?>
', 'class="awp-box awp-vmenublock' . $classes . '">', ob_get_clean()); if ($hasCaption): ?>

artx->countModules($position); } /** * Deprecated since Artisteer 3.0. */ function artxPositions(&$document, $positions, $style) { ob_start(); if (count($positions) == 3) { if (artxCountModules($document, $positions[0]) && artxCountModules($document, $positions[1]) && artxCountModules($document, $positions[2])) { ?>
artx->componentWrapper(); } /** * Deprecated since Artisteer 3.0. */ function artxModules(&$document, $position, $style = null) { $this->artx->position($position, $style); } function artxUrlToHref($url) { $result = ''; $p = parse_url($url); if (isset($p['scheme']) && isset($p['host'])) { $result = $p['scheme'] . '://'; if (isset($p['user'])) { $result .= $p['user']; if (isset($p['pass'])) $result .= ':' . $p['pass']; $result .= '@'; } $result .= $p['host']; if (isset($p['port'])) $result .= ':' . $p['port']; if (!isset($p['path'])) $result .= '/'; } if (isset($p['path'])) $result .= $p['path']; if (isset($p['query'])) { $result .= '?' . str_replace('&', '&', $p['query']); } if (isset($p['fragment'])) $result .= '#' . $p['fragment']; return $result; } /** * Searches $content for tags and returns information about each found tag. * * Created to support button replacing process, e.g. wrapping submit/reset * inputs and buttons with artisteer style. * * When all the $name tags are found, they are processed by the $filter specified. * Filter is applied to the attributes. When an attribute contains several values * (e.g. class attribute), only tags that contain all the values from filter * will be selected. E.g. filtering by the button class will select elements * with class="button" and class="button validate". * * Parsing does not support nested tags. Looking for span tags in * 123 will return 12 and * 2. * * Examples: * Select all tags with class='readon': * artxFindTags($html, array('*' => array('class' => 'readon'))) * Select inputs with type='submit' and class='button': * artxFindTags($html, array('input' => array('type' => 'submit', 'class' => 'button'))) * Select inputs with type='submit' and class='button validate': * artxFindTags($html, array('input' => array('type' => 'submit', 'class' => array('button', 'validate')))) * Select inputs with class != 'awp-button' * artxFindTags($html, array('input' => array('class' => '!awp-button'))) * Select inputs with non-empty class * artxFindTags($html, array('input' => array('class' => '!'))) * Select inputs with class != 'awp-button' and non-empty class: * artxFindTags($html, array('input' => array('class' => array('!awp-button', '!')))) * Select inputs with class = button but != 'awp-button' * artxFindTags($html, array('input' => array('class' => array('button', '!awp-button')))) * * @return array of text fragments and tag information: position, length, * name, attributes, raw_open_tag, body. */ function artxFindTags($content, $filters) { $result = array(''); $index = 0; $position = 0; $name = implode('|', array_keys($filters)); $name = str_replace('*', '\w+', $name); // search for open tag if (preg_match_all( '~<(' . $name . ')\b(?:\s+[^\s]+\s*=\s*(?:"[^"]+"|\'[^\']+\'|[^\s>]+))*\s*/?>~i', $content, $tagMatches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) { foreach ($tagMatches as $tagMatch) { $rawMatch = $tagMatch[0][0]; $name = $tagMatch[1][0]; $normalName = strtolower($name); $tag = array('name' => $name, 'position' => $tagMatch[0][1]); $openTagTail = (strlen($rawMatch) > 1 && '/' == $rawMatch[strlen($rawMatch) - 2]) ? '/>' : '>'; // different instructions for paired and unpaired tags switch ($normalName) { case 'input': case 'img': case 'br': $tag['paired'] = false; $tag['length'] = strlen($tagMatch[0][0]); $tag['body'] = null; $tag['close'] = 2 == strlen($openTagTail); break; default: $closeTag = ''; $closeTagLength = strlen($closeTag); $tag['paired'] = true; $end = strpos($content, $closeTag, $tag['position']); if (false === $end) continue; $openTagLength = strlen($tagMatch[0][0]); $tag['body'] = substr($content, $tag['position'] + $openTagLength, $end - $openTagLength - $tag['position']); $tag['length'] = $end + $closeTagLength - $tag['position']; break; } // parse attributes $rawAttributes = trim(substr($tagMatch[0][0], strlen($name) + 1, strlen($tagMatch[0][0]) - strlen($name) - 1 - strlen($openTagTail))); $attributes = array(); if (preg_match_all('~([^=\s]+)\s*=\s*(?:(")([^"]+)"|(\')([^\']+)\'|([^\s]+))~', $rawAttributes, $attributeMatches, PREG_SET_ORDER)) { foreach ($attributeMatches as $attrMatch) { $attrName = $attrMatch[1]; $attrDelimeter = (isset($attrMatch[2]) && '' !== $attrMatch[2]) ? $attrMatch[2] : ((isset($attrMatch[4]) && '' !== $attrMatch[4]) ? $attrMatch[4] : ''); $attrValue = (isset($attrMatch[3]) && '' !== $attrMatch[3]) ? $attrMatch[3] : ((isset($attrMatch[5]) && '' !== $attrMatch[5]) ? $attrMatch[5] : $attrMatch[6]); if ('class' == $attrName) $attrValue = explode(' ', preg_replace('~\s+~', ' ', $attrValue)); $attributes[$attrName] = array('delimeter' => $attrDelimeter, 'value' => $attrValue); } } // apply filter to attributes $passed = true; $filter = isset($filters[$normalName]) ? $filters[$normalName] : (isset($filters['*']) ? $filters['*'] : array()); foreach ($filter as $key => $value) { $criteria = is_array($value) ? $value : array($value); for ($c = 0; $c < count($criteria) && $passed; $c++) { $crit = $criteria[$c]; if ('' == $crit) { // attribute should be empty if ('class' == $key) { if (isset($attributes[$key]) && count($attributes[$key]['value']) != 0) { $passed = false; break; } } else { if (isset($attributes[$key]) && strlen($attributes[$key]['value']) != 0) { $passed = false; break; } } } else if ('!' == $crit) { // attribute should be not set or empty if ('class' == $key) { if (!isset($attributes[$key]) || count($attributes[$key]['value']) == 0) { $passed = false; break; } } else { if (!isset($attributes[$key]) || strlen($attributes[$key]['value']) == 0) { $passed = false; break; } } } else if ('!' == $crit[0]) { // * attribute should not contain value // * if attribute is empty, it does not contain value if ('class' == $key) { if (isset($attributes[$key]) && count($attributes[$key]['value']) != 0 && in_array(substr($crit, 1), $attributes[$key]['value'])) { $passed = false; break; } } else { if (isset($attributes[$key]) && strlen($attributes[$key]['value']) != 0 && $crit == $attributes[$key]['value']) { $passed = false; break; } } } else { // * attribute should contain value // * if attribute is empty, it does not contain value if ('class' == $key) { if (!isset($attributes[$key]) || count($attributes[$key]['value']) == 0) { $passed = false; break; } if (!in_array($crit, $attributes[$key]['value'])) { $passed = false; break; } } else { if (!isset($attributes[$key]) || strlen($attributes[$key]['value']) == 0) { $passed = false; break; } if ($crit != $attributes[$key]['value']) { $passed = false; break; } } } } if (!$passed) break; } if (!$passed) continue; // finalize tag info constrution $tag['attributes'] = $attributes; $result[$index] = substr($content, $position, $tag['position'] - $position); $position = $tag['position'] + $tag['length']; $index++; $result[$index] = $tag; $index++; } } $result[$index] = $position < strlen($content) ? substr($content, $position) : ''; return $result; } /** * Converts tag info created by artxFindTags back to text tag. * * @return string */ function artxTagInfoToString($info) { $result = '<' . $info['name']; if (isset($info['attributes']) && 0 != count($info['attributes'])) { $attributes = ''; foreach ($info['attributes'] as $key => $value) $attributes .= ' ' . $key . '=' . $value['delimeter'] . (is_array($value['value']) ? implode(' ', $value['value']) : $value['value']) . $value['delimeter']; $result .= $attributes; } if ($info['paired']) { $result .= '>'; $result .= $info['body']; $result .= ''; } else $result .= ($info['close'] ? ' /' : '') . '>'; return $result; } /** * Decorates the specified tag with artisteer button style. * * @param string $name tag name that should be decorated * @param array $filter select $name tags with attributes matching $filter * @return $content with replaced $name tags */ function artxReplaceButtons($content, $filter = array('input' => array('class' => 'button'))) { $result = ''; foreach (artxFindTags($content, $filter) as $tag) { if (is_string($tag)) $result .= $tag; else { $tag['attributes']['class']['value'][] = 'awp-button'; $delimeter = '' == $tag['attributes']['class']['delimeter'] ? '"' : $tag['attributes']['class']['delimeter']; $tag['attributes']['class']['delimeter'] = $delimeter; $button = str_replace('"', $delimeter, '' . ' ') . artxTagInfoToString($tag) . ''; $result .= $button; } } return $result; } function artxLinkButton($data = array()) { return ' ' . '' . $data['content'] . ''; } function artxHtmlFixFormAction($content) { if (preg_match('~ action="([^"]+)" ~', $content, $matches, PREG_OFFSET_CAPTURE)) { $content = substr($content, 0, $matches[0][1]) . ' action="' . artxUrlToHref($matches[1][0]) . '" ' . substr($content, $matches[0][1] + strlen($matches[0][0])); } return $content; } function artxTagBuilder($tag, $attributes, $content) { $result = '<' . $tag; foreach ($attributes as $name => $value) { if (is_string($value)) { if (!empty($value)) $result .= ' ' . $name . '="' . $value . '"'; } else if (is_array($value)) { $values = array_filter($value); if (count($values)) $result .= ' ' . $name . '="' . implode(' ', $value) . '"'; } } $result .= '>' . $content . ''; return $result; } $artxFragments = array(); function artxFragmentBegin($head = '') { global $artxFragments; $artxFragments[] = array('head' => $head, 'content' => '', 'tail' => ''); } function artxFragmentContent($content = '') { global $artxFragments; $artxFragments[count($artxFragments) - 1]['content'] = $content; } function artxFragmentEnd($tail = '', $separator = '', $return = false) { global $artxFragments; $fragment = array_pop($artxFragments); $fragment['tail'] = $tail; $content = trim($fragment['content']); if (count($artxFragments) == 0) { if ($return) return (trim($content) == '') ? '' : ($fragment['head'] . $content . $fragment['tail']); echo (trim($content) == '') ? '' : ($fragment['head'] . $content . $fragment['tail']); } else { $result = (trim($content) == '') ? '' : ($fragment['head'] . $content . $fragment['tail']); $fragment =& $artxFragments[count($artxFragments) - 1]; $fragment['content'] .= (trim($fragment['content']) == '' ? '' : $separator) . $result; } } function artxFragment($head = '', $content = '', $tail = '', $separator = '', $return = false) { global $artxFragments; if ($head != '' && $content == '' && $tail == '' && $separator == '') { $content = $head; $head = ''; } elseif ($head != '' && $content != '' && $tail == '' && $separator == '') { $separator = $content; $content = $head; $head = ''; } artxFragmentBegin($head); artxFragmentContent($content); artxFragmentEnd($tail, $separator, $return); } function artxPostprocessBlockContent($content) { return artxPostprocessContent($content); } function artxPostprocessPostContent($content) { return artxPostprocessContent($content); } function artxPostprocessContent($content) { $content = artxReplaceButtons($content, array('input' => array('class' => array('button', '!awp-button')), 'button' => array('class' => array('button', '!awp-button')))); return $content; } }PK*A\$frrtemplate_thumbnail.pngnuW+APNG  IHDR·^ pHYsodrIDATx^xy-&7I͟z7*V/$۱*Ƕ$+lǖ{,Y-K%I{;@A  rsf?XDy;gy3ˊ?͖}u/nyp^(lz=\m6 BrDyYV`Djyh7_.$'Cefq^Wpۼ6ϗ ɉ%8o8F.Fs}]p%8.q8\sq\#Kp\q.25F5\Fp e4kq8.q kĹ>h4׈qyt U>BA {GaGzFkίe%ϓ˲< N-OA]ܺS! 3qA2/Q(ؑ&(kjymFҳrCn}Gm!\D_ˎVvn݇Lϭ߅!y9*>Z1<T<λPq7*[?hB}F@l!m-w4?Ottߎ-'RtJF |?Q<.yw7{3k>l< #NC$4i>2 GLls)~O?G1<K  D,.&sYlX|}vc즽~׹sSFGy]u{ܻZ. jͥwj[et*3ߝ⧰߇ wʆeYN5}!/+RvE& 8H0zfXej<]S6nưg#mn@ـ?ۼɸG˭c۞u8?-J䅂!JVqE\޽Ȩ \߅Ǐ^o3+[=2x*5<|=۸%@<PGV l><;)~~M´ QϠ(#w~}~gPȨ.>$hrA}]AF{㜏异D)e"^Dfዙ 7ȑhz> r|{6`u?A}k{ռ EGUpjp$70QUAPȪoN 8sq[| msoweX'䜿se.s3窮||8_z;jzygby.loy8~3ϗs^ܟU4l{Q)z Nf}]N ;_z}H.дXbI`JM8tꎟEs>y0roA{t ܩ*K߁Ρ]stxT܄o}89szO ߁hS=8~YPf4_'<Dp\(zNs˲܋;`$_@ѹ^d=J @=,&M4g9牘_kwd=@ q ̞Ǚ3PKޅG Mc=NIR+ go-BRBH݈ᨓ\z@BbK iw' T3t\Gx_b`91O䩣(l/|!L'ٜw@\ɿ# 3t3td\m} (Nr‑X( |ِ,4;Pͽ!w'cĒ1tʶQe8c ~S}9BiS{/\s>>[iMT]/ۧ(pY5 <(*\KZ/:$^$gB3Mgmɾd> f] u| DD?a@ܼ{}[FMZ3TH[#gqx4 rvo xGPߟ#쇲\v>Ip'BnC':rusGnȯ }1ߧ&&B5cBUkbރEy3柠)}`7J?5;, h wì,T.ɄBMNAjhi4l w]B}ӿs;9ʹܛPH̻k~@ߍo+.6}0qL~&7.7Ͻr\L|.&yz%:]Nb-V7R7Gy"]z+9wyˆeYB}4I,)Q1MwQXs6rxtVA//)YXm;F:NÕ>0*:}%Phaۻp+vTEC$e9gTosʦbv6y~(\mp޷bP('H\Dp|nq `n6{^#eQq*>kJ;=$!*ney[#o>ҟMtes{.yu\Ibcs0us\;om]|ם92_]Qyζiwmh\L8q~ާs߅9mznq 61xP*Fz9QD)Sb7vkv ;Mtl w~};8ōʼ )HSkG|aNH7|?)9wJg3Q<+s|BG;sΗfY mütse<~Z^}N9G-R>ݜS_߳]Źo8uѲ9ꞹw<zO*Yf'r fK1,2 '@išlՇBh@YJpjsm39ؿm[X2#J7~#Ů;՜e8הisLy9yሷh "yϕuNr{+B>lA˘YYFJڋ*r!9,=: ^bw+ VRVo:Vm os7Ϗb0!߿ V|mމ=w{:F;NGwʇ)?;_+RդWwtﱞ(98w3y~a> bpmkζ߼;g-lZ,rz8=9iDž]$?z/ny/=˅D,!IFbW'eFֹ}\,_=N9s̳yM{םg`ùl] Biʙe$>ylH^9sM1`VTN3rI$}NuO4[1`/Jp$'pCGв :b s\m>pd('q4{ffO΅St9zry.~>? ? =u Fr3::#S8u|_O* O$c͓^77_oZ_[.ey_y_x_S:^jzW{<~=q#ѲM;[H鯷Y~;nzߏ)NKuqqANW[TkA~'VTn|b6mFH%7_ec=i;4_sA/o֦0drnu  j Y.,j _ݶ,"8dNEU'V}-V"e:Rӿ7_~ذ}=(G?9>/>QRƎd36q+KQV^ /G}:7ekf[wŕTx ^*OT_I#FM.z3 )~/WGKͼ~2/wqz66?#c,|%1 {AJ:~Yodi,ux '~u<;|'eҏᓡW$ɑSQ $xwx>?wl%Ly wmw/*>&'~[Smy?>YI $m{w,;?d|P ƥs#I8 O"<b>ʣs_I2|t\_d~JA?OH ~c2i13{NW=Wx *]VCP;?=[>z]~x((\3mEl- |90npp>keao0&rResxWGȜqlYDZ'\@>"AFv܈V.;^GS0N}Q Ng0fQer7xh95Hrl!1 :#&?}|`f81cg̵?yh C0<4´Vгnl0ffj0y(f'1¨)rA0զCL?3z ǹ?t$th>ՙϩ81 %-)fHD~;VpvKIΆ%+Ǜ3ʶ@pUP$qKtn}^~$1Ɗ7q>d־Mg%vbaqe R5KӈS25Dtr[cQj\B{ptX0Fso8i*c<# k6}1\XL'1b:Ƈ!S9y&*0QHƾCm;v,uぴ23^ꈳ~[Uw}Y԰>J;r~{"TކAk%S\^%}?Iyg}Wuz p$>~Xȧ093!dpVA\L'3Ќ b9ҹTZ`%t;@&6&wn~' #11iHHJFBB$p4,zOFQJ0QZAv½Cǩ,8GUhO2dGls^kmHKέ68jFk;}T!c"T0vڤ0ALa 2Tˑ'+:oiy!Q1J{'Q᢮h4y-$>DޅXiAmz wx6!0mauf܃B{4dRѨ'qp=hFbi #AMw@(' ^%<7Hl^\cks5M/sXݨ 7!5a:^aFpB൓ws#1.,*)9~6e2HuϞS#JgϗXvөŤ>2Pٴr ͻ4Oʯ묹|FI;zM;43v\{ä<$; @; L11mX!P曲Xp?zO߁_:NtݵW[R[5g8ji!Lgq1O`!qR?:˕qa/bi(D&">5)ttÛ tRBzF&c8 ;v!84-DBBۆnGEr<3LDFF!9-ψ$(EMe9vMl`TrZa\ ¶#L wwIظuBXhqAP~G/ --== DM3C۸6ªP #ukȁ "t f:?[QѦ΁ApxHM1]Xp2fH5:!iy}] =#L.䑁He+SRVnwo\cʢZR Ęv|H2 ?z;b$SvPGr}y1 rvc@#·q8% 3!!>ذn=ҐOOd,/8+'Yy s9HĴYc' Cjj:QFԄtNdSrB hXh qK|͸ Edi w E~qrr 0+(F';ښjST [MFl\;V R_^^)M0?11 f^:$&q֏|-SCnN3(,0BȲjVHȂvPs?3n/ VEAtlӘD')9sJ1jokG CY_W bvnw D~lXןBye~9tg棖ry6/8iDBvkz-x?=xW\KfpGP <K|-V+-Fmaߏ2z@D{rmj0q[̏s#;!۷O0FHfPA-$&8#'Ya^<ӟXUt]sA-;)70?-趂` `t; TA={qL%3U8A%V9,hJD+[c$OpRs9VuSvYNu9v2UYw|[= Rƴ2e9v* YPiL]297U^4Z(8ZjތZ^iX%UqΜ%n7>\~O6`k8q0mb M8 [rd潐p°6wQFۭc9*! ڵi2 īm@An!Wb } /l2}b HM҈ oS4DQTy'RԊSWKsH5"aR8rpt "\K1Yظy+V^ 77ʋǗ_=f$!KF!bmʋ h Ǒ-;!\AE%|zr04ɩYfN  3P/.>G ʹ!T +73eO$eFrޮ9}ٶÛ𯲱  39$sThvHeM4|Ir#x7DZ@i)ssv۴ɣί{ˁӤ\]O0},#g&q}bO<ޯ=#MS6FZ! ӳ͋/23r2 JAɗVԉ M aa^ZH- a\ݱc١+Ku7#FfzO7"cّiDچ>WՒEEشq8QGkvQEd F* J_4YIbG-u@4urmK*p#L$Om ٬wacANR9HKN@8Kh@BJzFPx=`%XP*d*IIٞOÓG&~tv)BIJaT{<;Vej ;&\@|j9N: Y;::ّ-{2Gރ"ncz)fȅߋwgد3WihGw3Wbox~q BC- 9$H LsSo, Zџ ` k,xBvGiN̘iFFB5_0nɣpH{8)Д麴j6y%GidE!e$u'lJshVZ͜cRs>Gp°yuMqՉ6֖ ^ :BԊQ-5eʲ8YL=XVeemAz)T_^_DLڶ#;ķw<= ~<}Hq `&d4>D,]vb=WO| -y(Mհc/W:Lz8 ?)$<5s/Pۇ0# B<[}6x#+Ђa0ܨoF^Vbq8LX]VLk&q|FSN‡#HB XVd^ˍ`uz q/c,0uZ 8I7p/R+]I~ ܼ;s[v r:4ӇdWx#7U'nXSg}P^Rs6ɯ衃WyF=LNNQgPCElCp4>mtJ";ǝ 5Ԫ,3!?__lز(JZiKMͤ&9ɄAԚeӢ@ʬ,djRKǹ =<5 ]Ҝ_p-cs!cԦ}G^٣su.b9!{£Iifm4)8 3[Z5iA7̆E¨e%bS\;8:n_:Efh.$!eZrV:[%:؆֢+G5`[/No zWV}]-k2oR9/~\\؊-]y0ѴW#9dYw7kQAeveLDlo6efW=,KeL]}n&ЖymrcɞTL~4\ֳۖϚ&P^܎g\d^qH"0vZڮמfAZO*cBn8+iHvbl>bx:,fSu-ئNuô4h4CnzJ/}}}7Gpܣ?FлP+6~o][k:W[%s|f)QXa#ivifjVGMj$˿n_A5[xm=tdը'LiAVYnuVcGJKl}ڍǃ&;I*ۄ\d`ͺXU?6[iKevlbd^i 2RYMӫ+vzc:e"Y[YWW1v[۷a3ܼU:ի⥗c#qɬ.cΝxu'Z}m-~g2I5Eg0 2Sz->XWVvx]cC`ڧmV9Yg?`˾n Y5hu#WwHߴ?tF2Vӄ"‚ʅb-LW6?Y\ω:YAJK&g;wf=fwMNp kں-h6V9P}jtXC[=/w",SLXrXfZ8rh O{Xþ]5NjԐ'a5a\@(LGh?2&4gƑu} J0Z5~n4g\{e`Z9b+m)Ek8kBX/=GuWU#tLLTo .Y\ i2#22RBO.Ck4TiiͳL>Y VmE?PY"4RS9契f}Wg#=0Y.Jᨣ򺶔hMGF2ݠ>hUPLJ8$0VЪ h?2ru1n+M囚&jd~|cMC2OOW(' Rǖ_O'iDFiJ&90$4gar{jjr4┉0<{+=O}lCv=Y>zcvWf= q[Y-Rp,rdNZcϓdɹP$ vwsFU$~F'wz^?H rBW ݼhߔ=K*69\8e\ocN*wx}RJKi^Hb[i;zMZms/J2‹/ ԃЁkvcq\0-D6oڄ57 $28ӡMf);m||J"L$l{PaIH"=n>hD^Z"r!%k@ϸdM}}鷒Pȩtފ(zw&Fb9)6n+׬Aٱy#lb }iGS/T7sD(2VN4 _lJWV!.^,zU{#iQG<8A,qS-4Lmeޞ4;Jg'!cv؎]^%Et}ب-b9 u1y3s gI]#5`\r&O嗤r/Me"ژ4 j_9 d^n+%dB2[[pAЧ_;]T<|"BjF AB^t<Sk,Ct4%`  z9Y`%A峎֨TӗYFJ_|{Rn`aD(xD镧9g~M؞5 (mUuSY~kH*g jbqBѡ~_PTTe(z))xϫ?ɍGФ~lv n1>9ҮEN\esU` RB 2/nèa/;ݜUb KA^ыFG%o &Ueed2{:_^tڮcsϤ=xs/Gǔ&̂`Hjt7Z$YGZ<XGG"h&.Ws^ο*j'$mI[-^斫-1v|{bT&TF-$U܅f.3AڵAkjzZTO&r<5ceBsOfkvn3J0Y(%°6ar8SYGMZi}pG5h ӎ%al4|RP2j!Wt.5ق)MEXi=cS=ϲ0T.3wcc ̱0)h*˄f)C䘌,2k2nk:6eHER'J93?߆m#)4~wcHS)yE褑g;(K ~hJӰ;ѵeC'4U)9$ !@y:h-!jh3rQ@UV=yBD.TxʫhAu`YWK@Udב1zBGPITTvr.T|j~#KE.ABL8-}0/rP` 1}0ʆ /kg~0w#f'?*}QA> iL>6L~e¦HhmJP4ܢ&. y!)(v܁d+ZMHo¨|vS2E$JFPь%rѮ-WJBa}D(2AK+S10Yb$S1}|!e"Dvڵ{$iabie~P4c, =M7 \֑f=LJ%&ƒ5H 9Zc[ |7b6MuD?V>43b+{ mbH/%>*ZcoCFQ9&7s Lj3NE#}Q l' 4:L -;s"[hlcnNyL7mom" ;Avr d8,bMX#*I4R[{խfK Z(8+!|)$,Ib^ZOgeC   ɹ.N6vΧԉeEk=_ %HiD)YQYp+H|'5!‘NfBP]Qn6n7s uT`b! O:)d* # r(i2#YabIy5YKI*@z&B@Q< ҘUM ^WTM4 --.A!Zmbr;UKHUE-%(z*R-Z cK*hCl;зJoɵ4թu3x=>X$;Imm䦋5{\hgfb"Q# 'g+ε $\*l0%:DSæ? B dzA-Fl6Md1 YX:?R))Y &)KٷMȂ"g,8fA'A%(74[P>9›J8ҸYc2f,Hi(dR#- j{ڴW҆ɼKCРfYkQݔ=,mMjq-m4ekLAkg9{Q*8kUް6s"`/fyz +L?0=;= m_ݧv;ʄ%Q׃I|~ԪiC8 V̂ * TLutҐBA? L[Bl 6"45F5Ŀ,'gK!wR$ˋH%g>[p221I%-=NMd| .H&vBH>3 9hG&\Ӵj^Fx>G^bFR~ԎycNOn6cY(8[I08w7}gx?w~5Yp;)g[;Iʕ%q  H66%#4g`&p9-=Atp8H&1hi'k6)u-jA*U>uz={K.AGG%u'D8 rę G1]yV~89<j W܂o>eE8'8)31G0ۯdYO] XG#ĖG];Ư .`kSh 0ܩn*\IܼNpʙ_ǟzǿXy( k:~׾1s<1TYʭ?a\u# Vq "|g8oVW)Qs[.ENpX|ݘ8~~2fqbOb;Y &3'wމu;8Q%8oI~q$DA;=63j-%3F\vȡo)`k1;$t"wi';ĩ8'} ̾5^gpr8g |wa,:7LnGU6~c\ÒKξr]w0ߋ!hIw3WH[vtÑt2=>pKGST+qk '[y^`7`%8~+;g(NQNK7VunrsFxwF9iМۿ/V8^/ޒ vV)_adY[0A_pv<\ծQg14_-}&pNoi 9vV*$Pe NRcg݄cJY8\is!Vd0#BO|GG ]t9c%SjiA.!ux繋m5A sєٰLqߔ#жumpGF@ûƶncᵾMoI:e 0އEbK=G%i*HUBcY:8 Ds{I E?ϻhFTHA`+ xm8sae~rbAGYKFfIGYj?n a? /l'!6-1it;tv9s'RZl/vlknV&~Pc&slnڹf#utyVsFh=nBm3긞NfU_B }6sSmO['qqZofF(s[sQ̊WYl7)@U4vB?)D =)W@LlnK7ǡVMcc dg27\^r23k~swe U/ n ll҃֜Qʘ8IѠ5cc4Ds oF׋6j" y ;wYvj/ڄnidrI⿁b.(CJm-B2EQ&oUWQ*1JsJzR"L,?В8bvLO(8 GqS=҂iˍRp0hƟsAj8ve6$gy)HN"[B'Λ=4# nfMӿ$m 68ii$즦l,#;rHjȆQ>mQI鍂4n }Ԩ}1 .E`G 1Fy .rǴA{:Op;{CPX >AOǘsJٺ˸sٺq=J\s7qxϹͻg 2&{3t&W>Cqlx(qm/&8u@YÑn:M2/"iVzR:d^!Be'f5V!uB@#gqw"ތ["M&}>& $a%A2j٫rY^#A\_#yH ~Ŋi 3$u#ܰ)|6&'#,,m\@pd&c8ƹ`,s&LsXI[V9wy$BA: j4[ G5C|}9l UiV&Z =ʩjLF*\EJw.]΅RZ Qy[yXtza=xn^3eq6[&?4ug{ϵ#_{wCSn6ӹݯڹnb{s-BuCr'V]o 4ٻ6m{.u{Q:A]0PI/Ϲ -r@+9*X9haCMPw/OQ*q.n`;w Rw[ލGG'qk#[A8=pژV9Q!2n~H>,W}7}u3F8q+w_i3^sln~ʡr~re1U#4/f~sD_ -Uì1z;2ƊZn-HN6ߨP[)>*72ʧ=B[[dEOvvTkdjr!ZDwtmAAT6e :u]RxUC,?fx\ eBY *I:^JdQBn#G(=8LVhFQp*BGZW=GYv N{~v5}+IlIϦ@p)muͪ uG8MP{՞rNc8Fqr'F -ɩqXRbuN^=%w0\J RwXIh-rp'I|ϲ[o"@5pج3՘*L}9CfjK0RKⱲk덕Vj[K7C؝R:+[<# )ܧ Y8v205ܾghd#:)ur[pD %r!3shg\CB#ab r!ܒ8x-%g[wJnxx~"iw|`P瀱C:<l{i'0'/B*b%MLNQ^=Ju|oS[BQPK+y 7]^׎D׍؟m P_*nnW j>(8+H.yG1Ws4KVo?oO`(7FfƢ@|otDP%q$81q~^]G3 H <Ǘp?7s 7H!O݃r dSM62gHj<:9'8++IRn.Kp2pK,8ntrkc[_dy& ptxmnTn(d;08SYI8-'{qri8¹\혔cthyp.VCt Mz~dg\;{E[Ȱ Aj.-P4PZUyTa6ϋ0ѧ,bLW;YLȔI9lE]s} 4Y4jzo_/:;PEGDŧdG+(2!Ύ {"Q +*G(H^pq~o B3hB9 T"h[vk4O &뭹ܮ]q>#/8mG?FȽ'M$ '&/?,nv쫣ifq~Rv8Gt6ρεڥn߾ts%&):,/Rp&Or4BZu}%a®i΅Qs970g?=|ŽpR)֛;,[C_L~6׎Wސp59_iS5#r|Kk;i5@mZscH0@bɰ±xj:֌{PrQ8Tuv"Q JB4rmqv³d#^6 )wim"$짙Mq-d,6A|r(PU(!@ݥ.y{ Z^oow)g_1ͱ8죩10y:ȿ0B!k8wpcarJ נh72&n!I JDe&Ky|#;ɹ$v8d#4: T psè6.΄F"Gˤf e N]fh'qAhHBۉR-lѰEBp\+)VsWbGWrCU`0 ֹbE`G8 9G@h EpuE :k+ӵvwVN$gQdZ'g沯M) Kd:!XaYR> oG}ԥ%#MGa>~65-d]$i;NpsHDBmj6H(Aݕ-8e{9r]$V@UR$j.=dKWh"+aAdV}bII&е$M!ehI3H9`a]h.SzhhhlX2٪8hZ5ӿe}o!s7?^ˆ3H:B{k<G۴J:]PZ@EN߀֥8?໻x_ҬIENDB`PK*A\= component.phpnuW+A PK*A\J8l l script.jsnuW+A/* begin Page */ /* Created by Artisteer v3.1.0.46558 */ // css helper (function($) { var data = [ {str:navigator.userAgent,sub:'Chrome',ver:'Chrome',name:'chrome'}, {str:navigator.vendor,sub:'Apple',ver:'Version',name:'safari'}, {prop:window.opera,ver:'Opera',name:'opera'}, {str:navigator.userAgent,sub:'Firefox',ver:'Firefox',name:'firefox'}, {str:navigator.userAgent,sub:'MSIE',ver:'MSIE',name:'ie'}]; for (var n=0;n 7) return; jQuery('ul.awp-hmenu>li:not(:first-child)').each(function () { jQuery(this).prepend(' '); }); if (!jQuery.browser.msie || parseInt(jQuery.browser.version) > 6) return; jQuery('ul.awp-hmenu li').each(function () { this.j = jQuery(this); this.UL = this.j.children('ul:first'); if (this.UL.length == 0) return; this.A = this.j.children('a:first'); this.onmouseenter = function () { this.j.addClass('awp-hmenuhover'); this.UL.addClass('awp-hmenuhoverUL'); this.A.addClass('awp-hmenuhoverA'); }; this.onmouseleave = function() { this.j.removeClass('awp-hmenuhover'); this.UL.removeClass('awp-hmenuhoverUL'); this.A.removeClass('awp-hmenuhoverA'); }; }); }); jQuery(function() { setHMenuOpenDirection({container: "div.awp-sheet-body", defaultContainer: "#awp-main", menuClass: "awp-hmenu", leftToRightClass: "awp-hmenu-left-to-right", rightToLeftClass: "awp-hmenu-right-to-left"}); }); function setHMenuOpenDirection(menuInfo) { var defaultContainer = jQuery(menuInfo.defaultContainer); defaultContainer = defaultContainer.length > 0 ? defaultContainer = jQuery(defaultContainer[0]) : null; jQuery("ul." + menuInfo.menuClass + ">li>ul").each(function () { var submenu = jQuery(this); var submenuWidth = submenu.outerWidth(); var submenuLeft = submenu.offset().left; var mainContainer = submenu.parents(menuInfo.container); mainContainer = mainContainer.length > 0 ? mainContainer = jQuery(mainContainer[0]) : null; var container = mainContainer || defaultContainer; if (container != null) { var containerLeft = container.offset().left; var containerWidth = container.outerWidth(); if (submenuLeft + submenuWidth >= containerLeft + containerWidth) /* right to left */ submenu.addClass(menuInfo.rightToLeftClass).find("ul").addClass(menuInfo.rightToLeftClass); if (submenuLeft <= containerLeft) /* left to right */ submenu.addClass(menuInfo.leftToRightClass).find("ul").addClass(menuInfo.leftToRightClass); } }); } /* end Menu */ /* begin MenuSubItem */ jQuery(function () { if (!jQuery.browser.msie) return; var ieVersion = parseInt(jQuery.browser.version); if (ieVersion > 7) return; /* Fix width of submenu items. * The width of submenu item calculated incorrectly in IE6-7. IE6 has wider items, IE7 display items like stairs. */ jQuery.each(jQuery("ul.awp-hmenu ul"), function () { var maxSubitemWidth = 0; var submenu = jQuery(this); var subitem = null; jQuery.each(submenu.children("li").children("a"), function () { subitem = jQuery(this); var subitemWidth = subitem.outerWidth(); if (maxSubitemWidth < subitemWidth) maxSubitemWidth = subitemWidth; }); if (subitem != null) { var subitemBorderLeft = parseInt(subitem.css("border-left-width"), 10) || 0; var subitemBorderRight = parseInt(subitem.css("border-right-width"), 10) || 0; var subitemPaddingLeft = parseInt(subitem.css("padding-left"), 10) || 0; var subitemPaddingRight = parseInt(subitem.css("padding-right"), 10) || 0; maxSubitemWidth -= subitemBorderLeft + subitemBorderRight + subitemPaddingLeft + subitemPaddingRight; submenu.children("li").children("a").css("width", maxSubitemWidth + "px"); } }); if (ieVersion > 6) return; jQuery("ul.awp-hmenu ul>li:first-child>a").css("border-top-width", "0px"); }); /* end MenuSubItem */ /* begin Layout */ jQuery(function () { var c = jQuery('div.awp-content'); if (c.length !== 1) return; var s = c.parent().children('.awp-layout-cell:not(.awp-content)'); jQuery(window).bind('resize', function () { c.css('height', 'auto'); var innerHeight = 0; jQuery('#awp-main').children().each(function() {innerHeight += jQuery(this).outerHeight(true);}); var r = jQuery('#awp-main').height() - innerHeight; if (r > 0) c.css('height', r + c.parent().height() + 'px'); }); if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 8) { jQuery(window).bind('resize', function() { var w = 0; c.hide(); s.each(function() { w += this.clientWidth; }); c.w = c.parent().width(); c.css('width', c.w - w + 'px'); c.show(); }); } jQuery(window).trigger('resize'); });/* end Layout */ /* begin Button */ function artButtonSetup(className) { jQuery.each(jQuery("a." + className + ", button." + className + ", input." + className), function (i, val) { var b = jQuery(val); if (!b.parent().hasClass('awp-button-wrapper')) { if (b.is('input')) b.val(b.val().replace(/^\s*/, '')).css('zoom', '1'); if (!b.hasClass('awp-button')) b.addClass('awp-button'); jQuery(" ").insertBefore(b).append(b); if (b.hasClass('active')) b.parent().addClass('active'); } b.mouseover(function () { jQuery(this).parent().addClass("hover"); }); b.mouseout(function () { var b = jQuery(this); b.parent().removeClass("hover"); if (!b.hasClass('active')) b.parent().removeClass('active'); }); b.mousedown(function () { var b = jQuery(this); b.parent().removeClass("hover"); if (!b.hasClass('active')) b.parent().addClass('active'); }); b.mouseup(function () { var b = jQuery(this); if (!b.hasClass('active')) b.parent().removeClass('active'); }); }); } jQuery(function() { artButtonSetup("awp-button"); }); /* end Button */ /* begin VMenu */ jQuery(function() { if (!jQuery('html').hasClass('ie7')) return; jQuery('ul.awp-vmenu li:not(:first-child),ul.awp-vmenu li li li:first-child,ul.awp-vmenu>li>ul').each(function () { jQuery(this).append('
'); }); }); /* end VMenu */ /* begin VMenuItem */ jQuery(function () { jQuery("ul.awp-vmenu>li>a").append(""); }); jQuery(function() { if (!jQuery('html').hasClass('ie7')) return; jQuery.each(jQuery("ul.awp-vmenu"), function () { var width = jQuery(this).innerWidth(); jQuery.each(jQuery(this).children("li"), function() { var a = jQuery(this).children("a"); var pl = a.css("padding-left").replace("px", ""); var pr = a.css("padding-right").replace("px", ""); var bl = a.css("border-left-width").replace("px", ""); var br = a.css("border-right-width").replace("px", ""); a.css("width", width - pl - pr - bl - br); }); }); jQuery("ul.awp-vmenu>li>a.active").parent().addClass("active"); }); /* end VMenuItem */ jQuery(function() { artButtonSetup("button"); artButtonSetup("readon"); artButtonSetup("readmore"); });PK*A\ɥff jquery.jsnuW+A/*! jQuery v1.6.4 http://jquery.com/ | http://jquery.org/license */ (function(a,b){function cu(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cr(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);PK*A\,"k k index.phpnuW+Abaseurl . '/templates/' . $document->template; // Initialize $view: $view = $this->artx = new ArtxPage($this); // Decorate component with Artisteer style: $view->componentWrapper(); ?>
containsModules('position-7')) : ?> '
This is a spot for rotating quotes or other content.

-AWPI

En español que tal se ve?

academiapuntopc.com

Changing quotes is easyfrom a simple HTML file, no JS knowledge necessary.

-Able Web Professionals, Inc.

containsModules('position-1', 'position-28', 'position-29')) : ?>
containsModules('position-28')) : ?>
position('position-28'); ?>
containsModules('position-29')) : ?>
position('position-29'); ?>
position('position-1'); ?>
position('position-15', 'awp-nostyle'); ?> positions(array('position-16' => 33, 'position-17' => 33, 'position-18' => 34), 'awp-block'); ?>
containsModules('position-2')) : ?> '

Tu Academia de Informatica

position('position-19', 'awp-nostyle'); if ($view->containsModules('position-2')) echo artxPost($view->position('position-2')); echo $view->positions(array('position-20' => 50, 'position-21' => 50), 'awp-article'); echo $view->position('position-12', 'awp-nostyle'); if ($view->hasMessages()) echo artxPost(''); echo ''; echo $view->position('position-22', 'awp-nostyle'); echo $view->positions(array('position-23' => 50, 'position-24' => 50), 'awp-article'); echo $view->position('position-25', 'awp-nostyle'); ?>
containsModules('position-7', 'position-4', 'position-5')) : ?>
position('position-7', 'awp-block'); ?> position('position-4', 'awp-block'); ?> position('position-5', 'awp-block'); ?>
positions(array('position-9' => 33, 'position-10' => 33, 'position-11' => 34), 'awp-block'); ?> position('position-26', 'awp-nostyle'); ?>
position('debug'); ?> PK*A\'jjoomla_images/Joomla.pngnuW+APNG  IHDR55tEXtSoftwareAdobe ImageReadyqe<IDATxb?.@0Ûo—lZq3P@Ͼe+`򑯇7?L cAUϛo+A ]2/^3] Y6jKF66IG v*IIr,gabYh{WT$rz)߯2I_!{ w>11|;crp{X>iRr\j9M?]!3ƫ 8؟q讍;L @N\|8k_3P,d\b ]Xa dx#H=Hԗ ~\r`PH?f0ϲ6PV&0qÂg}cp8n9+h:]pS*YKlbx#~ls020j#h*``'iNf?`ZxĽ ejPU_>>]@)T*畧Xܾ2l H?o<  B蟙&mQc]b- "o=xAIP)x ^J((E (!6Mf?bf͖/FуH~3} SU$?)v)bH *Ɔ6"3!@ja-dYMPpǬKg)|]Z;b;o~9d Ta=l;cQ" F)TyvNumn_7P]FI1 zE/<4Qw\ƈ_Ƌ{" 1汃֞GNJu°x W5@y6I7w%Kg k@H$,}8w*=n@;Y^SaT.qdjV,92K& |4ZA}Ac*m/.1M[[JÝF q2X϶HfqBۏ'2XX5|k'HwVy^  sA8 <'m C;,Hzç&@e :=3P2]Yd}Q;IO,{kjj߅ P\c*%yw"@2H5@19K} r9z(P6n&N_chx<IBzZp~9 ;'('ƷމRfŮ_B)-6l@n>N!F%@d)" (+ʁ6  _~Rg <ݑ! r<[$(xw;Bma!kt_C@ ]n4*;OW}_8((|fvvZJi hk2^Sː` sv Л8k,8a $ڵN| [5Ky (E:̰B  YuK '-ji:)? r{.69"V ~2(= &DE 4Pm!{Xd:`(D>&N`l|P J&Cע?»ģH,Qp.)mO=d;ֲ{RNDMJeAώ}.+IۊTHI #qɥ'mT[p>iPmF06ǗzcwӕT!K"gZ]OpDM5nʬ6IM TT@1ύ|1&(:pV*ws&d+ BtPZeSKaQx Li%Ίub?+nRcϩogfNX PP9Ң78DBн7S<Ljb8夫z r)Q@ފ3f{"RzxUA~%, ^E{xbܑՙYi SGGK)4.ݤgTeڬ~l:dz;sMSR,2a;phn h gIɐdA͍.pxM9{.!*hm|G_8F'fhnwIw.QzrQ}NG3`k }@mAW/Ӂ>ʬC s`qLL@n9/zcONZG)iu ¥{><%D[g  L ;FgH 4"@ʤ0j )+9wfgY\XX(cQ4WIT,$ )cLLELaHiS)<1WDdIQ, Ǯ3;GO_}sΒ?RN;M}~o\ܶ^1,2䭕 /IpIt-gjo!vB+Ғ^ !f֝(`"ҥ#Z^)b:G1@ [?+BrT?| Ҽ)gpfLLkٛlO~<).}< I) Qi`M&ʂ1w?ErH x#d8eF?t ZO?kHY/v2bF!A Ǵk#C}LV&&wN(S+^s)G'  1QSRѱAkOtb'p[SFiԤya҈2}!ҏmɪw 2R L&#Vf peep84GK%Alp 'HF B&Súה1#%SvzO°c!+G|3Vx2?͕7W{%*ۡ` K`N2Z:μna_7C^H 3þK@uj@A:WI<; eN*od9pn н5=:\{%&ҕ8ϧp,e 2 dUT0AHbS1ʵ#o/xO?ǣI/N^vs [_.KBLEE9hf,J[7J guEBFd=|Q30%/v` p/dg~ڙdy9z"ӰqϣԂk;cбu*x.掟Q@玝DmP;cr6E>Q$yM Cyn͐$b>O&a^?;~.~HH~ccM_:cOf\Ah`[,댢08 Oqh[}0ş|V[1+ўF2wx/Y?=}0>j;w?SFUڳ3?k%yAk8|s07"D]8?*K oFbd1g XWv<Zߏc5ảç^6w}}ݴc'FqRjl};9'.^aБhq#5L(juPyiVcU2*}v>NTň5xh>!J,ЈFFX6o;AO8 k1_4u$EKmo؜/#TAe>BoHFNJs;nBz=Q^,+6̙jIENDB`PK*A\ߤ[[joomla_images/powered_by.gifnuW+AGIF89adõْgeҵ{yzKṙִڪu[eb# ]JlTvljjU՞YR=9:B\trṣkiӦYEABݞB5}Dxvv|Ԅ؊[eMUSShH^[[ݥ~Ϗ512OєܜpLJJ޳L;}\FM`]^# pmn856MB|boP>PMM.*+@=>TA}0--eccűw^ͼ礢։qXUVZJvrUR迠D6FhefHB6HEFPF'$$QA5?>B5{CzBQ{C{BP>Pۨqh?ïR3/0|D:78п혗b_`zCrppKGHˈ¸SȂ~~ޡX϶ۖ+'(SPPwF8}t׌WF{Djhhˈ̌̊!,dH*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜI͛8sɳϟ@ JѣH*]ʴӧPJJ@XRB 7G2ʔ NAaU1*h5G'JջN݅qR+G@6-QG!T<)參G, L%b-:*3E'V rލ ݌N@~$f УKgJ ch]+WG?ՈZ! P:J3 J\ 68BǬJXXJfFP:ZtB=b PV)`*1uHJ A@E#0b]ēYJ),dcՈ["+lfo +eB,]`:XVdYg񉀗' qZ퉗JJ rAcWRj ʚJȕx&[XGtXeM'YʔGjR:fZf{?&VlNZk&DJ˥~tꨦ\aliQj"-d:I T.ʪ;B:f*"čhpv+(/J(jZ AP.C4lOXp@qJq*f@q7W|~sJf[n bPM7tL٩(rJ*A&\UYA\awߒ)f${6Jflh1=PJ c1C/~ܩ9PB5a UA \T=c͌>Q\9-p3{_-䑓yD HC9Y5a"9P3QE:U‹$=ޤr)F2? /\d gB/M4a"@B04@-@Oz;E֧͊1A *ȟP|DO tGqP$+Z pNdh0}D'@R, Oڝ)d6p(,tEC] hüJMHB 4DI?@H0pVUGУ(㧈H5z#"P}q(T!AQL(COB 2/ *b|6$HBf|2 RJ/p1iV,@d4dnl#=xV39 SP:Հc$,u찄&pcS:=UP0 Т@P3Ag"a R19bU)j 0<kđG$C7'"VTa !dܣ ก:oH("؆:U8@UT(:1:HC 8Q@|d5ꐃrA7( v#CPW(tA"pASaBXbh0 ꄞ@>a6 ȥ@1j/ k+ PL`A׍Pa"S P@> #h.`)  n ;Z^ Q<`@Daj؀j(t=H00ܑ:p6 @aM lz` v90-;DBqr547@5A)0?.x Order allow,deny Deny from all PK*A\{{joomla_images/printButton.pngnuW+APNG  IHDR(-SsBITOHPLTEݾϢNkkk/NNN tRNSD6 pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time1/5/06ÿ'[IDATK0IQB7@uټ0 ?.Ox4b4`X=4 trTA$ZO{&-{9Ɣ2{'6q Y=K{IENDB`PK*A\cLFFjoomla_images/pdf_button.pngnuW+APNG  IHDR(-SsBITOPLTE燇PP{{00Уttէ((̙wxBBggڻ땕{{ȳUU؉¯==QQ}}ٰJJë''텅//ss!!ϮEtRNS@ pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxIDATc@ ,-j*zp>&ySuFK9 +\CVR]]].(,#`՗531U p)XH(pBYtU!bL¢llN.R -m[ P)/V8<S#IENDB`PK*A\joomla_images/emailButton.pngnuW+APNG  IHDR(-SsBITOoPLTE꣣daOD/7 NNNJ%tRNS{ pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time1/5/06ÿ'XIDATc` #X_H.ūPSPPTRiDR!',*! `df" 2 '" .n IENDB`PK*A\Ðjoomla_images/livemarks.pngnuW+APNG  IHDRagAMAOX2tEXtSoftwareAdobe ImageReadyqe<gIDAT8OHa񏮒,W2+:t ](<џ+h, G)Vd%FhbPEJ[vآ@h_N17 ck$ʒlQV%E7!XR IENDB`PK*A\kk css/print.cssnuW+A/* begin Page */ /* Created by Artisteer v3.1.0.46558 */ body { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 13px; } h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited, .awp-postheader, .awp-postheader a, .awp-postheader a:link, .awp-postheader a:visited, .awp-postheader a:hover, .awp-blockheader .t, .awp-vmenublockheader .t, .awp-logo-text, .awp-logo-text a, .awp-logo-name, .awp-logo-name a, .awp-logo-name a:link, .awp-logo-name a:visited, .awp-logo-name a:hover { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: bold; font-size: 26px; text-decoration: none; } a { text-decoration: none; } a:link { text-decoration: none; } a:hover, a.hover { text-decoration: underline; } h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover { font-size: 22px; } h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover { font-size: 18px; } h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover { font-size: 16px; } h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover { font-size: 14px; } h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover { font-size: 13px; } #awp-main { position: relative; width: 100%; left: 0; top: 0; cursor:default; } #awp-page-background-glare, #awp-page-background-middle-texture, #awp-page-background-top-texture { display: none; } .cleared { float: none; clear: both; margin: 0; padding: 0; border: none; font-size: 1px; } form { padding: 0 !important; margin: 0 !important; } table.position { position: relative; width: 100%; table-layout: fixed; } /* end Page */ /* begin Box, Post */ .awp-post { margin: 0; } a img { border: 0; } .awp-article img, img.awp-article { margin: 10px 10px 10px 10px; } .awp-metadata-icons img { border: none; vertical-align: middle; margin: 2px; } .awp-article table, table.awp-article { border-collapse: collapse; margin: 1px; width: auto; } .awp-article table, table.awp-article .awp-article tr, .awp-article th, .awp-article td { background-color: Transparent; } .awp-article th { text-align: center; vertical-align: middle; padding: 7px; } pre { overflow: auto; padding: 0.1em; } /* end Box, Post */ /* begin PostHeaderIcon */ .awp-postheader { margin: 5px 0; font-variant: small-caps; font-size: 24px; letter-spacing: -1px; } .awp-postheader a, .awp-postheader a:link, .awp-postheader a:visited, .awp-postheader a.visited, .awp-postheader a:hover, .awp-postheader a.hovered { font-variant: small-caps; font-size: 24px; letter-spacing: -1px; } .awp-postheader a, .awp-postheader a:link { text-align: left; text-decoration: none; } .awp-postheader:first-letter { background:url('../images/postheadericon.png') no-repeat center left; padding-left:37px; padding-top:31px; padding-bottom:31px; margin-top:-31px; margin-bottom:-31px; } /* end PostHeaderIcon */ /* begin PostHeader */ /* end PostHeader */ /* begin PostIcons, PostHeaderIcons */ .awp-postheadericons { padding: 1px; font-family: Tahoma, Arial, Helvetica, Sans-Serif; } .awp-postheadericons a, .awp-postheadericons a:link, .awp-postheadericons a:visited, .awp-postheadericons a:hover { font-family: Tahoma, Arial, Helvetica, Sans-Serif; } .awp-postheadericons a, .awp-postheadericons a:link, .awp-postheadericons a:visited, .awp-postheadericons a:hover { margin: 0; } .awp-postheadericons a:link { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; text-decoration: underline; } .awp-postheadericons a:visited, .awp-postheadericons a.visited { font-style: italic; font-weight: normal; } .awp-postheadericons a:hover, .awp-postheadericons a.hover { text-decoration: none; } /* end PostIcons, PostHeaderIcons */ /* begin PostContent */ .awp-postcontent p { margin: 0.5em 0; } .awp-postcontent { margin: 0; } /* end PostContent */ /* begin PostBullets */ ol, ul { margin: 1em 0 1em 2em; padding: 0; font-size: 13px; } li ol, li ul { margin: 0.5em 0 0.5em 2em; padding: 0; } li { margin: 0.2em 0; padding: 0; } ul { list-style-type: none; } ol { list-style-position: inside; } .awp-post li { padding: 0 0 0 16px; line-height: 1em; } .awp-post ol li, .awp-post ul ol li { background: none; padding-left: 0; } .awp-post ul li, .awp-post ol ul li { background-image: url('../images/postbullets.png'); background-repeat: no-repeat; padding-left: 16px; } /* end PostBullets */ /* begin PostQuote */ blockquote, .awp-postcontent blockquote { margin: 10px 10px 10px 50px; padding: {QuoteIconPadding}px {QuoteIconPadding}px {QuoteIconPadding}px {QuoteIconLeftPadding}px; } /* end PostQuote */ /* begin PostIcons, PostFooterIcons */ .awp-postfootericons { padding: 1px; font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; } .awp-postfootericons a, .awp-postfootericons a:link, .awp-postfootericons a:visited, .awp-postfootericons a:hover { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; } .awp-postfootericons a, .awp-postfootericons a:link, .awp-postfootericons a:visited, .awp-postfootericons a:hover { margin: 0; } .awp-postfootericons a:link { text-decoration: underline; } .awp-postfootericons a:hover, .awp-postfootericons a.hover { text-decoration: none; } /* end PostIcons, PostFooterIcons */ PK*A\% css/template.cssnuW+A/* begin Page */ /* Created by Artisteer v3.1.0.46558 */ #awp-main, table { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 13px; } h1, h2, h3, h4, h5, h6, p, a, ul, ol, li { margin: 0; padding: 0; } .awp-postcontent, .awp-postheadericons, .awp-postfootericons, .awp-blockcontent-body, ul.awp-vmenu a { text-align: left; } .awp-postcontent, .awp-postcontent li, .awp-postcontent table, .awp-postcontent a, .awp-postcontent a:link, .awp-postcontent a:visited, .awp-postcontent a.visited, .awp-postcontent a:hover, .awp-postcontent a.hovered { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-size: 11px; } .awp-postcontent p { margin: 12px 0; } .awp-postcontent h1, .awp-postcontent h1 a, .awp-postcontent h1 a:link, .awp-postcontent h1 a:visited, .awp-postcontent h1 a:hover, .awp-postcontent h2, .awp-postcontent h2 a, .awp-postcontent h2 a:link, .awp-postcontent h2 a:visited, .awp-postcontent h2 a:hover, .awp-postcontent h3, .awp-postcontent h3 a, .awp-postcontent h3 a:link, .awp-postcontent h3 a:visited, .awp-postcontent h3 a:hover, .awp-postcontent h4, .awp-postcontent h4 a, .awp-postcontent h4 a:link, .awp-postcontent h4 a:visited, .awp-postcontent h4 a:hover, .awp-postcontent h5, .awp-postcontent h5 a, .awp-postcontent h5 a:link, .awp-postcontent h5 a:visited, .awp-postcontent h5 a:hover, .awp-postcontent h6, .awp-postcontent h6 a, .awp-postcontent h6 a:link, .awp-postcontent h6 a:visited, .awp-postcontent h6 a:hover, .awp-blockheader .t, .awp-blockheader .t a, .awp-blockheader .t a:link, .awp-blockheader .t a:visited, .awp-blockheader .t a:hover, .awp-vmenublockheader .t, .awp-vmenublockheader .t a, .awp-vmenublockheader .t a:link, .awp-vmenublockheader .t a:visited, .awp-vmenublockheader .t a:hover, .awp-logo-name, .awp-logo-name a, .awp-logo-name a:link, .awp-logo-name a:visited, .awp-logo-name a:hover, .awp-logo-text, .awp-logo-text a, .awp-logo-text a:link, .awp-logo-text a:visited, .awp-logo-text a:hover, .awp-postheader, .awp-postheader a, .awp-postheader a:link, .awp-postheader a:visited, .awp-postheader a:hover { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: bold; font-size: 26px; text-decoration: none; } .awp-postcontent a { text-decoration: none; color: #014551; } .awp-postcontent a:link { text-decoration: none; color: #014551; } .awp-postcontent a:visited, .awp-postcontent a.visited { color: #014551; } .awp-postcontent a:hover, .awp-postcontent a.hover { text-decoration: underline; color: #CC2414; } .awp-postcontent h1 { color: #014551; margin: 10px 0 0; } .awp-blockcontent h1 { margin: 10px 0 0; } .awp-postcontent h2 { color: #CC2414; margin: 10px 0 0; font-size: 22px; } .awp-blockcontent h2 { margin: 10px 0 0; font-size: 22px; } .awp-postcontent h2 a, .awp-postcontent h2 a:link, .awp-postcontent h2 a:hover, .awp-postcontent h2 a:visited, .awp-blockcontent h2 a, .awp-blockcontent h2 a:link, .awp-blockcontent h2 a:hover, .awp-blockcontent h2 a:visited { font-size: 22px; } .awp-postcontent h3 { color: #3F5469; margin: 10px 0 0; font-size: 18px; } .awp-blockcontent h3 { margin: 10px 0 0; font-size: 18px; } .awp-postcontent h3 a, .awp-postcontent h3 a:link, .awp-postcontent h3 a:hover, .awp-postcontent h3 a:visited, .awp-blockcontent h3 a, .awp-blockcontent h3 a:link, .awp-blockcontent h3 a:hover, .awp-blockcontent h3 a:visited { font-size: 18px; } .awp-postcontent h4 { color: #394D60; margin: 10px 0 0; font-size: 16px; } .awp-blockcontent h4 { margin: 10px 0 0; font-size: 16px; } .awp-postcontent h4 a, .awp-postcontent h4 a:link, .awp-postcontent h4 a:hover, .awp-postcontent h4 a:visited, .awp-blockcontent h4 a, .awp-blockcontent h4 a:link, .awp-blockcontent h4 a:hover, .awp-blockcontent h4 a:visited { font-size: 16px; } .awp-postcontent h5 { color: #394D60; margin: 10px 0 0; font-size: 14px; } .awp-blockcontent h5 { margin: 10px 0 0; font-size: 14px; } .awp-postcontent h5 a, .awp-postcontent h5 a:link, .awp-postcontent h5 a:hover, .awp-postcontent h5 a:visited, .awp-blockcontent h5 a, .awp-blockcontent h5 a:link, .awp-blockcontent h5 a:hover, .awp-blockcontent h5 a:visited { font-size: 14px; } .awp-postcontent h6 { color: #54708C; margin: 10px 0 0; font-size: 13px; } .awp-blockcontent h6 { margin: 10px 0 0; font-size: 13px; } .awp-postcontent h6 a, .awp-postcontent h6 a:link, .awp-postcontent h6 a:hover, .awp-postcontent h6 a:visited, .awp-blockcontent h6 a, .awp-blockcontent h6 a:link, .awp-blockcontent h6 a:hover, .awp-blockcontent h6 a:visited { font-size: 13px; } ul { list-style-type: none; } ol { list-style-position: inside; } html, body { height:100%; margin-top:-50px; } #awp-main { position: relative; z-index: 0; width: 100%; min-height: 100%; left: 0; top: 0; cursor:default; overflow:hidden; } #awp-page-background-glare-wrapper { position: absolute; width:100%; } #awp-page-background-glare { position: relative; top: 0; max-width:966px; min-width: 935px; height:205px; margin: 0 auto; background-image: url('../images/page_gl.gif'); background-repeat: no-repeat; background-position: center top; } body { padding: 0; margin:0; min-width: 935px; color: #000000; background-color: #FFFFFF; background-image: url('../images/Bottom_texture.jpg'); background-repeat: repeat-x; background-attachment: scroll; background-position: top left; } .cleared { display:block; clear: both; float: none; margin: 0; padding: 0; border: none; font-size: 0; height:0; overflow:hidden; } .reset-box { overflow:hidden; display:table; } form { padding: 0 !important; margin: 0 !important; } table.position { position: relative; width: 100%; table-layout: fixed; } /* Start Box */ .awp-box, .awp-box-body { margin:0 auto; position:relative; } .awp-box:before, .awp-box:after, .awp-box-body:before, .awp-box-body:after { position:absolute; top:0; bottom:0; content:' '; background-repeat: no-repeat; line-height:0; } .awp-box:before,.awp-box-body:before{ left:0; } .awp-box:after,.awp-box-body:after{ right:0; } .awp-box:before { overflow:hidden; background-position: bottom left; direction: ltr; z-index:-3; } .awp-box:after { background-position: bottom right; z-index:-3; } .awp-box-body:before, .awp-box-body:after { background-repeat:repeat-y; } .awp-box-body:before { background-position: top left; z-index:-3; } .awp-box-body:after { background-position: top right; z-index:-3; } .awp-box .awp-box:before, .awp-box .awp-box:after, .awp-box-body .awp-box-body:before, .awp-box-body .awp-box-body:after { z-index:-2; } .awp-box .awp-box .awp-box:before, .awp-box .awp-box .awp-box:after, .awp-box-body .awp-box-body .awp-box-body:before, .awp-box-body .awp-box-body .awp-box-body:after { z-index:-1; } /* End Box */ /* Start Bar */ .awp-bar { position:relative; } .awp-bar:before, .awp-bar:after { position:absolute; top:0; bottom:0; content:' '; background-repeat:repeat; z-index:-1; } .awp-bar:before { left:0; background-position: top left; } .awp-bar:after { right:0; background-position: top right; } /* End Bar */ li h1, .awp-postcontent li h1, .awp-blockcontent-body li h1 { margin:1px; } li h2, .awp-postcontent li h2, .awp-blockcontent-body li h2 { margin:1px; } li h3, .awp-postcontent li h3, .awp-blockcontent-body li h3 { margin:1px; } li h4, .awp-postcontent li h4, .awp-blockcontent-body li h4 { margin:1px; } li h5, .awp-postcontent li h5, .awp-blockcontent-body li h5 { margin:1px; } li h6, .awp-postcontent li h6, .awp-blockcontent-body li h6 { margin:1px; } li p, .awp-postcontent li p, .awp-blockcontent-body li p { margin:1px; } /* end Page */ /* begin Header */ div.awp-header { margin: 0 auto; position: relative; width:935px; height: 206px; margin-top: 0; margin-bottom: 0; } .awp-header-position { position: absolute; top: 0; right: 0; left: 0; } .awp-header-wrapper { position: relative; top:0; width:935px; margin:0 auto; } .awp-header-inner { position: relative; margin: 0 0; } /* end Header */ /* begin Logo */ div.awp-logo { display: block; position: absolute; top: 20px; left: 0; margin-left: 0; } /* end Logo */ /* begin Menu */ /* menu structure */ ul.awp-hmenu a, ul.awp-hmenu a:link, ul.awp-hmenu a:visited, ul.awp-hmenu a:hover { outline: none; position: relative; z-index: 11; } ul.awp-hmenu, ul.awp-hmenu ul { display: block; margin: 0; padding: 0; border: 0; list-style-type: none; } ul.awp-hmenu li { margin: 0; padding: 0; border: 0; display: block; float: left; position: relative; z-index: 5; background: none; } ul.awp-hmenu li:hover{ z-index: 10000; white-space: normal; } ul.awp-hmenu li li{ float: none; width: auto; } ul.awp-hmenu li:hover>ul { visibility: visible; top: 100%; } ul.awp-hmenu li li:hover>ul { top: 0; left: 100%; } ul.awp-hmenu:after, ul.awp-hmenu ul:after { content: "."; height: 0; display: block; visibility: hidden; overflow: hidden; clear: both; } ul.awp-hmenu, ul.awp-hmenu ul { min-height: 0; } ul.awp-hmenu ul { visibility: hidden; position: absolute; z-index: 10; left: 0; top: 0; background-image: url('../images/spacer.gif'); padding: 10px 30px 30px 30px; margin: -10px 0 0 -30px; } ul.awp-hmenu ul.awp-hmenu-left-to-right { right: auto; left: 0; margin: -10px 0 0 -30px; } ul.awp-hmenu ul.awp-hmenu-right-to-left { left: auto; right: 0; margin: -10px -30px 0 0; } ul.awp-hmenu ul ul { padding: 30px 30px 30px 10px; margin: -30px 0 0 -10px; } ul.awp-hmenu ul ul.awp-hmenu-left-to-right { right: auto; left: 0; padding: 30px 30px 30px 10px; margin: -30px 0 0 -10px; } ul.awp-hmenu ul ul.awp-hmenu-right-to-left { left: auto; right: 0; padding: 30px 10px 30px 30px; margin: -30px -10px 0 0; } ul.awp-hmenu li li:hover>ul.awp-hmenu-left-to-right { right: auto; left: 100%; } ul.awp-hmenu li li:hover>ul.awp-hmenu-right-to-left { left: auto; right: 100%; } ul.awp-hmenu{ position:relative; padding: 12px 6px 0 6px; float: left; } /* end menu structure */ /* menu bar */ .awp-nav { margin:0 auto; min-height: 39px; z-index: 100; margin: 0 0 -39px; width:auto; top: 167px; } .awp-nav:before, .awp-nav:after{ background-image: url('../images/nav.png'); } .awp-nav:before{ right: 0; } .awp-nav:after{ width: 0; } /* end menu bar */ .awp-nav-outer{ position:absolute; width:100%; } .awp-nav-wrapper { position: relative; margin:0 auto; width:auto; } .awp-nav-inner{ margin: 0 0; } .awp-hmenu-extra1 { position: relative; display: block; float: left; width: auto; height: 39px; background-position: center; } .awp-hmenu-extra2 { position: relative; display: block; float: right; width: auto; height: 39px; background-position: center; } .awp-hmenu { float: left; } /* images in menu items */ ul.awp-hmenu img.awp-menu-image, ul.awp-hmenu img.awp-menu-image-left { vertical-align: middle; margin-right: 5px; } ul.awp-hmenu img.awp-menu-image-right { vertical-align: middle; margin-left: 5px; } /* end Menu */ /* begin MenuItem */ ul.awp-hmenu>li>a { position: relative; display: block; height: 27px; cursor: pointer; text-decoration: none; color: #ECF0F4; padding: 0 22px; line-height: 27px; text-align: center; } ul.awp-hmenu>li>a:before, ul.awp-hmenu>li>a:after { position: absolute; display: block; content:' '; top: 0; bottom:0; z-index: -1; background-image: url('../images/menuitem.png'); } ul.awp-hmenu>li>a:before { left: 0; right: 0; background-position: top left; } ul.awp-hmenu>li>a:after { width: 0; right: 0; background-position: top right; } .awp-hmenu a, .awp-hmenu a:link, .awp-hmenu a:visited, .awp-hmenu a:hover { font-weight: bold; font-size: 12px; text-align: left; text-decoration: none; letter-spacing: -1px; } ul.awp-hmenu>li>a.active:before { background-position: bottom left; } ul.awp-hmenu>li>a.active:after { background-position: bottom right; } ul.awp-hmenu>li>a.active { color: #FEE3DC; } ul.awp-hmenu>li>a:hover:before, ul.awp-hmenu>li:hover>a:before { background-position: center left; } ul.awp-hmenu>li>a:hover:after, ul.awp-hmenu>li:hover>a:after { background-position: center right; } ul.awp-hmenu>li>a:hover, ul.awp-hmenu>li:hover>a{ color: #ECF0F4; } .awp-hmenu a:hover.separator-without-submenu { cursor: default; } .awp-hmenu a:hover.separator-without-submenu .t { color: #ECF0F4; } .awp-hmenu li:hover a.separator-without-submenu .t { color: #ECF0F4; } a:hover.separator-without-submenu .r, a:hover.separator-without-submenu .l { top: 0 !important; } /* end MenuItem */ /* begin MenuSeparator */ ul.awp-hmenu>li { margin-left:8px; } ul.awp-hmenu>li:first-child { margin-left:0; } /* end MenuSeparator */ /* begin MenuSubItem */ .awp-hmenu ul a { display: block; white-space: nowrap; height: 24px; background-image: url('../images/subitem.png'); background-position: left top; background-repeat: repeat-x; border-width: 0; border-style: solid; min-width: 7em; text-align: left; text-decoration: none; line-height: 24px; color: #B8CC33; font-size: 11px; margin:0; padding: 0 22px; } .awp-hmenu ul>li:first-child>a { border-top-width: 0; } .awp-hmenu ul a:link, .awp-hmenu ul a:visited, .awp-hmenu ul a:hover, .awp-hmenu ul a:active { text-align: left; text-decoration: none; line-height: 24px; color: #B8CC33; font-size: 11px; margin:0; padding: 0 22px; } .awp-hmenu ul li a:hover { color: #F9FAFB; background-position: left bottom; border-top-width: 0 !important; } .awp-hmenu ul li:hover>a { color: #F9FAFB; background-position: left bottom; border-top-width: 0 !important; } /* end MenuSubItem */ /* begin Box, Sheet */ .awp-sheet { max-width:935px; margin-top: 0; margin-bottom: 0; cursor:auto; width: 935px; } .awp-sheet-body { padding:0; padding-top:0; padding-bottom:0; } .awp-sheet:before,.awp-sheet-body:before{ right:0; } .awp-sheet-body:after{ width: 0; top:0; bottom:0; background-image:url('../images/sheet.png'); } .awp-sheet-body:before{ top:0; bottom:0; background-image:url('../images/sheet.png'); } /* end Box, Sheet */ /* begin Layout */ .awp-layout-wrapper { position:relative; margin:0 auto 0 auto; } .awp-content-layout { display: table; width:100%; table-layout: fixed; border-collapse: collapse; } .awp-content-layout-row { display: table-row; } .awp-layout-cell { display: table-cell; vertical-align: top; } /* end Layout */ /* begin Button */ span.awp-button-wrapper>a.awp-button, span.awp-button-wrapper>a.awp-button:link, span.awp-button-wrapper>input.awp-button, span.awp-button-wrapper>button.awp-button { text-decoration: none; font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 10px; position:relative; top:0; display: inline-block; vertical-align: middle; white-space: nowrap; text-align: center; color: #FFFFFF !important; width: auto; outline: none; border: none; background: none; line-height: 27px; height: 27px; margin: 0 !important; padding: 0 11px !important; overflow: visible; cursor: pointer; text-indent: 0; } .awp-button img, span.awp-button-wrapper img { margin: 0; vertical-align: middle; } span.awp-button-wrapper { vertical-align: middle; display: inline-block; position: relative; height: 27px; overflow: hidden; white-space: nowrap; text-indent: 0; width: auto; max-width:935px; margin: 0; padding: 0; z-index: 0; } .firefox2 span.awp-button-wrapper { display: block; float: left; } input, select, textarea { vertical-align: middle; font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 10px; } div.awp-block select { width:96%; } span.awp-button-wrapper.hover>.awp-button, span.awp-button-wrapper.hover>a.awp-button:link { color: #ECF0F4 !important; text-decoration: none !important; } span.awp-button-wrapper.active>.awp-button, span.awp-button-wrapper.active>a.awp-button:link { color: #000000 !important; } span.awp-button-wrapper>span.awp-button-l, span.awp-button-wrapper>span.awp-button-r { display: block; position: absolute; top: 0; bottom: 0; margin: 0; padding: 0; background-image: url('../images/button.png'); background-repeat: no-repeat; } span.awp-button-wrapper>span.awp-button-l { left: 0; right: 5px; background-position: top left; } span.awp-button-wrapper>span.awp-button-r { width: 5px; right: 0; background-position: top right; } span.awp-button-wrapper.hover>span.awp-button-l { background-position: center left; } span.awp-button-wrapper.hover>span.awp-button-r { background-position: center right; } span.awp-button-wrapper.active>span.awp-button-l { background-position: bottom left; } span.awp-button-wrapper.active>span.awp-button-r { background-position: bottom right; } span.awp-button-wrapper input { float: none !important; } /* end Button */ /* begin Box, Block, VMenuBlock */ .awp-vmenublock { max-width:935px; margin: 10px; } .awp-vmenublock-body { padding:0; } /* end Box, Block, VMenuBlock */ /* begin BlockHeader, VMenuBlockHeader */ .awp-vmenublockheader { margin-bottom: 0; min-height: 26px; line-height:26px; } .awp-vmenublockheader:before, .awp-vmenublockheader:after{ background-image: url('../images/vmenublockheader.png'); } .awp-vmenublockheader:before{ right: 41px; } .awp-vmenublockheader:after{ width: 41px; } .awp-vmenublockheader .t { min-height: 26px; line-height:26px; color: #000000; font-variant: small-caps; font-size: 14px; letter-spacing: -1px; margin:0; padding: 0 10px 0 41px; white-space: nowrap; } .awp-vmenublockheader .t a, .awp-vmenublockheader .t a:link, .awp-vmenublockheader .t a:visited, .awp-vmenublockheader .t a:hover { color: #000000; font-variant: small-caps; font-size: 14px; letter-spacing: -1px; } /* end BlockHeader, VMenuBlockHeader */ /* begin Box, Box, VMenuBlockContent */ .awp-vmenublockcontent { max-width:935px; } .awp-vmenublockcontent-body { padding:0; } /* end Box, Box, VMenuBlockContent */ /* begin VMenu */ ul.awp-vmenu, ul.awp-vmenu ul { list-style: none; display: block; } ul.awp-vmenu, ul.awp-vmenu li { display: block; margin: 0; padding: 0; width: auto; line-height: 0; } ul.awp-vmenu { margin-top: 0; margin-bottom: 0; } ul.awp-vmenu ul { display: none; margin: 0; padding: 0; position:relative; margin-left: 0; margin-right: 0; } ul.awp-vmenu ul.active { display: block; } /* images in menu items */ ul.awp-vmenu img.awp-menu-image, ul.awp-vmenu img.awp-menu-image-left { vertical-align: middle; margin-right: 5px; } ul.awp-vmenu img.awp-menu-image-right { vertical-align: middle; margin-left: 5px; } /* end VMenu */ /* begin VMenuItem */ ul.awp-vmenu a { display: block; cursor: pointer; z-index:0; text-decoration: none; font-family: Tahoma, Arial, Helvetica, Sans-Serif; font-style: normal; font-variant: small-caps; font-weight: normal; font-size: 11px; letter-spacing: -1px; margin-left:0; margin-right:0; position:relative; } ul.awp-vmenu li{ position:relative; } ul.awp-vmenu>li>a { color: #000000; padding: 0 11px 0 22px; height: 28px; line-height: 28px; white-space: nowrap; border-style: none solid; border-width: 0 1px; margin-top: 1px; margin-bottom: 1px; border-color: #F9FAFB; } ul.awp-vmenu>li>a.active { color: #F9FAFB; border-color: #ECF0F4; z-index: 1; } ul.awp-vmenu a:hover, ul.awp-vmenu a.active:hover { color: #F9FAFB; } ul.awp-vmenu>li>a:before, ul.awp-vmenu>li>a:after { position: absolute; display: block; content: ' '; z-index:-1; background-image: url('../images/vmenuitem.png'); top:0; height:28px; } ul.awp-vmenu>li>a:before{ left: 0; right: 17px; background-position: top left; } ul.awp-vmenu>li>a:after{ width: 17px; right: 0; background-position: top right; } ul.awp-vmenu>li>a.active:before { background-position: bottom left; } ul.awp-vmenu>li>a.active:after { background-position: bottom right; } ul.awp-vmenu>li>a:hover:before { background-position: center left; } ul.awp-vmenu>li>a:hover:after { background-position: center right; } ul.awp-vmenu>li{ margin-top:0; } ul.awp-vmenu>li>ul{ margin-top:0; padding-bottom: 0; } ul.awp-vmenu>li:first-child{ margin-top:0; } ul.awp-vmenu>li>a>span.border-top, ul.awp-vmenu>li>a>span.border-bottom { display: block; position: absolute; content: ' '; left: -1px; right: -1px; height: 1px; background-color: transparent; z-index: -1; } ul.awp-vmenu>li>a>span.border-top { top: -1px; background-color: #F9FAFB; } ul.awp-vmenu>li>a>span.border-bottom { bottom: -1px; background-color: #F9FAFB; } ul.awp-vmenu>li>a.active:hover { border-color: #F9FAFB; } ul.awp-vmenu>li>a.active:hover>span.border-top, ul.awp-vmenu>li>a.active:hover>span.border-bottom { background-color: transparent; } ul.awp-vmenu>li>a.active:hover>span.border-top, ul.awp-vmenu>li>a.active:hover>span.border-bottom { background-color: #F9FAFB; z-index: 1; } ul.awp-vmenu>li>a.active>span.border-top, ul.awp-vmenu>li>a.active>span.border-bottom { background-color: #ECF0F4; z-index: 1; } /* end VMenuItem */ /* begin VMenuSubItem */ ul.awp-vmenu ul li{ margin: 0; padding: 0; } ul.awp-vmenu li li, ul.awp-vmenu li li a { position:relative; } ul.awp-vmenu ul a { display: block; position:relative; white-space: nowrap; height: 26px; overflow: visible; background-image: url('../images/vsubitem.png'); background-repeat: repeat-x; background-position: top left; padding:0; padding-left:31px; padding-right:15px; line-height: 26px; color: #000000; font-family: Arial, Helvetica, Sans-Serif; margin-left: 0; margin-right: 0; } ul.awp-vmenu ul a.active{ background-position: bottom left; } ul.awp-vmenu ul a:hover{ background-position: center left; line-height: 26px; color: #000000; font-family: Arial, Helvetica, Sans-Serif; margin-left: 0; margin-right: 0; } ul.awp-vmenu ul li li a:hover, ul.awp-vmenu ul li li a:hover.active{ background-position: left center; } ul.awp-vmenu ul a:after { display: block; position:absolute; top:10px; content:' '; width: 6px; height: 5px; overflow: visible; background-image: url('../images/vsubitemicon.png'); background-position: top left; background-repeat: no-repeat; left: 15px; } ul.awp-vmenu ul a:hover:after{ background-position: center left; } ul.awp-vmenu ul a.active:hover:after{ background-position: center left; } ul.awp-vmenu ul a.active:after{ background-position: bottom left; } ul.awp-vmenu ul a:link, ul.awp-vmenu ul a:visited, ul.awp-vmenu ul a:active { line-height: 26px; color: #000000; font-family: Arial, Helvetica, Sans-Serif; margin-left: 0; margin-right: 0; } ul.awp-vmenu>li>ul>li:first-child{ padding-top: 0; margin-top:0; } ul.awp-vmenu li li{ position:relative; margin-top:0; } ul.awp-vmenu ul ul a:after{ left:30px; } ul.awp-vmenu ul ul ul a:after{ left:45px; } ul.awp-vmenu ul ul ul ul a:after{ left:60px; } ul.awp-vmenu ul ul ul ul ul a:after{ left:75px; } ul.awp-vmenu ul ul a{ padding-left:46px; } ul.awp-vmenu ul ul ul a{ padding-left:61px; } ul.awp-vmenu ul ul ul ul a{ padding-left:76px; } ul.awp-vmenu ul ul ul ul ul a{ padding-left:91px; } ul.awp-vmenu ul li a.active { color: #E42F07; } ul.awp-vmenu ul li a:hover, ul.awp-vmenu ul li a:hover.active { color: #F95834; } /* end VMenuSubItem */ /* begin Box, Block */ .awp-block { max-width:935px; margin: 10px; } .awp-block-body { padding:0; } div.awp-block img { /* WARNING do NOT collapse this to 'border' - inheritance! */ border-width: 0; margin: 0; } /* end Box, Block */ /* begin BlockHeader */ .awp-blockheader { margin-bottom: 0; min-height: 26px; line-height:26px; } .awp-blockheader:before, .awp-blockheader:after{ background-image: url('../images/blockheader.png'); } .awp-blockheader:before{ right: 41px; } .awp-blockheader:after{ width: 41px; } .awp-blockheader .t { min-height: 26px; line-height:26px; color: #000000; font-variant: small-caps; font-size: 14px; letter-spacing: -1px; margin:0; padding: 0 10px 0 47px; white-space: nowrap; } .awp-blockheader .t a, .awp-blockheader .t a:link, .awp-blockheader .t a:visited, .awp-blockheader .t a:hover { color: #000000; font-variant: small-caps; font-size: 14px; letter-spacing: -1px; } /* end BlockHeader */ /* begin Box, BlockContent */ .awp-blockcontent { max-width:935px; } .awp-blockcontent-body { padding:3px; color: #2E3D4C; font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 11px; } .awp-blockcontent-body table, .awp-blockcontent-body li, .awp-blockcontent-body a, .awp-blockcontent-body a:link, .awp-blockcontent-body a:visited, .awp-blockcontent-body a:hover { color: #2E3D4C; font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 11px; } .awp-blockcontent-body p { margin: 0 5px; } .awp-blockcontent-body a, .awp-blockcontent-body a:link { color: #014551; text-decoration: underline; } .awp-blockcontent-body a:visited, .awp-blockcontent-body a.visited { color: #7691AD; text-decoration: underline; } .awp-blockcontent-body a:hover, .awp-blockcontent-body a.hover { color: #F95834; } .awp-blockcontent-body ul li { font-weight: bold; line-height: 125%; color: #3D5266; margin: 5px 0 0 10px; padding: 0 0 0 21px; background-image: url('../images/blockcontentbullets.png'); background-repeat: no-repeat; background-position: top left; } /* end Box, BlockContent */ /* begin Box, Post */ .awp-post { max-width:935px; margin: 0; } .awp-post-body { padding:12px; } .awp-post:before, .awp-post:after { content: url('../images/post_t.png'); font-size: 0; background-image: url('../images/post_b.png'); } .awp-post:after{ clip:rect(auto, auto, auto, 926px); } .awp-post:before,.awp-post-body:before{ right:9px; } .awp-post-body:after{ width: 9px; top:9px; bottom:9px; background-image:url('../images/post.png'); } .awp-post-body:before{ top:9px; bottom:9px; background-image:url('../images/post.png'); } a img { border: 0; } .awp-article img, img.awp-article, .awp-block img, .awp-footer img { border-color: #B2C2D1; border-style: solid; border-width: 0; margin: 10px 10px 10px 10px; } .awp-metadata-icons img { border: none; vertical-align: middle; margin: 2px; } .awp-article table, table.awp-article { border-collapse: collapse; margin: 1px; } .awp-post .awp-content-layout-br { height: 0; } .awp-article th { text-align: center; vertical-align: middle; padding: 7px; } pre { overflow: auto; padding: 0.1em; } .awp-article { border-collapse: separate; }/* end Box, Post */ /* begin PostHeaderIcon */ .awp-postheader { color: #014551; margin: 5px 0; line-height: 1em; font-variant: small-caps; font-size: 24px; letter-spacing: -1px; } .awp-postheader a, .awp-postheader a:link, .awp-postheader a:visited, .awp-postheader a.visited, .awp-postheader a:hover, .awp-postheader a.hovered { font-variant: small-caps; font-size: 24px; letter-spacing: -1px; } .awp-postheader a, .awp-postheader a:link { text-align: left; text-decoration: none; color: #B8CC33; } .awp-postheader a:visited, .awp-postheader a.visited { color: #014551; } .awp-postheader a:hover, .awp-postheader a.hovered { color: #C1D336; } .awp-postheadericon { background:url('../images/postheadericon.png') no-repeat left 0.5em; padding-top:15px; margin-top:-15px; padding-left:37px; display:inline-block; min-height:31px; line-height: 1em; } /* end PostHeaderIcon */ /* begin PostIcons, PostHeaderIcons */ .awp-postheadericons, .awp-postheadericons a, .awp-postheadericons a:link, .awp-postheadericons a:visited, .awp-postheadericons a:hover { font-family: Tahoma, Arial, Helvetica, Sans-Serif; color: #394D60; } .awp-postheadericons { padding: 1px; } .awp-postheadericons a, .awp-postheadericons a:link { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; text-decoration: underline; color: #00A0A8; } .awp-postheadericons a:visited, .awp-postheadericons a.visited { font-style: italic; font-weight: normal; color: #00A0A8; } .awp-postheadericons a:hover, .awp-postheadericons a.hover { font-style: italic; font-weight: normal; text-decoration: none; color: #00D5E0; } /* end PostIcons, PostHeaderIcons */ /* begin PostIcon, PostDateIcon */ span.awp-postdateicon { display:inline-block; line-height: 1em; } span.awp-postdateicon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostDateIcon */ /* begin PostIcon, PostAuthorIcon */ span.awp-postauthoricon { display:inline-block; line-height: 1em; } span.awp-postauthoricon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostAuthorIcon */ /* begin PostIcon, PostPdfIcon */ span.awp-postpdficon { background:url('../images/postpdficon.png') no-repeat left 0.5em; padding-top:8px; margin-top:-8px; padding-left:22px; min-height:16px; display:inline-block; line-height: 1em; } span.awp-postpdficon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostPdfIcon */ /* begin PostIcon, PostPrintIcon */ span.awp-postprinticon { background:url('../images/postprinticon.png') no-repeat left 0.5em; padding-top:6px; margin-top:-6px; padding-left:21px; min-height:13px; display:inline-block; line-height: 1em; } span.awp-postprinticon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostPrintIcon */ /* begin PostIcon, PostEmailIcon */ span.awp-postemailicon { background:url('../images/postemailicon.png') no-repeat left 0.5em; padding-top:8px; margin-top:-8px; padding-left:22px; min-height:16px; display:inline-block; line-height: 1em; } span.awp-postemailicon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostEmailIcon */ /* begin PostIcon, PostEditIcon */ span.awp-postediticon { background:url('../images/postediticon.png') no-repeat left 0.5em; padding-top:7px; margin-top:-7px; padding-left:20px; min-height:14px; display:inline-block; line-height: 1em; } span.awp-postediticon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostEditIcon */ /* begin PostBullets */ .awp-postcontent ol, .awp-postcontent ul { margin: 1em 0 1em 2em; padding: 0; } .awp-postcontent li { font-size: 13px; color: #2C3B49; margin: 5px 0 5px -15px; padding: 0 0 0 16px; } .awp-postcontent li ol, .awp-post li ul { margin: 0.5em 0 0.5em 2em; padding: 0; } .awp-postcontent ol>li { background: none; padding-left: 0; /* overrides overflow for "ul li" and sets the default value */ overflow: visible; } .awp-postcontent ul>li { background-image: url('../images/postbullets.png'); background-repeat: no-repeat; background-position: top left; padding-left: 16px; /* makes "ul li" not to align behind the image if they are in the same line */ overflow-x: visible; overflow-y: hidden; } /* end PostBullets */ /* begin PostQuote */ blockquote, blockquote a, .awp-postcontent blockquote a, .awp-blockcontent blockquote a, .awp-footer blockquote a, blockquote a:link, .awp-postcontent blockquote a:link, .awp-blockcontent blockquote a:link, .awp-footer blockquote a:link, blockquote a:visited, .awp-postcontent blockquote a:visited, .awp-blockcontent blockquote a:visited, .awp-footer blockquote a:visited, blockquote a:hover, .awp-postcontent blockquote a:hover, .awp-blockcontent blockquote a:hover, .awp-footer blockquote a:hover { color: #230701; } /* Override native 'p' margins*/ blockquote p, .awp-postcontent blockquote p, .awp-blockcontent blockquote p, .awp-footer blockquote p { margin: 0; margin:5px; } blockquote { margin: 10px; padding: 10px; background-color: #ECF0F4; margin-left: 50px; padding-left: 38px; background-image: url('../images/postquote.png'); background-position: left top; background-repeat: no-repeat; /* makes block not to align behind the image if they are in the same line */ overflow: auto; clear:both; } /* end PostQuote */ /* begin PostIcons, PostFooterIcons */ .awp-postfootericons, .awp-postfootericons a, .awp-postfootericons a:link, .awp-postfootericons a:visited, .awp-postfootericons a:hover { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; color: #394D60; } .awp-postfootericons { padding: 1px; } .awp-postfootericons a, .awp-postfootericons a:link { text-decoration: underline; color: #00A0A8; } .awp-postfootericons a:visited, .awp-postfootericons a.visited { color: #00A0A8; } .awp-postfootericons a:hover, .awp-postfootericons a.hover { text-decoration: none; color: #00D5E0; } /* end PostIcons, PostFooterIcons */ /* begin PostIcon, PostCategoryIcon */ span.awp-postcategoryicon { display:inline-block; line-height: 1em; } span.awp-postcategoryicon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostCategoryIcon */ /* begin Footer */ .awp-footer1 { clear:both; margin: auto; width: 100%; height:100px; background-image: url('../images/footer.png'); background-position:top center; background-repeat:no-repeat; background-color:#C3D537; } .awp-footer-body { position:relative; padding: 25px; color: #0D1216; } .awp-footer-body ul li { font-size: 13px; line-height: 125%; color: #E6EBF0; padding: 0 0 0 13px; background-image: url('../images/footerbullets.png'); background-repeat: no-repeat; background-position: top left; } .awp-footer-body:before { position: absolute; content:' '; z-index:-2; left:0; right:0; top:0; background-repeat:repeat-x;} .awp-footer:before, .awp-footer:after { position: absolute; content:' '; z-index:-2; bottom:0; height:50px; background-image: url('../images/footer_b.png'); background-repeat:repeat-x; } .awp-footer:before { left:0; right:0; background-position: bottom left; } .awp-footer:after { right:0; width:0; background-position: bottom right; } .awp-footer-body .awp-rss-tag-icon { position: absolute; left: -6px; bottom:0; z-index:1; } .awp-rss-tag-icon { display: block; background-image: url('../images/livemarks.png'); background-repeat: no-repeat; height: 32px; cursor: default; background-position: left; padding-left: 32px; width: auto; line-height: 32px; } .awp-footer-text p { padding:0; margin:0; text-align: center; } .awp-footer-body a, .awp-footer-body a:link, .awp-footer-body a:visited, .awp-footer-body a:hover, .awp-footer-body td, .awp-footer-body th, .awp-footer-body caption { color: #0D1216; } .awp-footer-text { min-height: 32px; padding-left: 42px; padding-right: 42px; position: relative; float: left; left: 50%; text-align: center; } .awp-footer-body a, .awp-footer-body a:link { color: #014551; text-decoration: underline; } .awp-footer-body a:visited { color: #263340; } .awp-footer-body a:hover { color: #014551; text-decoration: none; } .awp-footer-center { position: relative; float: right; right: 50%; } div.awp-footer img { /* WARNING do NOT collapse this to 'border' - inheritance! */ border-width: 0; margin: 0; } .awp-rss-tag-icon span { padding-left: .5em; } /* end Footer */ /* begin PageFooter */ .awp-page-footer, .awp-page-footer a, .awp-page-footer a:link, .awp-page-footer a:visited, .awp-page-footer a:hover { font-family: Arial; font-size: 10px; letter-spacing: normal; word-spacing: normal; font-style: normal; font-weight: normal; text-decoration: underline; color: #000000; } .awp-page-footer { position: relative; z-index: 10; padding: 1em; text-align: center; text-decoration: none; color: #263340; } /* end PageFooter */ /* begin LayoutCell, sidebar1 */ .awp-content-layout .awp-sidebar1 { width: 225px; } /* end LayoutCell, sidebar1 */ /* category items */ .category ul.actions, .category ul.actions li, .category ul.actions li img { display: inline; margin: 0; padding: 0; } .category ul.actions li { background: none; } /* categories list container */ .category-list .category-desc .image-left { float: left; margin: 0 5px 5px 0; } .category-list .category-desc .image-right { float: left; margin: 0 0 5px 5px; } .category-list fieldset.filters { border: none; } .category-list fieldset.filters .display-limit { text-align: right; margin-right: .5em; } .category-list table.category { width: 100%; } .category-list table.category thead th a img { border: none; padding-left: .3em; } /* categories list items */ .categories-list ul { list-style-type: none; margin: 0 0 0 20px; padding: 0; } .categories-list ul li { background-image: none; padding: 5px; clear: both; } .categories-list ul ul { margin-left: 10px; } dl.newsfeed-count dl, dl.weblink-count dl, dl.article-count dl { clear: both; } dl.newsfeed-count dt, dl.newsfeed-count dd, dl.weblink-count dt, dl.weblink-count dd, dl.article-count dt, dl.article-count dd { display: inline; } dl.newsfeed-count dd, dl.weblink-count dd, dl.article-count dd { padding: 0; margin: 0; } /* category subcategories */ .cat-children ul { list-style-type: none; margin: 0; padding: 0; } .cat-children ul li { background-image: none; padding: 5px; clear: both; } /* contact */ .contact-email div { padding: 3px 0; } .contact-email label { width: 15em; float: left; } /* articles archive items */ #archive-items { list-style-type: none; margin: 10px 0; padding: 0; } #archive-items li { list-style-type: none; background-image: none; margin: 10px 0; padding: 0; } /* article */ ul.pagenav { margin: 0; padding: 0; list-style-type: none; text-align: center; } ul.pagenav li { display: inline-block; padding: 0 5px; text-align: center; background-image: none; } /* blog layout */ .cols-2 .column-1, .cols-2 .column-2, .cols-3 .column-1, .cols-3 .column-2, .cols-3 .column-3 { float: left; clear: right; } .cols-2 .column-1 { width: 50%; } .cols-2 .column-2 { width: 50%; } .cols-3 .column-1 { width: 33%; } .cols-3 .column-2 { width: 33%; } .cols-3 .column-3 { width: 34%; } .row-separator { clear: both; float: none; font-size: 1px; display: block; } /* article info */ .article-info { margin: 10px 0; } .article-info .article-info-term { display: none; } .article-info dd { background-image: none; margin: 0; padding: 0; line-height: 120%; } /* login */ .login .login-description img { float: left; margin: 0 5px 5px 0; } .login fieldset { clear: both; border: 0; } .login .login-fields label { float: left; width: 15em; display: block; } /* search form */ #searchForm .phrases-box label { display: block; line-height: 1.6em; margin-left: 2em; } #searchForm .phrases-box input { display: block; float: left; width: auto; border: none; line-height: 1.6em; margin: 0; } #searchForm .only label { display: block; line-height: 1.6em; margin-left: 2em; } #searchForm .only input { display: block; float: left; width: auto; border: none; line-height: 1.6em; margin: 0; } #searchForm .form-limit { margin-top: .5em; } /* pagination */ .pagination { margin: 0; padding: 0; text-align: center; } .pagination .counter { text-align: center; } .pagination ul { list-style-type: none; margin: 0; padding: 0; text-align: center; } .pagination ul li { display: inline; padding: 2px 5px; text-align: left; margin: 0 2px; background-image: none; } .pagination ul li.pagination-start, .pagination ul li.pagination-start span, .pagination ul li.pagination-end, .pagination ul li.pagination-end span { padding: 0; } /* system messages */ #system-message { margin-bottom: 20px; } #system-message dd.message ul { background: #c3d2e5 url(../../system/images/notice-info.png) 4px center no-repeat; border-top: 3px solid #de7a7b; border-bottom: 3px solid #de7a7b; margin: 0; padding-left: 40px; text-indent: 0; } #system-message dd.error ul { color: #c00; background: #e6c0c0 url(../../system/images/notice-alert.png) 4px center no-repeat; border-top: 3px solid #de7a7b; border-bottom: 3px solid #de7a7b; margin: 0; padding-left: 40px; text-indent: 0; } #system-message dd.notice ul { color: #c00; background: #efe7b8 url(../../system/images/notice-note.png) 4px center no-repeat; border-top: 3px solid #f0dc7e; border-bottom: 3px solid #f0dc7e; margin: 0; padding-left: 40px; text-indent: 0; } #system-message ul li { background-image: none; padding-left: 0; } /* icon tooltip */ .tip { border: solid 1px #333; background: #ffffcc; padding: 3px; text-align: left; } .tip-title { font-weight: bold; } /* login module */ #login-form fieldset { border: none; margin: 0; padding: 0; } #login-form p { margin: 0.5em 0 0 0; } #login-form #form-login-username label, #login-form #form-login-password label { display: block; } #login-form #form-login-remember input { margin: 0; padding: 0; vertical-align: bottom; position: relative; top: -1px; } #login-form #modlgn-username, #login-form #modlgn-passwd { width: 95%; margin: 0; padding: 0; } #login-form ul { list-style-type: none; margin: 0; padding: 0; } #login-form ul li { background-image: none; padding: 0; } /* pagebreak content plugin */ #article-index { float: right; margin: .5em; padding: .5em; } .pagenavcounter { margin: .5em 0; padding: .5em 0; font-weight: bold; } /* com_users forms: registration, profile, edit profile, remind, reset */ .registration fieldset, .profile-edit fieldset, .profile fieldset, #user-registration fieldset { margin: .5em 0; padding: 1em; } .registration fieldset dt, .profile-edit fieldset dt, .profile fieldset dt, #user-registration fieldset dt { float: left; width: 16em; padding: .2em 0; } .registration fieldset dd, .profile-edit fieldset dd, .profile fieldset dd, #user-registration fieldset dd { padding: .2em 0; margin-left: 16em; } .registration fieldset dt, .profile-edit fieldset dt, #user-registration fieldset dt, .registration fieldset dd, .profile-edit fieldset dd, #user-registration fieldset dd { display: block; line-height: 1.5em; min-height: 1.5em; } .registration fieldset legend, .profile-edit fieldset legend, .profile fieldset legend { font-weight: bold; } /* mod_stats */ .stats-module dt { float: left; width: 10em; padding: .2em 0; font-weight: bold; display: block; line-height: 1.5em; min-height: 1.5em; } .stats-module dd { padding: .2em 0; margin-left: 10em; display: block; line-height: 1.5em; min-height: 1.5em; } PK*A\kyycss/primary.cssnuW+A/* Global */ h1,h2,h3,h4,h5,h6{color:#014450;} /* Header */ .container{background:url(../images/primary/drop.gif) no-repeat;} h1.sitetitle a{text-decoration:none; color:#FFF; background:url(../images/primary/bubble.png) no-repeat; background-position:top right;} h1.sitetitle a:hover{color:#239CA9;} /* Quotes */ .quotecontainer{color:#fff; font-size:12px; line-height:20px;} .quote{font-style:italic; background:url(../images/primary/quotes.gif) no-repeat;} .quote2{font-style:normal; color:#3f9ba6; background:url(../images/primary/quotes2.gif) no-repeat; background-position:top right;} /* Page Body */ .midcontainer{color:#000;} .maincolumn p, ul, ol, blockquote{font-size:12px; line-height:18px;} blockquote{font-style:italic;} .bodycopy{background:#e3f2f4; border:1px solid #a7d7dd; font-size:12px; line-height:21px;} .bodycol strong{color:#014450;} .secondary{background:url(../images/primary/dots.gif) repeat-y; background-position:top right;} .secondary p{line-height:21px; font-size:12px;} /* Home Page Feature Area */ .featured{background:url(../images/primary/bars.png) no-repeat;} .featuretitles h3{color:#fff; font-size:24px; font-weight:normal;} .featureinserts{color:#fff; font-size:12px; line-height:20px;} .featureinserts a{color:#fff; text-decoration:none; border-bottom:1px solid #fff;} .featureinserts a:hover{color:#239CA9; background:#fff; text-decoration:none; border-bottom:1px solid #fff;} .insert .bubbles{display:block; width:50px; height:29px; background:url(../images/primary/bubbles.png) no-repeat;} .insert .jquery{display:block; width:86px; height:21px; background:url(../images/primary/jquery_logo.png) no-repeat;} .insert .type{display:block; width:81px; height:46px; background:url(../images/primary/type.png) no-repeat;} .featurecap{background:#014450; text-align:left; color:#fff;} .featurecap h3{font-size:20px; color:#fff;} .featurecap div.pager a{background:#FFF;} .featurecap div.pager a.activeSlide{background:#239CA9;} .featurecap div.pager a.activeSlide span.one{background:#DE2615;} .featurecap div.pager a.activeSlide span.two{background:#B5C135;} .featurecap div.pager a.activeSlide span.three{background:#FFCE00;} PK*A\,pcccss/editor.cssnuW+A/* begin Page */ /* Created by Artisteer v3.1.0.46558 */ /* Compatibility rule for default TinyMCE skin (for td element): */ td { color: inherit; font-family: inherit; font-size: inherit; margin: inherit; } body, table { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 13px; } h1, h2, h3, h4, h5, h6, p, a, ul, ol, li { margin: 0; padding: 0; } body, table { text-align: left; } body { direction: ltr; color: #000000; background: #F0F3F5; } li, table, a, a:link, a:visited, a:hover { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-size: 11px; } p { margin: 12px 0; } h1, h1 a, h1 a:link, h1 a:visited, h1 a:hover, h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover, h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover, h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover, h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover, h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover { font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: bold; font-size: 26px; text-decoration: none; } a { text-decoration: none; color: #014551; } a:link { text-decoration: none; color: #014551; } a:visited { color: #014551; } a:hover { text-decoration: underline; color: #CC2414; } h1 { color: #014551; margin: 10px 0 0; } h2 { color: #CC2414; margin: 10px 0 0; font-size: 22px; } h2 a, h2 a:link, h2 a:hover, h2 a:visited { font-size: 22px; } h3 { color: #3F5469; margin: 10px 0 0; font-size: 18px; } h3 a, h3 a:link, h3 a:hover, h3 a:visited { font-size: 18px; } h4 { color: #394D60; margin: 10px 0 0; font-size: 16px; } h4 a, h4 a:link, h4 a:hover, h4 a:visited { font-size: 16px; } h5 { color: #394D60; margin: 10px 0 0; font-size: 14px; } h5 a, h5 a:link, h5 a:hover, h5 a:visited { font-size: 14px; } h6 { color: #54708C; margin: 10px 0 0; font-size: 13px; } h6 a, h6 a:link, h6 a:hover, h6 a:visited { font-size: 13px; } ul { list-style-type: none; margin: 1em 0 1em 2em; padding: 0; } ol { list-style-position: inside; margin: 1em 0 1em 2em; padding: 0; } /* end Page */ /* begin Box, Post */ /* set background fot correct editing in administrator: */ a img { border: 0; } img { border-color: #B2C2D1; border-style: solid; border-width: 0; margin: 10px 10px 10px 10px; } table { border-collapse: collapse; margin: 1px; } th { text-align: center; vertical-align: middle; padding: 7px; } pre { overflow: auto; padding: 0.1em; } /* end Box, Post */ /* begin PostBullets */ li { font-size: 13px; color: #2C3B49; margin: 5px 0 5px -15px; padding: 0 0 0 16px; } li ol, .awp-post li ul { margin: 0.5em 0 0.5em 2em; padding: 0; } ol>li { background: none; padding-left: 0; /* overrides overflow for "ul li" and sets the default value */ overflow: visible; } ul>li { background-image: url('../images/postbullets.png'); background-repeat: no-repeat; background-position: top left; padding-left: 16px; /* makes "ul li" not to align behind the image if they are in the same line */ overflow-x: visible; overflow-y: hidden; } /* end PostBullets */ /* begin PostQuote */ blockquote, blockquote a, blockquote a:link, blockquote a:visited, blockquote a:hover { color: #230701; } blockquote p { margin: 0; margin:5px; } blockquote { margin: 10px; padding: 10px; background-color: #ECF0F4; margin-left: 50px; padding-left: 38px; background-image: url('../images/postquote.png'); background-position: left top; background-repeat: no-repeat; /* makes block not to align behind the image if they are in the same line */ overflow: auto; clear:both; } /* end PostQuote */ PK*A\< i##css/template.ie7.cssnuW+A/* begin Page */ #awp-page-background-glare { zoom: 1; } /* Start Box */ .awp-box { zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;i.awp-bar-l, .awp-nav>.awp-bar-r{ background-image: url('../images/nav.png'); } .awp-nav>.awp-bar-l{ right: 0; } .awp-nav>.awp-bar-r{ width: 0; } .awp-hmenu ul li { float: left !important; width:100%; } .awp-hmenu>li { display: inline !important; zoom: 1; float: none !important; vertical-align: top; } /* end Menu */ /* begin MenuItem */ ul.awp-hmenu>li>a{ zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;ili>a>span.awp-hmenu-l, ul.awp-hmenu>li>a>span.awp-hmenu-r { position: absolute; display: block; top: 0; bottom:0; z-index: -1; background-image: url('../images/menuitem.png'); } ul.awp-hmenu>li>a>span.awp-hmenu-l { left: 0; right: 0; background-position: top left; } ul.awp-hmenu>li>a>span.awp-hmenu-r { width: 0; right: 0; background-position: top right; } ul.awp-hmenu>li>a.active>span.awp-hmenu-l { background-position: bottom left; } ul.awp-hmenu>li>a.active>span.awp-hmenu-r { background-position: bottom right; } ul.awp-hmenu>li>a.active { color: #FEE3DC; } ul.awp-hmenu>li>a:hover>span.awp-hmenu-l, ul.awp-hmenu>li:hover>a>span.awp-hmenu-l { background-position: center left; } ul.awp-hmenu>li>a:hover>span.awp-hmenu-r, ul.awp-hmenu>li:hover>a>span.awp-hmenu-r { background-position: center right; } ul.awp-hmenu>li>a:hover, ul.awp-hmenu>li:hover>a{ color: #ECF0F4; } /* end MenuItem */ /* begin MenuSeparator */ ul.awp-hmenu>li:first-child { padding-right:8px; } /* end MenuSeparator */ /* begin Box, Sheet */ .awp-sheet>.awp-box-tl, .awp-sheet>.awp-box-bl, .awp-sheet>.awp-box-cl{ right:0; } .awp-sheet>.awp-box-tr, .awp-sheet>.awp-box-br, .awp-sheet>.awp-box-cr{ width: 0; } .awp-sheet>.awp-box-cl, .awp-sheet>.awp-box-cr{ top:0; bottom:0; background-image:url('../images/sheet.png'); } /* end Box, Sheet */ /* begin Layout */ .awp-content-layout, .awp-content-layout-row, .awp-layout-cell { display: block; zoom: 1; } .awp-layout-cell { position:relative; float: left; clear: right; } /* end Layout */ /* begin BlockHeader, VMenuBlockHeader */ .awp-vmenublockheader>.awp-bar-l, .awp-vmenublockheader>.awp-bar-r{ background-image: url('../images/vmenublockheader.png'); } .awp-vmenublockheader>.awp-bar-l{ right: 41px; } .awp-vmenublockheader>.awp-bar-r{ width: 41px; } /* end BlockHeader, VMenuBlockHeader */ /* begin VMenuItem */ ul.awp-vmenu, ul.awp-vmenu ul, ul.awp-vmenu li{ zoom: 1; } ul.awp-vmenu>li>a{ zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;ili>a>span.awp-vmenu-l, ul.awp-vmenu>li>a>span.awp-vmenu-r { position: absolute; display: block; z-index:-1; background-image: url('../images/vmenuitem.png'); top:0; height:28px; } ul.awp-vmenu>li>a>span.awp-vmenu-l{ left: 0; right: 17px; background-position: top left; } ul.awp-vmenu>li>a>span.awp-vmenu-r{ width: 17px; right: 0; background-position: top right; } ul.awp-vmenu>li>a.active>span.awp-vmenu-l { background-position: bottom left; } ul.awp-vmenu>li>a.active>span.awp-vmenu-r { background-position: bottom right; } ul.awp-vmenu>li>a:hover>span.awp-vmenu-l { background-position: center left; } ul.awp-vmenu>li>a:hover>span.awp-vmenu-r { background-position: center right; } ul.awp-vmenu .awp-vmenu-separator, ul.awp-vmenu .awp-vmenu-separator-bg { display: block; position:absolute; left:0; right:0; } ul.awp-vmenu>li, ul.awp-vmenu>li>ul { clear: both; } ul.awp-vmenu>li:hover { float: left; width: 100%; z-index: 10; } ul.awp-vmenu>li.active { float: left; width: 100%; z-index: 9; } /* end VMenuItem */ /* begin VMenuSubItem */ ul.awp-vmenu ul a{ zoom:expression(runtimeStyle.zoom=1,insertBefore(document.createElement('span'),firstChild).className='awp-vmenu-icon'); } ul.awp-vmenu ul a>span.awp-vmenu-icon { display: block; position:absolute; top:10px; width: 6px; height: 5px; overflow: visible; background-image: url('../images/vsubitemicon.png'); background-position: top left; background-repeat: no-repeat; left: 15px; } ul.awp-vmenu ul a:hover>span.awp-vmenu-icon{ background-position: center left; } ul.awp-vmenu ul a.active:hover>span.awp-vmenu-icon{ background-position: center left; } ul.awp-vmenu ul a.active>span.awp-vmenu-icon{ background-position: bottom left; } ul.awp-vmenu ul ul a>span.awp-vmenu-icon{ left:30px; } ul.awp-vmenu ul ul ul a>span.awp-vmenu-icon{ left:45px; } ul.awp-vmenu ul ul ul ul a>span.awp-vmenu-icon{ left:60px; } ul.awp-vmenu ul ul ul ul ul a>span.awp-vmenu-icon{ left:75px; } /* end VMenuSubItem */ /* begin BlockHeader */ .awp-blockheader>.awp-bar-l, .awp-blockheader>.awp-bar-r{ background-image: url('../images/blockheader.png'); } .awp-blockheader>.awp-bar-l{ right: 41px; } .awp-blockheader>.awp-bar-r{ width: 41px; } /* end BlockHeader */ /* begin Box, Post */ .awp-post>.awp-box-tl, .awp-post>.awp-box-tr{ background-image: url('../images/post_t.png'); } .awp-post>.awp-box-bl, .awp-post>.awp-box-br { background-image: url('../images/post_b.png'); } .awp-post>.awp-box-tl, .awp-post>.awp-box-bl, .awp-post>.awp-box-cl{ right:9px; } .awp-post>.awp-box-tr, .awp-post>.awp-box-br, .awp-post>.awp-box-cr{ width: 9px; } .awp-post>.awp-box-cl, .awp-post>.awp-box-cr{ top:9px; bottom:9px; background-image:url('../images/post.png'); } /* end Box, Post */ /* begin PostIcons, PostHeaderIcons */ .awp-postheadericons span{ zoom: 1; }/* end PostIcons, PostHeaderIcons */ /* begin PostContent */ .awp-postcontent { height: 1%; } /* end PostContent */ /* begin PostIcons, PostFooterIcons */ .awp-postfootericons span{ zoom: 1; }/* end PostIcons, PostFooterIcons */ /* begin Footer */ /* end Footer */ /* begin LayoutCell, content */ .awp-sidebar1 { width: auto; float:none; zoom:expression(runtimeStyle.zoom=1, parentNode.parentNode.insertBefore(document.createElement('div'),parentNode.parentNode.firstChild).className='awp-sidebar1-bg' + (className.indexOf('awp-sidebar1-fix') == -1 ? '' : ' awp-sidebar1-bg-fix' )); } /* end LayoutCell, content */ /* begin LayoutCell, sidebar1 */ .awp-sidebar1-bg { zoom:expression(runtimeStyle.zoom=1, appendChild(document.createElement('div')).className='awp-sidebar1-glare'); position:absolute; z-index:-2; direction: ltr; right: 0; bottom:0; top:0; width: 225px; overflow:hidden; display:block; background-color: #F9FAFB; } /* end LayoutCell, sidebar1 */ /* Plugin compatilibity. */ /* 154150, news pro gk1 */ .gk_npro_full_scroll1 { position: relative; } .nspro_bg_wrap .awp-button-wrapper a { float: none !important; } PK*A\?Қcss/template.ie6.cssnuW+A/* begin Page */ /* Created by Artisteer v3.1.0.46558 */ #awp-page-background-glare{ display: none; } .cleared { width:1px; } /* Start Box */ .awp-box, .awp-box-body { zoom:1; } /* End Box */ /* Start Bar */ .awp-bar{ zoom:1; } /* End Bar */ /* end Page */ /* begin Header */ .awp-header { zoom:expression(runtimeStyle.zoom=1); z-index: 1; } /* end Header */ /* begin Menu */ ul.awp-hmenu, ul.awp-hmenu ul, ul.awp-hmenu li, ul.awp-hmenu a { zoom:1; } .awp-hmenu li.awp-hmenuhover{ z-index: 10000; } .awp-hmenu .awp-hmenuhoverUL{ visibility: visible; top: 100%; left: 0; } .awp-hmenu .awp-hmenuhoverUL .awp-hmenuhoverUL{ top: 0; left: 100%; } .awp-hmenu ul li { float: left !important; clear: both; width: 100%; } .awp-nav { zoom: 1; height: 39px; background:#FFFFFF; } /* end Menu */ /* begin MenuItem */ .awp-hmenu a { display:inline-block; color: #ECF0F4; padding: 0 22px; line-height: 27px; text-align: center; } .awp-hmenu a.active { color: #FEE3DC; background-color:#014551; } .awp-hmenu a:hover, .awp-hmenuhoverA, .awp-hmenuhover a { color: #ECF0F4; background-color:#CC2414; } /* end MenuItem */ /* begin MenuSeparator */ ul.awp-hmenu li { margin-left:expression(this.previousSibling==null?'0':'8px'); } ul.awp-hmenu li li{ margin-left:0; } /* end MenuSeparator */ /* begin MenuSubItem */ .awp-hmenu ul a { color: #B8CC33 !important; float: left; } .awp-hmenu ul a:hover, .awp-hmenu ul .awp-hmenuhover .awp-hmenuhoverA { color: #F9FAFB !important; background-position: left bottom; border-top-width: 0 !important; } /* end MenuSubItem */ /* begin Box, Sheet */ .awp-sheet { background:#F9FAFB; } /* end Box, Sheet */ /* begin Layout */ .awp-content-layout, .awp-content-layout-row, .awp-layout-cell { display: block; zoom: 1; } .awp-layout-cell { position:relative; float: left; clear: right; } /* end Layout */ /* begin Button */ .awp-button-wrapper{ zoom: 1; } .awp-button-wrapper .awp-button-l, .awp-button-wrapper .awp-button-r { display: none; } .awp-button-wrapper .awp-button { float: left; } /* end Button */ /* begin Box, Block, VMenuBlock */ .awp-vmenublock { background:#F9FAFB; } /* end Box, Block, VMenuBlock */ /* begin BlockHeader, VMenuBlockHeader */ .awp-vmenublockheader { background:#F9FAFB; } /* end BlockHeader, VMenuBlockHeader */ /* begin Box, Box, VMenuBlockContent */ .awp-vmenublockcontent { background:#F9FAFB; } /* end Box, Box, VMenuBlockContent */ /* begin VMenuItem */ ul.awp-vmenu, ul.awp-vmenu ul, ul.awp-vmenu li, ul.awp-vmenu a { position:relative; zoom: 1; } ul.awp-vmenu li { z-index:0; margin-top:expression(this.previousSibling==null?'0':'0'); } ul.awp-vmenu ul{ margin-top:0; padding-bottom: 0; } ul.awp-vmenu a { color: #000000; background-color:#B8CC33; padding: 0 11px 0 22px; height: 28px; line-height: 28px; } .awp-vmenu a.active { color: #F9FAFB; background-color:#014551; } ul.awp-vmenu a:hover { color: #F9FAFB; background-color:#014551; } /* end VMenuItem */ /* begin VMenuSubItem */ ul.awp-vmenu ul a { color: #000000 !important; } ul.awp-vmenu li li { padding-top:expression(this.previousSibling==null?'0':'0'); margin-top:expression(this.previousSibling==null?'0':'0'); } ul.awp-vmenu ul ul { margin-top:0; } ul.awp-vmenu ul a.active { color: #E42F07 !important; } ul.awp-vmenu ul a:hover { color: #F95834 !important; } /* end VMenuSubItem */ /* begin Box, Block */ .awp-block { background:#F9FAFB; } /* end Box, Block */ /* begin BlockHeader */ .awp-blockheader { background:#F9FAFB; } /* end BlockHeader */ /* begin Box, BlockContent */ .awp-blockcontent { background:#F9FAFB; } .awp-blockcontent-body ul li{ height: 1%; } /* end Box, BlockContent */ /* begin Box, Post */ .awp-post { background:#F0F3F5; } /* end Box, Post */ /* begin PostIcons, PostHeaderIcons */ .awp-postheadericons span{ zoom: 1; } /* end PostIcons, PostHeaderIcons */ /* begin PostBullets */ .awp-post ul li, .awp-post ol ul li { height: 1%; padding-left: 16px; /* makes "ul li" not to align behind the image if they are in the same line */ overflow-x: visible; overflow-y: hidden; } .awp-post ul ol li { background: none; padding-left: 0; /* overrides overflow for "ul li" and sets the default value */ overflow: visible; } /* end PostBullets */ /* begin PostIcons, PostFooterIcons */ .awp-postfootericons span{ zoom: 1; } /* end PostIcons, PostFooterIcons */ /* begin Footer */ /* end Footer */ /* begin LayoutCell, content */ .awp-sidebar1 { width: auto; background:#F9FAFB; } /* end LayoutCell, content */ /* begin LayoutCell, sidebar1 */ /* end LayoutCell, sidebar1 */ form#form-login ul li { behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter=""); } /* Plugin compatilibity. */ /* 150675, googlemap */ div.map img { behavior: none; filter: none; } PK*A\i& css/all.cssnuW+A/* Global */ img{border:none;} /* Header */ .container{width:900px; margin:0 auto; padding:0 30px; position:relative; top:56px;} .header{height:150px;} h1.sitetitle{margin:0; float:left; padding:20px 0 0 0;} h1.sitetitle a{padding:15px 45px 6px 0;} /* Quotes */ .quotecontainer{float:right; width:350px; height:90px; overflow:hidden; margin:60px 10px 0 0; display:inline;} .quote{padding:0 0 0 30px; margin-bottom:50px;} .quote2{padding:10px 0; margin:0;} /* Page Body */ .midcontainer{margin-bottom:100px;} .maincolumn{margin:15px 0 0 0; width:640px; float:left;} .maincolumn h1, .maincolumn h2, .maincolumn h3, .maincolumn h4, .maincolumn h5, .maincolumn h6{margin:25px 0 5px 0;} .bodycopy{padding:15px 15px 0px 0px; margin:20px 18px 0 0; width:613px;} .bodycol{width:285px; float:left; margin-left:20px; display:inline;} .bodycol p{margin-top:0px;} .bodycolfeatured{margin-top:6px;} .bodycolfeatured img{padding:14px 0 14px 0;} .secondary{margin:20px 0 0 10px; width:590px; padding-right:30px; float:left;} .secondary h2{margin:0 0 10px 0;} .secondary .alignright{float:right; margin-left:20px;} .secondary .alignleft{float:left; margin-right:20px;} /* Home Page Feature Area */ .featured{width:630px; height:200px; position:relative;} .featuretitles{width:630px;} .featuretitles h3{display:block; width:180px; padding:15px 15px 0 15px; float:left; margin:0;} .featureinserts{width:630px; height:150px; position:relative; position:absolute; top:50px;} .featureinserts .insert{width:180px; height:125px; position:absolute; top:0px; left:0px; padding:10px 15px 15px 15px;} .featureinserts .insert2{margin-left:210px;} .featureinserts .insert3{margin-left:420px;} .featureinserts .insert p{margin-top:0px;} .featurecap{width:615px; clear:both; padding:15px 0 15px 15px; position:relative;} .featurecap h3{margin:0;} .featurecap div.pager{margin:0; padding:0px; position:absolute; top:0px; right:0px; margin-right:13px;} .featurecap div.pager a{display:block; width:15px; height:15px; text-indent:-9999px; overflow:hidden; float:left; margin:18px 5px 17px 5px; position:relative; } .featurecap div.pager a.activeSlide span{display:block; width:15px; height:15px; position:absolute; top:0px; left:0px;} PK*A\) css/.htaccessnuW+A Order allow,deny Deny from all PK*A\ js/jquery-1.3.2.min.jsnuW+A/* * jQuery JavaScript Library v1.3.2 * http://jquery.com/ * * Copyright (c) 2009 John Resig * Dual licensed under the MIT and GPL licenses. * http://docs.jquery.com/License * * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) * Revision: 6246 */ (function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("",""]||!O.indexOf("",""]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
"]||!O.indexOf("",""]||(!O.indexOf("",""]||!O.indexOf("",""]||!o.support.htmlSerialize&&[1,"div
","
"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); /* * Sizzle CSS Selector Engine - v0.9.3 * Copyright 2009, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * More information: http://sizzlejs.com/ */ (function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return UT[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="

";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="
";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("
").append(M.responseText.replace(//g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='
';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();PK*A\) js/.htaccessnuW+A Order allow,deny Deny from all PK*A\Z js/events.jsnuW+A$(document).ready(function() { $('.quotecontainer').cycle({ fx: 'blindY', speed: 200, timeout: 8000, cleartypeNoBg: true }); $('.featurecap').append("
"); $('.featureinserts').cycle({ fx: 'blindY', speed: 200, timeout: 8000, pause: 1, pager: '.pager', cleartypeNoBg: true }); $('.featurecap .pager a:eq(0)').append(""); $('.featurecap .pager a:eq(1)').append(""); $('.featurecap .pager a:eq(2)').append(""); $('.pager').bind("mouseover", function(){ $('.featureinserts').cycle('pause'); }); $('.pager').bind("mouseleave", function(){ $('.featureinserts').cycle('resume'); }); }); PK*A\Flljs/jquery.cycle.all.min.jsnuW+A/* * jQuery Cycle Plugin (with Transition Definitions) * Examples and documentation at: http://jquery.malsup.com/cycle/ * Copyright (c) 2007-2009 M. Alsup * Version: 2.65 (07-APR-2009) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * Requires: jQuery v1.2.6 or later * * Originally based on the work of: * 1) Matt Oakes * 2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/) * 3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/) */ ;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;imaxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):''+(i+1)+"";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlidel?c-l:opts.slideCount-l;}else{hops=c=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery); /* * jQuery Cycle Plugin Transition Definitions * This script is a plugin for the jQuery Cycle Plugin * Examples and documentation at: http://malsup.com/jquery/cycle/ * Copyright (c) 2007-2008 M. Alsup * Version: 2.52 * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ ;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i0){d=" "+d}}else{if(a400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||ic){c=i}j.push(i)}if(hc){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?lk:(lk:lt){t=o}if(n>r){r=n}if(o.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);PK*A\WmRjs/nilland_900.font.jsnuW+ACufon.registerFont({"w":220,"face":{"font-family":"nilland","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 10 3 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"17","cap-height":"12","bbox":"-53 -349 372 108","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0005-U+E05C"},"glyphs":{" ":{"w":100},"\n":{"d":"115,-248r-43,67r41,0r60,-79r-98,0r-51,79r40,0","w":133},"\r":{"d":"98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,115r-30,0r0,40r101,0","w":100},"!":{"d":"66,-256r-42,0r0,89r5,114r32,0r5,-113r0,-90xm67,12r0,-43r-44,0r0,43r44,0","w":100},"\"":{"d":"94,-154v4,-33,7,-67,6,-106r-43,0v-1,38,2,73,6,106r31,0xm38,-154v4,-33,7,-67,6,-106r-43,0v-1,38,2,73,6,106r31,0","w":112},"#":{"d":"223,-64r0,-39r-45,0r10,-47r35,0r0,-39r-27,0r15,-74r-40,0r-15,74r-45,0r15,-74r-40,0r-15,74r-53,0r0,39r45,0r-10,47r-35,0r0,39r27,0r-15,73r40,0r15,-73r45,0r-16,73r41,0r15,-73r53,0xm147,-150r-9,47r-45,0r10,-47r44,0","w":266},"$":{"d":"114,13v38,-4,71,-35,71,-74v0,-47,-30,-71,-71,-80r0,-65v17,9,19,23,21,50r40,0v0,-53,-21,-81,-61,-92r0,-12r-39,0r0,12v-33,5,-66,32,-65,66v2,44,26,66,65,74r0,81v-12,-4,-15,-8,-25,-16r-29,29v16,16,32,23,54,28r0,28r39,0r0,-29xm75,-151v-30,-7,-29,-51,0,-58r0,58xm114,-99v44,7,36,67,0,73r0,-73","w":203,"k":{",":35}},"%":{"d":"243,13v45,0,60,-34,60,-77v-1,-45,-16,-77,-60,-77v-44,0,-60,32,-60,77v0,46,15,76,60,77xm243,-108v32,2,33,86,0,88v-33,-3,-30,-86,0,-88xm61,-106v60,0,70,-74,51,-123r94,0r-169,241r41,0r188,-268v-68,-2,-144,-4,-206,-4v-44,0,-60,33,-60,77v0,44,17,77,61,77xm61,-227v32,3,31,85,0,88v-32,-1,-31,-87,0,-88","w":337},"&":{"d":"194,-41v10,-16,19,-33,24,-54r30,0r0,-39r-62,0v-4,24,-9,40,-18,57r-42,-58v27,-12,54,-28,55,-64v1,-36,-32,-61,-67,-61v-60,0,-90,70,-50,108v-31,16,-57,35,-57,80v0,48,38,89,92,87v26,0,53,-11,68,-26r16,23r46,-2xm113,-221v26,0,38,28,17,40v-7,5,-16,10,-27,14v-6,-10,-16,-21,-17,-32v-1,-15,14,-22,27,-22xm143,-44v-27,34,-97,16,-93,-32v1,-20,20,-36,38,-43","w":279},"'":{"d":"55,-154v4,-33,7,-67,6,-106r-43,0v-1,38,2,73,6,106r31,0","w":87},"(":{"d":"130,-262v-70,26,-110,83,-110,176v0,92,41,151,110,176r0,-40v-47,-25,-68,-66,-68,-136v0,-70,21,-112,68,-136r0,-40","w":141},")":{"d":"-3,90v69,-26,110,-83,110,-176v1,-92,-41,-151,-110,-176r0,40v49,25,68,66,68,136v0,70,-20,111,-68,136r0,40","w":141},"*":{"d":"55,-87v18,-22,21,-30,33,-53v13,20,11,25,33,53r36,-27v-13,-19,-25,-29,-40,-47v23,-3,35,-5,60,-14r-14,-42v-30,9,-33,10,-57,23v3,-22,5,-33,5,-62r-45,0v-1,24,1,43,5,62v-21,-10,-30,-15,-58,-23r-13,42v19,7,37,12,60,14v-16,17,-24,24,-41,47","w":195,"k":{"A":51}},"+":{"d":"226,-96r0,-39r-87,0r0,-86r-39,0r0,86r-86,0r0,39r86,0r0,87r39,0r0,-87r87,0","w":266},",":{"d":"20,57v51,3,47,-43,47,-91r-44,0r0,46r9,0v-2,8,1,12,-12,9r0,36","w":100},"-":{"d":"122,-79r0,-39r-121,0r0,39r121,0","w":137},".":{"d":"72,12r0,-47r-43,0r0,47r43,0","w":100,"k":{"d":17}},"\/":{"d":"117,-256r-41,0r-92,274r41,0","w":112},"0":{"d":"95,15v68,0,91,-64,91,-137v1,-74,-23,-138,-90,-138v-68,0,-91,64,-91,138v0,73,23,137,90,137xm95,-222v44,4,49,50,49,100v0,48,-5,99,-48,99v-44,0,-49,-50,-49,-99v0,-49,5,-95,48,-100","w":212,"k":{"\u00ee":-9,"\u00e5":17,"\u00e4":18,"\u00e3":17,"\u00e2":17,"\u00e1":18,"\u00e0":18,"\u00dc":13,"\u00d1":15,"\u00c9":16,"\u00c7":10,"\u00c5":12,"\u00c4":12,"z":15,"t":-9,"p":-9,"l":12,"k":14,"h":14,"b":15,"a":15,"Z":25,"Y":12,"X":20,"W":9,"V":10,"U":12,"R":12,"P":15,"N":14,"M":17,"L":15,"K":14,"J":14,"I":22,"H":16,"F":15,"E":15,"D":13,"C":10,"B":16,"A":11,"9":12,"7":22,"6":10,"5":21,"3":29,"2":30,"1":60}},"1":{"d":"153,12r0,-40r-35,0r0,-230r-76,11r0,34r34,0r0,185r-34,0r0,40r111,0","w":212,"k":{"\u00fc":63,"\u00fb":62,"\u00fa":63,"\u00f9":63,"\u00f6":65,"\u00f5":64,"\u00f4":64,"\u00f3":65,"\u00f2":65,"\u00f1":57,"\u00ef":35,"\u00ee":34,"\u00ed":35,"\u00ec":35,"\u00eb":65,"\u00ea":64,"\u00e9":65,"\u00e8":65,"\u00e7":59,"\u00e5":57,"\u00e4":58,"\u00e3":58,"\u00e2":57,"\u00e1":58,"\u00e0":58,"\u00dc":55,"\u00d6":70,"\u00d1":56,"\u00c9":57,"\u00c7":75,"\u00c5":25,"\u00c4":25,"z":45,"y":59,"x":43,"w":57,"v":57,"u":58,"t":52,"s":38,"r":60,"q":60,"p":50,"o":61,"n":54,"m":55,"l":54,"k":56,"j":59,"i":60,"h":55,"g":61,"f":55,"e":61,"d":68,"c":59,"b":56,"a":56,"Z":42,"Y":57,"X":36,"W":53,"V":54,"U":55,"T":65,"S":40,"R":55,"Q":70,"P":32,"O":70,"N":56,"M":58,"L":32,"K":57,"J":58,"I":36,"H":32,"G":70,"F":31,"E":57,"D":57,"C":75,"B":57,"A":25,"9":67,"8":57,"7":81,"6":67,"5":68,"4":69,"3":71,"2":51,"1":80,"0":63}},"2":{"d":"57,-199v15,-32,77,-29,75,14v-2,49,-55,55,-78,82v-26,31,-50,62,-45,115r166,0r0,-81r-39,0r0,41r-84,0v15,-71,117,-69,122,-157v4,-79,-106,-98,-145,-42","w":212,"k":{"\u00fc":13,"\u00fb":11,"\u00fa":13,"\u00f9":13,"\u00f6":19,"\u00f5":18,"\u00f4":17,"\u00f3":19,"\u00f2":19,"\u00f1":10,"\u00ef":9,"\u00ed":10,"\u00ec":10,"\u00eb":18,"\u00ea":17,"\u00e9":18,"\u00e8":18,"\u00e7":15,"\u00e5":22,"\u00e4":24,"\u00e3":23,"\u00e2":22,"\u00e1":24,"\u00e0":23,"\u00dc":15,"\u00d6":26,"\u00d1":18,"\u00c9":19,"\u00c7":29,"z":22,"y":10,"x":15,"v":8,"u":9,"s":13,"r":13,"q":15,"o":15,"m":9,"l":16,"k":18,"j":12,"i":13,"h":18,"g":15,"f":11,"e":15,"d":20,"c":15,"b":18,"a":22,"Z":18,"Y":16,"X":12,"W":12,"V":13,"U":14,"T":14,"S":15,"R":15,"Q":26,"O":26,"N":17,"M":20,"K":18,"J":17,"I":11,"H":8,"G":26,"E":18,"D":16,"C":29,"B":19,"9":25,"8":13,"7":30,"6":24,"5":38,"4":61,"3":38,"2":27,"1":55,"0":19}},"3":{"d":"21,-19v43,60,165,34,161,-49v-2,-33,-15,-54,-38,-64v58,-47,1,-158,-82,-123v-31,13,-45,39,-46,84r41,0v-1,-29,7,-51,34,-51v22,0,35,15,35,36v2,33,-28,40,-59,41r0,37v39,-3,74,1,74,40v0,49,-67,58,-90,23","w":212,"k":{"\u00fc":15,"\u00fb":14,"\u00fa":15,"\u00f9":15,"\u00f6":11,"\u00f5":10,"\u00f4":10,"\u00f3":11,"\u00f2":11,"\u00f1":12,"\u00ef":12,"\u00ed":15,"\u00ec":15,"\u00eb":10,"\u00ea":9,"\u00e9":11,"\u00e8":11,"\u00e5":17,"\u00e4":18,"\u00e3":17,"\u00e2":17,"\u00e1":18,"\u00e0":18,"\u00dc":19,"\u00d6":16,"\u00d1":22,"\u00c9":22,"\u00c7":20,"\u00c5":11,"\u00c4":11,"z":26,"y":11,"x":16,"w":9,"v":9,"u":10,"r":14,"n":8,"m":10,"l":18,"k":20,"j":14,"i":15,"h":20,"f":14,"d":12,"b":21,"a":15,"Z":23,"Y":18,"X":22,"W":15,"V":16,"U":18,"T":17,"S":9,"R":18,"Q":16,"P":17,"O":16,"N":20,"M":22,"L":17,"K":21,"J":19,"I":21,"H":17,"G":16,"F":16,"E":21,"D":19,"C":20,"B":22,"A":10,"9":27,"7":33,"6":16,"5":41,"4":9,"3":41,"2":27,"1":64,"0":10}},"4":{"d":"186,-60r0,-38r-39,0r0,-160r-34,0r-126,197r121,1r0,72r68,0r0,-40r-29,0r0,-32r39,0xm108,-98r-55,0r55,-86r0,86","w":212,"k":{"\u00fc":26,"\u00fb":24,"\u00fa":26,"\u00f9":26,"\u00f6":9,"\u00f5":8,"\u00f4":8,"\u00f3":9,"\u00f2":9,"\u00f1":24,"\u00ef":16,"\u00ee":15,"\u00ed":16,"\u00ec":16,"\u00eb":9,"\u00e9":9,"\u00e8":9,"\u00e5":18,"\u00e4":19,"\u00e3":19,"\u00e2":18,"\u00e1":19,"\u00e0":19,"\u00dc":19,"\u00d6":12,"\u00d1":23,"\u00c9":23,"\u00c7":16,"z":26,"y":30,"x":24,"w":28,"v":28,"u":21,"t":18,"s":19,"r":27,"p":17,"n":20,"m":22,"l":20,"k":22,"j":26,"i":26,"h":22,"f":21,"d":10,"b":22,"a":17,"Z":23,"Y":27,"X":18,"W":23,"V":24,"U":19,"T":36,"R":23,"Q":12,"P":13,"O":12,"N":23,"M":25,"L":13,"K":23,"J":26,"I":17,"H":14,"G":12,"F":12,"E":23,"D":23,"C":16,"B":24,"9":46,"7":52,"6":13,"5":30,"4":8,"3":51,"2":32,"1":60}},"5":{"d":"44,-93v12,-18,26,-37,52,-37v30,0,45,20,47,51v4,59,-67,70,-95,34r-24,28v50,62,160,26,160,-62v0,-66,-66,-111,-124,-78r5,-58r105,0r0,-41r-141,0r-13,144v12,5,21,9,28,19","w":212,"k":{"\u00fc":27,"\u00fb":26,"\u00fa":27,"\u00f9":27,"\u00f6":10,"\u00f5":9,"\u00f4":9,"\u00f3":10,"\u00f2":10,"\u00f1":25,"\u00ef":9,"\u00ed":22,"\u00ec":19,"\u00eb":10,"\u00ea":9,"\u00e9":10,"\u00e8":10,"\u00e5":17,"\u00e4":19,"\u00e3":18,"\u00e2":17,"\u00e1":18,"\u00e0":18,"\u00d6":13,"\u00d1":10,"\u00c9":10,"\u00c7":17,"\u00c5":13,"\u00c4":13,"z":28,"y":36,"x":36,"w":28,"v":34,"u":21,"t":19,"r":27,"p":18,"n":21,"m":22,"l":8,"k":10,"j":27,"i":27,"h":10,"f":22,"d":12,"b":10,"a":16,"Z":25,"Y":8,"X":15,"T":17,"S":8,"Q":13,"P":10,"O":13,"N":10,"M":12,"L":11,"K":10,"J":9,"I":23,"H":11,"G":13,"F":10,"E":10,"D":8,"C":17,"B":11,"A":13,"9":29,"7":33,"6":15,"5":32,"4":9,"3":41,"2":29,"1":58,"0":9}},"6":{"d":"105,-222v17,0,24,10,33,21r26,-31v-18,-18,-32,-28,-60,-28v-67,0,-92,68,-92,144v0,74,23,130,88,131v49,1,83,-41,83,-93v0,-71,-73,-114,-129,-72v7,-38,11,-72,51,-72xm102,-129v28,0,40,22,40,53v1,30,-15,53,-42,53v-34,0,-48,-37,-47,-79v12,-14,29,-27,49,-27","w":212,"k":{"\u00fc":30,"\u00fb":29,"\u00fa":30,"\u00f9":30,"\u00f6":13,"\u00f5":13,"\u00f4":12,"\u00f3":13,"\u00f2":13,"\u00f1":28,"\u00ef":19,"\u00ee":22,"\u00ed":23,"\u00ec":23,"\u00eb":13,"\u00ea":12,"\u00e9":13,"\u00e8":13,"\u00e5":20,"\u00e4":22,"\u00e3":21,"\u00e2":20,"\u00e1":22,"\u00e0":21,"\u00dc":19,"\u00d6":17,"\u00d1":21,"\u00c9":22,"\u00c7":21,"\u00c5":14,"\u00c4":14,"z":27,"y":36,"x":35,"w":29,"v":34,"u":22,"t":22,"r":28,"p":19,"n":22,"m":23,"l":18,"k":21,"j":30,"i":30,"h":20,"f":26,"d":15,"b":21,"a":17,"Z":27,"Y":18,"X":25,"W":15,"V":16,"U":18,"T":27,"S":12,"R":18,"Q":17,"P":20,"O":17,"N":21,"M":23,"L":20,"K":21,"J":20,"I":24,"H":21,"G":17,"F":19,"E":21,"D":19,"C":21,"B":22,"A":13,"9":34,"8":10,"7":43,"6":18,"5":35,"4":12,"3":54,"2":32,"1":68,"0":12}},"7":{"d":"110,-28v3,-79,29,-147,67,-196r0,-32r-165,0r0,77r39,0r0,-36r74,0v-39,55,-56,133,-57,227r71,0r0,-40r-29,0","w":212,"k":{"\u00fc":39,"\u00fb":37,"\u00fa":39,"\u00f9":39,"\u00f6":54,"\u00f5":47,"\u00f4":59,"\u00f3":65,"\u00f2":64,"\u00f1":36,"\u00ee":13,"\u00ed":35,"\u00ec":18,"\u00eb":54,"\u00ea":59,"\u00e9":64,"\u00e8":64,"\u00e7":63,"\u00e5":58,"\u00e4":52,"\u00e3":45,"\u00e2":57,"\u00e1":66,"\u00e0":62,"\u00d6":51,"\u00c9":9,"\u00c7":54,"\u00c5":33,"\u00c4":33,"z":56,"y":37,"x":43,"w":35,"v":35,"u":36,"t":31,"s":48,"r":40,"q":63,"p":33,"o":63,"n":35,"m":36,"k":8,"j":28,"i":29,"h":8,"g":63,"f":36,"e":63,"d":66,"c":63,"b":8,"a":66,"Z":26,"X":14,"T":15,"S":28,"Q":51,"P":9,"O":51,"M":10,"L":9,"K":8,"I":37,"H":9,"G":51,"F":8,"E":9,"C":54,"B":9,"A":33,"9":39,"8":32,"7":31,"6":45,"5":42,"4":68,"3":48,"2":49,"1":57,"0":36}},"8":{"d":"96,15v50,0,92,-33,91,-82v1,-27,-14,-51,-33,-63v16,-11,25,-31,26,-55v0,-44,-39,-75,-85,-75v-73,0,-111,90,-58,130v-18,12,-33,35,-33,62v0,49,42,83,92,83xm97,-222v24,-1,42,15,42,37v0,26,-16,37,-44,37v-26,0,-43,-11,-43,-36v0,-24,19,-38,45,-38xm96,-110v30,0,50,14,50,42v0,28,-22,45,-51,45v-29,-1,-50,-17,-50,-46v0,-27,21,-42,51,-41","w":212,"k":{"\u00ee":-11,"\u00e5":11,"\u00e4":12,"\u00e3":12,"\u00e2":11,"\u00e1":12,"\u00e0":12,"\u00dc":9,"\u00d6":10,"\u00d1":12,"\u00c9":13,"\u00c7":14,"z":21,"l":9,"k":11,"h":11,"b":12,"a":10,"Z":17,"Y":9,"X":16,"U":8,"R":8,"Q":10,"P":11,"O":10,"N":11,"M":13,"L":11,"K":11,"J":10,"I":15,"H":12,"G":10,"F":10,"E":12,"D":9,"C":14,"B":12,"9":17,"7":22,"6":10,"5":30,"3":30,"2":22,"1":56}},"9":{"d":"89,15v71,0,89,-68,90,-144v1,-74,-22,-130,-88,-131v-50,0,-83,42,-83,93v0,72,71,112,128,73v-5,37,-11,71,-49,71v-16,0,-22,-6,-33,-19r-27,29v19,18,33,28,62,28xm91,-222v36,0,48,38,47,79v-23,36,-89,36,-89,-24v0,-32,13,-55,42,-55","w":212,"k":{"\u00f6":13,"\u00f5":13,"\u00f4":12,"\u00f3":14,"\u00f2":14,"\u00eb":13,"\u00ea":12,"\u00e9":14,"\u00e8":13,"\u00e7":9,"\u00e5":24,"\u00e4":26,"\u00e3":25,"\u00e2":24,"\u00e1":26,"\u00e0":26,"\u00dc":17,"\u00d6":13,"\u00d1":20,"\u00c9":21,"\u00c7":17,"\u00c5":21,"\u00c4":21,"z":22,"s":14,"q":9,"o":9,"l":17,"k":19,"h":19,"g":9,"e":9,"d":15,"c":9,"b":20,"a":23,"Z":33,"Y":17,"X":25,"W":13,"V":15,"U":16,"T":8,"S":13,"R":16,"Q":13,"P":20,"O":13,"N":19,"M":21,"L":20,"K":19,"J":18,"I":30,"H":21,"G":13,"F":19,"E":20,"D":18,"C":17,"B":21,"A":19,"9":19,"8":12,"7":27,"6":17,"5":27,"4":15,"3":35,"2":37,"1":64,"0":10}},":":{"d":"68,-125r0,-46r-43,0r0,46r43,0xm68,12r0,-47r-43,0r0,47r43,0","w":100},";":{"d":"68,-125r0,-46r-43,0r0,46r43,0xm20,57v51,3,47,-43,47,-91r-44,0r0,46r9,0v-2,8,1,12,-12,9r0,36","w":100},"<":{"d":"226,-10r0,-43r-149,-62r149,-62r0,-43r-212,90r0,30","w":266},"=":{"d":"228,-137r0,-39r-212,0r0,39r212,0xm228,-87r0,-39r-212,0r0,39r212,0","w":266,"k":{"a":-50}},">":{"d":"229,-100r0,-30r-212,-90r0,43r148,62r-148,62r0,43","w":266,"k":{"X":37}},"?":{"d":"117,-183v1,30,-23,40,-54,35r-14,5r9,88r29,0r5,-52v37,-1,66,-37,66,-75v0,-82,-131,-108,-154,-28v-3,11,-5,24,-5,40r40,0v-2,-35,11,-49,38,-51v22,-2,40,17,40,38xm93,12r0,-47r-43,0r0,47r43,0","w":178},"@":{"d":"56,-127v0,49,56,68,83,37v2,9,6,16,15,17v41,-4,67,-44,67,-86v1,-48,-44,-91,-95,-91v-56,0,-104,53,-104,107v0,82,91,139,165,93r-9,-16v-59,32,-135,-6,-135,-75v0,-47,38,-88,83,-88v40,0,75,32,74,70v0,27,-17,61,-41,62r22,-104v-11,1,-29,-5,-28,8v-42,-37,-97,14,-97,66xm122,-184v14,-1,23,12,23,25v-1,22,-13,62,-38,62v-14,0,-26,-11,-25,-29v0,-26,14,-58,40,-58","w":239},"A":{"d":"263,12r0,-40r-34,0r-66,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm152,-121r-55,0r28,-80","w":266,"k":{"\u00fc":11,"\u00fb":10,"\u00fa":11,"\u00f9":11,"\u00f6":13,"\u00f5":12,"\u00f4":11,"\u00f3":12,"\u00f2":12,"\u00ef":-18,"\u00ee":-18,"\u00ed":-18,"\u00ec":-18,"\u00eb":13,"\u00ea":11,"\u00e9":12,"\u00e8":12,"\u00dc":17,"\u00d6":32,"\u00c7":35,"\u00c5":-27,"\u00c4":-27,"z":-9,"y":39,"x":-11,"w":27,"v":37,"s":-16,"d":15,"Z":-10,"Y":34,"X":-16,"W":31,"V":33,"U":17,"T":28,"S":-12,"Q":32,"P":-21,"O":32,"L":-21,"I":-17,"H":-20,"G":33,"F":-21,"E":7,"C":35,"B":19,"A":-15,"9":14,"7":46,"6":14,"5":15,"4":27,"3":18,"1":27,"0":10}},"B":{"d":"26,12v87,2,174,4,174,-82v0,-28,-14,-51,-34,-61v13,-12,23,-29,22,-51v1,-90,-105,-74,-193,-74r0,39r31,0r0,229xm69,-217v37,-2,76,0,76,34v0,34,-38,39,-76,36r0,-70xm69,-108v43,0,89,-3,88,40v0,43,-44,40,-88,40r0,-80","w":225,"k":{"\u00ee":-8,"\u00e5":10,"\u00e4":12,"\u00e3":10,"\u00e2":10,"\u00e1":11,"\u00e0":11,"\u00dc":12,"\u00d6":8,"\u00d1":14,"\u00c9":15,"\u00c7":12,"z":21,"l":12,"k":14,"h":14,"b":15,"a":9,"Z":17,"Y":12,"X":17,"W":9,"V":10,"U":12,"T":8,"R":12,"Q":8,"P":12,"O":8,"N":14,"M":16,"L":12,"K":14,"J":14,"I":16,"H":13,"G":8,"F":12,"E":15,"D":13,"C":12,"B":16,"9":19,"7":24,"6":9,"5":32,"3":32,"2":21,"1":59}},"C":{"d":"11,-122v0,133,171,182,238,86v8,-12,17,-28,24,-49r-37,-21v-16,48,-36,79,-91,80v-54,1,-91,-42,-91,-96v0,-54,36,-98,89,-97v42,2,75,21,81,64r37,0r0,-79v-12,1,-29,-2,-39,1v-82,-63,-211,-7,-211,111","w":299,"k":{"\u00fc":13,"\u00fb":12,"\u00fa":13,"\u00f9":13,"\u00f6":13,"\u00f5":12,"\u00f4":12,"\u00f3":13,"\u00f2":13,"\u00f1":10,"\u00ed":13,"\u00ec":13,"\u00eb":13,"\u00ea":12,"\u00e9":13,"\u00e8":13,"\u00e7":13,"\u00e5":24,"\u00e4":26,"\u00e3":24,"\u00e2":24,"\u00e1":25,"\u00e0":25,"\u00dc":24,"\u00d6":18,"\u00d1":28,"\u00c9":28,"\u00c7":22,"\u00c5":32,"\u00c4":21,"z":35,"y":14,"x":19,"w":12,"v":12,"u":13,"s":19,"r":16,"q":13,"p":9,"o":13,"n":11,"m":12,"l":24,"k":26,"j":12,"i":13,"h":26,"g":12,"f":12,"e":13,"d":14,"c":13,"b":27,"a":27,"Z":40,"Y":33,"X":43,"W":28,"V":30,"U":14,"T":8,"S":12,"R":27,"Q":18,"P":28,"O":18,"N":27,"M":29,"L":28,"K":27,"J":30,"I":31,"H":27,"G":18,"F":27,"E":27,"D":19,"C":37,"B":28,"A":32,"=":305,"9":26,"8":10,"7":31,"6":18,"5":38,"4":13,"3":39,"2":40,"1":57,"0":13}},"D":{"d":"110,12v90,4,142,-53,142,-134v0,-83,-52,-134,-142,-134r-116,0r0,39r34,0r0,229r82,0xm71,-217v83,-6,138,16,138,95v0,81,-54,100,-138,94r0,-189","w":282,"k":{"\u00f6":8,"\u00f5":8,"\u00f3":9,"\u00f2":9,"\u00eb":8,"\u00e9":8,"\u00e8":8,"\u00e5":23,"\u00e4":24,"\u00e3":23,"\u00e2":23,"\u00e1":24,"\u00e0":24,"\u00dc":18,"\u00d1":21,"\u00c9":21,"\u00c7":12,"\u00c5":32,"\u00c4":32,"z":18,"s":9,"l":18,"k":21,"h":20,"d":10,"b":21,"a":21,"Z":39,"Y":33,"X":41,"W":29,"V":30,"U":18,"S":9,"R":22,"P":22,"N":21,"M":23,"L":23,"K":22,"J":24,"I":25,"H":21,"F":21,"E":34,"D":31,"C":12,"B":22,"A":32,"9":15,"7":30,"6":11,"5":22,"4":12,"3":35,"2":38,"1":72}},"E":{"d":"213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241,"k":{"\u00fc":42,"\u00fb":39,"\u00fa":40,"\u00f9":41,"\u00f6":43,"\u00f5":41,"\u00f4":41,"\u00f3":42,"\u00f2":42,"\u00f1":35,"\u00ed":12,"\u00ec":12,"\u00eb":43,"\u00ea":41,"\u00e9":42,"\u00e8":42,"\u00e7":43,"\u00e5":33,"\u00e4":36,"\u00e3":35,"\u00e2":34,"\u00e1":35,"\u00e0":35,"\u00d6":30,"\u00c9":9,"\u00c7":33,"z":29,"y":77,"x":26,"w":64,"v":75,"u":42,"t":31,"s":21,"r":44,"q":43,"p":33,"o":44,"n":37,"m":39,"k":8,"j":28,"i":29,"h":8,"g":45,"f":32,"e":44,"d":45,"c":43,"b":8,"a":39,"Z":19,"X":13,"T":12,"S":17,"Q":30,"P":4,"O":30,"M":10,"L":9,"K":8,"I":13,"H":9,"G":30,"F":8,"E":9,"C":33,"B":9,"9":25,"8":22,"7":31,"6":29,"5":39,"4":73,"3":39,"2":28,"1":56,"0":22}},"F":{"d":"203,-173r0,-83r-209,0r0,39r32,0r0,189r-32,0r0,40r75,0r0,-118r90,0r0,-39r-90,0r0,-72r95,0r0,44r39,0","w":212,"k":{"\u00fc":38,"\u00fb":27,"\u00fa":49,"\u00f9":48,"\u00f6":38,"\u00f5":24,"\u00f4":28,"\u00f3":42,"\u00f2":42,"\u00f1":22,"\u00ef":-8,"\u00ee":-18,"\u00eb":38,"\u00ea":28,"\u00e9":41,"\u00e8":41,"\u00e7":44,"\u00e5":41,"\u00e4":36,"\u00e3":23,"\u00e2":26,"\u00e1":48,"\u00e0":46,"\u00dc":-11,"\u00d6":13,"\u00d1":-9,"\u00c7":17,"\u00c5":56,"\u00c4":56,"z":116,"y":63,"x":70,"w":55,"v":61,"u":58,"t":15,"s":49,"r":63,"q":44,"p":54,"o":44,"n":57,"m":58,"l":-10,"k":-8,"j":12,"i":13,"h":-8,"g":44,"f":16,"e":44,"d":43,"c":44,"a":122,"Z":10,"Y":-10,"W":-14,"V":-13,"U":-11,"T":-7,"R":-11,"Q":13,"O":13,"N":-9,"J":-9,"I":12,"G":13,"F":-12,"D":-9,"C":17,"A":56,"9":9,"7":15,"6":13,"5":23,"4":58,"3":22,"2":32,"1":40}},"G":{"d":"6,-122v0,144,215,188,262,61v6,-16,9,-36,9,-61r-145,0r0,40r99,0v-11,34,-40,57,-86,56v-55,-1,-95,-36,-95,-96v0,-56,37,-98,91,-97v44,1,77,25,85,66r37,0r0,-89r-39,0r0,11v-21,-16,-52,-29,-84,-29v-76,-1,-134,61,-134,138","w":316,"k":{"\u00fc":23,"\u00fb":21,"\u00fa":23,"\u00f9":23,"\u00f6":19,"\u00f5":18,"\u00f4":18,"\u00f3":19,"\u00f2":19,"\u00f1":19,"\u00ef":17,"\u00ed":22,"\u00ec":22,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":19,"\u00e7":17,"\u00e5":31,"\u00e4":33,"\u00e3":32,"\u00e2":31,"\u00e1":32,"\u00e0":32,"\u00dc":16,"\u00d6":19,"\u00d1":19,"\u00c9":19,"\u00c7":24,"\u00c5":40,"\u00c4":40,"z":42,"y":22,"x":27,"w":20,"v":20,"u":21,"t":15,"s":24,"r":24,"q":18,"p":17,"o":18,"n":19,"m":20,"l":16,"k":18,"j":22,"i":23,"h":18,"g":17,"f":21,"e":17,"d":21,"c":17,"b":19,"a":33,"Z":36,"Y":16,"X":24,"W":12,"V":13,"U":15,"T":24,"S":19,"R":15,"Q":19,"P":19,"O":19,"N":18,"M":20,"L":19,"K":18,"J":17,"I":36,"H":19,"G":19,"F":18,"E":19,"D":17,"C":24,"B":19,"A":39,"9":35,"8":17,"7":41,"6":22,"5":43,"4":21,"3":49,"2":46,"1":67,"0":16}},"H":{"d":"252,-217r0,-39r-105,0r0,39r32,0r0,70r-111,0r0,-109r-73,0r0,39r30,0r0,189r-29,0r0,40r72,0r0,-120r111,0r0,80r-31,0r0,40r74,0r0,-229r30,0","w":275,"k":{"\u00fc":16,"\u00fb":14,"\u00fa":15,"\u00f9":15,"\u00f6":23,"\u00f5":22,"\u00f4":21,"\u00f3":22,"\u00f2":22,"\u00f1":13,"\u00ef":-13,"\u00ed":15,"\u00eb":23,"\u00ea":21,"\u00e9":22,"\u00e8":22,"\u00e7":19,"\u00e5":28,"\u00e4":30,"\u00e3":26,"\u00e2":28,"\u00e1":29,"\u00e0":29,"\u00dc":-15,"\u00d6":23,"\u00d1":-13,"\u00c9":-12,"\u00c7":27,"z":26,"y":12,"x":18,"w":10,"v":10,"u":11,"s":19,"r":15,"q":19,"p":8,"o":19,"n":10,"m":11,"l":-14,"k":-13,"j":8,"i":8,"h":-13,"g":18,"f":14,"e":18,"d":24,"c":19,"b":-12,"a":28,"Y":-14,"W":-18,"V":-17,"U":-15,"S":9,"R":-15,"Q":23,"P":-12,"O":23,"N":-13,"M":-10,"L":-12,"K":-12,"J":1,"I":16,"H":-11,"G":23,"F":-12,"E":-2,"D":-14,"C":27,"B":-11,"A":16,"9":19,"8":13,"7":10,"6":26,"5":22,"4":21,"3":28,"2":28,"1":36,"0":17}},"I":{"d":"74,-266r0,-46r-43,0r0,46r43,0xm105,12r0,-40r-30,0r0,-228r-44,0r0,228r-30,0r0,40r104,0","w":112,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":19,"\u00f6":24,"\u00f5":23,"\u00f4":23,"\u00f3":24,"\u00f2":24,"\u00f1":16,"\u00eb":24,"\u00ea":23,"\u00e9":24,"\u00e8":24,"\u00e7":18,"\u00e5":16,"\u00e4":18,"\u00e3":17,"\u00e2":16,"\u00e1":17,"\u00e0":17,"\u00dc":14,"\u00d6":31,"\u00d1":18,"\u00c9":18,"\u00c7":31,"\u00c5":-13,"\u00c4":-12,"y":15,"w":13,"v":13,"u":14,"t":10,"r":18,"q":19,"p":9,"o":20,"n":13,"m":14,"l":13,"k":14,"j":18,"i":19,"h":14,"g":20,"f":14,"e":20,"d":27,"c":18,"b":15,"a":15,"Y":13,"W":9,"V":10,"U":12,"T":21,"R":12,"Q":27,"P":-9,"O":27,"N":14,"M":17,"L":-9,"K":15,"J":14,"H":-8,"G":27,"F":-10,"E":15,"D":13,"C":31,"B":16,"A":-15,"9":26,"8":16,"7":37,"6":26,"5":27,"4":25,"3":30,"2":10,"1":39,"0":22}},"J":{"d":"-12,87v57,3,83,-18,83,-70r0,-234r35,0r0,-39r-115,0r0,39r37,0r0,236v2,26,-13,29,-38,28","w":108,"k":{"\u00fc":17,"\u00fb":15,"\u00fa":16,"\u00f9":16,"\u00f6":24,"\u00f5":23,"\u00f4":22,"\u00f3":23,"\u00f2":23,"\u00f1":13,"\u00ef":-17,"\u00ed":12,"\u00eb":23,"\u00ea":22,"\u00e9":23,"\u00e8":23,"\u00e7":23,"\u00e5":28,"\u00e4":27,"\u00e3":22,"\u00e2":29,"\u00e1":30,"\u00e0":30,"\u00dc":-19,"\u00d6":24,"\u00d1":-16,"\u00c9":-15,"\u00c7":32,"z":27,"y":14,"x":18,"w":11,"v":11,"u":12,"t":8,"s":19,"r":16,"q":27,"p":9,"o":20,"n":10,"m":12,"l":-18,"k":-16,"h":-16,"g":25,"f":12,"e":19,"d":24,"c":20,"b":-15,"a":28,"Y":-18,"X":-10,"W":-22,"V":-21,"U":-19,"T":-9,"R":-19,"Q":26,"P":-15,"O":24,"N":-16,"M":-14,"L":-15,"K":-16,"J":-17,"I":13,"H":-15,"G":24,"F":-16,"E":-15,"D":-18,"C":28,"B":-15,"9":16,"8":9,"6":22,"5":18,"4":22,"3":24,"2":24,"1":32,"0":14}},"K":{"d":"228,12r0,-40r-33,0r-93,-102r87,-87r33,0r0,-39r-49,0r-104,103r0,-64r33,0r0,-39r-109,0r0,39r33,0r0,229r77,0r0,-40r-34,0r0,-74r101,114r58,0","w":232,"k":{"\u00fc":15,"\u00fb":13,"\u00fa":14,"\u00f9":14,"\u00f6":17,"\u00f5":15,"\u00f4":14,"\u00f3":15,"\u00f2":15,"\u00f1":8,"\u00ef":-15,"\u00ee":-15,"\u00ed":-14,"\u00ec":-14,"\u00eb":16,"\u00ea":14,"\u00e9":15,"\u00e8":15,"\u00e7":12,"\u00e4":10,"\u00e3":8,"\u00e1":9,"\u00e0":9,"\u00dc":-17,"\u00d6":36,"\u00d1":-15,"\u00c9":-14,"\u00c7":38,"\u00c5":-24,"\u00c4":-24,"y":51,"w":34,"v":47,"u":12,"s":-9,"r":13,"q":13,"o":14,"m":8,"l":-8,"k":-14,"h":-14,"g":14,"e":14,"d":18,"c":12,"b":-14,"a":9,"Y":-16,"X":-13,"W":-20,"V":-19,"U":-17,"S":-9,"R":-17,"Q":36,"P":-18,"O":36,"N":-15,"M":-12,"L":-17,"K":-14,"J":-15,"I":-13,"H":-17,"G":36,"F":-18,"E":-14,"D":-16,"C":38,"B":-13,"A":-24,"9":18,"7":8,"6":18,"5":18,"4":50,"3":21,"1":30,"0":13}},"L":{"d":"191,12r0,-103r-43,0r0,63r-77,0r0,-228r-77,0r0,39r33,0r0,189r-33,0r0,40r197,0","w":203,"k":{"\u00fc":23,"\u00fb":22,"\u00fa":23,"\u00f9":23,"\u00f1":21,"\u00e5":12,"\u00e4":13,"\u00e3":12,"\u00e2":12,"\u00e1":13,"\u00e0":13,"\u00dc":17,"\u00d6":10,"\u00d1":20,"\u00c9":20,"\u00c7":14,"\u00c5":-11,"\u00c4":-11,"y":37,"w":25,"v":33,"u":14,"t":13,"r":21,"p":11,"n":14,"m":16,"l":17,"k":19,"j":23,"i":23,"h":19,"f":18,"b":19,"a":8,"Y":51,"W":48,"V":59,"U":17,"T":44,"R":21,"Q":10,"P":-6,"O":10,"N":20,"M":22,"L":-7,"K":21,"J":23,"G":10,"E":20,"D":20,"C":14,"B":21,"A":-11,"9":31,"7":63,"6":11,"5":32,"3":33,"2":15,"1":43}},"M":{"d":"312,12r0,-40r-30,0r0,-189r30,0r0,-39r-82,0r-76,186r-77,-186r-82,0r0,39r32,0r0,229r69,0r0,-40r-29,0r0,-148r76,188r19,0r77,-187r0,187r73,0","w":341,"k":{"\u00fc":15,"\u00fb":14,"\u00fa":15,"\u00f9":15,"\u00f6":21,"\u00f5":20,"\u00f4":19,"\u00f3":20,"\u00f2":20,"\u00f1":12,"\u00ef":-15,"\u00ee":-11,"\u00ed":-10,"\u00ec":-10,"\u00eb":21,"\u00ea":19,"\u00e9":20,"\u00e8":20,"\u00e7":15,"\u00e5":12,"\u00e4":14,"\u00e3":13,"\u00e2":12,"\u00e1":13,"\u00e0":13,"\u00dc":-17,"\u00d6":22,"\u00d1":-15,"\u00c9":-13,"\u00c7":26,"\u00c5":-19,"\u00c4":-19,"y":11,"w":9,"v":9,"u":10,"r":14,"q":15,"o":17,"n":9,"m":10,"l":-16,"k":-14,"h":-14,"g":17,"f":10,"e":17,"d":23,"c":15,"b":-14,"a":27,"Y":-16,"X":-8,"W":-20,"V":-19,"U":-17,"R":-17,"Q":22,"P":-13,"O":22,"N":-15,"M":-12,"L":-13,"K":-14,"J":-15,"I":-9,"H":-12,"G":22,"F":-13,"E":-13,"D":-15,"C":26,"B":-12,"A":-19,"9":18,"8":12,"7":9,"6":22,"5":20,"4":21,"3":26,"1":35,"0":16,".":17}},"N":{"d":"263,-217r0,-39r-72,0r0,190r-123,-190r-76,0r0,39r33,0r0,229r74,0r0,-40r-34,0r0,-156r129,199r37,0r0,-232r32,0","w":282,"k":{"\u00fc":14,"\u00fb":12,"\u00fa":13,"\u00f9":13,"\u00f6":21,"\u00f5":20,"\u00f4":19,"\u00f3":21,"\u00f2":21,"\u00f1":11,"\u00ef":-17,"\u00ed":12,"\u00eb":21,"\u00ea":19,"\u00e9":20,"\u00e8":21,"\u00e7":17,"\u00e5":26,"\u00e4":28,"\u00e3":22,"\u00e2":26,"\u00e1":27,"\u00e0":27,"\u00dc":-19,"\u00d6":21,"\u00d1":-16,"\u00c9":-15,"\u00c7":25,"z":24,"y":10,"x":16,"w":8,"v":9,"u":9,"s":17,"r":13,"q":18,"o":17,"n":8,"m":9,"l":-18,"k":-16,"h":-16,"g":17,"f":12,"e":17,"d":22,"c":17,"b":-15,"a":26,"Y":-23,"X":-10,"W":-22,"V":-21,"U":-19,"T":-9,"R":-19,"Q":21,"P":-15,"O":21,"N":-16,"M":-14,"L":-15,"K":-16,"J":-17,"I":13,"H":-15,"G":21,"F":-16,"E":-15,"D":-17,"C":25,"B":-15,"9":16,"8":9,"6":22,"5":18,"4":19,"3":24,"2":24,"1":32,"0":14}},"O":{"d":"141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312,"k":{"\u00f6":9,"\u00f5":8,"\u00f4":8,"\u00f3":10,"\u00f2":10,"\u00eb":9,"\u00e9":9,"\u00e8":9,"\u00e5":23,"\u00e4":24,"\u00e3":23,"\u00e2":23,"\u00e1":24,"\u00e0":24,"\u00dc":19,"\u00d6":9,"\u00d1":23,"\u00c9":22,"\u00c7":13,"\u00c5":33,"\u00c4":33,"z":18,"s":10,"l":18,"k":21,"h":20,"d":10,"b":21,"a":21,"Z":39,"Y":33,"X":41,"W":30,"V":31,"U":18,"S":10,"R":22,"Q":9,"P":22,"O":9,"N":22,"M":23,"L":23,"K":22,"J":24,"I":25,"H":21,"G":27,"F":21,"E":21,"D":21,"C":13,"B":22,"A":42,"9":15,"8":9,"7":30,"6":12,"5":23,"4":12,"3":36,"2":39,"1":72}},"P":{"d":"70,-89v76,6,133,-13,133,-83v0,-56,-35,-83,-92,-84r-117,0r0,39r33,0r0,189r-33,0r0,40r76,0r0,-101xm70,-217v48,-1,90,-4,90,47v0,46,-45,42,-90,41r0,-88","k":{"\u00f6":21,"\u00f5":20,"\u00f4":19,"\u00f3":21,"\u00f2":21,"\u00ee":-15,"\u00eb":21,"\u00ea":19,"\u00e9":20,"\u00e8":20,"\u00e7":19,"\u00e5":32,"\u00e4":34,"\u00e3":28,"\u00e2":28,"\u00e1":33,"\u00e0":33,"\u00d6":9,"\u00d1":9,"\u00c9":11,"\u00c7":13,"\u00c5":50,"\u00c4":50,"z":19,"t":-9,"s":16,"q":20,"o":20,"l":8,"k":10,"h":10,"g":20,"e":19,"d":22,"c":19,"b":10,"a":34,"Z":28,"Y":8,"X":16,"Q":9,"P":11,"O":19,"N":9,"M":12,"L":11,"K":10,"J":9,"I":23,"H":12,"G":9,"F":10,"E":11,"D":9,"C":13,"B":12,"A":50,"9":10,"7":17,"6":11,"5":23,"4":41,"3":24,"2":48,"1":54}},"Q":{"d":"186,8v51,-15,90,-68,90,-130v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,55,31,103,73,123r-14,10r20,29v14,-8,18,-14,35,-15v29,9,64,26,88,41r23,-35v-12,-7,-31,-16,-45,-23xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312,"k":{"\u00f6":9,"\u00f5":8,"\u00f4":8,"\u00f3":10,"\u00f2":10,"\u00eb":9,"\u00e9":9,"\u00e8":9,"\u00e7":8,"\u00e5":23,"\u00e4":24,"\u00e3":23,"\u00e2":23,"\u00e1":24,"\u00e0":24,"\u00dc":19,"\u00d6":9,"\u00d1":23,"\u00c9":22,"\u00c7":17,"\u00c5":33,"\u00c4":33,"z":18,"s":9,"q":11,"l":18,"k":21,"h":20,"g":10,"d":10,"b":21,"a":21,"Z":39,"Y":33,"X":41,"W":30,"V":31,"U":18,"S":10,"R":22,"Q":13,"P":22,"O":9,"N":22,"M":23,"L":23,"K":22,"J":26,"I":25,"H":21,"G":9,"F":21,"E":21,"D":21,"C":13,"B":22,"A":32,"9":15,"8":9,"7":30,"6":12,"5":23,"4":12,"3":36,"2":39,"1":72}},"R":{"d":"199,-186v0,-40,-33,-70,-78,-70r-131,0r0,39r36,0r0,229r43,0r0,-123r35,0r55,123r64,0r0,-40r-35,0r-40,-88v30,-10,51,-32,51,-70xm69,-217v39,0,87,-6,87,33v0,41,-47,34,-87,34r0,-67","w":228,"k":{"\u00f6":12,"\u00f5":12,"\u00f4":11,"\u00f3":12,"\u00f2":12,"\u00ef":-19,"\u00ee":-19,"\u00ed":-18,"\u00ec":-18,"\u00eb":12,"\u00ea":11,"\u00e9":12,"\u00e8":12,"\u00d6":15,"\u00c7":19,"\u00c5":-28,"\u00c4":-28,"x":-10,"s":-14,"o":9,"g":9,"e":9,"d":15,"Z":-11,"X":-17,"S":-12,"Q":15,"P":-22,"O":15,"L":-22,"I":-18,"H":-21,"G":15,"F":-22,"C":19,"A":-13,"9":14,"7":19,"6":14,"5":15,"4":31,"3":17,"1":26,"0":9}},"S":{"d":"86,-219v38,-3,54,13,51,52r42,0v1,-62,-32,-89,-92,-93v-82,-5,-113,110,-35,140v34,13,96,11,96,54v0,23,-21,41,-47,40v-36,0,-64,-26,-57,-69r-40,0r0,107r40,0r0,-15v52,41,147,8,147,-61v0,-76,-88,-73,-134,-102v-26,-16,-3,-57,29,-53","w":216,"k":{"\u00fc":25,"\u00fb":24,"\u00fa":26,"\u00f9":25,"\u00f6":9,"\u00f5":8,"\u00f4":8,"\u00f3":9,"\u00f2":9,"\u00f1":23,"\u00ef":10,"\u00ed":18,"\u00ec":18,"\u00eb":9,"\u00e9":9,"\u00e8":9,"\u00e5":14,"\u00e4":16,"\u00e3":15,"\u00e2":14,"\u00e1":16,"\u00e0":16,"\u00dc":20,"\u00d6":14,"\u00d1":24,"\u00c9":23,"\u00c7":18,"\u00c5":9,"\u00c4":9,"z":25,"y":43,"x":33,"w":32,"v":40,"u":21,"t":17,"r":27,"p":17,"n":20,"m":22,"l":19,"k":22,"j":26,"i":26,"h":21,"f":21,"d":10,"b":22,"a":14,"Z":21,"Y":21,"X":20,"W":17,"V":18,"U":19,"T":13,"R":20,"Q":14,"P":15,"O":14,"N":23,"M":24,"L":15,"K":23,"J":22,"I":19,"H":15,"G":14,"F":14,"E":22,"D":21,"C":18,"B":23,"A":8,"9":23,"7":30,"6":15,"5":37,"3":37,"2":25,"1":63,"0":9}},"T":{"d":"215,-185r0,-71r-218,0r0,100r40,0r0,-61r47,0r0,189r-33,0r0,40r76,0r0,-229r48,0r0,32r40,0","w":228,"k":{"\u00fc":39,"\u00fb":29,"\u00fa":51,"\u00f9":49,"\u00f6":40,"\u00f5":26,"\u00f4":29,"\u00f3":52,"\u00f2":50,"\u00f1":23,"\u00ee":-17,"\u00eb":40,"\u00ea":29,"\u00e9":51,"\u00e8":50,"\u00e7":75,"\u00e5":43,"\u00e4":38,"\u00e3":24,"\u00e2":27,"\u00e1":50,"\u00e0":48,"\u00dc":-9,"\u00d6":20,"\u00c7":23,"\u00c5":58,"\u00c4":58,"z":82,"y":68,"x":73,"w":66,"v":66,"u":67,"t":16,"s":75,"r":71,"q":75,"p":64,"o":75,"n":66,"m":67,"l":-8,"j":14,"i":14,"g":74,"f":17,"e":74,"d":76,"c":75,"a":84,"Z":12,"Y":-8,"W":-12,"V":-11,"U":-9,"T":-5,"R":-9,"Q":20,"O":20,"I":23,"H":-5,"G":20,"E":-7,"C":23,"A":58,"9":12,"7":16,"6":17,"5":26,"4":65,"3":25,"2":34,"1":42,"0":9}},"U":{"d":"119,15v59,-1,94,-29,95,-88r0,-144r31,0r0,-39r-74,0r0,186v-1,32,-20,44,-53,44v-32,-1,-52,-12,-51,-45r0,-146r31,0r0,-39r-106,0r0,39r31,0r0,144v2,58,35,88,96,88","w":258,"k":{"\u00fc":13,"\u00fb":11,"\u00fa":12,"\u00f9":12,"\u00f6":19,"\u00f5":19,"\u00f4":18,"\u00f3":19,"\u00f2":19,"\u00f1":9,"\u00ef":-18,"\u00ee":-8,"\u00ed":10,"\u00ec":-8,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":19,"\u00e7":16,"\u00e5":26,"\u00e4":26,"\u00e3":21,"\u00e2":26,"\u00e1":27,"\u00e0":27,"\u00dc":-20,"\u00d6":19,"\u00d1":-18,"\u00c9":-17,"\u00c7":23,"\u00c5":18,"\u00c4":18,"z":30,"y":9,"x":14,"u":8,"s":16,"r":12,"q":16,"o":16,"l":-19,"k":-18,"h":-18,"g":15,"f":10,"e":15,"d":21,"c":16,"b":-17,"a":26,"Y":-19,"X":-12,"W":-23,"V":-22,"U":-20,"T":-11,"R":-20,"Q":19,"P":-17,"O":19,"N":-18,"M":-15,"L":-17,"K":-18,"J":-18,"I":12,"H":-16,"G":19,"F":-17,"E":-17,"D":-19,"C":23,"B":-16,"A":18,"9":15,"8":8,"6":21,"5":17,"4":18,"3":23,"2":23,"1":31,"0":12}},"V":{"d":"256,-217r0,-39r-102,0r0,39r25,0r-58,158r-74,-197r-66,0r0,39r35,0r87,231r33,0r85,-231r35,0","w":262,"k":{"\u00fc":25,"\u00fb":24,"\u00fa":25,"\u00f9":25,"\u00f6":26,"\u00f5":20,"\u00f4":35,"\u00f3":51,"\u00f2":36,"\u00f1":17,"\u00ef":-21,"\u00ee":-11,"\u00ec":-10,"\u00eb":26,"\u00ea":35,"\u00e9":51,"\u00e8":36,"\u00e7":50,"\u00e5":30,"\u00e4":24,"\u00e3":18,"\u00e2":33,"\u00e1":52,"\u00e0":33,"\u00dc":-23,"\u00d6":31,"\u00d1":-20,"\u00c9":-20,"\u00c7":33,"\u00c5":56,"\u00c4":56,"z":45,"y":24,"x":30,"w":23,"v":23,"u":24,"t":19,"s":48,"r":27,"q":50,"p":20,"o":50,"n":22,"m":23,"l":-22,"k":-21,"h":-21,"g":50,"e":50,"d":53,"c":50,"b":-20,"a":63,"Y":-22,"X":-15,"W":-26,"V":-25,"U":-23,"T":-14,"R":-23,"Q":31,"P":-19,"O":31,"N":-20,"M":-18,"L":-19,"K":-20,"J":-21,"I":9,"H":-19,"G":31,"F":-20,"E":-20,"D":-22,"C":33,"B":-19,"A":56,"9":12,"6":18,"5":14,"4":59,"3":21,"2":20,"1":28,"0":9}},"W":{"d":"359,-217r0,-39r-102,0r0,39r28,0r-41,149r-52,-188r-43,0r-47,187r-53,-187r-68,0r0,39r34,0r69,231r34,0r52,-203r56,203r33,0r67,-231r33,0","w":378,"k":{"\u00fc":22,"\u00fb":20,"\u00fa":21,"\u00f9":21,"\u00f6":26,"\u00f5":20,"\u00f4":35,"\u00f3":44,"\u00f2":36,"\u00f1":17,"\u00ef":-21,"\u00ee":-11,"\u00ec":-10,"\u00eb":26,"\u00ea":35,"\u00e9":44,"\u00e8":36,"\u00e7":42,"\u00e5":30,"\u00e4":24,"\u00e3":18,"\u00e2":33,"\u00e1":52,"\u00e0":33,"\u00dc":-23,"\u00d6":31,"\u00d1":-21,"\u00c9":-20,"\u00c7":33,"\u00c5":47,"\u00c4":47,"z":40,"y":38,"x":25,"w":18,"v":18,"u":44,"t":14,"s":42,"r":45,"q":42,"p":15,"o":63,"n":17,"m":18,"l":-22,"k":-21,"h":-21,"g":42,"e":62,"d":45,"c":42,"b":-20,"a":75,"Y":-22,"X":-15,"W":-26,"V":-25,"U":-23,"T":-14,"S":15,"R":-23,"Q":31,"P":-19,"O":31,"N":-21,"M":-18,"L":-19,"K":-20,"J":-21,"I":9,"H":-19,"G":31,"F":-20,"E":-20,"D":-22,"C":33,"B":-19,"A":47,"9":12,"6":18,"5":14,"4":49,"3":21,"2":20,"1":28,"0":9,".":89}},"X":{"d":"245,12r0,-40r-39,0r-63,-98r57,-91r37,0r0,-39r-105,0r0,39r21,0r-34,54r-59,-93r-64,0r0,39r39,0r60,94r-60,95r-39,0r0,40r109,0r0,-40r-23,0r37,-58r61,98r65,0","w":262,"k":{"\u00fc":25,"\u00fb":23,"\u00fa":24,"\u00f9":24,"\u00f6":26,"\u00f5":25,"\u00f4":24,"\u00f3":26,"\u00f2":26,"\u00f1":18,"\u00eb":26,"\u00ea":24,"\u00e9":25,"\u00e8":26,"\u00e7":22,"\u00e5":17,"\u00e4":19,"\u00e3":18,"\u00e2":17,"\u00e1":18,"\u00e0":18,"\u00d6":45,"\u00c7":48,"\u00c5":-14,"\u00c4":-14,"y":53,"w":43,"v":51,"u":21,"t":14,"r":22,"q":22,"p":12,"o":23,"n":16,"m":17,"j":18,"i":18,"g":23,"f":15,"e":23,"d":28,"c":22,"a":18,"Y":-10,"X":-3,"W":-8,"Q":46,"O":45,"G":46,"F":-8,"C":48,"A":-14,"9":27,"8":17,"7":21,"6":28,"5":28,"4":55,"3":31,"2":12,"1":40,"0":23}},"Y":{"d":"243,-217r0,-39r-103,0r0,39r22,0r-43,68r-67,-107r-63,0r0,39r37,0r70,110r0,79r-34,0r0,40r77,0r0,-119r70,-110r34,0","w":241,"k":{"\u00fc":29,"\u00fb":37,"\u00fa":38,"\u00f9":38,"\u00f6":30,"\u00f5":24,"\u00f4":39,"\u00f3":58,"\u00f2":39,"\u00f1":21,"\u00ef":-17,"\u00ed":12,"\u00eb":30,"\u00ea":39,"\u00e9":58,"\u00e8":39,"\u00e7":72,"\u00e5":33,"\u00e4":28,"\u00e3":22,"\u00e2":37,"\u00e1":56,"\u00e0":37,"\u00dc":-19,"\u00d6":34,"\u00d1":-17,"\u00c9":-16,"\u00c7":37,"\u00c5":60,"\u00c4":60,"z":59,"y":38,"x":44,"w":36,"v":36,"u":37,"t":32,"s":66,"r":41,"q":73,"p":34,"o":73,"n":36,"m":37,"l":-18,"k":-17,"h":-17,"g":73,"f":11,"e":72,"d":74,"c":72,"b":-16,"a":78,"Y":-18,"X":-11,"W":-22,"V":-21,"U":-19,"T":-10,"R":-19,"Q":34,"P":-16,"O":34,"N":-17,"M":-14,"L":-15,"K":-16,"J":-17,"I":13,"H":-15,"G":34,"F":-16,"E":-16,"D":-18,"C":37,"B":-15,"A":60,">":24,"9":15,"8":9,"6":22,"5":18,"4":72,"3":24,"2":24,"1":32,"0":13}},"Z":{"d":"199,12r0,-87r-40,0r0,47r-103,0r139,-197r0,-31r-189,0r0,39r131,0r-139,197r0,32r201,0","k":{"\u00fc":22,"\u00fb":20,"\u00fa":21,"\u00f9":22,"\u00f1":20,"\u00e5":10,"\u00e4":12,"\u00e3":11,"\u00e2":10,"\u00e1":12,"\u00e0":12,"\u00d6":14,"\u00c7":17,"\u00c5":-12,"\u00c4":-12,"z":10,"y":29,"w":27,"v":27,"u":18,"t":14,"r":24,"p":14,"n":18,"m":19,"j":17,"i":17,"f":17,"a":11,"W":-10,"V":-9,"Q":14,"O":14,"G":14,"C":17,"A":-12,"9":27,"7":19,"6":12,"5":30,"4":84,"3":32,"2":13,"1":42}},"[":{"d":"130,84r0,-39r-58,0r0,-262r58,0r0,-39r-99,0r0,340r99,0","w":137},"\\":{"d":"117,17r-92,-273r-41,0r92,273r41,0","w":112},"]":{"d":"94,-256r-100,0r0,39r57,0r1,262r-58,0r0,39r99,0","w":137},"^":{"d":"212,-153r-94,-113r-94,113r27,25r67,-79r67,79","w":262},"_":{"d":"192,91r0,-41r-204,0r0,41r204,0","w":199},"`":{"d":"108,-181r-51,-79r-51,0r61,79r41,0","w":133},"a":{"d":"7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00ef":-12,"\u00ee":-12,"\u00ed":-12,"\u00ec":-12,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e7":13,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00dc":24,"\u00d6":18,"\u00d1":11,"\u00c9":10,"\u00c7":22,"\u00c5":-24,"\u00c4":-24,"y":27,"w":10,"v":10,"u":11,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":9,"k":9,"j":12,"i":12,"h":9,"g":14,"e":14,"d":13,"c":13,"b":10,"a":9,"Y":44,"X":-8,"W":49,"V":57,"U":24,"T":30,"R":11,"Q":18,"P":-15,"O":18,"N":11,"M":12,"L":-14,"K":10,"J":13,"I":-11,"H":-14,"G":18,"F":-15,"E":10,"D":10,"C":22,"B":11,"A":-24,"9":22,"8":10,"7":55,"6":20,"5":24,"4":15,"3":28,"1":33,"0":15}},"b":{"d":"66,-4v61,46,152,-4,152,-84v0,-78,-91,-127,-152,-79r0,-89r-72,0r0,39r30,0r0,229r42,0r0,-16xm121,-148v33,0,55,27,55,61v0,34,-21,63,-55,63v-34,-1,-55,-26,-55,-63v0,-34,24,-61,55,-61","w":245,"k":{"\u00fc":24,"\u00fb":24,"\u00fa":25,"\u00f9":25,"\u00f6":11,"\u00f5":11,"\u00f4":10,"\u00f3":12,"\u00f2":12,"\u00f1":22,"\u00ef":23,"\u00ee":23,"\u00ed":24,"\u00ec":24,"\u00eb":11,"\u00ea":10,"\u00e9":11,"\u00e8":12,"\u00e5":20,"\u00e4":21,"\u00e3":21,"\u00e2":20,"\u00e1":21,"\u00e0":21,"\u00dc":22,"\u00d6":14,"\u00d1":26,"\u00c9":26,"\u00c7":18,"\u00c5":18,"\u00c4":18,"z":27,"y":14,"x":19,"w":12,"v":12,"u":13,"t":14,"r":17,"p":10,"n":11,"m":13,"l":23,"k":25,"j":24,"i":25,"h":24,"f":23,"d":13,"b":25,"a":12,"Z":31,"Y":77,"X":30,"W":48,"V":56,"U":22,"T":39,"S":10,"R":26,"Q":13,"P":25,"O":14,"N":26,"M":27,"L":25,"K":26,"J":28,"I":29,"H":25,"G":14,"F":24,"E":26,"D":26,"C":18,"B":26,"A":18,"9":28,"8":8,"7":72,"6":16,"5":30,"4":11,"3":58,"2":33,"1":73,"0":10}},"c":{"d":"3,-85v0,90,116,139,167,66v6,-8,12,-19,18,-33r-36,-16v-12,27,-20,45,-53,45v-34,0,-54,-25,-54,-62v-1,-35,20,-62,52,-62v28,0,45,17,43,53r38,0r0,-77r-33,0v-60,-43,-142,13,-142,86","w":203,"k":{"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00dc":19,"\u00d6":10,"\u00d1":21,"\u00c9":20,"\u00c7":14,"z":20,"l":17,"k":19,"h":19,"b":20,"a":10,"Z":15,"Y":59,"X":17,"W":36,"V":42,"U":19,"T":34,"R":21,"Q":10,"P":10,"O":10,"N":21,"M":22,"L":10,"K":21,"J":23,"I":14,"H":11,"G":10,"F":10,"E":20,"D":20,"C":14,"B":21,"9":18,"7":67,"6":14,"5":28,"4":23,"3":48,"2":19,"1":58}},"d":{"d":"1,-85v0,76,89,128,151,81r0,16r72,0r0,-40r-31,0r0,-228r-41,0r0,89v-61,-48,-151,3,-151,82xm96,-148v32,0,56,29,56,62v1,33,-22,62,-55,62v-30,0,-55,-28,-55,-61v0,-33,24,-63,54,-63","w":237,"k":{"\u00fc":11,"\u00fb":9,"\u00fa":10,"\u00f9":10,"\u00f6":16,"\u00f5":15,"\u00f4":15,"\u00f3":16,"\u00f2":16,"\u00ef":-14,"\u00ee":-15,"\u00ed":-14,"\u00ec":-14,"\u00eb":16,"\u00ea":15,"\u00e9":16,"\u00e8":16,"\u00e7":10,"\u00e4":9,"\u00e3":8,"\u00e1":9,"\u00e0":9,"\u00d6":18,"\u00c7":22,"\u00c5":-24,"\u00c4":-24,"v":10,"t":17,"s":-11,"r":9,"q":11,"o":12,"j":10,"i":10,"g":12,"e":12,"d":19,"c":10,"X":-13,"T":13,"S":-8,"Q":18,"P":-18,"O":18,"M":8,"L":-18,"I":-14,"H":-17,"G":18,"F":-18,"C":22,"A":-24,"9":18,"7":29,"6":18,"5":19,"4":17,"3":21,"1":30,"0":13}},"e":{"d":"155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0","k":{"\u00fc":21,"\u00fb":21,"\u00fa":21,"\u00f9":21,"\u00f1":18,"\u00ef":23,"\u00ee":23,"\u00ed":23,"\u00ec":23,"\u00e5":23,"\u00e4":23,"\u00e3":23,"\u00e2":23,"\u00e1":23,"\u00e0":23,"\u00dc":21,"\u00d6":12,"\u00d1":25,"\u00c9":24,"\u00c7":16,"\u00c5":18,"\u00c4":18,"z":41,"y":21,"x":26,"w":19,"v":19,"u":20,"t":16,"s":17,"r":23,"p":17,"n":18,"m":20,"l":22,"k":24,"j":23,"i":24,"h":23,"f":22,"d":12,"b":24,"a":23,"Z":35,"Y":81,"X":33,"W":50,"V":59,"U":21,"T":42,"S":9,"R":25,"Q":12,"P":26,"O":12,"N":25,"M":26,"L":26,"K":25,"J":27,"I":28,"H":24,"G":12,"F":24,"E":24,"D":24,"C":16,"B":25,"A":18,"9":30,"7":75,"6":14,"5":33,"4":11,"3":71,"2":40,"1":75,"0":8,".":21}},"f":{"d":"65,-182v0,0,-4,-47,19,-37r7,20r39,-5v-6,-34,-19,-56,-53,-56v-39,0,-58,33,-54,78r-26,0r0,39r26,0r1,155r74,0r0,-40r-33,0r0,-115r33,0r0,-39r-33,0","w":100,"k":{"\u00fc":-13,"\u00fb":-15,"\u00fa":-14,"\u00f9":-14,"\u00f3":15,"\u00f2":15,"\u00f1":-17,"\u00ef":-43,"\u00ee":-41,"\u00ed":-20,"\u00ec":-20,"\u00e9":14,"\u00e8":14,"\u00e7":11,"\u00e3":-9,"\u00e1":9,"\u00e0":8,"\u00dc":-41,"\u00d1":-39,"\u00c9":-38,"\u00c5":-23,"\u00c4":-23,"y":-17,"x":-11,"w":-18,"v":-18,"u":-17,"t":-13,"s":-10,"r":-13,"q":12,"p":-21,"o":12,"n":-19,"m":-17,"l":-41,"k":-39,"j":-18,"i":-18,"h":-39,"g":12,"f":-10,"e":12,"d":15,"c":11,"b":-39,"a":8,"Z":-21,"Y":-41,"X":-33,"W":-45,"V":-44,"U":-42,"T":-35,"S":-27,"R":-42,"P":-39,"N":-40,"M":-37,"L":-38,"K":-39,"J":-40,"I":-13,"H":-38,"F":-39,"E":-39,"D":-41,"B":-38,"A":-24,"9":-16,"8":-22,"7":-19,"6":-10,"5":-8,"4":19,"0":-18}},"g":{"d":"47,82v69,27,150,-5,150,-78r0,-147r31,0r0,-39r-73,0r0,17v-58,-53,-152,3,-152,81v0,78,92,127,152,79v8,58,-51,65,-98,49xm99,-147v31,0,56,29,56,62v0,34,-24,60,-56,60v-33,0,-54,-26,-54,-60v0,-33,22,-62,54,-62","w":237,"k":{"\u00fc":-21,"\u00fb":-21,"\u00fa":-21,"\u00f9":-21,"\u00f1":-24,"\u00ef":-18,"\u00ee":-18,"\u00ed":-18,"\u00ec":-18,"\u00e7":10,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d6":-9,"y":-19,"x":-16,"w":-24,"v":-23,"u":-23,"t":-9,"r":3,"q":15,"p":-24,"n":-24,"m":-22,"j":-19,"i":-18,"h":17,"g":22,"f":-19,"a":15,"Z":12,"Y":32,"X":10,"W":12,"V":18,"T":-11,"S":-9,"O":-9,"G":-9,"7":69,"5":9,"4":12,"3":45,"2":22,"1":52,"0":-13}},"h":{"d":"117,-147v13,0,18,5,18,19r0,140r69,0r0,-40r-27,0v-2,-69,18,-158,-57,-158v-23,0,-39,7,-54,16r0,-86r-73,0r0,39r31,0r1,229r69,0r0,-40r-28,0r0,-95v13,-11,29,-24,51,-24","w":216,"k":{"\u00fc":18,"\u00fb":17,"\u00fa":18,"\u00f9":18,"\u00f6":21,"\u00f5":21,"\u00f4":20,"\u00f3":21,"\u00f2":22,"\u00f1":14,"\u00ef":-8,"\u00ee":-9,"\u00eb":21,"\u00ea":20,"\u00e9":21,"\u00e8":21,"\u00e7":11,"\u00e5":14,"\u00e4":15,"\u00e3":14,"\u00e2":14,"\u00e1":15,"\u00e0":15,"\u00dc":27,"\u00d6":22,"\u00d1":13,"\u00c9":14,"\u00c7":26,"\u00c5":-17,"\u00c4":-17,"y":8,"t":22,"s":-10,"r":11,"q":11,"o":11,"l":11,"k":13,"j":17,"i":17,"h":13,"g":11,"f":12,"e":11,"d":23,"c":11,"b":13,"a":9,"Y":44,"W":49,"V":55,"U":27,"T":27,"R":14,"Q":22,"P":-11,"O":22,"N":13,"M":15,"L":-11,"K":14,"J":17,"H":-10,"G":22,"F":-12,"E":14,"D":14,"C":26,"B":14,"A":-17,"9":24,"8":14,"7":57,"6":24,"5":25,"4":21,"3":28,"2":8,"1":37,"0":19}},"i":{"d":"43,-208v14,0,26,-12,26,-26v0,-13,-13,-26,-26,-26v-13,0,-26,12,-26,26v0,14,12,26,26,26xm98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r1,155r70,0","w":100,"k":{"\u00fc":13,"\u00fb":12,"\u00fa":13,"\u00f9":13,"\u00f6":19,"\u00f5":19,"\u00f4":18,"\u00f3":19,"\u00f2":19,"\u00f1":10,"\u00ef":-10,"\u00ee":-12,"\u00ed":-10,"\u00ec":-11,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":19,"\u00e7":12,"\u00e5":11,"\u00e4":13,"\u00e3":12,"\u00e2":11,"\u00e1":12,"\u00e0":12,"\u00d6":21,"\u00d1":8,"\u00c9":10,"\u00c7":24,"\u00c5":-19,"\u00c4":-19,"s":-9,"r":10,"q":13,"o":14,"k":8,"j":12,"i":13,"h":8,"g":14,"f":9,"e":14,"d":21,"c":12,"b":9,"a":9,"X":-9,"T":15,"Q":21,"P":-14,"O":21,"M":10,"L":-14,"K":8,"I":-10,"H":-13,"G":21,"F":-14,"E":9,"C":24,"B":10,"A":-21,"9":21,"8":11,"7":31,"6":22,"5":22,"4":19,"3":24,"1":33,"0":17}},"j":{"d":"44,-208v12,0,27,-12,25,-26v1,-14,-13,-26,-25,-26v-13,0,-26,12,-26,26v0,14,12,26,26,26xm-10,85v51,3,78,-17,79,-64r0,-203r-73,0r0,39r32,0r0,160v0,23,-12,32,-38,28r0,40","w":95,"k":{"\u00fc":9,"\u00fb":8,"\u00fa":9,"\u00f9":9,"\u00f6":17,"\u00f5":16,"\u00f4":15,"\u00f3":17,"\u00f2":16,"\u00ed":9,"\u00ec":9,"\u00eb":16,"\u00ea":15,"\u00e9":16,"\u00e8":16,"\u00e7":14,"\u00e5":22,"\u00e4":23,"\u00e3":23,"\u00e2":22,"\u00e1":23,"\u00e0":23,"\u00d6":17,"\u00c7":24,"z":18,"x":9,"t":10,"s":10,"q":18,"o":11,"k":14,"i":10,"g":16,"e":10,"d":18,"c":11,"a":19,"Z":16,"X":10,"T":11,"S":15,"Q":19,"O":17,"I":10,"G":17,"C":21,"9":22,"8":13,"7":27,"6":20,"5":31,"4":15,"3":43,"2":25,"1":53,"0":14}},"k":{"d":"204,12r0,-40r-33,0r-74,-61r78,-54r26,0r0,-39v-53,-7,-71,24,-103,45r-32,21r0,-140r-73,0r0,39r31,0r1,229r73,0r0,-40r-32,0r0,-35r85,75r53,0","w":208,"k":{"\u00fc":-8,"\u00fb":-9,"\u00fa":-8,"\u00f9":-8,"\u00f6":19,"\u00f5":18,"\u00f4":18,"\u00f3":19,"\u00f2":19,"\u00f1":-11,"\u00ef":-11,"\u00ee":-12,"\u00ed":-11,"\u00ec":-10,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":19,"\u00e7":9,"\u00e5":11,"\u00e4":12,"\u00e3":12,"\u00e2":11,"\u00e1":12,"\u00e0":12,"\u00dc":9,"\u00d1":10,"\u00c9":11,"\u00c5":-20,"\u00c4":-20,"y":-17,"x":-11,"w":-19,"v":-19,"u":-18,"t":-8,"s":-12,"r":-13,"q":10,"p":-21,"o":11,"n":-19,"m":-17,"l":8,"k":10,"j":-9,"h":10,"g":11,"f":-9,"e":10,"d":21,"c":9,"b":10,"Y":38,"X":-9,"W":19,"V":24,"U":9,"R":11,"P":-14,"N":10,"M":13,"L":-14,"K":11,"J":13,"I":-10,"H":-13,"F":-14,"E":11,"D":11,"B":12,"A":-20,"7":53,"5":17,"4":39,"3":25,"1":33}},"l":{"d":"95,12r0,-40r-31,0r0,-228r-73,0r0,39r31,0r0,229r73,0","w":95,"k":{"\u00fc":13,"\u00fb":11,"\u00fa":12,"\u00f9":12,"\u00f6":18,"\u00f5":17,"\u00f4":17,"\u00f3":18,"\u00f2":18,"\u00f1":9,"\u00ef":-12,"\u00ee":-13,"\u00ed":-12,"\u00ec":-12,"\u00eb":18,"\u00ea":16,"\u00e9":17,"\u00e8":18,"\u00e7":12,"\u00e5":9,"\u00e4":11,"\u00e3":10,"\u00e2":9,"\u00e1":10,"\u00e0":10,"\u00d6":19,"\u00c9":8,"\u00c7":24,"\u00c5":-22,"\u00c4":-22,"y":8,"t":8,"s":-9,"r":11,"q":12,"o":13,"j":11,"i":12,"g":14,"e":13,"d":20,"c":12,"b":8,"a":8,"X":-11,"T":14,"Q":19,"P":-16,"O":19,"M":10,"L":-15,"K":8,"I":-12,"H":-15,"G":19,"F":-16,"E":8,"C":24,"B":9,"A":-22,"9":19,"8":9,"7":31,"6":20,"5":21,"4":18,"3":23,"1":32,"0":15}},"m":{"d":"225,-147v12,0,17,6,17,19r0,140r68,0r0,-40r-26,0v-2,-70,18,-158,-58,-158v-27,0,-45,11,-61,23v-16,-30,-73,-27,-99,-8r0,-11r-73,0r0,39r31,0r0,155r70,0r0,-40r-28,0r0,-95v13,-13,49,-36,66,-15v3,47,0,101,1,150r42,0r0,-134v12,-12,30,-25,50,-25","w":337,"k":{"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00f1":8,"\u00ef":-12,"\u00ee":-12,"\u00ed":-12,"\u00ec":-12,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":13,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00dc":24,"\u00d6":17,"\u00d1":10,"\u00c9":11,"\u00c7":21,"\u00c5":-23,"\u00c4":-23,"y":10,"w":8,"v":8,"u":9,"s":-8,"r":13,"q":14,"o":14,"n":8,"m":9,"l":8,"k":10,"j":13,"i":12,"h":10,"g":13,"f":8,"e":13,"d":12,"c":13,"b":10,"a":10,"Y":44,"W":48,"V":55,"U":24,"T":27,"R":11,"Q":17,"P":-14,"O":17,"N":10,"M":13,"L":-14,"K":11,"J":14,"I":-10,"H":-13,"G":17,"F":-14,"E":11,"D":11,"C":21,"B":12,"A":-23,"9":23,"8":10,"7":56,"6":20,"5":24,"4":15,"3":28,"1":34,"0":14}},"n":{"d":"115,-147v12,0,18,5,18,19r0,140r69,0r0,-40r-27,0v-2,-69,18,-158,-57,-158v-22,0,-39,7,-54,16r0,-12r-73,0r0,39r31,0r0,155r70,0r0,-40r-28,0r0,-95v12,-11,30,-24,51,-24","w":212,"k":{"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00ef":-15,"\u00ee":-15,"\u00ed":-15,"\u00ec":-15,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":10,"\u00dc":20,"\u00d6":13,"\u00c7":17,"\u00c5":-27,"\u00c4":-27,"t":17,"s":-12,"r":10,"q":10,"o":10,"j":9,"i":8,"g":9,"e":9,"d":8,"c":10,"Z":-9,"Y":40,"X":-12,"W":44,"V":51,"U":20,"T":23,"S":-8,"Q":13,"P":-18,"O":13,"M":9,"L":-18,"J":10,"I":-14,"H":-17,"G":13,"F":-18,"C":17,"B":8,"A":-27,"9":19,"7":53,"6":16,"5":21,"4":12,"3":24,"1":30,"0":10}},"o":{"d":"100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62","k":{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f1":12,"\u00ef":17,"\u00ee":17,"\u00ed":17,"\u00ec":17,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00dc":15,"\u00d1":19,"\u00c9":18,"\u00c7":9,"z":25,"y":14,"x":19,"w":12,"v":12,"u":13,"t":10,"r":17,"p":23,"o":15,"n":12,"m":13,"l":15,"k":17,"j":17,"i":17,"h":17,"g":12,"f":15,"b":18,"a":11,"Z":19,"Y":73,"X":22,"W":42,"V":51,"U":15,"T":36,"R":18,"P":15,"N":19,"M":19,"L":15,"K":18,"J":21,"I":19,"H":16,"F":15,"E":18,"D":18,"C":9,"B":19,"9":23,"7":67,"5":26,"3":53,"2":22,"1":63}},"p":{"d":"212,-86v0,-82,-91,-128,-150,-81r0,-15r-70,0r0,39r29,0r0,231r72,0r0,-39r-31,0r0,-50v63,46,150,-5,150,-85xm116,-147v33,-1,55,26,55,62v0,37,-21,62,-54,62v-33,0,-55,-25,-55,-63v0,-35,20,-61,54,-61","w":237,"k":{"\u00fc":15,"\u00fb":15,"\u00fa":15,"\u00f9":15,"\u00f1":12,"\u00ef":17,"\u00ee":17,"\u00ed":17,"\u00ec":17,"\u00e7":10,"\u00e5":12,"\u00e4":12,"\u00e3":12,"\u00e2":12,"\u00e1":12,"\u00e0":12,"\u00dc":16,"\u00d1":20,"\u00c9":19,"\u00c7":22,"z":25,"y":23,"x":19,"w":12,"v":12,"u":13,"t":10,"r":17,"q":15,"p":17,"o":21,"n":12,"m":13,"l":16,"k":18,"j":23,"i":17,"h":18,"g":13,"f":16,"b":19,"a":12,"Z":19,"Y":74,"X":22,"W":43,"V":53,"U":16,"T":36,"R":20,"Q":14,"P":15,"N":20,"M":21,"L":16,"K":19,"J":28,"I":19,"H":17,"F":15,"E":19,"D":19,"C":10,"B":20,"9":23,"7":68,"6":8,"5":26,"3":53,"2":23,"1":64}},"q":{"d":"4,-86v0,80,84,131,149,85r0,50r-31,0r0,39r72,0r0,-233r32,0r0,-39r-73,0r0,16v-61,-47,-149,4,-149,82xm100,-147v34,0,54,27,54,61v0,38,-22,63,-56,63v-32,0,-54,-25,-54,-62v0,-37,23,-62,56,-62","w":237,"k":{"\u00fc":-19,"\u00fb":-19,"\u00fa":-19,"\u00f9":-19,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00f1":-22,"\u00ef":-17,"\u00ee":-17,"\u00ed":-17,"\u00ec":-17,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":11,"\u00e5":17,"\u00e4":17,"\u00e3":17,"\u00e2":17,"\u00e1":17,"\u00e0":17,"y":-18,"x":-14,"w":-22,"v":-22,"u":-21,"t":-12,"r":-17,"q":16,"p":-23,"o":9,"n":-22,"m":-20,"j":-18,"i":-16,"g":15,"f":-18,"e":9,"c":8,"a":17,"Z":14,"Y":34,"X":12,"W":14,"V":20,"T":-9,"I":9,"7":71,"5":11,"4":14,"3":47,"2":24,"1":54,"0":-10}},"r":{"d":"72,-93v0,-44,33,-52,79,-50r0,-38v-36,-3,-60,5,-79,19r0,-20r-74,0r0,39r33,0r0,155r76,0r0,-40r-35,0r0,-65","w":158,"k":{"\u00fc":-8,"\u00fb":-8,"\u00fa":-8,"\u00f9":-8,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00f1":-10,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":19,"\u00e5":28,"\u00e4":28,"\u00e3":28,"\u00e2":28,"\u00e1":28,"\u00e0":28,"\u00dc":14,"\u00d1":17,"\u00c9":17,"\u00c7":8,"\u00c5":18,"\u00c4":18,"z":13,"y":-8,"w":-10,"v":-10,"u":-9,"t":-13,"s":11,"r":-3,"q":20,"p":-12,"o":20,"n":-10,"m":-9,"l":14,"k":17,"h":16,"g":21,"e":19,"d":18,"c":19,"b":17,"a":28,"Z":36,"Y":42,"X":33,"W":23,"V":29,"U":14,"R":18,"P":18,"N":17,"M":19,"L":19,"K":18,"J":20,"I":20,"H":17,"F":17,"E":17,"D":17,"C":8,"B":18,"A":18,"9":10,"7":83,"5":23,"4":41,"3":70,"2":45,"1":68}},"s":{"d":"42,6v59,39,156,-26,102,-92v-18,-21,-68,-17,-91,-34v-7,-15,6,-29,24,-28v27,2,34,14,36,43r38,0r0,-72r-37,0v-58,-37,-142,37,-84,92v20,19,69,13,88,32v6,21,-13,33,-33,32v-31,-1,-44,-14,-43,-50r-40,0r0,83r40,0r0,-6","w":178,"k":{"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dc":16,"\u00d6":9,"\u00d1":19,"\u00c9":18,"\u00c7":13,"\u00c5":-9,"\u00c4":-9,"z":11,"l":15,"k":17,"h":17,"b":18,"a":8,"Y":55,"W":33,"V":40,"U":16,"T":9,"R":19,"Q":9,"O":9,"N":19,"M":20,"K":18,"J":21,"G":9,"E":18,"D":18,"C":13,"B":19,"A":-9,"9":17,"7":64,"6":11,"5":27,"3":39,"2":14,"1":48}},"t":{"d":"100,10r0,-40r-35,6v-3,-37,0,-80,-1,-119r36,0r0,-39r-36,0r0,-39r-42,1r0,38r-30,0r0,39r30,0v9,58,-29,155,44,158","w":104,"k":{"\u00fc":-5,"\u00fb":-9,"\u00fa":-9,"\u00f9":-8,"\u00f6":17,"\u00f5":21,"\u00f4":19,"\u00f3":20,"\u00f2":21,"\u00f1":-10,"\u00ee":-8,"\u00ed":-8,"\u00eb":21,"\u00ea":19,"\u00e9":19,"\u00e8":20,"\u00e7":16,"\u00e5":14,"\u00e4":16,"\u00e3":15,"\u00e2":14,"\u00e1":14,"\u00e0":15,"\u00dc":11,"\u00d1":14,"\u00c9":14,"\u00c5":-19,"\u00c4":-19,"y":-18,"w":-13,"v":-13,"u":-12,"t":-15,"r":-8,"q":17,"p":-15,"o":17,"n":-14,"m":-12,"l":12,"k":14,"j":-8,"h":13,"g":17,"f":-9,"e":17,"d":19,"c":16,"b":14,"a":13,"Y":41,"W":21,"V":27,"U":11,"R":14,"P":-10,"N":14,"M":16,"L":-10,"K":15,"J":17,"H":-9,"F":-11,"E":14,"D":14,"B":15,"A":-19,"7":41,"5":18,"4":26,"3":29,"2":9,"1":37}},"u":{"d":"25,-143v3,67,-19,157,55,157v19,0,41,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216,"k":{"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00ef":-14,"\u00ee":-14,"\u00ed":-14,"\u00ec":-14,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":12,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dc":23,"\u00d6":18,"\u00d1":10,"\u00c9":9,"\u00c7":22,"\u00c5":-26,"\u00c4":-26,"u":13,"s":-10,"r":9,"q":12,"o":13,"k":8,"j":9,"i":9,"g":13,"e":13,"d":12,"c":12,"b":9,"a":8,"Z":-8,"Y":42,"X":-10,"W":41,"V":47,"U":23,"T":17,"R":9,"Q":18,"P":-16,"O":18,"N":10,"M":10,"L":-16,"K":9,"J":12,"I":-12,"H":-15,"G":18,"F":-17,"E":9,"D":9,"C":22,"B":10,"A":-26,"9":22,"8":9,"7":54,"6":19,"5":23,"4":15,"3":26,"1":32,"0":14}},"v":{"d":"200,-143r0,-39r-57,0r-47,128r-33,-89r18,0r0,-39r-93,0r0,39r31,0r61,157r33,0r57,-157r30,0","w":208,"k":{"\u00fc":-17,"\u00fb":-17,"\u00fa":-17,"\u00f9":-17,"\u00f6":12,"\u00f5":12,"\u00f4":12,"\u00f3":12,"\u00f2":12,"\u00f1":-19,"\u00ef":-14,"\u00ee":-14,"\u00ed":-14,"\u00ec":-14,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e8":12,"\u00e7":11,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00d1":10,"\u00c9":9,"\u00c5":36,"\u00c4":36,"y":-16,"x":-11,"w":-18,"v":-9,"u":-17,"t":-6,"r":-14,"q":12,"p":-21,"o":12,"n":-19,"m":-18,"k":8,"j":-14,"i":-14,"h":8,"g":12,"f":-15,"e":12,"d":9,"c":11,"b":9,"a":20,"Z":52,"Y":37,"X":45,"W":17,"V":23,"R":9,"P":10,"N":10,"M":11,"L":10,"K":9,"J":12,"I":12,"H":8,"F":9,"E":9,"D":9,"B":10,"A":36,"7":74,"5":15,"4":32,"3":84,"2":60,"1":59,".":65}},"w":{"d":"281,-143r0,-39r-57,0r-38,115r-24,-76r15,0r0,-39r-87,0r0,39r15,0r-24,78r-36,-117r-55,0r0,39r25,0r48,157r36,0r35,-120r35,120r34,0r51,-157r27,0","w":299,"k":{"\u00fc":-17,"\u00fb":-17,"\u00fa":-17,"\u00f9":-17,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00f1":-19,"\u00ef":-13,"\u00ee":-13,"\u00ed":-13,"\u00ec":-13,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e8":12,"\u00e7":12,"\u00e5":21,"\u00e4":21,"\u00e3":21,"\u00e2":21,"\u00e1":21,"\u00e0":21,"\u00d1":10,"\u00c9":9,"\u00c5":30,"\u00c4":30,"y":-15,"x":-10,"w":-1,"v":-17,"u":-17,"t":-3,"s":24,"r":-13,"q":12,"p":-20,"o":13,"n":-19,"m":-17,"k":9,"j":-13,"i":-13,"h":8,"g":13,"f":-14,"e":12,"d":10,"c":12,"b":9,"a":21,"Z":46,"Y":37,"X":45,"W":18,"V":24,"R":10,"P":10,"N":10,"M":11,"L":11,"K":10,"J":13,"I":12,"H":9,"F":9,"E":9,"D":9,"B":10,"A":30,"7":75,"5":15,"4":32,"3":79,"2":54,"1":60,".":63}},"x":{"d":"198,12r0,-40r-27,0r-49,-60r43,-55r29,0r0,-39r-86,0r0,39r7,0r-18,23r-18,-23r7,0r0,-39r-86,0r0,39r28,0r44,55r-76,100r101,0r0,-40r-21,0r21,-28r55,68r46,0","w":212,"k":{"\u00fc":-8,"\u00fb":-8,"\u00fa":-8,"\u00f9":-8,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":-10,"\u00ef":-8,"\u00ee":-8,"\u00ed":-8,"\u00ec":-8,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":17,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00dc":15,"\u00d1":14,"\u00c9":15,"\u00c7":9,"\u00c5":-19,"\u00c4":-19,"y":-3,"w":-9,"v":-9,"u":-8,"t":6,"q":17,"p":-12,"o":18,"n":-10,"m":-8,"l":12,"k":14,"h":14,"g":19,"e":18,"d":18,"c":17,"b":14,"a":14,"Y":46,"W":26,"V":32,"U":15,"R":15,"P":-10,"N":14,"M":17,"L":-10,"K":15,"J":18,"H":-9,"F":-10,"E":15,"D":15,"C":9,"B":15,"A":-19,"9":11,"7":60,"6":8,"5":24,"4":42,"3":32,"1":38}},"y":{"d":"202,-143r0,-39r-94,0r0,39r22,0r-31,84r-50,-123r-60,0r0,39r32,0r57,139r-33,92r41,0r87,-231r29,0","w":212,"k":{"\u00fc":-15,"\u00fb":-15,"\u00fa":-15,"\u00f9":-15,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00f1":-18,"\u00ef":-12,"\u00ee":-12,"\u00ed":-12,"\u00ec":-12,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":18,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00d1":11,"\u00c9":10,"\u00c7":10,"\u00c5":38,"\u00c4":38,"y":-13,"x":-9,"w":-17,"v":-16,"u":-15,"t":-7,"r":-12,"q":23,"p":-8,"o":13,"n":-18,"m":-16,"k":10,"j":-10,"i":-12,"h":9,"g":22,"f":-13,"e":13,"d":11,"c":13,"b":10,"a":22,"Z":54,"Y":39,"X":46,"W":19,"V":25,"R":11,"P":11,"N":11,"M":12,"L":12,"K":11,"J":15,"I":13,"H":10,"F":10,"E":10,"D":10,"B":11,"A":38,"7":76,"5":16,"4":34,"3":85,"2":62,"1":61}},"z":{"d":"168,-150r0,-32r-155,0r0,39r98,0r-106,122r0,33r163,0r0,-86r-38,0r0,46r-68,0","w":191,"k":{"\u00f1":-9,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00dc":16,"\u00d1":19,"\u00c9":19,"\u00c7":10,"\u00c5":-14,"\u00c4":-14,"z":8,"w":-8,"t":-10,"p":-10,"n":-9,"l":17,"k":19,"h":18,"b":19,"a":10,"Y":48,"W":27,"V":33,"U":16,"R":20,"N":19,"M":21,"K":20,"J":22,"E":19,"D":19,"C":10,"B":20,"A":-14,"9":12,"7":65,"6":9,"5":26,"4":42,"3":36,"2":12,"1":43}},"{":{"d":"6,-65v46,-5,34,49,34,89v0,43,25,65,74,60r0,-40v-11,0,-21,-1,-28,-4v-11,-37,7,-109,-26,-126v35,-17,12,-91,28,-127v5,-3,16,-3,26,-3r0,-40v-70,-9,-74,41,-74,109v0,25,-6,42,-34,40r0,42","w":133},"|":{"d":"110,92r0,-348r-42,0r0,348r42,0","w":198},"}":{"d":"80,24v0,-38,-14,-93,34,-89r0,-42v-46,5,-34,-49,-34,-89v0,-41,-25,-66,-74,-60r0,40v43,-8,32,36,32,72v0,27,7,45,21,58v-23,17,-22,58,-21,100v1,25,-7,32,-32,30r0,40v49,5,74,-18,74,-60","w":133},"~":{"d":"41,-103v51,-41,114,50,171,-4r12,-10r-1,-46v-20,11,-34,30,-62,33v-29,-3,-55,-27,-87,-27v-27,0,-45,15,-62,27r0,49","w":262},"\u201a":{"d":"20,58v55,2,47,-52,47,-103r-44,0r0,57r9,0v-2,9,-1,20,-12,20r0,26","w":100},"\u0192":{"d":"147,-215v3,-25,34,-15,52,-9r8,-40v-43,-22,-100,-5,-103,39r-7,27r-30,0r-8,39r30,0r-42,192v-3,23,-35,9,-50,6r-9,39v34,16,90,13,98,-22r49,-215r39,0r8,-39r-39,0"},"\u201e":{"d":"118,12v-2,11,-2,18,-12,20r0,26v54,2,46,-52,46,-103r-43,0r0,57r9,0xm20,58v55,2,47,-52,47,-103r-44,0r0,57r9,0v-2,9,-1,20,-12,20r0,26","w":191},"\u2026":{"d":"323,12r0,-47r-43,0r0,47r43,0xm203,12r0,-47r-43,0r0,47r43,0xm84,12r0,-47r-44,0r0,47r44,0","w":399},"\u2020":{"d":"107,-107v-4,-10,-6,-18,-6,-31v23,4,47,7,75,6r0,-45v-35,-1,-47,3,-75,6v2,-31,7,-47,6,-85r-44,0v-1,39,4,51,6,85v-28,-3,-38,-7,-76,-6r0,45v29,1,53,-2,76,-6v-13,62,-1,149,1,222r30,0","w":187},"\u2021":{"d":"105,4v27,4,41,7,75,6r0,-45v-39,-1,-45,3,-75,5v1,-24,2,-38,12,-56v-9,-18,-12,-32,-12,-56v27,3,41,7,75,6r0,-45v-35,-1,-47,4,-75,5v4,-28,6,-41,5,-80r-43,0v-1,33,0,50,5,80v-26,-3,-42,-6,-75,-5r0,45v34,1,48,-3,75,-6v-1,24,-3,38,-12,56v10,18,11,33,12,56v-29,-1,-39,-7,-75,-5r0,45v34,1,49,-2,75,-6v-3,29,-6,45,-5,81r43,0v1,-31,-2,-54,-5,-81","w":195},"\u02c6":{"d":"138,-183r-62,-75r-32,0r-61,75r41,0r36,-33r36,33r42,0","w":133},"\u2030":{"d":"303,17v43,0,60,-33,60,-77v0,-45,-17,-78,-60,-78v-43,0,-61,32,-60,78v0,45,17,77,60,77xm303,-104v31,1,32,87,0,87v-32,-2,-30,-86,0,-87xm181,17v43,-3,56,-33,60,-77v6,-66,-64,-103,-105,-57r98,-139v-58,-2,-124,-4,-176,-4v-45,0,-57,33,-61,77v-6,65,61,101,105,58r-97,137r41,0r87,-125v-25,44,-14,134,48,130xm106,-132v15,-23,16,-70,3,-96r65,0xm181,-104v31,1,32,87,0,87v-32,-2,-30,-86,0,-87xm58,-227v32,3,31,85,0,88v-32,-1,-31,-87,0,-88","w":399},"\u0160":{"d":"175,-342r-41,0r-36,33r-36,-33r-41,0r61,75r31,0xm86,-219v38,-3,54,13,51,52r42,0v1,-62,-32,-89,-92,-93v-82,-5,-113,110,-35,140v34,13,96,11,96,54v0,23,-21,41,-47,40v-36,0,-64,-26,-57,-69r-40,0r0,107r40,0r0,-15v52,41,147,8,147,-61v0,-76,-88,-73,-134,-102v-26,-16,-3,-57,29,-53","w":216},"\u2039":{"d":"102,12r-62,-98r62,-98r-48,0r-62,98r62,98r48,0","w":91},"\u0152":{"d":"6,-124v0,88,55,136,144,136r219,0r0,-40r-144,0r0,-77r101,0r0,-40r-101,0r0,-72r104,0r0,43r40,0r0,-82r-222,0v-86,1,-141,47,-141,132xm50,-120v-1,-78,50,-101,131,-97r0,189v-79,5,-130,-18,-131,-92","w":420},"\u2018":{"d":"70,-257v-55,-2,-47,52,-47,103r44,0r0,-57r-9,0v2,-9,1,-20,12,-20r0,-26","w":100},"\u2019":{"d":"20,-153v55,2,47,-52,47,-103r-44,0r0,57r9,0v-2,9,-1,20,-12,20r0,26","w":100},"\u201c":{"d":"152,-257v-55,-2,-47,52,-47,103r43,0r0,-57r-8,0v0,-10,1,-19,12,-20r0,-26xm55,-211v2,-11,2,-18,12,-20r0,-26v-54,-2,-46,52,-46,103r43,0r0,-57r-9,0","w":191},"\u201d":{"d":"105,-153v55,2,47,-52,47,-103r-44,0r0,57r9,0v-2,9,-1,20,-12,20r0,26xm21,-153v54,3,46,-52,46,-103r-43,0r0,57r9,0v-2,9,-2,19,-12,20r0,26","w":191},"\u2022":{"d":"58,-69v21,0,40,-18,40,-40v0,-23,-18,-41,-40,-41v-23,0,-40,19,-40,41v0,21,18,40,40,40","w":132},"\u2013":{"d":"192,-69r0,-42r-204,0r0,42r204,0","w":199},"\u2014":{"d":"372,-69r0,-42r-384,0r0,42r384,0","w":399},"\u02dc":{"d":"19,-193v13,-48,89,44,109,-37v2,-5,4,-11,6,-18r-34,0v-11,48,-60,-27,-92,10v-11,13,-15,23,-22,45r33,0","w":133},"\u2122":{"d":"308,-89r0,-167r-47,0r-29,89r-27,-89r-176,0r0,39r48,0r0,128r39,0r0,-128r41,0r0,128r40,0r0,-66r20,66r29,0r23,-69r0,69r39,0","w":374},"\u0161":{"d":"158,-269r-41,0r-36,33r-36,-33r-41,0r61,75r31,0xm42,6v59,39,156,-26,102,-92v-18,-21,-68,-17,-91,-34v-7,-15,6,-29,24,-28v27,2,34,14,36,43r38,0r0,-72r-37,0v-58,-37,-142,37,-84,92v20,19,69,13,88,32v6,21,-13,33,-33,32v-31,-1,-44,-14,-43,-50r-40,0r0,83r40,0r0,-6","w":178},"\u203a":{"d":"90,-86r-62,-98r-47,0r62,98r-62,98r47,0","w":91},"\u0153":{"d":"284,-37v-36,30,-91,9,-96,-32r146,0v-2,-66,-31,-115,-93,-117v-31,-1,-59,16,-74,36v-13,-21,-41,-37,-73,-36v-53,0,-91,42,-91,101v0,59,39,101,91,102v31,0,59,-16,73,-35v26,38,95,46,137,15xm190,-109v9,-48,89,-51,97,0r-97,0xm95,-147v32,0,51,30,51,62v0,33,-19,62,-51,62v-30,0,-50,-29,-50,-62v0,-33,20,-62,50,-62","w":370},"\u0178":{"d":"163,-270r0,-46r-46,0r0,46r46,0xm101,-270r0,-46r-46,0r0,46r46,0xm235,-217r0,-39r-103,0r0,39r22,0r-42,68r-68,-107r-62,0r0,39r36,0r70,110r0,79r-34,0r0,40r77,0r0,-119r70,-110r34,0","w":241},"\u00a1":{"d":"67,-125r0,-57r-44,0r0,57r44,0xm66,86r0,-89r-5,-114r-32,0r-5,113r0,90r42,0","w":100},"\u00a2":{"d":"54,6r-21,82r36,0r19,-72v53,5,84,-26,100,-68r-36,-16v-12,27,-20,43,-54,45r28,-111v10,10,14,19,14,43r38,0r0,-88r-38,0r0,7r-3,-2r20,-78r-36,0r-18,68v-106,-11,-133,153,-49,190xm65,-35v-35,-27,-21,-112,28,-109","w":203},"\u00a3":{"d":"104,-260v-65,-3,-88,68,-59,120r-37,0r0,39r52,0v4,9,6,20,8,32v-31,-11,-64,9,-64,40v0,48,67,57,85,21v13,10,29,23,50,23v39,-1,58,-37,54,-81r-37,0v-1,23,-5,56,-33,37v-26,-8,-13,-43,-21,-72r38,0r0,-39r-51,0v-13,-26,-30,-84,16,-82v27,1,30,16,32,44r40,0v1,-54,-23,-80,-73,-82xm61,-33v-2,12,-26,17,-19,0v6,-5,14,-3,19,0","w":208},"\u00a4":{"d":"23,-80v13,82,134,125,207,70v21,-17,38,-42,50,-75r-37,-21v-16,43,-34,80,-91,80v-43,1,-70,-23,-83,-54r137,0r0,-38r-145,0v0,-4,-1,-9,1,-12r144,0r0,-39r-135,0v13,-28,40,-51,79,-50v46,1,73,25,81,64r38,0r0,-87r-40,0r0,9v-20,-15,-45,-27,-78,-27v-69,2,-109,37,-127,91r-30,0r0,39r24,0r0,12r-24,0r0,38r29,0","w":299},"\u20ac":{"d":"23,-80v13,82,134,125,207,70v21,-17,38,-42,50,-75r-37,-21v-16,43,-34,80,-91,80v-43,1,-70,-23,-83,-54r137,0r0,-38r-145,0v0,-4,-1,-9,1,-12r144,0r0,-39r-135,0v13,-28,40,-51,79,-50v46,1,73,25,81,64r38,0r0,-87r-40,0r0,9v-20,-15,-45,-27,-78,-27v-69,2,-109,37,-127,91r-30,0r0,39r24,0r0,12r-24,0r0,38r29,0","w":299},"\u00a5":{"d":"211,-217r0,-39r-104,0r0,39r24,0r-9,20r-40,0r-9,-20r26,0r0,-39r-111,0r0,39r36,0r9,20r-45,0r0,39r64,0r9,20r-73,0r0,39r90,0r0,71r-34,0r0,40r112,0r0,-40r-35,0r0,-71r89,0r0,-39r-72,0r10,-20r62,0r0,-39r-43,0r9,-20r35,0xm104,-166v-3,8,-6,8,-9,0r9,0","k":{",":54}},"\u00a6":{"d":"110,-102r0,-154r-42,0r0,154r42,0xm110,92r0,-154r-42,0r0,154r42,0","w":198},"\u00a7":{"d":"81,88v63,6,98,-71,57,-112v24,-19,36,-68,10,-94v-21,-33,-99,-30,-106,-77v-3,-19,18,-27,32,-27v26,0,38,15,38,45r40,0v0,-52,-30,-79,-76,-83v-62,-5,-98,70,-57,112v-24,20,-35,66,-10,94v22,25,75,33,100,58v19,19,-2,48,-26,46v-26,-1,-37,-15,-38,-45r-39,0v-2,54,31,79,75,83xm50,-127v37,12,101,39,57,82v-22,-12,-50,-20,-68,-36v-10,-15,-1,-40,11,-46","w":174},"\u00a8":{"d":"114,-197r0,-46r-46,0r0,46r46,0xm52,-197r0,-46r-46,0r0,46r46,0","w":133},"\u00a9":{"d":"144,12v76,0,140,-64,140,-140v0,-76,-64,-140,-140,-140v-76,0,-140,64,-140,140v0,76,64,140,140,140xm144,-239v60,0,112,51,112,111v0,60,-52,111,-112,111v-60,0,-111,-52,-111,-111v0,-60,50,-111,111,-111xm72,-128v0,87,123,116,139,27r-26,-10v-7,22,-16,37,-40,38v-28,0,-42,-27,-42,-57v0,-52,70,-71,79,-20r29,-9v-13,-25,-26,-47,-64,-47v-45,0,-75,33,-75,78","w":288},"\u00aa":{"d":"32,-211v4,-18,29,-22,44,-13r1,12v-15,-2,-32,-5,-45,1xm112,-219v3,-51,-80,-51,-100,-21v-3,4,-8,12,-13,23r30,7v-43,12,-28,84,19,80v11,-1,20,-4,29,-7r0,5r53,0r0,-33r-18,0r0,-54xm51,-162v-17,0,-16,-17,-4,-21v11,0,31,-4,30,11v-6,4,-17,10,-26,10","w":133},"\u00ab":{"d":"183,12r-62,-98r62,-98r-47,0r-62,98r62,98r47,0xm107,12r-62,-98r62,-98r-48,0r-62,98r62,98r48,0","w":187},"\u00ac":{"d":"105,-160v0,-22,15,-55,32,-37r38,39r0,164r66,0r0,-28r-34,0r0,-94r110,122r49,0r0,-28r-30,0r-98,-108r93,-92r30,0r0,-28r-42,0r-89,88r-23,19r0,-79r33,0r0,-28r-97,0r0,28r32,0r0,30v-16,-20,-46,-50,-73,-21v-8,9,-15,24,-17,40v-32,-6,-45,19,-50,44r-7,-6r-31,31r16,16r14,-15r72,72r30,-30r-16,-16r-13,14r-47,-47v2,-20,15,-54,33,-36r64,64r17,-17xm194,88v19,0,35,-16,35,-35v0,-18,-16,-34,-35,-34v-19,0,-35,17,-35,34v0,18,17,35,35,35","w":363},"\u00ae":{"d":"144,12v76,0,140,-64,140,-140v0,-76,-64,-140,-140,-140v-76,0,-140,64,-140,140v0,76,64,140,140,140xm144,-239v60,0,112,51,112,111v0,60,-52,111,-112,111v-60,0,-111,-52,-111,-111v0,-60,50,-111,111,-111xm114,-111v47,-1,47,27,63,61r35,0v-14,-29,-18,-50,-40,-67v50,-14,36,-86,-22,-86r-66,0r0,153r30,0r0,-61xm114,-177v24,2,57,-6,58,18v1,27,-32,20,-58,21r0,-39","w":288},"\u00af":{"d":"129,-204r0,-34r-138,0r0,34r138,0","w":133},"\u00b0":{"d":"71,-135v34,0,63,-28,63,-63v0,-33,-28,-62,-63,-62v-33,0,-62,29,-62,62v0,35,29,63,62,63xm71,-222v16,-1,25,10,25,24v0,15,-10,25,-25,25v-15,0,-25,-10,-25,-25v0,-14,9,-24,25,-24","w":158},"\u00b1":{"d":"220,-130r0,-27r-86,0r0,-87r-28,0r0,87r-86,0r0,27r86,0r0,87r28,0r0,-87r86,0xm220,6r0,-28r-200,0r0,28r200,0","w":240},"\u00b2":{"d":"57,-235v19,0,31,21,18,33v-26,23,-77,37,-71,88r99,0r2,-51r-21,0r-1,31r-55,0v7,-37,75,-35,75,-82v0,-23,-21,-39,-46,-39v-31,1,-54,20,-50,55r22,0v-2,-22,6,-35,28,-35","w":116},"\u00b3":{"d":"58,-112v49,5,75,-59,31,-76v36,-28,-4,-82,-49,-64v-17,6,-28,19,-28,43r23,0v-1,-20,6,-25,22,-26v20,-3,31,22,16,33v-7,6,-19,9,-29,5r0,22v21,-3,45,0,45,20v1,15,-14,24,-30,24v-22,-1,-32,-12,-34,-34r-22,0v1,36,21,49,55,53","w":116},"\u00b4":{"d":"113,-260r-50,0r-51,79r41,0","w":133},"\u00b5":{"d":"61,2v25,14,61,1,78,-14r0,18r60,0r0,-28r-29,0r0,-154r-60,0r0,28r29,0r0,100v-12,13,-33,27,-55,28v-15,0,-22,-7,-22,-23r0,-133r-60,0r0,28r30,0r0,230r29,0r0,-80","w":198},"\u00b6":{"d":"5,-170v0,45,34,82,79,85r0,173r46,0r0,-297r24,0r0,297r46,0r0,-297r34,0r0,-47r-134,0v-54,1,-94,31,-95,86","w":258},"\u00b7":{"d":"68,-92r0,-46r-43,0r0,46r43,0","w":116},"\u2219":{"d":"68,-92r0,-46r-43,0r0,46r43,0","w":116},"\u00b8":{"d":"14,88v44,2,84,-8,84,-46v-1,-18,-11,-31,-25,-36r3,-15r-35,0r-9,49v8,2,21,-1,25,5v-6,12,-25,8,-43,8r0,35","w":133},"\u00b9":{"d":"91,-114r0,-20r-21,0r0,-118r-44,0r0,19r21,0r0,99r-22,0r0,20r66,0","w":116},"\u00ba":{"d":"64,-129v37,0,67,-29,67,-65v0,-37,-30,-66,-67,-66v-37,0,-67,30,-67,66v0,35,30,65,67,65xm64,-226v18,0,31,12,31,32v0,20,-13,32,-31,32v-18,0,-31,-12,-31,-32v0,-20,13,-32,31,-32","w":141},"\u00bb":{"d":"172,-86r-62,-98r-47,0r62,98r-62,98r47,0xm95,-86r-62,-98r-47,0r62,98r-62,98r47,0","w":187},"\u00bc":{"d":"149,-43v5,4,8,4,10,12r56,0r0,17r-17,0r0,20r52,0r0,-20r-13,0r0,-17r24,0r0,-19r-24,0r0,-84r-19,0xm215,-50r-36,0r36,-49r0,49xm241,-250r-26,0r-181,256r26,0xm92,-114r0,-20r-21,0r0,-118r-45,0r0,19r21,0r0,99r-21,0r0,20r66,0","w":303},"\u00bd":{"d":"199,-81v-10,-37,48,-48,52,-15v-14,42,-86,39,-76,102r99,0r2,-51r-21,0r-1,31r-56,0v7,-37,75,-36,76,-82v1,-24,-21,-40,-47,-39v-31,1,-53,20,-50,54r22,0xm241,-250r-27,0r-181,256r27,0xm91,-114r0,-20r-21,0r0,-118r-44,0r0,19r21,0r0,99r-22,0r0,20r66,0","w":303},"\u00be":{"d":"288,-31r0,-19r-25,0r0,-84r-19,0r-69,91v5,4,8,4,10,12r57,0r0,17r-17,0r0,20r51,0r0,-20r-13,0r0,-17r25,0xm242,-50r-37,0r37,-49r0,49xm268,-250r-27,0r-181,256r27,0xm72,-112v49,5,73,-59,31,-76v36,-28,-4,-81,-49,-64v-18,7,-28,19,-29,43r23,0v0,-19,5,-25,23,-26v20,-2,31,23,15,33v-7,6,-18,9,-29,5r0,22v22,-4,45,0,46,20v-7,36,-67,29,-65,-10r-21,0v1,36,21,50,55,53","w":303},"\u00bf":{"d":"111,-125r0,-57r-43,0r0,57r43,0xm69,-63v-97,8,-78,156,13,152v55,-3,79,-32,80,-89r-40,0v1,32,-9,49,-38,50v-22,1,-39,-17,-39,-38v0,-39,33,-38,67,-33r-8,-95r-30,0","w":178},"\u00c0":{"d":"166,-262r-51,-79r-50,0r60,79r41,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262},"\u00c1":{"d":"172,-341r-50,0r-51,79r40,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262},"\u00c2":{"d":"207,-263r-62,-75r-32,0r-61,75r41,0r36,-33r36,33r42,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262},"\u00c3":{"d":"77,-266v15,-48,89,43,110,-37v1,-5,3,-11,6,-18r-34,0v-4,6,-5,16,-13,18v-28,-13,-75,-32,-91,7v-3,7,-6,16,-11,30r33,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262},"\u00c4":{"d":"172,-270r0,-46r-46,0r0,46r46,0xm110,-270r0,-46r-46,0r0,46r46,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262,"k":{"\u00fc":11,"\u00fb":10,"\u00fa":12,"\u00f9":12,"\u00f6":13,"\u00f5":12,"\u00f4":11,"\u00f3":13,"\u00f2":13,"\u00ef":-18,"\u00ee":-18,"\u00ed":-17,"\u00ec":-17,"\u00eb":13,"\u00ea":11,"\u00e9":13,"\u00e8":13,"\u00dc":24,"\u00d6":42,"\u00d1":13,"\u00c9":12,"\u00c7":36,"\u00c5":-20,"\u00c4":-18,"z":-9,"y":39,"x":-11,"w":27,"v":37,"s":-16,"i":8,"d":15,"Z":-10,"Y":34,"X":-16,"W":31,"V":33,"U":17,"T":28,"S":-11,"Q":34,"P":-21,"O":33,"L":-21,"I":-13,"H":-20,"G":34,"F":-21,"C":36,"A":-27,"9":15,"7":46,"6":15,"5":15,"4":27,"3":19,"1":27,"0":11}},"\u00c5":{"d":"125,-260v24,0,45,-20,45,-44v0,-25,-20,-45,-45,-45v-24,0,-44,21,-44,45v0,23,20,44,44,44xm125,-315v6,0,11,5,11,11v0,15,-22,13,-21,0v-1,-6,5,-11,10,-11xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262,"k":{"\u00fc":11,"\u00fb":10,"\u00fa":12,"\u00f9":12,"\u00f6":13,"\u00f5":12,"\u00f4":11,"\u00f3":13,"\u00f2":13,"\u00ef":-18,"\u00ee":-18,"\u00ed":-17,"\u00ec":-17,"\u00eb":13,"\u00ea":11,"\u00e9":13,"\u00e8":13,"\u00dc":22,"\u00d6":40,"\u00d1":11,"\u00c9":11,"\u00c7":36,"\u00c5":-21,"\u00c4":-20,"z":-9,"y":39,"x":-11,"w":27,"v":37,"s":-16,"i":8,"d":15,"Z":-10,"Y":34,"X":-16,"W":31,"V":33,"U":17,"T":28,"S":-11,"Q":34,"P":-21,"O":33,"L":-21,"I":-14,"H":-20,"G":34,"F":-21,"C":36,"A":-27,"9":15,"7":46,"6":15,"5":15,"4":27,"3":19,"1":27,"0":11}},"\u00c6":{"d":"333,12r0,-84r-40,0r0,44r-105,0r0,-77r102,0r0,-40r-102,0r0,-72r145,0r0,-39r-264,0r0,39r32,0r-124,229r87,0r0,-40r-20,0r43,-78r58,0r0,78r-41,0r0,40r229,0xm145,-145r-37,0r37,-67r0,67","w":374},"\u00c7":{"d":"92,88v60,10,105,-33,71,-74v60,-9,91,-44,110,-99r-37,-21v-16,48,-36,79,-91,80v-54,1,-91,-42,-91,-96v0,-54,36,-98,89,-97v42,2,75,21,81,64r37,0r0,-79v-12,1,-29,-2,-39,1v-82,-63,-211,-7,-211,111v0,74,43,122,103,135r-5,27v8,2,22,-2,25,5v-6,13,-25,8,-42,8r0,35","w":299,"k":{"\u00fc":13,"\u00fb":12,"\u00fa":13,"\u00f9":13,"\u00f6":13,"\u00f5":12,"\u00f4":12,"\u00f3":13,"\u00f2":13,"\u00f1":10,"\u00ed":13,"\u00ec":13,"\u00eb":13,"\u00ea":12,"\u00e9":13,"\u00e8":13,"\u00e7":16,"\u00e5":24,"\u00e4":26,"\u00e3":24,"\u00e2":24,"\u00e1":25,"\u00e0":25,"\u00dc":24,"\u00d6":18,"\u00d1":28,"\u00c9":28,"\u00c7":26,"\u00c5":32,"\u00c4":32,"z":35,"y":15,"x":19,"w":12,"v":12,"u":13,"s":19,"r":16,"q":21,"p":9,"o":13,"n":11,"m":12,"l":24,"k":26,"j":13,"i":13,"h":26,"g":18,"f":12,"e":13,"d":14,"c":13,"b":27,"a":27,"Z":40,"Y":33,"X":43,"W":28,"V":30,"U":23,"T":15,"S":12,"R":27,"Q":21,"P":28,"O":18,"N":27,"M":29,"L":28,"K":27,"J":30,"I":31,"H":27,"G":18,"F":27,"E":27,"D":27,"C":22,"B":28,"A":32,"9":26,"8":10,"7":31,"6":18,"5":38,"4":13,"3":39,"2":40,"1":57,"0":13}},"\u00c8":{"d":"157,-262r-52,-79r-50,0r61,79r41,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241},"\u00c9":{"d":"162,-344r-50,0r-51,79r41,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241,"k":{"\u00fc":42,"\u00fb":39,"\u00fa":41,"\u00f9":41,"\u00f6":43,"\u00f5":41,"\u00f4":41,"\u00f3":43,"\u00f2":42,"\u00f1":35,"\u00ed":12,"\u00ec":12,"\u00eb":43,"\u00ea":41,"\u00e9":42,"\u00e8":42,"\u00e7":43,"\u00e5":35,"\u00e4":36,"\u00e3":35,"\u00e2":34,"\u00e1":35,"\u00e0":35,"\u00dc":9,"\u00d6":36,"\u00d1":13,"\u00c9":14,"\u00c7":34,"z":29,"y":77,"x":26,"w":64,"v":75,"u":42,"t":31,"s":21,"r":44,"q":43,"p":33,"o":44,"n":37,"m":39,"k":8,"j":29,"i":29,"h":8,"g":45,"f":32,"e":44,"d":45,"c":43,"b":8,"a":39,"Z":19,"X":13,"T":15,"S":18,"Q":31,"P":8,"O":31,"M":10,"L":9,"K":8,"I":14,"H":9,"G":31,"F":8,"E":9,"C":34,"B":9,"9":26,"8":23,"7":31,"6":30,"5":39,"4":73,"3":39,"2":28,"1":56,"0":22}},"\u00ca":{"d":"186,-263r-61,-75r-32,0r-61,75r41,0r36,-33r36,33r41,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241},"\u00cb":{"d":"163,-270r0,-46r-46,0r0,46r46,0xm101,-270r0,-46r-46,0r0,46r46,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241},"\u00cc":{"d":"98,-262r-51,-79r-50,0r60,79r41,0xm103,12r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r105,0","w":112},"\u00cd":{"d":"104,-341r-50,0r-51,79r42,0xm103,12r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r105,0","w":112},"\u00ce":{"d":"128,-256r-62,-75r-31,0r-62,75r42,0r35,-33v13,10,25,22,37,33r41,0xm103,12r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r105,0","w":112},"\u00cf":{"d":"105,-270r0,-46r-46,0r0,46r46,0xm42,-270r0,-46r-46,0r0,46r46,0xm103,12r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r105,0","w":112},"\u00d0":{"d":"107,12v91,4,142,-53,142,-134v0,-83,-52,-134,-141,-134r-117,0r0,39r34,-1r0,76r-33,0r0,39r33,0r0,115r82,0xm68,-217v83,-5,138,15,138,95v0,82,-54,100,-138,94r0,-75r76,0r0,-39r-76,0r0,-75","w":282},"\u00d1":{"d":"87,-266v13,-48,89,44,109,-37v2,-5,4,-11,6,-18r-34,0v-9,46,-62,-26,-92,10v-11,13,-15,23,-22,45r33,0xm263,-217r0,-39r-72,0r0,190r-123,-190r-76,0r0,39r33,0r0,229r74,0r0,-40r-34,0r0,-156r129,199r37,0r0,-232r32,0","w":282,"k":{"\u00fc":14,"\u00fb":12,"\u00fa":14,"\u00f9":14,"\u00f6":21,"\u00f5":20,"\u00f4":19,"\u00f3":22,"\u00f2":22,"\u00f1":11,"\u00ef":-17,"\u00ed":13,"\u00eb":21,"\u00ea":19,"\u00e9":22,"\u00e8":21,"\u00e7":17,"\u00e5":28,"\u00e4":28,"\u00e3":22,"\u00e2":26,"\u00e1":28,"\u00e0":28,"\u00dc":-12,"\u00d6":31,"\u00c7":27,"\u00c5":11,"\u00c4":13,"z":24,"y":10,"x":16,"w":8,"v":9,"u":9,"s":17,"r":13,"q":18,"o":17,"n":8,"m":9,"l":-18,"k":-16,"h":-16,"g":17,"f":13,"e":17,"d":22,"c":17,"b":-15,"a":26,"Y":-18,"X":-10,"W":-22,"V":-21,"U":-19,"T":-9,"R":-19,"Q":22,"P":-15,"O":22,"N":-16,"M":-14,"L":-15,"K":-16,"J":-17,"I":18,"H":-15,"G":22,"F":-16,"E":-15,"D":-17,"C":27,"B":-15,"9":17,"8":11,"6":23,"5":18,"4":19,"3":26,"2":25,"1":32,"0":15}},"\u00d2":{"d":"188,-265r-51,-79r-50,0r61,79r40,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312},"\u00d3":{"d":"194,-344r-50,0r-51,79r41,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312},"\u00d4":{"d":"218,-263r-56,-75r-37,0r-62,75r42,0r35,-33r37,33r41,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312},"\u00d5":{"d":"100,-266v13,-48,89,44,109,-37v2,-5,4,-11,6,-18r-34,0v-9,46,-62,-25,-92,10v-11,13,-14,23,-22,45r33,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312},"\u00d6":{"d":"195,-270r0,-46r-46,0r0,46r46,0xm132,-270r0,-46r-46,0r0,46r46,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312,"k":{"\u00f6":9,"\u00f5":8,"\u00f4":8,"\u00f3":10,"\u00f2":10,"\u00eb":9,"\u00e9":9,"\u00e8":9,"\u00e5":24,"\u00e4":24,"\u00e3":23,"\u00e2":23,"\u00e1":24,"\u00e0":24,"\u00dc":26,"\u00d6":19,"\u00d1":32,"\u00c9":30,"\u00c7":13,"\u00c5":40,"\u00c4":42,"z":18,"s":10,"l":18,"k":21,"h":20,"d":10,"b":21,"a":21,"Z":39,"Y":33,"X":41,"W":30,"V":31,"U":18,"T":25,"S":10,"R":22,"Q":9,"P":22,"O":9,"N":22,"M":23,"L":23,"K":22,"J":24,"I":29,"H":21,"G":9,"F":21,"E":21,"D":21,"C":13,"B":22,"A":32,"9":15,"8":9,"7":30,"6":12,"5":23,"4":12,"3":36,"2":39,"1":72}},"\u00d7":{"d":"222,-41r-74,-74r74,-74r-28,-28r-74,74r-74,-74r-28,28r74,74r-74,74r28,28r74,-74r74,74","w":266},"\u00d8":{"d":"64,-7v89,60,219,-8,212,-115v-2,-40,-11,-66,-32,-90r24,-27r-27,-24r-22,26v-90,-61,-219,7,-213,115v2,39,12,68,32,91r-23,26r26,23xm216,-180v42,60,2,154,-75,154v-19,0,-36,-4,-49,-13xm66,-64v-41,-62,-1,-155,75,-155v20,0,36,4,50,13","w":312},"\u00d9":{"d":"164,-262r-51,-79r-50,0r60,79r41,0xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258},"\u00da":{"d":"170,-341r-50,0r-51,79r40,0xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258},"\u00db":{"d":"194,-263r-62,-75r-32,0r-61,75r42,0r35,-33r37,33r41,0xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258},"\u00dc":{"d":"171,-263r0,-46r-46,0r0,46r46,0xm108,-263r0,-46r-46,0r0,46r46,0xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258,"k":{"\u00fc":13,"\u00fb":11,"\u00fa":13,"\u00f9":13,"\u00f6":19,"\u00f5":19,"\u00f4":18,"\u00f3":20,"\u00f2":20,"\u00f1":9,"\u00ef":-18,"\u00ee":-8,"\u00ed":11,"\u00eb":19,"\u00ea":18,"\u00e9":20,"\u00e8":19,"\u00e7":16,"\u00e5":27,"\u00e4":26,"\u00e3":21,"\u00e2":26,"\u00e1":28,"\u00e0":28,"\u00dc":-15,"\u00d6":27,"\u00d1":-11,"\u00c9":-12,"\u00c7":25,"\u00c5":23,"\u00c4":25,"z":30,"y":9,"x":14,"u":8,"s":16,"r":12,"q":16,"o":16,"l":-19,"k":-18,"h":-18,"g":15,"f":11,"e":15,"d":21,"c":16,"b":-17,"a":26,"Y":-19,"X":-12,"W":-23,"V":-22,"U":-20,"T":-11,"R":-20,"Q":21,"P":-17,"O":21,"N":-18,"M":-15,"L":-17,"K":-18,"J":-18,"I":14,"H":-16,"G":21,"F":-17,"E":-17,"D":-19,"C":25,"B":-16,"A":18,"9":15,"8":9,"6":22,"5":17,"4":18,"3":24,"2":23,"1":31,"0":13}},"\u00dd":{"d":"162,-333r-50,0r-51,78r41,0xm235,-217r0,-39r-103,0r0,39r22,0r-42,68r-68,-107r-62,0r0,39r36,0r70,110r0,79r-34,0r0,40r77,0r0,-119r70,-110r34,0","w":241},"\u00de":{"d":"70,-39v77,6,133,-13,133,-83v1,-67,-58,-91,-133,-84r0,-11r33,0r0,-39r-109,0r0,39r33,0r0,189r-33,0r0,40r76,0r0,-51xm70,-166v48,-1,90,-5,90,46v0,46,-45,42,-90,42r0,-88"},"\u00df":{"d":"106,10v65,18,112,-23,112,-82v0,-35,-17,-60,-40,-73v41,-46,1,-120,-67,-115v-53,4,-86,28,-86,82r0,150r-31,0r0,40r73,0r0,-194v-1,-31,16,-39,44,-40v21,0,43,9,43,32v0,27,-20,32,-48,30r0,38v43,-2,69,10,71,50v2,39,-38,62,-71,39r0,43","w":245},"\u00e0":{"d":"140,-192r-51,-79r-50,0r60,79r41,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":20,"\u00f9":19,"\u00f6":22,"\u00f5":21,"\u00f4":21,"\u00f3":22,"\u00f2":22,"\u00f1":13,"\u00ef":-9,"\u00ee":-9,"\u00ed":-8,"\u00ec":-8,"\u00eb":21,"\u00ea":20,"\u00e9":22,"\u00e8":22,"\u00e7":13,"\u00e5":13,"\u00e4":14,"\u00e3":14,"\u00e2":13,"\u00e1":15,"\u00e0":15,"\u00dc":27,"\u00d6":23,"\u00d1":14,"\u00c9":14,"\u00c7":27,"\u00c5":-17,"\u00c4":-17,"y":12,"w":10,"v":10,"u":11,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":10,"k":12,"j":16,"i":16,"h":12,"g":14,"f":12,"e":14,"d":23,"c":13,"b":13,"a":9,"Y":43,"W":48,"V":49,"U":26,"T":30,"R":13,"Q":23,"P":-12,"O":23,"N":13,"M":15,"L":-12,"K":13,"J":16,"H":-11,"G":23,"F":-12,"E":13,"D":13,"C":27,"B":14,"A":-18,"9":24,"8":14,"7":55,"6":24,"5":24,"4":21,"3":27,"1":36,"0":19}},"\u00e1":{"d":"145,-271r-50,0r-51,79r41,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":20,"\u00fb":18,"\u00fa":19,"\u00f9":19,"\u00f6":22,"\u00f5":21,"\u00f4":21,"\u00f3":22,"\u00f2":22,"\u00f1":14,"\u00ef":-9,"\u00ee":-9,"\u00ed":-8,"\u00ec":-8,"\u00eb":22,"\u00ea":21,"\u00e9":22,"\u00e8":22,"\u00e7":13,"\u00e5":13,"\u00e4":15,"\u00e3":14,"\u00e2":13,"\u00e1":15,"\u00e0":14,"\u00dc":27,"\u00d6":23,"\u00d1":14,"\u00c9":14,"\u00c7":27,"\u00c5":-17,"\u00c4":-17,"y":12,"w":10,"v":10,"u":11,"t":8,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":10,"k":12,"j":16,"i":16,"h":12,"g":14,"f":11,"e":14,"d":23,"c":13,"b":13,"a":9,"Y":32,"W":29,"V":30,"U":26,"T":30,"R":13,"Q":23,"P":-12,"O":23,"N":13,"M":15,"L":-12,"K":13,"J":16,"H":-11,"G":23,"F":-12,"E":13,"D":13,"C":27,"B":14,"A":-18,"9":24,"8":14,"7":55,"6":24,"5":24,"4":21,"3":27,"1":36,"0":19}},"\u00e2":{"d":"170,-190r-62,-75r-32,0r-61,75r41,0r36,-33r36,33r42,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":18,"\u00fb":17,"\u00fa":18,"\u00f9":18,"\u00f6":21,"\u00f5":20,"\u00f4":19,"\u00f3":21,"\u00f2":21,"\u00f1":12,"\u00ef":-10,"\u00ee":-10,"\u00ed":-10,"\u00ec":-9,"\u00eb":20,"\u00ea":19,"\u00e9":20,"\u00e8":21,"\u00e7":13,"\u00e5":12,"\u00e4":14,"\u00e3":13,"\u00e2":12,"\u00e1":13,"\u00e0":13,"\u00dc":25,"\u00d6":21,"\u00d1":12,"\u00c9":12,"\u00c7":25,"\u00c5":-19,"\u00c4":-19,"y":12,"w":10,"v":10,"u":11,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":9,"k":11,"j":15,"i":15,"h":11,"g":14,"f":10,"e":14,"d":22,"c":13,"b":12,"a":9,"Y":32,"X":-8,"W":28,"V":30,"U":25,"T":21,"R":12,"Q":21,"P":-13,"O":21,"N":12,"M":14,"L":-13,"K":12,"J":15,"I":-9,"H":-12,"G":21,"F":-13,"E":12,"D":12,"C":25,"B":13,"A":-19,"9":23,"8":12,"7":37,"6":23,"5":23,"4":19,"3":26,"1":35,"0":18}},"\u00e3":{"d":"51,-193v13,-48,89,44,109,-37v2,-5,4,-11,6,-18r-34,0v-11,48,-60,-27,-92,10v-11,13,-15,23,-22,45r33,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":19,"\u00f6":21,"\u00f5":21,"\u00f4":20,"\u00f3":21,"\u00f2":21,"\u00f1":13,"\u00ef":-9,"\u00ee":-10,"\u00ed":-9,"\u00ec":-9,"\u00eb":21,"\u00ea":20,"\u00e9":21,"\u00e8":21,"\u00e7":13,"\u00e5":13,"\u00e4":14,"\u00e3":14,"\u00e2":13,"\u00e1":14,"\u00e0":14,"\u00dc":8,"\u00d6":22,"\u00d1":11,"\u00c9":11,"\u00c7":26,"\u00c5":-19,"\u00c4":-19,"y":12,"w":10,"v":10,"u":11,"t":8,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":9,"k":10,"j":16,"i":16,"h":10,"g":14,"f":10,"e":14,"d":22,"c":13,"b":11,"a":9,"Y":9,"U":8,"T":17,"R":8,"Q":22,"P":-12,"O":22,"N":11,"M":13,"L":-12,"K":11,"J":10,"I":-8,"H":-11,"G":22,"F":-13,"E":11,"D":9,"C":26,"B":12,"A":-19,"9":23,"8":13,"7":33,"6":23,"5":24,"4":20,"3":27,"1":35,"0":19}},"\u00e4":{"d":"146,-197r0,-46r-46,0r0,46r46,0xm84,-197r0,-46r-46,0r0,46r46,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":20,"\u00fb":18,"\u00fa":19,"\u00f9":19,"\u00f6":22,"\u00f5":21,"\u00f4":21,"\u00f3":21,"\u00f2":22,"\u00f1":14,"\u00ef":-8,"\u00ee":-9,"\u00ed":-9,"\u00ec":-8,"\u00eb":22,"\u00ea":20,"\u00e9":21,"\u00e8":21,"\u00e7":13,"\u00e5":13,"\u00e4":15,"\u00e3":14,"\u00e2":13,"\u00e1":14,"\u00e0":15,"\u00dc":21,"\u00d6":22,"\u00d1":14,"\u00c9":13,"\u00c7":26,"\u00c5":-18,"\u00c4":-18,"y":12,"w":10,"v":10,"u":11,"t":9,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":10,"k":13,"j":16,"i":16,"h":12,"g":14,"f":11,"e":14,"d":22,"c":13,"b":13,"a":9,"Y":22,"W":19,"V":20,"U":21,"T":30,"R":14,"Q":22,"P":-12,"O":22,"N":14,"M":15,"L":-11,"K":14,"J":16,"H":-10,"G":22,"F":-12,"E":13,"D":13,"C":26,"B":14,"A":-18,"9":24,"8":13,"7":47,"6":24,"5":25,"4":20,"3":27,"2":8,"1":36,"0":19}},"\u00e5":{"d":"92,-194v24,0,44,-20,44,-44v0,-24,-20,-45,-44,-45v-25,0,-44,20,-44,45v0,24,20,44,44,44xm92,-249v15,0,13,21,0,21v-6,1,-12,-5,-11,-10v-1,-6,6,-11,11,-11xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203,"k":{"\u00fc":18,"\u00fb":17,"\u00fa":18,"\u00f9":18,"\u00f6":21,"\u00f5":20,"\u00f4":19,"\u00f3":21,"\u00f2":21,"\u00f1":12,"\u00ef":-10,"\u00ee":-11,"\u00ed":-10,"\u00ec":-10,"\u00eb":20,"\u00ea":19,"\u00e9":21,"\u00e8":21,"\u00e7":13,"\u00e5":12,"\u00e4":14,"\u00e3":13,"\u00e2":12,"\u00e1":13,"\u00e0":13,"\u00dc":27,"\u00d6":23,"\u00d1":14,"\u00c9":13,"\u00c7":26,"\u00c5":-18,"\u00c4":-18,"y":12,"w":10,"v":10,"u":11,"s":-8,"r":13,"q":14,"o":15,"m":8,"l":9,"k":11,"j":15,"i":15,"h":10,"g":14,"f":10,"e":14,"d":22,"c":13,"b":12,"a":9,"Y":28,"X":-8,"W":25,"V":26,"U":25,"T":28,"R":12,"Q":22,"P":-13,"O":22,"N":12,"M":13,"L":-13,"K":12,"J":15,"I":-9,"H":-12,"G":22,"F":-13,"E":12,"D":12,"C":26,"B":13,"A":-19,"9":23,"8":12,"7":53,"6":23,"5":23,"4":19,"3":26,"1":35,"0":18}},"\u00e6":{"d":"261,-36v-34,26,-97,11,-99,-33r149,0v8,-98,-93,-152,-159,-90v-20,-33,-92,-36,-123,-8r22,30v17,-16,68,-23,70,10r0,23v-48,-22,-115,3,-113,56v1,35,28,62,67,62v33,0,54,-14,71,-30v27,39,96,38,137,14xm164,-109v7,-35,59,-53,86,-25v7,7,11,15,14,25r-100,0xm50,-46v-1,-34,49,-34,71,-19v9,43,-66,58,-71,19","w":345},"\u00e7":{"d":"47,88v60,10,103,-31,73,-73v36,-10,53,-32,68,-67r-36,-16v-12,27,-20,45,-53,45v-34,0,-54,-25,-54,-62v-1,-35,20,-62,52,-62v28,0,45,17,43,53r38,0r0,-81r-38,0v-66,-36,-137,20,-137,90v0,48,27,86,67,98r-6,27v8,2,22,-2,25,5v-6,13,-25,8,-42,8r0,35","w":203,"k":{"\u00e7":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00dc":19,"\u00d6":10,"\u00d1":21,"\u00c9":20,"\u00c7":20,"z":20,"q":14,"l":17,"k":19,"h":19,"g":12,"b":20,"a":10,"Z":15,"Y":59,"X":17,"W":36,"V":42,"U":19,"T":34,"R":21,"Q":14,"P":10,"O":10,"N":21,"M":22,"L":10,"K":21,"J":23,"I":14,"H":11,"G":10,"F":10,"E":20,"D":20,"C":14,"B":21,"9":18,"7":67,"6":14,"5":28,"4":23,"3":48,"2":19,"1":58}},"\u00e8":{"d":"147,-192r-51,-78r-50,0r61,78r40,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0","k":{"\u00fc":26,"\u00fb":25,"\u00fa":26,"\u00f9":26,"\u00f6":12,"\u00f5":11,"\u00f4":11,"\u00f3":12,"\u00f2":12,"\u00f1":23,"\u00ef":26,"\u00ee":25,"\u00ed":26,"\u00ec":26,"\u00eb":12,"\u00ea":10,"\u00e9":12,"\u00e8":12,"\u00e5":26,"\u00e4":27,"\u00e3":27,"\u00e2":26,"\u00e1":27,"\u00e0":27,"\u00dc":23,"\u00d6":15,"\u00d1":27,"\u00c9":27,"\u00c7":19,"\u00c5":23,"\u00c4":23,"z":41,"y":21,"x":26,"w":19,"v":19,"u":20,"t":17,"s":17,"r":23,"p":17,"n":18,"m":20,"l":23,"k":25,"j":25,"i":27,"h":25,"f":24,"d":13,"b":25,"a":23,"Z":39,"Y":63,"X":33,"W":49,"V":58,"U":22,"T":40,"S":10,"R":26,"Q":15,"P":27,"O":15,"N":26,"M":28,"L":27,"K":26,"J":28,"I":30,"H":26,"G":15,"F":26,"E":26,"D":26,"C":19,"B":27,"A":22,"9":30,"8":9,"7":71,"6":17,"5":32,"4":14,"3":68,"2":43,"1":76,"0":11}},"\u00e9":{"d":"153,-271r-50,0r-51,79r41,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0","k":{"\u00fc":27,"\u00fb":25,"\u00fa":26,"\u00f9":26,"\u00f6":12,"\u00f5":11,"\u00f4":11,"\u00f3":12,"\u00f2":12,"\u00f1":23,"\u00ef":26,"\u00ee":25,"\u00ed":26,"\u00ec":26,"\u00eb":12,"\u00ea":10,"\u00e9":12,"\u00e8":12,"\u00e5":26,"\u00e4":28,"\u00e3":27,"\u00e2":26,"\u00e1":27,"\u00e0":27,"\u00dc":23,"\u00d6":15,"\u00d1":27,"\u00c9":27,"\u00c7":19,"\u00c5":23,"\u00c4":23,"z":41,"y":21,"x":26,"w":19,"v":19,"u":20,"t":18,"s":17,"r":23,"p":17,"n":18,"m":20,"l":23,"k":25,"j":25,"i":27,"h":25,"f":24,"d":13,"b":26,"a":23,"Z":39,"Y":45,"X":33,"W":41,"V":42,"U":22,"T":40,"S":10,"R":26,"Q":15,"P":27,"O":15,"N":26,"M":28,"L":28,"K":26,"J":29,"I":30,"H":26,"G":15,"F":26,"E":26,"D":26,"C":19,"B":27,"A":22,"9":30,"8":9,"7":69,"6":17,"5":32,"4":14,"3":68,"2":43,"1":76,"0":11}},"\u00ea":{"d":"179,-189r-62,-75r-32,0r-61,75r41,0r36,-33r36,33r42,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0","k":{"\u00fc":25,"\u00fb":24,"\u00fa":25,"\u00f9":25,"\u00f6":11,"\u00f5":10,"\u00f4":10,"\u00f3":11,"\u00f2":11,"\u00f1":22,"\u00ef":24,"\u00ee":16,"\u00ed":24,"\u00ec":25,"\u00eb":10,"\u00ea":9,"\u00e9":10,"\u00e8":10,"\u00e5":25,"\u00e4":27,"\u00e3":26,"\u00e2":25,"\u00e1":26,"\u00e0":26,"\u00dc":21,"\u00d6":14,"\u00d1":25,"\u00c9":25,"\u00c7":18,"\u00c5":21,"\u00c4":21,"z":41,"y":21,"x":26,"w":19,"v":19,"u":20,"t":17,"s":17,"r":23,"p":17,"n":18,"m":20,"l":22,"k":24,"j":24,"i":26,"h":24,"f":23,"d":12,"b":24,"a":23,"Z":38,"Y":44,"X":32,"W":40,"V":41,"U":21,"T":33,"S":9,"R":25,"Q":14,"P":26,"O":14,"N":25,"M":27,"L":26,"K":25,"J":27,"I":28,"H":24,"G":14,"F":25,"E":25,"D":25,"C":18,"B":26,"A":21,"9":29,"7":49,"6":15,"5":31,"4":13,"3":57,"2":42,"1":75,"0":9}},"\u00eb":{"d":"154,-197r0,-46r-46,0r0,46r46,0xm91,-197r0,-46r-46,0r0,46r46,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0","k":{"\u00fc":27,"\u00fb":25,"\u00fa":26,"\u00f9":27,"\u00f6":13,"\u00f5":12,"\u00f4":11,"\u00f3":12,"\u00f2":12,"\u00f1":24,"\u00ef":26,"\u00ee":26,"\u00ed":26,"\u00ec":27,"\u00eb":12,"\u00ea":10,"\u00e9":12,"\u00e8":12,"\u00e5":26,"\u00e4":28,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":28,"\u00dc":23,"\u00d6":15,"\u00d1":27,"\u00c9":27,"\u00c7":19,"\u00c5":22,"\u00c4":22,"z":41,"y":21,"x":26,"w":19,"v":19,"u":20,"t":19,"s":17,"r":23,"p":17,"n":18,"m":20,"l":24,"k":26,"j":26,"i":27,"h":26,"f":24,"d":13,"b":26,"a":23,"Z":40,"Y":35,"X":35,"W":31,"V":32,"U":23,"T":41,"S":10,"R":27,"Q":15,"P":28,"O":15,"N":27,"M":28,"L":28,"K":27,"J":30,"I":30,"H":26,"G":15,"F":27,"E":27,"D":27,"C":19,"B":27,"A":22,"9":31,"8":9,"7":59,"6":17,"5":33,"4":14,"3":69,"2":44,"1":77,"0":11}},"\u00ec":{"d":"93,-189r-51,-78r-50,0r60,78r41,0xm98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,115r-30,0r0,40r101,0","w":100,"k":{"\u00fc":12,"\u00fb":10,"\u00fa":12,"\u00f9":12,"\u00f6":18,"\u00f5":17,"\u00f4":17,"\u00f3":18,"\u00f2":18,"\u00f1":9,"\u00ef":-12,"\u00ee":-14,"\u00ed":-12,"\u00ec":-12,"\u00eb":18,"\u00ea":17,"\u00e9":18,"\u00e8":18,"\u00e7":12,"\u00e5":10,"\u00e4":11,"\u00e3":10,"\u00e2":10,"\u00e1":11,"\u00e0":11,"\u00dc":10,"\u00d6":19,"\u00d1":10,"\u00c9":10,"\u00c7":23,"\u00c5":-21,"\u00c4":-21,"s":-9,"r":10,"q":12,"o":13,"k":9,"j":11,"i":12,"h":8,"g":13,"f":8,"e":13,"d":20,"c":12,"b":9,"a":8,"Y":10,"X":-10,"U":9,"R":9,"Q":19,"P":-15,"O":19,"N":9,"M":11,"L":-15,"K":10,"J":12,"I":-11,"H":-14,"G":19,"F":-16,"E":9,"D":9,"C":23,"B":10,"A":-22,"9":15,"8":10,"7":19,"6":20,"5":21,"4":18,"3":23,"1":32,"0":12}},"\u00ed":{"d":"99,-267r-50,0r-52,78r41,0xm98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,115r-30,0r0,40r101,0","w":100,"k":{"\u00fc":12,"\u00fb":10,"\u00fa":12,"\u00f9":12,"\u00f6":18,"\u00f5":18,"\u00f4":17,"\u00f3":18,"\u00f2":18,"\u00f1":9,"\u00ef":-12,"\u00ee":-13,"\u00ed":-12,"\u00ec":-12,"\u00eb":18,"\u00ea":17,"\u00e9":18,"\u00e8":18,"\u00e7":12,"\u00e5":9,"\u00e4":12,"\u00e3":11,"\u00e2":10,"\u00e1":11,"\u00e0":11,"\u00dc":-8,"\u00d6":19,"\u00c7":23,"\u00c5":-21,"\u00c4":-21,"s":-9,"r":10,"q":12,"o":13,"l":-8,"j":10,"i":12,"g":13,"e":13,"d":20,"c":12,"a":8,"Y":-8,"X":-10,"W":-12,"V":-11,"U":-9,"R":-9,"Q":19,"P":-15,"O":19,"L":-15,"I":-11,"H":-14,"G":19,"F":-15,"C":23,"A":-22,"9":20,"8":10,"7":17,"6":20,"5":21,"4":18,"3":23,"1":32,"0":16}},"\u00ee":{"d":"123,-190r-62,-75r-32,0r-61,75r41,0r36,-33r36,33r42,0xm98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,115r-30,0r0,40r101,0","w":100,"k":{"\u00fc":11,"\u00fb":9,"\u00fa":10,"\u00f9":10,"\u00f6":17,"\u00f5":11,"\u00f4":9,"\u00f3":17,"\u00f2":17,"\u00f1":8,"\u00ef":-18,"\u00ee":-36,"\u00ed":-14,"\u00ec":-13,"\u00eb":17,"\u00ea":9,"\u00e9":17,"\u00e8":17,"\u00e7":12,"\u00e5":9,"\u00e4":10,"\u00e3":9,"\u00e1":10,"\u00e0":10,"\u00dc":-9,"\u00c5":-22,"\u00c4":-22,"s":-9,"r":10,"q":12,"o":13,"l":-8,"j":10,"i":11,"g":13,"e":13,"d":19,"c":12,"a":8,"Y":-8,"X":-11,"W":-12,"V":-11,"U":-9,"T":-19,"S":-15,"R":-9,"P":-16,"L":-16,"I":-12,"H":-15,"F":-17,"A":-22,"8":-12,"4":17,"1":31,"0":-10}},"\u00ef":{"d":"99,-197r0,-46r-46,0r0,46r46,0xm37,-197r0,-46r-46,0r0,46r46,0xm98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,115r-30,0r0,40r101,0","w":100,"k":{"\u00fc":12,"\u00fb":10,"\u00fa":11,"\u00f9":12,"\u00f6":18,"\u00f5":16,"\u00f4":17,"\u00f3":18,"\u00f2":18,"\u00f1":9,"\u00ef":-18,"\u00ee":-18,"\u00ed":-12,"\u00ec":-12,"\u00eb":18,"\u00ea":17,"\u00e9":18,"\u00e8":18,"\u00e7":12,"\u00e5":10,"\u00e4":12,"\u00e3":10,"\u00e2":10,"\u00e1":11,"\u00e0":11,"\u00dc":-19,"\u00d6":18,"\u00d1":-17,"\u00c9":-16,"\u00c7":22,"\u00c5":-22,"\u00c4":-22,"s":-9,"r":10,"q":12,"o":13,"l":-18,"k":-17,"h":-17,"g":13,"e":13,"d":19,"c":12,"b":-16,"a":8,"Y":-18,"X":-10,"W":-22,"V":-21,"U":-19,"T":-9,"R":-19,"Q":18,"P":-16,"O":18,"N":-17,"M":-14,"L":-15,"K":-16,"J":-17,"I":-11,"H":-15,"G":18,"F":-16,"E":-16,"D":-18,"C":22,"B":-15,"A":-22,"6":12,"5":16,"4":17,"3":17,"1":32}},"\u00f0":{"d":"103,17v110,0,120,-176,49,-232r48,-23r-35,-25r-44,21v-13,-8,-26,-13,-41,-20r-46,23r41,19r-44,21r29,21v-31,14,-55,53,-55,94v0,56,42,101,98,101xm126,-183v-11,-3,-23,-3,-36,-3r22,-10xm102,-147v30,0,54,27,54,58v0,36,-22,66,-55,66v-32,0,-54,-26,-54,-61v1,-37,19,-62,55,-63","w":225},"\u00f1":{"d":"136,-248v-11,47,-61,-26,-92,10v-12,13,-14,23,-22,45r33,0v13,-48,89,44,109,-37v2,-5,4,-11,6,-18r-34,0xm115,-147v12,0,18,5,18,19r0,140r69,0r0,-40r-27,0v-2,-69,18,-158,-57,-158v-22,0,-39,7,-54,16r0,-12r-73,0r0,39r31,0r0,155r70,0r0,-40r-28,0r0,-95v12,-11,30,-24,51,-24","w":212,"k":{"\u00fc":14,"\u00fb":13,"\u00fa":14,"\u00f9":14,"\u00f6":18,"\u00f5":17,"\u00f4":17,"\u00f3":18,"\u00f2":18,"\u00f1":11,"\u00ef":-11,"\u00ee":-12,"\u00ed":-11,"\u00ec":-11,"\u00eb":17,"\u00ea":16,"\u00e9":17,"\u00e8":17,"\u00e7":10,"\u00e5":10,"\u00e4":12,"\u00e3":12,"\u00e2":11,"\u00e1":12,"\u00e0":12,"\u00dc":10,"\u00d6":18,"\u00d1":10,"\u00c9":10,"\u00c7":22,"\u00c5":-21,"\u00c4":-21,"s":-12,"r":10,"q":10,"o":10,"k":10,"j":13,"i":14,"h":9,"g":9,"f":8,"e":9,"d":19,"c":10,"b":10,"Y":12,"X":-9,"W":8,"V":9,"U":10,"T":21,"R":11,"Q":18,"P":-14,"O":18,"N":10,"M":12,"L":-14,"K":11,"J":13,"I":-10,"H":-13,"G":18,"F":-15,"E":10,"D":10,"C":22,"B":11,"A":-21,"9":21,"8":10,"7":37,"6":21,"5":22,"4":17,"3":24,"1":33,"0":15}},"\u00f2":{"d":"147,-192r-51,-79r-50,0r61,79r40,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62","k":{"\u00fc":22,"\u00fb":21,"\u00fa":22,"\u00f9":22,"\u00f1":19,"\u00ef":21,"\u00ee":21,"\u00ed":22,"\u00ec":22,"\u00e5":15,"\u00e4":17,"\u00e3":16,"\u00e2":15,"\u00e1":17,"\u00e0":17,"\u00dc":19,"\u00d6":10,"\u00d1":23,"\u00c9":22,"\u00c7":14,"\u00c5":14,"\u00c4":14,"z":25,"y":14,"x":19,"w":12,"v":12,"u":13,"t":12,"r":17,"p":10,"n":12,"m":13,"l":18,"k":21,"j":21,"i":23,"h":20,"f":20,"d":9,"b":21,"a":11,"Z":25,"Y":57,"X":24,"W":44,"V":53,"U":18,"T":35,"R":22,"Q":10,"P":19,"O":10,"N":22,"M":23,"L":19,"K":22,"J":24,"I":23,"H":20,"G":10,"F":19,"E":21,"D":21,"C":14,"B":22,"A":13,"9":25,"7":66,"6":12,"5":27,"3":53,"2":28,"1":67}},"\u00f3":{"d":"153,-271r-50,0r-51,79r41,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62","k":{"\u00fc":22,"\u00fb":21,"\u00fa":22,"\u00f9":22,"\u00f1":19,"\u00ef":21,"\u00ee":21,"\u00ed":22,"\u00ec":22,"\u00e5":15,"\u00e4":17,"\u00e3":16,"\u00e2":15,"\u00e1":17,"\u00e0":17,"\u00dc":19,"\u00d6":10,"\u00d1":23,"\u00c9":22,"\u00c7":14,"\u00c5":14,"\u00c4":14,"z":25,"y":14,"x":19,"w":12,"v":12,"u":13,"t":13,"r":17,"p":10,"n":12,"m":13,"l":18,"k":21,"j":21,"i":22,"h":20,"f":20,"d":9,"b":21,"a":11,"Z":25,"Y":39,"X":24,"W":35,"V":36,"U":18,"T":36,"R":22,"Q":10,"P":19,"O":10,"N":22,"M":23,"L":19,"K":22,"J":24,"I":23,"H":20,"G":10,"F":19,"E":21,"D":21,"C":14,"B":22,"A":13,"9":25,"7":63,"6":12,"5":27,"3":53,"2":28,"1":67}},"\u00f4":{"d":"177,-190r-62,-75r-31,0r-62,75r42,0r35,-33r37,33r41,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62","k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":21,"\u00f1":18,"\u00ef":20,"\u00ee":10,"\u00ed":20,"\u00ec":20,"\u00e5":14,"\u00e4":16,"\u00e3":15,"\u00e2":14,"\u00e1":15,"\u00e0":15,"\u00dc":17,"\u00d6":8,"\u00d1":21,"\u00c9":20,"\u00c7":12,"\u00c5":12,"\u00c4":12,"z":25,"y":14,"x":19,"w":12,"v":12,"u":13,"t":12,"r":17,"p":10,"n":12,"m":13,"l":17,"k":19,"j":20,"i":21,"h":19,"f":18,"b":20,"a":11,"Z":24,"Y":38,"X":23,"W":35,"V":36,"U":17,"T":27,"R":21,"Q":8,"P":18,"O":8,"N":21,"M":22,"L":18,"K":21,"J":23,"I":22,"H":19,"G":8,"F":18,"E":20,"D":20,"C":12,"B":21,"A":12,"9":23,"7":43,"6":11,"5":26,"3":51,"2":27,"1":66}},"\u00f5":{"d":"140,-248v-11,47,-61,-26,-92,10v-12,13,-14,23,-22,45r33,0v13,-48,89,44,109,-37v2,-5,4,-11,6,-18r-34,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62","k":{"\u00fc":22,"\u00fb":20,"\u00fa":21,"\u00f9":22,"\u00f1":19,"\u00ef":15,"\u00ee":20,"\u00ed":21,"\u00ec":21,"\u00e5":15,"\u00e4":17,"\u00e3":16,"\u00e2":15,"\u00e1":16,"\u00e0":17,"\u00dc":14,"\u00d6":9,"\u00d1":17,"\u00c9":17,"\u00c7":13,"\u00c5":12,"\u00c4":12,"z":25,"y":14,"x":19,"w":12,"v":12,"u":13,"t":13,"r":17,"p":10,"n":12,"m":13,"l":15,"k":17,"j":21,"i":22,"h":17,"f":19,"d":8,"b":17,"a":11,"Z":25,"Y":15,"X":23,"W":11,"V":12,"U":14,"T":23,"R":14,"Q":9,"P":18,"O":9,"N":17,"M":19,"L":18,"K":17,"J":16,"I":23,"H":18,"G":9,"F":17,"E":17,"D":15,"C":13,"B":18,"A":12,"9":24,"7":40,"6":11,"5":27,"3":52,"2":28,"1":65}},"\u00f6":{"d":"154,-197r0,-46r-46,0r0,46r46,0xm91,-197r0,-46r-46,0r0,46r46,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62","k":{"\u00fc":22,"\u00fb":21,"\u00fa":22,"\u00f9":22,"\u00f6":8,"\u00f1":19,"\u00ef":22,"\u00ee":21,"\u00ed":22,"\u00ec":22,"\u00e5":15,"\u00e4":17,"\u00e3":17,"\u00e2":16,"\u00e1":17,"\u00e0":17,"\u00dc":18,"\u00d6":9,"\u00d1":22,"\u00c9":22,"\u00c7":13,"\u00c5":13,"\u00c4":13,"z":25,"y":14,"x":19,"w":12,"v":12,"u":13,"t":24,"r":17,"p":10,"n":12,"m":13,"l":19,"k":21,"j":21,"i":23,"h":21,"f":19,"d":8,"b":22,"a":11,"Z":26,"Y":28,"X":25,"W":24,"V":26,"U":18,"T":36,"R":22,"Q":9,"P":19,"O":9,"N":22,"M":23,"L":20,"K":22,"J":25,"I":23,"H":21,"G":9,"F":19,"E":22,"D":22,"C":13,"B":23,"A":13,"9":25,"7":53,"6":12,"5":27,"3":53,"2":28,"1":67}},"\u00f7":{"d":"144,-166r0,-46r-44,0r0,46r44,0xm226,-96r0,-39r-212,0r0,39r212,0xm144,-9r0,-46r-44,0r0,46r44,0","w":266},"\u00f8":{"d":"48,2v64,43,148,-11,148,-87v0,-23,-6,-44,-19,-62r26,-30r-27,-24r-24,29v-65,-41,-149,12,-149,87v0,24,7,44,19,62r-25,30r27,23xm51,-55v-22,-49,18,-112,74,-86xm149,-114v21,50,-20,112,-74,85"},"\u00f9":{"d":"145,-189r-51,-78r-50,0r61,78r40,0xm23,-143v3,68,-19,157,55,157v20,0,40,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216,"k":{"A":-18}},"\u00fa":{"d":"151,-267r-50,0r-51,78r41,0xm23,-143v3,68,-19,157,55,157v20,0,40,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216,"k":{"\u00fc":16,"\u00fb":14,"\u00fa":16,"\u00f9":16,"\u00f6":22,"\u00f5":21,"\u00f4":21,"\u00f3":22,"\u00f2":22,"\u00f1":13,"\u00ef":-8,"\u00ee":-9,"\u00ed":-8,"\u00ec":-8,"\u00eb":22,"\u00ea":21,"\u00e9":22,"\u00e8":22,"\u00e7":13,"\u00e5":13,"\u00e4":15,"\u00e3":14,"\u00e2":14,"\u00e1":15,"\u00e0":15,"\u00dc":27,"\u00d6":24,"\u00d1":14,"\u00c9":14,"\u00c7":28,"\u00c5":-17,"\u00c4":-17,"s":-8,"r":11,"q":13,"o":14,"l":10,"k":12,"j":15,"i":16,"h":12,"g":15,"f":12,"e":14,"d":24,"c":13,"b":13,"a":9,"Y":38,"W":34,"V":35,"U":27,"T":18,"R":13,"Q":24,"P":-12,"O":24,"N":14,"M":15,"L":-12,"K":13,"J":16,"H":-10,"G":24,"F":-12,"E":13,"D":13,"C":28,"B":14,"A":-18,"9":24,"8":14,"7":56,"6":24,"5":25,"4":22,"3":27,"2":8,"1":36,"0":20}},"\u00fb":{"d":"174,-193r-62,-75r-32,0r-61,75r41,0r36,-33r36,33r42,0xm23,-143v3,68,-19,157,55,157v20,0,40,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216},"\u00fc":{"d":"152,-197r0,-46r-46,0r0,46r46,0xm90,-197r0,-46r-46,0r0,46r46,0xm23,-143v3,68,-19,157,55,157v20,0,40,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216},"\u00fd":{"d":"156,-260r-50,0r-51,79r41,0xm202,-143r0,-39r-94,0r0,39r22,0r-31,84r-50,-123r-60,0r0,39r32,0r57,139r-33,92r41,0r87,-231r29,0","w":212},"\u00fe":{"d":"60,-1v63,46,150,-4,150,-85v0,-82,-90,-128,-150,-81r0,-89r-72,0r0,39r31,0r0,266r-31,0r0,39r72,0r0,-89xm114,-147v34,0,56,27,56,62v-1,37,-21,62,-55,62v-34,0,-55,-25,-55,-63v0,-35,21,-61,54,-61","w":237},"\u00ff":{"d":"150,-197r0,-46r-46,0r0,46r46,0xm87,-197r0,-46r-46,0r0,46r46,0xm202,-143r0,-39r-94,0r0,39r22,0r-31,84r-50,-123r-60,0r0,39r32,0r57,139r-33,92r41,0r87,-231r29,0","w":212},"\ue000":{"d":"226,-96r0,-39r-212,0r0,39r212,0","w":266},"\ue001":{"d":"220,-60r0,-27r-97,0r22,-56r75,0r0,-27r-64,0r16,-44r-28,0r-17,44r-107,0r0,27r97,0r-22,56r-75,0r0,27r65,0r-17,44r28,0r17,-44r107,0","w":240},"\ue002":{"d":"197,-39v28,2,57,-26,57,-56v0,-30,-29,-57,-57,-56v-34,2,-43,14,-68,35v-26,-21,-34,-33,-69,-35v-28,-1,-57,26,-57,56v0,30,29,58,57,56v32,-2,43,-14,69,-36v25,23,37,34,68,36xm150,-95v14,-24,71,-41,74,0v2,37,-51,28,-64,9v-3,-3,-7,-6,-10,-9xm33,-95v0,-32,49,-31,64,-9v3,2,7,6,10,9v-14,21,-74,45,-74,0","w":256},"\ue003":{"d":"220,-33r0,-31r-157,-66r157,-65r0,-31r-200,85r0,23xm220,6r0,-24r-200,0r0,24r200,0","w":240},"\ue004":{"d":"220,-118r0,-23r-200,-85r0,31r157,65r-157,66r0,31xm220,6r0,-24r-200,0r0,24r200,0","w":240},"\ue005":{"d":"77,13v74,-1,91,-86,95,-154v6,-91,-73,-167,-158,-119r22,27v13,-7,24,-13,42,-13v51,1,59,62,53,115v-49,-46,-127,-1,-127,68v0,43,35,76,73,76xm46,-53v-5,-51,48,-97,80,-53v-11,52,-10,88,-53,97v-21,0,-25,-23,-27,-44","w":177},"\ue006":{"d":"240,46v4,-39,9,-57,17,-94r-19,0v-11,24,-11,41,-45,41r-121,0r101,-116r-94,-123r83,0v38,-2,43,14,51,41r17,0r-2,-69r-184,0r-50,-3r129,169r-131,150","w":256},"\ue007":{"d":"208,31v-1,21,-11,23,-35,23r0,20r122,0r0,-20v-22,0,-35,-1,-35,-23r0,-226v0,-23,10,-30,34,-30r0,-19r-290,0r0,19v24,0,34,7,34,30r0,226v1,22,-12,23,-35,23r0,20r122,0r0,-20v-24,0,-34,-2,-35,-23r0,-244r118,0r0,244","w":296},"\ue008":{"d":"114,-139v-5,56,-22,143,34,151v32,-3,49,-33,49,-72r-20,0v1,18,-6,29,-20,26v-24,-15,-9,-94,-9,-105r46,0r0,-42r-140,0v-37,1,-48,33,-58,65r17,0v8,-15,15,-25,38,-23v-6,43,-4,92,-33,113v-16,27,27,55,42,29v21,-36,16,-95,25,-142r29,0","w":197},"\ue009":{"d":"73,-237v19,9,43,-3,43,-24v0,-33,-49,-41,-64,-17v-36,58,-12,236,-19,322v-17,-14,-44,0,-44,22v0,33,50,45,66,18v42,-69,24,-220,18,-321","w":109},"\ue00a":{"d":"139,-225v72,-5,85,116,37,151v-6,4,-13,8,-22,11r-8,75r130,0r0,-82r-25,0v-4,23,-7,23,-36,22v31,-16,54,-55,54,-96v0,-70,-62,-115,-130,-115v-70,0,-131,45,-131,115v0,43,23,80,54,96v-9,0,-23,1,-29,-1r-6,-21r-26,0r0,82r130,0r-8,-76v-36,-10,-50,-35,-50,-81v0,-48,20,-77,66,-80","w":306},"\ue00b":{"d":"199,-282r-36,-5r-42,263r-59,-123r-74,36r16,33r35,-17r98,203","w":219},"\ue00c":{"d":"37,-125v30,-62,116,35,162,-26v4,-6,11,-13,17,-25r-36,-12v-29,58,-114,-34,-159,23v-5,5,-12,14,-21,25xm37,-42v30,-63,116,36,162,-26v4,-6,11,-14,17,-25r-36,-12v-29,58,-114,-34,-159,23v-5,5,-12,14,-21,25","w":266},"\ue00d":{"d":"236,12r-118,-288r-134,288r252,0xm157,-29r-113,0r60,-129","w":244},"\ue00e":{"d":"181,-136r-76,-144r-36,0r-75,144r75,148r36,0xm133,-136r-46,91r-46,-91r46,-88","w":197},"\ue00f":{"d":"203,-173r0,-83r-177,0r0,176r-23,0r0,39r23,0r0,13r-32,0r0,40r75,0r0,-53r22,0r0,-39r-22,0r0,-26r90,-1r0,-38r-90,0r0,-72r95,0r0,44r39,0","w":212},"\ue010":{"d":"73,-325v7,69,108,87,129,19v2,-6,4,-12,7,-19r-38,0v-9,14,-12,25,-30,25v-17,0,-22,-11,-30,-25r-38,0xm6,-122v0,144,215,188,262,61v6,-16,9,-36,9,-61r-145,0r0,40r99,0v-11,34,-40,57,-86,56v-55,-1,-95,-36,-95,-96v0,-56,37,-98,91,-97v44,1,77,25,85,66r37,0r0,-85r-39,0r0,7v-21,-16,-52,-29,-84,-29v-76,-1,-134,61,-134,138","w":316},"\ue011":{"d":"31,-252v7,68,108,89,129,19v3,-5,5,-12,7,-19r-38,0v-7,32,-52,31,-59,0r-39,0xm47,82v69,27,150,-5,150,-78r0,-147r31,0r0,-39r-73,0r0,17v-58,-53,-152,3,-152,81v0,78,92,127,152,79v8,58,-51,65,-98,49xm99,-147v31,0,56,29,56,62v0,34,-24,60,-56,60v-33,0,-54,-26,-54,-60v0,-33,22,-62,54,-62","w":237},"\ue012":{"d":"72,-266r0,-46r-44,0r0,46r44,0xm103,12r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r105,0","w":112},"\ue013":{"d":"86,-219v38,-3,54,13,51,52r42,0v1,-62,-32,-89,-92,-93v-82,-5,-113,110,-35,140v34,13,96,11,96,54v0,23,-21,41,-47,40v-36,0,-64,-26,-57,-69r-40,0r0,107r40,0r0,-15v9,7,23,13,36,16r-5,27v8,2,22,-2,25,5v-5,12,-25,8,-42,8r0,35v43,3,83,-7,83,-46v0,-13,-6,-23,-14,-30v55,-7,86,-87,42,-130v-24,-23,-84,-28,-112,-48v-25,-18,-3,-57,29,-53","w":216},"\ue014":{"d":"112,13v54,-7,65,-99,9,-112v-18,-11,-66,-4,-70,-29v1,-12,11,-20,26,-20v27,2,34,14,36,43r38,0r0,-72r-37,0v-58,-37,-142,37,-84,92v20,19,69,13,88,32v6,21,-13,33,-33,32v-31,-1,-44,-14,-43,-50r-40,0r0,83r40,0r0,-6v6,4,13,7,22,9r-5,25v8,2,21,-1,25,5v-6,12,-25,8,-43,8r0,35v44,2,84,-8,84,-46v0,-12,-5,-21,-13,-29","w":178},"\ue015":{"d":"198,-348r-50,0r-51,79r41,0xm11,-122v0,133,171,182,238,86v8,-12,17,-28,24,-49r-37,-21v-16,48,-36,79,-91,80v-54,1,-91,-42,-91,-96v0,-54,36,-98,89,-97v42,2,75,21,81,64r37,0r0,-79v-12,1,-29,-2,-39,1v-82,-63,-211,-7,-211,111","w":299},"\ue016":{"d":"149,-275r-50,0r-51,79r41,0xm3,-85v0,90,116,139,167,66v6,-8,12,-19,18,-33r-36,-16v-12,27,-20,45,-53,45v-34,0,-54,-25,-54,-62v-1,-35,20,-62,52,-62v28,0,45,17,43,53r38,0r0,-77r-33,0v-60,-43,-142,13,-142,86","w":203},"\ue017":{"d":"222,-342r-41,0r-37,33r-35,-33r-42,0r62,75r31,0xm11,-122v0,133,171,182,238,86v8,-12,17,-28,24,-49r-37,-21v-16,48,-36,79,-91,80v-54,1,-91,-42,-91,-96v0,-54,36,-98,89,-97v42,2,75,21,81,64r37,0r0,-79v-12,1,-29,-2,-39,1v-82,-63,-211,-7,-211,111","w":299},"\ue018":{"d":"174,-269r-42,0r-36,33r-36,-33r-41,0r61,75r32,0xm3,-85v0,90,116,139,167,66v6,-8,12,-19,18,-33r-36,-16v-12,27,-20,45,-53,45v-34,0,-54,-25,-54,-62v-1,-35,20,-62,52,-62v28,0,45,17,43,53r38,0r0,-77r-33,0v-60,-43,-142,13,-142,86","w":203},"\ue019":{"d":"1,-85v0,76,89,128,151,81r0,16r72,0r0,-40r-31,0r0,-152r21,0r0,-38r-21,0r0,-38r-41,0r0,38r-52,0r0,32v-58,-3,-99,44,-99,101xm152,-167v-7,-5,-14,-9,-22,-13r22,0r0,13xm96,-148v32,0,56,29,56,62v1,33,-22,62,-55,62v-30,0,-55,-28,-55,-61v0,-33,24,-63,54,-63","w":237},"\ue01a":{"d":"73,-48v26,21,70,18,95,0r24,25r28,-28r-25,-24v20,-27,19,-70,0,-95r25,-24r-28,-28r-24,24v-23,-19,-73,-18,-95,0r-24,-24r-28,28r24,23v-18,25,-18,72,0,96r-24,24r28,28xm120,-172v28,0,50,23,50,49v0,27,-23,50,-50,50v-26,0,-49,-22,-49,-50v0,-26,23,-49,49,-49","w":266},"\ue01b":{"d":"188,-278r0,-33r-139,0r0,33r139,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262},"\ue01c":{"d":"161,-204r0,-34r-138,0r0,34r138,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203},"\ue01d":{"d":"50,-325v7,58,90,91,122,33v5,-10,10,-21,14,-33r-38,0v-7,32,-52,31,-59,0r-39,0xm256,12r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r104,0xm146,-121r-55,0r27,-80","w":262},"\ue01e":{"d":"24,-252v7,69,109,87,129,19v2,-5,4,-12,7,-19r-38,0v-8,15,-12,25,-30,25v-18,0,-22,-11,-30,-25r-38,0xm7,-48v0,57,74,79,114,47r0,13r71,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203},"\ue01f":{"d":"180,12v-22,48,46,80,81,51r0,-39v-13,2,-37,20,-45,2v-1,-4,5,-12,6,-14r34,0r0,-40r-33,0r-67,-189r26,0r0,-39r-89,0r-79,228r-34,0r0,40r74,0v-3,-41,15,-62,23,-93r82,0r19,53r-26,0r0,40r28,0xm146,-121r-55,0r27,-80","w":262},"\ue020":{"d":"126,12v-22,48,46,80,81,51r0,-39v-13,2,-37,20,-45,2v-1,-4,5,-12,6,-14r24,0r0,-40r-29,0r0,-99v3,-66,-87,-69,-133,-43r13,32v20,-10,77,-26,78,11r0,23v-50,-22,-114,3,-114,56v0,57,74,79,114,47v1,5,-3,15,5,13xm49,-46v-1,-34,50,-34,72,-19v10,43,-67,58,-72,19","w":203},"\ue021":{"d":"193,-339r-41,0r-36,33r-36,-33r-41,0r61,75r31,0xm107,12v91,4,142,-53,142,-134v0,-83,-52,-134,-141,-134r-117,0r0,39r34,0r0,229r82,0xm68,-217v83,-5,138,15,138,95v0,82,-54,100,-138,94r0,-189","w":282},"\ue022":{"d":"1,-85v0,76,89,128,151,81r0,16r72,0r0,-40r-31,0r0,-125v55,3,46,-52,46,-103r-43,0r0,57r9,0v-2,10,1,10,-12,9r0,-66r-41,0r0,89v-61,-48,-151,3,-151,82xm96,-148v32,0,56,29,56,62v1,33,-22,62,-55,62v-30,0,-55,-28,-55,-61v0,-33,24,-63,54,-63","w":269},"\ue023":{"d":"107,12v91,4,142,-53,142,-134v0,-83,-52,-134,-141,-134r-117,0r0,39r34,-1r0,76r-33,0r0,39r33,0r0,115r82,0xm68,-217v83,-5,138,15,138,95v0,82,-54,100,-138,94r0,-75r76,0r0,-39r-76,0r0,-75","w":282},"\ue024":{"d":"178,-278r0,-33r-138,0r0,33r138,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241},"\ue025":{"d":"169,-204r0,-34r-139,0r0,34r139,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0"},"\ue026":{"d":"132,-270r0,-46r-46,0r0,46r46,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241},"\ue027":{"d":"123,-197r0,-46r-46,0r0,46r46,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0"},"\ue028":{"d":"183,32v-19,9,-33,-10,-18,-20r48,0r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r97,0v-22,46,43,81,81,51r0,-39","w":241},"\ue029":{"d":"155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,47,30,86,68,97v-19,48,44,80,82,51r0,-39v-13,2,-37,20,-45,2v4,-21,41,-15,58,-26xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0"},"\ue02a":{"d":"186,-339r-41,0r-36,33r-36,-33r-41,0r61,75r32,0xm213,12r0,-40r-145,0r0,-77r102,0r0,-40r-102,0r0,-72r105,0r0,43r39,0r0,-82r-218,0r0,39r31,0r0,229r188,0","w":241},"\ue02b":{"d":"177,-269r-41,0r-37,33r-35,-33r-42,0r62,75r31,0xm155,-37v-25,13,-71,24,-93,-2v-8,-10,-14,-19,-16,-30r153,0v-1,-70,-34,-116,-98,-117v-56,-2,-98,45,-98,101v0,84,89,126,163,85xm48,-109v8,-35,61,-53,89,-25v7,7,12,16,15,25r-104,0"},"\ue02c":{"d":"103,88v61,11,106,-35,70,-75v63,-13,106,-54,104,-135r-145,0r0,40r99,0v-11,34,-40,57,-86,56v-55,-1,-95,-36,-95,-96v0,-56,37,-98,91,-97v44,1,77,25,85,66r37,0r0,-85r-39,0r0,7v-21,-16,-52,-29,-84,-29v-76,-1,-134,61,-134,138v0,73,52,129,119,136r-5,26v8,2,22,-2,25,5v-5,12,-24,8,-42,8r0,35","w":316},"\ue02d":{"d":"153,-267r-50,0r-51,78r41,0xm47,82v69,27,150,-5,150,-78r0,-147r31,0r0,-39r-73,0r0,17v-58,-53,-152,3,-152,81v0,78,92,127,152,79v8,58,-51,65,-98,49xm99,-147v31,0,56,29,56,62v0,34,-24,60,-56,60v-33,0,-54,-26,-54,-60v0,-33,22,-62,54,-62","w":237},"\ue02e":{"d":"120,-278r0,-33r-139,0r0,33r139,0xm103,12r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r105,0","w":112},"\ue02f":{"d":"114,-204r0,-34r-138,0r0,34r138,0xm98,12r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,115r-30,0r0,40r101,0","w":100},"\ue030":{"d":"72,-262r0,-46r-44,0r0,46r44,0xm83,32v-20,10,-33,-10,-19,-20r39,0r0,-40r-31,0r0,-228r-43,0r0,228r-31,0r0,40r23,0v-21,47,43,81,82,51r0,-39","w":112},"\ue031":{"d":"43,-208v14,0,26,-12,26,-26v0,-13,-13,-26,-26,-26v-13,0,-26,12,-26,26v0,14,12,26,26,26xm14,29v0,40,55,58,85,34r0,-39v-13,2,-37,20,-45,2v-1,-4,5,-12,6,-14r38,0r0,-40r-29,0r0,-154r-72,0r0,39r30,0r0,140v-6,9,-13,19,-13,32","w":100},"\ue032":{"d":"9,84v54,8,105,-27,73,-72r21,0r0,-40r-34,0r0,-74r101,114r58,0r0,-40r-33,0r-93,-102r87,-87r33,0r0,-39r-49,0r-104,103r0,-64r33,0r0,-39r-109,0r0,39r33,0r0,229r5,0r-5,24v9,1,22,-2,25,5v-6,12,-25,7,-42,7r0,36","w":232},"\ue033":{"d":"50,39v3,16,-24,10,-41,11r0,35v56,9,106,-29,72,-73r17,0r0,-40r-32,0r0,-35r85,75r53,0r0,-40r-33,0r-74,-61r78,-54r26,0r0,-39v-53,-7,-71,24,-103,45r-32,21r0,-140r-73,0r0,39r31,0r1,229r6,0r-5,25v13,0,17,1,24,2","w":208},"\ue034":{"d":"130,-341r-50,0r-52,79r41,0xm191,12r0,-103r-43,0r0,63r-77,0r0,-228r-77,0r0,39r33,0r0,189r-33,0r0,40r197,0","w":203},"\ue035":{"d":"115,-340r-50,0r-51,79r41,0xm95,12r0,-40r-31,0r0,-228r-73,0r0,39r31,0r0,229r73,0","w":95},"\ue036":{"d":"92,39v3,16,-24,10,-41,11r0,35v43,2,84,-7,83,-46v0,-12,-4,-21,-11,-27r68,0r0,-103r-43,0r0,63r-77,0r0,-228r-77,0r0,39r33,0r0,189r-33,0r0,40r79,0r-5,25","w":203},"\ue037":{"d":"5,85v59,10,104,-32,72,-73r18,0r0,-40r-31,0r0,-228r-73,0r0,39r31,0r0,229r5,0r-5,25v8,2,22,-2,25,5v-5,12,-25,7,-42,7r0,36","w":95},"\ue038":{"d":"117,-153v55,2,47,-52,47,-103r-43,0r0,57r8,0v0,11,-1,16,-12,16r0,30xm191,12r0,-103r-43,0r0,63r-77,0r0,-228r-77,0r0,39r33,0r0,189r-33,0r0,40r197,0","w":203},"\ue039":{"d":"65,-153v55,2,47,-52,47,-103r-44,0r0,57r9,0v-2,9,-1,20,-12,20r0,26xm95,12r0,-40r-31,0r0,-228r-73,0r0,39r31,0r0,229r73,0","w":127},"\ue03a":{"d":"141,-107r0,-46r-46,0r0,46r46,0xm191,12r0,-103r-43,0r0,63r-77,0r0,-228r-77,0r0,39r33,0r0,189r-33,0r0,40r197,0","w":203},"\ue03b":{"d":"114,-107r0,-46r-46,0r0,46r46,0xm95,12r0,-40r-31,0r0,-228r-73,0r0,39r31,0r0,229r73,0","w":127},"\ue03c":{"d":"181,-333r-50,0r-51,78r41,0xm263,-217r0,-39r-72,0r0,190r-123,-190r-76,0r0,39r33,0r0,229r74,0r0,-40r-34,0r0,-156r129,199r37,0r0,-232r32,0","w":282},"\ue03d":{"d":"149,-267r-50,0r-51,78r41,0xm115,-147v12,0,18,5,18,19r0,140r69,0r0,-40r-27,0v-2,-69,18,-158,-57,-158v-22,0,-39,7,-54,16r0,-12r-73,0r0,39r31,0r0,155r70,0r0,-40r-28,0r0,-95v12,-11,30,-24,51,-24","w":212},"\ue03e":{"d":"9,84v59,10,105,-31,73,-72r17,0r0,-40r-34,0r0,-156r129,199r37,0r0,-232r32,0r0,-39r-72,0r0,190r-123,-190r-76,0r0,39r33,0r0,229r7,0r-5,24v26,-4,30,15,8,14r-26,-1r0,35","w":282},"\ue03f":{"d":"115,-147v12,0,18,5,18,19r0,140r69,0r0,-40r-27,0v-2,-69,18,-158,-57,-158v-22,0,-39,7,-54,16r0,-12r-73,0r0,39r31,0r0,155r8,0r-4,24v8,1,21,-3,24,4v-5,13,-25,8,-42,8r0,35v43,2,83,-6,83,-45v0,-11,-3,-21,-9,-26r10,0r0,-40r-28,0r0,-95v12,-11,30,-24,51,-24","w":212},"\ue040":{"d":"205,-332r-41,0r-37,34r-35,-34r-42,0r62,76r31,0xm263,-217r0,-39r-72,0r0,190r-123,-190r-76,0r0,39r33,0r0,229r74,0r0,-40r-34,0r0,-156r129,199r37,0r0,-232r32,0","w":282},"\ue041":{"d":"173,-266r-41,0r-37,33r-35,-33r-42,0r62,76r31,0xm115,-147v12,0,18,5,18,19r0,140r69,0r0,-40r-27,0v-2,-69,18,-158,-57,-158v-22,0,-39,7,-54,16r0,-12r-73,0r0,39r31,0r0,155r70,0r0,-40r-28,0r0,-95v12,-11,30,-24,51,-24","w":212},"\ue042":{"d":"210,-278r0,-33r-139,0r0,33r139,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312},"\ue043":{"d":"169,-204r0,-34r-139,0r0,34r139,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62"},"\ue044":{"d":"242,-344r-50,0r-51,79r40,0xm189,-344r-49,0r-51,79r40,0xm141,15v76,0,135,-60,135,-137v0,-78,-58,-138,-135,-138v-77,0,-135,61,-135,138v0,76,58,137,135,137xm141,-219v54,0,92,43,92,97v0,54,-38,96,-92,96v-52,0,-91,-42,-91,-96v0,-55,38,-97,91,-97","w":312},"\ue045":{"d":"203,-268r-50,0r-51,79r41,0xm148,-267r-47,-1r-54,76r41,0xm100,17v55,0,96,-48,96,-102v0,-54,-41,-101,-96,-101v-55,0,-97,47,-97,101v0,54,42,102,97,102xm100,-147v33,0,54,28,54,62v0,34,-21,62,-54,62v-33,0,-55,-29,-55,-62v0,-33,22,-62,55,-62"},"\ue046":{"d":"153,-341r-50,0r-51,79r41,0xm199,-186v0,-40,-33,-70,-78,-70r-131,0r0,39r36,0r0,229r43,0r0,-123r35,0r55,123r64,0r0,-40r-35,0r-40,-88v30,-10,51,-32,51,-70xm69,-217v39,0,87,-6,87,33v0,41,-47,34,-87,34r0,-67","w":228},"\ue047":{"d":"135,-268r-50,0r-51,79r41,0xm71,-93v-2,-47,31,-54,78,-52r0,-41v-28,-2,-61,1,-78,15r0,-11r-75,0r0,39r33,0r0,155r76,0r0,-40r-34,0r0,-65","w":158},"\ue048":{"d":"89,39v0,-17,-9,-29,-20,-35r0,-115r35,0r55,123r64,0r0,-40r-35,0r-40,-88v30,-10,51,-32,51,-70v0,-40,-33,-70,-78,-70r-131,0r0,39r36,0r0,229r2,0r-5,24v15,1,20,-1,25,5v-6,13,-24,8,-43,8r0,35v44,3,83,-8,84,-45xm69,-217v39,0,87,-6,87,33v0,41,-47,34,-87,34r0,-67","w":228},"\ue049":{"d":"71,-93v-2,-47,31,-54,78,-52r0,-41v-28,-2,-61,1,-78,15r0,-11r-75,0r0,39r33,0r0,155r3,0r-5,24v9,1,22,-3,25,4v-6,13,-25,8,-42,8r0,35v54,9,104,-26,74,-71r21,0r0,-40r-34,0r0,-65","w":158},"\ue04a":{"d":"177,-339r-41,0r-37,33r-35,-33r-42,0r62,75r31,0xm199,-186v0,-40,-33,-70,-78,-70r-131,0r0,39r36,0r0,229r43,0r0,-123r35,0r55,123r64,0r0,-40r-35,0r-40,-88v30,-10,51,-32,51,-70xm69,-217v39,0,87,-6,87,33v0,41,-47,34,-87,34r0,-67","w":228},"\ue04b":{"d":"159,-262r-41,0r-37,33r-35,-33r-42,0r62,75r31,0xm71,-93v-2,-47,31,-54,78,-52r0,-41v-28,-2,-61,1,-78,15r0,-11r-75,0r0,39r33,0r0,155r76,0r0,-40r-34,0r0,-65","w":158},"\ue04c":{"d":"152,-344r-50,0r-51,79r40,0xm86,-219v38,-3,54,13,51,52r42,0v1,-62,-32,-89,-92,-93v-82,-5,-113,110,-35,140v34,13,96,11,96,54v0,23,-21,41,-47,40v-36,0,-64,-26,-57,-69r-40,0r0,107r40,0r0,-15v52,41,147,8,147,-61v0,-76,-88,-73,-134,-102v-26,-16,-3,-57,29,-53","w":216},"\ue04d":{"d":"134,-271r-50,0r-51,79r41,0xm42,6v59,39,156,-26,102,-92v-18,-21,-68,-17,-91,-34v-7,-15,6,-29,24,-28v27,2,34,14,36,43r38,0r0,-72r-37,0v-58,-37,-142,37,-84,92v20,19,69,13,88,32v6,21,-13,33,-33,32v-31,-1,-44,-14,-43,-50r-40,0r0,83r40,0r0,-6","w":178},"\ue04e":{"d":"104,38v-5,13,-24,7,-42,8r0,35v43,2,84,-7,83,-46v0,-16,-8,-29,-20,-34r0,-218r47,0r0,32r40,0r0,-71r-217,0r0,100r39,0r0,-61r48,0r0,189r-34,0r0,40r36,0r-4,21v14,1,21,-2,24,5","w":228},"\ue04f":{"d":"18,88v59,11,108,-35,69,-76r10,-2r0,-35r-34,1v-3,-37,0,-80,-1,-119r35,0r0,-39r-35,0r0,-39r-42,1r0,38r-30,0r0,39r30,0v6,53,-18,133,21,154r-6,29v8,2,22,-2,25,5v-6,13,-25,8,-42,8r0,35","w":104},"\ue050":{"d":"177,-339r-41,0r-37,33r-35,-33r-42,0r62,75r31,0xm212,-185r0,-71r-217,0r0,100r39,0r0,-61r48,0r0,189r-34,0r0,40r77,0r0,-229r47,0r0,32r40,0","w":228},"\ue051":{"d":"101,-153v55,2,47,-52,47,-103r-44,0r0,57r9,0v-2,9,-1,20,-12,20r0,26xm97,10r0,-40r-34,6v-3,-37,0,-80,-1,-119r35,0r0,-39r-35,0r0,-39r-42,1r0,38r-30,0r0,39r30,0r2,132v6,29,44,29,75,21","w":144},"\ue052":{"d":"186,-278r0,-33r-139,0r0,33r139,0xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258},"\ue053":{"d":"167,-204r0,-34r-139,0r0,34r139,0xm23,-143v3,68,-19,157,55,157v20,0,40,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216},"\ue054":{"d":"127,-249v25,0,45,-20,45,-44v0,-25,-20,-45,-45,-45v-25,0,-44,21,-44,45v0,23,19,44,44,44xm127,-304v6,0,11,4,11,11v0,6,-5,10,-11,10v-6,1,-10,-6,-10,-10v0,-6,4,-11,10,-11xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258},"\ue055":{"d":"98,-176v24,0,44,-20,44,-44v0,-24,-20,-45,-44,-45v-26,0,-45,20,-45,45v0,23,20,44,45,44xm98,-231v6,0,10,5,10,11v0,15,-21,12,-21,0v0,-6,5,-11,11,-11xm23,-143v3,68,-19,157,55,157v20,0,40,-7,54,-16r0,14r72,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0","w":216},"\ue056":{"d":"218,-341r-51,0r-50,79r40,0xm162,-341r-50,0r-48,79r41,0xm116,15v60,0,94,-29,95,-88r0,-144r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v1,59,36,87,95,88","w":258},"\ue057":{"d":"169,24v-12,4,-38,19,-45,2v0,-19,26,-10,36,-18v73,-20,46,-137,51,-225r32,0r0,-39r-75,0r0,186v0,34,-19,44,-52,44v-33,0,-52,-12,-52,-45r0,-146r31,0r0,-39r-105,0r0,39r31,0r0,144v0,49,26,77,66,85v-19,48,44,80,82,51r0,-39","w":258},"\ue058":{"d":"136,12v-22,48,46,80,82,51r0,-39v-13,3,-31,16,-44,6v-3,-6,2,-16,5,-18r25,0r0,-40r-30,0r0,-154r-42,0r0,132v-10,11,-31,25,-51,24v-11,0,-16,-6,-16,-17r0,-139r-72,0r0,39r30,0v3,68,-19,157,55,157v20,0,40,-7,54,-16v1,5,-3,15,4,14","w":216},"\ue059":{"d":"153,-341r-50,0r-51,79r41,0xm199,12r0,-87r-40,0r0,47r-103,0r139,-197r0,-31r-189,0r0,39r131,0r-139,197r0,32r201,0"},"\ue05a":{"d":"140,-267r-50,0r-51,78r40,0xm168,-150r0,-32r-155,0r0,39r98,0r-106,122r0,33r163,0r0,-86r-38,0r0,46r-68,0","w":191},"\ue05b":{"d":"123,-270r0,-46r-46,0r0,46r46,0xm199,12r0,-87r-40,0r0,47r-103,0r139,-197r0,-31r-189,0r0,39r131,0r-139,197r0,32r201,0"},"\ue05c":{"d":"109,-197r0,-46r-46,0r0,46r46,0xm168,-150r0,-32r-155,0r0,39r98,0r-106,122r0,33r163,0r0,-86r-38,0r0,46r-68,0","w":191},"\u00a0":{"w":100}}});PK*A\x~~js/activeMenuPlugin.jsnuW+A/* * Active Menu jQuery Plugin 1.0.0 * * Copyright (c) 2009 Chad Ort * * * * * */ /* Usage $(ULITEM).activeMenu(OPTIONS); ULITEM: the item which want the functionality of auto activation tab e.g. #mainMen, .mainMenu etc OPTIONS: In case of no options defaul options will b used Example options $(ULITEM).activeMenu({ idSwitch: 'someId', defaultSite: 'mysite.com', defaultIndex: 0 }); in case of mysite.com url first tab will b activated */ (function($){ $.fn.activeMenu = function(options){ var defaults = { idSwitch: 'active', defaultSite: null, defaultIndex: 0 }, intialize = function(id){ var op = $.extend({},defaults,options); var loc = location.href; var activeCount = 0; $(id).find('a').each(function(){ var href = $(this).attr('href'); if(loc.search(href) != -1){ $(this).attr('id', op.idSwitch); activeCount++; } else{ $(this).attr('id', ''); } if(activeCount == 0){ if(loc.search(op.defaultSite) != -1){ $(id).find('a').eq(0).attr('id', op.idSwitch); } } }); } return this.each(function(){ intialize(this); }); } })(jQuery);PK*A\HZ}}templateDetails.xmlnuW+APK*A\F˩classes/ArtxContent.phpnuW+APK*A\ep p classes/ArtxContentListItem.phpnuW+APK*A\q-ll"bclasses/ArtxContentArticleBase.phpnuW+APK*A\) -classes/.htaccessnuW+APK*A\Gʿoo-classes/ArtxContentItem.phpnuW+APK*A\R$QQ&6classes/ArtxContentFeaturedArticle.phpnuW+APK*A\2&A;classes/ArtxContentArchivedArticle.phpnuW+APK*A\޸RR$Aclasses/ArtxContentSingleArticle.phpnuW+APK*A\f&|  &0Uclasses/ArtxContentCategoryArticle.phpnuW+APK*A\>&&Yclasses/ArtxPage.phpnuW+APK*A\) f.htaccessnuW+APK*A\EY classes.phpnuW+APK*A\Bimages/post.pngnuW+APK*A\t`քimages/sheet_b.pngnuW+APK*A\<images/printButton.pngnuW+APK*A\Fimages/vmenuitem.pngnuW+APK*A\images/button.pngnuW+APK*A\tM++ images/spacer.gifnuW+APK*A\~ximages/vsubitemicon.pngnuW+APK*A\FFaimages/post_t.pngnuW+APK*A\` images/vmenublockheader.pngnuW+APK*A\N\Φimages/pdf_button.pngnuW+APK*A\o5ll"images/postquote.pngnuW+APK*A\zҫimages/footer.pngnuW+APK*A\G images/wine/jquery_logo.pngnuW+APK*A\~!ii߹images/wine/glass.pngnuW+APK*A\%%images/wine/quotes2.pngnuW+APK*A\xl}images/wine/type.pngnuW+APK*A\8images/wine/check.pngnuW+APK*A\3KJimages/wine/footer.gifnuW+APK*A\t}images/wine/bubbles.pngnuW+APK*A\U6((!images/wine/quotes.pngnuW+APK*A\0"788images/wine/menu.gifnuW+APK*A\s)) images/wine/button.pngnuW+APK*A\)Iimages/wine/.htaccessnuW+APK*A\7P*P* images/wine/drop.pngnuW+APK*A\,,>images/wine/dots.gifnuW+APK*A\ږ5ll?images/wine/bars.pngnuW+APK*A\/lUUimages/wine/sep.gifnuW+APK*A\$r8Yimages/wine/pagebg.pngnuW+APK*A\#Z images/demo/face.jpgnuW+APK*A\wLimages/demo/jquery.pngnuW+APK*A\p/ICaCaimages/demo/photos.jpgnuW+APK*A\a̋>bimages/demo/colors.pngnuW+APK*A\);images/demo/.htaccessnuW+APK*A\]Xkk;images/demo/quik.jpgnuW+APK*A\f݌3``images/demo/ps.pngnuW+APK*A\%images/system/emailButton.pngnuW+APK*A\< images/system/printButton.pngnuW+APK*A\) images/system/.htaccessnuW+APK*A\ETNN" images/system/edit_unpublished.pngnuW+APK*A\ETNNyimages/system/edit.pngnuW+APK*A\YG  images/blockheader.pngnuW+APK*A\Bb3images/sheet.pngnuW+APK*A\%images/emailButton.pngnuW+APK*A\ETNNimages/edit.pngnuW+APK*A\vimages/formal/bubbles.pngnuW+APK*A\/lUU&images/formal/sep.gifnuW+APK*A\,,<)images/formal/dots.gifnuW+APK*A\))images/formal/.htaccessnuW+APK*A\Mt*images/formal/bars.pngnuW+APK*A\0"788timages/formal/menu.gifnuW+APK*A\cԼimages/formal/drop.pngnuW+APK*A\cjœ%%images/formal/quotes2.pngnuW+APK*A\.2vvbimages/formal/jquery_logo.pngnuW+APK*A\3K%images/formal/footer.gifnuW+APK*A\$ ((images/formal/quotes.pngnuW+APK*A\v?'?'dimages/formal/button.pngnuW+APK*A\q"Qimages/formal/check.pngnuW+APK*A\;6FFimages/formal/pagebg.pngnuW+APK*A\>6HH&images/formal/type.pngnuW+APK*A\Fn.images/livemarks.pngnuW+APK*A\ϧ2images/nav.pngnuW+APK*A\ETNN6images/edit_unpublished.pngnuW+APK*A\:i97images/menuitem.pngnuW+APK*A\À==;images/postheadericon.pngnuW+APK*A\6|ZCimages/preview.jpgnuW+APK*A\)NHimages/.htaccessnuW+APK*A\MN Iimages/blockcontentbullets.pngnuW+APK*A\Q9 wparams.ininuW+APK*A\a--ȟhtml/index.htmlnuW+APK*A\M 4html/modules.phpnuW+APK*A\)ihtml/.htaccessnuW+APK*A\:j&html/mod_menu/default.phpnuW+APK*A\|WWfhtml/mod_menu/default_url.phpnuW+APK*A\) html/mod_menu/.htaccessnuW+APK*A\wtWhtml/mod_menu/index.htmlnuW+APK*A\Mkk#2html/mod_menu/default_separator.phpnuW+APK*A\Zk#html/mod_menu/default_component.phpnuW+APK*A\a--)html/com_content/index.htmlnuW+APK*A\^jj$html/com_content/archive/default.phpnuW+APK*A\)"_html/com_content/archive/.htaccessnuW+APK*A\#o,,#0html/com_content/archive/index.htmlnuW+APK*A\ZUM  *html/com_content/archive/default_items.phpnuW+APK*A\)# html/com_content/category/.htaccessnuW+APK*A\hv"html/com_content/category/blog.phpnuW+APK*A\ '`html/com_content/category/blog_item.phpnuW+APK*A\a--$vhtml/com_content/category/index.htmlnuW+APK*A\)"html/com_content/article/.htaccessnuW+APK*A\ } } $html/com_content/article/default.phpnuW+APK*A\#o,,# html/com_content/article/index.htmlnuW+APK*A\) html/com_content/.htaccessnuW+APK*A\Y^}}% html/com_content/featured/default.phpnuW+APK*A\)#html/com_content/featured/.htaccessnuW+APK*A\bg\ \ *html/com_content/featured/default_item.phpnuW+APK*A\a--$;html/com_content/featured/index.htmlnuW+APK*A\)html/mod_syndicate/.htaccessnuW+APK*A\a--html/mod_syndicate/index.htmlnuW+APK*A\E_f html/mod_syndicate/default.phpnuW+APK*A\Z ف !template_preview.pngnuW+APK*A\=)Y\g\g  functions.phpnuW+APK*A\$frrjt template_thumbnail.pngnuW+APK*A\=  component.phpnuW+APK*A\J8l l  script.jsnuW+APK*A\ɥff  jquery.jsnuW+APK*A\,"k k q index.phpnuW+APK*A\'j} joomla_images/Joomla.pngnuW+APK*A\ߤ[[ joomla_images/powered_by.gifnuW+APK*A\)K joomla_images/.htaccessnuW+APK*A\{{ joomla_images/printButton.pngnuW+APK*A\cLFFٿ joomla_images/pdf_button.pngnuW+APK*A\k joomla_images/emailButton.pngnuW+APK*A\Ðd joomla_images/livemarks.pngnuW+APK*A\kk  css/print.cssnuW+APK*A\% , css/template.cssnuW+APK*A\kyyw css/primary.cssnuW+APK*A\,pcc/ css/editor.cssnuW+APK*A\< i##Ц css/template.ie7.cssnuW+APK*A\?Қ css/template.ie6.cssnuW+APK*A\i&  css/all.cssnuW+APK*A\)  css/.htaccessnuW+APK*A\ B js/jquery-1.3.2.min.jsnuW+APK*A\) . js/.htaccessnuW+APK*A\Z  js/events.jsnuW+APK*A\Fll js/jquery.cycle.all.min.jsnuW+APK*A\ֽw@w@19js/cufon-yui.jsnuW+APK*A\ɥff yjs/jquery.jsnuW+APK*A\WmR7js/nilland_900.font.jsnuW+APK*A\x~~Mjs/activeMenuPlugin.jsnuW+APK=