AAAAfunctions.php000066600000063462151375153130007310 0ustar00 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="art-box art-post">', 'class="art-box art-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="art-box art-block' . $classes . '">', ob_get_clean()); ?>

0); $hasContent = (null !== $content && strlen(trim($content)) > 0); if (!$hasCaption && !$hasContent) return ''; ob_start(); ob_start(); ?>
', 'class="art-box art-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 != 'art-button' * artxFindTags($html, array('input' => array('class' => '!art-button'))) * Select inputs with non-empty class * artxFindTags($html, array('input' => array('class' => '!'))) * Select inputs with class != 'art-button' and non-empty class: * artxFindTags($html, array('input' => array('class' => array('!art-button', '!')))) * Select inputs with class = button but != 'art-button' * artxFindTags($html, array('input' => array('class' => array('button', '!art-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'][] = 'art-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', '!art-button')), 'button' => array('class' => array('button', '!art-button')))); return $content; } }template_thumbnail.png000066600000067664151375153130011163 0ustar00PNG  IHDR·^ pHYsodofIDATx^]=J[CJ)REPh ( EKq)RD d2.g'3xַ{$aL3l;zs̮]`_>f?}?8' q8#;۟ .8A`s~ >O]p?ǀ  !<4!'`?Cxv9f?c'pO.8؟]pc  } ؟!<Cbv8'`CxhCO.81`YauXڟ} f P^o_1,ƀO9᧧|}?9鴟ēϱg`cN)T'91 y9 Oǔ4j1p1 yI9Bs}?L ι|`gW3YzUpN<\ӳ,ƀŪq<ڟ} x H^c0 'X8Qc|}N??:4Spq='gO7>~S{u~?qnUǧ~:=ٜf>Och@pͷ wN?8SN9N>|8 ߽MWpq3N<<\xpyL.Ga:_[y7{K!<3a|ms}E`uxꁗ^{<B|`^\vĜ<,âUNxw!?_o~|,7_<^Kx9pCaY_}O>s@.TGP}wb,X |.t>lgx>lx-ޟo}0x\g['+o?O=xR<Ӹ` 'xh D HW38Zǀ|3νyeoįg_pwG/Y_K7{pɥW.ޘh?;\|Ս_~ r .N?BvEloĉ?=Ȉ䅂s]pQ?iJp2^|\[' 3nƭ?M\sm8tF̮][U7G\rŵp]:Fn\yMq3]sB_} ʹkfz8j}:Z}/9^@I̧QE&9f6mf;٘yL۔yhi\sff|ojfg}?8]plc.8v-k2a ]5]pc80sͮq.8vkCv9f8vc5!CkƱ ]pƀ]p5]K7'W31?Ã?zܾڟ} b H^sqKpvj10عscŽ;s箣uW=~c~۷$80c=+լzuהSSJ$V]3ku;qgz?<_''b;9״m&Gr Spo߁mpۖ Lv`b۶m:[{lĖm0Y`t k׀[mfg#۲u9^ºeV l:M[:ιYrm\r.#B}u>{۟8ۨ4ͺ} / QO ꃾwE;/%[)@Wv|TBmZ, ETb>3]j"%k5j1iH*DsH<86mynGUM KkcӋRbڟ!?mZc{fn7b0X"llPq*er߲u[)|fAiuj;PTр^XPP^JF4 u3H[K6T7E (jƉb?l^&.L'g ]-|LeޏJ+h9~+p,Lz/Ͷq|l~9'xnyj5&}*]ӎo,} LCY%8V9CJ(@~f~Fcךg8ጉd_>`~4LXh\uo U.h]gJ*|<Έ͛u 7h썍o:*MQÚ?эoto7P׫G.r/:ɱokV;BdJC1|ݸy=jg};#c1̨O~Qp8oۄn2D?/1V&;QV߉jϠN/:NhjFzQJj;1Fx&>qt&9jov\% A!qrVJ&El)XfP'Bhd,X‰hr۫&qkjvj Ť 4 ʨ@`BJxFm1H(@JY3kZ;aYe<qȷt>Tgs?Q&-kCS @zE?BZD 3"6Xtxl=Hp6qmkAB^-Zz[VԢzd! uh@USjZz[ڀ~ &|o^^}~Ս]-,mf2PvLXp8gQ&獴2W5t*I7Pen|`h#jۍt=)45&Cևj#xs5(c򴩭 뽃Kͧ )UعebsKZP2 PG[_؏RG)!2A96Z{7sx96+iFMG?ZԿ=-뺇P܋Q5[zF58(/! %)`<& H% :!I% %1X"堲͊ ήK$,pNº2Ib<EQE)h0+Yx!r[fLKkq+uSԫL1nk. d}.$'26!Y‰{HXHb|ٮ4dTBS44҉L%/R28GÃ}qYH*(GiC+hn"&hr1Ym׎j,"Tp JQMPlYFXEzF'PJ(Qzu+k{?nt׀¦^t oBFe3,4!h2[>y_՘@6~q/-C-UgZF {ö?vN Z[Og0tj_(vPnV;m ӗ lUDTqF <8瓙9z9b)<[{FGG(8hR RNAJBWlSiAOz"dyJ;0qTכ&JFR4I2hSIFw ]ZzP}C<?J&t-=i)3:6f9}Q=n2?Ƙ{1[#{[CSsZ_PAkV})_jӲ][{3mw*,)CBr*c !: h(h$MOQMbֶoMiE1sh4ПΑ\d*ebl#bY"d"99EH.F uLAK7#.y%,kCqUr 2D/<EmhkmGbF9OhB;ц44"65DdRH{sg#%Nl|:SPEx5yO]}#:)qȤ [D%"F&R@[jB|n]5 DoQF]n⮿}B}BكKWbdx|;F|y{Op DQFD}Mfli&n:uf[{lH̑{g-8m8Um(eڦ/oF6Cz%v71օ 匨U4Y%MEpTQ,+T!Zݢb;RވEqL j%iQj$>&&&8_5ڹh,]GJ#X 齉I(` g";8 cuݟM>t͎rXjPYUhUpvqj 1XYSkٮK~tc':eq$V"%Lq?% ;W'_4ҊMDXJppR4k& tƌ:G'՗wWhQGrKp䉏s驍OUFL7dJ Ut&1N|zoM^j;5Ww$A Α8׿gu=L>]f%8OŦM}/ig_vm>0pt`ख़͏.{3M][F( UK?r;u.b L%FQȷmx(5 vݑ-XùZ,zg8=Q͂h8 1iQ8Fһќ.e nNu s^g;Z:ZV#.YLfU2\RD!2plD&ytt [G3c0bwGnB̏^^+J,DFrr& '#UZ{k]L QF£:FS%#lUL"wѿnI5^%u-(fJZ]Fh^+?\\crQC49:\hu&Goȁ,e>" >5XY׏O3_m :Nk@n88r;QPC"JCf5Á^ցɉ%"fx$Ԣy`J_|mM&/ϵ:뢪*B+4֚gCMo_Z*;98ۄVA*A?^u(0(Y[u9 Nq5{)PXۍvd6c6R$J !Ro:m4dT=np!ƂgFb[Lt+{.&#퉵jEZe\p飋pуqs{?ƙn N)Nv={@Ÿ/B-. 5#敶7u!"ۭB#MkKc-4uKM]h5|ShWPKѶܸ<&7!EE#x 8p_W?7sq;iSn|?q75^uf;vaE\8dл1..€u]u>>fy*-2׎8vνb}bցT/3-+D״DSnc'ඪh}"k*kh] pýؑ>~Q#84Ϛi͘qiڄ[TF.F( HG8ch AJYkɵm1myӀC%[zf)%8fARCmSk!!*Z`ΗV $ }-&ۀP~Njj,ߴzcdS4ig&SKp٣ )< pџ?q.΢ wm7{ ~=kT3qî6 1 Mw_Y7R89z ``p$$$чI۝?юD+H;qs*Ą@#FDkL_ N:*M#z#~[zyZZY^Pӂ2j4:$h3l0} B3J [dc-9eV=R<|jp@18+rv^UϤ*"ChMgEJ;<96UpJ{y;6D f[:PM1lKC0$t]b.0 4u3^$뢫0Ϸ*ML&˄+@PK5N `AmBCk岫:աu`ym.硅Fxοo>MOq[O~Qp7 åx.8<gZ0sh t}z3=>QQqTf!>6P*q B<,<< ~<ܑrRDF!::F.6> FhM'S a L֑K[hK~*K/SXO8z}, )]N-B;P&6u%aYh9ʹ.3pIp]az%BQ+LA潸RH۬|U@2@\wb )DZgh*c[L~3ʚx 0hG?K6nK_ƯZ|d.yp!gVs8o>8N,pwٵ+q(1_@|B݄Ue_xn7ؾ5'C+Fʂ>ww[.Jc4h ίU81k;:6k6}X8pVݓPV tg!٣qk"B0-+@mB\jAc[2騧Q#)1VɊ͜.Oh x'xG]wC(417fS Z)Tf}f (A'#| 5"h1hn 3'AM.gpcd-تɊcdW ox#,F. (¥w W=ZG&b\"⁅nA_߃Icp) qu'\l>~^~OΔ+uj4DepiAMѴNZ;3U:bU[s&־4e&,co,R@`md9ܨ9>*ieWo샇=fj+YϒXE$mD&7" "StM!I4ByVd-c&ZHɞ i+@V"h'(!cuKx\ c5N@z#ed8'6g>¯ZaL]K^BY(UX:]pFXKC7Cэȫl1姭g, GkM[Ӊ%A%H" tk|Q WrB$!l9ÿzu^0gh-qH*i߭tOiNׄ, .ơcZ)die6 Y7<* Hӯ<ڀҐR,feAWWO.ŕ/,.4κcack3fWp! ,vBͿoAc`mDj[Ppt-Q5 ť娩!y4c-GNN>*;\X !#1hnظɯ&Zk0:81:KC巘~>9qUvGNPDHwt*@y=,/ȑΣ u0/DAmLj #qCz,#bl꠆0>b>b&?mh/$P!W5A=s[ieлSp$d!8%m4A$VedČv~m$= yT[i铭-2Qt78U\J:iQe~)8޹o_,r Sf{pӳl²϶])R(Cӝc Ylȩ.5zX~0-۶vkfEWZ <-)Z>cug%泌oca_#22&2HlAHN &.ArOf-8_PZGe?!,ZZ9g5PZwgaOXe#blj~ %%>)4&5NPNm6j JZ g2|MF!R*}+H Xiɬ#qBIQѵq,#.DC̐ XrX-"8(aHHLd$-)D f\ QH0Kz!i fl߲ ERD&ޘ@ib_.[$wWc6֢)8.NulCtdB^XI*8:Lv%@Q鴭h[2 @K b.&H#3r5=̓[3ͪV#]&6PKS7`@k"ͳQΤ-~)4OfZRK# T6̤[B5CEQt2"%i=! 6OZPlBu4W)CA-뙮~lL[1ͬ˅Q|av3Nѵrc3L8z9_~|}1Hdw7K#4yTʘ4\+<X)j Td2Wn2~K{ $벋!M܏s,dIud-8 Pi) WDz^R GydVĬi ShݍkHѭ$lH gUwSƼq-Px~Cԏ-/˟Ģgdk9}4 LN 6!쭵P۸ E.~k5ӫM귲2avnfg stBZEp Gr'@GKIp.'TCjD¨b T+R""e&*iG s+A7&=5|i[ 5d|`ji|rc*wr5Ԫh2r3H(;u3c1B[p M8]‰hXPc [ҋ? W>g5~j +qCqs:߹i,u4ϦD"\#MA,"Xܱ#>ԚcҠɧLS }6 FP/MD|7Z6||jD6>Ѓ0de!-BaQ1ɋWTV59S{r&0p23>Ğ.jk)mtzdeKKJ%sGQҀL6jX[?NNJep"}dL2uInlKVKSܕperSP2JR3&[m5& BDu=yž%ʂ343) #SmZ) 7sNk׬!!Z LiѪ2bOKg Ϊ\G'\G_gYKYs^ V$ǒWdrEdtcsJ(kI#%l3W$ܘ&F6!Qd, &_N=R*ZzTv 3Յš[mLnf0+- 08Gbb6O 8TPQa!Iy J K^@ORkhpۘx$%nk3UIR\TdZ|MA[eVVT!fcl|"# ħs9+ȍMpID Ip撰c /SU9_zId()U@@5fjr*ei1ĜY4(⾫˘3 EPf#&\i0zh||&Dez)"DM#!f1iWd$#̫\Mhbњ9S+a3n47R-W UQHQ&]<^*4M!HqgYCRF{~Bj[_M6s=2,?4S4y6rm@M>&nWK$kdGDĮiQu_8Ҙ4.kF21QaGiY%51 *%qiܧ&J63Rۂf*+D h v},7DZ"G )G/g>n[ODhr7 򰪙 ' ӶL Z*02uF1b6կ},b )S562L^ΚYFh)0%m tQ3ozQh%(͙{ `@%NDZi)I#R˔li2Vf$Pai M]0'>d>gn~en|I~zs52TUVB!Ҏv~twu _N^TxVv?ف2Rl4ӃnX*fH߀cx-s/fTBYmˢ )b63:Fi/@\LtP`m >6Վ`?!`&.VV -2/}9@+$]J Y-ĝ=ULE~JͬVVgˮC̓VEr ?/.bׂ^_㵔lՏ@/Njt#AJS A³.> 0USHDCD]˔[Iqfiː-U57[^uo_tUu[;ַjk]]X ?( ޞ~ 9G aQF 70Y O$<maΥ ֹ˃9 _[isqrBtAUg2YqD%ӌ9 ۨH!]t̵!:א@䛰u?঒i$E,j:ui"5>>~I#'hkpr9LTk\5H2ԪCYy_lx5a^K&[+}7@L))Kkh/9κBJ&0"r*,7M;? #gbB;J*H0L")x2-(0a J(B(PpV37ߜYg4]<+L-MrRl>8ÕWjO &wPlt1):_Kcc0 QS9AS3A5HE+XF1`RIyzg kը@qMt&@^=`wXcѩLpo"EtBیM :ي~IaY\qWhnVtˏ 5 |4R2e5$وeXZ]O&z Dݙ J`BMBvmQP10W"ôf²U@FaSn3IFaqE a@yT*Ҝ~pШdHakL ڞpڴ"rZvImLC(TNRb.%Pڥ9 u%NDso&h[R?@ ,?6jk@eu,vIcDQ26^DJ9c `O"B;R1D&s˥0*MYR/Ep @{mdAZp7F&Y]Q߅F $.S)80(ss/ RSN"19̡$Ql#l4RͶH('pl*gpkU4bXo@M!'}qPԽ &xJLZZWKȏD]IM)̅T1,RB:s y3l Q¨Uj;$N;c5ү0@#ӄ| SwgWGy(B.pe5S"_Obv0i$"QZDRnO_L+CQC,@ ̦16riҾqCdC#CQN>]V@ $pH`Ve)2ddMZ8;z.8I6N0,"Q_ZLr|c(zEH1lVEBq M*eɈSA-LSĨKPi\ρćfU}۠j HIxST$ЯT& A IP I&rAzjO J+1`@pwLA (?߿j0k*9xpi$bMgǘdDDDҩ ?2bX2Hʥ9 $g@6Ec|4]m &: !1#iXJ5fk C_xoL_4HaX6 ř68J $gК{ҹXgT@כ.8ˇd֘ˉ-jb'4D 0JvlJ9N[3<\kCNf3$Q{1/k"Dj2˔ɧޤZ n&ZZ!r rx:4HSA`&NSd͓䓯#po QQHY$o@@Bec+Gq\uq#Kq{xl5 2lAEq9JNlf^g.l/dT[B~^3H!gZ.[CJ| by6Eqa)V^Z<$2럕URfd7&0)XYy4QsY}i&NЂhj3l3^%|$?hVul_e2y*SֈYI`Ikji J d_Y~!P `[ [o8C͑ :~Vƿ D$ͨQb5B3B&`ڢ wʦO#pf2uniGjő  R,QGj$06; ">N!Cf6;)3xrEX♳vm8ija; ;kn&6I(h[l-+8BmhݏTTQXο)[鳈65ØgͨF|SğͤNF9ugb jr0=;R [g% s)#?W- úRr1E&fCСěiKӈ7Md.r Ƌ0Dj{^`j}hĔP!?)L!p ѻRqD8s2qHD"wjy9HeL&fgH3tNE AZz.4W";e>҂$ -hZ y4bYFke_z#;33HLv4ѬjB#ߍv "#dI3so>{k}>tc0П#,6﹤-4,ﻦ*ae1b jWNW)J<‹^xιܾ|(SH;+6!~ V0kp;m7! oxC2hm֭OCap#R 4M ;H3MI##DD'ec8:ѿc}H-Sw4.eYuipDE&V'_F0DX@`@B"ŽtAHHjhXfWh۩3ڵ BQ@F" H O0ܯJYjEA|%0s CȊ#Y R[&ZL5Q:@b˜XΌv9qyƪHt,)7eUo$%|g$ ]20+ 1?¾&3Tܦ^}EaBK>+87WgW<_GǕ~+ 7>> yj)nz9;xw< K"yh{^(1xֆt+b0|i:eux1JreIo0Y@xU2^1gqޝo?$\Ĭ`H~G#o3?>8%U*s|K[> ?r[6# :.OTxSRP-%<4 SGpf6)#/\"H3|lbqf֮^ULrs’+W7'_̺p49316Ɣ d7D'8 <8ae~1<[ĪR/%]DU3$=ʵh66`paLcٍcJp9Τqw_QQ)|;_wހ.ķN?/n.?|_?)s˸wq_gr2 ? #V̑gYKG}57N;+;b4PrwlJ?{S_^v"^Gw=qK ypnmyv5a $aD V=DSs'C)͂1XzVjidF)- ZKS-)Jv''3l|)<'96m2x)~qt uֶ==h0>uB7um4Jp9VAj|u?8п}%o.uyr!_yO:~p87sW '^yνzcpC{_qgNK9n9| 8l c%\? ^w-ǭ|񅤨]@zRXryuTB9>[Ncivߥ&!霅{?=y}q{^Gy?pԚ$gYü?$|\DO(%;w@̤b{=m&Zg{9݆e8 PO(M- njmFfjl-V]ahV :fh0 ŷpPs4gBG1cϱ: |_u%w8펧p ẗ[~}m-ξi}wu8>+x'_u?n_'')D=w2 /IcWjGBy!xnY >)d0C՞*hbm#.&D! 2TXͯ2p4r&L { D|E!-Zw[Ωx1 /3x|AQvG.[݈ ٶξ7֬u1L/3 hC$CnJig^dӴ-8YB_~q U)O{_}~|ѭe̫ű^/?V›pWg]h꽹!ÄuΤlLJ˘YTF푇OH> mDTg&LEʔ;jtNjKٚMƙH?BAbd Z\aMc|=֒Ǎ!p J,F!{=-@ьjM2ݍvVxj!7F5æ2qѩ'M<`ehI3NB16JI; ެ'lGfH&5[,f7NVvc9~'ϵ@Qֲz&dlJW"=7]pmo}=&ԒX\{8_{?88 qIDn;_ o.\y'.\-_?}%} oMC_Ɓ[\cA`پ/bY_ſWS`?V I塕5+I.X9sD++^Wg~h3? ڗIR 8n0QĩZ.|[ITOKM/ixhQ8"ݶ}i" 1&O~~p$onգ*6ot 9LAR /iGP(^~ o@AwF$@GY"!5PVkYx-dp6z3Ϭ36ߙx'"4m>ՠ`G0ϯH~ ̧9b}Jg\Q- en-6AXJPuÁ~I1DzB3J@M zO&/5S)0l7'Ɵ!HGؔ&4DA )*Iv@:6PIibZj0Wi^\\Sq'@q1e$LWNgYf4 Y*2Ĕ@kZr)6f`AZh3VOAa9o7a5-MlуYւ(chL@nDʱ0]3(\ \v>܍YITD,aT44Vt-6 &5UOim Vi)`R*.= ;&D Z!J"jGiŕI`YdD k6Ks"k?!n V]׌o6^ۓ~o9;wcgYfΰz16t 5lٿ倦0 b >0[/UQam\C&ITh~֙uqt9ZbHcTr#ҷоF mW&@wx=FKpq K_u2iȩ#[/[xzՠJ^A42ՈO e ~?ij!BxyXߣ}(|^W)g0lDbS\2\{q"("ܹm*$F-Ę955Q|MA2UUo s3[Hhw/+hog AgLbp9XZ$3O?d)IL҄oįm> N|DL0L"ĕVxAql5eGF`WpD qpp #gH7V (X_IŒ)ԫȔL%$U&mAsH( iIsH-AjUS015MMFYEX=\C&4Dzo5ǒI 頶D×Hl"‹uD>c&M6;0Ϧ \^qJsc'U;}_|&aT%RR>%ɄDƒ XGm072NK >Xт _.3+ lyNRm$&Ϥ,N9CQ,dFtieo%%gN ѓf9ȓd |Ih1+2"hFuŚIJ:hgQ$^Q)O+S}钦fd x#arga&)$?(HA7pQPAv9PMMFeTATS9jH]YH@Y#j] @ZCtL#@<R4@ԂymtYmXFw>2!%0 (NԢs:~kIڦ׶-'bѢ~.͢lGZ l|/ ھIU|z@(]Gt fV#_BՊ8lcbcgШw6r}kWiETQ6%ʿj{?}Y veV#hnOt>sgA^J!)l]vc:O*$P+ˊ>LVKp43D1%ej6IkpanYӠiQ2x[%4z d׵2gR8Zǩ56R_ ,v${K?@nK)FUgbޯPhY{'њMIҚ/,e93[:x ]P% n36V,ۢH$Z2#V+y&8ʗXYE#ʞ.لگ 52l0eq@Ű2TB-TȥfK!l$'0LC=@+)55co8d[cF=c#8u^H&hiQfK0L>ޯjIpMPR{FT&S9KkHXP{ti ?&T̎Rd)PXj@) `) m'Qu-E̤t0ry״L-5RCI[ecd:*4.зm*3+ȉFVNLr*yW$8ZC2&31#Ngc5ye GpRE2y4_64gc2 c9eVK,dqΦS/N:JH:XFTYY^Tf^9 rs8C%efdf.)'8 NvMmMUN6<5rdDؔ~B+gKC?eVTN5YlW®b pV'ø_26PQW‚h@*Tp&rEopG!GtK)! D%gT{ₖf1𠞣4XJI( &ѢhFJ 4im_MDr2,gl}tx۬*S-t? W5AcBss3閿Q(4ϐcL-M2 ͭ"[r듫r=f_RuCz5U1h'GhvRBKq8K)Ci& Sl ]+=LW3iC:uznoe#=}7HlaQ紤cW[A"B^?hfgGPJ23Nؘ$,f:ӯS J؍d*r2ݛUjCRy"q/ت~B.%@"`$FMr!j~j!HPf7P?nj-!0,de>fIp8KLC.8/8۷sF[nWIAg/T7Ua+V;4m83a!q,V']Hǟ,2GiN.CՑ ]3d,чb'[%4;pOX8Vƒ}bsd^mGNJ&og[[bs ϶2,3º~mL]tN"okثŋEμ{@dzϳ&F.?W9^%)GLގNFJܖnf{և=6`yIîa.r'w26E#ĨTI4?D3GЏVs_XBm*kd&~^I C.f@{5Aa_o79U~AhvrݤQf{i)$Zedfʩ)< ؗ_cn;yԃ.n4Opqv #9[wI2sOf>Cq7T'V],-dNϷM<"h! m?LQmFZZxuwR+wcFXq0zMZNu|C~Ҁ`I *e-j[KJȂv==r\VTFYin޿ht7R#r j&jPijfjjCq\JpK-+{+\lh)H!{[[]fWbL2[tH(@w(DύiM-dc S>We;Z|`C- hѵvNVVְF#M5-[h>1@ /A֢|mmXlaa )J}%qnuEm!X}A]K-ֵLMnm4 IF!]OmOMRY<[,I?-*_Z.-SOA3q'n>C710-YmAlSE.(k; _iH&JzZ6Y r"2b GXD4S#2jcg]ٲ"АVX Q˔X|-#Ma³"')'YmV4<ܽ ܀xSxr Iҩzjr'Q Lr#;>ɤHdf*ՖHbf?PH/-"Q?#dnptAyQ&\=Yu0*0s4ֻRK͝fhO7s_gPIehb4i׬7HFע(Ii4Txp)_ 6w/#xaE|O2DI*6L7FpYB^ զ ĭU6wr92yMM I^12dYЁĹM͈OiD;x.:5$֫g }/}Z YQHZښ&c: Q/",)F_?{f˙hi6DSl&M)j{`=63 -:))-$#}4V|eu{< ȂB/իx|-qWҢu$T>E@˪:$@Wnj>sΊ*rՖZC5֠]y‚r.,d-:kW]j((QE_6ңtniwmD SH5++'&>e/ qGn>3faW|KrUGLk+f0PZB!X'0HVJSe=S^q~/8)9y8lH"Rbp0:DJ#kZg?BIػqU-{ MZ©1Ȅ3qD.8YY?+)}:hbWv1<זsU=7 G Prj?׌$Д6o(_ΤlZi!gcvCd t8pҷf#:&3"+8E e;*-%9 Q`漛3|zFrbzNJbJ1Biz(WYFăvጶ!9XoM@PB#y9h3Yw"37?1cJʓ/iA.al@@'r×h%8ȧ^tDJ('3Kk T ' tYJU XQMq}jALV9k$P$^q@'>V9a*<I"( PLtkN,r8XYL< jYTLd( \ɜFhnԲ]x e&[[>$“0Y$ `\Z9EG֏b{ɡI@tT)ڍp+/M5cQ;Qtwq1(13̈&pZ,߶]5k7f[&x"g hĤ:?ylcL>3 Z e_N8_xkIENDB`.htaccess000066600000000177151375153130006357 0ustar00 Order allow,deny Deny from all templateDetails.xml000066600000005063151375153130010423 0ustar00 mw_business 2011-11-20 1.0.0 Joomla 1.7 Templates http://www.my-templateshop.de/joomla-template-17-16.html MW Templates - MW Business ---- http://www.my-templateshop.de/lizenzrichtlinien.html images joomla_images css html classes favicon.ico template_thumbnail.png template_preview.png classes.php jquery.js script.js component.php functions.php index.html index.php params.ini ReadMe.txt position-1 position-2 position-3 position-4 position-5 position-6 position-7 position-8 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
en-GB.tpl_mw_business.ini
ReadMe.txt000066600000006501151375153130006454 0ustar00MW-Templates - http://www.my-templateshop.de Lizenzbestimmungen: ------------------------------ Alle Templates die von MW Templates / www.my-templateshop.de zur Verfügung gestellt werden, dürfen Sie kostenlos für private und gewerbliche Zwecke nutzen, solange das Copyright mit Link sowie der Sponsored-Link nicht entfernt wird! Alle Templates von MW Templates (www.my-templateshop.de) unterstehen der creative commons by-sa Lizenz --> http://creativecommons.org/licenses/by-sa/3.0/deed.de. All Templates are for free privat and commercial use, if you don´t delete or change the copyright with link and the sponsored-link! License - CC BY 3.0 --> http://creativecommons.org/licenses/by/3.0/ ------------------------------ Logo und Bilddateien liegen im images Ordner evtl. ersetzen. Headline und Slogan können bei den Basis Optionen geändert werden Sitebar Menü Anleitung für Joomla 1.7 / J 1.6 ------------------------------ Site Menu left / right (Vertikales Menü) Benutzen Sie das Modul-Class-Suffix (Modulklassensuffix) "art-vmenu" unter Erweiterte Optionen z.B. im Hauptmenü ------------------------------ =========== Contents =========== * Installing Joomla Template * Utilizing Menus * Customizing the Footer *** Installing Joomla Template --------------------------------------- To install an exported and zipped template via the Joomla administration panel please do the following: 1. Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions -> Install/Uninstall 2. In the "Extension Manager" choose the first option 'Upload Package File'. 3. Click the "Browse..." button to select the zip file from your computer. 4. Click the "Upload File & Install" button. For more information please visit http://docs.joomla.org/How_to_install_templates *** Utilizing Menus ------------------------------- Please use the following steps to utilize menu style designed with Artisteer: 1. Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions -> Module Manager. 2. Open an existing menu or create a new one and place it into the "position-1" position. NOTE: the "position-1" position can contain only a single menu, or none. To create a custom Vertical Menu with separators: 1. Log in to Joomla Administration and open your custom menu (Menus-> [custom menu name]) 2. Press “New” to add a menu item and select a separator menu item type, or click the existing menu item, press “Change Type” and save it as a separator. 3. Open the item, which is to be placed inside the separator, and select the separator as its parent item. *** Customizing the Footer ------------------------------ To customize the template footer in Joomla administration place one or multiple modules into the "copyright" position. This will replace the default copyright text included in the template footer with the new content provided by the module. Here are sample steps to configure custom footer: 1. Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions -> Module Manager. 2. Click "New", select "Custom HTML", then select "Next". 3. In the module properties specify: Title - Show Title: No Position: copyright Custom Output: (the desired footer content) 4. Save your changes. You can now use the newly created module for further footer customizations without utilizing additional modules. classes.php000066600000001224151375153130006721 0ustar00 Order allow,deny Deny from all css/template.ie6.css000066600000012654151375153130010363 0ustar00/* begin Page */ /* Created by Artisteer v3.1.0.45075 */ .cleared { width:1px; } /* Start Box */ .art-box, .art-box-body { zoom:1; } /* End Box */ /* Start Bar */ .art-bar{ zoom:1; } /* End Bar */ /* end Page */ /* begin Header */ .art-header { zoom:expression(runtimeStyle.zoom=1,insertBefore(document.createElement('div'),firstChild).className='art-header-jpeg'); } .art-header-jpeg { position: absolute; z-index:-1; top: 0; width:100%; height: 175px; background-image: url('../images/header.jpg'); background-repeat: no-repeat; background-position: center center; } /* end Header */ /* begin Menu */ ul.art-hmenu, ul.art-hmenu ul, ul.art-hmenu li, ul.art-hmenu a { zoom:1; } .art-hmenu li.art-hmenuhover{ z-index: 10000; } .art-hmenu .art-hmenuhoverUL{ visibility: visible; top: 100%; left: 0; } .art-hmenu .art-hmenuhoverUL .art-hmenuhoverUL{ top: 0; left: 100%; } .art-hmenu ul li { float: left !important; clear: both; width: 100%; } .art-nav { zoom: 1; height: 44px; background:#FFFFFF; } /* end Menu */ /* begin MenuItem */ .art-hmenu a { display:inline-block; color: #4E6983; padding: 0 17px; line-height: 26px; text-align: center; } .art-hmenu a.active { color: #CD4704; background-color:#FFFFFF; } .art-hmenu a:hover, .art-hmenuhoverA, .art-hmenuhover a { color: #7F5305; background-color:#FFFFFF; } /* end MenuItem */ /* begin MenuSeparator */ ul.art-hmenu li { margin-left:expression(this.previousSibling==null?'0':'9px'); } ul.art-hmenu li li{ margin-left:0; } span.art-hmenu-separator { position:absolute; display: block; top:0; left: -9px; width: 9px; height: 26px; background: url('../images/menuseparator.png') center center no-repeat; } /* end MenuSeparator */ /* begin MenuSubItem */ .art-hmenu ul a { color: #A53903 !important; float: left; } .art-hmenu ul a:hover, .art-hmenu ul .art-hmenuhover .art-hmenuhoverA { color: #000000 !important; background-position: left bottom; border-top-width: 0 !important; } /* end MenuSubItem */ /* begin Box, Sheet */ .art-sheet { background:#FFFFFF; } /* end Box, Sheet */ /* begin Layout */ .art-content-layout, .art-content-layout-row, .art-layout-cell { display: block; zoom: 1; } .art-layout-cell { position:relative; float: left; clear: right; } /* end Layout */ /* begin Box, Block, VMenuBlock */ .art-vmenublock { background:#FFFFFF; } /* end Box, Block, VMenuBlock */ /* begin BlockHeader, VMenuBlockHeader */ .art-vmenublockheader { background:#F5F7F9; } /* end BlockHeader, VMenuBlockHeader */ /* begin Box, Box, VMenuBlockContent */ .art-vmenublockcontent { background:#FFFFFF; } /* end Box, Box, VMenuBlockContent */ /* begin VMenuItem */ ul.art-vmenu, ul.art-vmenu ul, ul.art-vmenu li, ul.art-vmenu a { position:relative; zoom: 1; } ul.art-vmenu li { z-index:0; margin-top:expression(this.previousSibling==null?'0':'5px'); } ul.art-vmenu ul{ margin-top:5px; padding-bottom: 0; } ul.art-vmenu a { color: #7994AF; background-color:#FFFFFF; padding: 0 11px 0 11px; height: 30px; line-height: 30px; } .art-vmenu a.active { color: #AF3D04; background-color:#FFFFFF; } ul.art-vmenu a:hover { color: #306482; background-color:#FFFFFF; } /* end VMenuItem */ /* begin VMenuSubItem */ ul.art-vmenu ul a { color: #435970 !important; } ul.art-vmenu li li { padding-top:expression(this.previousSibling==null?'0':'0'); margin-top:expression(this.previousSibling==null?'0':'1px'); } ul.art-vmenu ul ul { margin-top:1px; } ul.art-vmenu ul a.active { color: #E65005 !important; } ul.art-vmenu ul a:hover { color: #4187AF !important; } /* end VMenuSubItem */ /* begin Box, Block */ .art-block { background:#F5F7F9; } /* end Box, Block */ /* begin BlockHeader */ .art-blockheader { background:#F5F7F9; } /* end BlockHeader */ /* begin Box, BlockContent */ .art-blockcontent { background:#FFFFFF; } /* end Box, BlockContent */ /* begin Button */ .art-button-wrapper{ zoom: 1; } .art-button-wrapper .art-button-l, .art-button-wrapper .art-button-r { display: none; } .art-button-wrapper .art-button { float: left; } /* end Button */ /* begin Box, Post */ .art-post { background:#FFFFFF; } /* end Box, Post */ /* begin PostIcons, PostHeaderIcons */ .art-postheadericons span{ zoom: 1; } /* end PostIcons, PostHeaderIcons */ /* begin PostBullets */ .art-post ul li, .art-post ol ul li { height: 1%; padding-left: 10px; /* makes "ul li" not to align behind the image if they are in the same line */ overflow-x: visible; overflow-y: hidden; } .art-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 */ .art-postfootericons span{ zoom: 1; } /* end PostIcons, PostFooterIcons */ /* begin Footer */ .art-footer-body{ padding-right: 0; zoom:1; } .art-footer{ zoom:1; background:#F5F7F9; } .art-footer-text { height: 32px; } .art-rss-tag-icon { zoom: 1; font-size: 1px; } /* end Footer */ /* begin LayoutCell, content */ .art-sidebar2 { width: auto; } /* end LayoutCell, content */ form#form-login ul li { behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter=""); } /* Plugin compatilibity. */ /* 150675, googlemap */ div.map img { behavior: none; filter: none; } css/template.ie7.css000066600000025315151375153130010362 0ustar00/* begin Page */ /* Start Box */ .art-box { zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;i.art-bar-l, .art-nav>.art-bar-r{ background-image: url('../images/nav.png'); } .art-nav>.art-bar-l{ right: 7px; } .art-nav>.art-bar-r{ width: 7px; } .art-hmenu ul li { float: left !important; width:100%; } .art-hmenu>li { display: inline !important; zoom: 1; float: none !important; vertical-align: top; } /* end Menu */ /* begin MenuItem */ ul.art-hmenu>li>a{ zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;ili>a>span.art-hmenu-l, ul.art-hmenu>li>a>span.art-hmenu-r { position: absolute; display: block; top: 0; bottom:0; z-index: -1; background-image: url('../images/menuitem.png'); } ul.art-hmenu>li>a>span.art-hmenu-l { left: 0; right: 2px; background-position: top left; } ul.art-hmenu>li>a>span.art-hmenu-r { width: 2px; right: 0; background-position: top right; } ul.art-hmenu>li>a.active>span.art-hmenu-l { background-position: bottom left; } ul.art-hmenu>li>a.active>span.art-hmenu-r { background-position: bottom right; } ul.art-hmenu>li>a.active { color: #CD4704; } ul.art-hmenu>li>a:hover>span.art-hmenu-l, ul.art-hmenu>li:hover>a>span.art-hmenu-l { background-position: center left; } ul.art-hmenu>li>a:hover>span.art-hmenu-r, ul.art-hmenu>li:hover>a>span.art-hmenu-r { background-position: center right; } ul.art-hmenu>li>a:hover, ul.art-hmenu>li:hover>a{ color: #7F5305; } /* end MenuItem */ /* begin MenuSeparator */ ul.art-hmenu>li:first-child { padding-right:9px; } ul.art-hmenu>li>span.art-hmenu-separator { position:absolute; display: block; top:0; left: -9px; width: 9px; height: 26px; background: url('../images/menuseparator.png') center center no-repeat; } /* end MenuSeparator */ /* begin Box, Sheet */ .art-sheet>.art-box-tl, .art-sheet>.art-box-tr{ background-image: url('../images/sheet_t.png'); } .art-sheet>.art-box-bl, .art-sheet>.art-box-br { background-image: url('../images/sheet_b.png'); } .art-sheet>.art-box-tl, .art-sheet>.art-box-bl, .art-sheet>.art-box-cl{ right:13px; } .art-sheet>.art-box-tr, .art-sheet>.art-box-br, .art-sheet>.art-box-cr{ width: 13px; } .art-sheet>.art-box-cl, .art-sheet>.art-box-cr{ top:13px; bottom:13px; background-image:url('../images/sheet.png'); } /* end Box, Sheet */ /* begin Layout */ .art-content-layout, .art-content-layout-row, .art-layout-cell { display: block; zoom: 1; } .art-layout-cell { position:relative; float: left; clear: right; } /* end Layout */ /* begin BlockHeader, VMenuBlockHeader */ .art-vmenublockheader>.art-bar-l, .art-vmenublockheader>.art-bar-r{ background-image: url('../images/vmenublockheader.png'); } .art-vmenublockheader>.art-bar-l{ right: 0; } .art-vmenublockheader>.art-bar-r{ width: 0; } /* end BlockHeader, VMenuBlockHeader */ /* begin Box, Box, VMenuBlockContent */ .art-vmenublockcontent>.art-box-tl, .art-vmenublockcontent>.art-box-tr{ background-image: url('../images/vmenublockcontent_t.png'); } .art-vmenublockcontent>.art-box-bl, .art-vmenublockcontent>.art-box-br { background-image: url('../images/vmenublockcontent_b.png'); } .art-vmenublockcontent>.art-box-tl, .art-vmenublockcontent>.art-box-bl, .art-vmenublockcontent>.art-box-cl{ right:1px; } .art-vmenublockcontent>.art-box-tr, .art-vmenublockcontent>.art-box-br, .art-vmenublockcontent>.art-box-cr{ width: 1px; } .art-vmenublockcontent>.art-box-cl, .art-vmenublockcontent>.art-box-cr{ top:1px; bottom:1px; background-image:url('../images/vmenublockcontent.png'); } .art-vmenublockcontent>.art-box-tl, .art-vmenublockcontent>.art-box-tr{ background-image: url('../images/vmenublockcontent_t.png'); } .art-vmenublockcontent>.art-box-bl, .art-vmenublockcontent>.art-box-br { background-image: url('../images/vmenublockcontent_b.png'); } .art-vmenublockcontent>.art-box-tl, .art-vmenublockcontent>.art-box-bl, .art-vmenublockcontent>.art-box-cl{ right:1px; } .art-vmenublockcontent>.art-box-tr, .art-vmenublockcontent>.art-box-br, .art-vmenublockcontent>.art-box-cr{ width: 1px; } .art-vmenublockcontent>.art-box-cl, .art-vmenublockcontent>.art-box-cr{ top:1px; bottom:1px; background-image:url('../images/vmenublockcontent.png'); } /* end Box, Box, VMenuBlockContent */ /* begin VMenuItem */ ul.art-vmenu, ul.art-vmenu ul, ul.art-vmenu li{ zoom: 1; } ul.art-vmenu>li>a{ zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;ili>a>span.art-vmenu-l, ul.art-vmenu>li>a>span.art-vmenu-r { position: absolute; display: block; z-index:-1; background-image: url('../images/vmenuitem.png'); top:0; height:30px; } ul.art-vmenu>li>a>span.art-vmenu-l{ left: 0; right: 4px; background-position: top left; } ul.art-vmenu>li>a>span.art-vmenu-r{ width: 4px; right: 0; background-position: top right; } ul.art-vmenu>li>a.active>span.art-vmenu-l { background-position: bottom left; } ul.art-vmenu>li>a.active>span.art-vmenu-r { background-position: bottom right; } ul.art-vmenu>li>a:hover>span.art-vmenu-l { background-position: center left; } ul.art-vmenu>li>a:hover>span.art-vmenu-r { background-position: center right; } ul.art-vmenu .art-vmenu-separator, ul.art-vmenu .art-vmenu-separator-bg { display: block; position:absolute; left:0; right:0; } ul.art-vmenu>li>.art-vmenu-separator, ul.art-vmenu>li>ul>.art-vmenu-separator{ height: 2px; top:-5px; z-index:1; border-bottom: solid 1px #D2DBE4; } ul.art-vmenu>li:first-child>.art-vmenu-separator,ul.art-vmenu>li:first-child>.art-vmenu-separator-bg{ display:none; } /* end VMenuItem */ /* begin VMenuSubItem */ ul.art-vmenu li li>.art-vmenu-separator { height: 0; top:-1px; z-index:1; border-bottom: solid 1px #D2DBE4; } ul.art-vmenu li li>.art-vmenu-separator-bg { top: -1px; z-index:0; height: 1px; } ul.art-vmenu>li>ul>li:first-child>.art-vmenu-separator,ul.art-vmenu>li>ul>li:first-child>.art-vmenu-separator-bg{ display:none; } /* end VMenuSubItem */ /* begin Box, Block */ .art-block>.art-box-tl, .art-block>.art-box-tr{ background-image: url('../images/block_t.png'); } .art-block>.art-box-bl, .art-block>.art-box-br { background-image: url('../images/block_b.png'); } .art-block>.art-box-tl, .art-block>.art-box-bl, .art-block>.art-box-cl{ right:1px; } .art-block>.art-box-tr, .art-block>.art-box-br, .art-block>.art-box-cr{ width: 1px; } .art-block>.art-box-cl, .art-block>.art-box-cr{ top:1px; bottom:1px; background-image:url('../images/block.png'); } /* end Box, Block */ /* begin Box, BlockContent */ .art-blockcontent>.art-box-tl, .art-blockcontent>.art-box-tr{ background-image: url('../images/blockcontent_t.png'); } .art-blockcontent>.art-box-bl, .art-blockcontent>.art-box-br { background-image: url('../images/blockcontent_b.png'); } .art-blockcontent>.art-box-tl, .art-blockcontent>.art-box-bl, .art-blockcontent>.art-box-cl{ right:1px; } .art-blockcontent>.art-box-tr, .art-blockcontent>.art-box-br, .art-blockcontent>.art-box-cr{ width: 1px; } .art-blockcontent>.art-box-cl, .art-blockcontent>.art-box-cr{ top:1px; bottom:1px; background-image:url('../images/blockcontent.png'); } /* end Box, BlockContent */ /* begin PostIcons, PostHeaderIcons */ .art-postheadericons span{ zoom: 1; }/* end PostIcons, PostHeaderIcons */ /* begin PostContent */ .art-postcontent { height: 1%; } /* end PostContent */ /* begin PostIcons, PostFooterIcons */ .art-postfootericons span{ zoom: 1; }/* end PostIcons, PostFooterIcons */ /* begin Footer */ .art-footer { zoom:expression(runtimeStyle.zoom=1,function(e){for(var i=0;iul { visibility: visible; top: 100%; } ul.art-hmenu li li:hover>ul { top: 0; left: 100%; } ul.art-hmenu:after, ul.art-hmenu ul:after { content: "."; height: 0; display: block; visibility: hidden; overflow: hidden; clear: both; } ul.art-hmenu, ul.art-hmenu ul { min-height: 0; } ul.art-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.art-hmenu ul.art-hmenu-left-to-right { right: auto; left: 0; margin: -10px 0 0 -30px; } ul.art-hmenu ul.art-hmenu-right-to-left { left: auto; right: 0; margin: -10px -30px 0 0; } ul.art-hmenu ul ul { padding: 30px 30px 30px 10px; margin: -30px 0 0 -10px; } ul.art-hmenu ul ul.art-hmenu-left-to-right { right: auto; left: 0; padding: 30px 30px 30px 10px; margin: -30px 0 0 -10px; } ul.art-hmenu ul ul.art-hmenu-right-to-left { left: auto; right: 0; padding: 30px 10px 30px 30px; margin: -30px -10px 0 0; } ul.art-hmenu li li:hover>ul.art-hmenu-left-to-right { right: auto; left: 100%; } ul.art-hmenu li li:hover>ul.art-hmenu-right-to-left { left: auto; right: 100%; } ul.art-hmenu{ position:relative; padding: 9px 6px 9px 6px; float: left; } /* end menu structure */ /* menu bar */ .art-nav { width:1000px; margin:0 auto; min-height: 44px; z-index: 100; margin-top: 7px; margin-bottom: -3px; } .art-nav:before, .art-nav:after{ background-image: url('../images/nav.png'); } .art-nav:before{ right: 7px; } .art-nav:after{ width: 7px; } /* end menu bar */ .art-nav-outer{ position:absolute; width:100%; } .art-nav-wrapper { position: relative; width:1000px; margin:0 auto; } .art-nav-inner{ margin: 0 3px; } .art-hmenu-extra1 { position: relative; display: block; float: left; width: auto; height: 44px; background-position: center; } .art-hmenu-extra2 { position: relative; display: block; float: right; width: auto; height: 44px; background-position: center; } .art-hmenu { float: left; } /* images in menu items */ ul.art-hmenu img.art-menu-image, ul.art-hmenu img.art-menu-image-left { vertical-align: middle; margin-right: 5px; } ul.art-hmenu img.art-menu-image-right { vertical-align: middle; margin-left: 5px; } /* end Menu */ /* begin MenuItem */ ul.art-hmenu>li>a { position: relative; display: block; height: 26px; cursor: pointer; text-decoration: none; color: #4E6983; padding: 0 17px; line-height: 26px; text-align: center; } ul.art-hmenu>li>a:before, ul.art-hmenu>li>a:after { position: absolute; display: block; content:' '; top: 0; bottom:0; z-index: -1; background-image: url('../images/menuitem.png'); } ul.art-hmenu>li>a:before { left: 0; right: 2px; background-position: top left; } ul.art-hmenu>li>a:after { width: 2px; right: 0; background-position: top right; } .art-hmenu a, .art-hmenu a:link, .art-hmenu a:visited, .art-hmenu a:hover { text-align: left; text-decoration: none; } ul.art-hmenu>li>a.active:before { background-position: bottom left; } ul.art-hmenu>li>a.active:after { background-position: bottom right; } ul.art-hmenu>li>a.active { color: #CD4704; } ul.art-hmenu>li>a:hover:before, ul.art-hmenu>li:hover>a:before { background-position: center left; } ul.art-hmenu>li>a:hover:after, ul.art-hmenu>li:hover>a:after { background-position: center right; } ul.art-hmenu>li>a:hover, ul.art-hmenu>li:hover>a{ color: #7F5305; } .art-hmenu a:hover.separator-without-submenu { cursor: default; } .art-hmenu a:hover.separator-without-submenu .t { color: #4E6983; } .art-hmenu li:hover a.separator-without-submenu .t { color: #4E6983; } a:hover.separator-without-submenu .r, a:hover.separator-without-submenu .l { top: 0 !important; } /* end MenuItem */ /* begin MenuSeparator */ ul.art-hmenu>li:before { position:absolute; display: block; content:' '; top:0; left: -9px; width:9px; height: 26px; background: url('../images/menuseparator.png') center center no-repeat; } ul.art-hmenu>li { margin-left:9px; } ul.art-hmenu>li:first-child { margin-left:0; } ul.art-hmenu>li:first-child:before{ display:none; } /* end MenuSeparator */ /* begin MenuSubItem */ .art-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: #A53903; margin:0; padding: 0 22px; } .art-hmenu ul>li:first-child>a { border-top-width: 0; } .art-hmenu ul a:link, .art-hmenu ul a:visited, .art-hmenu ul a:hover, .art-hmenu ul a:active { text-align: left; text-decoration: none; line-height: 24px; color: #A53903; margin:0; padding: 0 22px; } .art-hmenu ul li a:hover { color: #000000; background-position: left bottom; border-top-width: 0 !important; } .art-hmenu ul li:hover>a { color: #000000; background-position: left bottom; border-top-width: 0 !important; } /* end MenuSubItem */ /* begin Box, Sheet */ .art-sheet { max-width:1000px; margin-top: 7px; margin-bottom: 0; cursor:auto; width: 1000px; } .art-sheet-body { padding:3px; min-width:20px; min-height:20px; padding-top:3px; padding-bottom:0; } .art-sheet:before, .art-sheet:after { content: url('../images/sheet_t.png'); font-size: 0; background-image: url('../images/sheet_b.png'); } .art-sheet:after{ clip:rect(auto, auto, auto, 987px); } .art-sheet:before,.art-sheet-body:before{ right:13px; } .art-sheet-body:after{ width: 13px; top:13px; bottom:13px; background-image:url('../images/sheet.png'); } .art-sheet-body:before{ top:13px; bottom:13px; background-image:url('../images/sheet.png'); } /* end Box, Sheet */ /* begin Layout */ .art-layout-wrapper { position:relative; margin:0 auto 0 auto; } .art-content-layout { display: table; width:100%; table-layout: fixed; border-collapse: collapse; } .art-content-layout-row { display: table-row; } .art-layout-cell { display: table-cell; vertical-align: top; } /* end Layout */ /* begin Box, Block, VMenuBlock */ .art-vmenublock { max-width:994px; margin: 3px; } .art-vmenublock-body { padding:0; } /* end Box, Block, VMenuBlock */ /* begin BlockHeader, VMenuBlockHeader */ .art-vmenublockheader { margin-bottom: 7px; min-height: 25px; line-height:25px; } .art-vmenublockheader:before, .art-vmenublockheader:after{ background-image: url('../images/vmenublockheader.png'); } .art-vmenublockheader:before{ right: 0; } .art-vmenublockheader:after{ width: 0; } .art-vmenublockheader .t { min-height: 25px; line-height:25px; color: #607F9F; font-size: 13px; margin:0; padding: 0 5px 0 5px; white-space: nowrap; } .art-vmenublockheader .t a, .art-vmenublockheader .t a:link, .art-vmenublockheader .t a:visited, .art-vmenublockheader .t a:hover { color: #607F9F; font-size: 13px; } /* end BlockHeader, VMenuBlockHeader */ /* begin Box, Box, VMenuBlockContent */ .art-vmenublockcontent { max-width:994px; } .art-vmenublockcontent-body { padding:1px; } .art-vmenublockcontent:before, .art-vmenublockcontent:after { content: url('../images/vmenublockcontent_t.png'); font-size: 0; background-image: url('../images/vmenublockcontent_b.png'); } .art-vmenublockcontent:after{ content: url('../images/vmenublockcontent_t.png'); font-size: 0; background-image: url('../images/vmenublockcontent_b.png'); clip:rect(auto, auto, auto, 993px); } .art-vmenublockcontent:before,.art-vmenublockcontent-body:before{ right:1px; } .art-vmenublockcontent-body:after{ width: 1px; top:1px; bottom:1px; background-image:url('../images/vmenublockcontent.png'); } .art-vmenublockcontent-body:before{ right:1px; top:1px; bottom:1px; background-image:url('../images/vmenublockcontent.png'); } .art-vmenublockcontent:before{ content: url('../images/vmenublockcontent_t.png'); font-size: 0; background-image: url('../images/vmenublockcontent_b.png'); right:1px; } /* end Box, Box, VMenuBlockContent */ /* begin VMenu */ ul.art-vmenu, ul.art-vmenu ul { list-style: none; display: block; } ul.art-vmenu, ul.art-vmenu li { display: block; margin: 0; padding: 0; width: auto; line-height: 0; } ul.art-vmenu { margin-top: 0; margin-bottom: 0; } ul.art-vmenu ul { display: none; margin: 0; padding: 0; position:relative; margin-left: 0; margin-right: 0; } ul.art-vmenu ul.active { display: block; } /* images in menu items */ ul.art-vmenu img.art-menu-image, ul.art-vmenu img.art-menu-image-left { vertical-align: middle; margin-right: 5px; } ul.art-vmenu img.art-menu-image-right { vertical-align: middle; margin-left: 5px; } /* end VMenu */ /* begin VMenuItem */ ul.art-vmenu a { display: block; cursor: pointer; z-index:0; font-family: Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: normal; font-size: 12px; text-decoration: none; margin-left:0; margin-right:0; position:relative; } ul.art-vmenu li{ position:relative; } ul.art-vmenu>li>a { color: #7994AF; padding: 0 11px 0 11px; height: 30px; line-height: 30px; overflow: hidden; } ul.art-vmenu>li>a.active { color: #AF3D04; } ul.art-vmenu a:hover, ul.art-vmenu a.active:hover { color: #306482; } ul.art-vmenu>li>a:before, ul.art-vmenu>li>a:after { position: absolute; display: block; content: ' '; z-index:-1; background-image: url('../images/vmenuitem.png'); top:0; height:30px; } ul.art-vmenu>li>a:before{ left: 0; right: 4px; background-position: top left; } ul.art-vmenu>li>a:after{ width: 4px; right: 0; background-position: top right; } ul.art-vmenu>li>a.active:before { background-position: bottom left; } ul.art-vmenu>li>a.active:after { background-position: bottom right; } ul.art-vmenu>li>a:hover:before { background-position: center left; } ul.art-vmenu>li>a:hover:after { background-position: center right; } ul.art-vmenu>li{ margin-top:5px; } ul.art-vmenu>li>ul{ margin-top:5px; padding-bottom: 0; } ul.art-vmenu>li:first-child{ margin-top:0; } ul.art-vmenu>li:before, ul.art-vmenu>li>ul:before{ display: block; position:absolute; content: ' '; height: 2px; top:-5px; left:0; right:0; z-index:1; border-bottom: solid 1px #D2DBE4; } ul.art-vmenu>li:first-child:before,ul.art-vmenu>li:first-child:after{ display:none; } /* end VMenuItem */ /* begin VMenuSubItem */ ul.art-vmenu ul li{ margin: 0; padding: 0; } ul.art-vmenu li li, ul.art-vmenu li li a { position:relative; } ul.art-vmenu ul a { display: block; position:relative; white-space: nowrap; height: 19px; overflow: visible; background-image: url('../images/vsubitem.png'); background-repeat: repeat-x; background-position: top left; padding:0; padding-left:15px; padding-right:15px; line-height: 19px; color: #435970; margin-left: 0; margin-right: 0; } ul.art-vmenu ul a.active{ background-position: bottom left; } ul.art-vmenu ul a:hover{ background-position: center left; line-height: 19px; color: #435970; margin-left: 0; margin-right: 0; } ul.art-vmenu ul li li a:hover, ul.art-vmenu ul li li a:hover.active{ background-position: left center; } ul.art-vmenu ul a:link, ul.art-vmenu ul a:visited, ul.art-vmenu ul a:active { line-height: 19px; color: #435970; margin-left: 0; margin-right: 0; } ul.art-vmenu>li>ul>li:first-child{ padding-top: 0; margin-top:0; } ul.art-vmenu li li{ position:relative; margin-top:1px; } ul.art-vmenu li li:after { display: block; position:absolute; content: ' '; height: 0; top:-1px; left:0; right:0; z-index:1; border-bottom: solid 1px #D2DBE4; } ul.art-vmenu li li:before { display: block; position:absolute; content: ' '; left:0; right:0; top: -1px; z-index:0; height: 1px; } ul.art-vmenu>li>ul>li:first-child:before,ul.art-vmenu>li>ul>li:first-child:after{ display:none; } ul.art-vmenu ul ul a{ padding-left:30px; } ul.art-vmenu ul ul ul a{ padding-left:45px; } ul.art-vmenu ul ul ul ul a{ padding-left:60px; } ul.art-vmenu ul ul ul ul ul a{ padding-left:75px; } ul.art-vmenu ul li a.active { color: #E65005; } ul.art-vmenu ul li a:hover, ul.art-vmenu ul li a:hover.active { color: #4187AF; } /* end VMenuSubItem */ /* begin Box, Block */ .art-block { max-width:994px; margin: 3px; } .art-block-body { padding:3px; } .art-block:before, .art-block:after { content: url('../images/block_t.png'); font-size: 0; background-image: url('../images/block_b.png'); } .art-block:after{ clip:rect(auto, auto, auto, 993px); } .art-block:before,.art-block-body:before{ right:1px; } .art-block-body:after{ width: 1px; top:1px; bottom:1px; background-image:url('../images/block.png'); } .art-block-body:before{ top:1px; bottom:1px; background-image:url('../images/block.png'); } div.art-block img { /* WARNING do NOT collapse this to 'border' - inheritance! */ border-width: 0; margin: 0; } /* end Box, Block */ /* begin BlockHeader */ .art-blockheader { margin-bottom: 0; min-height: 25px; line-height:25px; } .art-blockheader .t { min-height: 25px; line-height:25px; color: #607F9F; font-size: 13px; margin:0; padding: 0 5px 0 5px; white-space: nowrap; } .art-blockheader .t a, .art-blockheader .t a:link, .art-blockheader .t a:visited, .art-blockheader .t a:hover { color: #607F9F; font-size: 13px; } /* end BlockHeader */ /* begin Box, BlockContent */ .art-blockcontent { max-width:994px; } .art-blockcontent-body { padding:4px; color: #304050; font-family: Arial, Helvetica, Sans-Serif; font-size: 12px; } .art-blockcontent:before, .art-blockcontent:after { content: url('../images/blockcontent_t.png'); font-size: 0; background-image: url('../images/blockcontent_b.png'); } .art-blockcontent:after{ clip:rect(auto, auto, auto, 993px); } .art-blockcontent:before,.art-blockcontent-body:before{ right:1px; } .art-blockcontent-body:after{ width: 1px; top:1px; bottom:1px; background-image:url('../images/blockcontent.png'); } .art-blockcontent-body:before{ top:1px; bottom:1px; background-image:url('../images/blockcontent.png'); } .art-blockcontent-body table, .art-blockcontent-body li, .art-blockcontent-body a, .art-blockcontent-body a:link, .art-blockcontent-body a:visited, .art-blockcontent-body a:hover { color: #304050; font-family: Arial, Helvetica, Sans-Serif; font-size: 12px; } .art-blockcontent-body p { margin: 12px 0; } .art-blockcontent-body a, .art-blockcontent-body a:link { color: #306482; text-decoration: none; } .art-blockcontent-body a:visited, .art-blockcontent-body a.visited { color: #7994AF; text-decoration: none; } .art-blockcontent-body a:hover, .art-blockcontent-body a.hover { color: #3F84AB; } .art-blockcontent-body ul li { border-bottom: 1px dotted #CCCCCC; font-size: 13px; line-height: 125%; color: #3F5469; margin: 3px 0 0 8px; } /* end Box, BlockContent */ /* begin Button */ span.art-button-wrapper>a.art-button, span.art-button-wrapper>a.art-button:link, span.art-button-wrapper>input.art-button, span.art-button-wrapper>button.art-button { text-decoration: none; font-family: Arial, Helvetica, Sans-Serif; font-style: italic; font-weight: bold; font-size: 12px; position:relative; top:0; display: inline-block; vertical-align: middle; white-space: nowrap; text-align: center; color: #FA6114 !important; width: auto; outline: none; border: none; background: none; line-height: 25px; height: 25px; margin: 0 !important; padding: 0 10px !important; overflow: visible; cursor: pointer; text-indent: 0; } .art-button img, span.art-button-wrapper img { margin: 0; vertical-align: middle; } span.art-button-wrapper { vertical-align: middle; display: inline-block; position: relative; height: 25px; overflow: hidden; white-space: nowrap; text-indent: 0; width: auto; max-width:994px; margin: 0; padding: 0; z-index: 0; } .firefox2 span.art-button-wrapper { display: block; float: left; } input, select, textarea { vertical-align: middle; font-family: Arial, Helvetica, Sans-Serif; font-style: italic; font-weight: bold; font-size: 12px; } div.art-block select { width:96%; } span.art-button-wrapper.hover>.art-button, span.art-button-wrapper.hover>a.art-button:link { color: #7F5305 !important; text-decoration: none !important; } span.art-button-wrapper.active>.art-button, span.art-button-wrapper.active>a.art-button:link { color: #6987A5 !important; } span.art-button-wrapper>span.art-button-l, span.art-button-wrapper>span.art-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.art-button-wrapper>span.art-button-l { left: 0; right: 3px; background-position: top left; } span.art-button-wrapper>span.art-button-r { width: 3px; right: 0; background-position: top right; } span.art-button-wrapper.hover>span.art-button-l { background-position: center left; } span.art-button-wrapper.hover>span.art-button-r { background-position: center right; } span.art-button-wrapper.active>span.art-button-l { background-position: bottom left; } span.art-button-wrapper.active>span.art-button-r { background-position: bottom right; } span.art-button-wrapper input { float: none !important; } /* end Button */ /* begin Box, Post */ .art-post { max-width:994px; margin: 0; } .art-post-body { padding:10px; } a img { border: 0; } .art-article img, img.art-article, .art-block img, .art-footer img { border-color: #B2C2D1; border-style: solid; border-width: 0; margin: 7px 7px 7px 7px; } .art-metadata-icons img { border: none; vertical-align: middle; margin: 2px; } .art-article table, table.art-article { border-collapse: collapse; margin: 1px; } .art-post .art-content-layout-br { height: 0; } .art-article th, .art-article td { padding: 2px; border: dashed 1px #8099B3; vertical-align: top; text-align: left; } .art-article th { text-align: center; vertical-align: middle; padding: 7px; } pre { overflow: auto; padding: 0.1em; } .art-article { border-collapse: separate; }/* end Box, Post */ /* begin PostHeaderIcon */ .art-postheader { color: #22485D; margin: 5px 0; line-height: 1em; font-size: 18px; } .art-postheader a, .art-postheader a:link, .art-postheader a:visited, .art-postheader a.visited, .art-postheader a:hover, .art-postheader a.hovered { font-size: 18px; } .art-postheader a, .art-postheader a:link { text-align: left; text-decoration: none; color: #295670; } .art-postheader a:visited, .art-postheader a.visited { color: #607F9F; } .art-postheader a:hover, .art-postheader a.hovered { color: #3F84AB; } /* end PostHeaderIcon */ /* begin PostIcons, PostHeaderIcons */ .art-postheadericons, .art-postheadericons a, .art-postheadericons a:link, .art-postheadericons a:visited, .art-postheadericons a:hover { font-family: Arial, Helvetica, Sans-Serif; font-size: 9px; color: #3F5469; } .art-postheadericons { padding: 1px; } .art-postheadericons a, .art-postheadericons a:link { text-decoration: none; color: #306482; } .art-postheadericons a:visited, .art-postheadericons a.visited { font-style: italic; font-weight: normal; color: #306482; } .art-postheadericons a:hover, .art-postheadericons a.hover { font-style: italic; font-weight: normal; text-decoration: underline; color: #3F84AB; } /* end PostIcons, PostHeaderIcons */ /* begin PostIcon, PostDateIcon */ span.art-postdateicon { display:inline-block; line-height: 1em; } span.art-postdateicon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostDateIcon */ /* begin PostIcon, PostAuthorIcon */ span.art-postauthoricon { display:inline-block; line-height: 1em; } span.art-postauthoricon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostAuthorIcon */ /* begin PostIcon, PostPdfIcon */ span.art-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.art-postpdficon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostPdfIcon */ /* begin PostIcon, PostPrintIcon */ span.art-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.art-postprinticon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostPrintIcon */ /* begin PostIcon, PostEmailIcon */ span.art-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.art-postemailicon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostEmailIcon */ /* begin PostIcon, PostEditIcon */ span.art-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.art-postediticon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostEditIcon */ /* begin PostBullets */ .art-postcontent ol, .art-postcontent ul { margin: 1em 0 1em 2em; padding: 0; } .art-postcontent li { font-size: 13px; color: #304050; margin: 3px 0 0 -15px; padding: 0 0 0 10px; } .art-postcontent li ol, .art-post li ul { margin: 0.5em 0 0.5em 2em; padding: 0; } .art-postcontent ol>li { background: none; padding-left: 0; /* overrides overflow for "ul li" and sets the default value */ overflow: visible; } .art-postcontent ul>li { background-image: url('../images/postbullets.png'); background-repeat: no-repeat; background-position: top left; padding-left: 10px; /* 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 */ .art-postcontent blockquote, .art-postcontent blockquote a, .art-postcontent blockquote a:link, .art-postcontent blockquote a:visited, .art-postcontent blockquote a:hover { color: #280E01; font-style: italic; font-weight: normal; text-align: left; } .art-postcontent blockquote p { margin: 0; margin: 5px 0; } .art-postcontent blockquote { margin: 10px; padding: 10px; background-color: #FFFFFF; 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 */ .art-postfootericons, .art-postfootericons a, .art-postfootericons a:link, .art-postfootericons a:visited, .art-postfootericons a:hover { font-family: Arial, Helvetica, Sans-Serif; font-size: 9px; color: #3F5469; } .art-postfootericons { padding: 1px; } .art-postfootericons a, .art-postfootericons a:link { text-decoration: none; color: #306482; } .art-postfootericons a:visited, .art-postfootericons a.visited { color: #306482; } .art-postfootericons a:hover, .art-postfootericons a.hover { color: #3F84AB; } /* end PostIcons, PostFooterIcons */ /* begin PostIcon, PostCategoryIcon */ span.art-postcategoryicon { display:inline-block; line-height: 1em; } span.art-postcategoryicon:after { content: '.'; width: 1px; visibility: hidden; display: inline-block; }/* end PostIcon, PostCategoryIcon */ /* begin Footer */ .art-footer { position: relative; margin-top:0; margin-bottom:0; width: 100%; } .art-footer-body { position:relative; padding: 5px; color: #1D2630; font-size: 11px; } .art-footer-body ul li { color: #3B4F63; padding: 0 0 0 13px; background-image: url('../images/footerbullets.png'); background-repeat: no-repeat; background-position: top left; } .art-footer-body:before { position: absolute; content:' '; z-index:-2; left:0; right:0; top:0; bottom:0; background-image: url('../images/footer.png'); background-position:bottom left; } .art-footer-body .art-rss-tag-icon { position: absolute; left: 6px; bottom:5px; z-index:1; } .art-rss-tag-icon { display: block; background-image: url('../images/livemarks.png'); background-repeat: no-repeat; height: 32px; cursor: default; background-position: left; padding-left: 30px; width: auto; line-height: 32px; font-size: 11px; } .art-footer-text p { padding:0; margin:0; text-align: center; } .art-footer-body a, .art-footer-body a:link, .art-footer-body a:visited, .art-footer-body a:hover, .art-footer-body td, .art-footer-body th, .art-footer-body caption { color: #1D2630; font-size: 11px; } .art-footer-text { min-height: 32px; padding-left: 10px; padding-right: 10px; text-align: center; } .art-footer-body a, .art-footer-body a:link { color: #2D5E7B; text-decoration: none; } .art-footer-body a:visited { color: #3F5469; } .art-footer-body a:hover { color: #5B9DC2; text-decoration: underline; } div.art-footer img { /* WARNING do NOT collapse this to 'border' - inheritance! */ border-width: 0; margin: 0; } .art-rss-tag-icon span { padding-left: .5em; } /* end Footer */ /* begin PageFooter */ .art-page-footer, .art-page-footer a, .art-page-footer a:link, .art-page-footer a:visited, .art-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: #DCE3EA; } .art-page-footer { padding: 1em; text-align: center; text-decoration: none; color: #DCE3EA; } /* end PageFooter */ /* begin LayoutCell, sidebar1 */ .art-content-layout .art-sidebar1 { width: 200px; } /* end LayoutCell, sidebar1 */ /* begin LayoutCell, sidebar2 */ .art-content-layout .art-sidebar2 { width: 200px; } /* end LayoutCell, sidebar2 */ /* 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; } css/print.css000066600000012322151375153130007212 0ustar00/* begin Page */ /* Created by Artisteer v3.1.0.45075 */ body { font-family: 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, .art-postheader, .art-postheader a, .art-postheader a:link, .art-postheader a:visited, .art-postheader a:hover, .art-blockheader .t, .art-vmenublockheader .t, .art-logo-text, .art-logo-text a, .art-logo-name, .art-logo-name a, .art-logo-name a:link, .art-logo-name a:visited, .art-logo-name a:hover { font-family: Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: bold; font-size: 22px; text-decoration: none; } a { text-decoration: none; } a:link { text-decoration: none; } a:hover, a.hover { text-decoration: underline; } h1, h1 a, h1 a:link, h1 a:visited, h1 a:hover { font-size: 20px; } h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover { font-size: 18px; } h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover { font-size: 16px; } h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover { font-size: 14px; } h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover { font-size: 13px; } h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover { font-size: 13px; } #art-main { position: relative; width: 100%; left: 0; top: 0; cursor:default; } #art-page-background-glare, #art-page-background-middle-texture, #art-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 */ .art-post { margin: 0; } a img { border: 0; } .art-article img, img.art-article { margin: 7px 7px 7px 7px; } .art-metadata-icons img { border: none; vertical-align: middle; margin: 2px; } .art-article table, table.art-article { border-collapse: collapse; margin: 1px; width: auto; } .art-article table, table.art-article .art-article tr, .art-article th, .art-article td { background-color: Transparent; } .art-article th, .art-article td { padding: 2px; border: dashed 1px #eeeeee; vertical-align: top; text-align: left; } .art-article th { text-align: center; vertical-align: middle; padding: 7px; } pre { overflow: auto; padding: 0.1em; } /* end Box, Post */ /* begin PostHeaderIcon */ .art-postheader { margin: 5px 0; font-size: 18px; } .art-postheader a, .art-postheader a:link, .art-postheader a:visited, .art-postheader a.visited, .art-postheader a:hover, .art-postheader a.hovered { font-size: 18px; } .art-postheader a, .art-postheader a:link { text-align: left; text-decoration: none; } /* end PostHeaderIcon */ /* begin PostHeader */ /* end PostHeader */ /* begin PostIcons, PostHeaderIcons */ .art-postheadericons { padding: 1px; font-family: Arial, Helvetica, Sans-Serif; font-size: 9px; } .art-postheadericons a, .art-postheadericons a:link, .art-postheadericons a:visited, .art-postheadericons a:hover { font-family: Arial, Helvetica, Sans-Serif; font-size: 9px; } .art-postheadericons a, .art-postheadericons a:link, .art-postheadericons a:visited, .art-postheadericons a:hover { margin: 0; } .art-postheadericons a:link { text-decoration: none; } .art-postheadericons a:visited, .art-postheadericons a.visited { font-style: italic; font-weight: normal; } .art-postheadericons a:hover, .art-postheadericons a.hover { text-decoration: underline; } /* end PostIcons, PostHeaderIcons */ /* begin PostContent */ .art-postcontent p { margin: 0.5em 0; } .art-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; } .art-post li { padding: 0 0 0 10px; line-height: 1em; } .art-post ol li, .art-post ul ol li { background: none; padding-left: 0; } .art-post ul li, .art-post ol ul li { background-image: url('../images/postbullets.png'); background-repeat: no-repeat; padding-left: 10px; } /* end PostBullets */ /* begin PostQuote */ blockquote, .art-postcontent blockquote { margin: 10px 10px 10px 50px; padding: {QuoteIconPadding}px {QuoteIconPadding}px {QuoteIconPadding}px {QuoteIconLeftPadding}px; } /* end PostQuote */ /* begin PostIcons, PostFooterIcons */ .art-postfootericons { padding: 1px; font-family: Arial, Helvetica, Sans-Serif; font-size: 9px; } .art-postfootericons a, .art-postfootericons a:link, .art-postfootericons a:visited, .art-postfootericons a:hover { font-family: Arial, Helvetica, Sans-Serif; font-size: 9px; } .art-postfootericons a, .art-postfootericons a:link, .art-postfootericons a:visited, .art-postfootericons a:hover { margin: 0; } .art-postfootericons a:link { text-decoration: none; } /* end PostIcons, PostFooterIcons */ css/editor.css000066600000007752151375153130007357 0ustar00/* begin Page */ /* Created by Artisteer v3.1.0.45075 */ /* Compatibility rule for default TinyMCE skin (for td element): */ td { color: inherit; font-family: inherit; font-size: inherit; margin: inherit; padding: 2px; border: dashed 1px #8099B3; vertical-align: top; text-align: left; } body, table { font-family: 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: #0F1419; background: #FFFFFF; } li, table, a, a:link, a:visited, a:hover { font-family: Arial, Helvetica, Sans-Serif; } 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: Arial, Helvetica, Sans-Serif; font-style: normal; font-weight: bold; font-size: 22px; text-decoration: none; } a { text-decoration: none; color: #306482; } a:link { text-decoration: none; color: #306482; } a:visited { color: #306482; } a:hover { text-decoration: underline; color: #3F84AB; } h1 { color: #306482; margin: 10px 0 0; font-size: 20px; } h1 a, h1 a:link, h1 a:hover, h1 a:visited { font-size: 20px; } h2 { color: #3F84AB; margin: 10px 0 0; font-size: 18px; } h2 a, h2 a:link, h2 a:hover, h2 a:visited { font-size: 18px; } h3 { color: #435970; margin: 10px 0 0; font-size: 16px; } h3 a, h3 a:link, h3 a:hover, h3 a:visited { font-size: 16px; } h4 { color: #3F5469; margin: 10px 0 0; font-size: 14px; } h4 a, h4 a:link, h4 a:hover, h4 a:visited { font-size: 14px; } h5 { color: #3F5469; margin: 10px 0 0; font-size: 13px; } h5 a, h5 a:link, h5 a:hover, h5 a:visited { font-size: 13px; } h6 { color: #587593; 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: 7px 7px 7px 7px; } table { border-collapse: collapse; margin: 1px; } th{ border: dashed 1px #8099B3; text-align: center; vertical-align: middle; padding: 7px; } pre { overflow: auto; padding: 0.1em; } /* end Box, Post */ /* begin PostBullets */ li { font-size: 13px; color: #304050; margin: 3px 0 0 -15px; padding: 0 0 0 10px; } li ol, .art-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: 10px; /* 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: #280E01; font-style: italic; font-weight: normal; text-align: left; } blockquote p { margin: 0; margin: 5px 0; } blockquote { margin: 10px; padding: 10px; background-color: #FFFFFF; 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 */ images/vmenublockcontent_t.png000066600000000214151375153130012607 0ustar00PNG  IHDRZ" pHYsod>IDATXGckţa0FhMi`4 40FhMiiPU\IENDB`images/pdf_button.png000066600000001017151375153130010672 0ustar00PNG  IHDRa pHYsodIDAT8O9KQ%66V (6 n bDI)V b AJAE\ db&f2[2KD'3dQ0oq}*@j_i=d=$gAy݀ia_=S6@yE2>mkZ@& ;Bȍm04JcyAeh  pPCVR=1r>h+qB|@@Lk6s)P /A&g.CGs'i>!7۬(|ƋD&]"`5 rqH0u,CFXH!,|8Uv&׮Cr_RddiX@߫'KUzt9HtwJWu~~cio 52 [eIENDB`images/printButton.png000066600000000403151375153130011054 0ustar00PNG  IHDR v4A pHYsodIDAT8Oc`@u]j1  q4=uE9v6nO_߼f`g;y5TG6KjtW,?B1L- 0 bh dlAg,ZXPAꌳĠ]Euj#Ljw|6La ͸0fsQIENDB`images/menuseparator.png000066600000000144151375153130011413 0ustar00PNG  IHDRv6 pHYsodIDATWc` fnQ@nYrwIENDB`images/preview.jpg000066600000104775151375153130010222 0ustar00JFIFddDucky?&Adobed ~/R      r !10"@P`A2#$B3%4!1AQ"q2aB# R30brCS$@Pc!1AQaq 0@P H#p~+\Zgzj,srk|'/F^gx&C=0:0n+S-S]\h^#\rxubw1.@P4)gCUv0z0VfO|}?/FF2 E#|Lu CP"515\g1H-rV&^^IU.^0R&Ye\WU8CG=17cq7Ũe @s (>ia`aNu:v/?Lustcov1دGыOgB`XZ-55Ag\|KTe,Q_uؼs#4zy^'F>+`^vMPGH@5YZt܊`Ti#C+=l7b7U>:X0 Wn26əsZd0ٙ-͵gugc \3M0:sːV娤[Z|lVՔ` E~bkaϲEDaJU\dm>F&;[▙Ѫrtތ6q[K^Vm^M^ZS6P%.s6{f_a!jcSv@*O5FӱyFvѡt::E%rC9D֩\`DbA\1JT!le1J*kԫSdm!^+l1+\vG-79F5X )dmX6J k<]Y;eKn*G0N FvV;?HVw!k{=3\sr)zV@'pMC= +TCih EO;#lyJ\'sFՙrX ή:k*xe"7ZK;CHb*M%XH w r*qTрi4';\Bk--s[Xjyy奖ns폾Yf*MY=<"'L7\QgLU*\@14^f639{15:Yi!55ZV9{xl4cQMlXZf6ie@r<3Cijgߞ.% _- 홫'{8N>l㪵$z0TfpɕQjUVsЈ/RďC;+sF,ɂ*ܭX[Yt766*N|M4S3YF:o R\C ڨ/RVjΚ"iB6A^[\ѸNxNJzicijERK@bjC&DʘFZ恣JFwPVúՇQXp, ##Lfhak#\d7";د?х"F!0iQYi69 /SV5*2Ȁ14̉ipj6PBaQV `D.hT34ddʵ(TWNW ÔUAS{bNmm2CZLlr`6 A5#sV' \ 2"a!' fU,+ ֡V&އ\brj*ws@f C)'R(ʅgRӸ9j9hp]fFi9   !.=n֤(k),"J.?! Ԛ~:;+,bGjDZ+`lBB`@R DNtj"! bgXD8Gfh2ø(5R #0`$$$ ,;34 5t$*5!tEӺbJDsF!# BC, Q!#, p. Fk2mlgGF 4D2wNt,r88!jQa]AT,!IkAH j8סˣ50N@8rYdؗa˦'6Q\ ԯSa\Ԩ:•N&8rf ngڐ*wN8JGjnPZK\7Q-hNaR*RSCkuf*׮br.QFUbR6 w °LQCj+p62Bt(ڀgT8r.hk ECJ\>TcqFUN)r&R \"'dКRN @쑧pT%F 4"|:",Ҳch5#eDeDNJ(ҷ0Nm YHLU`ڔU%rypZ)sĵn[RJܞ]RMULBYrdnU6z:8, '&Ds!M$ʚw v*P*\0n.@@, M .CJd\rZBZá^qUKqw@QXJ\pp9MyteE!d׹ UjPuTYQQj\c ?:n?(Oxf!|(q U09YǕvE,>~-%=`Cf=ڽK rYYՊVcSa7~81RE*c"QBqR\b}#.|UuY38W8jJY0ṕwW!ZSFТRʮ8m"tM6urWL,rwWF$iʩLir>[laN 8WUPӲ^̯F>\] ӕ4R%c Gygum"%%ąW:*OEx4B4YXuaW]j(o3,[UBk.QW9]d0,H;[2 #)JISevs8LJV__VҌTD.\mX?lf9Y3WSŌ1뽝U5q2-J\ƙ% 9Hxnml';g[6r&0%WD`H5HnSXx\+3uxtfgn ʊ0ʊ r cWb&EʚLb)2o5U5v'6cӏ+9ք ]+QvǘIN{ HAcXFaJR+.-U,hf/u}}mA#UXeų"Tmm߸JL1BYiKծG"V2~DGl$A3d@IBDJh@# Kb=#HdcBBeIYŀ,ŗ ^ϕǢxMj0lM"ͲuW rDWre$#*H͑*3MfB)VKJE2pXcW.qɂ5& h\Q}F)0ݹJNZ # V* !T#r'uȜ!9R_[DHFG&{H)V7ޟR~4μgH _Mg]n`ƌ/g2 Ld~E/͒s?;(S=qf6)ѻ$/j(eJ98!!/ݑrBG/bP3 9Zprqb?tWܒfA^[n)nB(SjRK JBޓӐk´bȊ!( Yp(_\"3wN_iI{sشڱ{fl)ӲdS"ɈSEveeE bl1 ئBDd,ώBlQa7sF!Q\KՂX#!Da;1+<(ô@څ ֔>!7B4%rR2!`-F+qzԂk^h֡TTh/ 2%Er~).)<)mQ.+" Q 1BBžuX6a>j]T~)CjQh01Ԅ+tH)v,|)  26#$וj+IpC") )耈jض-m[S-յm[Vŵm[¶2-V `[bŐ8)˺u$$[\Kqd[1Lɑ )2m+4W'xQI0+N&!:I;P[TbG+qڍDQwS2eH+q-˱L+1(t4 l*-]PH$;ca] n&BF(H71 @~ 't@F(-ך׭m f&2oWJ3QƸ9̉(q &(E3^W- nwfGN*bpҩqϘ-XOx (⢧Pҫ JʻcT(THl_z?fF:B 1nNy\ZQdKi_ڸ\U,w#OJSS$ L F׉A$YVnD>$m,ҖiE0S" B\Wf _}c3e) ϵK`!(n{)E:>?bY]m!$*B1 ]If))7L0 JDIAY`()!dbIv)LR(O 莒tR(/ -ɓ;uMGPQMJg^;Q6BZ6S/:d@(EHL'LEt"6|Trf6(vGD(Gm#n] WbA#)h:;/( _@^)[mS^'Mt벌QQ[m?o|S~CgЅ/'V[t;BV4v^Q re$~ԠpHvOԨBtЕn)!hL:G(W$n x^ttG} t}:'DJLyM:)O&P)lBhudAD(O+j%CCAd'Ԡ6@&NWnɴ% _O:?Cu:dNh~=O:"6:=FEItn:6P:_t :=tY: C%hJI:bMRt΍(tH jm:tz'c:%E2djڃӧkS3A:%n[WZ7N-oOY64ڙ7KOu #-z܃ضd#n[nO~W{A_Fj4?E?A/?A?A?ٛ{dTbobat9Ouu׳+AFjѽ!sZdgn ⧆坆 K'(Ub(1Ʌ|RlNam҂st$ Je q܃ rACSM?݈j`nTWpE,M'IĿGIQ䴓ϧh=[E;a4kxh3_r]%[Lo۟Ӝ۷X̉DL3ĢxͿ$X V Vg[iBm-q*nK/&R"XV4u3$ [:Us}s3IūVZNW`PcgtOfn^`SobXx[4Tꄮ,,x#]67ju_FK3Gsh;AP:^&q=K-/BZbk vq˼Mm/pCU9˦I4C(_TZ/%fn^jSc7=#r눀p6h:=Ee,OzuBp+-awJLvy ;Tpzk'ۢm~9?2 wmNo F8(1ї6i%fӔN:o ;4 xriyL#^oz鹤Nј[&hwBgZ س$FtZa0? pٞ?Bng^ , XwxXo _OCx^[.\q:˘Ò|_Qv mAe"ѹd2¥꿈(;y܅Zz2n 5L#^Z֟rkLjijK),GahL"8EN`;6A6Vw,vMTg|TH-Q+-v{d猥jgaDef]p(\l []LU/Z71Y| 5cMY .^ +ov=KFo`'.]-U=_or2G5nDl#K:f''4c(zQMgbsqm#AEko1pZjy=ʆ⹇Mfr\ a(1 ܅*.3#r:6erۺty pC,,O>_ \_Jxtt.E/z%{$wQk'PpZekAt5\5$+#ێ\FXs4$\Vm&CuZ'.I63޼r0![jh(|[cB|=IEMK >}Q.Tn-\3ݻE8Y[&Џ&^_)pYeyY2tW #>Ւ"Lɞ̴S]Vf"#4*>K'nwɦh=eq{r1G{-lj t;P6q'j95~AsdVAW3]h#T/Է+3Kg+3~س9y3fpbVg~6/$ſcemO?h\i(oM3~"C lTc[Qe&cSYߦuL3̪c{J۔QSiLS~iMNfk D^< c&~ {Z;֦F\ "ige|omg QiZ56~'_wj˗;qm0wU1˥G[imXtbigq?5 ?۽b3 k@A"nAi(ˆ̔g.e_20Pr1ژA Z-`'%*2-P.%8"s?5e157y-.9V܄Txk5u/<*^MB R?٧+VKR0=l2y{8nF#޴W1[}(Xϙڹ| ?X~j/1vS xl޴fy83v(`8ڜ.CU8j͖1*d{0/NQp?rh e3-mQSFys:mKBxiQh[$]ThW=@<8~‹LT3$M򽮷e>^9r!MФ>Z7kU!F\XPС> x_*.<!ee-+$ۀoǎ ͗:=uE#Dr98&R; x SeyuOV6.QZ!O0kA{7CmL6 kNPY!o5klıܶ(VKŨ,^-:mEϊйr /&X"8T;<*Z8nQDo}Wܣ~*]2"h8_=v١dVը+(*6 B7x\as|-Mޢ""ͧÞkS~j\׺Ȯ ^gsa$Uٕ+3<TxuA)<F:boz,y˟"ҥY NGdLkghuG'lj{8kk\ s]t{1ۀeOܔzC̾Q}1X:-w:8:*3$H T:<=C[GVs<ho?o ,p]p՝N%<-wu@?por<']3QZoiGo]3lGTP=7xCJJq}m~m8';?$HA dk{IBzgy{9z`׏?0O?< NbNM=l식gtŸ34O>oī;XEǯtX>cg ` OiWűwchb9ؤ>N.0 Cg/fb-sVDw*zk:r _f1"AZLzU7Wsd\DwBkwqu3ou(t ;ؗ"Jpy,v1gׇv(w)sLxW0 |zQins^c]ݘi0ξ)מަho;bKSY\Q 0ď@p>Ւv`8E dLωOQ2f /{X Ə֯alG i\B.0dN}>$_ )2OKVU.%iwXd|?3qŵ`VCRvycFuvTF`P{OW~Yaսѿ2A}_,Z_JaFпd|q#M ,:X8W)_r@VElCv}z{ɘS@< 76XL9jJ~㝇 xWVsC%ѳ\Bp)~?E_ܤW8qyB)|w`;Y|ML5v1>%'ٖu?{jpvX)!=3혗,U5ƣ!WdL_De@>'߻N<_Ŀ?f3.ܿ/ .BhSS0'$@P20H#\beg9 76Uzq ѳy }U8,a&7w6ǖnY$br`.ww &:kKB`X]/MoP3GS*$zR=j˯)͸0G&zT⟧d7P4,dL.jgij#$_oc K8ܨ2WܟØȼ $}7.፠Sn2C d/07!>M^}q^CfU]ٟR6kMіG~vo{M҇뼱{lk?ɫ{5\ hQqr["bv->g#h%}viso?.hfA &~5|-ro[h "oK6t~яaRuHqUng; ,R];x-4 )\Vos pu.\^cZ3*D h]Ko I^| $ѕ=E sS7\@]b M._1ւOXJޅ=8PTqT&6بԁ<'c&=' ;F b;96wŹDU?or1tc\Ƀjch`; *)+y3Y]77Oa E/+FIJwpd 3]k褐ݨy00ͧe -1^;ncrhoʉR*1{6,rU¾p]|N(0N|>m?}QJÞM]?6bxIƢR#o/,UG]V k{(h7xl,J4oWg.BI/M3 -|`t D/l #g8\ W#|UܸBmiX{"M163]CyOr7.>ql^Kfݟ,bǎz4F@vS^p7O'Q>>#hjs,(m?)LR{hs=P-hk_̐W+'Wn?/ 't/iSQ8#3ȚI1o"S+G**ǒ_UGp0%㒣|ȏw-'ˣUYښݪvFZ^{EPF2e nYh{?|Mk~hM1ĜN ͚~+ Of>P_yx~jW=kʸNJ c0[_~@W=fY1g[%@E h;fIcOq/7r `e &|Twv>bz9W4y[bg4c)KZa ld070Ugo9?j/ff%66f.bif(3C+cZ}E{~}?y cqJ (W Pbve" F0jykrcVYB4bbP,n1nU\<Q'f6 \in]=1jnO*yt~$y_Irg_r_%0J쭙M瘀rD wwqqy~'cүKeM( 0Co'SR̻w;){?e%^3a&EX4)T\ɥc]Wt#71?)Tg@Ɍ<׈( ƪf(XCFk)ag;Cqrb$U>Ī'ĽcT8 wk75+{2_%5PnTĕ3.=A R;8û~5+x`IY,þ3m t~߯O xP_084%xezEMB(e!%?+虤94L*Q(zYp| SU3v~1>ƉA<"N~f>_1(!CI܏H[m] 8uEɿdr{߸kr4y̴(+ }΋4`OvS /=~Aip)̮eM4O1kfLJb7L1w Ihes[7v b̠<źbvUeOt|iLN=6~lR/mg$ojm߳$tm T(JYy.Ɖw炮qo$c#/WMIT vXx\Al~}%}x'~ 1(%c@Ӽ+,_XL1/f%ax̅* ,K- T*I5oFHm6l UbGĹx9T0lj,uU9>u"Sơ%"|d?^%˗i8q c l7b19|/2 AQ5әF` jKE3M8101PsaDNCsȌ6VZZd2gHXUJ2J(]Z%V[JY]U*\^{7S*[/-(jP)+}+.WZk+Һ]a/1*TRTLK&:bbWQSK*WEKRS}ELRtz?EJ*TRJ/--/p:/+6чE\.\r_tVPª\bIE._RSrE-//֤j_rR;r˗r/˗/?\}N_,qkO+._Jt[sC]+^[ I}ZTF t]j\ /1uBB3pa/QֺPeJWqЕ,>Z5>RԚ}0:\Ir+:J}2eK.Tο?!,%06IJ+QN@mb_>H/W1\u=9HU;PRp:T4tK2yA%˭ˁhAKY^溜H,byD?/%ܨw} \u^56|I)P'\w,`Bwˣ670AK:Sh咺_5YcXa`/G_Q!50s1z}gL}lq^+GG&gfw?Q3V,eY uu %j+1^*7("E.o,EzӥcrsRXj5]B|JTbyuszux 1GDK-7.m*׶Xx2 A5) bVu7P[Rz"UJBeu=AҦA.Y 'M5[*UƐ˹B=,bj~}a-+tz2T~ЂT-@&_QwMzKUl=6JWO2BWaunUǨ+]Et/UG_U˘虇EaHhG[)(qIU+_@uXʚrtl-Rfl7u U::t.\%e&1)+ =,+B% 5Ĩ/lQBT.\}+냨07>=0)t蹔~Kz}owҘ.\}or=/ =+re,.\J?@G_J&$_JeiJ+J=юHUJTRJ􎤩RJ¥J!I^ڈ.fffT]m*TRJRRJ_*+\_%P"J]\T*'Ao/}EgTECI]n_}]O}j'Q0aԕr/Ir_]t\%t%:=TRR\z^aKr1Juу+.WqIr_  _qC̼YY< CCyT 9 "2ӚQBVx<~%sF0HUV)rnPVPPۑDKWL`ԭ 'mꆰ!lOa-WiGuW}+UmpT5ُ 7mb?g"\B`b&͕].Ɖ)ƻ.N 8Vġqi]\a65{H4B]i) WQ#s?{&Ҋ |yjmYUSUY|cEpQA0<-;%a,,x >[HJݻ1~QV7Dۀ1bgm&³Vqc{ 'i@Vk9WA)[*qO7|R7U {ϛjXnz9E¯b9! ×vݻaW? E%Y}1EQ@\0YuD`)Ii5)FXYЖ 3}?@F(¨nT}!_W*0T1I, p~${)Tke&ƓO9܀-^TBmNw4{D2 NЁ+mp"u]<̥*g|VjF,% f & } /o`(;iY $2 .ֈCP%& ᪠Qֿ'\k-nv0Kb=UX!=8E0 X4h;- xu/z6 d'?|͈Rucq^4 Q4Ճ.O 1r]-LDNev91De ~;V*e.ajFG!8g?<19į{e~{1=?$<@ zSpj ^apHv7vß[`p1 m9BoQUN=t\XW=爤^Q0}4FW(27 @(g2O*fƣFèOxŜxFP p(@l:SEYwG''#f:P,Gb1aZY+kfF Mv9BKXQ.(ώ%G]sX?3|>{snk <" kC2 ;мT8,tnXhj%0&"9vg8s* lua}{j6Lݭ/ a"0fB᱂H{[',[گ=Q]oռʩ<K.YDn4nϘi5<,3(*k3| 3Ix5? KQw`1O[Je9{0?PLWwq_$1lh_iJ !*C'{'GUFC.w ;Q+Bn~>k jI|>2 .Tv+!LPD <3AYudC򘃘fx?pJǰ"*5{a ^Di3k>eg*啿Ɣñ[c1|j]fH<{ 1!jJx{Bm[{+9ul a5uPi(Xb^U[ &6|< UOS&f0Ć*ǜi)k!O,|Z|AvA_0w A]wƕ~7[=2;台{6BQGm:/!~މi:Yf4ڎM02p rPl_0j͏Dg^ Cm|1:D V9bl3'ڼ h&k=0[8,\ V߲\z8ŕ5gՆ| Z4:ӷh8 wFk!0kC?gCV՚ S؎F_mwxMq@m8Ak[0QWxT䊑R;3eM'9{傶;FPh: j:蕵([d>q+orB(MVVd&e#CT>8@ADh q0ṅUot9(A:q]|X!404Ӝ'wˀ/^YՃPM/LCt wCTtD]نo"V.}zKχ0D7FLq%JMLڕŪ.PP5\Z$%ڵ^09"+oYGz~hW49f![ՀѣP,Ҫ `)wQ|rJ qy?3w}Bnev"'v*kp |Xqd3[P3E^l QC)U Kʧ%q rfygl/텹Ajp37pZ7n,J c68 teQv~b\Ǔn]/j&x v} sG0!'aGc],\Jv0P&d[3NB.GH( {k˸EoU~ڹԦ,g(V}Tw WYu? gyxQGȏ,/B̬^=,qSLf14@ZS N\@ ,,n*[~ PU͉SAXɠb ,6 f{g,{<Q;˖H}0) 6gGJ<|$D6W^b4f]g[kxbw\x氡Gvtc؅EU}ܿ"'*9ǹyulPLX:Rb@(6#R\c =Jc`X岚u#bf9nWV%m`zj:uZ;@%x?LMczP byj*[a4t3-&eA%A޼K(e+R{'q0a?SV8X!?ql~UFrz5@ܖ\@o𖅻y=ۼˋkX5ЄBzWH{ѷ2m̮;%G ά{EHꫬ +гfV|*QW?Sh[+wo-X*"E 1Qe*Qh.cOE~*Zm]?p=/fxw`0$CT.?G,n!q_JaD6 ç?3Mʮ[;A`|@%,z;wL~y=&ؒM4p\qYfCbCRNkU3͔)b. @U+(Kx;At "0trWrdo$_9x Q[, bڇ~>%^yP.;)Ⱥ%x% +2}+i0Ayk5Ӕs#X28!fsuA*'GSQ\<@"Sƞ9X%žfKS xW&PUP/f@DVy_ aSNP_BZcY!ȇ%* knd2S20̒a2OO m( pnssyq,)ibx5{1c`-r'Gn88ab>W}{Lr B]hVjw4&h UE!"Li6c جG]1Zys)/n1jO!x##Ao4ZU犘Âu7Z*m3T_;@&^ڝPbnW0Kx=Ts8<c L^_pUWPƄvj8Y # 8Cl jyHC#4լ_",Ʀ+5.;pvqgcH OEZ2fJwi#_!%(Myj1]Scp[M!ɾBSX)&ڂ(_ՏGZ%mg*@l K*P|VC#9HeVBU5U= ^ \$ټbXf2 =L 411Rg'W2@\9LjhWO khMV-E6Z91uq[Dn%YJexCmo+78,y_1iGސE%<8S3; I !5v2 VG?zJa>3@ؽ9b2; ,J+r5 cZ,o jY)xە5/߅…6lj\f*q^O _"&Ӂ`0۹5/j5m*grxaR}XsN"W<@+N1Lr%D%.L&p/H6iQs} G- bXEr;_% X&SS*jqv}|vc]%8F%9bg>"pf-!8o#LVV/mlcޜV7/8z8^`; 00Djk]ƢKD^;* 9eC~U*[aK)_X/ЖFxzg! 9?x)UqA!q;dun3 `}ɡQ`VuaohErAuF6[6sJO8ɌkGp23}%05\EjaZS2>vub֍bЊ,;B1Tw?Kŀw MC,䬟@8YDXxٰeE>Ve(NWUk9ras)g0BLj3"jk1=^WgL>g3)n _fc"٫VZ5nk n m dqtW2C-;y{k;{1P۬WZÇq%<7)VPt-qrd}dhȧ\ut<tR{eB91#$P+>bt3xo3\Kgqwh"Y~\ @?hMa/hLrei5,hb^ 8z@ 4po&82 %i+VCc7}#bǘ M%V((s1ghr r  p/~cpy9C<BUb=Gad{{ˌul{ߞ|F c5/ tmWyYȬC6M\;VMuLhʵ6#6qѬ@(V|A(UE^PHA*l:P*N+LiU3Վ&W25Y3@ :!D/0E~%VVXZVR7#R$fKep2RGzl߶+IsUXDz6w-]x:TJvpKRXZe4dž0D2R>7^%=<Ƕ+_(ҬԨ@1jf-*9[[ɍo$ \ѨD#g,ԳKn G rNo=I&ԽYNar&B$:f/2QĮ @ ܠ%ьiswAlĐ.U:*]r_^XʺN#^exnZ7 `ĻEEմ9\Ѐe!n9tey{EU=w7&*5̠`,0V͘Dl:/25;5?(F9@/HTX 75,x) eFtWP7zu)yx_C8]isS8*`:;:_nՁ'aR]UE`pTJPn8 ~ݡ[p1dM+w58t\d.\ܖhDx-[ n-S;nB4jl}׹`fĹ0aw:WCU6e 7Cp55t5URA[JIf!QVJ]W3[G4.Ħ{?3Lsf0vE ̾!5B,ˇUš&RWtW ˖ gHǷ4`0B{bF]`h`q05mWN 3-ʀ-[G. /JEB>74 ">qԹW ֕ 1)ss%;P[la!EB˸10> g"q[95g,7#g/GXB)sf't-hIvUG)Ļ{9>YqgO3DcY(-ycg,^?I,sYYXѪ P,x`إ{ArFVl Sb,Ƀ% Q;,3̨ ϶q F91Ln`Ҙ1j.\33qX,SВ麘kQaIA2"؆3 Ar0kB1>:*Td}.%@%# K IrMKEYJ{JT\`=!*WZ M0Q}'_IIv]E˧t^afFS.dS,F?E%.^^^ EGI`ye;a -31Ig5yÀ.\q`˗.,. MJJ@˗ ̳}Ѻt#Nҏ TfS02TWdn%ѐN`2˗˗}JJu޾R-BIU.T_P.="\b_[._Fڨ:Is\*\WA+_pc+ ,pR s^lKz5.WA ^x,BdY"&P33$Ds.u;8[t#qF* CVrkeMs-s=E .n4J,crq55Зs.\ JLJRKzP'!nYB."%u530,jiw!x}UdrKC.$eR\!֡H3+,%ʢEL99_ѨX*FnBb!w7P* RB MܠR_Ae9b;,cٜ._c(,q,̰J}A/™ (n+1Z5 ibr@ aF! TYCe \&qqOMj pakE,1q#X }*c7P?>(_Kx1)8g;K2.+-; a%/03oE̓qYx&![{!+u > ](yb:aHts/~=L0~ECؐ:_P) ._E#fR"$,.M:B8 1 ,-0e u}+W:-JE%Ei%#Πu ^501usP,f&+2@;490 tǴ!VAn0¸g*irͺ@ M̫C~?A=BjiC%5* )È3Ku#d'Sܷe7+N '8H=/H#OLAf}?ӧ7U;_W4SwHH߿`h tV4"q ;@ @:@td?@c3@-M<2 ,дz6h|+sBIENDB`images/subitem.png000066600000000135151375153130010176 0ustar00PNG  IHDR03 pHYsodIDATWc #'A- IENDB`images/postquote.png000066600000001224151375153130010571 0ustar00PNG  IHDR**[ pHYsodFIDATXGWjA^Q/$d{65?@OϬaA]z&"&xIr ++ +Hd,m7_U55QDс@t :0L#ÏdPn0 ?y_B\&:nK.+AR'\_g|H 5%d rE;Ej'5w*&Ԣ}`ktDz's̫/8wp'QPMXbylN|(xAj'N$<=PXIWGM+4%\_-nW@*`0whdP2+OEG[G;?nY=dN=ړO( ~|2zacŧ*O{ y 1_U\.dl7zv(zB|s/Ң!\= fy𹜳|cdUapOjpyV>\' ĦvI^n;!.-F(9&a6@LDW᳢ֵ~|&;IKbӼ~2(vsc2qp\kk<ױ*Ë4(o-zuiIENDB`images/block.png000066600000000277151375153130007627 0ustar00PNG  IHDR pHYsodqIDAThCر @%D+@&i}̻0 0 0 0l 6x3ĝ```xr d=``~1C:R*3b{&IENDB`images/.htaccess000066600000000177151375153130007624 0ustar00 Order allow,deny Deny from all images/blockcontent_t.png000066600000000214151375153130011534 0ustar00PNG  IHDRZ" pHYsod>IDATXGckţa0FhMi`4 40FhMiiPU\IENDB`images/emailButton.png000066600000000662151375153130011016 0ustar00PNG  IHDRa pHYsoddIDAT8OKKBQ7"3 z#K5$C%lpA"AVsѤwpof̑~uI )X"C E0\G apct b<4L7ɐ(3 ,=ƾes[Ya*c ]:1+5ܗc"[xUϋCgC0x^B ,o2NsEep|gNn ,0xN3~@ Dgƕ]nRdGQ6왻gT@- PRL?Uޭ*y{"{s=)4omնiF?-/V/5IENDB`images/vmenublockheader.png000066600000001234151375153130012045 0ustar00PNG  IHDR pHYsodNIDATx^ڱ _#&6Ip>s```ٝ͡```!G 0 0 0!eb``B 0 0 0-_/```!.-_ 0 0 0!eb``B 0 0 0-_/```!.-_ 0 0 0!eb``B 0 0 0-_/```!.-_ 0 0 0!eb``B 0 0 0-_/```!.-_ 0 0 0!eb``B 0 0 0-_/```!.-_ 0 0 0!eb``B 0 0 0xaY 4\IENDB`images/sheet_t.png000066600000000654151375153130010167 0ustar00PNG  IHDR :DH pHYsod^IDATx^1 @сR,:#A؝vy5""^y h@Ѐ4 h@/yV4 h@Ѐ4 h`J˯^gsh@Ѐ4 h@Ѐ6P{v=зÏ @&3@C @ @!|7eA @&   @ @@ : @ @    @ @@ @h `7xW @ @ @ @@# @'%r(1IENDB`images/vmenublockcontent.png000066600000000261151375153130012266 0ustar00PNG  IHDR pHYsodcIDAThCA 0A;@DMX>[}s @ @@< @ @ B @ @@B_f]?zsIENDB`images/block_t.png000066600000000213151375153130010140 0ustar00PNG  IHDRZ" pHYsod=IDATXGױ D?[H)DqW\TcӀ```h.*IENDB`images/block_b.png000066600000000212151375153130010115 0ustar00PNG  IHDRZ" pHYsodIDATXGckţa0FhMi`4 40FhMiilDph+IENDB`images/vsubitem.png000066600000000152151375153130010363 0ustar00PNG  IHDRC]o pHYsodIDAT(Sc` pڃ #p?0ЌH ;IENDB`images/sheet_b.png000066600000000607151375153130010143 0ustar00PNG  IHDR :DH pHYsod9IDATx^ס 0 EAL'l D\ZgWU#@ @ t. @9 @ @# @ @ @ @@@X @ @@w @ @ @@, @ @@ @  ` @  @K0 @n @60,IENDB`images/system/printButton.png000066600000000403151375153130012400 0ustar00PNG  IHDR v4A pHYsodIDAT8Oc`@u]j1  q4=uE9v6nO_߼f`g;y5TG6KjtW,?B1L- 0 bh dlAg,ZXPAꌳĠ]Euj#Ljw|6La ͸0fsQIENDB`images/system/.htaccess000066600000000177151375153130011150 0ustar00 Order allow,deny Deny from all images/system/edit.png000066600000000516151375153130011002 0ustar00PNG  IHDRH- pHYsodIDAT8OKA"8+9 1HO< Z B(f?]_]h/;]u݅1 Ԟ6 d?wtBІOlC%  ^oTJE"Re`ף+yuK# e eJ 3('SYrWK`eo7ڳֻN x8HOʐ/+ 59ڃ9ɞ1ko`Fh$=w>IENDB`images/system/emailButton.png000066600000000662151375153130012342 0ustar00PNG  IHDRa pHYsoddIDAT8OKKBQ7"3 z#K5$C%lpA"AVsѤwpof̑~uI )X"C E0\G apct b<4L7ɐ(3 ,=ƾes[Ya*c ]:1+5ܗc"[xUϋCgC0x^B ,o2NsEep|gNn ,0xN3~@ Dgƕ]nRdGQ6왻gT@- PRL?Uޭ*y{"{s=)4omնiF?-/V/5IENDB`images/system/edit_unpublished.png000066600000000516151375153130013404 0ustar00PNG  IHDRH- pHYsodIDAT8OKA"8+9 1HO< Z B(f?]_]h/;]u݅1 Ԟ6 d?wtBІOlC%  ^oTJE"Re`ף+yuK# e eJ 3('SYrWK`eo7ڳֻN x8HOʐ/+ 59ڃ9ɞ1ko`Fh$=w>IENDB`images/sheet.png000066600000000321151375153130007633 0ustar00PNG  IHDR pHYsodIDAThCס 4 B( đTh9=g, @x&->O.]D @@ @ @G @ddIENDB`images/logo1.png000066600000014462151375153130007557 0ustar00PNG  IHDR,d< tEXtSoftwareAdobe ImageReadyqe<IDATx]^Uu?_d?a TLUU)Jbei6Ib2-&4*X ֶ BM _͖U)32d@6Bv!b zuow{{o&ߟws{FA@PLK @K T3>vNݦlO:¾'*+PǕ]R&0@ UHu9eՔ}Ilj@H)] v[Vaj>5AE!"0iiuq*yAxe BX veWvb9"QYVts*De BXFkȞSz>!-@+8@]U)~Kr!V~<4i]lv@+o ves3a@}%I2@PJ(qߑ[u#QxʾN%[g6=~/y1n|tu6ȋYqaʆs Hs߷^E%'J* AY|VZ~oDdIv߹/.a@ޔ@]i,`uVup&O%"-lm|~ƏBR-_+ӆ;𝏐W١i,*Kavʠ4^'&E]ȤDT s QNѻAm6Jpmj%!@Oѓǔ⠲A^A*kVUJ]GQq 8}ks2se]RM}wm2cy `ic nй a+,9ܯ`UưHVֺkAnW2p! bjv`PI\ɸƟY8UZ_WBi;!g>agϵǧu;adIyٲەu;""~H$59xCc>&)l1>w]gmm 8h6u$uXxߛ X#^ؽ1E6j\ۮ! (_ [1̱W# T5Tǂ\+0o x|mCA8Csbb7HĜ }󽰴ݾiSğ R#y EF-*TBXJL2B=re(*8?aʆn5>ۑR\g'Gƭ=B߰OVCuv(>&-uY+?BX}1O%k&䕈MeG1e_Ų4@^Tm[ZQ i7xl߅ⴛ9;rO! jvŸr\s)2օEyY{Xq5, kIPV (BgNǤzSnӯz,J҄gjwi n+ZO+U#5,* hI0doU,jlF +v߫>>ueֽʾOdR4,$ zF- n[&-Edfl!͜SVsGG;h3\N3 _iQ.;~g@dHs8bVp(?,EiꃉƠZJbm.9b ̫ $d_oC#,ʛrϤ yPءmb[h9VK?VvWҀl@×}'ț JJlMjd$A*̮ސ2{d&53s ݃F?<E˰})!zaiZ˕y9S=}[ɛD"Yf!|F,{)LLK}R"䕧Y8I+a/e ٢|߆B2qG:6ҺHOk7fIik9j4V&s6fh@Llh4XpLLcN"J>B-Ba}0?D!E!9;e* y}G3G9=?zqrRqKBc^VB%`u.lz9ԚG~㻇\:/!QJ A\tCܿgf?kT@PZF.5ӧ0u}od 9ek@A$%vǟpLn.@/6C.>f[>KIX~'1tL w"fzVeϭ*|dB.@ͧ¬2U>Օ}ݵc7Ss4ʸ,t "܇irUg]f BȋYe ` LR:Fw֮엕[QT $~}O+$w 2a,gWlAJq;Prl;(E074P&S1vy˃09$qkdP hZa]1FJIׯ:¯.ɮVzy1p<1vq21F^C@/29aי^fu4n0U1yFLLzˬ ?f7P Ȁ0p;ܧț9l8X8Tٶ?؏̈a93v?L{%8#ik6Jr\-JB$/_ͅ@~(|W [ (2U6e}\Ϫ=Q+e\v7d[-ɪA\V;[P(a,u7ҟ::;ɋfݟNt7:kNO]ж~<{.~F@6vOpc6/!ZYaAr$d#1Еe[ zev ?TvKą`7vui~qWq:ͩJBI{P$ov~䕱, dE A&SX = RxI=Qr ";XOˊn;ɒnn"?`i$"v(`]RB҂d5mg`@D^^{ d#D͏4p^qW?Uw m9e 8^v}lJ"HVZeQVpɑhGDFA&cv'ΎJU&iJkFJa7y5رe)R#D}h‚?%^FlGd؏S3F2hk̈v8̕&|}iQw& ({ArPZ)ɒ\ KH6\:(d5AV>Ly&Dߧh2):zc- 73NX{+Kh֓LZ=o֊B-$.ŴEV\1nN{ݟdyC 0,&AN-*e_h# 6Ê=dYT^8qT&|@u+D"aBa6AQ>n*Uk1s.ZI -oE1q ͸r$Dʧre1\vˆHYVb0Pz=yJ#@P!ߜsYcVY܊ ).wTR&ͤJvE-Kо:,ai^p|I In1aml9r/XU[1HYl ڢlv%% "l ai:U<Qv^FQ?\娬pܣI4cZaQpLVX& 8hh;=`:T4ia5hf8;^Y ]aXJǿrMU[H3ͥ=I-9])OXD;`qG:F͂}G=/T]*W rINr<̩aT|VZ(,KӰY/APy21Yưl);s:y3>t[UyЦ6fYuP0ZHX;m.əHiUǟgQH93P(WqFڝjnd 7 ;̎v' UKm q4s?;pKKXaQz HXd M%Vo y JG>lrHae]g^]™1\#ԕMYx4s^q-Vd|R"WL!'ڝQqN.ə۱iKomBaOZ,J1Ge&+l^(?2*[Or"Mi~!,MkE}٫^juaʰkϪ8a--ȀKՖ7V5h7 +j%Ki[ʟ y5c=cT*h,U Ӣ&Z|B, rK};5x-{?=3P5$A]][n6RD7.rۇs%[ψlCΧ3 N:XFr-tGE ;ؠZ)6hEO([h(8 *E| LM/\U?O;[xz6V\an=&aتHNmay- ">pyOTV7GCHj>o*Oٟ+UVM+,.@,Wcjȫ0B6h4!"묊V1z5@XNe}=E%v3zCބ҉\{g2Q#yUqyhq!q;|K, q/[jt&*V{J1(Q)^^ѨmGQb!{?R #G"s]ބu*3KSTW#:lTv1{"-1>ŮbyMPNs+JXY.q*%slt" 7ޑ4+t?g_= drh5C"/ZaMk!Į3iy=?)|63wOщ.ҤRj5h>H}mws۶PSRFXZaAA]9ROIr+%ĸ>7<_#{UyT|N˯xҀf@a)< "j ~lPOk(Q/H?{ :3J06~ι@zBZTr.w>\өZhlV=␕Q&ʹQ ʛf{՟ a}]8߷);)s/ aepIBgeB5uޮ9Hř􆫃ey",ܹOIaDudÑ+(%" .ɰS YUWϘ,@ gkf~mVj#Ll&:^BXFsKrN $ @v~._ҫد#McZ!5 9,ptIc2N`֙hlqMl7I;8Qwhw^Ѱ{K ο8v AIB=}_d{ܭS)@>4. (C+ԝn& G巛 ÄmvO?h% ,hӛ8!3 wJf]Ϩ|-*AXA\Sta veFf_ۡ[7֤:S%`j֕1OTPTHu$/a6$"^eVQ,.؈IZzQyڹ:&Q!5E8cyv/]YeCD^ 14/JLXlw )[|a}R3YV\5n ":~M-D}f;JBXp rf~s- &֯+y A)NmJ+aeN QU *ĒԟLK&ٵzys)@P~šN ^a5 Niwq3>aFtf5&2!,` +RBJ&v&Z.D`u^|OX,]>{$eS\"bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8d2`ي2N0} >bS{1FC)!Qqf(e8-'Pem2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:@bu em2d -'P[lN,؝C Ym:A>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m*févԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6K[ŚgiԵYp6\EfWouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mUouL|E`-]SQj6*WTTZ 0mC⋢C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d>贱 C.K-,d> 8K>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>JD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3.fD]w0 "`Eߌ(Q~3-[}s @ @@< @ @ B @ @@B_f]?zsIENDB`images/edit_unpublished.png000066600000000516151375153130012060 0ustar00PNG  IHDRH- pHYsodIDAT8OKA"8+9 1HO< Z B(f?]_]h/;]u݅1 Ԟ6 d?wtBІOlC%  ^oTJE"Re`ף+yuK# e eJ 3('SYrWK`eo7ڳֻN x8HOʐ/+ 59ڃ9ɞ1ko`Fh$=w>IENDB`images/spacer.gif000066600000000053151375153130007763 0ustar00GIF89a!,D;images/footer.png000066600000000152151375153130010023 0ustar00PNG  IHDR 2Ͻ pHYsodIDAT(Scb01@jF Oc %IENDB`images/livemarks.png000066600000005054151375153130010530 0ustar00PNG  IHDR @ pHYsod IDATXG TTUNPT\2̲^>w(ɕ0D\@4Efa\0LdT2L[z!#kܹsg̥:ew_sG礌\×Ky9cT..I[53%}Z+b7ڮ ] uCZO=e.4Oqr1nLIz14//5pQ#tr%:TAm׊0H ]LS7xBNQo$q'ؘ0%M$ *Lsay SW;oנ!`,3Y#pl;dN0a/H qBL;a$> c-n8|Їk+zRѱ(\ ܁صi]}aҨ)C+#U2YioVFWSW`u(ڑ\ vQǿ5Uh\6'< qxHk!;n<#&p5 ?x£”10!4ȕ`4܊*nS%.r#qcdqE'!m  Y Čd pl2c0Xo E]kt "1)gn6lө1`#(z7XcIP@ +C:dVUtZ qG9՜ S-ەBԔVChsx l)q0'Ǘ=9w$BDfR42.ф6IN1/Ԕn1MjKs2V]HhM4 hiPe v k~ȖbqSO`U[+/bR 'adOP OS=Y<7sJ#bG)8;ԮHΆZ,Y{B8 ̝c_D5O3,2e۽Xs ,R_=DMM-t>ze󟷧/zB3Ҽ s/ci̝O'z>>|0"8ǫs)J-mT-,;ʈL6{5SFD'G}sL+tx|^w} ̗fOB࿾<JAbW4-mfsrߠ R$_clթh1Ա_W |QBF:m= ϷoEoOyihG }$ECp}]:/@"g[ꈅ ?I`Rc]KN sqw(X8]9humIB|IM%:׼Vm9kG)`z#qU!d& nv {S M6+Ԇ9cAo0K ^tgmH[2Np Q9m]u;fVc|U2#Bgk/w30;#"~{ [03]Y1RycI1s?l:dR|olп}'CNj:,Dl:dLjFk?l4"R=Sنb1s(?"QߩIENDB`images/postbullets.png000066600000000230151375153130011102 0ustar00PNG  IHDR  pHYsodJIDATWc` W=o>Uޓ@ @6~U0VMW5_&=HIENDB`images/edit.png000066600000000516151375153130007456 0ustar00PNG  IHDRH- pHYsodIDAT8OKA"8+9 1HO< Z B(f?]_]h/;]u݅1 Ԟ6 d?wtBІOlC%  ^oTJE"Re`ף+yuK# e eJ 3('SYrWK`eo7ڳֻN x8HOʐ/+ 59ڃ9ɞ1ko`Fh$=w>IENDB`images/menuitem.png000066600000001322151375153130010350 0ustar00PNG  IHDRXҘ pHYsodIDATx^1 Om @a 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` 0` +Y6IENDB`images/button.png000066600000003623151375153130010046 0ustar00PNG  IHDRU=^ pHYsodEIDATx^ܡqAѕHJ $P@ Dl2=ITg 3ޯC @|Y @ @F @@5c~"!@ @BB<m @L! @ @@P@M @ @! @ @@P@M @ @! @ @@P@M @ @! @ @@P@M @ @! @ @@P@M @ @! @ @@P@M @ @! @ @@P@M @ @! @ @@P@M @ @! @ @@P=S @ @`Yj ^ @_7)k @,'P}6 @ @ @ @ @ @ @ @ @|omշ]:/L @޿|Fx` @ 0ơUH @ @O= @ @@H@ @ @)  @  ) @  @  ) @  @  ) @  @  ) @  @  ) @  @  ) @  @  ) @  @  ) @  @ =g @,+P !~\V @ @@5yk~9wM @ @/!@ @ @ @ @ @ @ @ @ @mr_Y  @ @@@Wl @ @8  @ @ @  @ 0; @ @A!6E @ @ @A!6E @ @ @A!6E @ @ @A!6E @ @ @A!6E @ @ @A!6E @ @ @A!6E @ @ @A!6E @ @ @A{L @ @e3ď xq @ ?M/) @ @^zUb2qIENDB`images/nav.png000066600000002441151375153130007314 0ustar00PNG  IHDR,2 pHYsodIDATx^INP3XD2`3l0l"XHYԶIDATXGckţa0FhMi`4 40FhMiilDph+IENDB`script.js000066600000016412151375153130006422 0ustar00/* begin Page */ /* Created by Artisteer v3.1.0.45075 */ // 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.art-hmenu>li:not(:first-child)').each(function () { jQuery(this).prepend(' '); }); if (!jQuery.browser.msie || parseInt(jQuery.browser.version) > 6) return; jQuery('ul.art-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('art-hmenuhover'); this.UL.addClass('art-hmenuhoverUL'); this.A.addClass('art-hmenuhoverA'); }; this.onmouseleave = function() { this.j.removeClass('art-hmenuhover'); this.UL.removeClass('art-hmenuhoverUL'); this.A.removeClass('art-hmenuhoverA'); }; }); }); jQuery(function() { setHMenuOpenDirection({container: "div.art-sheet-body", defaultContainer: "#art-main", menuClass: "art-hmenu", leftToRightClass: "art-hmenu-left-to-right", rightToLeftClass: "art-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.art-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.art-hmenu ul>li:first-child>a").css("border-top-width", "0px"); }); /* end MenuSubItem */ /* begin Layout */ jQuery(function () { var c = jQuery('div.art-content'); if (c.length !== 1) return; var s = c.parent().children('.art-layout-cell:not(.art-content)'); jQuery(window).bind('resize', function () { c.css('height', 'auto'); var innerHeight = 0; jQuery('#art-main').children().each(function() {innerHeight += jQuery(this).outerHeight(true);}); var r = jQuery('#art-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 VMenu */ jQuery(function() { if (!jQuery('html').hasClass('ie7')) return; jQuery('ul.art-vmenu li:not(:first-child),ul.art-vmenu li li li:first-child,ul.art-vmenu>li>ul').each(function () { jQuery(this).append('
'); }); }); /* end VMenu */ /* 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('art-button-wrapper')) { if (b.is('input')) b.val(b.val().replace(/^\s*/, '')).css('zoom', '1'); if (!b.hasClass('art-button')) b.addClass('art-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("art-button"); }); /* end Button */ jQuery(function() { artButtonSetup("button"); artButtonSetup("readon"); artButtonSetup("readmore"); });jquery.js000066600000263024151375153130006440 0ustar00/*! 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);html/mod_syndicate/index.html000066600000000055151375153130012337 0ustar00 html/mod_syndicate/default.php000066600000000275151375153130012503 0ustar00' . ($text ? '' . $text . '' : '') . ''; html/mod_syndicate/.htaccess000066600000000177151375153130012145 0ustar00 Order allow,deny Deny from all html/.htaccess000066600000000177151375153130007323 0ustar00 Order allow,deny Deny from all html/mod_menu/default_separator.php000066600000001553151375153130013544 0ustar00 array(), 'title' => $item->params->get('menu-anchor_title', '')); $linktype = $item->menu_image ? ('' . $item->title . '' . ($item->params->get('menu_text', 1) ? $item->title : '')) : $item->title; if ('default' == $menutype) { echo '' . $linktype . ''; } else if ('horizontal' == $menutype || 'vertical' == $menutype) { if ('alias' == $item->type && in_array($item->params->get('aliasoptions'), $path) || in_array($item->id, $path)) $attributes['class'][] = 'active'; $attributes['class'][] = $item->deeper ? 'separator' : 'separator-without-submenu'; echo artxTagBuilder('a', $attributes, $linktype); } html/mod_menu/default_component.php000066600000002346151375153130013547 0ustar00 array($item->params->get('menu-anchor_css', '')), 'title' => $item->params->get('menu-anchor_title', '')); switch ($item->browserNav) { default: case 0: $attributes['href'] = $item->flink; break; case 1: // _blank $attributes['href'] = $item->flink; $attributes['target'] = '_blank'; break; case 2: // window.open $attributes['href'] = $item->flink; $attributes['onclick'] = 'window.open(this.href,\'targetWindow\',' . '\'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes\');return false;'; break; } $linktype = $item->menu_image ? ('' . $item->title . '' . ($item->params->get('menu_text', 1) ? $item->title : '')) : $item->title; if (('horizontal' == $menutype || 'vertical' == $menutype) && ('alias' == $item->type && in_array($item->params->get('aliasoptions'), $path) || in_array($item->id, $path))) { $attributes['class'][] = 'active'; } echo artxTagBuilder('a', $attributes, $linktype); html/mod_menu/.htaccess000066600000000177151375153130011126 0ustar00 Order allow,deny Deny from all html/mod_menu/default_url.php000066600000002127151375153130012344 0ustar00 array($item->params->get('menu-anchor_css', '')), 'title' => $item->params->get('menu-anchor_title', ''), 'href' => $item->flink); switch ($item->browserNav) { case 1: // _blank $attributes['target'] = '_blank'; break; case 2: // window.open $attributes['onclick'] = 'window.open(this.href,\'targetWindow\',' . '\'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes\');return false;'; break; } $linktype = $item->menu_image ? ('' . $item->title . '' . ($item->params->get('menu_text', 1) ? $item->title : '')) : $item->title; if (('horizontal' == $menutype || 'vertical' == $menutype) && ('alias' == $item->type && in_array($item->params->get('aliasoptions'), $path) || in_array($item->id, $path))) { $attributes['class'][] = 'active'; } echo artxTagBuilder('a', $attributes, $linktype); html/mod_menu/index.html000066600000000032151375153130011313 0ustar00html/mod_menu/default.php000066600000012767151375153130011475 0ustar00get('tag_id') != NULL) ? ' id="' . $params->get('tag_id') . '"' : ''; if (isset($attribs['name']) && $attribs['name'] == 'position-1') { $menutype = 'horizontal'; $start = $params->get('startLevel'); // render subitems or not. $subitems = $GLOBALS['artx_settings']['menu']['show_submenus'] && 1 == $params->get('showAllChildren'); // true - skip current node, false - render current node. $skip = false; echo '
    '; foreach ($list as $i => & $item) { if ($skip) { if ($item->shallower) { if (($item->level - $item->level_diff) <= $limit) { echo '' . str_repeat('
', $limit - $item->level + $item->level_diff); $skip = false; } } continue; } $class = 'item-' . $item->id; $class .= $item->id == $active_id ? ' current' : ''; $class .= ('alias' == $item->type && in_array($item->params->get('aliasoptions'), $path) || in_array($item->id, $path)) ? ' active' : ''; $class .= $item->deeper ? ' deeper' : ''; $class .= $item->parent ? ' parent' : ''; echo '
  • '; // Render the menu item. switch ($item->type) { case 'separator': case 'url': case 'component': require JModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type); break; default: require JModuleHelper::getLayoutPath('mod_menu', 'default_url'); break; } if ($item->deeper) { if (!$subitems) { $limit = $item->level; $skip = true; continue; } echo '
      '; } elseif ($item->shallower) echo '' . str_repeat('
  • ', $item->level_diff); else echo ''; } echo ''; } else if (0 === strpos($params->get('moduleclass_sfx'), 'art-vmenu') || false !== strpos($params->get('moduleclass_sfx'), ' art-vmenu')) { $menutype = 'vertical'; $start = $params->get('startLevel'); // render subitems or not. $subitems = $GLOBALS['artx_settings']['vmenu']['show_submenus'] && 1 == $params->get('showAllChildren'); // true - skip current node, false - render current node. $skip = false; // limit of rendering - skip items with level more then limit. $limit = $start; echo '
      '; foreach ($list as $i => & $item) { if ($skip) { if ($item->shallower) { if (($item->level - $item->level_diff) <= $limit) { echo '' . str_repeat('
    ', $limit - $item->level + $item->level_diff); $skip = false; } } continue; } $class = 'item-' . $item->id; $class .= $item->id == $active_id ? ' current' : ''; $class .= ('alias' == $item->type && in_array($item->params->get('aliasoptions'), $path) || in_array($item->id, $path)) ? ' active' : ''; $class .= $item->deeper ? ' deeper' : ''; $class .= $item->parent ? ' parent' : ''; echo '
  • '; // Render the menu item. switch ($item->type) { case 'separator': case 'url': case 'component': require JModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type); break; default: require JModuleHelper::getLayoutPath('mod_menu', 'default_url'); break; } if ($item->deeper) { if (!$subitems) { $limit = $item->level; $skip = true; continue; } echo 'id, $path) ? ' class="active"' : '') . '>'; } elseif ($item->shallower) echo '
  • ' . str_repeat('', $item->level_diff); else echo ''; } echo ''; } else { $menutype = 'default'; echo ''; } html/modules.php000066600000005365151375153130007712 0ustar00 'modChrome_artnostyle', 'art-block' => 'modChrome_artblock', 'art-article' => 'modChrome_artarticle', 'art-vmenu' => 'modChrome_artvmenu' ); // moduleclass_sfx support: // '' or 'suffix' - use default style, suffix will not be added to the module tag // but will be added to the module elements. // ' suffix' - adds suffix to the module root tag as well as to the module elements. // 'art-...' - overwrites module style. // 'art-... suffix' - overwrites style and adds suffix to the module root tag and // to the module elements, does not add art-... to the module elements. $classes = ''; $sfx = $params->get('moduleclass_sfx'); if (strlen($sfx) != 0) { if (' ' == $sfx[0]) $classes = $sfx; else { $parts = explode(' ', $sfx, 2); if (in_array($parts[0], array_keys($styles))) { $style = $parts[0]; if (count($parts) > 1) $classes = ' ' . $parts[1]; $params->set('moduleclass_sfx', $classes); } } } $params->set('artx-module-classes', $classes); call_user_func($styles[$style], $module, $params, $attribs); } function modChrome_artnostyle($module, &$params, &$attribs) { if (!empty ($module->content)) : ?>
    showtitle != 0) : ?>

    title; ?>

    content; ?>
    content)) echo artxBlock(($module->showtitle != 0) ? $module->title : '', $module->content, $params->get('artx-module-classes')); } function modChrome_artvmenu($module, &$params, &$attribs) { if (!empty ($module->content)) { if (function_exists('artxVMenuBlock')) echo artxVMenuBlock(($module->showtitle != 0) ? $module->title : '', $module->content, $params->get('artx-module-classes')); else echo artxBlock(($module->showtitle != 0) ? $module->title : '', $module->content, $params->get('artx-module-classes')); } } function modChrome_artarticle($module, &$params, &$attribs) { if (!empty ($module->content)) { $data = array('classes' => $params->get('artx-module-classes'), 'content' => $module->content); if ($module->showtitle != 0) $data['header-text'] = $module->title; echo artxPost($data); } } html/index.html000066600000000055151375153130007515 0ustar00 html/com_content/featured/default.php000066600000004175151375153130013773 0ustar00params); 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(); html/com_content/featured/index.html000066600000000055151375153130013624 0ustar00 html/com_content/featured/.htaccess000066600000000177151375153130013432 0ustar00 Order allow,deny Deny from all html/com_content/featured/default_item.php000066600000004534151375153130015010 0ustar00params); $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); html/com_content/archive/default.php000066600000003142151375153130013606 0ustar00params); echo $content->beginPageContainer('archive'); ?>
    $content->pageHeading, 'content' => ob_get_clean())); echo $this->loadTemplate('items'); ?>
    endPageContainer(); html/com_content/archive/.htaccess000066600000000177151375153130013254 0ustar00 Order allow,deny Deny from all html/com_content/archive/default_items.php000066600000004423151375153130015012 0ustar00params); ?>
      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); ?>
    html/com_content/archive/index.html000066600000000054151375153130013445 0ustar00html/com_content/article/default.php000066600000005575151375153130013624 0ustar00params); $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(); html/com_content/article/index.html000066600000000054151375153130013447 0ustar00html/com_content/article/.htaccess000066600000000177151375153130013256 0ustar00 Order allow,deny Deny from all html/com_content/.htaccess000066600000000177151375153130011633 0ustar00 Order allow,deny Deny from all html/com_content/category/blog_item.php000066600000004677151375153130014335 0ustar00params); $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); html/com_content/category/.htaccess000066600000000177151375153130013450 0ustar00 Order allow,deny Deny from all html/com_content/category/index.html000066600000000055151375153130013642 0ustar00 html/com_content/category/blog.php000066600000007034151375153130013305 0ustar00params); 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(); html/com_content/index.html000066600000000055151375153130012025 0ustar00 favicon.ico000066600000005576151375153130006712 0ustar00h (<HH䠝렝,%:3%䐍<6')">8))")"5.|s݅x60!)")"82#SM@)")")")"0)vrhzvl1+)")")")"KE7e`T)"*#,%)")")".'uqgzvl0))")")",%*#)"YSG|s)")"x0))")")")")")"-&{wm)")"uqg)")"{r4-)")"1*wsh)")"|)")"wsh߉|}t)")")")"idYytj)")"1+)"PJ=d_S)",%,%)"@9+B<.)"*#@:,)")"UPC`ZN)")";4&GA3)")"A;-KF8)")"C=/NH;)")";5&D>0)")"IC5YSG)")"82#>8))")"RL@`[O)")"+$ÿ0))")"ZTHgbW)")")"-&LF9d_S~ѷfaVOI0)")")")"[VJ)")"UPC)")"jeZa\Pjoomla_images/printButton.png000066600000000573151375153130012425 0ustar00PNG  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`joomla_images/Joomla.png000066600000014737151375153130011325 0ustar00PNG  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`joomla_images/.htaccess000066600000000177151375153130011165 0ustar00 Order allow,deny Deny from all joomla_images/pdf_button.png000066600000001106151375153130012232 0ustar00PNG  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`joomla_images/emailButton.png000066600000000654151375153130012360 0ustar00PNG  IHDR(-SsBITOoPLTE꣣daOD/7 NNNJ%tRNS{ pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time1/5/06ÿ'XIDATc` #X_H.ūPSPPTRiDR!',*! `df" 2 '" .n IENDB`joomla_images/livemarks.png000066600000001325151375153130012066 0ustar00PNG  IHDRagAMAOX2tEXtSoftwareAdobe ImageReadyqe<gIDAT8OHa񏮒,W2+:t ](<џ+h, G)Vd%FhbPEJ[vآ@h_N17 ck$ʒlQV%E7!XR IENDB`joomla_images/powered_by.gif000066600000010133151375153130012206 0ustar00GIF89adõْ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 index.php000066600000020530151375153130006374 0ustar00 http://creativecommons.org/licenses/by-sa/3.0/deed.de. * *All Templates are for free privat and commercial use, if you dont delete or change the copyright with link and the sponsored-link! License - CC BY 3.0 --> http://creativecommons.org/licenses/by/3.0/ *------------------------------ * See readme.txt for more details on how to use the template. */ require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'functions.php'; // Create alias for $this object reference: $document = & $this; // Shortcut for template base url: $templateUrl = $document->baseurl . '/templates/' . $document->template; // Initialize $view: $view = $this->artx = new ArtxPage($this); // Decorate component with Artisteer style: $view->componentWrapper(); ?>
    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', 'art-nostyle'); ?> positions(array('position-16' => 33, 'position-17' => 33, 'position-18' => 34), 'art-block'); ?>
    containsModules('position-7', 'position-4', 'position-5')) : ?>
    position('position-7', 'art-block'); ?> position('position-4', 'art-block'); ?> position('position-5', 'art-block'); ?>
    position('position-19', 'art-nostyle'); if ($view->containsModules('position-2')) echo artxPost($view->position('position-2')); echo $view->positions(array('position-20' => 50, 'position-21' => 50), 'art-article'); echo $view->position('position-12', 'art-nostyle'); if ($view->hasMessages()) echo artxPost(''); echo ''; echo $view->position('position-22', 'art-nostyle'); echo $view->positions(array('position-23' => 50, 'position-24' => 50), 'art-article'); echo $view->position('position-25', 'art-nostyle'); ?>
    containsModules('position-6', 'position-8', 'position-3')) : ?>
    position('position-6', 'art-block'); ?> position('position-8', 'art-block'); ?> position('position-3', 'art-block'); ?>
    positions(array('position-9' => 33, 'position-10' => 33, 'position-11' => 34), 'art-block'); ?> position('position-26', 'art-nostyle'); ?>
    position('debug'); ?> classes/ArtxContentItem.php000066600000004157151375153130012021 0ustar00title = $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))) . '

    '; } } classes/ArtxContentArchivedArticle.php000066600000002763151375153130014155 0ustar00titleLink = $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')) . '
    '; } } classes/ArtxPage.php000066600000023166151375153130010445 0ustar00page = $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 art-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('