Kamis, 25 Agustus 2011

FACTSABER

COPY KODE HTML TEMPLATE DIBAWAH INI
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>

<b:include data='blog' name='all-head-content'/>

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='DESCRIPTION HERE' name='description'/>
<meta content='KEYWORDS HERE' name='keywords'/>
</b:if>

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> ~ <data:blog.title/></title>
</b:if>

<link href='YOUR-FAVICON-URL' rel='shortcut icon' type='image/vnd.microsoft.icon'/>

<b:skin><![CDATA[/*

-----------------------------------------------
Blogger Template Style
Name: Factsaber
Author: Lasantha Bandara
URL 1: http://www.premiumbloggertemplates.com/
URL 2: http://www.bloggertipandtrick.net/
Date: October 2010
License: This free Blogger template is licensed under the Creative Commons Attribution 3.0 License,which permits both personal and commercial use.
However, to satisfy the 'attribution' clause of the license, you are required to keep the footer links intact which provides due credit to its authors. For more specific details about the license, you may visit the URL below:
http://creativecommons.org/licenses/by/3.0/
----------------------------------------------- */

]]></b:skin>

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' type='text/javascript'/>

<script type='text/javascript'>
//<![CDATA[

/*
* jQuery Cycle Plugin (with Transition Definitions)
* Examples and documentation at: http://jquery.malsup.com/cycle/
* Copyright (c) 2007-2009 M. Alsup
* Version: 2.65 (07-APR-2009)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
* Requires: jQuery v1.2.6 or later
*
* Originally based on the work of:
* 1) Matt Oakes
* 2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
* 3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
*/
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);

/*
* jQuery Cycle Plugin Transition Definitions
* This script is a plugin for the jQuery Cycle Plugin
* Examples and documentation at: http://malsup.com/jquery/cycle/
* Copyright (c) 2007-2008 M. Alsup
* Version: 2.52
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);

(function(a){a.fn.getTwitter=function(b){a.fn.getTwitter.defaults={userName:null,numTweets:5,loaderText:"Loading tweets..."};var c=a.extend({},a.fn.getTwitter.defaults,b);return this.each(function(){var g=a(this);g.hide().empty().addClass("twitted");var e='<ul id="twitter_update_list"><li></li></ul>';g.append(e);var d=a("#twitter_update_list");d.hide();var f=a('<p class="preLoader">'+c.loaderText+"</p>");g.append(f);g.show();a.getScript("http://twitter.com/javascripts/blogger.js");a.getScript("http://twitter.com/statuses/user_timeline/"+c.userName+".json?callback=twitterCallback2&count="+c.numTweets,function(){a(f).remove();d.fadeIn(333);d.find("li:first").addClass("firstTweet");d.find("li:last").addClass("lastTweet");d.find("li").children("a").addClass("date");d.find("li").wrapInner('<span class="entry"></span>')})})}})(jQuery);

//]]>
</script>


<script type='text/javascript'>
//<![CDATA[
jQuery(function(){
var $featured_area = jQuery('#featured-area');
var $featured_item = jQuery('#featured-area div#slider-control div.featitem');
var $slider_control = jQuery('#featured-area div#slider-control');
var $image_container = jQuery('div#s1 > div');
var ordernum;
var pause_scroll = false;

$featured_item.find('img').fadeTo("fast", 0.7);
$slider_control.find("div.featitem.active img").fadeTo("fast", 1);
$image_container.css("background-color","#000000");

$image_container.hover(
function () {
jQuery(this).find("img").fadeTo("fast", 0.7);
},
function () {
jQuery(this).find("img").fadeTo("fast", 1);
}
);

function gonext(this_element){
$slider_control.find("div.featitem.active img").fadeTo("fast", 0.7);
$slider_control.find("div.featitem.active").removeClass('active');
this_element.addClass('active');
$slider_control.find("div.featitem.active img").fadeTo("fast", 1);
ordernum = this_element.find("span.order").html();
jQuery('#s1').cycle(ordernum - 1);
}

$featured_item.click(function() {
clearInterval(interval);
gonext(jQuery(this));
return false;
});

var auto_number;
var interval;

$featured_item.bind('autonext', function autonext(){
if (!(pause_scroll)) gonext(jQuery(this));
return false;
});


interval = setInterval(function () {
auto_number = $slider_control.find("div.featitem.active span.order").html();
if (auto_number == $featured_item.length) auto_number = 0;
$featured_item.eq(auto_number).trigger('autonext');
}, 5000);

});
//]]>
</script>

<script type='text/javascript'>
jQuery(function(){
jQuery(&#39;#s1&#39;).cycle({
timeout: 0,
speed: 1000,
fx: &#39;fade&#39;
});

});
</script>

<script type='text/javascript'>
//<![CDATA[

/*
* Superfish v1.4.8 - jQuery menu widget
* Copyright (c) 2008 Joel Birch
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
*/

;(function($){
$.fn.superfish = function(op){

var sf = $.fn.superfish,
c = sf.c,
$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
over = function(){
var $$ = $(this), menu = getMenu($$);
clearTimeout(menu.sfTimer);
$$.showSuperfishUl().siblings().hideSuperfishUl();
},
out = function(){
var $$ = $(this), menu = getMenu($$), o = sf.op;
clearTimeout(menu.sfTimer);
menu.sfTimer=setTimeout(function(){
o.retainPath=($.inArray($$[0],o.$path)>-1);
$$.hideSuperfishUl();
if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
},o.delay);
},
getMenu = function($menu){
var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
sf.op = sf.o[menu.serial];
return menu;
},
addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

return this.each(function() {
var s = this.serial = sf.o.length;
var o = $.extend({},sf.defaults,op);
o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
$(this).addClass([o.hoverClass,c.bcClass].join(' '))
.filter('li:has(ul)').removeClass(o.pathClass);
});
sf.o[s] = sf.op = o;

$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
if (o.autoArrows) addArrow( $('>a:first-child',this) );
})
.not('.'+c.bcClass)
.hideSuperfishUl();

var $a = $('a',this);
$a.each(function(i){
var $li = $a.eq(i).parents('li');
$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
});
o.onInit.call(this);

}).each(function() {
var menuClasses = [c.menuClass];
if (sf.op.dropShadows && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
$(this).addClass(menuClasses.join(' '));
});
};

var sf = $.fn.superfish;
sf.o = [];
sf.op = {};
sf.IE7fix = function(){
var o = sf.op;
if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');
};
sf.c = {
bcClass : 'sf-breadcrumb',
menuClass : 'sf-js-enabled',
anchorClass : 'sf-with-ul',
arrowClass : 'sf-sub-indicator',
shadowClass : 'sf-shadow'
};
sf.defaults = {
hoverClass : 'sfHover',
pathClass : 'overideThisToUse',
pathLevels : 1,
delay : 500,
animation : {opacity:'show'},
speed : 'normal',
autoArrows : true,
dropShadows : true,
disableHI : false, // true disables hoverIntent detection
onInit : function(){}, // callback functions
onBeforeShow: function(){},
onShow : function(){},
onHide : function(){}
};
$.fn.extend({
hideSuperfishUl : function(){
var o = sf.op,
not = (o.retainPath===true) ? o.$path : '';
o.retainPath = false;
var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
.find('>ul').hide().css('visibility','hidden');
o.onHide.call($ul);
return this;
},
showSuperfishUl : function(){
var o = sf.op,
sh = sf.c.shadowClass+'-off',
$ul = this.addClass(o.hoverClass)
.find('>ul:hidden').css('visibility','visible');
sf.IE7fix.call($ul);
o.onBeforeShow.call($ul);
$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
return this;
}
});






})(jQuery);

//]]>
</script>


<script type='text/javascript'>
//<![CDATA[

$(document).ready(function() {
$('ul.sf-menu').superfish();
});

//]]>
</script>

<style type='text/css'>

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, del, dfn, em, font, img, ins, kbd, q, s, samp, acronym, address, big, cite,small, strike,text, strong, sub, sup, tt, var,dl, dt, dd,fieldset, label, legend,table, caption, tbody, tfoot, thead, tr, th, td {font-size:100%;font-family:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;}caption, th, td {text-align:left;font-weight:normal;}table {border-collapse:separate;border-spacing:0;}blockquote:before,blockquote:after,q:before,q:after {content: &quot;&quot;;}blockquote, q {quotes: &quot;&quot; &quot;&quot;;}
* {margin:0;padding:0;}

