/******
@name proculous accordion
@version 1.0
@author Dominik Kressler
@requirements prototypejs 1.7, scriptaculous 1.8.3 (effects.js)
*******/
var accordion = Class.create(
{
	initialize:function(set) 
	{
		set.targetId=(set.target)?set.target:"accordion1";
		set.target=(set.target)?$(set.target):$("accordion1");
		set.handlerClass=(set.handler)?set.handler:"accHandler";
		set.handler=(set.handler)?$$('#'+set.targetId+' .'+set.handler):$$('#'+set.targetId+' .accHandler');
			
		$$('#'+set.targetId+' .'+set.handlerClass).each(function(accContent) 
		{
			accContent.next(0).setStyle({display:'none'});							 
		});
		allItems = set.target.childElements();
		allItems[0].addClassName('open');
		allItems[0].next(0).setStyle({display:'block'});
		
		set.handler.each(function(clicker) 
		{
			clicker.observe('click', function() 
			{
				if(!clicker.hasClassName("open"))
				{	
					set.handler.each(function(closeItem)
					{
						if(closeItem.hasClassName('open'))
						{
							new Effect.BlindUp(closeItem.next(0),{duration:0.5,beforeStart:function(){$(closeItem).removeClassName('open');}});
						}
					});
					new Effect.BlindDown(clicker.next(0),{duration:0.5,beforeStart:function(){clicker.addClassName("open");}});
				}
			});
		});
	}
});

/* Mailmask */
function noSpam(){if(document.getElementById){var at="@";var links=document.getElementsByTagName('a');for(var i=0;i<links.length;i++){var linkElem=links[i];if(linkElem.className=='escape'){var mail=linkElem.firstChild;var domain=linkElem.lastChild;mail.nextSibling.firstChild.innerHTML=at;linkElem.href="mailto:"+mail.data+at+domain.data;}}}}
window.addEventListener?window.addEventListener('load',noSpam,false):window.attachEvent('onload',noSpam); 

// form_validation version 3.1.1
//  ----------------------------
// | Euroweb Internet GmbH     |
//  ----------------------------
// $original script by s.krassnig
// $modified by d.kressler
// $date 2011-02-22
var formSuccessMsg = "Das Formular wurde erfolgreich versendet. <br /> Wir werden uns umgehend mit Ihrer Anfrage auseinandersetzen.";
var errorMsgNum = "Bitte nur Zahlen eingeben!";
var errorMsgEmpty = "Feld leer!";
var errorMsgMail = "Email eingeben!";
var errorMsgSelect = "Bitte eine Option wählen!";
var errorMsgDefault = "Feldeingabe fehlerhaft!";

