
(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this;}
if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem&&elem.id!=match[3])return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)ret.selector=this.selector+"."+name+"("+selector+")";return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="string")if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}
return this.each(function(i){for(name in options)
jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!=="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)wrap.insertBefore(this[0]);wrap.map(function(){var elem=this;while(elem.firstChild)
elem=elem.firstChild;return elem;}).append(this);}
return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);else selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))return(elem.attributes.value||{}).specified?elem.value:elem.text;if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one)return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")value+='';return this.each(function(){if(this.nodeType!=1)return;if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else this.value=value;});},html:function(value){return value===undefined?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,+i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)for(var i=0,l=this.length;i<l;i++)callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}
function now(){return+new Date;}
jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))target={};if(length==i){target=this;--i;}
for(;i<length;i++)
if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy==="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}
return target;};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)script.appendChild(document.createTextNode(data));else script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object)
if(callback.apply(object[name],args)===false)break;}else for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length===undefined){for(name in object)
if(callback.call(object[name],name,object[name])===false)break;}else for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}
return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return elem&&jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options)
elem.style[name]=old[name];},css:function(elem,name,force,extra){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border")return;jQuery.each(which,function(){if(!extra)val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)getWH();else jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle)ret=computedStyle.getPropertyValue(name);if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined")context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")elem+='';if(!elem)return;if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)
if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);}
if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)ret.push(elem);else ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}
return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}
name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)ret[0]=array;else while(i)ret[--i]=array[i];}
return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)
if(array[i]===elem)return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)first[pos++]=elem;}else while((elem=second[i++])!=null)first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}
return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)
if(!inv!=!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)ret[ret.length]=value;}
return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames,state){if(typeof state!=="boolean")state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(this).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!==undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])
break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}
delete jQuery.cache[id];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")fn=queue[0];if(fn!==undefined)fn.call(elem);}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}
return matched;};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])
if(cur.nodeType==1&&++num==result)break;return cur;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(elem.setInterval&&elem!=window)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}
handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}
jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)delete events[type][handler.guid];else for(var handle in events[type])if(namespace.test(events[type][handle].type))delete events[type][handle];if(jQuery.event.specialAll[type])jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}
ret=null;delete events[type];}}});}
for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))remove++;});if(remove<1)jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)return;if(e.preventDefault)e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)return;if(e.stopPropagation)e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length)
jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}
jQuery.ready();})();}
jQuery.event.add(window,"load",jQuery.ready);}
jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,"+"change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string")return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params);type="POST";}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);if(callback)self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}
return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}
if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}
if(head)head.removeChild(script);};}
if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}
if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}
if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}
if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}}else if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}
status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(e){status="parsererror";}}
if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}
if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else jQuery.handleError(s,xhr,status);complete();if(isTimeout)xhr.abort();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr&&!requestDone)onreadystatechange("timeout");},s.timeout);}
try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}
if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}
function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}
return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(s&&s.dataFilter)data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")jQuery.globalEval(data);if(type=="json")data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)jQuery.each(a,function(){add(this.name,this.value);});else for(var j in a)if(jQuery.isArray(a[j]))jQuery.each(a[j],function(){add(j,this);});else add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(this);if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}
if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else e.custom(start,val,"");}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)
if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style)this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)
if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)
if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}
if(this.options.hide)jQuery(this.elem).hide();if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}
return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)fx.elem.style[fx.prop]=fx.now+fx.unit;else fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
return results;},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))
offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return null;return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});(function(){$.fn.suppressLoad=function(settings){var self=this;settings=jQuery.extend({},settings);return self.each(function(){var img=this;if($(img).attr('src')==null)return;$.data($(img).get(0),'src',$(img).attr('src'));$(img).removeAttr('src');return;});};})(jQuery);(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&/6.0/.test(navigator.userAgent)){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}
return this;};})(jQuery);(function($){$.fn.jcarousel=function(o){return this.each(function(){new $jc(this,o);});};var defaults={vertical:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:'normal',easing:'swing',auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:'<div></div>',buttonPrevHTML:'<div></div>',buttonNextEvent:'click',buttonPrevEvent:'click',buttonNextCallback:null,buttonPrevCallback:null};$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?'left':'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);var skin=split[i];break;}}
if(e.nodeName=='UL'||e.nodeName=='OL'){this.list=$(e);this.container=this.list.parent();if(this.container.hasClass('jcarousel-clip')){if(!this.container.parent().hasClass('jcarousel-container'))this.container=this.container.wrap('<div></div>');this.container=this.container.parent();}else if(!this.container.hasClass('jcarousel-container'))this.container=this.list.wrap('<div></div>').parent();}else{this.container=$(e);this.list=$(e).find('>ul,>ol,div>ul,div>ol');}
if(skin!=''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1)this.container.wrap('<div class=" '+skin+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass('jcarousel-clip'))this.clip=this.list.wrap('<div></div>').parent();this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)this.buttonPrev=this.clip.before(this.options.buttonPrevHTML).prev();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)this.buttonNext=this.clip.before(this.options.buttonNextHTML).prev();this.buttonNext.addClass(this.className('jcarousel-next'));this.clip.addClass(this.className('jcarousel-clip'));this.list.addClass(this.className('jcarousel-list'));this.container.addClass(this.className('jcarousel-container'));var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,i=this.options.offset;li.each(function(){self.format(this,i++);wh+=self.dimension(this,di);});this.list.css(this.wh,wh+'px');if(!o||o.size===undefined)this.options.size=li.size();}
this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();};this.funcPrev=function(){self.prev();};this.funcResize=function(){self.reload();};if(this.options.initCallback!=null)this.options.initCallback(this,'init');if($.browser.safari){this.buttons(false,false);$(window).bind('load',function(){self.setup();});}else this.setup();};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.3'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked)return;this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize',this.funcResize).bind('resize',this.funcResize);},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!=null)this.options.initCallback(this,'reset');this.setup();},reload:function(){if(this.tail!=null&&this.inTail)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null)this.options.reloadCallback(this);if(this.options.visible!=null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;$('li',this.list).each(function(i){wh+=self.dimension(this,di);if(i+1<self.first)lt=wh;});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}
this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!=undefined){this.options.size=s;if(!this.locked)this.buttons();}
return this.options.size;},has:function(i,i2){if(i2==undefined||!i2)i2=i;if(this.options.size!==null&&i2>this.options.size)i2=this.options.size;for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder'))return false;}
return true;},get:function(i){return $('.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,add=0;if(e.length==0){var c,e=this.create(i),j=$jc.intval(i);while(c=this.get(--j)){if(j<=0||c.length){j<=0?this.list.prepend(e):c.after(e);break;}}}else old=this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s=='string'?e.html(s):e.empty().append(s);var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last))return;var d=this.dimension(e);if(i<this.first)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail)this.scrollTail(false);else this.scroll(((this.options.wrap=='both'||this.options.wrap=='last')&&this.options.size!=null&&this.last==this.options.size)?1:this.first+this.options.scroll);},prev:function(){this.stopAuto();if(this.tail!=null&&this.inTail)this.scrollTail(true);else this.scroll(((this.options.wrap=='both'||this.options.wrap=='first')&&this.options.size!=null&&this.first==1)?this.options.size:this.first-this.options.scroll);},scrollTail:function(b){if(this.locked||this.animating||!this.tail)return;var pos=$jc.intval(this.list.css(this.lt));!b?pos-=this.tail:pos+=this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating)return;this.animate(this.pos(i),a);},pos:function(i){if(this.locked||this.animating)return;if(this.options.wrap!='circular')i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);var back=this.first>i;var pos=$jc.intval(this.list.css(this.lt));var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);}
c=e;d=this.dimension(e);if(p)l+=d;if(this.first!=null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size==null||j<=this.options.size))))pos=back?pos+d:pos-d;}
var clipping=this.clipping();var cache=[];var visible=0,j=i,v=0;var c=this.get(i-1);while(++visible){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length==0?this.list.prepend(e):c[back?'before':'after'](e);}
c=e;var d=this.dimension(e);if(d==0){alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}
if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size)cache.push(e);else if(p)l+=d;v+=d;if(v>=clipping)break;j++;}
for(var x=0;x<cache.length;x++)
cache[x].remove();if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}
var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size)last=this.options.size;if(j>last){visible=0,j=last,v=0;while(++visible){var e=this.get(j--);if(!e.length)break;v+=this.dimension(e);if(v>=clipping)break;}}
var first=last-visible+1;if(this.options.wrap!='circular'&&first<1)first=1;if(this.inTail&&back){pos+=this.tail;this.inTail=false;}
this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.margin(this.get(last),!this.options.vertical?'marginRight':'marginBottom');if((v-m)>clipping)this.tail=v-clipping-m;}
while(i-->first)
pos+=this.dimension(this.get(i));this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating)return;this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p==0)self.list.css(self.lt,0);if(self.options.wrap=='both'||self.options.wrap=='last'||self.options.size==null||self.last<self.options.size)self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if(!this.options.animation||a==false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?{'left':p}:{'top':p};this.list.animate(o,this.options.animation,this.options.easing,scrolled);}},startAuto:function(s){if(s!=undefined)this.options.auto=s;if(this.options.auto==0)return this.stopAuto();if(this.timer!=null)return;var self=this;this.timer=setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){if(this.timer==null)return;clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==undefined||n==null){var n=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='first')||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=='first')&&this.options.size!=null&&this.last>=this.options.size)n=this.tail!=null&&!this.inTail;}
if(p==undefined||p==null){var p=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='last')||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=='last')&&this.options.size!=null&&this.first==1)p=this.tail!=null&&this.inTail;}
var self=this;this.buttonNext[n?'bind':'unbind'](this.options.buttonNextEvent,this.funcNext)[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);this.buttonPrev[p?'bind':'unbind'](this.options.buttonPrevEvent,this.funcPrev)[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=n)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);});this.buttonNext[0].jcarouselstate=n;}
if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=p)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);});this.buttonPrev[0].jcarouselstate=p;}},notify:function(evt){var state=this.prevFirst==null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}
if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}
this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==undefined||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation'))return;var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback))return;var self=this;if(i1===undefined)callback(self,state,evt);else if(i2===undefined)this.get(i1).each(function(){callback(self,this,i1,state,evt);});else{for(var i=i1;i<=i2;i++)
if(i!==null&&!(i>=i3&&i<=i4))this.get(i).each(function(){callback(self,this,i,state,evt);});}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){var $e=$(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i));$e.attr('jcarouselindex',i);return $e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=e.jquery!=undefined?e[0]:e;var old=!this.options.vertical?el.offsetWidth+$jc.margin(el,'marginLeft')+$jc.margin(el,'marginRight'):el.offsetHeight+$jc.margin(el,'marginTop')+$jc.margin(el,'marginBottom');if(d==undefined||old==d)return old;var w=!this.options.vertical?d-$jc.margin(el,'marginLeft')-$jc.margin(el,'marginRight'):d-$jc.margin(el,'marginTop')-$jc.margin(el,'marginBottom');$(el).css(this.wh,w+'px');return this.dimension(el);},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==undefined)s=this.options.size;return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},margin:function(e,p){if(!e)return 0;var el=e.jquery!=undefined?e[0]:e;if(p=='marginRight'&&$.browser.safari){var old={'display':'block','float':'none','width':'auto'},oWidth,oWidth2;$.swap(el,old,function(){oWidth=el.offsetWidth;});old['marginRight']=0;$.swap(el,old,function(){oWidth2=el.offsetWidth;});return oWidth2-oWidth;}
return $jc.intval($.css(el,p));},intval:function(v){v=parseInt(v);return isNaN(v)?0:v;}});})(jQuery);;(function($){var helper={},current,title,tID,IE=$.browser.msie&&/MSIE\s(5\.5|6\.)/.test(navigator.userAgent),track=false;$.tooltip={blocked:false,defaults:{delay:200,fade:false,showURL:true,extraClass:"",top:15,left:15,id:"tooltip"},block:function(){$.tooltip.blocked=!$.tooltip.blocked;}};$.fn.extend({tooltip:function(settings){settings=$.extend({},$.tooltip.defaults,settings);createHelper(settings);return this.each(function(){$.data(this,"tooltip",settings);this.tOpacity=helper.parent.css("opacity");this.tooltipText=this.title;$(this).removeAttr("title");this.alt="";}).mouseover(save).mouseout(hide).click(hide);},fixPNG:IE?function(){return this.each(function(){var image=$(this).css('backgroundImage');if(image.match(/^url\(["']?(.*\.png)["']?\)$/i)){image=RegExp.$1;$(this).css({'backgroundImage':'none','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+image+"')"}).each(function(){var position=$(this).css('position');if(position!='absolute'&&position!='relative')$(this).css('position','relative');});}});}:function(){return this;},unfixPNG:IE?function(){return this.each(function(){$(this).css({'filter':'',backgroundImage:''});});}:function(){return this;},hideWhenEmpty:function(){return this.each(function(){$(this)[$(this).html()?"show":"hide"]();});},url:function(){return this.attr('href')||this.attr('src');}});function createHelper(settings){if(helper.parent)return;helper.parent=$('<div id="'+settings.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo($('div#container')).hide();if($.fn.bgiframe)helper.parent.bgiframe();helper.title=$('h3',helper.parent);helper.body=$('div.body',helper.parent);helper.url=$('div.url',helper.parent);}
function settings(element){return $.data(element,"tooltip");}
function handle(event){if(settings(this).delay)tID=setTimeout(show,settings(this).delay);else show();track=!!settings(this).track;$(document.body).bind('mousemove',update);update(event);}
function save(){if($.tooltip.blocked||this==current||(!this.tooltipText&&!settings(this).bodyHandler))return;current=this;title=this.tooltipText;if(settings(this).bodyHandler){helper.title.hide();var bodyContent=settings(this).bodyHandler.call(this);if(bodyContent.nodeType||bodyContent.jquery){helper.body.empty().append(bodyContent)}else{helper.body.html(bodyContent);}
helper.body.show();}else if(settings(this).showBody){var parts=title.split(settings(this).showBody);helper.title.html(parts.shift()).show();helper.body.empty();for(var i=0,part;(part=parts[i]);i++){if(i>0)helper.body.append("<br/>");helper.body.append(part);}
helper.body.hideWhenEmpty();}else{helper.title.html(title).show();helper.body.hide();}
if(settings(this).showURL&&$(this).url())helper.url.html($(this).url().replace('http://','')).show();else helper.url.hide();helper.parent.addClass(settings(this).extraClass);if(settings(this).fixPNG)helper.parent.fixPNG();handle.apply(this,arguments);}
function show(){tID=null;if((!IE||!$.fn.bgiframe)&&settings(current).fade){if(helper.parent.is(":animated"))helper.parent.stop().show().fadeTo(settings(current).fade,current.tOpacity);else helper.parent.is(':visible')?helper.parent.fadeTo(settings(current).fade,current.tOpacity):helper.parent.fadeIn(settings(current).fade);}else{helper.parent.show();}
update();}
function update(event){if($.tooltip.blocked)return;if(event&&event.target.tagName=="OPTION"){return;}
if(!track&&helper.parent.is(":visible")){$(document.body).unbind('mousemove',update)}
if(current==null){$(document.body).unbind('mousemove',update);return;}
helper.parent.removeClass("viewport-right").removeClass("viewport-bottom");var left=helper.parent[0].offsetLeft;var top=helper.parent[0].offsetTop;if(event){left=event.pageX+settings(current).left;top=event.pageY+settings(current).top;var right='auto';if(settings(current).positionLeft){right=$(window).width()-left;left='auto';}
helper.parent.css({left:left,right:right,top:top});}
var v=viewport(),h=helper.parent[0];if(v.x+v.cx<h.offsetLeft+h.offsetWidth){left-=h.offsetWidth+20+settings(current).left;helper.parent.css({left:left+'px'}).addClass("viewport-right");}
if(v.y+v.cy<h.offsetTop+h.offsetHeight){top-=h.offsetHeight+20+settings(current).top;helper.parent.css({top:top+'px'}).addClass("viewport-bottom");}}
function viewport(){return{x:$(window).scrollLeft(),y:$(window).scrollTop(),cx:$(window).width(),cy:$(window).height()};}
function hide(event){if($.tooltip.blocked)return;if(tID)clearTimeout(tID);current=null;var tsettings=settings(this);function complete(){helper.parent.removeClass(tsettings.extraClass).hide().css("opacity","");}
if((!IE||!$.fn.bgiframe)&&tsettings.fade){if(helper.parent.is(':animated'))helper.parent.stop().fadeTo(tsettings.fade,0,complete);else helper.parent.stop().fadeOut(tsettings.fade,complete);}else complete();if(settings(this).fixPNG)helper.parent.unfixPNG();}})(jQuery);(function($){jQuery.fn.pngFix=function(settings){settings=jQuery.extend({blankgif:'blank.gif'},settings);var ie55=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 5.5")!=-1);var ie6=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 6.0")!=-1);if(jQuery.browser.msie&&(ie55||ie6)){jQuery(this).each(function(){jQuery(this).attr('width',jQuery(this).width());jQuery(this).attr('height',jQuery(this).height());var prevStyle='';var strNewHTML='';var imgId=(jQuery(this).attr('id'))?'id="'+jQuery(this).attr('id')+'" ':'';var imgClass=(jQuery(this).attr('class'))?'class="'+jQuery(this).attr('class')+'" ':'';var imgTitle=(jQuery(this).attr('title'))?'title="'+jQuery(this).attr('title')+'" ':'';var imgAlt=(jQuery(this).attr('alt'))?'alt="'+jQuery(this).attr('alt')+'" ':'';var imgAlign=(jQuery(this).attr('align'))?'float:'+jQuery(this).attr('align')+';':'';var imgHand=(jQuery(this).parent().attr('href'))?'cursor:hand;':'';if(this.style.border){prevStyle+='border:'+this.style.border+';';this.style.border='';}
if(this.style.padding){prevStyle+='padding:'+this.style.padding+';';this.style.padding='';}
if(this.style.margin){prevStyle+='margin:'+this.style.margin+';';this.style.margin='';}
var imgStyle=(this.style.cssText);strNewHTML+='<span '+imgId+imgClass+imgTitle+imgAlt;strNewHTML+='style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;strNewHTML+='width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;';strNewHTML+='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+jQuery(this).attr('src')+'\', sizingMethod=\'scale\');';strNewHTML+=imgStyle+'"></span>';if(prevStyle!=''){strNewHTML='<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;'+'">'+strNewHTML+'</span>';}
jQuery(this).hide();jQuery(this).after(strNewHTML);});jQuery(this).find("*").each(function(){var bgIMG=jQuery(this).css('background-image');if(bgIMG.indexOf(".png")!=-1){var iebg=bgIMG.split('url("')[1].split('")')[0];jQuery(this).css('background-image','none');jQuery(this).get(0).runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+iebg+"',sizingMethod='scale')";}});jQuery(this).find("input[@src$=.png]").each(function(){var bgIMG=jQuery(this).attr('src');jQuery(this).get(0).runtimeStyle.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+bgIMG+'\', sizingMethod=\'scale\');';jQuery(this).attr('src',settings.blankgif)});}
return jQuery;};})(jQuery);(function($){$.scrollFollow=function(box,options){box=$(box);var position=box.css('position');function ani(){box.queue([]);var viewportHeight=parseInt($(window).height());var pageScroll=parseInt($(document).scrollTop());var parentTop=parseInt(box.cont.offset().top);var parentHeight=parseInt(box.cont.attr('offsetHeight'));var boxHeight=parseInt(box.attr('offsetHeight')+(parseInt(box.css('marginTop'))||0)+(parseInt(box.css('marginBottom'))||0));var aniTop;if(isActive){if(options.relativeTo=='top'){if(box.initialOffsetTop>=(pageScroll+options.offset)){aniTop=box.initialTop;}
else{aniTop=Math.min((Math.max((-parentTop),(pageScroll-box.initialOffsetTop+box.initialTop))+options.offset),(parentHeight-boxHeight-box.paddingAdjustment));}}
else if(options.relativeTo=='bottom'){if((box.initialOffsetTop+boxHeight)>=(pageScroll+options.offset+viewportHeight)){aniTop=Math.min((pageScroll+viewportHeight-boxHeight-options.offset),(parentHeight-boxHeight));}
else{aniTop=Math.min((pageScroll+viewportHeight-boxHeight-options.offset),(parentHeight-boxHeight));}}
if((new Date().getTime()-box.lastScroll)>=(options.delay-20)){box.animate({top:aniTop},options.speed,options.easing);}}};var isActive=true;if($.cookie!=undefined){if($.cookie('scrollFollowSetting'+box.attr('id'))=='false'){var isActive=false;$('#'+options.killSwitch).text(options.offText).toggle(function(){isActive=true;$(this).text(options.onText);$.cookie('scrollFollowSetting'+box.attr('id'),true,{expires:365,path:'/'});ani();},function(){isActive=false;$(this).text(options.offText);box.animate({top:box.initialTop},options.speed,options.easing);$.cookie('scrollFollowSetting'+box.attr('id'),false,{expires:365,path:'/'});});}
else{$('#'+options.killSwitch).text(options.onText).toggle(function(){isActive=false;$(this).text(options.offText);box.animate({top:box.initialTop},0);$.cookie('scrollFollowSetting'+box.attr('id'),false,{expires:365,path:'/'});},function(){isActive=true;$(this).text(options.onText);$.cookie('scrollFollowSetting'+box.attr('id'),true,{expires:365,path:'/'});ani();});}}
if(options.container==''){box.cont=box.parent();}
else{box.cont=$('#'+options.container);}
box.initialOffsetTop=parseInt(box.offset().top);box.initialTop=parseInt(box.css('top'))||0;if(box.css('position')=='relative'){box.paddingAdjustment=parseInt(box.cont.css('paddingTop'))+parseInt(box.cont.css('paddingBottom'));}
else{box.paddingAdjustment=0;}
$(window).scroll(function(){$.fn.scrollFollow.interval=setTimeout(function(){ani();},options.delay);box.lastScroll=new Date().getTime();});$(window).resize(function(){$.fn.scrollFollow.interval=setTimeout(function(){ani();},options.delay);box.lastScroll=new Date().getTime();});box.lastScroll=0;ani();};$.fn.scrollFollow=function(options){options=options||{};options.relativeTo=options.relativeTo||'top';options.speed=options.speed||500;options.offset=options.offset||0;options.easing=options.easing||'swing';options.container=options.container||this.parent().attr('id');options.killSwitch=options.killSwitch||'killSwitch';options.onText=options.onText||'Turn Slide Off';options.offText=options.offText||'Turn Slide On';options.delay=options.delay||0;this.each(function(){new $.scrollFollow(this,options);});return this;};})(jQuery);(function($){$.layout=function(options){return $.layout.impl.init(options);};$.fn.layout=function(options){return $.layout.impl.init(this,options);};$.layout.defaults={maxWidth:1100};$.layout.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.layout.defaults,options);$content=$('#content');contentW=self.opts.maxWidth;minW=$('.fixer').width();winW=$(window).width();if(winW<contentW){if(winW>=minW){contentW=winW;}
else{contentW=minW;}}
$content.css({width:contentW+'px'});return self;}};})(jQuery);(function($){$.globalNav=function(options){return $.globalNav.impl.init(options);};$.fn.globalNav=function(options){return $.globalNav.impl.init(this,options);};$.globalNav.defaults={};$.globalNav.impl={opts:null,helper:{},init:function(nav,options){var self=this;this.opts=$.extend({},$.globalNav.defaults,options);self.helper.list=$(nav);self.helper.list.find('ul.ul-2').each(function(i,item){$(item).prepend($('<div class="bg-2"></div>'));if($.browser.msie&&($.browser.version<7)){$(item).find('.bg-2').css({width:$(item).outerWidth()+'px',height:$(item).outerHeight()+'px'});}});self.bindEvents();return self;},bindEvents:function(){var self=this;self.helper.list.children('li.li-1').hover(function(){$(this).addClass('li-1-hover');},function(){$(this).removeClass('li-1-hover');});return;},fixIE:function(){var self=this;var $iframe=$('<iframe src="javascript:false;">').css($.extend(this.opts.iframeCss,{opacity:0,position:'absolute',height:wHeight,width:wWidth,zIndex:1000,width:'100%',top:0,left:0})).hide().prependTo(self.helper.list.find('ul.ul-2'));return;}};})(jQuery);(function($){$.tray=function(options){return $.tray.impl.init(options);};$.fn.tray=function(options){return $.tray.impl.init(this,options);};$.tray.defaults={};$.tray.impl={opts:null,helper:{},init:function(tray,options){var self=this;this.opts=$.extend({},$.tray.defaults,options);self.helper.container=$(tray);return self;}};})(jQuery);(function($){$.tabs=function(options){return $.tabs.impl.init(data,options);};$.fn.tabs=function(options){return $.tabs.impl.init(this,options);};$.tabs.defaults={};$.tabs.impl={opts:null,helper:{},init:function(tabs,options){var self=this;self.opts=$.extend({},$.tabs.defaults,options);self.helper.container=$(tabs);self.helper.menu=$('<ul class="tab-menuitem-collection"></ul>');self.helper.content=$('<ul class="tab-contentitem-collection"></ul>');self.helper.container.children().each(function(i,item){var $menuItem=$('<li class="tab-menuitem"><a href="#">'+$(item).find('.tab-title').html()+'</a></li>');var $contentItem=$('<li class="tab-contentitem">'+$(item).find('.tab-content').html()+'</li>');if(i==0){$menuItem.addClass('tab-menuitem-active').addClass('tab-menuitem-first');$contentItem.addClass('tab-contentitem-active');}
else if(i==self.helper.container.children().length-1){$menuItem.addClass('tab-menuitem-last');}
self.helper.menu.append($menuItem);self.helper.content.append($contentItem);});self.helper.container.replaceWith(self.helper.menu);self.helper.menu.after(self.helper.content);self.bindEvents();return self;},bindEvents:function(){var self=this;self.helper.menu.find('.tab-menuitem a').click(function(e){e.preventDefault();var $li=$(this).parent();if(!$li.hasClass('tab-menuitem-active')){$li.addClass('tab-menuitem-active').siblings().removeClass('tab-menuitem-active');$(self.helper.content.find('.tab-contentitem')[$li.prevAll().length]).addClass('tab-contentitem-active').siblings().removeClass('tab-contentitem-active');}});return;}};})(jQuery);(function($){$.imagery=function(options){return $.imagery.impl.init(options);};$.fn.imagery=function(options){return $.imagery.impl.init(this,options);};$.imagery.defaults={res:{}};$.imagery.impl={opts:null,helper:{},alternates:{},variants:[],dim:{},scale:1,init:function(container,options){var self=this;this.opts=$.extend({},$.imagery.defaults,options);self.helper.container=container;self.helper.container.find('ul.variant-collection').children().each(function(i,item){var variant={id:$(item).attr('id'),src:$.data($(item).find('img.image-detail').get(0),'src'),alternates:[]};$(item).find('.alternate-collection').children().each(function(j,alt){alt={srcA:$.data($(alt).find('img.image-a').get(0),'src'),srcB:$.data($(alt).find('img.image-b').get(0),'src'),srcC:$.data($(alt).find('img.image-c').get(0),'src')};variant.alternates.push(alt);});self.variants.push(variant);});self.helper.container.empty();self.helper.open=$('<a class="open-modal" href="#">'+self.opts.res.zoomAdditionalViews+'</a>');self.helper.overlay=$('<div class="modal-overlay"></div>').appendTo($('#container'));self.helper.modal=$('<div class="imagery-modal"><div class="imagery-bg"></div><div class="imagery"><div class="cropper"></div><ul class="thumb-collection"></ul></div><div id="debug"></div></div>').appendTo($('#container'));self.helper.cropper=self.helper.modal.find('div.cropper');self.helper.zoomTip=$('<div>'+self.opts.res.clickToZoomIn+'</div>');if(self.opts.variant!=''&&self.opts.variant!=null&&self.helper.container.find('ul.variant-collection li#'+self.opts.variant).length<1)self.opts.variant='';if(self.opts.variant==''||self.opts.variant==null)self.opts.variant=self.variants[0].id;self.variant(self.opts.variant);return self;},getVariant:function(id){var self=this;var v=null;$.each(self.variants,function(i,item){if(item['id']==id){v=item;return v;}});return v;},variant:function(variant){var self=this;variant=variant.replace('#','');var v=self.getVariant(variant);self.opts.variant=variant;self.helper.container.empty();$(new Image()).load(function(){$(this).css({display:'none'}).prependTo(self.helper.container).fadeIn(1000);self.helper.container.append(self.helper.open);}).attr('src',v.src);self.helper.open.click(function(e){e.preventDefault();self.modal();});self.helper.container.click(function(e){e.preventDefault();self.modal();});return;},modal:function(){var self=this;var v=self.getVariant(self.opts.variant);self.helper.thumbs=self.helper.modal.find('.thumb-collection').empty();self.helper.cropper=self.helper.modal.find('.cropper').empty();self.helper.close=$('<a class="close-imagery" href="#">'+self.opts.res.close+'</a>').appendTo(self.helper.modal);self.alternates=[];$.each(v.alternates,function(i,item){var $thumb=$('<li class="thumb"></li>').appendTo(self.helper.thumbs);$(new Image()).load(function(){$thumb.append($(this).addClass('image-a'));}).attr('src',v.alternates[i].srcA);});self.helper.overlay.fadeIn(1000);self.helper.modal.css({marginLeft:-parseInt(self.helper.modal.css('width'))/2+'px',marginTop:-parseInt(self.helper.modal.css('height'))/2+'px'}).fadeIn(1000,function(){self.dim.w=$(self.helper.thumbs.children()[0]).width();self.dim.h=$(self.helper.thumbs.children()[0]).height();self.load(0);self.helper.cropper.tooltip({id:'imagery-tooltip',track:true,showURL:false,delay:0,bodyHandler:function(){return self.helper.zoomTip;}});});self.helper.thumbs.children().click(function(e){if($(this).hasClass('thumb-active'))return;var pos={x:(e.pageX-$(this).offset().left)/self.dim.w,y:(e.pageY-$(this).offset().top)/self.dim.h};self.load($(this).prevAll('.thumb').length,'b',pos);});self.helper.close.click(function(e){e.preventDefault();self.hide();});self.helper.overlay.click(function(e){e.preventDefault();self.hide();});return;},hide:function(){var self=this;self.helper.overlay.fadeOut(1000);self.helper.modal.fadeOut(1000);return;},load:function(index,size,pos){var self=this;var v=self.getVariant(self.opts.variant);index=index||0;size=size||'b';pos=pos||{x:0,y:0};self.helper.thumbs.find('div.handle').remove();self.helper.cropper.empty();$('div#imagery-tooltip').css({display:'none'});var $thumb=$(self.helper.thumbs.children()[index]);var $handle=$('<div class="handle"><div class="handle-border"></div><div class="handle-bg"></div></div>').css('display','none').appendTo($thumb);var src=(size=='c')?v.alternates[index].srcC:v.alternates[index].srcB;$thumb.addClass('thumb-active').siblings().removeClass('thumb-active');$(new Image()).load(function(){self.helper.imgB=$(this);self.helper.imgB.appendTo(self.helper.cropper).css({display:'block',opacity:0});self.dim.W=self.helper.imgB.width();self.dim.H=self.helper.imgB.height();self.scale=self.dim.H/self.dim.h;var $tip=$('#imagery-tooltip .body div');if(size=='c'){$handle.css({width:Math.floor(parseInt($handle.css('width'))*2/3)+'px',height:Math.floor(parseInt($handle.css('height'))*2/3)+'px'});$tip.text(self.opts.res.clickToZoomOut);}
else{$tip.text(self.opts.res.clickToZoomIn);}
var hOffset=self.getHandleOffset(pos,$handle);$handle.find('.handle-border').css({width:$handle.width()-2+'px',height:$handle.height()-2+'px'});$handle.css({left:hOffset.x,top:hOffset.y}).draggable({containment:$handle.parent(),drag:self.drag}).fadeIn(500);self.helper.imgB.css({left:-hOffset.x*self.scale,top:-hOffset.y*self.scale,display:'none',opacity:'1.00'}).fadeIn(1000);self.helper.imgB.unbind().click(function(e){var pos={x:(e.pageX-$(this).offset().left)/self.dim.W,y:(e.pageY-$(this).offset().top)/self.dim.H};var newSize='c';if(size=='c')newSize='b'
self.load(index,newSize,pos);});}).attr('src',src);return;},drag:function(e,ui){var self=$.imagery.impl;var pos={x:ui.position.left,y:ui.position.top,X:ui.position.left*self.scale,Y:ui.position.top*self.scale}
self.helper.imgB.css({left:-pos.X+'px',top:-pos.Y+'px'});return;},getHandleOffset:function(pos,$h){var self=this;var h={x:0,y:0}
var hW=$h.width();var hH=$h.height();if(pos.x>=0){h.x=Math.floor(pos.x*self.dim.w)-Math.floor(hW/2);if(h.x<0)h.x=0;else if(h.x+hW>self.dim.w)h.x=self.dim.w-hW;}
if(pos.y>=0){h.y=Math.floor(pos.y*self.dim.h)-Math.floor(hH/2);if(h.y<0)h.y=0;else if(h.y+hH>self.dim.h)h.y=self.dim.h-hH;}
return h;}};})(jQuery);(function($){$.regionSelector=function(options){return $.regionSelector.impl.init(options);};$.fn.regionSelector=function(options){return $.regionSelector.impl.init(this,options);};$.regionSelector.defaults={};$.regionSelector.impl={opts:null,helper:{},animating:false,open:false,init:function(container,options){var self=this;this.opts=$.extend({},$.regionSelector.defaults,options);self.helper.open=$('ul#nav-footer .li-regionselector a');self.helper.container=$(container);self.helper.regions=self.helper.container.find('.table-regions');self.position();self.events();return self;},position:function(){var self=this;var $content=$('div#content');var bottom;if($.browser.msie&&($.browser.version<7))bottom=$(document).height()-($content.offset().top+$content.height())-4;else bottom=$(window).height()-($content.offset().top+$content.height());self.helper.container.css({left:$content.offset().left+'px',bottom:bottom+'px'});return;},events:function(){var self=this;self.helper.open.click(function(e){e.preventDefault();if(self.animating==true)return;if(self.open==true){self.hide();}
else{self.show();}});self.helper.regions.find('a:not(".region-restofworld")').click(function(e){e.preventDefault();if(self.animating==true)return;if($(this).parent().hasClass('active'))return;$(this).parent().addClass('active').siblings().removeClass('active');var region=$(this).attr('class');self.region(region);});return;},region:function(region){var self=this;var $region=self.helper.container.find('table.'+region);$region.addClass('region-active').css({opacity:'0.00',display:'block'});var regionsH=self.helper.regions.height();var regionH=$region.height();var h=(regionsH>regionH)?regionsH:regionH;self.animate(h);$region.fadeTo(1000,'1.00');self.helper.container.find('table.table-countries:not(".'+region+'")').fadeOut(1000);return;},show:function(){var self=this;self.helper.open.parent().addClass('li-1-active');self.helper.regions.css({opacity:'0.00',display:'block'});self.animate(self.helper.regions.height());self.helper.regions.fadeTo(1000,'1.00');return;},hide:function(){var self=this;self.helper.open.parent().removeClass('li-1-active');self.helper.container.find('table').fadeOut(1000);self.animate(0);self.helper.regions.find('li').removeClass('active');return;},animate:function(h){var self=this;self.animating=true;self.helper.container.animate({height:h+'px'},1000,'easeOutExpo',function(){self.animating=false;if(h==0)self.open=false;else self.open=true;});return;}};})(jQuery);(function($){$.loader=function(options,keyword){return $.loader.impl.init(options);};$.fn.loader=function(options){return $.loader.impl.init(this,options);};$.loader.defaults={imagePath:'/images/preloader.png',interval:66,frameSize:64,frameCount:12};$.loader.impl={opts:null,helper:{},interval:0,frame:0,loading:false,init:function(o,options){var self=this;this.opts=$.extend({},$.loader.defaults,options);self.helper.target=o;self.helper.container=$('<div id="preloader"></div>');self.helper.image=$(new Image());if(self.loading=false)return self;self.helper.image.load(function(){self.loading=true;self.helper.container.css({display:'none',left:'50%',top:'50%',marginLeft:-self.opts.frameSize/2+'px',marginTop:-self.opts.frameSize/2+'px'}).appendTo(self.helper.target);self.interval=setInterval(self.animate,self.opts.interval);self.helper.container.fadeIn(500);}).attr('src',self.opts.imagePath).appendTo(self.helper.container);return self;},animate:function(){var self=$.loader.impl;self.helper.image.css({top:(self.frame*-self.opts.frameSize)+'px'});self.frame=(self.frame+1)%self.opts.frameCount;return;},stop:function(){var self=$.loader.impl;self.loading=false;self.helper.container.queue('fx',[]).fadeOut(500,function(){clearInterval(self.interval);});return;}};})(jQuery);(function($){$.selectRegion=function(options){return $.selectRegion.impl.init(options);};$.fn.selectRegion=function(options){return $.selectRegion.impl.init(this,options);};$.selectRegion.defaults={};$.selectRegion.impl={opts:null,helper:{},animating:false,open:false,baseH:0,init:function(options){var self=this;this.opts=$.extend({},$.selectRegion.defaults,options);self.helper.container=$('div.region-container');self.helper.regions=self.helper.container.find('.table-regions');self.helper.backgroundContainer=$('div.background-container');self.helper.background=self.helper.backgroundContainer.find('img');self.helper.container.find('td').attr('valign','top');self.baseH=self.helper.container.height();self.background();return self;},events:function(){var self=this;self.helper.regions.find('a').click(function(e){e.preventDefault();if(self.animating==true)return;if($(this).parent().hasClass('active'))return;$(this).parent().addClass('active').siblings().removeClass('active');var region=$(this).attr('class');self.region(region);});return;},region:function(region){var self=this;var $region=self.helper.container.find('table.'+region);$region.addClass('region-active').css({opacity:'0.00',display:'block'});var regionH=$region.height();var h=self.baseH+21+regionH;self.animate(h);$region.fadeTo(1000,'1.00');self.helper.container.find('table.table-countries:not(".'+region+'")').fadeOut(1000);return;},animate:function(h){var self=this;self.animating=true;self.helper.container.animate({height:h+'px'},1000,'easeOutExpo',function(){self.animating=false;if(h==0)self.open=false;else self.open=true;});return;},background:function(){var self=this;$(new Image()).load(function(){var rat=self.helper.background.width()/self.helper.background.height()
if($(window).width()/$(window).height()<rat){self.helper.background.css({width:'auto',height:'100%'});}
else{self.helper.background.css({width:'100%',height:'auto'});}
self.helper.background.fadeIn(2000,'easeOutExpo');self.events();}).attr('src',self.helper.background.attr('src'));return;}};})(jQuery);(function($){$.landing=function(options){return $.landing.impl.init(options);};$.fn.landing=function(options){return $.landing.impl.init(this,options);};$.landing.defaults={};$.landing.impl={opts:null,helper:{},scroll:false,init:function(options){var self=this;this.opts=$.extend({},$.landing.defaults,options);self.helper.container=$('div.page-landing');self.helper.tray=self.helper.container.find('.tray-container');self.helper.background=self.helper.container.find('li.landing-backgroundimage img');self.helper.list=self.helper.tray.find('ul.trayitem-collection');$(new Image()).load(function(){self.helper.background.css({display:'none',opacity:'1.00'}).fadeIn(3000);self.initTray();}).attr('src',self.helper.background.attr('src'));return self;},initTray:function(){var self=$.landing.impl;var trayHeight=200;var b=0;self.scroll=!(parseInt($(document).height()-$(window).height())<$('#footer').outerHeight());if(self.scroll){b=self.helper.container.outerHeight()+$('#header').outerHeight()-$(window).height();self.helper.tray.css({bottom:b+'px'});}
self.helper.tray.animate({height:trayHeight+'px'},3500,'easeOutExpo',initScrollFollow);setTimeout(show,250);function show(){self.helper.tray.find('ul.trayitem-collection').fadeIn(3000,function(){self.events();});}
function initScrollFollow(){if(!self.scroll)return;self.helper.tray.css({top:self.helper.container.outerHeight()-b-trayHeight+'px',bottom:'auto'}).scrollFollow({relativeTo:'bottom',speed:1000,easing:'easeOutExpo',offset:$('#header').outerHeight()});}
return;},events:function(){var self=this;self.helper.list.children().hover(function(){$(this).siblings().queue('fx',[]).fadeTo(300,'0.30');},function(){$(this).siblings().queue('fx',[]).fadeTo(300,'1.00');});return;}};})(jQuery);(function($){$.categoryLanding=function(options){return $.categoryLanding.impl.init(options);};$.fn.categoryLanding=function(options){return $.categoryLanding.impl.init(this,options);};$.categoryLanding.defaults={};$.categoryLanding.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.categoryLanding.defaults,options);self.helper.container=$('div.page-landing');self.helper.nav=self.helper.container.find('.nav-landing-container');self.helper.background=self.helper.container.find('li.landing-backgroundimage img');$(new Image()).load(function(){self.helper.background.fadeIn(3000);self.initNav()}).attr('src',self.helper.background.attr('src'));return self;},initNav:function(){var self=this;var $innerContainer=self.helper.nav.find('.nav-landing-inner-container')
var $innerContainerBg=$('<div class="nav-landing-inner-container-bg"></div>');$innerContainerBg.css({height:$innerContainer.outerHeight()+'px'});$innerContainer.wrap('<div class="nav-landing-inner-container-wrapper"></div>');self.helper.nav.find('.nav-landing-inner-container-wrapper').prepend($innerContainerBg);self.helper.nav.css({right:-1*(self.helper.nav.outerWidth()+1)+'px',opacity:'0.00'}).animate({right:0,opacity:'1.00'},2000,'easeOutExpo');return;}};})(jQuery);(function($){$.readyToWearList=function(options){return $.readyToWearList.impl.init(options);};$.fn.readyToWearList=function(options){return $.readyToWearList.impl.init(this,options);};$.readyToWearList.defaults={pageSize:6,pageIndex:0};$.readyToWearList.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.readyToWearList.defaults,options);self.helper.container=$('div.page-readytowearlist');self.helper.list=self.helper.container.find('ul.rtwitem-collection');self.helper.pages=$('<ul class="page-collection"></ul>');self.opts.length=self.helper.list.children().length;while(self.opts.length%self.opts.pageSize!=0){var $dummy=$('<li class="rtwitem"></li>');self.helper.list.append($dummy);self.opts.length++}
self.helper.list.jcarousel({scroll:self.opts.pageSize,animation:0,buttonPrevHTML:'<div></div>',buttonNextHTML:'<div></div>',initCallback:self.carouselInit,itemLastInCallback:self.carouselIndexChanged});self.bind();return self;},carouselInit:function(carousel,state){var self=$.readyToWearList.impl;var pageCount=Math.ceil(self.opts.length/self.opts.pageSize);for(var i=0;i<pageCount;i++){var $li=$('<li class="page"><a class="page-'+i+'" href="#">'+(i+1)+'</a></li>');if(i==self.opts.pageIndex)$li.addClass('page-active');self.helper.pages.append($li);}
self.helper.pages.css({left:'50%',marginLeft:-self.helper.pages.width()/2+'px'});self.helper.pages.find('a').click(function(e){e.preventDefault();var p=$(this).attr('class').split('-')[1];if(p==self.opts.pageIndex)return;self.page(p,carousel);});carousel.container.parent().append(self.helper.pages);carousel.list.find('a.rtwitem-link').tooltip({id:'rtwitem-tooltip',track:true,showURL:false,delay:0,bodyHandler:function(){return $(this).siblings('.rtwitem-info').clone();}});carousel.buttonNext.hover(function(){$(this).addClass('jcarousel-next-hover')},function(){$(this).removeClass('jcarousel-next-hover')}).appendTo(self.helper.container.find('div.rtw-container'));carousel.buttonPrev.hover(function(){$(this).addClass('jcarousel-prev-hover')},function(){$(this).removeClass('jcarousel-prev-hover')}).appendTo(self.helper.container.find('div.rtw-container'));return;},carouselIndexChanged:function(carousel,item,i,action){var self=$.readyToWearList.impl;self.opts.pageIndex=i/self.opts.pageSize-1;if(action=='prev'){self.helper.pages.find('a.page-'+self.opts.pageIndex).parent().addClass('page-active').siblings().removeClass('page-active');}
else if(action=='next'){self.helper.pages.find('a.page-'+self.opts.pageIndex).parent().addClass('page-active').siblings().removeClass('page-active');}
return;},page:function(p,carousel){var self=this;self.opts.pageIndex=parseInt(p);var scroll=self.opts.pageIndex*self.opts.pageSize+1;carousel.scroll(jQuery.jcarousel.intval(scroll));return;}};})(jQuery);(function($){$.readyToWearDetail=function(options){return $.readyToWearDetail.impl.init(options);};$.fn.readyToWearDetail=function(options){return $.readyToWearDetail.impl.init(this,options);};$.readyToWearDetail.defaults={pageSize:6,pageIndex:0};$.readyToWearDetail.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.readyToWearDetail.defaults,options);self.helper.container=$('div.page-readytoweardetail');self.helper.list=self.helper.container.find('ul.rtwitem-collection');self.helper.image=self.helper.container.find('div.rtw-imagery img');self.opts.length=self.helper.list.children().length;while(self.opts.length%self.opts.pageSize!=0){var $dummy=$('<li class="rtwitem"></li>');self.helper.list.append($dummy);self.opts.length++}
self.helper.list.jcarousel({scroll:self.opts.pageSize,animation:0,buttonPrevHTML:'<div></div>',buttonNextHTML:'<div></div>',initCallback:self.carouselInit});$(new Image()).load(function(){self.helper.image.fadeIn(1000);}).attr('src',self.helper.image.attr('src'));return self;},carouselInit:function(carousel,state){var self=$.readyToWearDetail.impl;self.helper.container.find('.rtw-items').css({display:'none',position:'relative',left:'auto'}).fadeIn(500);self.helper.list.find('a.rtwitem-link').hover(function(){$(this).parent().siblings().find('img').queue('fx',[]).fadeTo(300,'0.40');},function(){$(this).parent().siblings().find('img').queue('fx',[]).fadeTo(300,'1.00');});carousel.buttonNext.hover(function(){$(this).addClass('jcarousel-next-hover')},function(){$(this).removeClass('jcarousel-next-hover')}).appendTo(self.helper.container.find('div.rtw-items'));carousel.buttonPrev.hover(function(){$(this).addClass('jcarousel-prev-hover')},function(){$(this).removeClass('jcarousel-prev-hover')}).appendTo(self.helper.container.find('div.rtw-items'));return;}};})(jQuery);(function($){$.brandList=function(options){return $.brandList.impl.init(options);};$.fn.brandList=function(options){return $.brandList.impl.init(this,options);};$.brandList.defaults={};$.brandList.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.brandList.defaults,options);self.helper.container=$('div.page-brandlist');self.helper.background=self.helper.container.find('ul.background-collection img');self.helper.aligner=self.helper.container.find('.aligner');self.helper.list=self.helper.container.find('ul.brand-collection');self.helper.campaign=self.helper.container.find('div.brand-campaign');self.opts.length=self.helper.list.children().length;self.grid();return self;},background:function(){var self=this;$(new Image()).load(function(){self.helper.background.fadeIn(1000);}).attr('src',self.helper.background.attr('src'));return;},grid:function(){var self=$.brandList.impl;var cellW;var cellH;var listW;var listH;var listOffset;var containerOffset;cellW=$(self.helper.list.children()[0]).width()+2;cellH=$(self.helper.list.children()[0]).height()+2;if(self.opts.length%2!=0&&self.opts.length!=15||self.opts.length==14){var $li=$('<li class="brandlist-title-container"><div class="brandlist-title-bg"></div></li>');var $title=self.helper.container.find('.brandlist-title');$li.append($title).prependTo(self.helper.list);Cufon.replace($title,{fontFamily:'Helvetica Neue LT Std'});Cufon.now();}
if(self.opts.length>=13&&self.opts.length<=15){listW=5*cellW;listH=3*cellH;}
else if(self.opts.length==12||self.opts.length==11){listW=4*cellW;listH=3*cellH;}
else if(self.opts.length==10||self.opts.length==9){listW=5*cellW;listH=2*cellH;}
else if(self.opts.length==8||self.opts.length==7){listW=4*cellW;listH=2*cellH;}
else if(self.opts.length==6||self.opts.length==5){listW=3*cellW;listH=2*cellH;}
self.helper.list.css({width:listW+'px',height:listH+'px'});self.load();self.events();return;},load:function(){var self=this;var count=self.helper.list.children(':not(".brandlist-title-container")').length;var loaded=0;var interval=setInterval(function(){if(loaded==count){clearInterval(interval);self.show();}},80);self.helper.list.children().each(function(i,item){if($(item).hasClass('brandlist-title-container'))return;$(item).prepend('<div class="brand-bg"></div>');var src=$(item).find('img.brand-logo').attr('src');$(new Image()).load(function(){loaded++;self.fixIE(item);}).attr('src',src);});return;},show:function(){var self=this;var marginL=self.helper.list.width()/2-self.helper.campaign.width()-4;var marginT=self.helper.list.height()/2+10;self.helper.aligner.css({display:'none',left:'0'});self.helper.campaign.css({display:'block',marginLeft:marginL+'px',marginTop:marginT+'px'});self.helper.list.find('.brand-logo').css({marginLeft:'-75px'});self.helper.aligner.fadeIn(1000,function(){self.background();});return;},events:function(){var self=this;self.helper.list.children('.brand').hover(function(){$(this).find('img.brand-image').css({opacity:'1.00'}).fadeIn(250);},function(){$(this).find('img.brand-image').queue('fx',[]).fadeOut(250);}).tooltip({id:'brand-tooltip',track:true,showURL:false,delay:0,top:30,left:30,bodyHandler:function(){return $(this).find('.brand-description').clone();}});return;},fixIE:function(item){if(!$.browser.msie||($.browser.version>=7))return;var self=this;var $logo=$(item).find('img.brand-logo');$logo.pngFix();return;}};})(jQuery);(function($){$.brandDetail=function(options){return $.brandDetail.impl.init(options);};$.fn.brandDetail=function(options){return $.brandDetail.impl.init(this,options);};$.brandDetail.defaults={res:{}};$.brandDetail.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.brandDetail.defaults,options);self.helper.container=$('div.page-branddetail');self.helper.background=self.helper.container.find('ul.background-collection img');self.helper.nav=self.helper.container.find('div.nav-container');self.helper.tray=self.helper.container.find('div.tray-container');self.helper.link=self.helper.container.find('a.collection-link');$(new Image()).load(function(){self.helper.background.fadeIn(1000,function(){self.initCarousel();self.initTray();var $tip=$('<div>'+self.helper.link.attr('title')+'</div>');self.helper.link.tooltip({id:'imagelist-tooltip',track:true,showURL:false,delay:0,bodyHandler:function(){return $tip;}});});}).attr('src',self.helper.background.attr('src'));self.initNav();return self;},initNav:function(){var self=this;var $list=self.helper.container.find('ul#nav-branddetail');var $selected=$('<a class="category-selected" href="#">'+$list.find('.li-1-active').text()+'</a>').insertBefore($list);$selected.click(function(e){e.preventDefault();if(!$list.hasClass('ul-1-open')){$list.addClass('ul-1-open');$selected.text($list.find('.li-1-active').text());self.helper.nav.find('a').blur(function(){$list.removeClass('ul-1-open');});$list.find('a').click(function(){$(this).parent().addClass('li-1-active').siblings().removeClass('li-1-active');$selected.text($(this).text());$list.removeClass('ul-1-open');});self.helper.nav.find('a').hover(function(){self.helper.nav.find('a').unbind('blur');},function(){self.helper.nav.find('a').blur(function(){$list.removeClass('ul-1-open');});});}
else{$list.removeClass('ul-1-open');$selected.text($list.find('.li-1-active').text());}});self.helper.nav.fadeIn(1000);return;},initCarousel:function(){var self=this;var $list=self.helper.tray.find('ul.carouselitem-collection');var $trayList=self.helper.tray.find('ul.trayitem-collection');var w=0;var index=0;if($list.children().length<4)return;$trayList.css({display:'block'});var $logo=self.helper.tray.find('.brand-logo img');$(new Image()).load(function(){$logo.pngFix();}).attr('src',$logo.attr('src'));$list.wrap('<div class="carousel-container"><div class="carousel-clip"></div></div>');$list.children().each(function(i,item){w+=$(item).width()+11;});if(w<=$list.width())return;var $container=self.helper.tray.find('.carousel-container');self.helper.prev=$('<a class="carousel-prev carousel-prev-disabled" href="#">'+self.opts.res.previous+'</a>').appendTo($container);self.helper.next=$('<a class="carousel-next" href="#">'+self.opts.res.next+'</a>').appendTo($container);self.helper.prev.click(function(e){e.preventDefault();if(index==0)return;index=0;$(this).addClass('carousel-prev-disabled');self.helper.next.removeClass('carousel-next-disabled');animate('neg');});self.helper.next.click(function(e){e.preventDefault();if(index==1)return;index=1;$(this).addClass('carousel-next-disabled');self.helper.prev.removeClass('carousel-prev-disabled');animate('pos');});function animate(dir){if(dir=='pos'){$list.animate({left:$container.width()-$list.width()+'px'},500,'easeOutQuad');}
else{$list.animate({left:0},500,'easeOutQuad');}}
$list.css({width:w+'px',left:0});$trayList.css({display:'none'});return;},initTray:function(){var self=$.brandDetail.impl;var trayHeight=200;self.helper.tray.animate({height:trayHeight+'px'},3500,'easeOutExpo',initScrollFollow);setTimeout(show,250);function show(){self.helper.tray.find('ul.trayitem-collection').fadeIn(3000,function(){self.events();});}
function initScrollFollow(){if(parseInt($(document).height()-$(window).height())<$('#footer').outerHeight())return;self.helper.tray.css({top:self.helper.container.outerHeight()-trayHeight+'px',bottom:'auto'}).scrollFollow({relativeTo:'bottom',speed:1000,easing:'easeOutExpo',offset:$('#header').outerHeight()});}
return;},events:function(){var self=this;self.helper.tray.find('ul.carouselitem-collection').children().hover(function(){$(this).addClass('carouselitem-hover');},function(){$(this).removeClass('carouselitem-hover');});return;}};})(jQuery);(function($){$.brandProductList=function(options){return $.brandProductList.impl.init(options);};$.fn.brandProductList=function(options){return $.brandProductList.impl.init(this,options);};$.brandProductList.defaults={pageSize:5,pageIndex:0,collection:null,res:{},products:new Array()};$.brandProductList.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.brandProductList.defaults,options);self.helper.container=$('div.page-brandproductlist');self.helper.list=self.helper.container.find('ul.rtwitem-collection');self.helper.data=self.helper.list.clone();self.helper.nav=self.helper.container.find('div.nav-container');self.initNav();self.carousel(self.opts.collection);return self;},initNav:function(){var self=this;var self=this;var $list=self.helper.nav.find('ul#nav-brandproductlist');if(self.opts.collection!=''&&self.opts.collection!=null){$list.find('li.col-'+self.opts.collection).addClass('li-1-active');}
else{$($list.children()[0]).addClass('li-1-active');}
$list.siblings('.collection-info').html($list.find('.li-1-active .collection-info').html());var $selected=$('<a class="category-selected" href="#">'+$list.find('.li-1-active .a-1').text()+'</a>').insertBefore($list);$selected.click(function(e){e.preventDefault();if(!$list.hasClass('ul-1-open')){$list.addClass('ul-1-open');$selected.text($list.find('.li-1-active .a-1').text());}
else{$list.removeClass('ul-1-open');$selected.text($list.find('.li-1-active .a-1').text());}});$list.find('a.a-1').click(function(e){e.preventDefault();$list.removeClass('ul-1-open');if($(this).parent().hasClass('li-1-active'))return;$(this).parent().addClass('li-1-active').siblings().removeClass('li-1-active');$selected.text($(this).text());var c=$(this).attr('href').split('#')[1];$list.siblings('.collection-info').html($(this).siblings('.collection-info').html());self.carousel(c);});self.helper.nav.fadeIn(1000);return;},carousel:function(collection){var self=this;var $container=$('<div class="rtw-container"></div>');self.helper.list=$('<ul class="rtwitem-collection"></ul>');self.helper.pages=$('<ul class="page-collection"></ul>');self.helper.container.find('div.rtw-container').before($container).removeClass('rtw-container').css({position:'absolute',left:'-999em'});if(collection!=null&&collection!=''){self.helper.list.append(self.helper.data.find('li.col-'+collection).clone());}
else{self.helper.list.append(self.helper.data.children().clone());}
self.helper.list.appendTo($container);self.opts.pageIndex=0;self.opts.length=self.helper.list.children().length;while(self.opts.length%self.opts.pageSize!=0){var $dummy=$('<li class="rtwitem"></li>');self.helper.list.append($dummy);self.opts.length++}
self.bind();self.helper.list.jcarousel({scroll:self.opts.pageSize,animation:0,buttonPrevHTML:'<div></div>',buttonNextHTML:'<div></div>',initCallback:self.carouselInit,itemLastInCallback:self.carouselIndexChanged});return;},bind:function(){var self=this;self.helper.list.find('a.rtwitem-link').hover(function(){$(this).parent().siblings().find('img').queue('fx',[]).fadeTo(300,'0.40');$.brandProductList.impl.getBrandProds($(this).parent());},function(){$(this).parent().siblings().find('img').queue('fx',[]).fadeTo(300,'1.00');});return;},carouselInit:function(carousel,state){var self=$.brandProductList.impl;var pageCount=Math.ceil(self.opts.length/self.opts.pageSize);for(var i=0;i<pageCount;i++){var $li=$('<li class="page"><a class="page-'+i+'" href="#">'+(i+1)+'</a></li>');if(i==self.opts.pageIndex)$li.addClass('page-active');self.helper.pages.append($li);}
self.helper.pages.css({left:'50%',marginLeft:-self.helper.pages.width()/2+'px'});self.helper.pages.find('a').click(function(e){e.preventDefault();var p=$(this).attr('class').split('-')[1];if(p==self.opts.pageIndex)return;self.page(p,carousel);});carousel.container.parent().append(self.helper.pages);carousel.list.find('a.rtwitem-link').tooltip({id:'rtwitem-tooltip',track:true,showURL:false,delay:0,bodyHandler:function(){return $(this).siblings('.rtwitem-info').clone();}});carousel.buttonNext.hover(function(){$(this).addClass('jcarousel-next-hover')},function(){$(this).removeClass('jcarousel-next-hover')}).appendTo(self.helper.container.find('div.rtw-container'));carousel.buttonPrev.hover(function(){$(this).addClass('jcarousel-prev-hover')},function(){$(this).removeClass('jcarousel-prev-hover')}).appendTo(self.helper.container.find('div.rtw-container'));return;},carouselIndexChanged:function(carousel,item,i,action){var self=$.brandProductList.impl;self.opts.pageIndex=i/self.opts.pageSize-1;if(action=='prev'){self.helper.pages.find('a.page-'+self.opts.pageIndex).parent().addClass('page-active').siblings().removeClass('page-active');}
else if(action=='next'){self.helper.pages.find('a.page-'+self.opts.pageIndex).parent().addClass('page-active').siblings().removeClass('page-active');}
return;},page:function(p,carousel){var self=this;self.opts.pageIndex=parseInt(p);var scroll=self.opts.pageIndex*self.opts.pageSize+1;carousel.scroll(jQuery.jcarousel.intval(scroll));return;},getBrandProds:function($rtwitem){var self=$.brandProductList.impl;if($rtwitem.hasClass('rtwitem-loaded')||$rtwitem.hasClass('rtwitem-loading'))return;$rtwitem.addClass('rtwitem-loading');var productIds=$rtwitem.find('img.rtwitem-image').attr('rel');CreateThe.Com.Web.CodeBase.WebServices.ProductService.GetBrandProducts(productIds,self.opts.folderId,self.opts.root,self.opts.lang,self.opts.region,self.opts.priceCode,$.brandProductList.impl.getBrandProductsSuccess,$.brandProductList.impl.getBrandProductsFailure,$rtwitem);return;},getBrandProductsSuccess:function(data,$rtwitem){var self=$.brandProductList.impl;var result=eval(data);if(result.Count==0)return;$rtwitem.removeClass('rtwitem-loading').addClass('rtwitem-loaded');var products=result.Products;var $products=$('<ul class="product-collection"></ul>');$.each(products,function(i,product){var $product=$('<li class="product"></li>');$product.append('<div class="product-title">'+product.SafeProductName+'</div>');if(self.opts.isCountryShoppable){var price=(product.Price>0)?currency.format(product.Price,self.opts.currency):currency.format(product.LowPrice,self.opts.currency)+'&#8212;'+currency.format(product.HighPrice,self.opts.currency);$product.append('<div class="product-price">&nbsp;'+price+'</div>');}
var skus=new Array();var $variants=$('<ul class="variantselector-collection"></ul>');$.each(product.Skus,function(j,sku){if((skus[sku.VariantName]==null)&&(sku.SwatchImage!='')&&(sku.SwatchImage!='/swatches/19/19')){$variants.append('<li class="variantselector"><a href="#"><img src="'+self.opts.ctsImageUrl+sku.SwatchImage+'" alt="'+sku.VariantName+'" /></a></li>');skus[sku.VariantName]=true;}});$product.append($variants).append('<div class="clear"></div>').appendTo($products);});var $tooltip=$('div#rtwitem-tooltip');$tooltip.find('.product-collection').remove();$tooltip.find('.rtwitem-info').append($products.clone());$rtwitem.find('.rtwitem-info').append($products);return;},getBrandProductsFailure:function(data){return;}};})(jQuery);(function($){$.imageList=function(options){return $.imageList.impl.init(options);};$.fn.imageList=function(options){return $.imageList.impl.init(this,options);};$.imageList.defaults={index:0,res:{}};$.imageList.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.imageList.defaults,options);self.helper.container=$('div.page-imagelist');self.helper.list=self.helper.container.find('ul.image-collection');self.helper.prev=$('<a class="prev-image" href="#">'+self.opts.res.previous+'</a>').appendTo(self.helper.container);self.helper.next=$('<a class="next-image" href="#">'+self.opts.res.next+'</a>').appendTo(self.helper.container);self.helper.list.children().each(function(i,item){var $a=$(item).find('a');var src=$(item).find('img').attr('src');$a.find('img').attr('alt','');if(i==self.opts.index){$(new Image()).load(function(){$a.fadeIn(1000,function(){var $tip=$('<div>'+$a.attr('title')+'</div>');$(this).tooltip({id:'imagelist-tooltip',track:true,showURL:false,delay:0,bodyHandler:function(){return $tip;}});});}).attr('src',src);}});self.helper.prev.click(function(e){e.preventDefault();self.animate('prev');});self.helper.next.click(function(e){e.preventDefault();self.animate('next');});return self;},animate:function(dir){var self=this;var length=self.helper.list.children().length;if(dir=='next'){if(self.opts.index<length-1)self.opts.index++;else self.opts.index=0;}
else{if(self.opts.index==0)self.opts.index=length-1;else self.opts.index--;}
var $a=$(self.helper.list.find('a')[self.opts.index]).clone();var src=$a.find('img').attr('src');$(new Image()).load(function(){$a.css({display:'none'}).appendTo(self.helper.container.find('.fixer')).fadeIn(1000,function(){var $tip=$('<div>'+$a.attr('title')+'</div>');$(this).tooltip({id:'imagelist-tooltip',track:true,showURL:false,delay:0,bodyHandler:function(){return $tip;}});});}).attr('src',src);return;}};})(jQuery);(function($){$.discover=function(options){return $.discover.impl.init(options);};$.fn.discover=function(options){return $.discover.impl.init(this,options);};$.discover.defaults={};$.discover.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.discover.defaults,options);self.helper.container=$('div.page-discover');self.helper.background=self.helper.container.find('ul.background-collection img');self.helper.list=self.helper.container.find('ul.griditem-collection');Cufon.replace(self.helper.list.find('.griditem-title'),{fontFamily:'Helvetica Neue LT Std'});Cufon.now();$(new Image()).load(function(){self.helper.background.fadeIn(1000,self.grid);}).attr('src',self.helper.background.attr('src'));return self;},grid:function(){var self=$.discover.impl;self.helper.list.children().each(function(i,item){var $img=$(item).find('.griditem-image');var $bg=$(item).find('.griditem-bg');$img.insertAfter(self.helper.background);$bg.animate({backgroundColor:'#000',opacity:'0.40'},1);$(new Image()).load(function(){$(item).hover(function(){$bg.animate({backgroundColor:'#000',opacity:'0.70'},500);$img.css({opacity:'1.00'}).fadeIn(500);},function(){$bg.queue('fx',[]).animate({backgroundColor:'#000',opacity:'0.40'},500);$img.queue('fx',[]).fadeOut(500);}).click(function(e){e.preventDefault()
window.location=$(this).find('a').attr('href');});}).attr('src',$img.attr('src'));});return;},events:function(){var self=$.discover.impl;self.helper.list.find('.griditem-link').hover(function(){},function(){});return;}};})(jQuery);(function($){$.giftCard=function(options,productId){return $.giftCard.impl.init(options,productId);};$.fn.giftCard=function(options){return $.giftCard.impl.init(this,options);};$.giftCard.defaults={res:{}};$.giftCard.impl={opts:null,helper:{},init:function(options,productId){var self=this;this.opts=$.extend({},$.giftCard.defaults,options);self.productId=productId;self.helper.container=$('div.page-giftcard');self.helper.optionList=self.helper.container.find('ul.option-collection');self.helper.addProduct=self.helper.container.find('a.add-product');self.helper.productAdded=self.helper.container.find('ul.product-added');self.initSelects();Cufon.replace(self.helper.container.find('h1'),{fontFamily:'Helvetica Neue LT Std'});Cufon.now();self.bindAddProductClick();return self;},bindAddProductClick:function(){var self=this;self.helper.addProduct.removeClass('disabled').click(function(e){e.preventDefault();$(this).addClass('disabled').unbind();self.helper.productAdded.css({display:'none'});var sizeCode=self.helper.optionList.find('.option-size a.select-selected').attr('value');var variantCode=self.helper.optionList.find('.option-color a.select-selected').attr('value');var quantity=self.helper.optionList.find('.option-quantity a.select-selected').attr('value');if(sizeCode==''||sizeCode=='null'){alert(self.opts.res.pleaseSelectSize);return;}
$.shoppingBag.impl.addProduct(self.productId,sizeCode,variantCode,quantity,$.giftCard.impl.addProductCallback);});return;},addProductCallback:function(data){var self=$.productDetail.impl;var count=(data>0)?data:0;if(data<0){alert('An error has occurred. Please try again.');return;}
self.bindAddProductClick();self.helper.productAdded.fadeIn(500);$('ul#nav-ecommerce .shoppingbag-count').text(count);return;},initSelects:function(){var self=this;self.helper.optionList.find('select').each(function(i,item){var $og=$(item).hide();var ogId=$og.attr('id');var ogClass=$og.attr('class');var selectedIndex=$og.children("option:selected").prevAll().length;var values=[];var texts=[];$og.children().each(function(j){values[j]=$(this).attr('value');texts[j]=$(this).text();});var $sContainer=$('<div class="select-container"></div>').insertAfter($og);var $sSelected=$('<a href="#" class="select-selected">'+texts[selectedIndex]+'</a>').appendTo($sContainer);var $sOptions=$('<ul class="select-option-collection"></ul>').appendTo($sContainer);$.each(values,function(j){var $o=$('<li class="select-option"><a href="#" value="'+values[j]+'">'+texts[j]+'</a></li>');$sOptions.append($o);});$sSelected.click(function(e){e.preventDefault();if(!$sContainer.hasClass('select-container-show')){$sContainer.addClass('select-container-show');$sContainer.find('a').blur(function(){$sContainer.removeClass('select-container-show');});}
else{$sContainer.removeClass('select-container-show');}});$sOptions.find('a').click(function(e){e.preventDefault();if($sSelected.text()!=$(this).text()){$sSelected.text($(this).text());}
$sContainer.removeClass('select-container-show');});$sContainer.find('a').hover(function(){$sContainer.find('a').unbind('blur');},function(){$sContainer.find('a').blur(function(){$sContainer.removeClass('select-container-show');});});});return;}};})(jQuery);(function($){$.pressList=function(options){return $.pressList.impl.init(options);};$.fn.pressList=function(options){return $.pressList.impl.init(this,options);};$.pressList.defaults={index:0,pageSize:8,pageCount:0,res:{}};$.pressList.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.pressList.defaults,options);self.helper.container=$('div.page-presslist');self.helper.list=self.helper.container.find('ul.pressitem-collection');self.helper.pages=$('<ul class="page-collection"></ul>').appendTo(self.helper.container.find('td'));self.helper.prev=$('<a class="prev-page prev-page-disabled" href="#">'+self.opts.res.previous+'</a>').appendTo(self.helper.container);self.helper.next=$('<a class="next-page" href="#">'+self.opts.res.next+'</a>').appendTo(self.helper.container);Cufon.replace(self.helper.container.find('h1'),{fontFamily:'Helvetica Neue LT Std'});Cufon.now();self.opts.pageCount=Math.ceil(self.helper.list.children().length/self.opts.pageSize);if(self.opts.pageCount>1){var length=self.opts.pageCount-1;for(var i=0;i<=length;i++){var $li=$('<li class="page page-'+i+'"><a href="#">'+(i+1)+'</a></li>').appendTo(self.helper.pages);if(i==0){$li.find('a').html((i+1)+' <span>&#8230;</span>');}
else if(i==length){$li.find('a').html('<span>&#8230;</span> '+(i+1));}}}
self.helper.pages.find('a').click(function(e){e.preventDefault();var $li=$(this).parent();if($li.hasClass('page-active'))return;self.opts.index=$li.prevAll().length;self.page(self.opts.index);});self.helper.prev.click(function(e){e.preventDefault();self.page(self.opts.index--);});self.helper.next.click(function(e){e.preventDefault();self.page(self.opts.index++);});self.helper.list.children().hover(function(){$(this).addClass('pressitem-hover');},function(){$(this).removeClass('pressitem-hover');});self.helper.list.find('a.open-pressitem-detail').click(function(e){e.preventDefault();self.detail($(this).parent().clone());});self.page(0);return self;},pagination:function(){var self=this;self.opts.range=2;var length=self.helper.pages.children().length;var first=0;var last=self.opts.pageCount-1;var start=first;var atFirst;var atLast;if(self.opts.index<=self.opts.range){start=first;atFirst=true;atLast=false;}
else if(self.opts.index>=(last-self.opts.range)){start=last-2*self.opts.range;atFirst=false;atLast=true;}
else{start=self.opts.index-self.opts.range;atFirst=false;atLast=false;}
var finish=start+2*self.opts.range;self.helper.pages.children().each(function(i,item){if(i>=start&&i<=finish){$(item).addClass('page-visible');}
else{$(item).removeClass('page-visible');}});if(self.opts.pageCount<=5){$(self.helper.pages.children()[last]).addClass('page-atlast');$(self.helper.pages.children()[first]).addClass('page-atfirst');return;}
if(self.opts.pageCount>5){if(atFirst){$(self.helper.pages.children()[last]).addClass('page-visible').removeClass('page-atlast');$(self.helper.pages.children()[first]).addClass('page-atfirst');}
else if(atLast){$(self.helper.pages.children()[first]).addClass('page-visible').removeClass('page-atfirst');$(self.helper.pages.children()[last]).addClass('page-atlast');}
else{$(self.helper.pages.children()[first]).addClass('page-visible').removeClass('page-atfirst');$(self.helper.pages.children()[last]).addClass('page-visible').removeClass('page-atlast');}}
return;},page:function(p){var self=this;var $page=$(self.helper.pages.children()[self.opts.index]);if(self.opts.index==0){self.helper.prev.addClass('prev-page-disabled');}
else{self.helper.prev.removeClass('prev-page-disabled');}
if(self.opts.index==self.opts.pageCount-1){self.helper.next.addClass('next-page-disabled');}
else{self.helper.next.removeClass('next-page-disabled');}
if(self.opts.pageCount>1)$page.addClass('page-active').siblings().removeClass('page-active');self.helper.list.children().css({display:'none'});var start=self.opts.index*self.opts.pageSize;var finish=start+self.opts.pageSize-1;for(var i=start;i<=finish;i++){$(self.helper.list.children()[i]).css({display:'block'});}
self.pagination();return;},detail:function($item){var self=this;var $detail=$('<div class="pressitem-detail"><div class="pressitem-detail-bg"></div></div>');var $images=$item.find('ul.image-collection').appendTo($detail);var $info=$item.find('.pressitem-info').css('display','none').appendTo($detail);$detail.css({left:self.helper.list.offset().left-self.helper.container.offset().left+6+'px',top:self.helper.list.offset().top-self.helper.container.offset().top+6+'px',display:'none'}).appendTo(self.helper.container).fadeIn(500,function(){var i=0;var $img=$($images.find('.image img')[i]);$(new Image()).load(function(){$img.fadeIn(500);$info.fadeIn(500);}).attr('src',$img.attr('src'));});self.helper.pages.fadeOut(500);self.helper.prev.fadeOut(500);self.helper.next.fadeOut(500);var $close=$('<a class="close-pressitem-detail" href="#">'+self.opts.res.close+'</a>').appendTo($detail);$close.click(function(e){e.preventDefault();$detail.fadeOut(500,function(){$detail.remove();});self.helper.pages.fadeIn(500);if(!self.helper.prev.hasClass('prev-page-disabled')){self.helper.prev.fadeIn(500);}
if(!self.helper.next.hasClass('next-page-disabled')){self.helper.next.fadeIn(500);}});return;}};})(jQuery);(function($){$.textual=function(options){return $.textual.impl.init(options);};$.fn.textual=function(options){return $.textual.impl.init(this,options);};$.textual.defaults={res:{}};$.textual.impl={opts:null,helper:{},init:function(options){var self=this;this.opts=$.extend({},$.textual.defaults,options);var $content=$('div.page-textual');var $container=$content.find('div.textual-container');var $primary=$container.find('div.textual-primary');var $secondary=$container.find('div.textual-secondary');var contentH=$content.outerHeight();var containerH=$container.outerHeight();self.images();if(containerH>contentH){$content.css({height:$container.outerHeight()+'px'});}
$container.css({height:contentH-(2*parseInt($container.css('padding-top')))+'px'});Cufon.replace($('h1'),{fontFamily:'Helvetica Neue LT Std'});Cufon.now();return self;},images:function(){var self=this;var $container=$('div.newsitem-images');var $list=$container.find('ul.image-collection');var $details=$container.find('ul.image-collection img.image-detail');var $thumbs=$container.find('ul.image-collection img.image-thumb');var $selected=$('<div class="selected"></div>').appendTo($container);var $selectors=$('<ul class="selector-collection"></ul>').appendTo($container);$list.children().each(function(i,item){var $li=$('<li class="selector"></li>');$li.append($thumbs[i]).appendTo($selectors);if(i==0){$li.addClass('selector-active');image(0);}});$selectors.children().hover(function(){$(this).addClass('selector-hover');},function(){$(this).removeClass('selector-hover');}).click(function(e){e.preventDefault();if($(this).hasClass('selector-active'))return;$(this).addClass('selector-active').siblings().removeClass('selector-active');image($(this).prevAll().length);});$selectors.jcarousel({});function image(i){var $img=$($details[i]);$selected.empty();$(new Image()).load(function(){$selected.append($(this));$(this).fadeIn(1000);}).attr('src',$img.attr('src'));}
return;}};})(jQuery);var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})()};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},ready:(function(){var complete=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var styleElements=Object.prototype.propertyIsEnumerable?elementsByTagName('style'):{length:0};var linkElements=elementsByTagName('link');DOM.ready(function(){var linkStyles=0,link;for(var i=0,l=linkElements.length;link=linkElements[i],i<l;++i){if(!link.disabled&&link.rel.toLowerCase()=='stylesheet')++linkStyles;}
if(document.styleSheets.length>=styleElements.length+linkStyles)perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})(),supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false;}
if(foundAll)break;style=this.getStyle(search=search.parentNode);}
return types;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={},offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),textTransform:function(text,style){return text[{uppercase:'toUpperCase',lowercase:'toLowerCase'}[style.get('textTransform')]||'toString']();}};api.VML={parsePath:function(path){var cmds=[],re=/([mrvxe])([^a-z]*)/g,match;while(match=re.exec(path)){cmds.push({type:match[1],coords:match[2].split(',')});}
return cmds;}};function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);return{minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),width:parseInt(parts[2],10)-parseInt(parts[0],10),height:parseInt(parts[3],10)-parseInt(parts[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(' ');}};})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this);}
function onEnterLeave(e){trigger(this);}
function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.extend=function(styles){for(var property in styles)custom[property]=styles[property];return this;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!cache.hasOwnProperty(key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){if(!style)style=CSS.getStyle(el);var families=style.get('fontFamily').split(/\s*,\s*/),family;for(var i=0,l=families.length;i<l;++i){family=families[i].replace(/^(["'])(.*?)\1$/,'$2').toLowerCase();if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function merge(){var merged={},key;for(var i=0,l=arguments.length;i<l;++i){for(key in arguments[i])merged[key]=arguments[i][key];}
return merged;}
function process(font,text,style,options,node,el){var separate=options.separate;if(separate=='none')return engines[options.engine].apply(null,arguments);var fragment=document.createDocumentFragment(),processed;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var font,style,nextNode,redraw;for(var node=attach(el,options).firstChild;node;node=nextNode){nextNode=node.nextSibling;redraw=false;if(node.nodeType==1){if(!node.firstChild)continue;if(!/cufon/.test(node.className)){arguments.callee(node,options);continue;}
else redraw=true;}
if(!style)style=CSS.getStyle(el).extend(options);if(!font)font=getFont(el,style);if(!font)continue;if(redraw){engines[options.engine](font,null,style,options,node,el);continue;}
var text=node.data;if(text==='')continue;var processed=process(font,text,style,options,node,el);if(processed)node.parentNode.replaceChild(processed,node);else node.parentNode.removeChild(node);}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=[];var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/\s+/,characters:''};api.now=function(){DOM.ready();return api;};api.refresh=function(){var currentHistory=replaceHistory.splice(0,replaceHistory.length);for(var i=0,l=currentHistory.length;i<l;++i){api.replace.apply(null,currentHistory[i]);}
return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily',family);};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(typeof options.textShadow=='string')options.textShadow=CSS.textShadow(options.textShadow);if(!ignoreHistory)replaceHistory.push(arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return null;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode('@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle'+(HAS_BROKEN_LINEHEIGHT?'':';font-size:1px;line-height:1px')+'}.cufon-canvas .cufon-alt{display:none}'+(HAS_INLINE_BLOCK?'.cufon-canvas canvas{position:relative}':'.cufon-canvas canvas{position:absolute}')+'}'+'@media print{'+'.cufon-canvas{padding:0 !important}'+'.cufon-canvas canvas{display:none}'+'.cufon-canvas .cufon-alt{display:inline}'+'}'));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var cmds=Cufon.VML.parsePath(path);var code=new Array(cmds.length-1);generate:for(var i=0,l=cmds.length;i<l;++i){var c=cmds[i].coords;switch(cmds[i].type){case'v':code[i]={m:'bezierCurveTo',a:[atX+Number(c[0]),atY+Number(c[1]),atX+Number(c[2]),atY+Number(c[3]),atX+=Number(c[4]),atY+=Number(c[5])]};break;case'r':code[i]={m:'lineTo',a:[atX+=Number(c[0]),atY+=Number(c[1])]};break;case'm':code[i]={m:'moveTo',a:[atX=Number(c[0]),atY=Number(c[1])]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=0,l=shadows.length;i<l;++i){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(redraw?node.alt:text,style).split('');var width=0,lastWidth=null;for(var i=0,l=chars.length;i<l;++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;width+=lastWidth=Number(glyph.w||font.w)+letterSpacing;}
if(lastWidth===null)return null;expandRight+=(viewBox.width-lastWidth);expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height-expandTop+expandBottom);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;canvas.width=Math.ceil(size.convert(width+expandRight-expandLeft)*roundingFactor);canvas.height=roundedHeight;expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(width*roundingFactor))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=roundedHeight/viewBox.height;g.scale(scale,scale);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke();}
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);g.fillStyle=style.get('color');function renderText(){for(var i=0,l=chars.length;i<l;++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;g.beginPath();if(glyph.d){if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);}
g.fill();g.translate(Number(glyph.w||font.w)+letterSpacing,0);}}
if(shadows){for(var i=0,l=shadows.length;i<l;++i){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();g.restore();}}
renderText();g.restore();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper;};})());Cufon.registerEngine('vml',(function(){if(!document.namespaces)return;document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;</script><![endif]-->');if(!Cufon.vmlEnabled)return;if(document.namespaces['cvml']==null){document.namespaces.add('cvml','urn:schemas-microsoft-com:vml');document.write('<style type="text/css">'+'@media screen{'+'cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}'+'.cufon-vml{display:inline-block;position:relative;vertical-align:middle}'+'.cufon-vml .cufon-alt{display:none}'+'a .cufon-vml{cursor:pointer}'+'}'+'@media print{'+'.cufon-vml *{display:none}'+'.cufon-vml .cufon-alt{display:inline}'+'}'+'</style>');}
var typeIndex=0;function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value;var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function createType(glyph,viewBox){var shapeType=document.createElement('cvml:shapetype');shapeType.id='cufon-glyph-'+typeIndex++;glyph.typeRef='#'+shapeType.id;shapeType.stroked='f';shapeType.coordsize=viewBox.width+','+viewBox.height;shapeType.coordorigin=viewBox.minX+','+viewBox.minY;var ensureSize='m'+viewBox.minX+','+viewBox.minY+' r'+viewBox.width+','+viewBox.height;shapeType.path=(glyph.d?'m'+glyph.d+'x':'')+ensureSize;document.body.insertBefore(shapeType,document.body.firstChild);}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(getSizeInPixels(el,letterSpacing));}
var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cvml:group');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.innerText=text;wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:group'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);cStyle.height=Math.ceil(height);cStyle.top=Math.round(size.convert(viewBox.minY-font.ascent));cStyle.left=Math.round(size.convert(viewBox.minX));var roundingFactor=parseInt(cStyle.height,10)/height;wStyle.height=size.convert(-font.ascent+font.descent)+'px';var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var width=0,offsetX=0,advance=null;var shadows=options.textShadow;for(var i=0,k=-1,l=chars.length;i<l;++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(!glyph.typeRef)createType(glyph,viewBox);if(redraw){shape=canvas.childNodes[++k];}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.type=glyph.typeRef;var sStyle=shape.style;sStyle.width=viewBox.width;sStyle.height=viewBox.height;sStyle.top=0;sStyle.left=offsetX;sStyle.zIndex=1;shape.fillcolor=color;if(shadows){for(var z=0,p=shadows.length;z<p;++z){var shadow=shadows[z];var shadowColor=Cufon.CSS.color(shadow.color);var shadowNode=shape.cloneNode(false),zStyle=shadowNode.runtimeStyle;zStyle.top=size.convertFrom(parseFloat(shadow.offY));zStyle.left=offsetX+size.convertFrom(parseFloat(shadow.offX));zStyle.zIndex=0;shadowNode.fillcolor=shadowColor.color;if(shadowColor.opacity){var shadowFill=document.createElement('cvml:fill');shadowFill.opacity=shadowColor.opacity;shadowNode.appendChild(shadowFill);}
canvas.appendChild(shadowNode);}++k;}
advance=Number(glyph.w||font.w)+letterSpacing;width+=advance;offsetX+=advance;}
if(advance===null)return null;var fullWidth=-viewBox.minX+width+(viewBox.width-advance);canvas.coordsize=fullWidth+','+viewBox.height;cStyle.width=size.convert(fullWidth*roundingFactor);wStyle.width=Math.max(Math.ceil(size.convert(width*roundingFactor)),0);return wrapper;};})());Cufon.registerFont({"w":233,"face":{"font-family":"Helvetica Neue LT Std","font-weight":250,"font-stretch":"expanded","units-per-em":"360","panose-1":"2 11 4 4 2 2 2 2 2 4","ascent":"257","descent":"-103","x-height":"6","bbox":"-39 -342 414 79.0529","underline-thickness":"18","underline-position":"-18","stemh":"14","stemv":"17","unicode-range":"U+0020-U+03C0"},"glyphs":{" ":{"w":79},"!":{"d":"40,-66r-3,-191r19,0r-3,191r-13,0xm37,0r0,-36r19,0r0,36r-19,0","w":92},"\"":{"d":"31,-174r0,-83r14,0r0,83r-14,0xm81,-174r0,-83r15,0r0,83r-15,0","w":126},"#":{"d":"57,0r11,-82r-41,0r0,-12r42,0r9,-65r-40,0r0,-12r42,0r11,-82r13,0r-11,82r60,0r12,-82r12,0r-11,82r40,0r0,12r-42,0r-9,65r40,0r0,12r-42,0r-11,82r-12,0r11,-82r-61,0r-11,82r-12,0xm143,-94r9,-65r-61,0r-9,65r61,0"},"$":{"d":"124,-121r0,112v59,0,80,-26,80,-56v8,-33,-39,-47,-80,-56xm112,-140r0,-105v-57,1,-76,24,-76,52v0,33,29,44,76,53xm112,-9r0,-114v-52,-10,-94,-25,-94,-71v0,-41,35,-65,94,-65r0,-27r12,0r0,27v56,3,90,27,92,77r-16,0v-2,-28,-17,-60,-76,-63r0,108v52,8,99,23,99,71v0,34,-22,72,-99,72r0,34r-12,0r0,-34v-73,-4,-102,-39,-102,-90r17,0v0,45,26,72,85,75"},"%":{"d":"83,-121v-42,0,-62,-29,-62,-70v0,-40,20,-68,62,-68v43,0,63,27,63,68v0,39,-21,70,-63,70xm83,-134v35,0,48,-25,48,-57v0,-32,-13,-56,-48,-56v-34,0,-48,24,-48,56v0,32,13,57,48,57xm250,6v-42,0,-62,-29,-62,-70v0,-40,20,-68,62,-68v43,0,63,27,63,68v0,39,-21,70,-63,70xm250,-6v35,0,48,-26,48,-58v0,-32,-13,-56,-48,-56v-34,0,-48,24,-48,56v0,32,13,58,48,58xm61,8r191,-269r14,0r-190,269r-15,0","w":333},"&":{"d":"124,-144r89,86v9,-12,15,-33,15,-47r16,0v0,20,-9,43,-20,57r50,48r-23,0r-36,-35v-29,30,-58,41,-100,41v-64,0,-93,-39,-93,-77v0,-46,46,-64,76,-76v-23,-25,-36,-38,-36,-62v0,-19,14,-50,60,-50v33,0,60,17,60,50v0,37,-37,55,-58,65xm78,-210v0,25,31,51,36,56v20,-9,52,-23,52,-54v0,-28,-27,-37,-44,-37v-30,0,-44,18,-44,35xm204,-46r-95,-91v-40,16,-70,32,-70,66v0,41,35,62,78,62v53,0,81,-29,87,-37","w":266},"(":{"d":"98,68r-15,0v-76,-95,-77,-230,0,-325r15,0v-72,98,-73,228,0,325","w":106},")":{"d":"9,-257r14,0v76,95,77,230,0,325r-14,0v72,-98,71,-227,0,-325","w":106},"*":{"d":"30,-153r34,-40r-50,-18r5,-12r48,17r0,-51r13,0r0,51r48,-17r5,12r-50,18r34,40r-10,8r-34,-39r-33,39","w":146},"+":{"d":"17,-84r0,-14r84,0r0,-84r14,0r0,84r84,0r0,14r-84,0r0,84r-14,0r0,-84r-84,0","w":216},",":{"d":"31,0r0,-36r18,0v0,37,5,72,-25,83r0,-12v12,-6,13,-21,13,-35r-6,0","w":79},"-":{"d":"27,-89r0,-16r93,0r0,16r-93,0","w":146},".":{"d":"31,0r0,-36r18,0r0,36r-18,0","w":79},"\/":{"d":"150,-263r-137,269r-17,0r138,-269r16,0","w":146},"0":{"d":"223,-127v0,71,-26,133,-106,133v-79,0,-107,-63,-107,-133v0,-70,28,-132,107,-132v80,0,106,61,106,132xm206,-127v0,-62,-19,-118,-89,-118v-69,0,-90,58,-90,118v0,60,21,118,90,118v71,0,89,-56,89,-118"},"1":{"d":"105,-253r0,253r-16,0r0,-225v-22,21,-53,30,-80,33r0,-15v27,-1,70,-19,82,-46r14,0","w":153},"2":{"d":"212,-14r0,14r-191,0v5,-47,26,-62,86,-96v58,-33,83,-48,83,-88v0,-39,-26,-61,-74,-61v-53,0,-74,29,-74,76r-17,0v1,-63,33,-90,93,-90v60,0,89,30,89,74v0,47,-24,62,-94,102v-24,14,-73,42,-73,69r172,0"},"3":{"d":"104,-128r0,-15v39,0,88,1,88,-47v0,-42,-34,-55,-71,-55v-48,0,-80,21,-80,71r-16,0v2,-60,39,-85,96,-85v54,0,88,24,88,66v0,38,-25,51,-56,57v25,1,62,15,62,69v0,42,-32,73,-97,73v-62,0,-99,-28,-100,-90r17,0v0,53,31,75,85,75v35,0,79,-11,79,-62v0,-58,-60,-57,-95,-57"},"4":{"d":"15,-81r138,-172r17,0r0,174r49,0r0,15r-49,0r0,64r-16,0r0,-64r-139,0r0,-17xm154,-233r-123,154r123,0r0,-154"},"5":{"d":"26,-121r28,-132r147,0r0,14r-134,0r-21,98v53,-54,169,-25,169,57v0,59,-42,90,-100,90v-53,0,-94,-30,-96,-83r16,0v4,48,36,68,82,68v50,0,81,-25,81,-74v0,-34,-22,-72,-81,-72v-37,0,-63,18,-74,34r-17,0"},"6":{"d":"210,-193r-16,0v-4,-38,-38,-52,-72,-52v-77,-1,-89,71,-86,129v8,-24,35,-53,85,-53v53,0,94,31,94,86v0,50,-37,89,-97,89v-77,0,-100,-55,-100,-123v0,-77,17,-142,107,-142v50,0,82,26,85,66xm122,-155v-53,0,-83,30,-83,72v0,26,14,74,82,74v45,0,77,-29,77,-74v0,-41,-26,-72,-76,-72"},"7":{"d":"14,-239r0,-14r186,0r0,16v-72,74,-106,134,-121,237r-19,0v13,-94,55,-173,123,-239r-169,0","w":213},"8":{"d":"32,-69v0,35,26,60,85,60v37,0,85,-10,85,-60v0,-39,-27,-62,-85,-62v-58,0,-85,23,-85,62xm15,-69v-1,-50,40,-62,65,-70v-41,-9,-53,-30,-53,-58v0,-50,49,-62,90,-62v41,0,89,12,89,62v0,29,-15,48,-53,59v27,5,65,20,65,69v0,47,-34,75,-101,75v-67,0,-102,-28,-102,-75xm44,-194v0,40,40,49,73,49v34,0,72,-8,72,-49v0,-40,-39,-51,-72,-51v-35,0,-73,9,-73,51"},"9":{"d":"23,-60r17,0v4,38,37,51,71,51v78,0,87,-67,87,-128v-8,24,-35,53,-85,53v-53,0,-95,-32,-95,-87v0,-50,37,-88,97,-88v77,0,100,55,100,123v0,77,-17,142,-107,142v-50,0,-82,-26,-85,-66xm112,-99v53,0,82,-30,82,-72v0,-26,-14,-74,-82,-74v-45,0,-77,29,-77,74v0,41,27,72,77,72"},":":{"d":"31,-142r0,-36r18,0r0,36r-18,0xm31,0r0,-36r18,0r0,36r-18,0","w":79},";":{"d":"31,0r0,-36r18,0v0,37,5,72,-25,83r0,-12v12,-6,13,-21,13,-35r-6,0xm31,-142r0,-36r18,0r0,36r-18,0","w":79},"<":{"d":"17,-82r0,-19r182,-85r0,15r-170,80r170,80r0,15","w":216},"=":{"d":"199,-133r0,14r-182,0r0,-14r182,0xm199,-63r0,14r-182,0r0,-14r182,0","w":216},">":{"d":"17,4r0,-15r170,-80r-170,-80r0,-15r182,86r0,19","w":216},"?":{"d":"101,-66v-18,-67,84,-76,84,-127v0,-39,-36,-55,-72,-55v-49,0,-78,21,-78,70r-17,0v0,-59,38,-85,93,-85v53,0,91,22,91,69v0,30,-14,45,-47,67v-34,22,-39,25,-38,61r-16,0xm100,0r0,-36r18,0r0,36r-18,0","w":226},"@":{"d":"121,-60v34,0,64,-60,64,-94v0,-32,-15,-43,-32,-43v-41,0,-69,57,-69,94v0,26,16,43,37,43xm204,-202r16,0r-40,129v0,7,5,11,14,11v30,0,70,-35,70,-88v0,-57,-47,-98,-112,-98v-78,0,-128,53,-128,119v0,104,134,158,211,90r17,0v-76,94,-242,33,-242,-90v0,-74,56,-134,140,-134v77,0,128,49,128,109v0,66,-51,106,-86,106v-15,0,-26,-8,-27,-25v-29,41,-97,31,-96,-29v0,-51,35,-107,85,-107v19,0,38,13,41,32","w":288},"A":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0","w":246},"B":{"d":"38,-243r0,103r115,0v13,0,66,-1,66,-53v0,-50,-42,-50,-69,-50r-112,0xm38,-126r0,112r116,0v13,0,73,0,73,-58v0,-54,-49,-54,-77,-54r-112,0xm22,0r0,-257v84,5,213,-25,213,63v0,26,-14,50,-50,60v50,5,59,41,59,63v0,28,-15,71,-86,71r-136,0","w":259},"C":{"d":"257,-98r17,0v-6,49,-50,104,-127,104v-78,0,-137,-50,-137,-135v0,-62,43,-134,137,-134v62,0,109,30,122,87r-16,0v-12,-49,-58,-72,-106,-72v-73,0,-120,54,-120,119v0,64,41,120,120,120v57,0,100,-33,110,-89","w":286},"D":{"d":"22,0r0,-257v128,1,235,-24,235,128v0,75,-38,129,-118,129r-117,0xm38,-243r0,229r104,0v57,0,98,-36,98,-115v0,-124,-90,-117,-202,-114","w":273},"E":{"d":"22,0r0,-257r203,0r0,14r-187,0r0,103r179,0r0,14r-179,0r0,112r189,0r0,14r-205,0"},"F":{"d":"22,0r0,-257r186,0r0,14r-170,0r0,103r161,0r0,14r-161,0r0,126r-16,0","w":213,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40}},"G":{"d":"158,-114r0,-14r120,0r0,128r-14,0v-1,-20,2,-45,-1,-63v-19,46,-63,69,-112,69v-78,0,-137,-50,-137,-135v0,-62,43,-134,137,-134v63,0,109,32,122,87r-17,0v-11,-48,-54,-72,-105,-72v-73,0,-120,54,-120,119v0,64,41,120,120,120v65,0,107,-40,111,-105r-104,0","w":299},"H":{"d":"22,0r0,-257r16,0r0,114r197,0r0,-114r17,0r0,257r-17,0r0,-128r-197,0r0,128r-16,0","w":273},"I":{"d":"22,0r0,-257r16,0r0,257r-16,0","w":59},"J":{"d":"9,-76v-2,-10,10,-5,16,-6v0,31,2,73,66,73v44,0,64,-23,64,-67r0,-181r17,0r0,180v0,56,-31,83,-81,83v-42,0,-82,-18,-82,-82","w":193},"K":{"d":"22,0r0,-257r16,0r0,148r185,-148r26,0r-133,106r143,151r-23,0r-133,-140r-65,51r0,89r-16,0","w":253},"L":{"d":"22,0r0,-257r16,0r0,243r169,0r0,14r-185,0","w":206,"k":{"T":40,"V":33,"W":27,"y":13,"\u00fd":13,"\u00ff":13,"Y":46,"\u00dd":46,"\u0178":46}},"M":{"d":"23,0r0,-257r25,0r125,236r125,-236r25,0r0,257r-17,0r0,-234r-125,234r-16,0r-125,-234r0,234r-17,0","w":346},"N":{"d":"22,0r0,-257r20,0r193,234r0,-234r17,0r0,257r-21,0r-193,-234r0,234r-16,0","w":273},"O":{"d":"27,-129v0,62,43,120,120,120v77,0,120,-58,120,-120v0,-62,-43,-119,-120,-119v-77,0,-120,57,-120,119xm10,-129v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,50,-32,135,-136,135v-104,0,-137,-85,-137,-135","w":293},"P":{"d":"22,0r0,-257v92,10,212,-37,212,71v0,43,-25,73,-81,73r-115,0r0,113r-16,0xm38,-243r0,116v76,-7,179,29,179,-58v0,-58,-46,-58,-68,-58r-111,0","w":240,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":46,".":46}},"Q":{"d":"169,-54r8,-12r46,33v80,-66,47,-215,-76,-215v-77,0,-120,57,-120,119v0,62,43,120,120,120v25,0,46,-6,63,-16xm271,18r-47,-33v-19,13,-45,21,-77,21v-104,0,-137,-85,-137,-135v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,31,-12,77,-46,105r42,30","w":293},"R":{"d":"22,0r0,-257v90,7,217,-31,218,68v0,27,-17,56,-53,64v31,4,48,26,48,54v1,47,3,62,8,71v-33,3,-19,-11,-24,-60v9,-86,-109,-49,-181,-57r0,117r-16,0xm38,-243r0,112r112,0v16,0,73,0,73,-59v0,-81,-111,-45,-185,-53","w":253,"k":{"V":-4,"W":-4}},"S":{"d":"10,-85r17,0v0,48,29,76,98,76v63,0,86,-27,86,-57v0,-79,-193,-37,-193,-130v0,-39,33,-67,97,-67v65,0,106,24,108,79r-17,0v-2,-30,-18,-64,-86,-64v-63,0,-83,22,-83,52v0,80,193,33,193,129v0,35,-23,73,-103,73v-84,0,-117,-37,-117,-91","w":240},"T":{"d":"-5,-243r0,-14r224,0r0,14r-104,0r0,243r-17,0r0,-243r-103,0","w":213,"k":{"\u00fc":33,"\u0161":33,"\u00f2":33,"\u00f6":33,"\u00ec":35,"\u00ee":35,"\u00ed":35,"\u00e8":33,"\u00eb":33,"\u00ea":33,"\u00e3":33,"\u00e5":33,"\u00e0":33,"\u00e4":33,"\u00e2":33,"w":40,"y":33,"\u00fd":33,"\u00ff":33,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":33,".":33,"-":33,"a":33,"\u00e6":33,"\u00e1":33,"c":33,"\u00e7":33,"e":33,"\u00e9":33,"i":35,"\u00ef":35,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f5":33,"r":33,"s":33,"u":33,"\u00fa":33,"\u00fb":33,"\u00f9":33,":":33,";":33}},"U":{"d":"19,-95r0,-162r17,0v8,113,-40,248,97,248v137,0,88,-135,97,-248r17,0r0,162v0,66,-38,101,-114,101v-76,0,-114,-35,-114,-101","w":266},"V":{"d":"111,0r-114,-257r18,0r105,236r105,-236r19,0r-114,257r-19,0","w":240,"k":{"\u00f6":13,"\u00f4":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"y":6,"\u00fd":6,"\u00ff":6,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,",":40,".":40,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":13,";":13}},"W":{"d":"79,0r-84,-257r18,0r77,234r83,-234r21,0r83,234r76,-234r19,0r-85,257r-21,0r-83,-234r-83,234r-21,0","w":366,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":20,".":20,"-":13,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,":":6,";":6}},"X":{"d":"-3,0r109,-131r-105,-126r22,0r94,113r95,-113r21,0r-105,126r109,131r-22,0r-98,-118r-99,118r-21,0"},"Y":{"d":"112,-108r-119,-149r23,0r104,134r107,-134r21,0r-119,149r0,108r-17,0r0,-108","w":240,"k":{"\u00fc":18,"\u00f6":25,"v":6,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":46,".":46,"-":33,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":25,"\u00f8":25,"\u0153":25,"\u00f3":25,"\u00f4":25,"\u00f2":25,"\u00f5":25,"u":18,"\u00fa":18,"\u00fb":18,"\u00f9":18,":":20,";":20,"p":13,"q":18}},"Z":{"d":"-2,0r0,-18r202,-225r-190,0r0,-14r209,0r0,17r-202,226r205,0r0,14r-224,0","w":219},"[":{"d":"35,68r0,-325r59,0r0,14r-43,0r0,297r43,0r0,14r-59,0","w":106},"\\":{"d":"134,6r-138,-269r17,0r137,269r-16,0","w":146},"]":{"d":"55,54r0,-297r-43,0r0,-14r60,0r0,325r-60,0r0,-14r43,0","w":106},"^":{"d":"14,-90r85,-163r19,0r84,163r-14,0r-80,-151r-80,151r-14,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49","w":213},"b":{"d":"20,0r0,-257r17,0r0,112v11,-20,37,-45,82,-45v56,0,98,38,98,97v0,52,-33,99,-98,99v-48,0,-73,-24,-82,-46r0,40r-17,0xm121,-9v46,0,80,-31,80,-84v0,-56,-40,-83,-82,-83v-37,0,-84,21,-84,86v0,33,17,81,86,81","w":226},"c":{"d":"208,-126r-16,0v-2,-23,-35,-50,-79,-50v-58,0,-87,42,-87,86v0,30,20,81,87,81v37,0,73,-17,81,-55r17,0v-10,48,-52,70,-98,70v-60,0,-104,-39,-104,-96v0,-65,47,-100,104,-100v57,0,93,33,95,64","w":219},"d":{"d":"190,0v-1,-13,2,-29,-1,-40v-9,22,-33,46,-81,46v-65,0,-99,-47,-99,-99v0,-59,43,-97,99,-97v46,-1,69,26,82,45r0,-112r17,0r0,257r-17,0xm106,-9v69,0,86,-48,86,-81v-3,-120,-165,-112,-166,-3v0,53,34,84,80,84","w":226},"e":{"d":"214,-89r-188,0v1,46,33,80,88,80v57,0,72,-35,78,-52r17,0v-15,46,-48,67,-97,67v-63,0,-103,-39,-103,-100v0,-39,25,-96,103,-96v64,0,101,42,102,101xm26,-103r169,0v-7,-50,-42,-73,-84,-73v-48,0,-78,29,-85,73","w":219},"f":{"d":"40,0r0,-170r-44,0r0,-14r44,0v0,0,-5,-76,46,-75v8,0,19,1,29,2r0,14v-27,-1,-52,-13,-59,26r0,33r53,0r0,14r-53,0r0,170r-16,0","w":106},"g":{"d":"110,-176v-44,0,-84,25,-84,78v0,53,31,81,86,81v48,0,85,-25,85,-81v0,-49,-33,-78,-87,-78xm196,-147v3,-9,0,-26,1,-37r16,0r0,175v0,42,-15,88,-101,88v-57,0,-89,-17,-95,-62r16,0v4,29,25,48,79,48v89,0,88,-48,84,-111v-16,31,-48,44,-87,44v-72,0,-100,-46,-100,-95v0,-48,31,-93,101,-93v33,0,68,9,86,43"},"h":{"d":"20,0r0,-257r17,0r0,109v12,-22,36,-42,78,-42v85,0,85,54,85,76r0,114r-17,0v-8,-80,32,-178,-68,-176v-100,2,-75,89,-78,176r-17,0","w":219},"i":{"d":"22,0r0,-184r16,0r0,184r-16,0xm22,-219r0,-38r16,0r0,38r-16,0","w":59},"j":{"d":"38,-184r0,217v3,41,-33,51,-70,44r0,-14v5,1,15,2,23,2v31,0,31,-21,31,-46r0,-203r16,0xm22,-219r0,-38r16,0r0,38r-16,0","w":59},"k":{"d":"20,0r0,-257r17,0r0,171r131,-98r25,0r-94,69r102,115r-22,0r-93,-104r-49,36r0,68r-17,0","w":200},"l":{"d":"22,0r0,-257r16,0r0,257r-16,0","w":59},"m":{"d":"20,0r0,-184r17,0r0,31v14,-24,42,-37,71,-37v45,0,63,20,71,43v13,-28,38,-43,71,-43v106,0,72,102,77,190r-17,0v-7,-75,30,-174,-59,-176v-91,-2,-66,96,-69,176r-17,0v-7,-75,30,-176,-60,-176v-40,0,-68,24,-68,66r0,110r-17,0","w":347},"n":{"d":"20,0r0,-184r17,0r0,36v12,-22,36,-42,78,-42v85,0,85,54,85,76r0,114r-17,0v-8,-80,32,-178,-68,-176v-100,2,-75,89,-78,176r-17,0","w":219},"o":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm9,-92v0,-52,38,-98,104,-98v66,0,104,46,104,98v0,52,-38,98,-104,98v-66,0,-104,-46,-104,-98","w":226},"p":{"d":"20,73r0,-257r17,0r0,40v9,-22,34,-46,82,-46v65,0,98,46,98,98v0,59,-42,98,-98,98v-45,0,-71,-25,-82,-45r0,112r-17,0xm121,-176v-69,0,-86,49,-86,82v3,119,165,111,166,3v0,-53,-34,-85,-80,-85","w":226},"q":{"d":"190,73r-1,-112v-11,20,-36,45,-81,45v-56,0,-99,-39,-99,-98v0,-52,34,-98,99,-98v49,-1,71,26,82,46r0,-40r17,0r0,257r-17,0xm106,-176v-46,0,-80,32,-80,85v0,56,40,82,82,82v37,0,84,-20,84,-85v0,-33,-17,-82,-86,-82","w":226},"r":{"d":"20,0r0,-184r17,0r0,43v13,-35,48,-55,90,-47r0,17v-51,-14,-90,28,-90,71r0,100r-17,0","w":126,"k":{",":27,".":27,"-":20}},"s":{"d":"179,-130r-17,0v-3,-31,-22,-46,-70,-46v-73,0,-78,60,-23,68v49,7,117,5,117,59v0,50,-57,55,-88,55v-51,0,-87,-18,-90,-64r16,0v2,19,6,49,78,49v49,0,67,-14,67,-40v0,-71,-154,-4,-154,-89v0,-21,15,-52,78,-52v68,0,84,31,86,60","w":193},"t":{"d":"38,-184r0,-63r17,0r0,63r54,0r0,14r-54,0r0,133v-2,32,31,27,56,24r0,14v-42,9,-73,1,-73,-47r0,-124r-42,0r0,-14r42,0","w":113},"u":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-85,0,-85,-55,-85,-77r0,-113r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0","w":219},"v":{"d":"92,0r-91,-184r18,0r81,167r81,-167r18,0r-91,184r-16,0","w":200,"k":{",":32,".":32}},"w":{"d":"83,-21r63,-163r21,0r65,163r65,-163r18,0r-75,184r-19,0r-64,-166r-65,166r-19,0r-75,-184r19,0","w":313,"k":{",":20,".":20}},"x":{"d":"-4,0r89,-96r-81,-88r23,0r70,76r70,-76r21,0r-81,87r90,97r-23,0r-78,-85r-79,85r-21,0","w":193},"y":{"d":"89,0r-94,-184r19,0r83,166r76,-166r19,0r-102,216v-9,27,-31,38,-71,34r0,-14v44,9,53,-20,70,-52","w":186,"k":{",":27,".":27}},"z":{"d":"4,0r0,-17r150,-153r-140,0r0,-14r163,0r0,12r-154,158r160,0r0,14r-179,0","w":186},"{":{"d":"19,-87r0,-15v62,-6,-24,-175,79,-155r0,14v-27,1,-38,-7,-36,35v2,42,-2,114,-26,114v24,0,28,71,26,113v-2,42,8,34,36,35r0,14v-34,1,-52,1,-53,-42v-1,-42,9,-109,-26,-113","w":106},"|":{"d":"33,6r0,-269r14,0r0,269r-14,0","w":79},"}":{"d":"9,54v53,14,36,-52,36,-89v0,-41,15,-54,26,-59v-24,0,-28,-72,-26,-114v2,-41,-9,-34,-36,-35r0,-14v34,-1,52,-1,53,42v1,41,-10,109,25,113r0,15v-61,6,25,175,-78,155r0,-14","w":106},"~":{"d":"146,-72v-23,0,-50,-24,-74,-24v-21,0,-31,15,-36,27r-10,-12v11,-18,22,-30,44,-30v27,-1,48,23,77,25v14,0,27,-15,33,-27r10,11v-10,14,-23,30,-44,30","w":216},"\u00a1":{"d":"37,73r3,-191r13,0r3,191r-19,0xm37,-148r0,-36r19,0r0,36r-19,0","w":92},"\u00a2":{"d":"112,-9r0,-166v-53,4,-79,44,-79,85v0,29,19,77,79,81xm112,45r0,-40v-56,-3,-96,-40,-96,-95v0,-62,43,-97,96,-100r0,-33r12,0r0,33v54,1,89,33,91,64r-17,0v-2,-23,-32,-49,-74,-50r0,167v38,0,69,-18,77,-55r16,0v-9,47,-48,70,-93,70r0,39r-12,0"},"\u00a3":{"d":"219,-24v-55,70,-128,-17,-195,30r-10,-14v37,-31,60,-64,38,-108r-32,0r0,-12r27,0v-14,-24,-21,-44,-21,-62v0,-18,9,-69,91,-69v78,0,96,42,96,87r-16,0v0,-56,-33,-73,-80,-73v-35,0,-75,14,-75,55v0,19,13,42,24,62r81,0r0,12r-76,0v18,44,-7,80,-36,104v49,-28,76,3,121,3v25,0,44,-16,55,-29"},"\u00a5":{"d":"108,0r0,-61r-76,0r0,-12r76,0v-1,-14,3,-33,-4,-41r-72,0r0,-12r63,0r-99,-127r23,0r96,127r3,0r98,-127r21,0r-98,127r62,0r0,12r-72,0v-7,8,-3,27,-4,41r76,0r0,12r-76,0r0,61r-17,0"},"\u0192":{"d":"53,-140r3,-13r50,0v12,-47,12,-113,73,-106v8,0,16,1,25,2r-3,14v-24,-6,-59,-2,-68,40r-11,50r51,0r-2,13r-51,0r-30,143v-4,47,-29,73,-90,64r2,-14v40,6,62,-9,67,-34r34,-159r-50,0"},"\u00a7":{"d":"191,-198r-17,0v0,-14,0,-50,-60,-50v-17,0,-58,0,-58,37v0,11,5,21,26,31r96,44v23,11,39,26,39,48v0,40,-37,50,-47,52v8,6,23,16,23,41v0,45,-42,53,-79,53v-31,0,-78,-7,-78,-67r17,0v0,37,21,53,62,53v12,0,61,0,61,-36v0,-49,-75,-55,-112,-76v-37,-21,-48,-34,-48,-55v0,-37,35,-48,47,-51v-48,-27,-17,-89,47,-89v50,0,81,16,81,65xm166,-123r-91,-43v-9,0,-43,13,-43,41v0,24,17,32,40,42r85,39v1,0,44,-5,44,-40v0,-24,-20,-32,-35,-39"},"\u00a4":{"d":"204,-50r-10,10r-19,-19v-34,30,-82,29,-116,0r-20,19r-10,-9r20,-20v-29,-33,-30,-83,0,-116r-20,-20r10,-9r20,20v34,-29,82,-30,116,0r19,-20r10,10r-20,19v30,33,29,83,0,116xm44,-127v0,40,33,73,73,73v40,0,72,-33,72,-73v0,-40,-32,-72,-72,-72v-40,0,-73,32,-73,72"},"'":{"d":"33,-174r0,-83r14,0r0,83r-14,0","w":79},"\u00ab":{"d":"92,-97r37,37r0,20r-49,-49r0,-16r49,-49r0,19xm39,-97r36,37r0,20r-49,-49r0,-16r49,-49r0,19","w":159},"\u00b7":{"d":"20,-115v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":79},"\u00b6":{"d":"93,53r0,-170v-42,0,-75,-31,-75,-69v0,-76,81,-74,159,-71r0,310r-15,0r0,-296r-55,0r0,296r-14,0","w":216},"\u00bb":{"d":"121,-97r-36,-38r0,-19r49,49r0,16r-49,49r0,-20xm68,-97r-37,-38r0,-19r49,49r0,16r-49,49r0,-20","w":159},"\u00bf":{"d":"126,-118v17,66,-85,76,-85,127v0,39,37,55,73,55v49,0,78,-21,78,-70r17,0v0,59,-38,84,-93,84v-53,0,-91,-21,-91,-68v0,-30,14,-45,47,-67v34,-22,38,-25,37,-61r17,0xm127,-184r0,36r-19,0r0,-36r19,0","w":226},"`":{"d":"37,-213r-56,-52r20,0r52,52r-16,0","w":59},"\u00b4":{"d":"58,-265r21,0r-56,52r-17,0","w":59},"\u00af":{"d":"-39,-230r0,-13r138,0r0,13r-138,0","w":59},"\u00a8":{"d":"-17,-215r0,-38r17,0r0,38r-17,0xm60,-215r0,-38r16,0r0,38r-16,0","w":59},"\u00b8":{"d":"6,27v12,-9,13,-29,35,-27v-6,7,-13,13,-18,21v21,-7,45,-1,47,20v-3,35,-52,28,-80,21r4,-10v21,5,51,16,61,-10v-1,-19,-33,-15,-43,-9","w":59},"\u00c6":{"d":"-12,0r167,-257r217,0r0,14r-170,0r0,103r162,0r0,14r-162,0r0,112r172,0r0,14r-189,0r0,-93r-117,0r-60,93r-20,0xm165,-243r-88,136r108,0r0,-136r-20,0","w":380},"\u00aa":{"d":"56,-150v29,0,62,-16,54,-57v-18,14,-92,-3,-92,32v0,12,7,25,38,25xm122,-228r0,59v-2,14,7,16,19,13r0,10v-13,4,-35,0,-32,-21v-21,46,-109,28,-103,-8v-3,-34,50,-34,85,-36v11,-1,19,-3,19,-13v0,-12,-3,-25,-41,-25v-27,0,-45,7,-45,28r-12,0v0,-28,25,-38,53,-38v29,0,57,4,57,31","w":138},"\u0141":{"d":"22,0r0,-85r-22,17v-4,-22,12,-25,22,-34r0,-155r16,0r0,142r93,-75r0,16r-93,75r0,85r169,0r0,14r-185,0","w":206,"k":{"T":40,"V":33,"W":27,"y":13,"\u00fd":13,"\u00ff":13,"Y":46,"\u00dd":46,"\u0178":46}},"\u00d8":{"d":"12,-2r33,-34v-26,-29,-35,-66,-35,-93v0,-50,33,-134,137,-134v42,0,72,14,93,34r34,-34r8,8r-34,34v26,28,35,65,35,92v0,50,-32,135,-136,135v-42,0,-73,-14,-94,-33r-33,33xm57,-47r172,-171v-20,-18,-47,-30,-82,-30v-113,-2,-153,128,-90,201xm237,-210r-172,171v20,19,48,30,82,30v112,2,154,-128,90,-201","w":293},"\u0152":{"d":"228,-50r0,-158v0,-15,-34,-40,-84,-40v-74,0,-115,51,-115,119v0,60,30,120,115,120v54,0,84,-29,84,-41xm244,-126r0,112r170,0r0,14r-186,0r0,-27v-79,74,-216,20,-216,-102v0,-120,133,-173,216,-104r0,-24r183,0r0,14r-167,0r0,103r160,0r0,14r-160,0","w":420},"\u00ba":{"d":"74,-249v-75,1,-74,98,0,99v73,-1,74,-98,0,-99xm6,-200v0,-39,31,-59,68,-59v37,0,67,20,67,59v0,39,-30,60,-67,60v-37,0,-68,-21,-68,-60","w":147},"\u00e6":{"d":"374,-89r-188,0v1,46,33,80,88,80v57,0,72,-35,78,-52r17,0v-22,84,-155,95,-189,10v-12,31,-42,58,-95,57v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49r-16,0v6,-46,29,-63,85,-63v42,0,78,8,83,49v12,-30,44,-49,86,-49v64,0,101,42,102,101xm186,-103r169,0v-7,-50,-43,-73,-85,-73v-48,0,-77,29,-84,73xm86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41","w":379},"\u0131":{"d":"22,0r0,-184r16,0r0,184r-16,0","w":59},"\u0142":{"d":"22,0r0,-118r-22,23v-3,-24,13,-28,22,-39r0,-123r16,0r0,105r22,-22v3,23,-14,27,-22,39r0,135r-16,0","w":59},"\u00f8":{"d":"47,-35r126,-121v-14,-12,-34,-20,-60,-20v-84,0,-110,89,-66,141xm180,-149r-126,120v15,13,34,20,59,20v84,1,111,-87,67,-140xm10,0r26,-24v-56,-60,-20,-169,77,-166v29,0,53,9,71,24r26,-25r6,7r-25,24v55,61,19,169,-78,166v-30,0,-53,-10,-70,-24r-26,25","w":226},"\u0153":{"d":"202,-103r159,0v-6,-47,-32,-73,-79,-73v-46,0,-80,36,-80,73xm359,-59r16,0v-12,80,-161,90,-181,8v-15,39,-46,57,-89,57v-59,0,-96,-39,-96,-98v0,-106,156,-134,186,-41v17,-40,51,-57,87,-57v63,0,93,41,95,101r-175,0v-11,90,138,109,157,30xm188,-92v0,-50,-29,-84,-81,-84v-50,0,-81,34,-81,84v0,50,30,83,81,83v50,0,81,-32,81,-83","w":386},"\u00df":{"d":"37,0r-17,0r0,-188v0,-53,33,-74,84,-74v49,0,87,16,87,63v0,22,-14,48,-51,56v43,3,64,30,64,69v0,51,-52,91,-114,74r0,-14v46,9,98,0,98,-63v0,-46,-40,-60,-94,-58r0,-14v46,2,82,-13,81,-50v0,-17,-10,-49,-70,-49v-51,0,-68,24,-68,60r0,188","w":213},"\u00ac":{"d":"185,-39r0,-80r-168,0r0,-14r182,0r0,94r-14,0","w":216},"\u00b5":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-42,0,-59,-16,-68,-29r0,96r-17,0r0,-257r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0","w":219},"\u00d0":{"d":"22,0r0,-126r-22,0r0,-14r22,0r0,-117v128,1,235,-24,235,128v0,75,-38,129,-118,129r-117,0xm38,-243r0,103r96,0r0,14r-96,0r0,112r104,0v57,0,98,-36,98,-115v0,-124,-90,-117,-202,-114","w":273},"\u00bd":{"d":"73,6r165,-265r14,0r-165,265r-14,0xm63,-103r0,-133v-15,12,-35,18,-52,20r0,-10v17,-1,45,-12,53,-29r12,0r0,152r-13,0xm323,-109v0,49,-99,60,-108,99r112,0r0,10r-124,0v-6,-55,108,-61,108,-109v0,-25,-23,-34,-44,-34v-35,0,-49,17,-49,43r-12,0v0,-37,20,-53,61,-53v28,0,56,12,56,44","w":349},"\u00b1":{"d":"17,-100r0,-14r84,0r0,-68r14,0r0,68r84,0r0,14r-84,0r0,68r-14,0r0,-68r-84,0xm17,0r0,-14r182,0r0,14r-182,0","w":216},"\u00de":{"d":"22,0r0,-257r16,0r0,54v88,8,196,-33,196,71v0,43,-25,73,-81,73r-115,0r0,59r-16,0xm38,-189r0,116v76,-7,179,29,179,-58v0,-58,-46,-58,-68,-58r-111,0","w":240},"\u00bc":{"d":"199,-51r89,-101r12,0r0,103r32,0r0,10r-32,0r0,39r-12,0r0,-39r-89,0r0,-12xm288,-49r0,-89r-76,89r76,0xm63,-103r0,-133v-15,12,-35,18,-52,20r0,-10v17,-1,45,-12,53,-29r12,0r0,152r-13,0xm73,6r165,-265r14,0r-165,265r-14,0","w":349},"\u00f7":{"d":"17,-84r0,-14r182,0r0,14r-182,0xm89,-163v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm89,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":216},"\u00a6":{"d":"33,6r0,-97r14,0r0,97r-14,0xm33,-166r0,-97r14,0r0,97r-14,0","w":79},"\u00b0":{"d":"20,-207v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52xm32,-207v0,22,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-40,-40,-40v-22,0,-40,18,-40,40","w":144},"\u00fe":{"d":"20,73r0,-330r17,0r0,113v9,-22,34,-46,82,-46v65,0,98,46,98,98v0,59,-42,98,-98,98v-45,0,-71,-25,-82,-45r0,112r-17,0xm121,-176v-69,0,-86,49,-86,82v3,119,165,111,166,3v0,-53,-34,-85,-80,-85","w":226},"\u00be":{"d":"199,-51r89,-102r12,0r0,104r32,0r0,10r-32,0r0,39r-12,0r0,-39r-89,0r0,-12xm288,-49r0,-89r-76,89r76,0xm98,6r165,-265r14,0r-164,265r-15,0xm75,-180r0,-10v19,0,55,0,55,-29v0,-48,-98,-39,-94,11r-12,0v1,-38,26,-51,64,-51v23,0,54,9,54,40v1,23,-18,29,-36,34v23,0,41,14,41,40v0,37,-35,46,-65,46v-35,0,-63,-14,-63,-55r13,0v0,35,25,45,53,45v22,0,49,-8,49,-36v0,-33,-36,-35,-59,-35","w":349},"\u00ae":{"d":"92,-49r0,-159v51,2,115,-14,113,44v0,28,-15,38,-40,42r47,73r-16,0r-48,-73r-41,0r0,73r-15,0xm107,-196r0,62v37,-2,84,9,84,-30v0,-41,-46,-31,-84,-32xm24,-129v0,66,54,120,120,120v66,0,120,-54,120,-120v0,-66,-54,-119,-120,-119v-66,0,-120,53,-120,119xm10,-129v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,135,-134,135v-74,0,-134,-61,-134,-135","w":288},"\u00f0":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm167,-271r8,8r-39,20v50,32,81,83,81,147v0,60,-38,102,-104,102v-66,0,-104,-46,-104,-98v0,-52,38,-98,100,-98v34,0,65,10,87,43v-13,-40,-44,-70,-75,-89r-43,21r-9,-7r40,-20v-14,-7,-31,-13,-49,-18r10,-11v19,5,37,12,54,21","w":226},"\u00d7":{"d":"28,-21r71,-70r-71,-70r10,-10r70,71r70,-71r10,10r-71,70r71,70r-10,9r-70,-70r-70,70","w":216},"\u00a9":{"d":"24,-129v0,66,54,120,120,120v66,0,120,-54,120,-120v0,-66,-54,-119,-120,-119v-66,0,-120,53,-120,119xm217,-158r-15,0v-20,-74,-121,-44,-121,29v0,40,26,74,67,74v29,0,49,-17,54,-46r15,0v-5,35,-34,58,-69,58v-49,0,-81,-37,-81,-86v0,-49,30,-84,81,-84v35,0,64,20,69,55xm10,-129v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,135,-134,135v-74,0,-134,-61,-134,-135","w":288},"\u00c1":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0xm152,-323r21,0r-57,51r-16,0","w":246},"\u00c2":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0xm189,-272r-19,0r-47,-41r-46,41r-19,0r55,-51r21,0","w":246},"\u00c4":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0xm77,-274r0,-38r17,0r0,38r-17,0xm153,-274r0,-38r17,0r0,38r-17,0","w":246},"\u00c0":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0xm131,-272r-57,-51r21,0r52,51r-16,0","w":246},"\u00c5":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0xm84,-302v0,-22,17,-40,39,-40v22,0,40,18,40,40v0,22,-18,39,-40,39v-22,0,-39,-17,-39,-39xm96,-302v0,15,12,27,27,27v15,0,28,-12,28,-27v0,-15,-13,-28,-28,-28v-15,0,-27,13,-27,28","w":246},"\u00c3":{"d":"-4,0r118,-257r19,0r118,257r-19,0r-38,-83r-141,0r-38,83r-19,0xm123,-238r-64,141r129,0xm155,-280v-30,-1,-71,-42,-82,0r-12,0v2,-17,15,-33,34,-32v26,1,72,40,79,0r12,0v-3,16,-13,32,-31,32","w":246},"\u00c7":{"d":"257,-98r17,0v-6,49,-49,103,-125,104v-3,5,-12,10,-12,15v21,-7,46,-1,46,20v0,35,-52,28,-80,21r4,-10v21,5,52,16,62,-10v-1,-19,-33,-15,-43,-9v-13,-8,7,-19,12,-28v-73,-4,-128,-53,-128,-134v0,-62,43,-134,137,-134v62,0,109,30,122,87r-16,0v-12,-49,-58,-72,-106,-72v-73,0,-120,54,-120,119v0,64,41,120,120,120v57,0,100,-33,110,-89","w":286},"\u00c9":{"d":"22,0r0,-257r203,0r0,14r-187,0r0,103r179,0r0,14r-179,0r0,112r189,0r0,14r-205,0xm145,-323r21,0r-57,51r-16,0"},"\u00ca":{"d":"22,0r0,-257r203,0r0,14r-187,0r0,103r179,0r0,14r-179,0r0,112r189,0r0,14r-205,0xm183,-272r-20,0r-46,-41r-47,41r-19,0r56,-51r20,0"},"\u00cb":{"d":"22,0r0,-257r203,0r0,14r-187,0r0,103r179,0r0,14r-179,0r0,112r189,0r0,14r-205,0xm70,-274r0,-38r17,0r0,38r-17,0xm147,-274r0,-38r16,0r0,38r-16,0"},"\u00c8":{"d":"22,0r0,-257r203,0r0,14r-187,0r0,103r179,0r0,14r-179,0r0,112r189,0r0,14r-205,0xm124,-272r-57,-51r21,0r52,51r-16,0"},"\u00cd":{"d":"22,0r0,-257r16,0r0,257r-16,0xm58,-323r21,0r-56,51r-17,0","w":59},"\u00ce":{"d":"22,0r0,-257r16,0r0,257r-16,0xm96,-272r-19,0r-47,-41r-47,41r-19,0r56,-51r20,0","w":59},"\u00cf":{"d":"22,0r0,-257r16,0r0,257r-16,0xm-17,-274r0,-38r17,0r0,38r-17,0xm60,-274r0,-38r16,0r0,38r-16,0","w":59},"\u00cc":{"d":"22,0r0,-257r16,0r0,257r-16,0xm37,-272r-56,-51r20,0r52,51r-16,0","w":59},"\u00d1":{"d":"22,0r0,-257r20,0r193,234r0,-234r17,0r0,257r-21,0r-193,-234r0,234r-16,0xm168,-280v-29,-1,-71,-42,-82,0r-12,0v2,-16,15,-33,34,-32v26,1,72,40,79,0r12,0v-2,16,-13,32,-31,32","w":273},"\u00d3":{"d":"27,-129v0,62,43,120,120,120v77,0,120,-58,120,-120v0,-62,-43,-119,-120,-119v-77,0,-120,57,-120,119xm10,-129v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,50,-32,135,-136,135v-104,0,-137,-85,-137,-135xm175,-323r21,0r-56,51r-17,0","w":293},"\u00d4":{"d":"27,-129v0,62,43,120,120,120v77,0,120,-58,120,-120v0,-62,-43,-119,-120,-119v-77,0,-120,57,-120,119xm10,-129v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,50,-32,135,-136,135v-104,0,-137,-85,-137,-135xm213,-272r-19,0r-47,-41r-47,41r-19,0r56,-51r20,0","w":293},"\u00d6":{"d":"27,-129v0,62,43,120,120,120v77,0,120,-58,120,-120v0,-62,-43,-119,-120,-119v-77,0,-120,57,-120,119xm10,-129v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,50,-32,135,-136,135v-104,0,-137,-85,-137,-135xm100,-274r0,-38r17,0r0,38r-17,0xm177,-274r0,-38r16,0r0,38r-16,0","w":293},"\u00d2":{"d":"27,-129v0,62,43,120,120,120v77,0,120,-58,120,-120v0,-62,-43,-119,-120,-119v-77,0,-120,57,-120,119xm10,-129v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,50,-32,135,-136,135v-104,0,-137,-85,-137,-135xm154,-272r-56,-51r20,0r52,51r-16,0","w":293},"\u00d5":{"d":"27,-129v0,62,43,120,120,120v77,0,120,-58,120,-120v0,-62,-43,-119,-120,-119v-77,0,-120,57,-120,119xm10,-129v0,-50,33,-134,137,-134v104,0,136,84,136,134v0,50,-32,135,-136,135v-104,0,-137,-85,-137,-135xm179,-280v-30,-1,-72,-42,-83,0r-12,0v2,-16,15,-33,34,-32v26,1,72,40,79,0r13,0v-3,16,-13,32,-31,32","w":293},"\u0160":{"d":"10,-85r17,0v0,48,29,76,98,76v63,0,86,-27,86,-57v0,-79,-193,-37,-193,-130v0,-39,33,-67,97,-67v65,0,106,24,108,79r-17,0v-2,-30,-18,-64,-86,-64v-63,0,-83,22,-83,52v0,80,193,33,193,129v0,35,-23,73,-103,73v-84,0,-117,-37,-117,-91xm167,-323r19,0r-56,51r-20,0r-56,-51r19,0r47,41","w":240},"\u00da":{"d":"19,-95r0,-162r17,0v8,113,-40,248,97,248v137,0,88,-135,97,-248r17,0r0,162v0,66,-38,101,-114,101v-76,0,-114,-35,-114,-101xm162,-323r21,0r-57,51r-16,0","w":266},"\u00db":{"d":"19,-95r0,-162r17,0v8,113,-40,248,97,248v137,0,88,-135,97,-248r17,0r0,162v0,66,-38,101,-114,101v-76,0,-114,-35,-114,-101xm199,-272r-19,0r-47,-41r-47,41r-19,0r56,-51r20,0","w":266},"\u00dc":{"d":"19,-95r0,-162r17,0v8,113,-40,248,97,248v137,0,88,-135,97,-248r17,0r0,162v0,66,-38,101,-114,101v-76,0,-114,-35,-114,-101xm87,-274r0,-38r16,0r0,38r-16,0xm163,-274r0,-38r17,0r0,38r-17,0","w":266},"\u00d9":{"d":"19,-95r0,-162r17,0v8,113,-40,248,97,248v137,0,88,-135,97,-248r17,0r0,162v0,66,-38,101,-114,101v-76,0,-114,-35,-114,-101xm140,-272r-56,-51r21,0r52,51r-17,0","w":266},"\u00dd":{"d":"112,-108r-119,-149r23,0r104,134r107,-134r21,0r-119,149r0,108r-17,0r0,-108xm149,-323r21,0r-57,51r-16,0","w":240,"k":{"v":6,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":46,".":46,"-":33,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":25,"\u00f8":25,"\u0153":25,"\u00f3":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u00f5":25,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":20,";":20,"p":13,"q":18}},"\u0178":{"d":"112,-108r-119,-149r23,0r104,134r107,-134r21,0r-119,149r0,108r-17,0r0,-108xm74,-274r0,-38r16,0r0,38r-16,0xm150,-274r0,-38r17,0r0,38r-17,0","w":240,"k":{"v":6,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":46,".":46,"-":33,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":25,"\u00f8":25,"\u0153":25,"\u00f3":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u00f5":25,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":20,";":20,"p":13,"q":18}},"\u017d":{"d":"-2,0r0,-18r202,-225r-190,0r0,-14r209,0r0,17r-202,226r205,0r0,14r-224,0xm157,-323r19,0r-56,51r-20,0r-56,-51r19,0r47,41","w":219},"\u00e1":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49xm135,-265r21,0r-56,52r-16,0","w":213},"\u00e2":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49xm173,-213r-19,0r-47,-42r-47,42r-19,0r56,-52r20,0","w":213},"\u00e4":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49xm60,-215r0,-38r17,0r0,38r-17,0xm137,-215r0,-38r16,0r0,38r-16,0","w":213},"\u00e0":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49xm114,-213r-56,-52r20,0r52,52r-16,0","w":213},"\u00e5":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49xm67,-244v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm80,-244v0,15,12,27,27,27v15,0,27,-12,27,-27v0,-15,-12,-27,-27,-27v-15,0,-27,12,-27,27","w":213},"\u00e3":{"d":"86,-9v50,1,97,-27,85,-94v-32,26,-146,-9,-145,53v0,37,38,41,60,41xm34,-127r-16,0v6,-46,29,-63,85,-63v54,0,85,13,85,54r0,103v-4,23,12,25,28,19r0,15v-5,2,-12,3,-20,3v-24,1,-20,-20,-23,-41v-21,38,-64,43,-88,43v-16,0,-76,0,-76,-56v1,-61,78,-53,134,-58v19,-2,28,-3,28,-26v0,-25,-14,-42,-68,-42v-49,0,-64,16,-69,49xm139,-222v-30,0,-70,-41,-82,0r-13,0v3,-16,15,-31,34,-31v27,0,71,40,79,0r13,0v-3,15,-12,31,-31,31","w":213},"\u00e7":{"d":"194,-64r17,0v-9,47,-49,68,-95,69v-3,5,-12,11,-12,16v21,-7,46,-1,46,20v0,35,-52,28,-80,21r4,-10v21,5,52,16,62,-10v-1,-19,-33,-15,-43,-9v-15,-8,7,-19,12,-28v-56,-3,-96,-41,-96,-95v0,-65,47,-100,104,-100v57,0,93,33,95,64r-16,0v-2,-23,-35,-50,-79,-50v-58,0,-87,42,-87,86v0,30,20,81,87,81v37,0,73,-17,81,-55","w":219},"\u00e9":{"d":"214,-89r-188,0v1,46,33,80,88,80v57,0,72,-35,78,-52r17,0v-15,46,-48,67,-97,67v-63,0,-103,-39,-103,-100v0,-39,25,-96,103,-96v64,0,101,42,102,101xm26,-103r169,0v-7,-50,-42,-73,-84,-73v-48,0,-78,29,-85,73xm139,-265r20,0r-56,52r-16,0","w":219},"\u00ea":{"d":"214,-89r-188,0v1,46,33,80,88,80v57,0,72,-35,78,-52r17,0v-15,46,-48,67,-97,67v-63,0,-103,-39,-103,-100v0,-39,25,-96,103,-96v64,0,101,42,102,101xm26,-103r169,0v-7,-50,-42,-73,-84,-73v-48,0,-78,29,-85,73xm176,-213r-19,0r-47,-42r-47,42r-19,0r56,-52r20,0","w":219},"\u00eb":{"d":"214,-89r-188,0v1,46,33,80,88,80v57,0,72,-35,78,-52r17,0v-15,46,-48,67,-97,67v-63,0,-103,-39,-103,-100v0,-39,25,-96,103,-96v64,0,101,42,102,101xm26,-103r169,0v-7,-50,-42,-73,-84,-73v-48,0,-78,29,-85,73xm64,-215r0,-38r16,0r0,38r-16,0xm140,-215r0,-38r17,0r0,38r-17,0","w":219},"\u00e8":{"d":"214,-89r-188,0v1,46,33,80,88,80v57,0,72,-35,78,-52r17,0v-15,46,-48,67,-97,67v-63,0,-103,-39,-103,-100v0,-39,25,-96,103,-96v64,0,101,42,102,101xm26,-103r169,0v-7,-50,-42,-73,-84,-73v-48,0,-78,29,-85,73xm117,-213r-56,-52r21,0r52,52r-17,0","w":219},"\u00ed":{"d":"22,0r0,-184r16,0r0,184r-16,0xm58,-265r21,0r-56,52r-17,0","w":59},"\u00ee":{"d":"22,0r0,-184r16,0r0,184r-16,0xm96,-213r-19,0r-47,-42r-47,42r-19,0r56,-52r20,0","w":59},"\u00ef":{"d":"22,0r0,-184r16,0r0,184r-16,0xm-17,-215r0,-38r17,0r0,38r-17,0xm60,-215r0,-38r16,0r0,38r-16,0","w":59},"\u00ec":{"d":"22,0r0,-184r16,0r0,184r-16,0xm37,-213r-56,-52r20,0r52,52r-16,0","w":59},"\u00f1":{"d":"20,0r0,-184r17,0r0,36v12,-22,36,-42,78,-42v85,0,85,54,85,76r0,114r-17,0v-8,-80,32,-178,-68,-176v-100,2,-75,89,-78,176r-17,0xm142,-222v-30,0,-70,-41,-82,0r-12,0v2,-16,15,-31,33,-31v27,0,72,39,80,0r12,0v-3,15,-12,31,-31,31","w":219},"\u00f3":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm9,-92v0,-52,38,-98,104,-98v66,0,104,46,104,98v0,52,-38,98,-104,98v-66,0,-104,-46,-104,-98xm142,-265r21,0r-57,52r-16,0","w":226},"\u00f4":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm9,-92v0,-52,38,-98,104,-98v66,0,104,46,104,98v0,52,-38,98,-104,98v-66,0,-104,-46,-104,-98xm179,-213r-19,0r-47,-42r-46,42r-19,0r55,-52r20,0","w":226},"\u00f6":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm9,-92v0,-52,38,-98,104,-98v66,0,104,46,104,98v0,52,-38,98,-104,98v-66,0,-104,-46,-104,-98xm67,-215r0,-38r17,0r0,38r-17,0xm143,-215r0,-38r17,0r0,38r-17,0","w":226},"\u00f2":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm9,-92v0,-52,38,-98,104,-98v66,0,104,46,104,98v0,52,-38,98,-104,98v-66,0,-104,-46,-104,-98xm121,-213r-57,-52r21,0r52,52r-16,0","w":226},"\u00f5":{"d":"113,-176v-116,0,-116,167,0,167v58,0,88,-41,88,-83v0,-42,-30,-84,-88,-84xm9,-92v0,-52,38,-98,104,-98v66,0,104,46,104,98v0,52,-38,98,-104,98v-66,0,-104,-46,-104,-98xm145,-222v-30,0,-70,-41,-82,0r-12,0v2,-16,15,-31,34,-31v27,1,71,39,79,0r12,0v-3,15,-12,31,-31,31","w":226},"\u0161":{"d":"179,-130r-17,0v-3,-31,-22,-46,-70,-46v-73,0,-78,60,-23,68v49,7,117,5,117,59v0,50,-57,55,-88,55v-51,0,-87,-18,-90,-64r16,0v2,19,6,49,78,49v49,0,67,-14,67,-40v0,-71,-154,-4,-154,-89v0,-21,15,-52,78,-52v68,0,84,31,86,60xm144,-265r19,0r-56,52r-20,0r-56,-52r19,0r47,41","w":193},"\u00fa":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-85,0,-85,-55,-85,-77r0,-113r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0xm139,-265r20,0r-56,52r-16,0","w":219},"\u00fb":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-85,0,-85,-55,-85,-77r0,-113r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0xm176,-213r-19,0r-47,-42r-47,42r-19,0r56,-52r20,0","w":219},"\u00fc":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-85,0,-85,-55,-85,-77r0,-113r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0xm64,-215r0,-38r16,0r0,38r-16,0xm140,-215r0,-38r17,0r0,38r-17,0","w":219},"\u00f9":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-85,0,-85,-55,-85,-77r0,-113r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0xm117,-213r-56,-52r21,0r52,52r-17,0","w":219},"\u00fd":{"d":"89,0r-94,-184r19,0r83,166r76,-166r19,0r-102,216v-9,27,-31,38,-71,34r0,-14v44,9,53,-20,70,-52xm122,-265r21,0r-57,52r-16,0","w":186,"k":{",":27,".":27}},"\u00ff":{"d":"89,0r-94,-184r19,0r83,166r76,-166r19,0r-102,216v-9,27,-31,38,-71,34r0,-14v44,9,53,-20,70,-52xm47,-215r0,-38r17,0r0,38r-17,0xm123,-215r0,-38r17,0r0,38r-17,0","w":186,"k":{",":27,".":27}},"\u017e":{"d":"4,0r0,-17r150,-153r-140,0r0,-14r163,0r0,12r-154,158r160,0r0,14r-179,0xm140,-265r19,0r-55,52r-20,0r-56,-52r19,0r47,41","w":186},"\u00b9":{"d":"72,-103r0,-133v-15,12,-35,18,-52,20r0,-10v17,-1,45,-12,53,-29r12,0r0,152r-13,0","w":139},"\u00b2":{"d":"134,-215v0,49,-99,60,-108,99r112,0r0,10r-124,0v-6,-55,108,-60,108,-109v0,-25,-23,-34,-44,-34v-35,0,-49,17,-49,43r-12,0v0,-37,20,-53,61,-53v28,0,56,12,56,44","w":151},"\u00b3":{"d":"67,-180r0,-10v19,0,56,0,56,-29v0,-48,-98,-39,-94,11r-12,0v1,-38,26,-51,64,-51v23,0,54,9,54,40v1,23,-18,29,-36,34v23,0,40,14,40,40v0,37,-34,46,-64,46v-35,0,-63,-14,-63,-55r12,0v0,35,26,45,54,45v22,0,49,-8,49,-36v0,-33,-37,-35,-60,-35","w":151},"\u03bc":{"d":"200,-184r0,184r-17,0r0,-37v-12,22,-36,43,-78,43v-42,0,-59,-16,-68,-29r0,96r-17,0r0,-257r17,0v8,80,-32,178,68,175v99,-2,76,-88,78,-175r17,0","w":219},"\u03c0":{"d":"218,-176r-37,0v1,51,-4,141,6,176v-28,2,-22,-10,-22,-53r0,-123r-90,0v-3,51,-18,144,-33,176r-15,0v17,-37,30,-122,33,-176v-31,0,-43,2,-52,6r-4,-10v49,-18,149,-6,216,-9","w":228},"\u00a0":{"w":79},"\u00ad":{"d":"27,-89r0,-16r93,0r0,16r-93,0","w":146},"\u03a9":{"d":"24,-12v21,-1,47,2,66,-1v-32,-23,-60,-65,-60,-120v0,-75,57,-126,125,-126v73,0,123,59,123,125v1,59,-32,100,-61,122r67,0r0,12r-94,0r0,-9v36,-18,73,-61,73,-124v0,-51,-38,-114,-108,-114v-67,0,-110,53,-110,115v0,59,37,104,72,123r0,9r-93,0r0,-12","w":307}}});if(typeof com=="undefined")var com={};if(typeof com.asual=="undefined")com.asual={};if(typeof com.asual.util=="undefined")com.asual.util={};com.asual.util.Browser=new
function(){var _version=-1;var _agent=navigator.userAgent;var _ie=false,_camino=false,_safari=false,_opera=false,_firefox=false,_netscape=false,_mozilla=false;var _getVersion=function(s,i){return parseFloat(_agent.substr(_agent.indexOf(s)+i));}
if(_ie=/MSIE/.test(_agent))_version=_getVersion('MSIE',4);if(_safari=/AppleWebKit/.test(_agent))_version=_getVersion('Safari',7);if(_opera=/Opera/.test(_agent))_version=parseFloat(navigator.appVersion);if(_camino=/Camino/.test(_agent))_version=_getVersion('Camino',7);if(_firefox=/Firefox/.test(_agent))_version=_getVersion('Firefox',8);if(_netscape=/Netscape/.test(_agent))_version=_getVersion('Netscape',9);if(_mozilla=/Mozilla/.test(_agent)&&/rv:/.test(_agent))_version=_getVersion('rv:',3);this.getVersion=function(){return _version;}
this.isIE=function(){return _ie;}
this.isSafari=function(){return _safari;}
this.isOpera=function(){return _opera;}
this.isCamino=function(){return _camino;}
this.isFirefox=function(){return _firefox;}
this.isNetscape=function(){return _netscape;}
this.isMozilla=function(){return _mozilla;}}
$(document).ready(function(){$("a#donate").bind("click",function(){$("#donate_form").submit()});$("a#single_1").fancybox();$("a#single_2").fancybox({'zoomOpacity':true,'overlayShow':false,'zoomSpeedIn':500,'zoomSpeedOut':500});$("a#single_3").fancybox({'overlayShow':false,'zoomSpeedIn':600,'zoomSpeedOut':500,'easingIn':'easeOutBack','easingOut':'easeInBack'});$("a.group").fancybox({'hideOnContentClick':false});});function addCart(vinoID){$('ul#nav-ecommerce .shoppingbag-count-loading').show();$('ul#nav-ecommerce .shoppingbag-count').hide();var rand_no=Math.ceil(100000000000000000000000000000*Math.random())
$("ul#nav-ecommerce .shoppingbag-count").html("");$.ajax({type:'POST',cache:false,url:"http://www.frantoiocacioli.com/ajax/updateCart.php",data:"vinoID="+vinoID,success:function(msg){$('ul#nav-ecommerce .shoppingbag-count').html(msg);$('ul#nav-ecommerce .shoppingbag-count').show();$('ul#nav-ecommerce .shoppingbag-count-loading').fadeOut(3500);}});return false;}
function simple_tooltip(target_items,name){$(target_items).each(function(i){$("body").append("<div class='"+name+"' id='"+name+i+"'><p>"+$(this).attr('title')+"</p></div>");var my_tooltip=$("#"+name+i);$(this).removeAttr("title").mouseover(function(){my_tooltip.css({opacity:0.8,display:"none"}).fadeIn(400);}).mousemove(function(kmouse){my_tooltip.css({left:kmouse.pageX+15,top:kmouse.pageY+15});}).mouseout(function(){my_tooltip.fadeOut(400);});});}
$(document).ready(function(){simple_tooltip("a.rtwitem-link.prod","tooltip");});$(document).ready(function(){$("form#submitCart").submit(function(){var vinoID=$('#vinoID').attr('value');var cart=$('#cart').attr('value');$.ajax({type:"POST",url:"http://www.frantoiocacioli.com/ajax/updateCart.php?vinoID="+vinoID,success:function(){$('ul#nav-ecommerce .shoppingbag-count-loading').show();$('#messaggio-cart').show();$.ajax({type:'GET',url:"http://www.frantoiocacioli.com/ajax/readCart.php?cart="+cart,success:function(msg){$('ul#nav-ecommerce .shoppingbag-count').html(msg);$('ul#nav-ecommerce .shoppingbag-count-loading').fadeOut(2500);$('#messaggio-cart').fadeOut(6000);}});return false;}});return false;});});Cufon.replace('.cufonH2,.cufonH2Azienda,.cufonH3,.cufonH3Azienda',{fontFamily:'Helvetica Neue LT Std'});
