<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Kaizeku Ban &#187; CSS</title>
	<atom:link href="http://blog.kaizeku.com/taxonomy/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kaizeku.com</link>
	<description>So many evil plans, so little time...</description>
	<pubDate>Wed, 19 Nov 2008 01:02:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-beta2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Cloaking Stylesheet</title>
		<link>http://blog.kaizeku.com/web_development/cloaking-css-stylesheet/</link>
		<comments>http://blog.kaizeku.com/web_development/cloaking-css-stylesheet/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 09:17:21 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Mozilla Firefox]]></category>

		<category><![CDATA[opera]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=288</guid>
		<description><![CDATA[There is heated debate in WordPress mailing list ( [wp-hackers] WP Theme Directory Submission Restrictions ). Its very petty issue regarding &#8220;link and import CSS&#8221; and new guideline for theme submission.
Frankly, I don&#8217;t have much opinion regarding this matters as Its kind of trivial making point with a programmer.
Trying to sort thing out I tested [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.kaizeku.com/wp-content/uploads/2008/10/meta-css.png" alt="css" title="meta-css" width="128" height="128" class="alignright thumb- size-full wp-image-290"/>There is heated debate in WordPress mailing list <small>(<a href="http://comox.textdrive.com/pipermail/wp-hackers/2008-October/021959.html"> [wp-hackers] WP Theme Directory Submission Restrictions</a> )</small>. Its very petty issue regarding &#8220;link and import CSS&#8221; and new guideline for theme submission.</p>
<p>Frankly, I don&#8217;t have much opinion regarding this matters as Its kind of trivial making point with a <em>programmer</em>.</p>
<p>Trying to sort thing out I tested few methods on linking and embedding stylesheet. Below is few possible way to links a stylesheet in XHTML document.</p>
<p><span id="more-288"></span></p>
<ol class="xoxo mgb pdl">
<li>
<p> Internal styles</p>
<pre class="prebox" style="height:60px">&#60;style type&#61;&#34;text&#47;css&#34;&#62;
&#46;&#46;&#46;
&#60;&#47;style&#62;</pre>
</li>
<li>
<p>Internal styles using @import</p>
<pre class="prebox" style="height:60px">&#60;style type&#61;&#34;text&#47;css&#34;&#62;
 &#64;import url&#40;&#39;style&#46;css&#39;&#41;
&#60;&#47;style&#62;</pre>
</li>
<li>
<p>External Link</p>
<pre class="prebox" style="height:30px">&#60;link rel&#61;&#34;stylesheet&#34; type&#61;&#34;text&#47;css&#34; href&#61;&#34;style&#46;css&#34;&#62;</pre>
</li>
<li>
<p>External Link and @import</p>
<p>This will work if the <em>import</em> statements is in first row or before any tag selector inside the external stylesheet.</p>
<pre class="prebox" style="height:40px">&#64;import url&#40;&#39;reset&#46;css&#39;&#41;
&#64;import url&#40;&#39;typography&#46;css&#39;&#41;</pre>
</li>
<li>
<p>xml-stylesheet</p>
<p>Will work on browser that fully support &#8220;xhtml+xml&#8221;.</p>
<pre class="smallbox" style="height:30px">&#60;&#63;xml&#45;stylesheet href&#61;&#34;style&#46;css&#34; type&#61;&#34;text&#47;css&#34; &#63;&#62;</pre>
</li>
</ol>
<p> 6. Check out this page &rarr; <a href="http://blog.kaizeku.com/robot-exclusion-profile/">Robot Exclusion Profile</a>. </p>
<p><a href='http://blog.kaizeku.com/web_development/cloaking-css-stylesheet/attachment/robot-exclusion-profile/' rel="attachment wp-att-289"><img src="http://blog.kaizeku.com/wp-content/uploads/2008/10/robot-exclusion-profile-300x279.png" alt="robot-exclusion-profile" title="robot-exclusion-profile" width="300" height="279" class="alignnone size-medium wp-image-289" style="display:block;margin:0pt auto;width:300px;padding:10px;background-color:#666"/></a></p>
<p class="cb">What you should know</p>
<ul class="xoxo mgb">
<li>Doctype XHTML 1.0 strict.</li>
<li>Content type <span class="hilite-2">&#8220;application/xhtml+xml&#8221;</span> (will also work with text/html).</li>
<li><a href="http://validator.w3.org/check?uri=http%3A%2F%2Fblog.kaizeku.com%2Frobot-exclusion-profile%2F">Valid XHTML 1.0 Strict</a></li>
</ul>
<p>If you view the <a href="view-source:http://blog.kaizeku.com/robot-exclusion-profile/" title="view sources">document sources</a> there is no <em>internal/embed styles</em>, <em>inline styles</em> or <em>external link styles</em> but the page do have a main <a href="http://css.kaizeku.com/ltr-istalker-minimalist.css">stylesheet</a> &amp; its also conformed with <a href="http://www.w3.org/TR/xhtml1/">w3c XHTML 1.0</a> specs.</p>
<h2>Cross Browser Test</h2>
<ul class="xoxo mgb">
<li><strong>Mozilla Firefox 2.x &#038; 3</strong> - render successfully parsed xhtml+xml</li>
<li><strong>Google Chrome 0.2.149.27</strong> - not supported but parse xhtml+xml</li>
<li><strong>Opera 9.5 &#038; 9.6 </strong>- render successfully and parsed xhtml+xml.</li>
<li><strong>Safari 3.11 (Win)</strong> - not supported but parse xhtml+xml</li>
<li><strong>MS Internet Explorer 6, 7 &#038; 8b</strong> - quirks mode, failed </li>
</ul>
<p>There is two major browser support this implementation Firefox &#038; Opera. </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/web_development/cloaking-css-stylesheet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AP-iStalker 1.6.2</title>
		<link>http://blog.kaizeku.com/animepaper/ap-istalker-162/</link>
		<comments>http://blog.kaizeku.com/animepaper/ap-istalker-162/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 09:38:41 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Animepaper]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[iStalker]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[DOM]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=281</guid>
		<description><![CDATA[I just release AP-iStalker v1.6.2 theme for animepaper userpage. This theme is exclusively for waller and scanner community groups. It will looks weird in normal userpage especialy for those without the featured gallery section.

This gorgeous stalkerlicious theme will not work on certain userpage so its best if you test first before using it. The following [...]]]></description>
			<content:encoded><![CDATA[<p>I just release <strong><a href="http://blog.kaizeku.com/silo/27/">AP-iStalker <tt>v1.6.2</tt></a></strong> theme for animepaper userpage. This theme is exclusively for <em>waller</em> and <em>scanner</em> community groups. It will looks weird in normal userpage especialy for those without the <em>featured gallery</em> section.</p>
<p><img style="border:5px solid #f0f0f0;margin:0pt auto" src="http://blog.kaizeku.com/wp-content/uploads/2008/10/istalker-162.jpg" alt="AP iStalker 1.6.2" title="istalker-162" width="500" height="200" class="alignnone size-full wp-image-285" /></p>
<p>This gorgeous stalkerlicious theme will not work on certain userpage so its best if you test first before using it. The following code is a simple javascript hack for switching your userpage styles &darr;.</p>
<pre class="smallbox" style="height:40px">
 document.getElementById('thisstyle').remove();
 Apc.append(css_filename);
</pre>
<p><span id="more-281"></span></p>
<h3>JIT stylesheet switcher</h3>
<p>The <tt>Apc.append()</tt> function will append a stylesheet <em>relative </em>to animepaper user static server. For this function to work it need a single <span class="hilite-1">&#8220;css_filename&#8221;</span>. You can get the user-stylesheet <em>filename</em> by viewing the userpage HTML sources <small>(Right click view sources or <tt>CTRL + U</tt> for Firefox)</small>. </p>
<p>The below code is what you will normally found in animepaper userpage source.</p>
<pre class="prebox" style="height:128px">&#60;style id&#61;&#34;thisstyle&#34; media&#61;&#34;screen&#34; type&#61;&#34;text&#47;css&#34;&#62;
	&#64;import url&#40;&#34;http&#58;&#47;&#47;static3&#46;animepaper&#46;net&#47;upload&#47;css&#47;890&#46;css&#34;&#41;&#59;
	&#64;import url&#40;&#34;http&#58;&#47;&#47;static3&#46;animepaper&#46;net&#47;css&#47;constant&#46;css&#34;&#41;&#59;
	&#64;import url&#40;&#34;http&#58;&#47;&#47;static1&#46;animepaper&#46;net&#47;css&#47;ui&#46;css&#34;&#41;&#59;
	&#64;import url&#40;&#34;http&#58;&#47;&#47;static1&#46;animepaper&#46;net&#47;css&#47;userpage&#46;css&#34;&#41;&#59;
&#60;&#47;style&#62;</pre>
<p>The upload user style is at the second line; &rarr; <tt>&#8220;http://static3.animepaper.net/upload/css/*.css&#8221;</tt>, we only need the CSS filename so just grab <strong>890.css</strong>.</p>
<p>You can also run the following javascript inline code inside your browser address bar to get the user-stylesheet <abbr title="Uniform Resources Locator">URL</abbr>. (<a href="javascript:alert(document.styleSheets[0].cssRules[0].href);">bookmark</a>) </p>
<pre class="smallbox">javascript:alert(document.styleSheets[0].cssRules[0].href);</pre>
<p><strong>Firebug console</strong></p>
<pre class="smallbox">console.log('CSS: %s', document.styleSheets[0].cssRules[0].href);</pre>
<h2>Do it yourself</h2>
<p>Switching <a href="http://hatesyou.animepaper.net">^hatesyou</a> default v5 theme to iStalker CSS. </p>
<p> <strong>AP-iStalker 1.6.2</strong> CSS file is <dfn class="hilite-2">890.css</dfn></tt> </p>
<ol class="xoxo mgb pdl">
<li>
<p>First, go to <a href="http://hatesyou.animepaper.net">^hatesyou</a> animepaper userpage, wait till it finished loading.</p>
<p><a href='http://blog.kaizeku.com/animepaper/ap-istalker-162/attachment/hatesyou-animepaper-userpage/' rel="attachment wp-att-282"><img src="http://blog.kaizeku.com/wp-content/uploads/2008/10/hatesyou-animepaper-userpage-150x150.jpg" alt="hatesyou animepaper userpage" title="hatesyou-animepaper-userpage" width="150" height="150" class="alignnone size-thumbnail wp-image-282" /></a></p>
</li>
<li>
<p>Paste the below code in your browser addressbar and run it. (<a href="javascript:document.getElementById('thisstyle').remove();Apc.append('890.css');void(0);" title="switch to istalker 1.6.2 theme bookmark code">Bookmark</a>)</p>
<pre class="smallbox" style="height:40px">javascript&#58;document&#46;getElementById&#40;&#39;thisstyle&#39;&#41;&#46;remove&#40;&#41;&#59;Apc&#46;append&#40;&#39;890&#46;css&#39;&#41;&#59;void&#40;0&#41;&#59;</pre>
<p><a href='http://blog.kaizeku.com/animepaper/ap-istalker-162/attachment/hatesyou-animepaper-userpage-istalker-theme/' rel="attachment wp-att-284"><img src="http://blog.kaizeku.com/wp-content/uploads/2008/10/hatesyou-animepaper-userpage-istalker-theme-150x150.jpg" alt="hatesyou-animepaper-userpage-istalker-theme" title="hatesyou-animepaper-userpage-istalker-theme" width="150" height="150" class="alignnone size-thumbnail wp-image-284" /></a></li>
</ol>
<h2>Update</h2>
<h5>1.6.2.3</h5>
<ul>
<li> Fixes the three column &#8220;recent gallery&#8221; thumb, thanks to <a href="http://kuryuki.animepaper.net">kuryuki</a> for noticing this issues.</li>
<li> Replaced the color pattern banner with <a href="http://static.animepaper.net/upload/rotate.jpg">Animepaper random wallpapers</a>.</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/animepaper/ap-istalker-162/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to create specific CSS selector base on WP Post Type and Post ID</title>
		<link>http://blog.kaizeku.com/wordpress/css-selector-base-on-post-type-and-post-id/</link>
		<comments>http://blog.kaizeku.com/wordpress/css-selector-base-on-post-type-and-post-id/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 06:55:33 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Themes]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[wp_query]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=197</guid>
		<description><![CDATA[While spending my time stalking wordpress support forum, I stumbled on this 6 days old unresolved topics &#8221; using page/post id to specify per-page css in 2.5&#8243;. 
I&#8217;m about to upgrade a site from Wordpress 2.3 to the latest version. I&#8217;ve previously been employing the page id in order to have page specific CSS, e.g., [...]]]></description>
			<content:encoded><![CDATA[<p>While spending my time stalking wordpress support forum, I stumbled on this 6 days old unresolved topics <a href="http://wordpress.org/support/topic/187701/">&#8221; using page/post id to specify per-page css in 2.5&#8243;</a>. </p>
<blockquote cite="http://wordpress.org/support/topic/187701/" class="cr"><p><img src="http://blog.kaizeku.com/wp-content/uploads/2008/07/warning.png" alt="chibi hate you mod by chaoskaizer" title="warning" width="80" height="80" class="alignleft size-full wp-image-199" />I&#8217;m about to upgrade a site from <strong>Wordpress 2.3</strong> to the latest version. I&#8217;ve previously been employing the page id in order to have page specific CSS, e.g., pages with either 0, 1 or 2 sidebars.</p>
<p>For example, if the url is <tt>http://site.com/page1</tt>, the page is styled with a combination of a template and <abbr title="Cascading Style Sheet">CSS</abbr> to specify the width of primary:</p>
<p><tt>#page1 #primary {margin-left: 0;width: 890px; }</tt></p>
<p>I&#8217;ve read in some other posts here that <strong>Wordpress 2.5</strong> no longer uses this, and now the <strong>post ID</strong> is used instead [...] <small>~ hauntedtapedeck</small></p>
</blockquote>
<h2>Workaround</h2>
<p>Basically, what we need is a unique <strong>CSS Selector</strong> for specific post &#038; custom page inside the template.</p>
<p><img src="http://blog.kaizeku.com/wp-content/uploads/2008/07/console-html.jpg" alt="firebug html console" title="console-html" width="359" height="74" class="alignnone size-full wp-image-198" /></p>
<p><span id="more-197"></span></p>
<ol class="xoxo cb">
<li>
<p>First we create a function for our CSS selector and save it inside WP theme <tt>functions.php</tt></p>
<p><tt class="db fr cf"><small>functions.php: get_post_selector_classname()</small></tt></p>
<pre class="prebox cr">
function get_post_selector_classname&#40;&#41;
&#123; global &#36;wp_query&#59;

 if &#40;&#33;is_object&#40;&#36;wp_query&#41; &#41; return&#59;

 if &#40;&#36;wp_query&#45;&#62;is_single &#124;&#124; &#36;wp_query&#45;&#62;is_page&#41; &#123;	 

	 &#36;pid &#61; &#36;wp_query&#45;&#62;post&#45;&#62;ID&#59;
	 &#36;post_type &#61; &#36;wp_query&#45;&#62;post&#45;&#62;post_type&#59; 

	 return &#39;wp&#45;&#39;&#46;&#36;post_type&#46;&#39; &#39;&#46;&#36;post_type&#46;&#39;&#45;&#39;&#46;&#36;pid&#59;
 &#125;
&#125;
</pre>
</li>
<li>
<p>Next we call the <tt>get_post_selector_classname</tt> function inside the template. You can call this function anywhere inside your template but the best placement for the class selector is inside body tag (more weight for inheritance). </p>
<p><tt class="db fr cf"><small>header.php</small></tt></p>
<pre class="smallbox cr">
&#60;body class&#61;&#34;&#60;&#63;php echo get_post_selector_classname&#40;&#41;&#59;&#63;&#62;&#34;&#62;
</pre>
</li>
</ol>
<h3>Available CSS selector</h3>
<p>The following CSS selector is available inside WP post single and page only.</p>
<ul class="xoxo mgb" style="list-style-type:hiragana-iroha">
<li>body.wp-page</li>
<li>body.page-ID</li>
<li>body.wp-post</li>
<li>body.post-ID</li>
</ul>
<h5>CSS Example</h5>
<p><small class="db fr cf hilite-2">styling &#8220;single page&#8221; post.</small></p>
<pre class="smallbox cr">body&#46;wp&#45;single&#123;background&#45;color&#58;&#35;f6f6f6&#59;&#125;</pre>
<p><small class="db fr cf hilite-2">styling a single page with post ID 69.</small></p>
<pre class="smallbox cr">body&#46;single&#45;69&#123;background&#45;color&#58;&#35;f6f6f6&#59;&#125;</pre>
<p><small class="db fr cf hilite-2">styling custom page with post ID 42.</small></p>
<pre class="smallbox cr">body&#46;page&#45;42&#123;background&#45;color&#58;&#35;f6f6f6&#59;&#125;</pre>
<p><small class="db fr cf hilite-2">styling all custom page.</small></p>
<pre class="smallbox cr">body&#46;wp&#45;page&#123;background&#45;color&#58;&#35;f6f6f6&#59;&#125;</pre>
<h3>Wordpress 2.6.2</h3>
<p>I&#8217;m not sure why its not working thought. For WP 2.6.2, try the below code </p>
<pre class="prebox" style="height:400px">
// add inside functions.php
function post_selector_classname&#40;&#41;
&#123; global &#36;wp_query&#59;

	&#36;output &#61; &#39;wp&#45;&#39;&#59;

 if &#40;&#36;wp_query&#45;&#62;is_single &#124;&#124; &#36;wp_query&#45;&#62;is_page&#41; &#123;	 

	 &#36;pid &#61; &#36;wp_query&#45;&#62;post&#45;&#62;ID&#59;
	 &#36;post_type &#61; &#36;wp_query&#45;&#62;post&#45;&#62;post_type&#59; 

	 &#36;output &#46;&#61; &#36;post_type&#46;&#39; &#39;&#46;&#36;post_type&#46;&#39;&#45;&#39;&#46;&#36;pid&#59;
 &#125; elseif&#40;&#36;wp_query&#45;&#62;is_home&#41; &#123;
 		&#36;output &#46;&#61; &#39;home&#39;&#59;
 &#125;

 echo &#36;output&#59;
&#125;
</pre>
<p>call inside template (header.php)</p>
<pre class="smallbox">
&#60;body class&#61;&#34;&#60;&#63;php post_selector_classname&#40;&#41;&#59;&#63;&#62;&#34;&#62;
</pre>
<p>Refer <tt>query.php</tt> inside wp-includes folder for more WP hierarchical sections.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/wordpress/css-selector-base-on-post-type-and-post-id/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AP-iStalker 1.6</title>
		<link>http://blog.kaizeku.com/animepaper/ap-istalker-16/</link>
		<comments>http://blog.kaizeku.com/animepaper/ap-istalker-16/#comments</comments>
		<pubDate>Wed, 21 May 2008 14:17:05 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Animepaper]]></category>

		<category><![CDATA[Userpage]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[iStalker]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=154</guid>
		<description><![CDATA[Chopper is my new plot device cum place holder for padding]]></description>
			<content:encoded><![CDATA[<p><a href='http://blog.kaizeku.com/animepaper/ap-istalker-16/attachment/ck-may-2008/' rel="attachment wp-att-155"><img src="http://blog.kaizeku.com/wp-content/uploads/2008/05/ck-may-2008-69x300.jpg" alt="ap-istalker 1.6" title="ck-may-2008" width="69" height="300" longdesc="http://blog.kaizeku.com/animepaper/ap-istalker-16ap-istalker-16" class="alignright size-medium wp-image-155 fr" /></a>This are the third release for this year. I like the new color scheme. Its much lighter, less gray &amp; no &#8220;birdy&#8221;. The birdy kind of hurts my eyes (<a href="http://chaoskaizer.animepaper.net/?page=2#ID376209" class="ext">some people</a> thinks it a mayflies).<img src="/bunny/crunchy.gif" alt="stalker bunny crunching" height="50" width="50" longdesc="/tuzki"/> </p>
<p>So I happily replaced the base64 stalker birdy with <a href="http://en.wikipedia.org/wiki/Tony_Tony_Chopper" class="ext" title="Tony Tony Chopper">Ton&#299; Ton&#299; Chopp&#257; &#12488;&#12491;&#12540;&#12488;&#12491;&#12540;&#12539;&#12481;&#12519;&#12483;&#12497;&#12540;</a> (from One Piece series). </p>
<p>Chopper is my new <cite>plot device</cite> cum place holder for padding. You can see him in action somewhere between the <em>main journal</em> and <em>&#8220;about me&#8221;</em> block. </p>
<p><span id="more-154"></span></p>
<h5>Chooper Data-URI</h5>
<pre class="prebox">
data&#58;image&#47;gif&#44;GIF89a&#40;&#37;00&#37;96&#37;00&#37;B3&#37;00&#37;00&#37;FF&#37;FF&#37;FF&#37;FF&#37;FF&#37;00&#37;FF&#37;DE&#37;B5&#37;DE&#37;DE&#37;DE&#37;DE&#37;B5&#37;84&#37;B5&#37;B5&#37;B5&#37;84&#37;B5&#37;FF&#37;FF&#37;84&#37;84&#37;B5&#37;84J&#37;00&#37;84&#37;FF&#37;DEJJ&#37;84J&#37;00&#37;00&#37;00&#37;FFJ&#37;
00&#37;00&#37;00&#37;00&#37;00&#37;FF&#37;FF&#37;FF&#33;&#37;FF&#37;0BNETSCAPE2&#46;0&#37;03&#37;01&#37;00&#37;00&#37;00&#33;&#37;F9&#37;04&#37;09&#37;2C&#37;01&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;22&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;FF&#37;F0&#37;C9Iku&#37;CE&#37;EA&#37;AD&#37;F3s&#37;8B&#37;C7&#37;8D&#37;
16&#37;98&#37;99d&#37;3Aa&#37;A1&#37;83&#37;84jj&#37;22&#37;D8&#37;2B&#37;C6&#37;DB&#37;EC&#37;C28u&#37;7F&#33;&#37;9A&#37;AD&#37;B7&#37;E2IjBc&#37;CF&#37;25B&#37;EE&#126;&#37;B8&#39;&#37;12AU&#37;12&#37;3F&#37;D4&#37;EC&#37;ABu&#45;a&#37;98&#37;98&#37;EE&#37;17&#37;8A&#37;12&#37;2B&#37;CE&#37;8A&#37;DB&#37;B3&#37;FB8&#37;
1F&#37;CE&#37;CD&#33;&#37;DB&#37;FDN&#37;D7&#37;ACD&#37;FA&#37;DBQ0A&#37;7Bp&#37;0Eu_x&#37;80&#37;0E&#37;00&#37;82pU&#37;7FQ&#37;7D&#37;07&#37;83r_W&#37;7C&#37;88&#37;7Bc&#37;18h&#37;8C&#37;1Cv_h&#37;8F&#37;9F&#37;7BD&#37;98&#37;A0&#37;A4&#37;07&#37;0Epy&#37;0A&#37;8Fh&#37;AC&#37;98iW&#37;AD&#37;97&#37;A7&#37;99&#37;B0vB4&#37;B3vb&#46;TS&#37;92l&#37;BC4&#37;00&#37;88Y&#37;9A&#42;&#37;BD&#37;87&#37;C9&#37;02&#37;04&#37;BDl&#37;0F&#37;08&#37;04&#37;04&#37;87&#37;C3&#37;18&#37;CB4&#37;CE&#37;C8_&#37;02&#37;DB&#37;CC&#37;97D4&#37;06&#37;0C&#37;04&#37;DC&#37;
0E&#37;D1Z&#37;C88&#37;D0&#37;09&#37;E2&#37;E6&#37;18&#37;D1&#37;E3&#37;D6&#37;E8&#41;&#37;0BT&#37;D2&#37;DA&#37;EF&#37;D1&#37;DC&#37;CC&#37;CD&#37;24&#37;20&#45;&#37;F8&#37;F5&#37;DE&#37;E9&#37;2B&#37;26&#37;A3&#37;DC&#37;3E&#37;5C&#37;06&#37;05&#37;C6&#37;E3&#37;97&#37;03Z&#37;B6&#37;80&#37;F8&#37;E0&#37;1D&#37;BC&#37;B6&#37;A1X&#37;B0&#37;88&#37;F8&#37;062&#37;B4&#37;80K&#37;CB&#37;02&#37;8C&#37;F9&#37;96&#37;24&#37;1Edt&#37;02&#37;89&#37;B9h&#37;1F&#37;F3m&#37;5B6&#37;92&#37;C3&#37;18&#37;88&#37;11Wj&#37;0C&#37;D3&#37;E1&#37;E5&#37;0B&#37;90&#37;12Ybh&#37;40&#37;D2&#37;03&#37;88&#37;2C&#37;04RB&#37;7B7&#37;A6&#37;81Q&#37;9E&#37;1DV&#37;9C&#37;B3&#37;F8&#37;E5&#37;A8S&#37;A4&#37;FDd9h&#37;40&#37;2F&#37;CB&#37;82&#37;AB&#37;0B&#37;8E&#37;1A&#37;5B&#37;E1&#37;14&#37;EBU&#37;8FO&#37;A1&#37;8E&#37;98z&#37;D4&#37;EB&#37;D7&#45;Y&#37;9Dn&#37;FDP&#37;D6&#37;AC&#37;C7&#37;ABjet&#37;D5&#37;FA&#37;E5EX&#37;B1&#37;1D&#37;E6&#37;FE&#37;3A&#37;E2&#37;2F&#45;Ocd&#37;B5&#37;BA&#37;24&#37;BBw&#37;F0&#37;98&#37;A8&#37;1B&#37;1BR&#37;EC&#37;F7&#37;A1&#37;5B&#37;BFhk&#37;7D8n&#40;M&#37;14d&#37;97&#37;B8&#37;26&#37;5D&#37;BE&#37;00&#37;262g&#37;7Bj&#37;C2&#37;D0&#37;8C&#37;225&#37;02&#37;00&#33;&#37;F9&#37;04&#37;09&#37;05&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;22&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;FF&#37;F0&#37;C9I&#37;EBs&#37;D2&#45;l&#37;BB&#37;AF&#37;1A&#37;16&#126;d&#37;E7&#37;84&#37;0E&#37;B2&#37;95l&#37;B6&#33;&#37;A7&#37;CA&#37;B5d&#37;08&#37;CB&#37;B45&#37;BBi&#37;BA&#37;E6&#37;93Q0u&#37;FB&#37;01&#37;2F&#37;B0&#33;&#37;A2&#37;B8&#37;03&#37;FAN&#37;C4&#37;25&#37;EEH&#37;89J&#37;17&#37;9B&#37;26&#37;F5&#37;02&#37;85&#37;9D&#37;B6P&#37;AD&#37;90&#37;EAP&#37;98&#37;15&#37;BB&#37;E7&#37;F6a&#37;3E&#37;98g&#37;EAu&#37;DB&#37;8D&#37;8E&#37;19&#37;B7s&#37;B7&#37;A3&#37;80ZK&#37;DE&#37;0EtPwTh&#37;00&#37;81oK&#37;84G&#37;7B&#37;81&#37;82SP&#37;265&#37;05&#37;87za&#39;gM_&#37;19&#37;16uPg&#37;07&#37;A1&#37;A2hU&#37;01&#37;1C&#37;9BUe&#37;A2&#37;AB&#37;A2e&#37;A4&#37;19&#37;A6&#37;B0Zsg&#37;B5&#37;98&#37;AF&#37;17&#37;01&#37;B1&#37;0E&#37;B1&#37;9D&#37;99&#37;97&#37;AEo&#37;B0&#37;BA&#39;&#37;C4&#37;1D&#37;80&#37;08&#37;0D&#37;C9&#37;B7u&#37;19&#37;C5&#37;BA&#37;C6&#37;26&#37;0E&#37;CAP&#37;0D&#37;D4&#37;A8&#37;A5&#37;D0Z&#37;19&#37;D4&#37;00&#37;DE&#41;&#37;D4&#37;1F&#37;BC&#37;C4&#37;97&#37;13&#37;DD&#37;DE&#37;DF&#37;04&#37;E1&#37;D8&#37;C3&#37;D0&#37;BD&#37;12&#37;CB&#37;DF&#37;DF&#37;0E&#37;04I&#37;9C&#37;20&#37;E4M&#37;D7&#37;E8&#39;&#37;02&#37;F5a&#37;5C&#37;B2&#37;BD&#37;9B&#37;00&#37;C3&#37;00&#37;830&#37;02&#37;FCIYr&#42;&#37;15&#37;AF&#37;26K&#37;180&#37;20&#37;90&#37;90&#37;00&#37;01z&#37;16&#37;17&#37;B2&#37;1BRa&#37;89E&#37;8C&#37;5E&#37;D5&#37;2CRT&#37;C8p&#37;9B&#37;85&#37;05&#37;1E&#37;2F&#37;F6&#37;13i&#37;B1b&#37;3D&#37;86&#37;17j&#37;609&#37;C12eK&#37;7F&#37;2F&#37;93&#37;98t&#37;96&#37;B1&#37;24F&#37;91&#37;155&#37;C64&#37;81&#37;E0e&#37;97&#37;A2&#37;22&#37;01&#37;DC&#37;CC&#37;A9&#37;B3&#37;83&#37;94&#37;186E&#46;P&#37;EA&#37;F2&#37;E9&#37;D0&#37;8EP&#37;15&#37;B1&#37;94&#37;EA&#37;AF&#42;LIG3Z&#37;5C&#37;004&#33;N&#37;AB&#37;1E&#37;C2Dei&#37;D6&#37;EBFgG&#37;C9n&#37;5D&#37;8A&#37;F3D&#37;03&#37;93&#37;9B4H&#33;&#37;20&#37;17&#37;E9&#37;C7j&#37;D6&#37;EEJ&#37;CA&#37;B0Pc&#37;98&#37;C0&#37;88&#37;05&#37;97&#37;00f&#37;17&#37;E5&#37;15&#37;2C&#37;0B&#37;02&#37;EF&#37;AC&#37;82&#37;182&#37;96&#37;85&#37;91&#37;13O&#37;E6&#37;16&#37;D8&#37;F2e&#37;15X4&#37;B3&#37;98f&#37;CD&#37;B3cE&#37;A1&#37;25&#37;8F&#37;AE&#37;2C&#37;B9Kf&#37;D1&#37;E2XG&#37;1A&#37;02&#37;B9u&#37;0D&#37;D8&#37;D2&#37;AC&#37;CD&#37;AEQ&#37;8E&#37;F7&#37;D7&#37;1A&#37;BFk&#37;5C&#37;F8&#37;B7&#37;B8&#37;E8f&#37;10&#37;C4&#37;D3&#37;06o&#37;81qg&#37;8F&#37;E3&#37;3A&#37;3E&#37;EAx&#37;0E&#37;1D&#37;04&#37;BD&#37;DD&#37;5CDT&#37;1F&#37;02&#37;2C&#37;02&#37;00&#33;&#37;F9&#37;04&#37;09&#37;3C&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;22&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;FF&#37;F0&#37;C9I&#37;EBs&#37;D2&#45;l&#37;BB&#37;AF&#37;1A&#37;16&#126;d&#37;E7&#37;84&#37;0E&#37;B2&#37;95l&#37;B6&#33;&#37;A7&#37;CA&#37;B5d&#37;08&#37;CB&#37;B45&#37;BBi&#37;BA&#37;E6&#37;93Q0u&#37;FB&#37;01&#37;2F&#37;B0&#33;&#37;A2&#37;B8&#37;03&#37;FAN&#37;C4&#37;25&#37;EEH&#37;89J&#37;17&#37;9B&#37;26&#37;F5&#37;02&#37;85&#37;9D&#37;B6P&#37;AD&#37;90&#37;EAP&#37;98&#37;15&#37;BB&#37;E7&#37;F6a&#37;3E&#37;98g&#37;EAu&#37;DB&#37;8D&#37;8E&#37;19&#37;B7s&#37;B7&#37;A3&#37;80ZK&#37;DE&#37;0EtPwTh&#37;00&#37;81oK&#37;84G&#37;7B&#37;81&#37;82SPd&#37;05&#37;87za&#39;gZ&#37;25uPg&#37;07&#37;9E&#37;9Fh&#37;8Ce&#37;9F&#37;A4&#37;9Fe&#37;A1&#37;40sg&#37;AB&#37;97&#37;A8&#37;A9&#37;98&#37;96&#37;A7o&#37;85u&#37;08&#37;0D&#37;B6&#37;ADu&#37;60&#37;0E&#37;B7P&#37;0D&#37;BD_k&#37;BC0&#37;00&#37;C5&#41;&#37;BD&#126;&#37;0F&#37;BD&#37;C5&#37;CC&#37;0E&#37;04&#37;C8k&#37;B8&#37;C6&#37;C6&#37;CEIk&#37;C0&#37;CD&#37;0E&#37;02&#37;04&#37;5E&#37;C1&#37;400&#37;06&#37;0Ca&#37;02&#37;DBRK&#37;99&#37;24K&#37;0C&#37;0C&#37;04&#37;E4&#37;04&#37;04&#37;CE&#37;EF&#37;E6&#37;DE&#37;2CK&#37;EF&#37;F1&#37;5E&#37;EF&#37;ED&#37;E5&#37;E7&#37;E8&#37;15&#37;0B&#37;F6&#37;E0&#37;9D&#37;D8&#37;A6o&#37;9F&#37;BCs&#37;2C4d&#41;&#37;18&#37;F0&#37;9D&#37;3Bn&#37;08K&#37;9C8&#37;D8&#37;AD&#37;A0&#37;C1y5&#37;10&#37;40&#37;EC&#37;A2Q&#37;1F&#37;00&#37;87&#37;FC&#37;A6&#37;22v&#37;90&#37;12&#37;A3&#37;A1&#37;BE&#37;05&#37;1F&#37;1F&#37;92&#37;FC&#37;E0&#37;C5&#37;DC&#37;02&#37;8B&#37;EF&#37;16lS&#41;&#37;12&#37;04&#37;17&#37;22&#37;F2b&#37;EA&#37;23G&#37;D3&#37;9A&#37;09&#37;8E0A&#37;F2&#37;3CH&#37;AFJ&#37;18EA&#37;0D&#37;12&#37;3C&#37;D1&#37;00&#37;5D0&#37;0DR&#37;08&#37;BC&#37;E4V0&#37;CC&#37;AF_&#37;99&#37;E0&#37;98&#37;9Bg&#37;F5&#37;AAW&#37;7FCb5&#37;00x&#37;05&#37;CB&#37;82&#37;AB&#37;60&#37;83x5&#37;8B&#37;C5&#37;A5W&#37;AC&#37;09&#37;D7&#37;B2&#37;25k&#37;F6m&#37;DA&#37;0BW&#37;E7&#37;92U&#37;84&#37;E5k&#37;DC&#37;BCh&#37;BB&#37;9C&#37;7D&#37;DB&#37;B4&#37;C6&#37;DA&#37;A6&#37;F4N&#37;D4&#37;C5&#37;0A&#37;96&#37;97_&#37;0FL&#37;11&#37;DF&#37;8D&#37;25&#37;91&#37;C8&#37;E4&#37;9A&#37;1FDpK&#37;9B&#37;02&#37;9E&#37;93&#37;CD&#37;995&#37;DE&#37;05q&#37;2Ft&#37;D1&#37;16&#37;F1&#37;C4&#37;F48&#37;9D&#37;D0Y&#37;A4&#37;B0&#37;5CD&#37;C5&#37;8A&#37;00&#37;00&#33;&#37;F9&#37;04&#37;09&#37;03&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;18&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;FF&#37;F0&#37;C9I&#37;9D&#37;A38&#37;CF&#37;FB&#37;DC&#37;E2Z&#37;E8&#37;5Dc&#40;&#37;8E&#37;0E&#37;F2&#37;99&#37;D9&#37;88X&#42;&#37;C8Jn&#37;BA&#37;CE&#37;D5&#37;F7&#37;C6x&#37;95&#37;EE&#37;B7&#37;1E&#37;0C&#40;c&#37;0D&#37;11&#37;C8&#37;20&#37;0E&#37;99&#37;FC&#37;14g0&#37;CBS&#37;A8&#37;ECmxV&#37;0C6K&#37;A9r&#37;3B&#37;D3&#37;AC&#37;97&#37;3B&#37;CEr&#37;A4_&#37;B0C&#37;C1&#37;0E&#37;9B&#37;0Ep&#37;B8&#37;C2&#37;1D&#37;8A&#37;AF&#37;E7&#37;DF&#37;F9&#37;9D&#46;b&#37;B7&#37;D3&#126;&#37;16ij&#37;83&#37;12&#37;2F&#37;85&#37;86&#37;87&#37;85&#37;04&#37;8A&#37;83&#37;8CR&#37;82&#37;5C&#37;8CLH&#37;91&#37;3D&#37;04&#37;98&#37;02&#37;02&#37;93&#37;2F&#37;7C&#37;12&#37;98&#37;99&#37;9B&#37;9C&#37;9E&#37;08&#37;A0&#37;04&#37;9A&#37;98L&#37;7C&#37;0E&#37;A6&#37;A7&#37;9B&#37;94t&#37;AD&#37;A1&#37;9C&#37;8D&#37;19&#37;B2&#37;AE&#37;A9&#37;95&#37;26&#37;B2&#37;9B&#37;A8&#37;A3&#33;&#37;98&#37;0B&#37;A0&#37;9A&#37;BE&#37;AA&#37;C0&#37;A6&#37;C4&#37;C5&#37;9D&#37;C7&#37;C8&#37;BD&#37;98&#37;16&#37;0Da&#37;C2&#37;8C&#37;A6&#37;90&#37;0D&#37;D7&#37;D1&#37;1A&#37;AA&#37;D6&#37;D8&#37;DDSR&#37;0D&#37;0B&#37;94&#37;0B&#37;E4&#37;0B&#37;D8S&#37;E1&#37;E5&#37;E2L&#37;E6&#37;DD&#37;D9&#37;18&#37;E9&#37;EAM&#37;ED&#37;E7&#37;19&#37;EA&#37;E4&#37;E3&#37;E4&#37;DE&#37;19&#37;E1&#37;E7R&#42;&#37;EE&#37;AE&#37;151&#37;87f&#37;83&#37;07&#37;7D&#37;02&#37;8B&#37;BC&#37;D3&#37;00&#45;&#37;9A&#37;25&#37;83P&#126;xb&#37;D8&#37;E1&#37;11&#37;22V&#37;B5&#37;B8&#37;B0&#37;220Q&#37;C4&#37;B3B&#37;16&#37;078&#37;3E&#37;14&#37;02IJ&#37;04&#37;00&#33;&#37;F9&#37;04&#37;09&#37;08&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00q&#37;00&#37;18&#37;00&#37;18&#37;00&#37;00&#37;04h&#37;F0&#37;C9I_&#37;B9&#37;B7&#37;EA&#37;7D&#37;81&#37;C7&#37;C5&#37;A6a&#37;5EY&#37;0C&#37;03&#37;26Z&#37;E7P&#37;BEi&#37;1Ar&#37;EEk&#37;D7&#41;W&#37;D8&#37;BC&#37;97s&#37;3D&#37;DEo&#37;14&#37;B4e&#42;&#37;9D&#37;E2kF9&#41;KC&#37;D6&#37;EE&#37;E9c&#37;5EP&#37;D4&#42;S&#37;0A&#37;9A&#37;0A&#37;8F&#37;2BoqK&#37;A4&#37;92&#37;9B&#37;DE&#37;1A&#37;EF&#37;DCD&#37;A5&#37;82&#37;EC&#37;B6&#37;D8&#37;F7&#37;89O&#37;92_&#37;FB&#37;BD&#39;&#37;5B&#37;B5o&#42;&#126;wj&#37;7D&#37;82H&#45;&#37;60&#37;86h&#37;89&#37;12&#37;11&#37;00&#33;&#37;F9&#37;04&#37;09&#37;08&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00q&#37;00&#37;18&#37;00&#37;18&#37;00&#37;00&#37;04a&#37;F0&#37;C9I&#37;DF&#37;B8&#37;B7j&#37;8D&#37;81&#37;C7&#37;C3&#37;C6&#37;5D&#37;5E&#37;09f&#37;22&#37;08&#37;9C&#37;2B&#37;98&#37;0Ek&#37;05&#37;AF_&#37;C8&#37;BDe&#37;2B&#37;EEd&#37;BD&#37;A74&#37;DD&#37;8F&#37;93&#37;B3Q&#37;0A&#37;BF&#37;9E&#37;F0Qh6y&#37;B3&#37;18&#37;B3&#37;80An&#37;3A&#37;98&#37;A3&#37;D3&#37;3Aj&#37;A1&#37;86&#37;B2&#37;13&#37;18&#37;F7&#37;1DSfF&#37;F3&#37;04&#37;9D&#126;&#37;7D&#37;D9Cj&#37;0D&#37;5B&#37;06&#37;CEM&#37;EDk&#37;B4&#37;98&#37;C7&#37;F1&#37;FB&#126;Yj&#37;12&#46;&#37;15&#37;11&#37;00&#33;&#37;F9&#37;04&#37;09&#37;08&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00p&#37;00&#37;18&#37;00&#37;1A&#37;00&#37;00&#37;04F&#37;F0&#37;C9I&#37;E7&#37;B8&#37;B7&#37;EA&#37;8A&#37;3B&#37;DE&#37;DAGu&#37;A05&#37;94b&#37;A9J&#37;D9&#37;BA&#37;B6&#46;&#37;08&#37;C7&#37;E1Io&#37;F3m&#37;E9&#37;F5T&#37;F0&#37;0F&#37;5B&#37;E1&#37;07&#37;A4&#37;10&#37;8B&#37;C8&#37;24G&#37;19&#37;B4&#33;s&#37;3Ch&#37;E5&#40;s&#37;CAT&#37;D2&#37;91u&#37;F9&#37;DA&#37;9Ab9&#37;12&#37;D8&#37;93&#37;1A&#37;8B&#37;25&#37;11&#37;00&#33;&#37;F9&#37;04&#37;05&#37;96&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;00&#37;00&#37;01&#37;00&#37;01&#37;00&#37;00&#37;04&#37;02&#37;F0E&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00k&#37;00&#37;12&#37;00&#37;0C&#37;00&#37;00&#37;04&#37;3C&#37;F0&#37;3D&#37;E7&#37;A4&#37;BDx&#46;&#37;9A&#37;BB&#37;5B&#37;C8We&#37;14&#37;E7&#37;84&#37;CBv&#37;95&#37;C8&#37;B6&#37;9D&#37;E2&#37;DA&#37;C23&#37;ACZ&#37;F4&#37;16j&#37;F3&#37;0A&#37;9F&#37;B7Sm&#37;C2J&#37;8D&#37;26&#37;88&#37;96&#37;91&#37;92&#37;7C&#37;E1j&#37;A9&#37;E4&#37;F0b&#37;94&#37;94J&#37;9Ec&#39;&#37;13&#37;01&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00j&#37;00&#37;1C&#37;00&#37;13&#37;00&#37;00&#37;04&#37;85&#37;D0&#37;B9G&#37;AB&#37;BD&#37;F8&#37;1E&#37;25&#37;F3&#37;EB&#37;9E&#37;B6q&#37;93&#37;E5&#37;2C&#37;60H&#37;1D&#37;ECX&#126;&#37;0Br&#37;BE&#37;A649&#37;AD&#37;A2&#37;97&#37;8E&#37;BC&#37;A0&#37;B5&#37;1E&#37;0A&#37;05&#37;C0&#37;8D8&#37;94&#37;DE&#37;CC&#37;84&#37;40&#37;C9&#37;9A&#37;B6&#37;23&#37;F2&#37;E3&#37;A3&#41;&#37;A1&#37;B2&#37;07K&#37;B7&#37;AB&#37;9C&#37;A05&#37;99p&#37;22&#37;9D&#37;26&#37;11&#37;D0&#37;9B&#37;AD&#37;09&#37;FCpIL6J&#37;82&#37;9EW&#37;0E&#37;12R&#37;C16&#37;3E&#37;C5&#37;EA&#41;&#37;14&#37;0A&#37;1B&#37;12D&#126;m&#37;7C&#37;81&#37;5E&#37;3A&#37;84&#37;0E&#37;7B6&#42;&#37;18s&#37;5C&#37;8A&#37;91&#37;16&#37;3Fy&#37;5D&#37;96&#37;19&#37;88&#37;94&#37;9B&#37;18V&#37;9A&#37;9F&#37;5E&#37;17&#37;95&#37;9F4&#37;A3&#37;1E&#37;11&#37;00&#33;&#37;F9&#37;04&#37;09&#37;C8&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00h&#37;00&#37;22&#37;00&#37;1D&#37;00&#37;00&#37;04&#37;D0&#37;D0&#37;C9G&#37;AB&#37;BD8W&#37;A5&#37;8EtZ&#40;&#37;3E&#37;DCaz&#37;E0&#37;A8R&#37;E5y&#40;S&#37;16&#37;AB&#37;9C&#37;E3&#37;BEpZ9&#37;CB&#37;2C&#37;C2&#37;00&#37;DB&#37;AD&#37;B6&#37;5B&#37;20x&#37;3A&#37;CB&#37;07&#37;04&#37;0CJN&#37;1C&#37;18&#37;C5q&#37;5C&#37;F4&#37;94&#37;12D&#37;AF&#37;97&#37;03x&#37;83&#37;A6h&#37;8A&#37;8ATj&#37;C9gG&#37;C1&#37;BB&#37;C4&#37;11&#37;1F&#37;E4&#37;EB&#37;EEx&#37;3E&#37;C2&#37;25&#37;EC&#37;B0&#37;B8x&#37;C6&#37;1E&#37;A9W&#37;25&#37;1FnoS&#37;08iwYV&#41;&#45;&#40;Q9fZ&#37;8BY&#37;88S&#37;0EQ&#37;26&#37;129&#37;05KiV&#37;87&#37;95&#37;15i&#37;97&#37;1D9&#37;3DAVrK&#37;3E&#37;A2&#37;7F&#37;1F&#37;25&#37;9BK&#37;2B&#37;A2&#37;0E&#37;5E&#37;9C&#37;3D&#37;A4&#37;90&#37;B3&#37;17GA&#37;A8&#37;B8&#37;7B&#37;BBX&#37;B6ep&#37;C1&#37;C2&#37;0F&#37;0C&#37;AErS&#37;85&#37;C2T&#37;04&#37;04&#37;8B&#37;17&#37;AC&#37;BB&#37;87&#37;D1&#37;C5&#37;C8&#37;1A&#37;0E&#37;D1&#37;B8&#37;DA&#37;22&#37;B2&#37;DF&#37;22v&#37;E2&#37;23d&#37;E5&#37;E0&#37;DCI&#37;E8&#126;&#37;EB&#37;EC&#37;96&#37;E4&#37;EFX&#37;EE&#37;F2&#37;11&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00j&#37;00&#37;1C&#37;00&#37;13&#37;00&#37;00&#37;04&#37;85&#37;D0&#37;B9G&#37;AB&#37;BD&#37;F8&#37;1E&#37;25&#37;F3&#37;EB&#37;9E&#37;B6q&#37;93&#37;E5&#37;2C&#37;60H&#37;1D&#37;ECX&#126;&#37;0Br&#37;BE&#37;A649&#37;AD&#37;A2&#37;97&#37;8E&#37;BC&#37;A0&#37;B5&#37;1E&#37;0A&#37;05&#37;C0&#37;8D8&#37;94&#37;DE&#37;CC&#37;84&#37;40&#37;C9&#37;9A&#37;B6&#37;23&#37;F2&#37;E3&#37;A3&#41;&#37;A1&#37;B2&#37;07K&#37;B7&#37;AB&#37;9C&#37;A05&#37;99p&#37;22&#37;9D&#37;26&#37;11&#37;D0&#37;9B&#37;AD&#37;09&#37;FCpIL6J&#37;82&#37;9EW&#37;0E&#37;12R&#37;C16&#37;3E&#37;C5&#37;EA&#41;&#37;14&#37;0A&#37;1B&#37;12D&#126;m&#37;7C&#37;81&#37;5E&#37;3A&#37;84&#37;0E&#37;7B6&#42;&#37;18s&#37;5C&#37;8A&#37;91&#37;16&#37;3Fy&#37;5D&#37;96&#37;19&#37;88&#37;94&#37;9B&#37;18V&#37;9A&#37;9F&#37;5E&#37;17&#37;95&#37;9F4&#37;A3&#37;1E&#37;11&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00k&#37;00&#37;12&#37;00&#37;0C&#37;00&#37;00&#37;04&#37;3C&#37;F0&#37;3D&#37;E7&#37;A4&#37;BDx&#46;&#37;9A&#37;BB&#37;5B&#37;C8We&#37;14&#37;E7&#37;84&#37;CBv&#37;95&#37;C8&#37;B6&#37;9D&#37;E2&#37;DA&#37;C23&#37;ACZ&#37;F4&#37;16j&#37;F3&#37;0A&#37;9F&#37;B7Sm&#37;C2J&#37;8D&#37;26&#37;88&#37;96&#37;91&#37;92&#37;7C&#37;E1j&#37;A9&#37;E4&#37;F0b&#37;94&#37;94J&#37;9Ec&#39;&#37;13&#37;01&#37;00&#33;&#37;F9&#37;04&#37;05d&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;00&#37;00&#37;01&#37;00&#37;01&#37;00&#37;00&#37;04&#37;02&#37;F0E&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;86&#37;00&#37;08&#37;00&#37;10&#37;00&#37;00&#37;04&#33;&#37;D0&#37;BDI&#37;9F&#37;AC&#37;F3&#37;E2&#37;A6&#41;&#37;C7&#37;CF&#37;B7&#37;89&#37;9E&#37;D3Y&#37;E7&#37;83&#37;A4&#37;C4&#37;8A9m&#37;07&#37;13&#37;E7&#37;2C&#37;C3&#37;A6&#37;94&#37;EFN&#37;04&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;10&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;89&#37;F0&#37;3D&#37;E7&#37;A4&#37;BD&#37;D7&#37;AD&#37;8A&#37;FB&#37;DC&#37;1E&#37;E6&#37;20&#37;60h&#37;8D&#37;A5&#37;F9&#37;90&#37;9C&#37;BA&#37;A6&#42;&#37;EBJ&#37;B0&#37;DA&#37;CEx&#37;AE&#37;EF&#37;7C&#37;EF&#37;FF&#37;C0&#37;A0pH&#37;2C&#37;1A&#37;8F&#37;A1&#37;9B&#37;0BA&#37;C1&#33;&#37;9EJ&#37;0F&#37;E1&#37;C9tM&#37;A9&#37;D1&#37;8B&#37;E0&#37;0A5m&#37;B9Y&#37;89&#37;E0&#37;8B&#37;0D&#37;8D&#37;09&#37;603&#37;99&#37;19&#37;26&#37;7C&#41;&#37;8D0&#37;05&#37;DE&#37;A8g&#37;EBx&#37;7C&#37;96&#37;B4&#37;E8&#37;EB&#37;3DO&#37;0Byv&#37;1D&#37;7C&#37;82yQ&#37;81&#126;&#37;7F&#37;22&#37;24&#37;83&#37;84&#37;22&#37;1A&#37;8Bqr&#37;0EvM6&#37;23U6&#37;13Sa&#37;22&#37;9E3&#37;0Eh&#37;9F&#37;19&#37;A4&#37;A2&#37;A3s&#37;26s&#37;AC&#37;0E&#37;11&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;18&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;FF&#37;F0&#37;C9I&#37;9D&#37;A38&#37;CF&#37;FB&#37;DC&#37;E2Z&#37;E8&#37;5Dc&#40;&#37;8E&#37;0E&#37;F2&#37;99&#37;D9&#37;88X&#42;&#37;C8Jn&#37;BA&#37;CE&#37;D5&#37;F7&#37;C6x&#37;95&#37;EE&#37;B7&#37;1E&#37;0C&#40;c&#37;0D&#37;11&#37;C8&#37;20&#37;0E&#37;99&#37;FC&#37;14g0&#37;CBS&#37;A8&#37;ECmxV&#37;0C6K&#37;A9r&#37;3B&#37;D3&#37;AC&#37;97&#37;3B&#37;CEr&#37;A4_&#37;B0C&#37;C1&#37;0E&#37;9B&#37;0Ep&#37;B8&#37;C2&#37;1D&#37;8A&#37;AF&#37;E7&#37;DF&#37;F9&#37;9D&#46;b&#37;B7&#37;D3&#126;&#37;16ij&#37;83&#37;12&#37;2F&#37;85&#37;86&#37;87&#37;85&#37;04&#37;8A&#37;83&#37;8CR&#37;82&#37;5C&#37;8CLH&#37;91&#37;3D&#37;04&#37;98&#37;02&#37;02&#37;93&#37;2F&#37;7C&#37;12&#37;98&#37;99&#37;9B&#37;9C&#37;9E&#37;08&#37;A0&#37;04&#37;9A&#37;98L&#37;7C&#37;0E&#37;A6&#37;A7&#37;9B&#37;94t&#37;AD&#37;A1&#37;9C&#37;8D&#37;19&#37;B2&#37;AE&#37;A9&#37;95&#37;26&#37;B2&#37;9B&#37;A8&#37;A3&#33;&#37;98&#37;0B&#37;A0&#37;9A&#37;BE&#37;AA&#37;C0&#37;A6&#37;C4&#37;C5&#37;9D&#37;C7&#37;C8&#37;BD&#37;98&#37;16&#37;0Da&#37;C2&#37;8C&#37;A6&#37;90&#37;0D&#37;D7&#37;D1&#37;1A&#37;AA&#37;D6&#37;D8&#37;DDSR&#37;0D&#37;0B&#37;94&#37;0B&#37;E4&#37;0B&#37;D8S&#37;E1&#37;E5&#37;E2L&#37;E6&#37;DD&#37;D9&#37;18&#37;E9&#37;EAM&#37;ED&#37;E7&#37;19&#37;EA&#37;E4&#37;E3&#37;E4&#37;DE&#37;19&#37;E1&#37;E7R&#42;&#37;EE&#37;AE&#37;151&#37;87f&#37;83&#37;07&#37;7D&#37;02&#37;8B&#37;BC&#37;D3&#37;00&#45;&#37;9A&#37;25&#37;83P&#126;xb&#37;D8&#37;E1&#37;11&#37;22V&#37;B5&#37;B8&#37;B0&#37;220Q&#37;C4&#37;B3B&#37;16&#37;078&#37;3E&#37;14&#37;02IJ&#37;04&#37;00&#33;&#37;F9&#37;04&#37;09&#37;0A&#37;00&#37;0F&#37;00&#37;2C&#37;00&#37;00&#37;5C&#37;00&#37;1E&#37;00&#37;3A&#37;00&#37;00&#37;04&#37;FF&#37;F0&#37;C9I&#37;EBs&#37;CE&#37;EA&#37;3D&#37;F3&#37;5D&#37;1E&#39;J&#37;0E&#37;F8&#37;85&#37;E3&#37;86&#37;81&#37;0Eb&#37;A6&#42;&#37;88&#37;60&#46;&#37;0ASe&#37;DB&#37;BE&#37;B7&#37;9D&#37;CF&#37;B5&#37;DB&#37;09&#37;D7&#37;02&#37;F2R&#37;BANqg&#37;1B1i&#37;88hPH&#37;92J&#37;17&#37;2C&#42;&#37;91&#37;86i&#37;22&#45;9&#37;EDD&#37;81b&#37;8A&#37;25&#37;E4&#37;CE&#37;F4&#37;AC&#37;20&#37;D3&#37;8E&#37;E2&#37;03&#37;B9&#37;90&#37;F3&#37;0A&#37;E5&#37;EE&#37;F0Y&#37;82&#37;2F&#37;C2&#37;B5&#37;7DS&#37;5Dqy&#37;5D&#37;0EmiT&#37;18&#37;88&#37;07&#37;8D&#37;8E&#37;89w&#37;8E&#37;92&#37;07&#37;87&#37;907&#37;88&#37;98&#37;8B&#37;96&#37;3D&#37;86&#37;9Amv&#37;22&#37;403&#37;95ng&#37;A3R&#37;83&#37;7B&#37;0E&#37;00&#37;00E3&#37;7B&#37;12&#37;AD&#37;AD&#37;02&#37;04Q&#37;A0&#41;&#37;AC&#37;AD&#37;0E&#37;B4&#37;AF&#37;AA&#37;18&#37;02&#37;C0&#37;B5&#37;9DZ&#37;04&#37;C1&#37;0E&#37;04&#37;B5V&#37;A3B&#37;C8&#37;C2&#37;C7&#37;C8&#37;C1&#37;A8&#37;B7J&#37;BF&#37;CD&#37;D0&#37;B4&#37;C9&#37;BD&#37;22&#37;CF&#37;C8Q&#37;D6&#37;C1&#37;D9&#37;D3&#37;E1&#37;18&#37;D6&#37;C5&#37;BC&#37;A8&#37;A1&#37;5D&#37;DE&#37;E5&#37;E6&#37;D9&#37;DA&#37;60R&#37;EC&#37;CD&#37;E0&#37;E8&#37;1BW&#37;F2&#37;C5&#37;ED&#37;E1&#42;&#37;EB&#37;08&#37;C8&#37;0B&#37;F3&#37;80a&#37;AB&#37;07&#37;CF&#37;9F&#37;3C&#37;81&#37;F4&#37;96i&#37;F0&#37;83&#37;2F&#37;186&#37;0C&#37;0D&#37;EC&#37;94&#37;88&#37;07&#37;B0&#37;965C&#37;0D2F&#37;5C&#37;A8LZ&#37;17&#37;8D&#37;20a7&#46;&#37;EC&#37;04q&#37;81&#37;15&#37;2CX4&#37;82r&#37;00&#37;12&#37;25&#37;96&#37;93&#33;E&#37;82i&#37;E9&#37;D2&#37;A4&#37;8B&#37;94&#37;20&#37;25j&#37;ACi3&#37;0A&#37;CA&#37;9C&#42;Z&#37;AAT&#37;B7&#37;20&#37;A6&#37;CC&#37;0EBS&#37;91&#40;&#37;813b&#37;13&#37;96&#37;40U&#37;40UZ&#37;81&#37;A4&#37;93&#37;25&#37;FC&#37;DEq&#37;C8pL&#37;2B&#37;09d&#37;D3&#37;AA&#37;0A&#37;AB&#37;EA&#37;2F&#37;ACX&#37;02&#37;3E&#37;14&#42;&#37;02&#37;AB&#37;86&#42;&#39;&#37;B4&#37;18&#46;p5&#37;BB&#37;A5S&#37;04&#37;00&#37;3B
</pre>
<h2>Download</h2>
<ul>
<li>Download link: Note: There is a file embedded within this post, please visit this post to download the file.</li>
<li>Mirror: <a href="http://code.google.com/p/istalker/downloads/detail?name=ap-istalker-1.6.css" class="ext" type="text/css">istalker.googlecode.com</a></li>
</ul>
<h5>Remove oversize image</h5>
<p>I&#8217;d seen a trend for posting oversize image at the <em>comment post</em>, <em>journal </em>&#038; <em>about me</em> sections on user profile page. If you like to keep things clean, Its best to hide it. below is the code for hiding oversize image (or very long one-line text) from overflowing the client view-port. I hate those horizontal scroll-bar.</p>
<pre class="smallbox">
&#46;aboutme&#44;&#46;journalbody&#44;postbody&#123;overflow&#58;hidden&#125;
</pre>
<p class="sticky">copy paste the above code at the bottom most of your CSS.</p>
<h5 class="cb">Non Waller</h5>
<p>For those who doesn&#8217;t have a featured wall or scan (yet) you must add the below code inside your CSS so it will look more presentable.</p>
<pre class="prebox">
&#46;msie &#46;myjournal&#123;clear&#58;both&#125;
&#46;myjournal&#58;before&#123;
clear&#58;both&#59;content&#58;&#34;&#46;&#34;&#59;display&#58;block&#59;height&#58;0&#59;
line&#45;height&#58;0&#59;visibility&#58;hidden&#125;
</pre>
<h2 class="cb">Showcase</h2>
<p>derivative work from AP iStalker 1.6 CSS.</p>
<dl class="r">
<dd><a href="http://chiki06.animepaper.net/">Chiaki</a> <small>May 22, 2008</small></dd>
</dl>
<hr class="cb" />]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/animepaper/ap-istalker-16/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WPI Cross Browser Support</title>
		<link>http://blog.kaizeku.com/wordpress/wpi-cross-browser-support/</link>
		<comments>http://blog.kaizeku.com/wordpress/wpi-cross-browser-support/#comments</comments>
		<pubDate>Mon, 19 May 2008 10:48:51 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Themes]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[wpistalker]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[hook]]></category>

		<category><![CDATA[Internet Browser]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=150</guid>
		<description><![CDATA[Wp-iStalker Cross browser CSS &#38; Scripts Guide.]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.kaizeku.com/wp-content/uploads/2008/05/istalker-css-autoload1.png" alt="istalker-css-autoload1" title="istalker-css-autoload1" width="128" height="128" class="alignleft size-full wp-image-152 fl" longdesc="http://blog.kaizeku.com/wordpress/wpi-cross-browser-supportwpi-cross-browser-support/"/> If you are frustrated that certain <abbr title="Wp-iStalker">WPI</abbr> version <small>(i.e., public &#038; beta)</small> doesn&#8217;t support MSIE. I intentionally did that (just) to annoyed Microhoo and the rest of MSIE users (that is 70% of internet population). </p>
<h2>Cross Browser Autoload</h2>
<p>Before you stalked me, WPI WordPress theme has a build in function for auto-loading cross browser stylesheet and script files. This function is available since our first release. </p>
<h5>How to load Browser specific CSS &#038; Scripts?</h5>
<p>We asume you are using the crappy broken MSIE 6 browser running on Windows XP.<br />
When WPI theme load it will look for specific stylesheet &#038; script files like below list. </p>
<ul>
<li>stylesheet &rarr; <tt>/themes/wp-istalker/css/ &darr;</tt>
<ol>
<li>ie.css</li>
<li>ie-6.css</li>
<li>winxp.css</li>
</ol>
</li>
<li>javascript &rarr; <tt>/themes/wp-istalker/scripts/ &darr;</tt>
<ol>
<li>ie.js</li>
<li>ie-6.js</li>
<li>winxp.js</li>
</ol>
</li>
</ul>
<p>If any of the files exists, It will queue the specific files and append it to the master file then proceed with minified &rarr; crunch &rarr; combine &rarr; gzip or deflate (if the ua allowed it) and send it to the browser as a single file. Walla<br />
<span id="more-150"></span><br />
Depend on the user <abbr title="User Agent">UA</abbr> the complete files will be cached inside the the following cache directory.</p>
<ul>
<li>/themes/wp-istalker/cache/css/*.css.compression-type</li>
<li>/themes/wp-istalker/cache/scripts/*.js.compression-type</li>
</ul>
<p>the combine files can be found at </p>
<ul>
<li>/themes/wp-istalker/css/combine-md5hash.css</li>
<li>/themes/wp-istalker/scripts/combine-md5hash.js</li>
</ul>
<h5>how to check for browser versions number?</h5>
<p>Its a bit tricky to know the correct name and version numbers, here&#8217;s how I do it. </p>
<p>Go to your blog frontpage and look inside the source code body-tag. On the <em>&#8220;class&#8221;</em> attribute you can find something similar like the below example. &darr;</p>
<pre class="smallbox">&#60;body id&#61;&#34;wpi&#45;blog&#45;kaizeku&#45;com&#34; class&#61;&#34;wp&#45;home firefox firefox&#45;20 winxp &#45;foaf&#45;Document&#34;&#62;</pre>
<p>If you have <strong>firebug </strong> &rarr; <tt>console.log($(&#8217;body&#8217;).attr(&#8217;class&#8217;) );</tt></p>
<p>code break:</p>
<ol>
<li><strong>wp-home</strong> &rarr; <a href="#section" title="Section References">Section </a>, Refer <a href="http://codex.wordpress.org/Template_Hierarchy#Visual_Overview" title="Wordpress Template Hierarchy Visual Overview" class="ext">WordPress Template Hierarchy</a></li>
<li><strong>firefox</strong> &rarr; Browser name</li>
<li><strong>firefox-2</strong> &rarr; Browser name &amp; Major Version numbers.</li>
<li><strong>winxp </strong> &rarr; OS platform</li>
</ol>
<p class="sticky">for variant of gecko base engine (i.e., prism, flock, seamonkey,mozilla suite) it will just show it as &#8220;mozilla mozilla-19 winxp&#8221; or something similar.</p>
<p>just to see how clever this go, you can used this wonderful root body browser-class-name CSS selector to create different CSS styling/tweak for cross browser like so &darr;</p>
<pre class="prebox">
body.safari div.hentry{
 position:relative; top: -10px; min-height:400px
}
body.ie-6 div.hentry{
 height:auto;height:450px
}
body.opera div.hentry{
 min-height: 500px
}
</pre>
<h2>The CSS files Ordering</h2>
<p>Inheritance is very important factor in CSS. Below is list of files sort by number starting from top to bottom. </p>
<pre class="smallbox">
&#64;import url&#40;&#39;&#47;wp&#45;content&#47;themes&#47;wp&#45;istalker&#47;icecream&#46;css&#44;auth&#46;css&#44;single&#46;css&#44;lang&#46;css&#44;firefox&#46;css&#44;winxp&#46;css&#39;&#41;&#59;
</pre>
<ol>
<li><strong>icecream.css</strong> &rarr; global css (style.css) load at all page include in this file is our blueprint.css (blueprint framework css), image.css.
<p class="sticky">I prefer delicious filename more than generic :) .</p>
</li>
<li><strong>auth.css</strong> &rarr; this file will be loaded if you are registered user.</li>
<li><strong>single.css</strong> &rarr; section files
<p class="sticky"><strong id="section">sections:</strong> home.css, single.css, attachment.css, page.css, search.css, archive.css, category.css, tag.css, year.css, month.css, day.css, 404.css etc.. </p>
</li>
<li><strong>plugins &#038; widgets</strong> &rarr; supported plugins and widgets file will be append here (i.e., wp-pagenavi, openid, global translator, wpseo, wpstats)</li>
<li><strong>firefox</strong> &rarr; browser name specific stylesheets</li>
<li><strong>firefox-2</strong> &rarr; it get more specific. </li>
<li><strong>platform</strong> &rarr; os/platform base stylesheets. good for declaring supporting fonts class </li>
<li><strong>extra_css</strong> - filter hook wpi_css_import_array </li>
</ol>
<h5>Custom Hook</h5>
<p>Hook for each of the import files &rarr; wpi_css_import_<strong>$int </strong><br />
<strong>$int</strong> &rarr; 1 to 7</p>
<p>notes<br />
if you want to append a file just after the <em>section</em> css you will used &#8216;wpi_css_import_2&#8242; as hook. I wont cover the how part in this guide. check out Wordpress Codex if neeed too.</p>
<p class="sticky">If you are on MSIE6, this page will render in XML ;p. Not my fault really, This site has valid xhtml, CSS 2.1 , xhtml/xml, WCAG A1 &#038; Section 508. Your browser just pwned too much propriety language to survive</p>
<p><em>Support the standards so it will continue to look good in the future.</em> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/wordpress/wpi-cross-browser-support/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iStalker CSS 1.08 FR</title>
		<link>http://blog.kaizeku.com/animepaper/istalker-css-108-fr/</link>
		<comments>http://blog.kaizeku.com/animepaper/istalker-css-108-fr/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 19:45:53 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Animepaper]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Userpage]]></category>

		<category><![CDATA[blueprint]]></category>

		<category><![CDATA[brushmilk]]></category>

		<category><![CDATA[mozilla]]></category>

		<category><![CDATA[safari]]></category>

		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/animepaper/istalker-css-108-fr/</guid>
		<description><![CDATA[iStalker CSS for Non Waller and Scanner. ]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.kaizeku.com/wp-content/uploads/2008/03/istalker-css.png' alt='istalker-css.png' width="128" height="128" class="photo thumb- fl"/>There is two majority of group in animepaper; the waller &#038; scanner. 60% of Animepaper members belong to both of this group. So my recent istalker css doesnt look <em title="its broken">friendly</em> if you view it on non-waller userpage. This new <abbr title="Cascading Style Sheets">CSS</abbr> fix just that. </p>
<h2 class="cb mgb">Download</h2>
<ul class="xoxo pdt">
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
</ul>
<p><span id="more-138"></span></p>
<h3 class="mgt mgb-">Whats new</h3>
<ul class="xoxo exturl pdt">
<li>base64-image <small>(save my bandwith)</small></li>
<li>Anti IE6 <small>*evil grin*</small></li>
<li>Less cloacking</li>
<li>CSS BBCODE - float control</li>
<li>Smooth Colors - Brush &#038; Milk</li>
</ul>
<h2 class="mgt mgb-">Known Bugs</h2>
<ul class="xoxo exturl pdt">
<li>Minor - Firefox 3b+, flickring while hovering over bottom sidebar lists. firefox 3b doesnt render hiragana-iroha very well. </li>
</ul>
<h3 class="mgt">Workaround for MSIE</h3>
<p><img src="http://gmodules.com/ig/proxy?url=http://static4.animepaper.net/images/ck/tuzki/forceheadslam.gif" width="60" height="50" alt="tuzky headbang" class="emots fr"/>Animepaper has a browser classname features, used it wisely. Refer <a href="http://www.animepaper.net/groups/css/54284/" class="exturl icn-r1">CSS Task Force &raquo; Browser Specific Code </a></p>
<h3 class="cb mgt mgb-">External Links</h3>
<ul class="xoxo exturl pdt">
<li><a href="http://chaos-kaizer.deviantart.com/art/iStalker-CSS-FR-Edition-78911107">View iStalker CSS 1.08 FR</a></li>
<li><a href="http://chaos-kaizer.deviantart.com/art/istalker-january-08-75708544">View iStalker CSS v1.08</a></li>
</ul>
<h3 class="cb mgt mgb-">Tracker</h3>
<ul class="xoxo exturl pdt">
<li><a href="http://renton-thurston.animepaper.net/">Renton-Thurston</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/animepaper/istalker-css-108-fr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wp-Istalker Minor Fixes</title>
		<link>http://blog.kaizeku.com/wordpress/wp-istalker-minor-fixes/</link>
		<comments>http://blog.kaizeku.com/wordpress/wp-istalker-minor-fixes/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 08:32:29 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[wpistalker]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[patch]]></category>

		<category><![CDATA[safari]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/wordpress/wp-istalker-minor-fixes/</guid>
		<description><![CDATA[Minor tweaks ]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.kaizeku.com/wp-content/uploads/2008/03/wp-istalker-pin.png' alt='wp-istalker-pin.png' width='128' height='128' longdesc='http://blog.kaizeku.com/wordpress/wp-istalker-minor-fixes/' class="photo thumb- fl" />Minor fix for WP-istalker Theme <tt class="di">inloop_get_cat_links</tt> &#038; <tt class="di">wpi_get_grid_width</tt> functions (version 1.x). You could either wait for WPISTALKER v2 or apply this quick patch.</p>
<h2>functions.php</h2>
<p>Login to WordPress Admin Open &darr;<br />
<span id="more-124"></span></p>
<pre class="smallbox">Presentation &raquo; Theme Editor &raquo; functions.php</pre>
<p>On line 745 replace <tt class="di">inloop_get_cat_links</tt> function with the following code:-</p>
<h3 class="title-">View Code</h3>
<pre class="prebox dn">
function inloop_get_cat_links($echo= 1, $index = false, $separator = '&amp;#184;')
{
	$cats = get_the_category();
	$options = array( 'class' =&gt; 'cat-link dc-subject',
				'href'	 =&gt; '#content',
				'rel'	 =&gt; 'category foaf.topic',
				'title' =&gt; 'category',
				'rev'	 =&gt; 'site:archive');

		if (is_bool($index)):
			$links = &quot;\n&quot;;
			$ismore = false;
			$cnt = count($cats);

			if ($cnt &gt;= 0):
				$ismore = true;
				$endcnt = ($cnt - 1);
			endif;

			$i = 1;

			foreach($cats as $cat):
				$options['href'] = wpi_relative(get_category_link($cat-&gt;cat_ID));
				$options['title'] = $cat-&gt;cat_name.' ('.$cat-&gt;count.' articles in this category)';
				$links .= _t('a',$cat-&gt;name, $options);	

						 if ( $ismore &amp;&amp; $i == $endcnt):
						 	$links .= ' '._t('span','&amp;amp;',array('class'=&gt;'sep')).' ';

						 elseif ( $i !== $cnt):
						 	$links .= _t('span',$separator,array('class'=&gt;'sep')).' ';

						 endif;
			$i++;
			endforeach;

		elseif(is_integer($index)):	

			$cats = $cats[$index];
			$options['href'] = wpi_relative(get_category_link($cats-&gt;cat_ID));
			$options['title'] = $cats-&gt;cat_name.' ('.$cats-&gt;count.' articles in this category)';

			$links .= _t('a', $cats-&gt;name, $options);	

		endif;

		unset($cats);

		if ($echo == 1): echo $links; else: return $links; endif;
}
</pre>
<p>On line 341 replace wpi_get_grid_width function with the below code</p>
<h3 class="title-">View Code</h3>
<pre class="prebox dn">
 function wpi_get_grid_width( $column = 10 )
 { global $kaizeku;
 if (!$kaizeku-&gt;engine-&gt;enabled_grid){
 $kaizeku-&gt;object_cache-&gt;set(WPI_REF_TOKEN,'admin',array('theme_styles'=&gt;'fluid'));
 return false;

 } else {

 settype( $column, &quot;integer&quot; );

 $setwidth = ( $kaizeku-&gt;css['colwidth'] + $kaizeku-&gt;css['margin'] ) ;
 return ( ($column * $setwidth) - $kaizeku-&gt;css['margin'] ) ;

 }
 }
</pre>
<h2 class="cb mgt mgb-">CSS</h2>
<ul class="xoxo exturl pdt">
<li><a href='http://blog.kaizeku.com/wp-content/uploads/2008/02/is_home.css' title='is_home.css' class="inturl">is_home.css</a></li>
<li><a href='http://blog.kaizeku.com/wp-content/uploads/2008/02/is_single.css' title='is_single.css' class="inturl">is_single.css</a></li>
<li><a href='http://blog.kaizeku.com/wp-content/uploads/2008/02/safari.css' class="inturl" title='safari.css'>safari.css</a></li>
<li><a href='http://blog.kaizeku.com/wp-content/uploads/2008/02/mozilla.css' title='mozilla.css' class="inturl">mozilla.css</a></li>
</ul>
<h2 class="cb mgt mgb-">External Links</h2>
<ul class="xoxo exturl pdt">
<li><a href="http://theme.istalker.net">theme.istalker.net</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/wordpress/wp-istalker-minor-fixes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[ViewCode] iStalker v0.2</title>
		<link>http://blog.kaizeku.com/animepaper/ap_userpage/viewcode-istalker-css-v02/</link>
		<comments>http://blog.kaizeku.com/animepaper/ap_userpage/viewcode-istalker-css-v02/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 20:08:39 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Userpage]]></category>

		<category><![CDATA[iStalker]]></category>

		<category><![CDATA[Animepaper]]></category>

		<category><![CDATA[blueprint]]></category>

		<category><![CDATA[code_view]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[geshi]]></category>

		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/animepaper/ap_userpage/viewcode-istalker-css-v02/</guid>
		<description><![CDATA[iStalker stylesheets

[viewcode] src=3224.csx scroll=yes showsyntax=&#8221;no&#8221; scrollheight=400px link=&#8221;no&#8221; geshi=css[/viewcode]]]></description>
			<content:encoded><![CDATA[<h2>iStalker stylesheets</h2>
<p><span id="more-86"></span><br />
[viewcode] src=3224.csx scroll=yes showsyntax=&#8221;no&#8221; scrollheight=400px link=&#8221;no&#8221; geshi=css[/viewcode]</p>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/animepaper/ap_userpage/viewcode-istalker-css-v02/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blueprint CSS Generator</title>
		<link>http://blog.kaizeku.com/web_development/css/blueprint-css-generator/</link>
		<comments>http://blog.kaizeku.com/web_development/css/blueprint-css-generator/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 13:28:31 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[css reset]]></category>

		<category><![CDATA[grid css]]></category>

		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/2007/08/30/blueprint-css-generator/</guid>
		<description><![CDATA[A quick PHP script to help generate more flexible versions of Blueprint's grid.css and compressed.css.]]></description>
			<content:encoded><![CDATA[<p>Blueprint is the latest buzz for CSS evangelist. I found this neat 2.0 tools posted by Alex Giron at <a href="http://cssbeauty.com">CSS Beauty<span id="more-14"></span></a></p>
<p><a href="http://blueprint-generator.kaizeku.com/">The blueprint generator</a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/web_development/css/blueprint-css-generator/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