var error=0;var currentLabel='';var currentField='';var klasse='';var newClass='';var formID;var theLabels;var liveID;var f=new Number();var obj=new Object();var validateForm=function(formular)
{formID=formular.getAttribute('id');theLabels=document.getElementById(formID).getElementsByTagName("label");error=0;for(var i=0;i<theLabels.length;i++)
{currentLabel=theLabels[i];if(currentLabel.htmlFor)
{currentField=document.getElementById(currentLabel.htmlFor);}
checkField(currentLabel,currentField);}
if(error===0)
return true;else
return false;}
var checkField=function(currentLabel,currentField)
{klasse=currentLabel.className;newClass=currentLabel.className.replace(/ error/,'');if(currentField)
{if(currentField.name=='Rueckruf')
{if(currentField.checked==true)
{document.getElementById('label-telefon').className+=' required rueckruf';}else
{var newTelClass=document.getElementById('label-telefon').className.replace(/ required rueckruf/,'');document.getElementById('label-telefon').className=newTelClass;}}
if(klasse.match(/required/)!=null)
{if(currentField.tagName=='SELECT')
{if(currentField.childNodes[1].selected)
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"select");error=1;}else
{currentLabel.className=newClass;removeErrorSpan(currentLabel,null);}}
else if(currentField.type=='checkbox')
{if(currentField.checked==false)
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"select");error=1;}else
{currentLabel.className=newClass;removeErrorSpan(currentLabel);}}
else
{if(currentField.value=='')
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"empty");error=1;}else
{currentLabel.className=newClass;removeErrorSpan(currentLabel);}}}
if(klasse.match(/number/)!=null)
{var numeric=isNumber(currentField);if(!numeric&&!klasse.match(/required/)&&currentField.value!='')
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"num");error=1;}else
{currentLabel.className=newClass;removeErrorSpan(currentLabel);}
if(!numeric&&klasse.match(/required/))
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"num");error=1;}else
{if(error==0)
{currentLabel.className=newClass;removeErrorSpan(currentLabel);}}
return error;}
if(klasse.match(/mail/)!=null)
{var valid=isMailValid(currentField);if(!valid&&currentField.value!='')
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"mail");error=1;}else{currentLabel.className=newClass;removeErrorSpan(currentLabel);}
if(!valid&&klasse.match(/required/))
{currentLabel.className=newClass;currentLabel.className+=' error';triggerErrorSpan(currentLabel,"mail");error=1;}else
{if(error==0)
{currentLabel.className=newClass;removeErrorSpan(currentLabel);}}}
return error;}}
var isNumber=function(field){var returnvar=(isNaN(parseInt(field.value))==true)?false:true;return returnvar;}
var isMailValid=function(field){var returnvar=(field.value.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/))?true:false;return returnvar;}
var triggerErrorSpan=function(currentLabel,type)
{switch(type)
{case"num":var errorSpanText=errorMsgNum;break;case"text":var errorSpanText=errorMsgText;break;case"empty":var errorSpanText=errorMsgEmpty;break;case"mail":var errorSpanText=errorMsgMail;break;case"select":var errorSpanText=errorMsgSelect;break;default:var errorSpanText=errorMsgDefault;}
var labelId=currentLabel.getAttribute('id');if(document.getElementById("error-"+labelId)==null)
{var errorSpan=document.createElement('span');var innerSpan=document.createElement('span');var triangle=document.createElement('span');currentLabel.appendChild(errorSpan);currentLabel.setAttribute("style","position:relative");errorSpan.appendChild(triangle);errorSpan.appendChild(innerSpan);errorSpan.setAttribute("id","error-"+labelId);errorSpan.className="errorSpan";triangle.className="triangle";innerSpan.className="errorMessage";innerSpan.innerHTML=errorSpanText;}}
var removeErrorSpan=function(currentLabel)
{var labelId=currentLabel.getAttribute('id');if(document.getElementById("error-"+labelId)!=null)
{var Knoten=document.getElementById("error-"+labelId);document.getElementById(labelId).removeChild(Knoten);}}
var addEvent=function(obj,evType,fn,useCapture)
{if(obj.addEventListener)
{obj.addEventListener(evType,fn,useCapture);return true;}
else if(obj.attachEvent)
{var r=obj.attachEvent("on"+evType,fn);if(r)return r;}
else return false;}
var getElementsByClassName=function(classname,node)
{if(!node)node=document.getElementsByTagName("body")[0];var a=[];var re=new RegExp('\\b'+classname+'\\b');var els=node.getElementsByTagName("*");for(var i=0,j=els.length;i<j;i++)
if(re.test(els[i].className))a.push(els[i]);return a;}
var liveValidation=function()
{var form=getElementsByClassName('required',document);var form=form.concat(getElementsByClassName('number',document));var form=form.concat(getElementsByClassName('mail',document));for(f=0;f<form.length;f++)
{var field=form[f].nextSibling.nextSibling;var label=form[f];addEvent(label.nextSibling.nextSibling,"keyup",function(e)
{e=e||window.event;var field=(e.originalTarget)?e.originalTarget:e.srcElement;var label=field.previousSibling.previousSibling;checkField(label,field);});addEvent(label.nextSibling.nextSibling,"blur",function(e)
{e=e||window.event;var field=(e.originalTarget)?e.originalTarget:e.srcElement;var label=field.previousSibling.previousSibling;checkField(label,field);});}}
addEvent(window,"load",liveValidation);var prototypeSubmit=function(liveID,index)
{Event.observe(liveID,'submit',function(event)
{Event.stop(event);if(validateForm($(liveID))===true)
{var formData=$(liveID).serialize(true);new Ajax.Request('formmail/formmail.php',{method:'post',parameters:formData,onCreate:function()
{$(liveID).disable();},onSuccess:function(transport)
{$(liveID).enable();$(liveID).insert({before:'<p id="formNotice'+index+'" class="formNotice" style="display:none;">'+formSuccessMsg+'</p>'});$(liveID).blindUp({afterFinish:function(){$('formNotice'+index).appear();}});}});}});}
try
{Event.observe(window,'load',function()
{allForms=document.getElementsByTagName('form');for(d=0;d<allForms.length;d++)
{if(allForms[d].getAttribute('onsubmit')!=null&&allForms[d].getAttribute('onsubmit')=="return validateForm(this);")
{prototypeSubmit(allForms[d].getAttribute('id'),d);}}});}
catch(e)
{}
try{}
catch(e){throw"Bitte jQuery Library einbinden.";}





