/*!*****************************************************************************
 * Collected JQuery Plugins - to minimise download overhead.
 * 
 * jquery.form.min.js, jquery.query.min.js, jquery.timers.min.js, jquery.utils.min.js, Number.prototype.pxToEm, jquery.equalheights.min.js
 * 
 * jQuery Form Plugin
 * version: 2.18 (06-JAN-2009)
 * @requires jQuery v1.2.2 or later
 *
 * Examples and documentation at: http://malsup.com/jquery/form/
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.form.js 6061 2009-01-07 01:43:18Z malsup $
 */;
(function(b){b.fn.ajaxSubmit=function(p){if(!this.length){a("ajaxSubmit: skipping submit process - no element selected");return this;}if(typeof p=="function"){p={success:p};}p=b.extend({url:this.attr("action")||window.location.toString(),type:this.attr("method")||"GET"},p||{});var s={};this.trigger("form-pre-serialize",[this,p,s]);if(s.veto){a("ajaxSubmit: submit vetoed via form-pre-serialize trigger");return this;}if(p.beforeSerialize&&p.beforeSerialize(this,p)===false){a("ajaxSubmit: submit aborted via beforeSerialize callback");return this;}var i=this.formToArray(p.semantic);if(p.data){p.extraData=p.data;for(var e in p.data){if(p.data[e] instanceof Array){for(var f in p.data[e]){i.push({name:e,value:p.data[e][f]});}}else{i.push({name:e,value:p.data[e]});}}}if(p.beforeSubmit&&p.beforeSubmit(i,this,p)===false){a("ajaxSubmit: submit aborted via beforeSubmit callback");return this;}this.trigger("form-submit-validate",[i,this,p,s]);if(s.veto){a("ajaxSubmit: submit vetoed via form-submit-validate trigger");return this;}var d=b.param(i);if(p.type.toUpperCase()=="GET"){p.url+=(p.url.indexOf("?")>=0?"&":"?")+d;p.data=null;}else{p.data=d;}var r=this,h=[];if(p.resetForm){h.push(function(){r.resetForm();});}if(p.clearForm){h.push(function(){r.clearForm();});}if(!p.dataType&&p.target){var m=p.success||function(){};h.push(function(j){b(p.target).html(j).each(m,arguments);});}else{if(p.success){h.push(p.success);}}p.success=function(q,k){for(var n=0,j=h.length;n<j;n++){h[n].apply(p,[q,k,r]);}};var c=b("input:file",this).fieldValue();var o=false;for(var g=0;g<c.length;g++){if(c[g]){o=true;}}if(p.iframe||o){if(b.browser.safari&&p.closeKeepAlive){b.get(p.closeKeepAlive,l);}else{l();}}else{b.ajax(p);}this.trigger("form-submit-notify",[this,p]);return this;function l(){var u=r[0];if(b(":input[name=submit]",u).length){alert('Error: Form elements must not be named "submit".');return;}var q=b.extend({},b.ajaxSettings,p);var D=jQuery.extend(true,{},b.extend(true,{},b.ajaxSettings),q);var t="jqFormIO"+(new Date().getTime());var z=b('<iframe id="'+t+'" name="'+t+'" />');var B=z[0];if(b.browser.msie||b.browser.opera){B.src='javascript:false;document.write("");';}z.css({position:"absolute",top:"-1000px",left:"-1000px"});var C={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(){this.aborted=1;z.attr("src","about:blank");}};var A=q.global;if(A&&!b.active++){b.event.trigger("ajaxStart");}if(A){b.event.trigger("ajaxSend",[C,q]);}if(D.beforeSend&&D.beforeSend(C,D)===false){D.global&&jQuery.active--;return;}if(C.aborted){return;}var k=0;var w=0;var j=u.clk;if(j){var v=j.name;if(v&&!j.disabled){p.extraData=p.extraData||{};p.extraData[v]=j.value;if(j.type=="image"){p.extraData[name+".x"]=u.clk_x;p.extraData[name+".y"]=u.clk_y;}}}setTimeout(function(){var G=r.attr("target"),E=r.attr("action");r.attr({target:t,method:"POST",action:q.url});if(!p.skipEncodingOverride){r.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"});}if(q.timeout){setTimeout(function(){w=true;x();},q.timeout);}var F=[];try{if(p.extraData){for(var H in p.extraData){F.push(b('<input type="hidden" name="'+H+'" value="'+p.extraData[H]+'" />').appendTo(u)[0]);}}z.appendTo("body");B.attachEvent?B.attachEvent("onload",x):B.addEventListener("load",x,false);u.submit();}finally{r.attr("action",E);G?r.attr("target",G):r.removeAttr("target");b(F).remove();}},10);function x(){if(k++){return;}B.detachEvent?B.detachEvent("onload",x):B.removeEventListener("load",x,false);var E=0;var F=true;try{if(w){throw"timeout";}var G,I;I=B.contentWindow?B.contentWindow.document:B.contentDocument?B.contentDocument:B.document;if(I.body==null&&!E&&b.browser.opera){E=1;k--;setTimeout(x,100);return;}C.responseText=I.body?I.body.innerHTML:null;C.responseXML=I.XMLDocument?I.XMLDocument:I;C.getResponseHeader=function(K){var J={"content-type":q.dataType};return J[K];};if(q.dataType=="json"||q.dataType=="script"){var n=I.getElementsByTagName("textarea")[0];C.responseText=n?n.value:C.responseText;}else{if(q.dataType=="xml"&&!C.responseXML&&C.responseText!=null){C.responseXML=y(C.responseText);}}G=b.httpData(C,q.dataType);}catch(H){F=false;b.handleError(q,C,"error",H);}if(F){q.success(G,"success");if(A){b.event.trigger("ajaxSuccess",[C,q]);}}if(A){b.event.trigger("ajaxComplete",[C,q]);}if(A&&!--b.active){b.event.trigger("ajaxStop");}if(q.complete){q.complete(C,F?"success":"error");}setTimeout(function(){z.remove();C.responseXML=null;},100);}function y(n,E){if(window.ActiveXObject){E=new ActiveXObject("Microsoft.XMLDOM");E.async="false";E.loadXML(n);}else{E=(new DOMParser()).parseFromString(n,"text/xml");}return(E&&E.documentElement&&E.documentElement.tagName!="parsererror")?E:null;}}};b.fn.ajaxForm=function(c){return this.ajaxFormUnbind().bind("submit.form-plugin",function(){b(this).ajaxSubmit(c);return false;}).each(function(){b(":submit,input:image",this).bind("click.form-plugin",function(f){var d=this.form;d.clk=this;if(this.type=="image"){if(f.offsetX!=undefined){d.clk_x=f.offsetX;d.clk_y=f.offsetY;}else{if(typeof b.fn.offset=="function"){var g=b(this).offset();d.clk_x=f.pageX-g.left;d.clk_y=f.pageY-g.top;}else{d.clk_x=f.pageX-this.offsetLeft;d.clk_y=f.pageY-this.offsetTop;}}}setTimeout(function(){d.clk=d.clk_x=d.clk_y=null;},10);});});};b.fn.ajaxFormUnbind=function(){this.unbind("submit.form-plugin");return this.each(function(){b(":submit,input:image",this).unbind("click.form-plugin");});};b.fn.formToArray=function(q){var p=[];if(this.length==0){return p;}var d=this[0];var h=q?d.getElementsByTagName("*"):d.elements;if(!h){return p;}for(var k=0,m=h.length;k<m;k++){var e=h[k];var f=e.name;if(!f){continue;}if(q&&d.clk&&e.type=="image"){if(!e.disabled&&d.clk==e){p.push({name:f+".x",value:d.clk_x},{name:f+".y",value:d.clk_y});}continue;}var r=b.fieldValue(e,true);if(r&&r.constructor==Array){for(var g=0,c=r.length;g<c;g++){p.push({name:f,value:r[g]});}}else{if(r!==null&&typeof r!="undefined"){p.push({name:f,value:r});}}}if(!q&&d.clk){var l=d.getElementsByTagName("input");for(var k=0,m=l.length;k<m;k++){var o=l[k];var f=o.name;if(f&&!o.disabled&&o.type=="image"&&d.clk==o){p.push({name:f+".x",value:d.clk_x},{name:f+".y",value:d.clk_y});}}}return p;};b.fn.formSerialize=function(c){return b.param(this.formToArray(c));};b.fn.fieldSerialize=function(d){var c=[];this.each(function(){var h=this.name;if(!h){return;}var f=b.fieldValue(this,d);if(f&&f.constructor==Array){for(var g=0,e=f.length;g<e;g++){c.push({name:h,value:f[g]});}}else{if(f!==null&&typeof f!="undefined"){c.push({name:this.name,value:f});}}});return b.param(c);};b.fn.fieldValue=function(h){for(var g=[],e=0,c=this.length;e<c;e++){var f=this[e];var d=b.fieldValue(f,h);if(d===null||typeof d=="undefined"||(d.constructor==Array&&!d.length)){continue;}d.constructor==Array?b.merge(g,d):g.push(d);}return g;};b.fieldValue=function(c,j){var e=c.name,p=c.type,q=c.tagName.toLowerCase();if(typeof j=="undefined"){j=true;}if(j&&(!e||c.disabled||p=="reset"||p=="button"||(p=="checkbox"||p=="radio")&&!c.checked||(p=="submit"||p=="image")&&c.form&&c.form.clk!=c||q=="select"&&c.selectedIndex==-1)){return null;}if(q=="select"){var k=c.selectedIndex;if(k<0){return null;}var m=[],d=c.options;var g=(p=="select-one");var l=(g?k+1:d.length);for(var f=(g?k:0);f<l;f++){var h=d[f];if(h.selected){var o=b.browser.msie&&!(h.attributes.value.specified)?h.text:h.value;if(g){return o;}m.push(o);}}return m;}return c.value;};b.fn.clearForm=function(){return this.each(function(){b("input,select,textarea",this).clearFields();});};b.fn.clearFields=b.fn.clearInputs=function(){return this.each(function(){var d=this.type,c=this.tagName.toLowerCase();if(d=="text"||d=="password"||c=="textarea"){this.value="";}else{if(d=="checkbox"||d=="radio"){this.checked=false;}else{if(c=="select"){this.selectedIndex=-1;}}}});};b.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset();}});};b.fn.enable=function(c){if(c==undefined){c=true;}return this.each(function(){this.disabled=!c;});};b.fn.selected=function(c){if(c==undefined){c=true;}return this.each(function(){var d=this.type;if(d=="checkbox"||d=="radio"){this.checked=c;}else{if(this.tagName.toLowerCase()=="option"){var e=b(this).parent("select");if(c&&e[0]&&e[0].type=="select-one"){e.find("option").selected(false);}this.selected=c;}}});};function a(){if(b.fn.ajaxSubmit.debug&&window.console&&window.console.log){window.console.log("[jquery.form] "+Array.prototype.join.call(arguments,""));}}})(jQuery);
/**
 * jQuery.query - Query String Modification and Creation for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/02/08
 *
 * @author Blair Mitchelmore
 * @version 2.1.2
 *
 **/;
new function(e){var d=e.separator||"&";var c=e.spaces===false?false:true;var a=e.suffix===false?"":"[]";var g=e.prefix===false?false:true;var b=g?e.hash===true?"#":"?":"";var f=e.numbers===false?false:true;jQuery.query=new function(){var h=function(m,l){return m!=undefined&&m!==null&&(!!l?m.constructor==l:true);};var i=function(r){var l,q=/\[([^[]*)\]/g,n=/^(\S+?)(\[\S*\])?$/.exec(r),o=n[1],p=[];while(l=q.exec(n[2])){p.push(l[1]);}return[o,p];};var k=function(s,r,q){var t,p=r.shift();if(typeof s!="object"){s=null;}if(p===""){if(!s){s=[];}if(h(s,Array)){s.push(r.length==0?q:k(null,r.slice(0),q));}else{if(h(s,Object)){var n=0;while(s[n++]!=null){}s[--n]=r.length==0?q:k(s[n],r.slice(0),q);}else{s=[];s.push(r.length==0?q:k(null,r.slice(0),q));}}}else{if(p&&p.match(/^\s*[0-9]+\s*$/)){var m=parseInt(p,10);if(!s){s=[];}s[m]=r.length==0?q:k(s[m],r.slice(0),q);}else{if(p){var m=p.replace(/^\s*|\s*$/g,"");if(!s){s={};}if(h(s,Array)){var l={};for(var n=0;n<s.length;++n){l[n]=s[n];}s=l;}s[m]=r.length==0?q:k(s[m],r.slice(0),q);}else{return q;}}}return s;};var j=function(l){var m=this;m.keys={};if(l.queryObject){jQuery.each(l.get(),function(n,o){m.SET(n,o);});}else{jQuery.each(arguments,function(){var n=""+this;n=n.replace(/^[?#]/,"");n=n.replace(/[;&]$/,"");if(c){n=n.replace(/[+]/g," ");}jQuery.each(n.split(/[&;]/),function(){var o=this.split("=")[0];var p=this.split("=")[1];if(!o){return;}if(f){if(/^[+-]?[0-9]+\.[0-9]*$/.test(p)){p=parseFloat(p);}else{if(/^[+-]?[0-9]+$/.test(p)){p=parseInt(p,10);}}}p=(!p&&p!==0)?true:p;if(p!==false&&p!==true&&typeof p!="number"){p=decodeURIComponent(p);}m.SET(o,p);});});}return m;};j.prototype={queryObject:true,has:function(l,m){var n=this.get(l);return h(n,m);},GET:function(m){if(!h(m)){return this.keys;}var l=i(m),n=l[0],p=l[1];var o=this.keys[n];while(o!=null&&p.length!=0){o=o[p.shift()];}return typeof o=="number"?o:o||"";},get:function(l){var m=this.GET(l);if(h(m,Object)){return jQuery.extend(true,{},m);}else{if(h(m,Array)){return m.slice(0);}}return m;},SET:function(m,r){var o=!h(r)?null:r;var l=i(m),n=l[0],q=l[1];var p=this.keys[n];this.keys[n]=k(p,q.slice(0),o);return this;},set:function(l,m){return this.copy().SET(l,m);},REMOVE:function(l){return this.SET(l,null).COMPACT();},remove:function(l){return this.copy().REMOVE(l);},EMPTY:function(){var l=this;jQuery.each(l.keys,function(m,n){delete l.keys[m];});return l;},load:function(l){var n=l.replace(/^.*?[#](.+?)(?:\?.+)?$/,"$1");var m=l.replace(/^.*?[?](.+?)(?:#.+)?$/,"$1");return new j(l.length==m.length?"":m,l.length==n.length?"":n);},empty:function(){return this.copy().EMPTY();},copy:function(){return new j(this);},COMPACT:function(){function l(o){var n=typeof o=="object"?h(o,Array)?[]:{}:o;if(typeof o=="object"){function m(r,p,q){if(h(r,Array)){r.push(q);}else{r[p]=q;}}jQuery.each(o,function(p,q){if(!h(q)){return true;}m(n,p,l(q));});}return n;}this.keys=l(this.keys);return this;},compact:function(){return this.copy().COMPACT();},toString:function(){var n=0,q=[],p=[],m=this;var l=function(r,s,t){if(!h(t)||t===false){return;}var u=[s];if(t!==true){u.push("=");u.push(encodeURIComponent(t));}r.push(u.join(""));};var o=function(s,r){var t=function(u){return !r||r==""?[u].join(""):[r,"[",u,"]"].join("");};jQuery.each(s,function(u,v){if(typeof v=="object"){o(v,t(u));}else{l(p,t(u),v);}});};o(this.keys);if(p.length>0){q.push(b);}q.push(p.join(d));return q.join("");}};return new j(location.search,location.hash);};}(jQuery.query||{});
/*-------------------------------------------------------------------- 
 * javascript method: "pxToEm"
 * by:
   Scott Jehl (scott@filamentgroup.com) 
   Maggie Wachs (maggie@filamentgroup.com)
   http://www.filamentgroup.com
 *
 * Copyright (c) 2008 Filament Group
 * Dual licensed under the MIT (filamentgroup.com/examples/mit-license.txt) and GPL (filamentgroup.com/examples/gpl-license.txt) licenses.
 *
 */;
Number.prototype.pxToEm=String.prototype.pxToEm=function(b){b=jQuery.extend({scope:"body",reverse:false},b);var e=(this=="")?0:parseFloat(this);var d;var c=function(){var g=document.documentElement;return self.innerWidth||(g&&g.clientWidth)||document.body.clientWidth;};if(b.scope=="body"&&$.browser.msie&&(parseFloat($("body").css("font-size"))/c()).toFixed(1)>0){var f=function(){return(parseFloat($("body").css("font-size"))/c()).toFixed(3)*16;};d=f();}else{d=parseFloat(jQuery(b.scope).css("font-size"));}var a=(b.reverse==true)?(e*d).toFixed(2)+"px":(e/d).toFixed(2)+"em";return a;};
/*------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 */
$.fn.equalHeights=function(b,c,a){$(this).each(function(){var d=0;var e;if(!a){e=$(this).children();}else{e=$(this).find(a);}e.each(function(f){if($(this).height()>d){d=$(this).height();}});if(c){d=d*(c/100);}if(!b||!Number.prototype.pxToEm){d=d.pxToEm();}if($.browser.msie&&$.browser.version==6){e.css({height:d});}e.css({"min-height":d});});return this;};
/******************************************************************************
 * Supersleight jQuery Plugin for Transparent PNGs in IE6
 * By Drew McLellan @ http://allinthehead.com/
 * http://allinthehead.com/retro/338/supersleight-jquery-plugin
 * 
 */;
jQuery.fn.supersleight=function(a){a=jQuery.extend({imgs:true,backgrounds:true,shim:"x.gif",apply_positioning:true},a);return this.each(function(){if(jQuery.browser.msie&&parseInt(jQuery.browser.version)<7&&parseInt(jQuery.browser.version)>4){jQuery(this).find("*").each(function(d,f){var b=jQuery(f);if(a.backgrounds&&b.css("background-image").match(/\.png/i)!==null){var c=b.css("background-image");var h=c.substring(5,c.length-2);var g=(b.css("background-repeat")=="no-repeat"?"crop":"scale");var e={filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+h+"', sizingMethod='"+g+"')","background-image":"url("+a.shim+")"};b.css(e);}if(a.imgs&&b.is("img[src$=png]")){var e={width:b.width()+"px",height:b.height()+"px",filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b.attr("src")+"', sizingMethod='scale')"};b.css(e).attr("src",a.shim);}if(a.applyPositioning&&b.is("a, input")&&b.css("position")===""){b.css("position","relative");}});}});};
/*!------------------------------------------------------------------- 
 * JQuery Plugin: "rowLabels"
 * by:	Kevin Teljeur (http://www.andagile.com)
 *
 */
jQuery.fn.rowLabels=function(a){settings=jQuery.extend({odd:true,even:true,first:true,last:true,iterate:false,child:"*",hover:false,click:false,oddClass:"odd",evenClass:"even",firstClass:"first",lastClass:"last",iterateClass:"item-",hoverClass:"hover",clickClass:"click",live:false},a);var b=function(c){if(settings.first){$(c).children(settings.child+":first").addClass(settings.firstClass);}if(settings.odd){$(c).children(settings.child+":odd").addClass(settings.oddClass);}if(settings.even){$(c).children(settings.child+":even").addClass(settings.evenClass);}if(settings.last){$(c).children(settings.child+":last").addClass(settings.lastClass);}if(settings.iterate){$(c).children(settings.child).each(function(e){var d=e+1;$(this).addClass(settings.iterateClass+d);});}if(settings.hover){$(c).children(settings.child).each(function(){if(jQuery.livequery){$(this).livequery(function(d){$(this).hover(function(){$(this).addClass(settings.hoverClass);},function(){$(this).removeClass(settings.hoverClass);});});}else{if(jQuery.live){$(this).bind("mouseover",function(d){$(this).addClass(settings.hoverClass);});$(this).bind("mouseleave",function(d){$(this).removeClass(settings.hoverClass);});}else{$(this).bind("mouseover mouseleave",function(d){$(this).toggleClass(settings.hoverClass);});}}});}};$(this).each(function(c){var d=$(this);if(jQuery.livequery){d.livequery(function(){b($(this));});}else{b(d);}});};
/**
* Cornerz 0.6 - Bullet Proof Corners
* Jonah Fox (jonah@parkerfox.co.uk) 2008
*/
(function(a){if(a.browser.msie&&document.namespaces.v==null){document.namespaces.add("v","urn:schemas-microsoft-com:vml","#default#VML");}a.fn.cornerz=function(d){function g(F,n,j,A,u,q){var D,v,o,C,z,B,w,k=1.57,s="position:absolute;";if(F){D=-k;z=j;w=0;s+="top:-"+A+"px;";}else{D=k;z=0;w=j;s+="bottom:-"+A+"px;";}if(n){v=k*2;C=j;B=0;s+="left:-"+A+"px;";}else{v=0;C=0;B=j;s+="right:-"+A+"px;";}var m=a("<canvas width="+j+"px height="+j+"px style='"+s+"' ></canvas>");var E=m[0].getContext("2d");E.beginPath();E.lineWidth=A*2;E.arc(C,z,j,D,v,!(F^n));E.strokeStyle=u;E.stroke();E.lineWidth=0;E.lineTo(B,w);E.fillStyle=q;E.fill();return m;}function i(j,m,o,n,l){var k=a("<div style='display: inherit' />");a.each(j.split(" "),function(){k.append(g(this[0]=="t",this[1]=="l",m,o,n,l));});return k;}function f(j,s,q,n,p,k,u){var o=n-p-u;var v=n-k;return"<v:arc filled='False' strokeweight='"+s+"px' strokecolor='"+q+"' startangle='0' endangle='361' style=' top:"+v+"px;left: "+o+"px;width:"+j+"px; height:"+j+"px' />";}function c(k,n,p,o,l,j){var m="<div style='text-align:left; '>";a.each(a.trim(k).split(" "),function(){var r,t=1,q=1,s=0;if(this.charAt(0)=="t"){r="top:-"+p+"px;";}else{r="bottom:-"+p+"px;";q=n+1;}if(this.charAt(1)=="l"){r+="left:-"+p+"px;";}else{r+="right:-"+(p)+"px; ";t=n;s=1;}m+="<div style='"+r+"; position: absolute; overflow:hidden; width:"+n+"px; height: "+n+"px;'>";m+="<v:group  style='width:1000px;height:1000px;position:absolute;' coordsize='1000,1000' >";m+=f(n*3,n+p,l,-n/2,t,q,s);if(p>0){m+=f(n*2-p,p,o,Math.floor(p/2+0.5),t,q,s);}m+="</v:group>";m+="</div>";});m+="</div>";return m;}var e={corners:"tl tr bl br",radius:10,background:"white",borderWidth:0,fixIE:true};a.extend(e,d||{});var b=function(k,m,j){var l=parseInt(k.css(m),10)||0;k.css(m,j+l);};return this.each(function(){var j=a(this);var n=e.radius*1;var q=(e.borderWidth||parseInt(j.css("borderTopWidth"),10)||0)*1;var l=e.background;var p=e.borderColor;p=p||(q>0?j.css("borderTopColor"):l);var m=e.corners;if(a.browser.msie){h=c(m,n,q,p,l,a(this).width());this.insertAdjacentHTML("beforeEnd",h);}else{j.append(i(m,n,q,p,l));}if(this.style.position!="absolute"){this.style.position="relative";}this.style.zoom=1;if(a.browser.msie&&e.fixIE){var k=j.outerWidth();var o=j.outerHeight();if(k%2==1){b(j,"padding-right",1);b(j,"margin-right",1);}if(o%2==1){b(j,"padding-bottom",1);b(j,"margin-bottom",1);}}});};})(jQuery);