body{font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;font-size:13px;color: #3e3e3e; background: #0E515F url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZ-oymhO-9nu1b8_2oqkqdvfSA3WHl4Ig3Q9rhIi65wpNGoVzq7aR_tG9iF3eaOkz8lVpwYbyJl0QEam0WD0gIXrBOTv2MI6RV62UDfoSjnIfHWZlSf19gcMYrF6diHlwVaoM05dd7Q5FB/s0/body-bg.jpg) repeat-x top center; text-shadow: 0px 1px 0px #DADCDD}

#bodywrap{}

a {color:#095D89;text-decoration:none}
a:hover {color:#F7AD71;}

a img{border-width:0}
/* Header ----------------------------------------------- */
#header-wrapper{width:1003px;margin:0 auto 110px;height:100px;overflow:hidden;}
#header-inner{background-position:center;margin-left:auto;margin-right:auto}
#header{margin:0;border:0 solid $bordercolor;color:$pagetitlecolor;float:left;width:48%;overflow:hidden;}
#header h1{margin:0 5px 0;padding:20px 0 0 10px;font-family:&quot;Segoe UI&quot;,Georgia, Times New Roman Times, Serif;font-weight:bold;font-size:46px;color:#f9f9f9;text-transform:uppercase;}
#header h1 a{color:#f9f9f9;}
#header h1 a:hover{color:#f9f9f9;}
#header .description{padding-left:20px;color:#111111;font-style:italic;font-size:14px;font-weight:normal;margin-top:0px;padding-top:0px;}
#header2{float:left;width:50%;overflow:hidden;}
#header2 .widget{float:right;margin-top:30px;}
#header a{color:#666666;text-decoration:none}
#header a:hover{color:#666666}
#header img{margin-left:auto;margin-right:auto}
/* Outer-Wrapper ----------------------------------------------- */
#outer-wrappermain{width:1002px;margin:0 auto;padding:0;border-left:0px solid #050505;border-right:0px solid #050505;}
#outer-wrapper{width:1003px;margin:0 auto;padding:0;text-align:left;font:normal normal 100% Arial,Georgia,Serif;;border-left:0px solid #353434;border-right:0px solid #353434;}
#content-wrapper{width:1003px;margin:0px auto 0px;padding:0;text-align:left;font:normal normal 100% Arial,Georgia,Serif;;background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXGeS0ZvPmS_cFW5W71H3fC0npM9regUwNNQH_18Daab2zYI5LMzNClSfZn37uWKy4Mk4wE9_oMVE5ZS62nq9ramm96lqTEJiciKrP9QKqyUPD2Ju0t1Le5aX3zQZI805fVq65Aj0AcKl-/s0/container.png) repeat-y scroll center center}
#content-wrapper-2{width:1003px;margin:0px auto 0px;padding:0;background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdBaDwyESeYp2t8MVMe9QXC2eTIefOAMkiaJCZBABo0PnW98h0413cyohX0ZLQlFBJ5nm_PEi0r0tmtstlUOt_rpbi794ugvBd_ZmlO8KJQRwofuD14MKPog_1ep02d3b4SYWW8CJr7jsM/s0/top-container.png) no-repeat scroll center top;height:45px;}
.clear-content{clear:both;}

#bottom-container { width:1003px; background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2Vq_jIM7xPMr3103pRGsGl_zwViRC5-jIclbZLrRuOF-tDpQ_DRbFdKkHHvnRNBKnDVl0ECBx7omK_d6XMglN2wuBc5Ma0kVXxCCNTdG31aWq6glvidfa7U9_qkbBFyyBaRmHfTCUmt1N/s0/bottom-container.png) no-repeat ;margin:0 auto 60px ;height:49px}

#sidebar-wrapper{width:310px; float:left;display:inline;margin:0 0 0 10px;padding:10px 0 10px 0;background:#c5edf5;display:inline;/* fix for doubling margin in IE */
word-wrap:break-word;/* fix for long text breaking sidebar float in IE */
overflow:hidden;/* fix for long non-text content breaking IE sidebar float */
}
#main-wrapper{width:616px;float:left;padding:0 0 10px 0;margin-left:30px;margin-top:0px;display:inline;/* fix for doubling margin in IE */
word-wrap:break-word;/* fix for long text breaking sidebar float in IE */
overflow:hidden;/* fix for long non-text content breaking IE sidebar float */
}


/* Headings ----------------------------------------------- */
h2{margin:1.5em 0 .75em;font:normal normal 78% &#39;Trebuchet MS&#39;,Trebuchet,Arial,Verdana,Sans-serif;line-height:1.4em;letter-spacing:.2em;color:#999999}
/* Posts ----------------------------------------------- */
h2.date-header{margin:1.5em 0 .5em}
.post{float:left;background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq8Vi4lGMOfc9tdBOw5lpRf5cj_Dk1fLDqX8hYG3BsTW_AUJqFzEU56UfHYJyfeLNEYPmPjyarSK4bt8KVyxw52Bl5zqSzTzJrSFPtlzECvuXXuSy2P7HT0WHSNj8LSNGFVjzzkRwdOc_l/s0/post-bottom.jpg) no-repeat bottom left;margin:10px 0 10px 0;padding: 0px 40px 15px 30px}
.post h3{float:left;display:inline;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;font-size:18px;font-weight:bold;color:#095d89;text-decoration:none;background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4AuzphbDN4HP0rW3TR4uUO6FurXKfGUa0tyhi8Dsbs0DpkYocyZvpNX5SbF9YWo4UbdMCzV4jl8HLBfTJyS5ojlEnhnwjeQz-GpsiOvLXX4QyzEHxbul1OFdjaksfUBwjh-m4FaAxfT4n/s0/posthead-bg.jpg) no-repeat;padding-left:48px;padding-bottom:10px;min-height:41px;}
.post-body a{color:#f7ad71;}
.post-body a:hover{text-decoration:underline;}
.post h3 a,.post h3 a:visited,.post h3 strong{display:block;text-decoration:none;color:#095d89;}
.post h3 strong,.post h3 a:hover{color:#1E83E1;}
.post-body{margin:0 0 .75em;line-height:1.6em;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;font-size:13px;color: #3e3e3e;}
.post-body blockquote{background: #c5edf5 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNBFbPMypuAyKBO1wPM7mRHsrMcSVEirSl4mUVgNiFZ2WF4Pbxwg7p4HbMABlyt-hcS6sPiHIKy_5sR2ghSGrquYBhhZJjNHzfpBx3xHBVGN1nhBqSGzu2NbwgzTcTLxzxAGXZH3HCGBQP/s0/quote.png) no-repeat top left;font-style: italic;margin-top:10px;margin-bottom:10px;padding:15px 15px 15px 30px;}
.post-footer{margin:.75em 0;color:#999999;letter-spacing:.1em;font:normal normal 78% &#39;Trebuchet MS&#39;,Trebuchet,Arial,Verdana,Sans-serif;line-height:1.4em}
.comment-link{margin-left:.6em}
.post img{padding:0;}
.post blockquote{margin:1em 20px}
.post blockquote p{margin:.75em 0}
/* Comments ----------------------------------------------- */
#comments{font:normal normal 100% &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;margin-right:10px;}
#comments h4{margin:1em 0;color:#717171;font:bold 18px Serif,Arial,sans-serif,&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica}
#comments h4 strong{font-size:110%}
#comments-block{margin:1em 0 1.5em;font:normal normal 100%/1.3em &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#comments-block dt{color:#000;border-top:1px solid #c5edf5;border-left:1px solid #c5edf5;border-right:1px solid #c5edf5;background:#c5edf5;margin:20px 0 0 0;padding:10px;font:italic bold 14px &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#comments-block dt a{text-decoration:none;color:#000;font:italic bold 14px &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#comments-block dd{color:#3e3e3e;border-left:1px solid #c5edf5;border-right:1px solid #c5edf5;background:#c5edf5;margin:.0em 0 0;padding:10px;font:normal normal 12px &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#comments-block dd a{color:#3e3e3e;text-decoration:none;font:normal normal 12px &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#comments-block dd.comment-footer{margin:0 0 0;border-left:1px solid #c5edf5;border-right:1px solid #c5edf5;border-bottom:1px solid #c5edf5;padding:10px;font:normal normal 100%/1.4em &quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#comments-block dd p{margin:0 0 .75em}
.deleted-comment{font-style:italic;color:gray}
#blog-pager-newer-link{float:left;}
#blog-pager-older-link{float:right}
#blog-pager{text-align:center;margin-right:32px;}
.feed-links{clear:both;line-height:2.5em}
/* Sidebar Content ----------------------------------------------- */
.sidebar{color:#666666;line-height:1.5em;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
.sidebar ul{list-style:none;margin:0 0 0;padding:0 0 0}
.sidebar li{margin:0;padding-top:0;padding-right:0;padding-bottom:.25em;padding-left:15px;text-indent:-15px;line-height:1.5em}
.sidebar .widget{border:0 solid #bfbfbf;margin:0 0 0 0;padding:10px 0px;}
.sidebar .widget a{font-size:12px;outline:none}
.sidebar .widget h2{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNN3G63VhT31v_7agc8F8qAEO02ymZJARJLVHZLDUpjD02nN8tKvfeW7KXCQEN9G2y6XkhzqXy39jZMIKERmRIytCbjqUxGbi6t7xv70uOqGqdW_Jm8ansYALcFkBLZoybtc5JXH2Jjaly/s0/right-head.png) no-repeat;height:39px;padding:25px 0 0 80px;width:195px; font-weight:bold;width:255px;font-size:14px;color:#fff;margin:0 0 10px 0}
.sidebar .widget-content{padding-left:20px;padding-right:20px;}
.sidebar ul{list-style-type:none;margin:0 0 10px 0;padding:0}
.sidebar ul li{list-style:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBgpWN0KYqtxxrdoev8Rnrpx8eSdXZHg83WaEy2AGn9wPcSsrXY_SioUeXgPUtpi0yDbs1wKAXlp2Fg6J4AozyeI04fM1o13mV2E5n0JpQUVQXCzpDhF_WGbnbHHAA3Ya5P_B3imF-i2bo/s0/bullet.png) outside;padding-left:15px;margin-left:30px;}
.main .widget{margin:0 0 2px;padding:0 0 0}
.main .widget a{outline:none;}
.main .widget a:hover{outline:none;color:#f7ad71}
.main .Blog{border-bottom-width:0}
/* Profile ----------------------------------------------- */
.profile-img{float:left;margin-top:0;margin-right:5px;margin-bottom:5px;margin-left:0;padding:4px;border:1px solid #cccccc}
.profile-data{margin:0;text-transform:uppercase;letter-spacing:.1em;font:normal normal 78% &#39;Trebuchet MS&#39;,Trebuchet,Arial,Verdana,Sans-serif;color:#999999;font-weight:bold;line-height:1.6em}
.profile-datablock{margin:.5em 0 .5em}
.profile-textblock{margin:0.5em 0;line-height:1.6em}
.profile-link{font:normal normal 78% &#39;Trebuchet MS&#39;,Trebuchet,Arial,Verdana,Sans-serif;text-transform:uppercase;letter-spacing:.1em}
/* Footer ----------------------------------------------- */

.bottom-widget{width:300px;float:left;display:inline;font-size:12px;margin:10px;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
.bottom-widget h2 {background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNN3G63VhT31v_7agc8F8qAEO02ymZJARJLVHZLDUpjD02nN8tKvfeW7KXCQEN9G2y6XkhzqXy39jZMIKERmRIytCbjqUxGbi6t7xv70uOqGqdW_Jm8ansYALcFkBLZoybtc5JXH2Jjaly/s0/right-head.png) no-repeat;height:39px;padding:25px 0 0 80px;width:195px; font-weight:bold;width:210px;font-size:14px;color:#fff;margin:0 0 20px 0}
.bottom-widget ul {list-style:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBgpWN0KYqtxxrdoev8Rnrpx8eSdXZHg83WaEy2AGn9wPcSsrXY_SioUeXgPUtpi0yDbs1wKAXlp2Fg6J4AozyeI04fM1o13mV2E5n0JpQUVQXCzpDhF_WGbnbHHAA3Ya5P_B3imF-i2bo/s0/bullet.png) outside;padding-left:25px;margin-left:30px;}
.bottom-widget li {font-size:12px;line-height:14px;margin-bottom:5px}
.bottom-widget a {color:#095d89;text-decoration:none;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
.bottom-widget a:hover {color:#f7ad71;}

#top-footer{height:45px;background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdBaDwyESeYp2t8MVMe9QXC2eTIefOAMkiaJCZBABo0PnW98h0413cyohX0ZLQlFBJ5nm_PEi0r0tmtstlUOt_rpbi794ugvBd_ZmlO8KJQRwofuD14MKPog_1ep02d3b4SYWW8CJr7jsM/s0/top-container.png) repeat-y scroll center top }
#footer {background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXGeS0ZvPmS_cFW5W71H3fC0npM9regUwNNQH_18Daab2zYI5LMzNClSfZn37uWKy4Mk4wE9_oMVE5ZS62nq9ramm96lqTEJiciKrP9QKqyUPD2Ju0t1Le5aX3zQZI805fVq65Aj0AcKl-/s0/container.png) repeat-y scroll center top}
#bottom-footer {height:49px;background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2Vq_jIM7xPMr3103pRGsGl_zwViRC5-jIclbZLrRuOF-tDpQ_DRbFdKkHHvnRNBKnDVl0ECBx7omK_d6XMglN2wuBc5Ma0kVXxCCNTdG31aWq6glvidfa7U9_qkbBFyyBaRmHfTCUmt1N/s0/bottom-container.png) no-repeat scroll center top ;padding:50px 0 0 0}
#bottombar {width:1000px;margin:0 auto;padding:0 0 0 30px}

#credit {color:#696C6B;height:40px;width:1000px;margin:0 auto;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;}
#credit p {color:#fff;font-size:12px;padding-top:10px;float:left;display:inline}
#credit a {color:#fff;}
#credit a:hover {color:#E5E5E5}
#credit-logo {height:38px;width:160px;float:right;display:inline;margin-top:5px}


#sidebar-left{width:47%;float:left;margin-left:5px;}
#sidebar-right{width:47%;float:right;margin-left:5px;}
#comment-form iframe{padding:5px;font:normal 12pt &quot;ms sans serif&quot;,Arial;color:#000;width:600px}
#comment-form iframe:hover{}
#comment-form a{color:#000}
a.addcomments{background:#363636 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2Bj__f63F0oy9jJXvkkXAJnMWCm0200BtzUXptzPEjo7xRLwZbxf77DJGHEmXfunDjqsikyE0DzY_0lFsKElcIixfsAyhnnCrgzKYfsaKo6_yMW74YDhzPgOLQHvPDJFUgCvbGYfMLEvs/s0/commentfeed.png) no-repeat scroll 5px center;color:#FFF;font:10px verdana;padding:2px 5px 2px 20px;text-transform:uppercase}

.avatar-image-container img{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirwjjrVq2rfRdY2LTu-Hw7zATxiJVReUBkhddwJIeo_9NnuwEzqRkt1_MgQjvefOOrq1UysFFMHWuxFRRRYt4g16FWqPBMK0p40TE5sMMiPB8OwLCYOHZ86L9plnv-3yHIA_ODiMgiEKeH/s0/avatar111.jpg);width:35px;height:35px}

#navbar-iframe{height:0;visibility:hidden;display:none}

#menu-wrap {}
#menu { margin: 0px auto; width: 1005px; height:50px; }
#menu ul {height:50px;}
#menu ul li {font-weight:bold;font-size:12px;}
#menu ul li a {text-shadow:2px 1px 2px #3E424A;text-transform:uppercase;margin:5px 5px 5px 0;text-decoration:none;color:#fff;}

.sf-menu,.sf-menu *{margin:0;padding:0;list-style:none}
.sf-menu{line-height:1.0}
.sf-menu ul{position:absolute;top:-999em;width:10em;}
.sf-menu ul li{width:100%}
.sf-menu li:hover{visibility:inherit;}
.sf-menu li{float:left;position:relative}
.sf-menu a{display:block;position:relative}
.sf-menu li:hover ul,.sf-menu li.sfHover ul{left:0;top:3.6em;z-index:99}
ul.sf-menu li:hover li ul,ul.sf-menu li.sfHover li ul{top:-999em}
ul.sf-menu li li:hover ul,ul.sf-menu li li.sfHover ul{left:10em;top:0}
ul.sf-menu li li:hover li ul,ul.sf-menu li li.sfHover li ul{top:-999em}
ul.sf-menu li li li:hover ul,ul.sf-menu li li li.sfHover ul{left:10em;top:0}
.sf-menu{float:left}
.sf-menu a{padding:.75em 1em;text-decoration:none}
.sf-menu a,.sf-menu a:visited{color:#13a}
.sf-menu li{background:transparent}
.sf-menu li li{background:#0E525F}
.sf-menu li li li{background:#0E525F}
.sf-menu li:hover,.sf-menu li.sfHover,.sf-menu a:hover{background:#0B353C;outline:0}
.sf-menu a:active{background:}
.sf-menu a:focus{outline:0}
.sf-menu a.sf-with-ul{padding-right:2.25em;min-width:1px;}
.sf-sub-indicator{position:absolute;display:block;right:.75em;top:1.05em;width:10px;height:10px;text-indent:-999em;overflow:hidden;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpGXLEfXeTHJYMPVaGjfnDdZ_xlAhTdk2sK29zCUg7-BAlb4Punb_jp1M35xh20peRuW1iwgubHh7acKIVR8JzYrRBBILty3g_EXhfThfIAlHmCvsomeD5suWl_UlKsE1o-Rri4hj9E2w-/s0/arrows-white.png) no-repeat -10px -100px;}
a &gt; .sf-sub-indicator{top:.8em;background-position:0 -100px;}
a:focus &gt; .sf-sub-indicator,a:hover &gt; .sf-sub-indicator,a:active &gt; .sf-sub-indicator,li:hover &gt; a &gt; .sf-sub-indicator,li.sfHover &gt; a &gt; .sf-sub-indicator{background-position:-10px -100px;}
.sf-menu ul .sf-sub-indicator{background-position:-10px 0}
.sf-menu ul a &gt; .sf-sub-indicator{background-position:0 0}
.sf-menu ul a:focus &gt; .sf-sub-indicator,.sf-menu ul a:hover &gt; .sf-sub-indicator,.sf-menu ul a:active &gt; .sf-sub-indicator,.sf-menu ul li:hover &gt; a &gt; .sf-sub-indicator,.sf-menu ul li.sfHover &gt; a &gt; .sf-sub-indicator{background-position:-10px 0;}
.sf-shadow ul{background:url(&#39;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhANPdm1cXMD8WFipQWsIxFk28Yy9tr-EzAD9EG0fKHlzlxO8BvmcQhjDRZgYKM0uMTzgacPvg4sb5MYziYP_tGelSSxAyBd5eFQiHqAd14QOWOR-T6WWa9jEC9XbIGQfx4FC7nbLKbfjTM/s0/shadow.png&#39;) no-repeat bottom right;padding:0 8px 9px 0;-moz-border-radius-bottomleft:17px;-moz-border-radius-topright:17px;-webkit-border-top-right-radius:17px;-webkit-border-bottom-left-radius:17px}
.sf-shadow ul.sf-shadow-off{background:transparent}

.postdate {font-size:10px;display: inline;float:left;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;margin-left:50px;margin-top:-15px;}
.postdate a {color:#292929;text-decoration:none;font-weight:bold}
.postdate a:hover {color:#f7ad71;}

#feeds {font-size:12px;width:290px;height:141px; background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEPppdws0HeoTtaLLdCin9XZ0v-JWEgHzXXdy8gR8b4M0zgzsOXyNuFQ49rNFfhKz_3KQllsd-qrcACAsIT3eut2hGmFw_5m8_s-jSmpZz_fRWoZBx3c2DuxJTJFEaCLgmwHbJ69k1BUMj/s0/feed-bg.jpg);margin:0 0 20px 10px}
.textarea {background:#C7EDF9 none repeat scroll 0 0;border:medium none;font-size:12px;height:20px;margin:50px 0 5px 15px;padding:5px 0 0 5px;width:155px;}
#feeds a {font-size:11px;color:#FF7300;text-decoration:none}
#feeds p {color:#51616E;margin-left:15px;}


#featured-area { height: 300px; position: relative; padding: 0px 0px 10px 0px; z-index: 1; width:616px;overflow:hidden;}
#featured-area .pics { position: absolute; width: 490px; height: 298px; top: 11px; left: 14px; }
#featured-area .pics div.excerpt { background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPmIlGh_91hDxGsRtdUA1bG2JSS5uaSk8JD1QOYNXIDe0607pJxXGScZuWGatdOGyPcwE_F3yW-gPc83MX5Gkx6_0E0BER2njJy5cwq7NPvnNPp1-GlDsnuu8g2TPZo_GovM3co3AmLVKn/s0/feat-excerpt.png) repeat;bottom:0;font-size:18px;left:0;padding:10px 0 0 10px;position:absolute;width:480px;z-index:2;}
#featured-area .pics div.excerpt p { color: #292929;width:450px;}
#featured-area .pics div.excerpt a { color: #292929; font-weight:bold; }
#featured-area .pics div.excerpt a:hover { color: #F90E0E; text-decoration:none }

.excerpt-text {display:inline;float:left;font-size:10px;width:450px;padding:0 0 10px 0}

#featured-area .pics span.feat-overlay { position: absolute; top: 0px; left: 0px; display: block; width: 490px; height: 298px; z-index: 1; }

#featured-area div#slider-control { position: absolute; width: 110px; height: 296px; border: 1px solid #b4b4b4; z-index: 4; top: 11px; right: 1px; }
#featured-area div#slider-control div.featitem { background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhT_0KMXF-ZqFRl0eZUcCl6ws3tYfVR4Q6dfKt7cELdHQpI06bp2We7DLg7M7AyvHB0oFuwPY6726V4Dvzfpnwo5xhDRshT0y5v4U5tIICk1FLUVz7NIIFoKs5D63wGz_MYTkNcl-sEGc1T/s0/featitem-bg.png) no-repeat top left; height: 77px; float: left; width: 76px; padding: 10px 16px 12px 18px; cursor: pointer; }
#featured-area div#slider-control div.featitem img { float: left; margin-right: 18px; border: 1px solid #f6f6f6; margin-top: 5px; }
#featured-area div#slider-control div.featitem span.order { display: none; }
#featured-area div#slider-control div.featitem h2 { font-size: 18px; line-height: 24px; float: left; width: 172px; padding-bottom: 4px; }
div#slider-control div.featitem h2 a { color: #959595; }
#featured-area div#slider-control div.featitem span.meta { color: #b6b6b6; font-size: 11px; padding: 1px 0px; border: 1px solid #cfcfcf; border-width: 1px 0px; display: block; float: left; width: 172px; }

#featured-area div#slider-control div.featitem.active { background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkS8cLwsZthoSxFPMAOqoKlx_SDvgcMwYgukCNfXxEibNkN_nlNc5cu-YVJhmbK-e89e0jQkKQCU3fvED-jX7eF0GFG19OSaUlSCW7rAO-etcCls9TI8OVEVuL4AzUGgzLCuqt52Y2qDWX/s0/featitem-bg-active.png) no-repeat top left; margin-left: -20px; padding-left: 38px; }
#featured-area div#slider-control div.featitem.active h2 { background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgviYREK3Jm-7y2im9uuKXboDwJQskY0ir90xSxDp3lU3QERyZ-Y1If2Ev6YiUMD0u4LGB2DLMkPryG19xD8pMWtNyCs-7o_4neb62Fv9xq1ej0AuyY2TxQ8MH4a8IYNyT6VEb1cJv3Bd3c/s0/featitem-active-h2border.png) repeat-x bottom left; margin-bottom: 1px; color: #000000; }
#featured-area div#slider-control div.featitem.active span.meta { color: #797979; border: 0px; }

.search{float:left;width:225px;height:40px;display:inline;padding-top:5px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEismzTs2QAZf2Bw2XlmMKjhMtfH1dTR_5omZ2Dx6ugkhs3tM2LA-lLPNDFGPEwwKxqX7u0VSM5MYD3QraJfBQ7-moGcEAXp0uGfj6FYQJci6QOzxzzZoULuO5G8ATbIsr2ASnSVJjd-pw6Q/s0/search-bg.png) no-repeat;margin:20px 0 20px 30px}
input#s { height:24px;padding-top:5px;width:160px; color:#292929;border:medium none;display:inline;float:left;margin:5px 0 0 15px}
input#searchsubmit {color:#fff; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgD6Sy92fiLge3tuIKwhV8taF59LLgMpn9uer_LL8L7dD-ehdg9ACxyMxCGYujP9QcHFcXqvn5TS3CC3QLu5npFqyZrC5GVvK-tjIm4ytI8dP3_CNSxOGdobqtvyPwqUS6mc9M_R8J3C86n/s0/search.png) no-repeat top left;border:none;width:32px;height:32px;text-indent:-9999px;}
input#searchsubmit:hover {background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsuZQSjq41hEtFH-9REIJiw-hrOId2RGgXs5HCKaYRj89WqStzAHJIncJZaEL961N3f5bC3J9qrcOoTTQBW3yRlkcJbhUEP1dMTTvUOkRwwiAe7fvsAlUb6JKSb78j1MWe901uZX5C6IPb/s0/search-hover.png) no-repeat top left}
.searchtitle {margin-left:10px;font-size:20px;margin-bottom:10px;}

#share {float:left;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpWyOGBw9-icI5NjKVYUnYwQbef6ZMEvLmBXimrlPLg9ZhXQRkYPpI7uqmlYLCkapwiwpQFGUycIUPALR9cRMer2xczg4HyYOmYYDUdBfYDsM-ZxVm-iGYdxQOEL0tZFIhgx6s9xGty8C5/s0/share-bg.png) ;display:inline;width:580px;padding:0 0 20px 0;margin:0 0 0 0px}
#share ul{padding-top:50px;margin-left:20px;padding-top:60px;}
#share li {display:inline;list-style-image:none;list-style-position:outside;list-style-type:none;margin:0 5px 0 0;}

</style>

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style type='text/css'>
.post{padding-right:75px;padding-left:10px;}
</style>
</b:if>

<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<style type='text/css'>
.post{padding-right:75px;padding-left:10px;}
</style>
</b:if>

</head>

<body>

<div id='bodywrap'><div id='outer-wrappermain'><div id='outer-wrapper'><div id='wrap2'>

<!-- skip links for text browsers -->
<span id='skiplinks' style='display:none;'>
<a href='#main'>skip to main </a> |
<a href='#sidebar'>skip to sidebar</a>
</span>


<div id='menu-wrap'>
<div id='menu'>
<ul class='sf-menu'>

<li><a expr:href='data:blog.homepageUrl' title='Home'>Home</a></li>
<li><a expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;' title='Posts RSS'>Posts RSS</a></li>
<li><a expr:href='data:blog.homepageUrl + &quot;feeds/comments/default&quot;' title='Comments RSS'>Comments RSS</a></li>
<li><a href='#' title='Edit this link'>Edit</a></li>

<li><a href='#'>About</a>
<ul>
<li><a href='#'>Child Page 1</a></li>
<li><a href='#'>Child Page 2</a>
<ul>
<li><a href='#'>GrandChild</a></li>
</ul>
</li>
<li><a href='#'>Child Page 3</a></li>
</ul>
</li>

</ul>
</div>
</div>
<div style='clear:both;'/>


<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='FactSaber (Header)' type='Header'>
<b:includable id='title'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<data:title/>
<b:else/>
<a expr:href='data:blog.homepageUrl'><data:title/></a>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='main'>

<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == &quot;BEHIND&quot;'>
<!--
Show image as background to text. You can't really calculate the width
reliably in JS because margins are not taken into account by any of
clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
width if the user is using shrink to fit.
This results in a margin-width's worth of pixels being cropped. If the
user is not using shrink to fit then we expand the header.
-->
<div expr:style='&quot;background-image: url(\&quot;&quot; + data:sourceUrl + &quot;\&quot;); &quot; + &quot;background-position: &quot; + data:backgroundPositionStyleStr + &quot;; &quot; + data:widthStyleStr + &quot;min-height: &quot; + data:height + &quot;px;&quot; + &quot;_height: &quot; + data:height + &quot;px;&quot; + &quot;background-repeat: no-repeat; &quot;' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + &quot;_headerimg&quot;' expr:src='data:sourceUrl' expr:width='data:width' style='display: block;padding-left:0px;padding-top:30px;margin-left:20px;'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == &quot;BEFORE_DESCRIPTION&quot;'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
</b:widget>
</b:section>

<b:section class='header' id='header2' maxwidgets='4' showaddelement='yes'>
<b:widget id='HTML3' locked='false' title='' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != &quot;&quot;'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>

<b:include name='quickedit'/>
</b:includable>
</b:widget>
</b:section>
<div style='clear:both;'/>

</div>
<div class='clear'/>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div id='crosscol-wrapper' style='text-align:center'>
<b:section class='crosscol' id='crosscol' showaddelement='yes'>
<b:widget id='HTML10' locked='false' title='' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != &quot;&quot;'>

</b:if>
<div class='widget-content'>
<data:content/>
</div>

<b:include name='quickedit'/>
</b:includable>
</b:widget>
</b:section>
</div>
</b:if>
</b:if>


<div id='content-wrapper-2'/>
<div id='content-wrapper'>

<div id='main-wrapper'>

<!-- Featured Content Slider Started -->

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>

<script type='text/javascript'>
jQuery(function(){
jQuery(&#39;#s1&#39;).cycle({
timeout: 0,
speed: 1000,
fx: &#39;fade&#39;
});

});
</script>

<div id='gallery'>
<div id='featured-area'>

<div class='pics' id='s1'>

<!--Slide 1 Code Start-->
<div>
<!--Replace below image Address with Slide 1 Large image Address -->
<img height='298' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtRCzVAiFrtPHOGLcFZKwWCf-XKr-wxiDU3nMCFVkc_WMFznJJc2qYd9xeo3QcrRMOwvDJ53OM_iK2ENdVTbX-r4AqISWmlS5yJTuaCQPonLx4yfraVEC3B7zU4Vo2OvMRmZqDbVn1q6Zc/s0/image-1-large.jpg' width='490'/>
<div class='excerpt'>
<h3><a href='SLIDE-1-LINK-HERE'>SLIDE-1-TITLE-HERE</a></h3>
<p class='excerpt-text'>Replace these every slider sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.</p>
</div>
</div>
<!--Slide 1 Code End-->


<!--Slide 2 Code Start-->
<div>
<!--Replace below image Address with Slide 2 Large image Address -->
<img height='298' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhj8isZ-cH5ruXZ2Wc-Vbm12ZmyB_P_KTHVoQof4mwztmop3l12bgPumVYlD1-oczg-LsBJH2myu4kc8YYAw2dZNcw1EsnrYtFYpKKQQocAd9tfCooLvdq83lLQhGFvREeUlx5B9U694YC4/s0/image-2-large.jpg' width='490'/>
<div class='excerpt'>
<h3><a href='SLIDE-2-LINK-HERE'>SLIDE-2-TITLE-HERE</a></h3>
<p class='excerpt-text'>Replace these every slider sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.</p>
</div>
</div>
<!--Slide 2 Code End-->


<!--Slide 3 Code Start-->
<div>
<!--Replace below image Address with Slide 3 Large image Address -->
<img height='298' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYQtYm0ceb8wJEaMpEAA0yiqvkFdo5OGZ0y4R2-8wn7pkaoLBI0IKNFZs4qMQAsjBbdrIHyPt9StCCV9JKIKNHbs_sCqboLctjhDRSVy-_ccaDBeVuYnVZlkshMtsGKi9WnbXwDFC_TS58/s0/image-3-large.jpg' width='490'/>
<div class='excerpt'>
<h3><a href='SLIDE-3-LINK-HERE'>SLIDE-3-TITLE-HERE</a></h3>
<p class='excerpt-text'>Replace these every slider sentences with your featured post descriptions.Go to Blogger edit html and find these sentences.Now replace these with your own descriptions.This theme is Bloggerized by Lasantha - Premiumbloggertemplates.com.</p>
</div>
</div>
<!--Slide 3 Code End-->

</div>

<div id='slider-control'>

<div class='featitem active'>
<!--Replace below image Address with Slide 1 Small image Address -->
<img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiegQFQZrd5Bm64nN7mATokyWFn5Y4sQvg04HS0xOOclsJrPMv18tuuo-9BZ62c6_eBnVTDULELvoGa_GLsfq8qMGh1_Z-8S5U2VyhW55Q8w3lO29x3Ig9vYz62O-5gG71v9-khyphenhyphenn-Qo8n5/s0/image-1-small.jpeg' style='width:67px;height:67px;'/>
<span class='order'>1</span>
</div>

<div class='featitem '>
<!--Replace below image Address with Slide 2 Small image Address -->
<img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh82cY1x9nDTzzsr8QHE-iI5TeGLxyQKx868kp5MRxrLggvFxKkhyphenhyphenH6abC050qFZcBfGqDFAJLLQfloIQM1-wWS4Z2H7uFLWHBqccFK74bJvzsKyIkvVWiAO48YFWGC97H4w8ta01fynUeA/s0/image-2-small.jpeg' style='width:67px;height:67px;'/>
<span class='order'>2</span>
</div>

<div class='featitem '>
<!--Replace below image Address with Slide 3 Small image Address -->
<img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMgGU4Y0SR1FBTAbDo-o3zRh6Ud4aHlmkcX8XOutRCm0beF84jE14oN3efBhwgXiEo4oUHUA9Q4r4U2skQsK92fplB4v6Cgmr4kFeYM2rey6YndWQd8j3pQ4KIA2fth8gKWJwOGs8EvPOp/s0/image-3-small.jpeg' style='width:67px;height:67px;'/>
<span class='order'>3</span>
</div>

</div>

<div class='clear'/>

</div>
</div>

</b:if></b:if>

<!-- Featured Content Slider End -->

<b:section class='main' id='main' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>
<b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhInjWTjLIX_oIc_I9hzWtTyOY31HDx8fnX8rEoZM112AYQnQfC2j6NMzUpC3T_eWeLUAQQXu4xySXHjCcymmvM59ksN4vqyuCmfhddoRBsp1V33RYGajSFhKjn0py-iOoMI4zsopRVQscg/s0/arr-left.gif' style='border:none;'/></a>
</span>
</b:if>

<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKKDETxJgh-OVCzr6EC2qiYg2BeMeYgWaH-VYzf-mtVHEx3e-tBtvCXHvNHBYy4de5PwSXoY9zdWAy0NBOz-okC7PhFX33jxwA4OpTKD4_2K3QS3Iqosv61mbLNQjsZNQ7dt691sS86IZn/s0/arr-right.gif' style='border:none;'/></a>
</span>
</b:if>

<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOvDLlSygt9uXA63c0ImtyaYW-ftIazZ4YzwYlQJrTYdjyaqQWzpmcllkiLWXDrIYQDGLdYo0nJb80MuaFrU1BgJYHHdjRrUiVEVk75B_gH-DYsdhEv4oaprnJ5xn3WhEo5AsJctWihTao/s0/Home.png' style='border:none;'/></a>
<b:else/>
<b:if cond='data:newerPageUrl'>
<a class='home-link' expr:href='data:blog.homepageUrl'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOvDLlSygt9uXA63c0ImtyaYW-ftIazZ4YzwYlQJrTYdjyaqQWzpmcllkiLWXDrIYQDGLdYo0nJb80MuaFrU1BgJYHHdjRrUiVEVk75B_gH-DYsdhEv4oaprnJ5xn3WhEo5AsJctWihTao/s0/Home.png' style='border:none;'/></a>
</b:if>
</b:if>

</div>
<div class='clear'/>
</b:includable>
<b:includable id='shareButtons' var='post'>
<b:if cond='data:post.sharePostUrl'>
<a class='share-button sb-email' expr:href='data:post.sharePostUrl + &quot;&amp;target=email&quot;' expr:title='data:top.emailThisMsg' target='_blank'>
<span class='share-button-link-text'><data:top.emailThisMsg/></span></a>
<a class='share-button sb-blog' expr:href='data:post.sharePostUrl + &quot;&amp;target=blog&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=270,width=475\&quot;); return false;&quot;' expr:title='data:top.blogThisMsg' target='_blank'>
<span class='share-button-link-text'><data:top.blogThisMsg/></span></a>
<a class='share-button sb-twitter' expr:href='data:post.sharePostUrl + &quot;&amp;target=twitter&quot;' expr:title='data:top.shareToTwitterMsg' target='_blank'>
<span class='share-button-link-text'><data:top.shareToTwitterMsg/></span></a>
<a class='share-button sb-facebook' expr:href='data:post.sharePostUrl + &quot;&amp;target=facebook&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=430,width=640\&quot;); return false;&quot;' expr:title='data:top.shareToFacebookMsg' target='_blank'>
<span class='share-button-link-text'><data:top.shareToFacebookMsg/></span></a>
<a class='share-button sb-buzz' expr:href='data:post.sharePostUrl + &quot;&amp;target=buzz&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=415,width=690\&quot;); return false;&quot;' expr:title='data:top.shareToBuzzMsg' target='_blank'>
<span class='share-button-link-text'><data:top.shareToBuzzMsg/></span></a>
</b:if>
</b:includable>
<b:includable id='backlinks' var='post'>
<a name='links'/><h4><data:post.backlinksLabel/></h4>
<b:if cond='data:post.numBacklinks != 0'>
<dl class='comments-block' id='comments-block'>
<b:loop values='data:post.backlinks' var='backlink'>
<div class='collapsed-backlink backlink-control'>
<dt class='comment-title'>
<span class='backlink-toggle-zippy'>&#160;</span>
<a expr:href='data:backlink.url' rel='nofollow'><data:backlink.title/></a>
<b:include data='backlink' name='backlinkDeleteIcon'/>
</dt>
<dd class='comment-body collapseable'>
<data:backlink.snippet/>
</dd>
<dd class='comment-footer collapseable'>
<span class='comment-author'><data:post.authorLabel/> <data:backlink.author/></span>
<span class='comment-timestamp'><data:post.timestampLabel/> <data:backlink.timestamp/></span>
</dd>
</div>
</b:loop>
</dl>
</b:if>
<p class='comment-footer'>
<a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + &quot;_backlinks-create-link&quot;' target='_blank'><data:post.createLinkLabel/></a>
</p>
</b:includable>
<b:includable id='post' var='post'>

<div class='post hentry'>

<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>

<div class='post-header-line-1'/>

<div style='clear:both;'/>
<div class='postdate'> Posted by <data:post.author/> <data:post.timestamp/>, under <b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><b><data:label.name/></b></a>
<b:if cond='data:label.isLast != &quot;true&quot;'><b>,</b></b:if>
</b:loop>
</b:if> | <b:if cond='data:post.numComments == 1'>
<b>1</b> <b><data:commentLabel/></b>
<b:else/>
<b><data:post.numComments/></b> <b><data:commentLabelPlural/></b>
</b:if> </div>
<div style='clear:both;'/><br/>

<div class='post-body entry-content'>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>

<div class='sharebox' style='float:left;margin-right:10px;'>
<table><tr>
<td><a class='twitter-share-button' data-count='vertical' data-lang='en' data-related='Pbtemplates:Premium Themes for Bloggers!' data-via='' expr:data-text='data:post.title' expr:data-url='data:post.url' href='http://twitter.com/share' rel='nofollow'/><b:if cond='data:post.isFirstPost'>
<script src='http://platform.twitter.com/widgets.js' type='text/javascript'>
</script>
</b:if>
</td>
</tr><tr>
<td><a expr:share_url='data:post.url' name='fb_share' rel='nofollow' type='box_count'/>
<script src='http://static.ak.fbcdn.net/connect.php/js/FB.Share' type='text/javascript'/></td>
</tr></table>
</div>

</b:if></b:if>

<p><script type='text/javascript'>
summary_noimg = 450;
summary_img = 300;
img_thumb_height = 125;
img_thumb_width = 125;
</script>

<script type='text/javascript'>
//<![CDATA[

function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}

function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}

if(img.length<1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj11UeMA94PUGUbaIe5YOZZLVAbEA0Amm7Sbl10r4t4ehEPpXzhBTl36lYMjOESHmNcOeb1_HUU63OktsPMyToJBr05-G1NiZCnuun-j2EOax0vnMdy6yHxVMpM1cEPRLzjPlFOuCxTLi4N/s0/thumbnail.jpg" width="125px" height="125px"/></span>';
summ = summary_img;
}

var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}

//]]>
</script>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>

<b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if></p>

<div style='clear: both;'/> <!-- clear for photos floats -->
</div>

<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + &quot;#more&quot;'><data:post.jumpText/></a>
</div>
</b:if>

<div class='post-footer'>

<div class='post-footer-line post-footer-line-1'>

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<!-- navigation -->
<b:include name='nextprev'/>
</b:if>

<div class='post-footer-line post-footer-line-2'>

</div>

</div>

<div class='post-footer-line post-footer-line-3'/>
</div>

<b:if cond='data:blog.pageType == &quot;item&quot;'>

<div id='share' style='margin-bottom:5px;'>
<ul>

<li><a expr:href='&quot;http://twitter.com/share?text=&quot; +data:post.title+ &quot;&amp;url=&quot; + data:post.url' rel='nofollow' target='_blank' title='Twitt This!'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhN-ob5F81RV87De_arwoJFDB1SJVbIVv7DCbsdwLoOkcsHvnrjf7etVmkg4yrRupFuZ5Kx8mLDUS_aUkD1xJMHSkyN-fndPZG_w0q1JXAw9NKGA1incKlbuY4M-K5lEkvFCJd1Mrx9EBtb/s0/twitter.png'/></a></li>

<li><a expr:href='&quot;http://www.facebook.com/share.php?u=&quot; + data:post.url' rel='nofollow' target='_blank'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguf-nVvSOJGG87xwH6Iy0Y4kYEP_YMHs3HNgwuxwKrYs5AzU6TkcySfT-fh3S8t3jUB3T5q_Rk1rx6mmFnJ-5k9mJ47OKX5Ogx3CMhzDf_ybSZZ7q5Yoo6N9-1dBifOrtYc715uhrYebDh/s0/facebook.png'/></a> </li>

<li><a expr:href='&quot;http://www.stumbleupon.com/submit?&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank' title='Stumble it!'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4D7md0JiqO_Q-35XyvdSfIZ3PtPeawBqrAcabOiprQT4LA8ijOYBd3AumPIKy8gQeGKqPquKio_jW5649EcP5V5VIFoYfoZb5jQx7-qy9UFNor06Y8VfZOwGDhg2KhU2BMg-2JbITO-VG/s0/stumbleupon.png'/></a></li>

<li><a expr:href='&quot;http://www.google.com/buzz/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;srcTitle=&quot; + data:blog.title+ &quot;&amp;srcURL=&quot; + data:blog.homepageUrl ' rel='nofollow' target='_blank' title='Add To Google Bookmark!'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQycmywgS5FNfdt-tWY0UldLM5289KbxWrRVgLrJb0ZvgJiB7GmQLlzih3CfgBWfdgjKJgR68AYYyaZBLQmHIFKdDHB6FJ7ns442cKJE4zxSWdGJEaINKhtXkewuTCITP2bH0XKVUtQzS7/s0/google.png'/></a></li>

<li><a expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank' title='Digg it!'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyw7AtwfAXyiyezr32xoGPhOaYRkY0BjW0VsjxfW1bDzz9XUPW_gdO6k2pLbhBAkhURGPB_uqQIq2Z-JYlBvLSlNs7-QQoAKoLvmX1mF5EumMei9yJeETD6s4Ytf95Z9SDRA63RGYuxdLr/s0/digg.png'/></a></li>

<li><a expr:href='&quot;http://del.icio.us/post?v=4&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='nofollow' target='_blank'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuSRIbIh_fZPI0xC-hI1fqMZNMpouhhCMyhXRpPCaGEnncr3z-R8WXoBQIK1viqLZmahracqmh6Xaf57D2eVkwkt7OTOlf65PsSk0K4bLKVeNF9arEc1QBt6MsTJRiBKrcoS8ei_awd3vN/s0/delicious.png'/></a></li>

<li><a expr:href='&quot;http://technorati.com/signup/?f=favorites&amp;Url=&quot; + data:post.url' rel='nofollow' target='_blank'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjySPkXh5RUzeBJ9tDF10ieJbS8w_fd_VoNMGff7-lW0Vvaq3Ou7mWCwUYgnE2uLLWlJ4aOcvt_e-fUCCdFSQZuekgMrZoDLllgn9nvJ6vUEAzHbMgghNh58c_JmGuZPf6E_q3s9aFYJm7U/s0/technorati.png'/></a></li>


</ul>
</div>

</b:if>

</div>
</b:includable>
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
<data:navMessage/>
</div>
<div class='status-msg-border'>
<div class='status-msg-bg'>
<div class='status-msg-hidden'><data:navMessage/></div>
</div>
</div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
<b:includable id='comment-form' var='post'>
<div id='comment-form'>
<a name='comment-form'/>
<h4 id='comment-post-message'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0c93y-y2t1LU9_n4J52VfvdNzIU0MCBqZKllAGoqpAiDyRhSJ1OFdU4T1yuF1nALjU_Sx4kfCGm1Fc5SlKkoDG8dMWSgelXj5Q_fzmAlspnDYvMrz59Xlo9ZqbhKAe5zhz2hctrzrqHee/s0/reply.png'/></h4>

<p><data:blogCommentMessage/></p>
<data:blogTeamBlogMessage/>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' width='600'/>
<data:post.friendConnectJs/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe(&#39;<data:post.appRpcRelayPath/>&#39;, &#39;<data:post.communityId/>&#39;);
</script>
</div>
</b:includable>
<b:includable id='backlinkDeleteIcon' var='backlink'>
<span expr:class='&quot;item-control &quot; + data:backlink.adminClass'>
<a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
<img src='http://www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
<b:includable id='postQuickEdit' var='post'>
<b:if cond='data:post.editUrl'>
<span expr:class='&quot;item-control &quot; + data:post.adminClass'>
<a expr:href='data:post.editUrl' expr:title='data:top.editPostMsg'>
<img alt='' class='icon-action' height='18' src='http://www.blogger.com/img/icon18_edit_allbkg.gif' width='18'/>
</a>
</span>
</b:if>
</b:includable>
<b:includable id='main' var='top'>

<!-- posts -->
<div class='blog-posts hfeed'>

<b:include data='top' name='status-message'/>

<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>

<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:post.includeAd'>
<b:if cond='data:post.isFirstPost'>
<data:defaultAdEnd/>
<b:else/>
<data:adEnd/>
</b:if>
<div class='inline-ad'>
<data:adCode/>
</div>
<data:adStart/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<data:adEnd/>
</div>

<b:if cond='data:top.showStars'>
<script src='http://www.google.com/jsapi' type='text/javascript'/>
<script type='text/javascript'>
google.load(&quot;annotations&quot;, &quot;1&quot;, {&quot;locale&quot;: &quot;<data:top.languageCode/>&quot;});
function initialize() {
google.annotations.setApplicationId(<data:top.blogspotReviews/>);
google.annotations.createAll();
google.annotations.fetch();
}
google.setOnLoadCallback(initialize);
</script>
</b:if>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<!-- navigation -->
<br/><div style='clear:both;'/><b:include name='nextprev'/>
</b:if>
</b:if>

</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='&quot;item-control &quot; + data:comment.adminClass'>
<a expr:href='data:comment.deleteUrl' expr:title='data:top.deleteCommentMsg'>
<img src='http://www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
<b:includable id='feedLinks'>
<b:if cond='data:blog.pageType != &quot;item&quot;'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>

<b:else/> <!--Post feed links -->
<div class='post-feeds'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.feedLinks'>
<b:include data='post.feedLinks' name='feedLinksBody'/>
</b:if>
</b:if>
</b:loop>
</div>
</b:if>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:feedLinksMsg/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
</b:loop>
</div>
</b:includable>
<b:includable id='comments' var='post'>
<div class='comments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<h4>
<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLdcmcCnkq8EpoK-miTm2jhO2Gb5FqM1HKWvAPVftT63Ag4uZrtWsylf6nbSTx9sAAH2TV8VAxscCYmHCvnlaq-jjGqVW7DJdMEIVZJh3OxJiOxNy6I2JIZHSxeMga5DWFQfawOz5QzKdC/s0/comment.png'/><br/>
<font style='font-size:14px;color:#000;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;font-weight:normal;'><data:post.numComments/> Responses So Far:</font>
</h4>

<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'><data:post.oldestLinkText/></a>
&#160;
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'><data:post.olderLinkText/></a>
&#160;
<data:post.commentRangeText/>
&#160;
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'><data:post.newerLinkText/></a>
&#160;
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'><data:post.newestLinkText/></a>
</span>
</b:if>

<div expr:class='data:post.postAuthorClass' expr:id='data:widget.instanceId + &quot;_comments-block-wrapper&quot;'>
<dl expr:class='data:post.avatarIndentClass' id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt expr:class='&quot;comment-author &quot; + data:comment.authorClass' expr:id='data:comment.anchorName'>
<b:if cond='data:comment.favicon'>
<img expr:src='data:comment.favicon' height='16px' style='margin-bottom:-2px;' width='16px'/>
</b:if>
<a expr:name='data:comment.anchorName'/>
<b:if cond='data:blog.enabledCommentProfileImages'>
<data:comment.authorAvatarImage/>
</b:if>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
<data:commentPostedByMsg/>
</dt>
<dd expr:class='&quot;comment-body &quot; + data:comment.commentAuthorClass' expr:id='data:widget.instanceId + data:comment.cmtBodyIdPostfix'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>

<b:if cond='data:comment.author == data:post.author'>
<dd style='background-color:#ffffcc;'>
<p><data:comment.body/></p>
</dd>
<b:else/>

<p>
<data:comment.body/>
<span class='interaction-iframe-guide'/>
</p>
</b:if>
</b:if>
</dd>
<dd class='comment-footer'>
<a expr:href='data:post.url + &quot;#comment-post-message&quot;' rel='nofollow' style='float:right;margin-right:10px;padding:5px;background-color:#292929;color:#fff;font-weight:bold;font-family:&quot;Segoe UI&quot;,Calibri,&quot;Myriad Pro&quot;,Myriad,&quot;Trebuchet MS&quot;,Helvetica,Arial,sans-serif;'>Reply</a>
<span class='comment-timestamp'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</dd>
</b:loop>
</dl>
</div>

<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:post.oldestLinkText/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:post.olderLinkText/>
</a>
&#160;
<data:post.commentRangeText/>
&#160;
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:post.newerLinkText/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:post.newestLinkText/>
</a>
</span>
</b:if>

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='comment-form'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:else/>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>

</p>
</b:if>

<div id='backlinks-container'>
<div expr:id='data:widget.instanceId + &quot;_backlinks-container&quot;'>
<b:if cond='data:post.showBacklinks'>
<b:include data='post' name='backlinks'/>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
</div>



<div id='sidebar-wrapper'>

<div id='feeds'>
<form action='http://feedburner.google.com/fb/a/mailverify?uri=YOUR-FEEDBURNER-USERNAME' id='feedform' method='post' onsubmit='window.open(&apos;http://feedburner.google.com/fb/a/mailverify?uri=YOUR-FEEDBURNER-USERNAMEs&apos;, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true' target='popupwindow'>
<input class='textarea' name='email' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Enter email address here&quot;;}' onfocus='if (this.value == &quot;Enter email address here&quot;) {this.value = &quot;&quot;;}' type='text' value='Enter email address here'/>
<br/>
<input name='uri' type='hidden' value='email subscribe'/>
<input name='title' type='hidden' value='Email subscription'/>
<input name='loc' type='hidden' value='en_US'/>
</form>

<p><a href='http://feeds2.feedburner.com/YOUR-FEEDBURNER-USERNAME'><img alt='' height='26' src='http://feeds2.feedburner.com/~fc/YOUR-FEEDBURNER-USERNAME?bg=FD6D00&amp;fg=202931&amp;anim=1' style='border:0' width='88'/></a></p>

<p><a expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;' rel='nofollow' target='_blank'>Post (RSS)</a> | <a expr:href='data:blog.homepageUrl + &quot;feeds/comments/default&quot;' rel='nofollow' target='_blank'>Comments (RSS)</a></p>
</div>
<div style='clear:both;'/>

<form action='/search' class='search' method='get'>
<input id='s' name='q' onblur='if (this.value == &quot;&quot;) {this.value = &quot;search...&quot;;}' onfocus='if (this.value == &quot;search...&quot;) {this.value = &quot;&quot;;}' type='text' value='search...'/>
<input id='searchsubmit' type='submit' value=''/>
</form>
<div style='clear:both;'/>

<b:section class='sidebar' id='sidebar' preferred='yes'>
<b:widget id='Label1' locked='false' title='Categories' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>
<b:if cond='data:display == &quot;list&quot;'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span dir='ltr'>(<data:label.count/>)</span>
</b:if>
</li>
</b:loop>
</ul>
<b:else/>
<b:loop values='data:labels' var='label'>
<span expr:class='&quot;label-size label-size-&quot; + data:label.cssSize'>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span class='label-count' dir='ltr'>(<data:label.count/>)</span>
</b:if>
</span>
</b:loop>
</b:if>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
</b:section>

<div style='clear: both;'/>

<b:section class='sidebar' id='sidebar2' preferred='yes'/>

<div style='clear: both;'/>

</div>


<!-- spacer for skins that want sidebar and main to be the same height-->
<div class='clear-content'>&#160;</div>

</div>
<!-- end content-wrapper -->

<div id='bottom-container'/>

<div style='clear:both;'/>



<div id='top-footer'/>

<div id='footer'>
<div id='bottombar'>


<div class='bottom-widget'>
<b:section class='footer-column' id='col1' preferred='yes' style='float:left;'>
<b:widget id='Label2' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>
<b:if cond='data:display == &quot;list&quot;'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span dir='ltr'>(<data:label.count/>)</span>
</b:if>
</li>
</b:loop>
</ul>
<b:else/>
<b:loop values='data:labels' var='label'>
<span expr:class='&quot;label-size label-size-&quot; + data:label.cssSize'>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span class='label-count' dir='ltr'>(<data:label.count/>)</span>
</b:if>
</span>
</b:loop>
</b:if>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='bottom-widget'>
<b:section class='footer-column' id='col2' preferred='yes' style='float:left;'>
<b:widget id='Label5' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>
<b:if cond='data:display == &quot;list&quot;'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span dir='ltr'>(<data:label.count/>)</span>
</b:if>
</li>
</b:loop>
</ul>
<b:else/>
<b:loop values='data:labels' var='label'>
<span expr:class='&quot;label-size label-size-&quot; + data:label.cssSize'>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span class='label-count' dir='ltr'>(<data:label.count/>)</span>
</b:if>
</span>
</b:loop>
</b:if>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='bottom-widget'>
<b:section class='footer-column' id='col3' preferred='yes' style='float:left;'>
<b:widget id='Label3' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>
<b:if cond='data:display == &quot;list&quot;'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span dir='ltr'>(<data:label.count/>)</span>
</b:if>
</li>
</b:loop>
</ul>
<b:else/>
<b:loop values='data:labels' var='label'>
<span expr:class='&quot;label-size label-size-&quot; + data:label.cssSize'>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'><data:label.name/></span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
</b:if>
<b:if cond='data:showFreqNumbers'>
<span class='label-count' dir='ltr'>(<data:label.count/>)</span>
</b:if>
</span>
</b:loop>
</b:if>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div style='clear:both;'/>
<div id='footer-bottom' style='text-align: center; padding: 10px; text-transform: lowercase;width:950px;'>
<b:section class='footer' id='col-bottom' preferred='yes'/>
</div>
<div style='clear:both;'/>

</div>
</div>
<div id='bottom-footer'><div id='credit'>
<!--Please do not remove the footer credit. I spend several hours to create this blogger template. So that you can use it for your blog. All I ask is, stay the credit intact.-->
<span style='float:left;width:730px;'><p><a expr:href='data:blog.homepageUrl'><data:blog.title/></a> &#169; 2010 Design by <a href='http://camelgraph.com/' target='_blank'>Camelgraph</a> | Bloggerized by <a href='http://www.bloggertipandtrick.net/' target='_blank'>Lasantha</a> - <a href='http://www.premiumbloggertemplates.com/' target='_blank'>Premiumbloggertemplates.com</a><br/><a href='http://www.top10hosts.net' target='_blank'>Top Web Hosts</a> | <a href='http://www.worldclasslasik.com' target='_blank'>new york lasik surgery</a> | <a href='http://www.getnetset.com' target='_blank'>cpa website design</a></p></span>
<!--Please Do Not Remove This-->
<span style='float:right;'><p><a expr:href='data:blog.homepageUrl'>Home</a> | <a expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;' rel='nofollow' target='_blank' title='Post RSS'>RSS Feed</a> | <a expr:href='data:blog.homepageUrl + &quot;feeds/comments/default&quot;' rel='nofollow' target='_blank' title='Comments RSS'>Comment RSS</a></p></span>
</div>
</div>


</div></div></div></div> <!-- end outer-wrapper -->

</body>
</html>

0 komentar:

Posting Komentar