/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2001,2002,2005,2006 Adobe Systems Incorporated. All Rights
 * Reserved.
 * 
 * Trademark:
 * Kozuka Gothic is either a registered trademark or trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * KozGoPro-ExtraLight
 * 
 * Designer:
 * Masahiko Kozuka
 * 
 * Vendor URL:
 * http://www.adobe.co.jp/products/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"15,-193r138,0r0,10r-131,172r131,0r0,11r-147,0r0,-8r132,-174r-123,0r0,-11","w":158},{"d":"209,-166v-6,32,-18,65,-18,99v0,18,6,27,17,27v24,0,48,-33,48,-79v0,-64,-37,-107,-100,-107v-70,0,-125,58,-125,142v0,93,93,140,167,97r6,12v-85,46,-190,-3,-190,-108v0,-84,57,-156,145,-156v69,0,113,49,113,116v0,62,-35,96,-68,96v-17,0,-27,-17,-27,-39v-16,27,-35,39,-62,39v-21,0,-42,-18,-42,-49v-2,-63,69,-117,136,-90xm121,-39v51,0,65,-67,73,-117v-54,-20,-109,26,-107,81v0,20,12,36,34,36","w":285},{"d":"104,-272r0,190v-1,83,-48,96,-100,80r3,-11v6,3,17,7,29,7v45,0,56,-35,56,-81r0,-185r12,0","w":135,"k":{"}":-7,"]":-7,")":-7}},{"d":"115,-139r89,139r-16,0r-82,-126r-77,126r-17,0r88,-138r-84,-134r16,0r76,122r79,-122r16,0","w":215},{"d":"106,-197v54,0,88,41,88,99v0,72,-49,102,-90,102v-49,0,-87,-39,-87,-99v0,-67,43,-102,89,-102xm181,-97v0,-41,-21,-90,-74,-90v-51,0,-77,45,-77,91v0,48,32,90,74,90v42,0,77,-38,77,-91","w":211},{"d":"181,-116r0,116r-13,0v-5,-77,25,-186,-57,-186v-39,0,-65,35,-65,65r0,121r-12,0r-2,-193r13,0r1,36v14,-25,38,-40,68,-40v15,0,67,6,67,81","w":213},{"d":"48,-272r-3,204r-11,0r-3,-204r17,0xm39,4v-8,0,-12,-7,-12,-13v0,-9,5,-17,13,-17v8,0,13,7,13,16v0,8,-5,14,-14,14","w":79},{"d":"160,-19r5,10v-5,3,-25,13,-60,13v-54,0,-88,-41,-88,-97v0,-67,38,-104,85,-104v59,0,74,50,73,95r-145,0v0,60,28,96,77,96v29,0,43,-8,53,-13xm31,-113r130,0v0,-22,-9,-74,-61,-74v-45,0,-65,42,-69,74","k":{"j":-4}},{"d":"183,-28v9,110,-77,131,-150,95r7,-10v55,37,136,12,130,-69v-1,-9,2,-21,-1,-28v-10,20,-33,41,-69,41v-49,0,-83,-43,-83,-95v0,-69,44,-103,86,-103v40,0,61,23,68,39r1,-35r12,0xm170,-80v0,-62,-11,-107,-65,-107v-46,0,-75,43,-75,90v0,51,30,88,73,88v39,0,67,-38,67,-71","w":216},{"d":"220,-272r0,272r-13,0r-109,-166r-54,-86v4,57,1,180,2,252r-12,0r0,-272r12,0r112,170v23,35,38,58,51,84r-2,-254r13,0","w":253},{"d":"224,-131r0,119v-13,5,-40,15,-77,15v-84,0,-132,-56,-132,-138v0,-74,46,-140,140,-140v28,0,51,7,61,12r-5,10v-87,-38,-182,20,-182,118v0,67,40,127,121,127v31,0,49,-5,61,-11r0,-101r-66,0r0,-11r79,0","w":247},{"d":"13,-276r135,292r-16,0r-135,-292r16,0","w":141},{"d":"64,-222r-49,-55r24,0r36,55r-11,0","w":120},{"d":"113,-114r0,-101r14,0r0,101r97,0r0,12r-97,0r0,102r-14,0r0,-102r-96,0r0,-12r96,0","w":240},{"d":"58,-67v-17,-64,58,-107,58,-153v0,-47,-61,-58,-89,-31r-6,-9v39,-33,115,-10,108,40v5,46,-77,94,-59,153r-12,0xm64,4v-9,0,-13,-7,-13,-14v0,-9,5,-16,13,-16v8,0,13,7,13,16v0,8,-5,14,-13,14","w":149},{"d":"34,-193v-9,-66,35,-117,90,-90v-6,14,-12,3,-30,3v-44,2,-49,49,-48,87r54,0r0,11r-54,0r0,182r-12,0r0,-182r-29,0r0,-11r29,0","w":101,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},{"d":"171,-53v5,-44,-59,-66,-59,-104v0,-21,13,-36,38,-48v14,-37,-10,-75,-46,-75v-39,0,-58,27,-58,92r0,188r-12,0r0,-189v1,-69,19,-95,74,-102v41,-5,76,57,50,96v-20,7,-33,19,-33,36v1,42,59,57,59,104v0,52,-63,72,-108,50r5,-11v35,22,95,3,90,-37","w":201},{"d":"189,-272r0,11r-91,0r0,261r-13,0r0,-261r-91,0r0,-11r195,0","w":182,"k":{"\u00c4":4,"z":4,"y":7,"w":4,"u":4,"s":4,"r":4,"o":4,"m":4,"e":7,"a":7,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},{"d":"76,-225v11,-15,17,-35,27,-51r15,8r-34,50r58,-3r0,15v-19,0,-41,-5,-58,-3r34,47r-15,9v-10,-16,-16,-36,-27,-51r-28,52r-13,-9v11,-17,25,-31,34,-50r-57,5r0,-15r56,2r-33,-48r15,-8","w":154},{"d":"104,34r0,11r-67,0r0,-321r67,0r0,11r-53,0r0,299r53,0","w":103,"k":{"f":-7,"J":-14}},{"d":"251,33r-115,-29v-67,-1,-121,-50,-121,-137v0,-91,53,-143,121,-143v67,0,116,52,116,137v1,78,-38,122,-89,140v32,8,67,16,92,20xm136,-266v-146,-1,-137,262,-3,260v68,0,106,-63,106,-132v0,-58,-32,-128,-103,-128","w":267},{"d":"182,-272r16,0r-93,154r0,118r-12,0r0,-119r-87,-153r16,0r79,142","w":196,"k":{"\u00c4":7,"v":4,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"a":4,"A":11,".":7,"-":4,",":7,")":-14}},{"d":"84,-197v99,0,49,109,66,197r-12,0r-3,-29v-9,15,-31,33,-63,33v-39,0,-55,-27,-55,-52v0,-44,38,-70,118,-69v0,-22,0,-69,-52,-69v-16,0,-34,5,-48,15r-5,-9v18,-13,39,-17,54,-17xm72,-6v67,0,64,-43,62,-100v-37,-1,-104,5,-104,56v0,30,21,44,42,44","w":178},{"d":"211,0r-182,-102r0,-11r182,-102r0,16r-167,92r167,92r0,15","w":240},{"d":"53,-248v0,9,-5,14,-13,14v-8,0,-13,-6,-13,-14v0,-8,5,-15,13,-15v8,0,13,7,13,15xm46,-193r0,193r-12,0r0,-193r12,0","w":80},{"d":"141,-193r16,0r-68,94r70,99r-15,0r-62,-88r-61,88r-16,0r71,-99r-67,-94r16,0r58,84","w":166},{"d":"143,-72v0,-65,-110,-67,-110,-130v0,-33,24,-55,56,-59r0,-43r13,0r0,43v22,1,37,8,47,15r-8,11v-6,-5,-21,-15,-44,-15v-35,0,-51,25,-51,46v0,27,16,44,52,57v70,25,82,123,0,138r0,44r-13,0r0,-44v-19,0,-42,-7,-56,-18r8,-10v35,33,106,19,106,-35"},{"d":"173,-193r11,0r-1,273r-13,0r-1,-116v-9,20,-33,40,-69,40v-48,0,-83,-40,-83,-97v0,-116,119,-128,155,-64xm103,-6v61,0,67,-52,67,-111v0,-39,-29,-70,-66,-70v-43,0,-74,36,-74,92v0,49,29,89,73,89","w":215},{"d":"181,-117r0,117r-13,0v-6,-76,26,-186,-56,-186v-33,0,-66,31,-66,68r0,118r-12,0r0,-286r12,0r1,129v19,-34,51,-40,67,-40v17,0,67,6,67,80","w":213},{"d":"158,-193r14,0r-79,193r-11,0r-77,-193r15,0r69,176","w":176,"k":{".":7,",":4}},{"d":"0,45r0,-18r202,0r0,18r-202,0","w":201},{"d":"311,-272r15,0r-83,272r-12,0r-44,-162v-13,-42,-16,-69,-23,-93v-17,74,-52,177,-74,255r-12,0r-73,-272r14,0r66,251r73,-251r14,0r66,252","w":326,"k":{"\u00c4":4,"A":4,".":7,"-":4,",":11,")":-14}},{"d":"123,-272r99,272r-12,0r-37,-99r-111,0r-36,99r-13,0r101,-272r9,0xm66,-110r103,0r-52,-145v-14,52,-34,96,-51,145xm83,-293v-20,-1,-15,-29,0,-29v8,0,13,7,13,15v0,8,-4,14,-13,14xm149,-293v-19,-1,-15,-29,1,-29v8,0,13,7,13,15v0,8,-5,14,-14,14","w":231,"k":{"Y":7,"W":4,"V":4,"T":7}},{"d":"62,-87r-10,87r-14,0r11,-87r-34,0r0,-11r35,0r9,-73r-36,0r0,-12r37,0r11,-84r13,0r-11,84r47,0r10,-84r14,0r-10,84r33,0r0,12r-35,0r-9,73r36,0r0,11r-37,0r-10,87r-14,0r10,-87r-46,0xm72,-171r-9,73r47,0r8,-73r-46,0","w":182},{"d":"160,-19r5,9v-8,4,-28,14,-57,14v-55,0,-91,-41,-91,-98v0,-82,81,-128,149,-89r-6,9v-9,-5,-24,-13,-46,-13v-55,0,-84,43,-84,91v0,74,75,110,130,77","w":180},{"d":"170,-11r0,11r-136,0r0,-272r12,0r0,261r124,0","w":176,"k":{"Y":7,"V":4,"T":7,"-":4}},{"d":"177,-193r2,193r-12,0r-2,-35v-29,48,-131,73,-133,-46r0,-112r13,0v3,74,-18,187,55,187v33,0,65,-31,65,-67r0,-120r12,0","w":210},{"d":"114,-48v4,-48,-99,-52,-90,-99v-7,-44,66,-65,97,-37r-6,9v-25,-24,-78,-9,-78,25v0,48,100,44,90,100v4,52,-72,68,-109,40r6,-10v30,23,86,17,90,-28","w":146},{"d":"215,-272r0,164v0,84,-45,112,-94,112v-44,0,-87,-25,-87,-108r0,-168r12,0r0,164v0,72,35,102,76,102v47,0,80,-32,80,-102r0,-164r13,0xm91,-293v-20,-1,-15,-29,0,-29v8,0,13,7,13,15v0,8,-4,14,-13,14xm158,-293v-18,-1,-16,-29,0,-29v8,0,13,7,13,15v0,8,-4,14,-13,14","w":248},{"d":"34,0r0,-269v15,-3,33,-5,54,-5v65,0,90,35,90,75v-1,70,-65,92,-132,80r0,119r-12,0xm46,-260r0,130v58,15,119,-9,119,-67v0,-63,-66,-74,-119,-63","w":193,"k":{"\u00c4":7,"I":-4,".":22,",":22}},{"d":"45,-193v1,12,-1,29,2,39v41,-77,156,-43,156,54v0,108,-109,134,-157,66r0,114r-13,0r-1,-273r13,0xm118,-187v-60,0,-72,50,-72,111v0,41,36,70,70,70v47,0,74,-40,74,-93v0,-49,-27,-88,-72,-88","w":219},{"d":"215,-272r0,164v0,84,-45,112,-94,112v-44,0,-87,-25,-87,-108r0,-168r12,0r0,164v0,72,35,102,76,102v47,0,80,-32,80,-102r0,-164r13,0","w":248,"k":{".":7,",":4}},{"d":"41,-193r0,-35r13,-6r0,41r57,0r0,11r-57,0r0,133v-3,34,24,52,51,39v8,13,-8,13,-22,14v-39,0,-42,-34,-42,-57r0,-129r-33,0r0,-11r33,0","w":121},{"d":"142,-81r0,81r-12,0r0,-81r-127,0r0,-9r132,-177r7,0r0,174r41,0r0,12r-41,0xm21,-93r109,0r0,-150v-34,55,-72,98,-109,150"},{"d":"152,-263r-6,10v-7,-5,-23,-13,-46,-13v-46,0,-62,31,-62,54v0,32,17,48,57,64v44,18,68,38,68,79v0,39,-29,73,-83,73v-22,0,-48,-7,-63,-18r6,-10v42,35,127,16,127,-44v0,-32,-16,-53,-56,-67v-44,-16,-69,-37,-69,-74v0,-60,85,-83,127,-54","w":182},{"d":"46,-286r1,132v13,-24,37,-43,73,-43v50,0,83,40,83,98v0,110,-112,133,-158,63r-1,36r-12,0r2,-286r12,0xm118,-186v-61,0,-72,51,-72,111v0,31,28,69,70,69v47,0,74,-39,74,-92v0,-46,-26,-88,-72,-88","w":219},{"d":"32,-30r19,-4v-6,28,-23,76,-28,84r-11,1v5,-14,17,-58,20,-81","w":64},{"d":"4,-281r14,0v29,35,58,86,58,166v0,80,-29,129,-58,165r-14,0v33,-42,58,-93,58,-166v0,-73,-24,-123,-58,-165","w":103},{"d":"153,-260v-73,0,-120,67,-123,127v12,-21,35,-40,68,-40v49,0,79,36,79,85v0,46,-26,92,-79,92v-44,0,-83,-37,-83,-111v0,-107,71,-165,138,-165r0,12xm99,-6v39,0,64,-34,64,-81v0,-50,-29,-76,-67,-76v-36,0,-68,37,-68,59v0,44,18,98,71,98"},{"d":"211,-20r5,10v-88,34,-201,7,-201,-125v0,-79,49,-141,137,-141v35,0,53,8,62,12r-5,10v-88,-37,-180,17,-180,120v0,102,95,155,182,114","w":228},{"d":"154,-193r14,0v-39,83,-88,268,-155,282r-5,-10v55,-29,75,-78,68,-93r-72,-179r14,0r70,174","w":172,"k":{":":-7,".":7,",":7}},{"d":"128,-262r82,182r-15,0r-75,-168r-75,168r-14,0r82,-182r15,0","w":240},{"d":"68,-266v40,0,52,40,52,78v3,107,-107,112,-107,3v0,-50,24,-81,55,-81xm67,-256v-62,0,-51,139,-1,139v29,0,41,-32,41,-71v0,-37,-10,-68,-40,-68xm223,-158v40,0,52,40,52,78v0,56,-24,82,-54,82v-27,0,-52,-23,-52,-79v0,-50,23,-81,54,-81xm222,-148v-62,0,-50,138,0,139v29,0,40,-32,40,-71v0,-36,-10,-68,-40,-68xm229,-267r-157,272r-14,0r158,-272r13,0","w":288},{"d":"153,-210v1,29,-19,50,-49,64v33,7,59,32,59,72v0,39,-25,78,-85,78v-25,0,-49,-10,-60,-18r8,-10v9,7,29,18,54,18v56,0,70,-43,70,-67v-2,-52,-46,-70,-96,-67r0,-11v43,3,85,-12,85,-58v0,-26,-13,-52,-52,-52v-21,0,-39,10,-51,20r-6,-10v12,-10,34,-21,57,-21v48,0,66,32,66,62"},{"d":"26,-256r0,-11r148,0r0,10r-117,257r-16,0r120,-256r-135,0"},{"d":"101,-197v8,-2,8,5,7,12v-74,-9,-62,106,-62,185r-12,0r-2,-193r12,0v1,13,-1,29,2,40v8,-24,28,-44,55,-44","w":113,"k":{".":4,",":4}},{"d":"100,50r-14,0v-29,-35,-58,-84,-58,-164v0,-80,29,-131,58,-167r14,0v-35,42,-59,93,-59,167v0,72,26,122,59,164","w":103,"k":{"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},{"d":"35,4v-9,0,-13,-7,-13,-14v0,-9,5,-16,13,-16v8,0,14,7,14,16v0,8,-5,14,-14,14","w":64},{"d":"34,-268v67,-16,146,-3,144,65v0,37,-21,60,-54,71v22,7,37,28,43,59v9,44,14,62,20,73r-13,0v-4,-8,-12,-32,-18,-67v-11,-58,-46,-65,-110,-61r0,128r-12,0r0,-268xm46,-138v63,6,119,-9,119,-63v0,-64,-70,-70,-119,-58r0,121","w":198},{"d":"32,-30r19,-4v-6,28,-24,76,-28,84r-11,1v6,-14,17,-58,20,-81xm39,-148v-18,-1,-16,-31,0,-31v8,0,14,7,14,16v0,8,-6,15,-14,15","w":64},{"d":"123,-272r99,272r-12,0r-37,-99r-111,0r-36,99r-13,0r100,-272r10,0xm66,-110r103,0r-52,-145v-14,52,-34,96,-51,145","w":231,"k":{"Y":11,"W":4,"V":11,"T":11}},{"d":"34,-117v35,11,17,72,17,110v0,41,30,41,45,41r0,11v-36,0,-59,-14,-59,-55v0,-42,33,-97,-27,-101r0,-10v60,-2,26,-63,27,-104v1,-37,26,-52,59,-51r0,10v-16,0,-45,0,-45,41v0,39,20,96,-17,108","w":103,"k":{"f":-7,"J":-11}},{"d":"106,-197v54,0,88,41,88,99v0,72,-49,102,-90,102v-49,0,-87,-39,-87,-99v0,-67,43,-102,89,-102xm181,-97v0,-41,-21,-90,-74,-90v-51,0,-77,45,-77,91v0,48,32,90,74,90v42,0,77,-38,77,-91xm72,-234v-17,-1,-14,-28,1,-28v8,0,13,6,13,14v0,8,-6,14,-14,14xm138,-234v-18,-1,-14,-28,1,-28v7,0,13,6,13,14v0,8,-6,14,-14,14","w":211},{"d":"69,-116v-35,-14,-16,-70,-16,-109v0,-41,-30,-41,-46,-41v1,-4,-2,-12,4,-10v31,0,56,15,56,51v0,41,-33,101,26,104r0,10v-59,4,-26,61,-26,101v0,41,-24,55,-60,55r0,-11v15,0,46,0,46,-41v0,-37,-23,-98,16,-109","w":103},{"w":83},{"d":"30,-193r-4,-86r18,0r-4,86r-10,0","w":69},{"d":"76,-113r90,113r-16,0r-83,-105r-21,21r0,84r-12,0r0,-286r12,0r1,188r92,-95r16,0","w":163},{"d":"30,-193r-4,-86r18,0r-4,86r-10,0xm76,-193r-5,-86r18,0r-4,86r-9,0","w":115},{"d":"136,-276v68,0,116,53,116,137v0,97,-59,143,-119,143v-65,0,-118,-51,-118,-137v0,-91,54,-143,121,-143xm135,-266v-73,0,-106,68,-106,132v0,58,36,128,104,128v68,0,106,-63,106,-132v0,-59,-32,-128,-104,-128","w":267,"k":{".":4,",":4}},{"d":"63,-139v24,0,88,36,118,35v19,0,27,-14,26,-35r12,0v-7,96,-103,13,-157,13v-18,0,-29,13,-29,35r-11,0v-2,-28,18,-48,41,-48","w":240},{"d":"108,0r-13,0r0,-254r-41,26r-5,-10v21,-9,31,-28,59,-29r0,267"},{"d":"34,0r0,-268v108,-21,209,9,209,125v0,130,-104,145,-151,145v-19,0,-38,0,-58,-2xm46,-258r0,247v106,18,183,-35,183,-131v0,-94,-85,-140,-183,-116","w":257,"k":{"\u00d6":-4}},{"d":"84,-197v99,0,49,109,66,197r-12,0r-3,-29v-9,15,-31,33,-63,33v-39,0,-55,-27,-55,-52v0,-44,38,-70,118,-69v0,-22,0,-69,-52,-69v-16,0,-34,5,-48,15r-5,-9v18,-13,39,-17,54,-17xm72,-6v67,0,64,-43,62,-100v-37,-1,-104,5,-104,56v0,30,21,44,42,44xm56,-234v-17,-1,-14,-28,1,-28v8,0,13,6,13,14v0,8,-6,14,-14,14xm122,-234v-18,-1,-16,-28,0,-28v7,0,13,6,13,14v0,8,-5,14,-13,14","w":178},{"d":"55,-248v0,8,-5,14,-13,14v-8,0,-13,-7,-13,-14v0,-8,5,-15,13,-15v8,0,13,7,13,15xm48,-193r0,181v7,53,-25,96,-66,96r-3,-10v55,-4,56,-45,56,-98r0,-169r13,0","w":81},{"d":"183,-286r1,286r-12,0v-1,-12,1,-29,-2,-39v-36,75,-153,44,-153,-54v0,-100,104,-136,153,-68r0,-125r13,0xm103,-6v57,0,67,-51,67,-111v0,-40,-29,-70,-66,-70v-44,0,-74,39,-74,92v0,44,26,89,73,89","w":216},{"d":"169,-11r0,11r-135,0r0,-272r129,0r0,11r-117,0r0,112r110,0r0,11r-110,0r0,127r123,0","w":183},{"d":"46,0r-12,0r0,-272r129,0r0,11r-117,0r0,115r107,0r0,11r-107,0r0,135","w":181,"k":{"\u00c4":11,"A":11,".":14,",":18}},{"d":"189,-272r14,0r-102,272r-11,0r-91,-272r14,0r84,255v22,-80,63,-175,92,-255","w":197,"k":{"\u00c4":7,"o":4,"e":4,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},{"d":"12,-105r0,-13r95,0r0,13r-95,0","w":118},{"d":"0,-265r0,-11r66,0r0,321r-66,0r0,-11r53,0r0,-299r-53,0","w":103},{"d":"180,-75v0,75,-75,81,-146,75r0,-268v15,-4,32,-6,51,-6v110,-2,102,104,37,128v19,8,58,23,58,71xm46,-150v58,6,110,-11,110,-57v0,-54,-64,-61,-110,-53r0,110xm46,-140r0,128v54,10,121,-1,120,-62v-2,-60,-57,-70,-120,-66","w":197},{"d":"94,4v-65,0,-78,-94,-78,-136v0,-100,42,-140,83,-140v42,0,78,39,78,134v0,98,-33,142,-83,142xm95,-6v49,0,68,-58,68,-129v0,-74,-20,-126,-66,-126v-40,0,-68,53,-68,126v0,49,13,129,66,129"},{"d":"296,-114r0,114r-13,0v-3,-73,19,-188,-54,-186v-32,0,-58,31,-58,61r0,125r-13,0v-5,-72,23,-186,-50,-186v-35,0,-62,36,-62,66r0,120r-12,0r-2,-193r13,0r1,36v19,-51,107,-54,120,4v7,-16,25,-44,67,-44v16,0,63,7,63,83","w":327},{"d":"265,-272r19,272r-13,0r-15,-254r-99,255r-8,0r-95,-255r-15,254r-13,0r20,-272r13,0r95,253r97,-253r14,0","w":309},{"d":"177,-193r2,193r-12,0r-2,-35v-29,48,-131,73,-133,-46r0,-112r13,0v3,74,-18,187,55,187v33,0,65,-31,65,-67r0,-120r12,0xm72,-234v-17,-1,-14,-28,1,-28v8,0,13,6,13,14v0,8,-6,14,-14,14xm138,-234v-18,-1,-16,-28,0,-28v7,0,13,6,13,14v0,8,-5,14,-13,14","w":210},{"d":"51,-267r108,0r0,11r-97,0r-14,93v54,-8,110,10,113,78v4,81,-92,110,-144,71r6,-10v6,4,32,18,53,18v40,0,71,-33,71,-75v0,-54,-54,-86,-114,-69"},{"d":"34,0r0,-272r12,0r0,272r-12,0","w":80},{"d":"83,-156r117,156r-16,0r-109,-147r-29,31r0,116r-12,0r0,-272r12,0v2,45,-4,100,2,141r126,-141r15,0","w":193},{"d":"30,-215r181,103r0,10r-181,102r0,-15r165,-92r-165,-92r0,-16","w":240},{"d":"17,-66v0,-37,26,-59,58,-78v-25,-11,-47,-32,-47,-60v0,-43,34,-68,71,-68v79,0,93,99,19,129r0,2v39,15,58,40,58,70v0,46,-39,75,-80,75v-44,0,-79,-29,-79,-70xm96,-6v42,0,66,-28,66,-62v0,-39,-25,-57,-71,-70v-31,10,-61,33,-61,68v0,38,30,64,66,64xm98,-261v-31,0,-57,20,-57,54v0,33,23,50,61,60v30,-11,51,-30,51,-61v0,-23,-14,-53,-55,-53"},{"d":"216,-272r0,272r-12,0r0,-139r-158,0r0,139r-12,0r0,-272r12,0r0,122r158,0r0,-122r12,0","w":250},{"d":"165,-135v-17,24,-41,38,-71,38v-49,0,-74,-41,-74,-81v0,-50,32,-94,82,-94v41,0,76,36,76,111v0,104,-64,168,-137,165r0,-12v74,0,104,-34,124,-127xm99,-261v-40,0,-66,37,-66,82v0,42,27,71,63,71v42,0,69,-36,69,-50v0,-49,-17,-103,-66,-103"},{"d":"46,-286r0,286r-12,0r0,-286r12,0","w":79},{"d":"199,-272r0,10r-168,251r171,0r0,11r-188,0r0,-10r168,-251r-154,0r0,-11r171,0","w":214,"k":{"\u00c4":4,"A":4}},{"d":"224,-153r0,12r-208,0r0,-12r208,0xm224,-78r0,13r-208,0r0,-13r208,0","w":240},{"d":"198,-141r12,0v-5,32,-12,72,-34,98v14,14,27,26,43,43r-18,0r-32,-33v-53,62,-152,44,-156,-38v-2,-38,25,-62,53,-82v-40,-44,-31,-123,34,-123v27,0,49,20,49,52v0,31,-20,51,-65,76r85,98v19,-27,26,-63,29,-91xm90,-6v35,0,59,-21,71,-35r-88,-102v-18,10,-47,33,-47,71v0,37,26,66,64,66xm98,-266v-55,1,-50,81,-21,108v35,-18,59,-34,59,-64v0,-20,-10,-44,-38,-44","w":218},{"d":"35,-148v-17,0,-17,-32,0,-31v8,0,14,7,14,16v0,8,-6,15,-14,15xm35,4v-8,0,-13,-7,-13,-14v0,-9,5,-16,13,-16v8,0,14,7,14,16v0,8,-6,14,-14,14","w":64},{"d":"170,-11r0,11r-151,0v0,-18,15,-21,22,-33v35,-38,108,-104,108,-163v0,-32,-13,-65,-59,-65v-25,0,-44,14,-55,24r-7,-9v17,-15,39,-26,65,-26v54,0,70,43,70,72v0,57,-66,123,-127,189r134,0"},{"d":"34,101r0,-403r13,0r0,403r-13,0","w":81},{"d":"136,-276v68,0,116,53,116,137v0,97,-59,143,-119,143v-65,0,-118,-51,-118,-137v0,-91,54,-143,121,-143xm135,-266v-73,0,-106,68,-106,132v0,58,36,128,104,128v68,0,106,-63,106,-132v0,-59,-32,-128,-104,-128xm100,-293v-21,-2,-14,-29,1,-29v8,0,13,7,13,15v0,8,-5,14,-14,14xm167,-293v-19,-1,-15,-29,1,-29v8,0,13,7,13,15v0,8,-5,14,-14,14","w":267},{"w":83},{"d":"265,-193r14,0r-66,193r-10,0r-40,-114v-11,-23,-11,-46,-22,-65v-18,61,-43,120,-63,179r-11,0r-61,-193r15,0r53,174r61,-174r14,0r59,174r2,0","w":284,"k":{":":-4,".":7,",":7}},{"d":"145,-276r-136,292r-15,0r135,-292r16,0","w":142}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-12-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("N(-,tFc*IX_MNa[5Va4D~(7k>Nsjc#ZSp@CnUX0q-Itl:^wfYdgR[FA)}{m;1M+h%Ez*,!eWiHyv_TPy:F~Ek(k_0!c,-F_M0!>EIXpA-Uv;qz*d^RVNX(_MkXUACR:l0(5mZ!-l:C5h-(-nN[1pXXDvI0fRlXY!0,:l:C5hqzSgq*%,l,%,j4VRq,VhU0S*n!k;NC-4^UW[jz:ENai@#*~y07nhj(q!wU%,j4VYja:m0a>Zwg~D07nhj(n*IFp~p[q10nkhtn,l:C5h-Fj,@n;T#Dfit~)_>g)Ew~%,j4VRcdVe0avdsAcht([*NakdN@%}ZC5;l4,dsA5;t4,hsF%[tF:*Ia%AZXkM-diAt7[hI7j_^e*yIXq)qdi+Iz*+0dfP#A:e:,hMNCv)Zz}*-0c*:!Udl!U}:(UM0aiR-0%MtepYlF[Y:a,ht!U;t(~,0aigt!,v:(U1tUhMq0S}>a_}sAp[leS)t(_gq0p}t!WMI(_z:(iYtXn}NX-+ldfyIC%;#E;mI@[AX!ctIU,:Z0VtIU,_N@f}")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":192,"face":{"font-family":"Kozuka","font-weight":250,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 2 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-21 -322 326 101","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FC"}}));


document.observe("dom:loaded", function()
{
	document.body.addClassName('js-active');	
});
