From: <Saved by Windows Internet Explorer 7>
Subject: BrainJar.com: CSS Positioning
Date: Mon, 16 Feb 2009 11:15:15 -0800
MIME-Version: 1.0
Content-Type: multipart/related;
	type="text/html";
	boundary="----=_NextPart_000_0045_01C99027.D7A50410"
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350

This is a multi-part message in MIME format.

------=_NextPart_000_0045_01C99027.D7A50410
Content-Type: text/html;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.brainjar.com/css/positioning/

=EF=BB=BF<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" =
"http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!--*********************************************************************=
***--><!--* Copyright 2000 by Mike Hall                                  =
        *--><!--* Please see http://www.brainjar.com for terms of use.   =
              =
*--><!--*****************************************************************=
*******--><HTML=20
lang=3Den xml:lang=3D"en" =
xmlns=3D"http://www.w3.org/1999/xhtml"><HEAD><TITLE>BrainJar.com: CSS =
Positioning</TITLE>
<META http-equiv=3DContent-Type =
content=3Dtext/html;charset=3Dutf-8><LINK=20
href=3D"http://www.brainjar.com/common/article.css" type=3Dtext/css=20
rel=3Dstylesheet><LINK=20
href=3D"http://www.brainjar.com/css/positioning/illustrations.css" =
type=3Dtext/css=20
rel=3Dstylesheet>
<META content=3D"MSHTML 6.00.6000.16788" name=3DGENERATOR></HEAD>
<BODY>
<DIV id=3Dadsense=20
style=3D"RIGHT: 0.5em; WIDTH: 160px; POSITION: absolute; TOP: 1.5em; =
HEIGHT: 600px">
<SCRIPT type=3Dtext/javascript><!--
		google_ad_client =3D "pub-0082593088265184";
		/* General */
		google_ad_slot =3D "9069151307";
		google_ad_width =3D 160;
		google_ad_height =3D 600;
		//-->
	</SCRIPT>

<SCRIPT src=3D"http://pagead2.googlesyndication.com/pagead/show_ads.js"=20
type=3Dtext/javascript></SCRIPT>
</DIV>
<DIV id=3Dmain>
<DIV class=3DnavBar><A href=3D"http://www.brainjar.com/">Home</A> | =
<SPAN=20
class=3DnavCurrentPage>1</SPAN> | <A=20
href=3D"http://www.brainjar.com/css/positioning/default2.asp">2</A> | <A =

href=3D"http://www.brainjar.com/css/positioning/default3.asp">3</A> | <A =

href=3D"http://www.brainjar.com/css/positioning/default4.asp">4</A> | <A =

href=3D"http://www.brainjar.com/css/positioning/default5.asp">5</A> =
</DIV>
<DIV id=3Dcontent>
<H2>CSS Positioning</H2><SPAN class=3DsideBox>Review the <A=20
href=3D"http://www.w3.org/TR/CSS21/">W3C CSS standard</A> =
recommendation.</SPAN>=20
<P>To use CSS for layout effectively, it helps to know how it's used to =
position=20
page content. This article gives an overview of the methods and rules =
that=20
govern visual rendering in the CSS2 specification. It also points out =
some=20
things to watch out for.</P>
<P>Although the specification applies to any device for displaying web =
pages,=20
this article focuses on how it works in browsers. Many details are left =
out for=20
the sake of simplicity. For a definitive reference, see the standards=20
publication.</P>
<P>It's important to remember that a given browser may not support a =
given=20
feature or may even implement it incorrectly. Also, there is some leeway =

provided within the standards where individual browsers are free to deal =
with=20
situations as they please. Where appropriate these inconsistencies are=20
noted.</P>
<H3>The Box Model</H3>
<P>To understand positioning in CSS you must first understand the box =
model. For=20
display purposes, every element in a document is considered to be a =
rectangular=20
box which has a content area surrounded by padding, a border and =
margins. The=20
illustration below shows these various parts.</P>
<DIV class=3DmarginBlock>
<DIV class=3DcontainingBlock>
<DIV class=3DcontentBlock>content content content content content =
content content=20
content content content content content content content content content =
content=20
content content content content content content content content content =
content=20
content content content content content content content content content=20
</DIV></DIV></DIV>
<P style=3D"TEXT-ALIGN: center"><SPAN=20
style=3D"BORDER-RIGHT: #000000 1px dotted; BORDER-TOP: #000000 1px =
dotted; BORDER-LEFT: #000000 1px dotted; BORDER-BOTTOM: #000000 1px =
dotted">&nbsp;&nbsp;&nbsp;</SPAN>=20
margin <SPAN=20
style=3D"BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid; =
BACKGROUND-COLOR: #000000">&nbsp;&nbsp;&nbsp;</SPAN>=20
border <SPAN=20
style=3D"BORDER-RIGHT: #eeeeee 1px solid; BORDER-TOP: #eeeeee 1px solid; =
BORDER-LEFT: #eeeeee 1px solid; BORDER-BOTTOM: #eeeeee 1px solid; =
BACKGROUND-COLOR: #d0d0d0">&nbsp;&nbsp;&nbsp;</SPAN>=20
padding <SPAN style=3D"BACKGROUND-COLOR: =
#f0f0f0">&nbsp;&nbsp;&nbsp;</SPAN>=20
content </P>
<P>Margins are always transparent. Borders come in various styles. =
Background=20
settings for an element apply to the the area just inside the borders =
which=20
includes both the padding and content areas. For purposes of =
illustration=20
however, the padding area is shown in a slightly darker color.</P>
<P>When referring to boxes throughout this article, the term "margin =
edge,"=20
"border edge", etc. means the the outer boundary of the corresponding =
box area=20
as shown above.</P>
<P>Margins, borders and padding are all optional but for purposes of =
calculating=20
positions and sizes they are given a default width of zero if not =
specified.=20
Different widths can be set for each individual side (top, right, bottom =
and=20
left) if desired. Margins can even have negative values.</P>
<P>The width and height of each box is equal to the width and height of =
the=20
outer margin box. Note that this is not the necessarily the same as the =
width=20
and height of the content area.</P>
<P>A box can contain any number of other boxes, creating a hierarchy of =
boxes=20
that corresponds to the nesting of page elements. The browser window =
serves as=20
the root element for this hierarchy.</P>
<H4>Box Types</H4>
<P>There are two basic types of boxes, <I>block</I> and <I>inline.</I> =
Block=20
boxes are generated by elements such as P, DIV or TABLE. Inline boxes =
are=20
generated by tags such as B, I or SPAN and actual content like text and=20
images.</P>
<P>The box type may also be set using the <CODE>display</CODE> property. =
Setting=20
a value of <CODE>block</CODE> on an inline element, for example, will =
cause it=20
to be treated as a block element. Note that if you set the display to=20
<CODE>none,</CODE> no box is created. The browser acts as if the element =
did not=20
exist. Likewise, any nested elements are ignored as well, even if they=20
specifically declare some other display value.</P>
<DIV class=3DnoteBox>There are other types of boxes which apply to =
special=20
elements like lists and tables. However, these are ultimately treated as =
block=20
or inline boxes for positioning purposes. As such, these other box types =
not=20
covered here. </DIV>
<H4>Containing Blocks</H4>
<P>Block boxes act as a <I>containing block</I> for any boxes within =
them. For=20
example, in this code:</P><PRE>&lt;div&gt;
This is the first sentence.
&lt;p&gt;This is the second sentence.&lt;/p&gt;
&lt;/div&gt;
</PRE>
<P>the DIV element establishes a containing block for both the first =
string of=20
text and the P element. The P element in turn creates a containing block =
for the=20
second text string.</P>
<P>It's interesting to note that while the text of the first sentence in =
the=20
above example generates an inline box, there is considered to be block =
box=20
surrounding it. These "anonymous" block boxes are used to simplify the=20
positioning process. The result is that a block box will only contain =
either all=20
inline boxes or all block boxes, even if some of those block boxes only =
act as a=20
wrapper for an inline box.</P>
<P>This containing block is used in determining both the position of the =
boxes=20
within it and in some cases, the dimensions of those boxes. For example, =
if an=20
element has a style setting of <CODE>width:50%;</CODE> its width will be =
set to=20
half the width of its containing block.</P>
<P>For any element that is not absolutely positioned, the containing =
block is=20
considered to be the content edge of its most recent, block-level =
ancestor. If=20
none exists, the browser window serves as the containing block. =
Absolutely=20
positioned elements are discussed separately.</P>
<H4>Positioning Schemes</H4>
<P>There are three positioning modes or schemes in CSS2: normal, float =
and=20
absolute. Each has its own set of rules. Every box is positioned using =
one of=20
these schemes but different boxes will use different schemes depending =
on their=20
<CODE>position</CODE> and <CODE>float</CODE> style settings.</P>
<H3>Normal Flow</H3>
<P>Normal flow is the default scheme used for positioning. It applies to =
any=20
element that does not specify <CODE>position:absolute</CODE> or=20
<CODE>fixed</CODE> and is not floated.</P>
<P>In this scheme, block boxes flow vertically starting at the top of =
their=20
containing block with each placed directly below the preceding one. =
Inline boxes=20
flow horizontally from left to right.</P>
<P>You should note that vertical margins are collapsed in the normal =
flow. That=20
is, instead of adding the bottom margin of a box to the top margin of =
the one=20
immediately below it, only the larger of the two values is used, as =
illustrated=20
here.</P>
<DIV class=3DmarginBlock=20
style=3D"BORDER-BOTTOM-WIDTH: 0px; PADDING-BOTTOM: 0px; WIDTH: 50%">
<DIV class=3DcontainingBlock>
<DIV class=3DcontentBlock>content content content content content =
content content=20
content content </DIV></DIV></DIV>
<DIV class=3DmarginBlock=20
style=3D"PADDING-RIGHT: 24px; PADDING-LEFT: 24px; PADDING-BOTTOM: 24px; =
WIDTH: 75%; PADDING-TOP: 24px">
<DIV class=3DcontainingBlock>
<DIV class=3DcontentBlock>content content content content content =
content content=20
content content content content content content content content content =
content=20
content </DIV></DIV></DIV>
<P>Horizontal margins, however, are never collapsed.</P>
<P class=3Dfooter><A=20
href=3D"http://www.brainjar.com/css/positioning/default2.asp">Next</A> =
</P></DIV>
<DIV class=3DnavBar><SPAN class=3DnavCurrentPage=20
style=3D"FLOAT: left">BrainJar.com&nbsp;=C2=B7&nbsp;=C2=A91999-2009 by =
Mike=20
Hall&nbsp;</SPAN><A href=3D"http://www.brainjar.com/">Home</A> | <SPAN=20
class=3DnavCurrentPage>1</SPAN> | <A=20
href=3D"http://www.brainjar.com/css/positioning/default2.asp">2</A> | <A =

href=3D"http://www.brainjar.com/css/positioning/default3.asp">3</A> | <A =

href=3D"http://www.brainjar.com/css/positioning/default4.asp">4</A> | <A =

href=3D"http://www.brainjar.com/css/positioning/default5.asp">5</A>=20
</DIV></DIV></BODY></HTML>

------=_NextPart_000_0045_01C99027.D7A50410
Content-Type: application/x-css
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.brainjar.com/common/article.css

A {
	FONT-WEIGHT: bold; COLOR: #0070b0; TEXT-DECORATION: none
}
A:hover {
	COLOR: #e04000
}
BODY {
	MARGIN-TOP: 1.5em; FONT-SIZE: 10pt; COLOR: #000000; FONT-FAMILY: Arial, =
Helvetica, sans-serif; BACKGROUND-COLOR: #f0c080; TEXT-ALIGN: center
}
H2 {
	MARGIN-TOP: 0px; FONT-SIZE: 140%
}
H3 {
	FONT-SIZE: 120%
}
H4 {
	FONT-SIZE: 100%
}
INPUT {
	BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 2px; PADDING-LEFT: 2px; =
BORDER-LEFT-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; PADDING-BOTTOM: 2px; =
PADDING-TOP: 2px; BORDER-RIGHT-WIDTH: 1px
}
TEXTAREA {
	BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 2px; PADDING-LEFT: 2px; =
BORDER-LEFT-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; PADDING-BOTTOM: 2px; =
PADDING-TOP: 2px; BORDER-RIGHT-WIDTH: 1px
}
INPUT.button {
	BORDER-TOP-WIDTH: 2px; FONT-WEIGHT: bold; BORDER-LEFT-WIDTH: 2px; =
BORDER-BOTTOM-WIDTH: 2px; FONT-FAMILY: Arial, Helvetica, sans-serif; =
BORDER-RIGHT-WIDTH: 2px
}
PRE {
	FONT-SIZE: 80%; MARGIN-LEFT: 1em; COLOR: #006060; FONT-FAMILY: "Courier =
New", Courier, monospace
}
PRE I {
	COLOR: #c06000
}
PRE VAR {
	COLOR: #c06000
}
TD {
	FONT-SIZE: 10pt; VERTICAL-ALIGN: top; TEXT-ALIGN: left
}
TH {
	FONT-SIZE: 10pt; VERTICAL-ALIGN: top; TEXT-ALIGN: left
}
TH {
	FONT-WEIGHT: bold; TEXT-ALIGN: left
}
TABLE.boxed {
	border-spacing: 2px; empty-cells: hide
}
TD.boxed {
	BORDER-RIGHT: #000000 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: =
#000000 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 2px; BORDER-LEFT: =
#000000 1px solid; COLOR: #000000; PADDING-TOP: 2px; BORDER-BOTTOM: =
#000000 1px solid; BACKGROUND-COLOR: #ffffff
}
TH.boxed {
	BORDER-RIGHT: #000000 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: =
#000000 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 2px; BORDER-LEFT: =
#000000 1px solid; COLOR: #000000; PADDING-TOP: 2px; BORDER-BOTTOM: =
#000000 1px solid; BACKGROUND-COLOR: #ffffff
}
TH.boxedHeader {
	BORDER-RIGHT: #000000 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: =
#000000 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 2px; BORDER-LEFT: =
#000000 1px solid; COLOR: #000000; PADDING-TOP: 2px; BORDER-BOTTOM: =
#000000 1px solid; BACKGROUND-COLOR: #ffffff
}
TH.boxed {
	BACKGROUND-COLOR: #c0c0c0
}
TH.boxedHeader {
	COLOR: #ffffff; BACKGROUND-COLOR: #808080
}
UL {
	LIST-STYLE-TYPE: square
}
#main {
	MARGIN: 0px auto; WIDTH: 42em; TEXT-ALIGN: left
}
.navBar {
	BORDER-RIGHT: #000000 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: =
#000000 1px solid; PADDING-LEFT: 8px; FONT-SIZE: 8pt; PADDING-BOTTOM: =
2px; MARGIN: 0px; BORDER-LEFT: #000000 1px solid; COLOR: #603000; =
PADDING-TOP: 2px; BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: =
#e0b080; TEXT-ALIGN: right
}
.navCurrentPage {
	FONT-WEIGHT: bold; COLOR: #a07040
}
#content {
	BORDER-RIGHT: #000000 1px solid; PADDING-RIGHT: 1em; =
BACKGROUND-POSITION: -30% 0%; BORDER-TOP: #000000 0px solid; =
PADDING-LEFT: 1em; BACKGROUND-IMAGE: url(/graphics/brainbg.gif); =
PADDING-BOTTOM: 0.25em; BORDER-LEFT: #000000 1px solid; PADDING-TOP: =
0.5em; BORDER-BOTTOM: #000000 0px solid; BACKGROUND-REPEAT: no-repeat; =
BACKGROUND-COLOR: #ffffff
}
.sideBox {
	BORDER-RIGHT: #d0a070 1px solid; PADDING-RIGHT: 0.5em; BORDER-TOP: =
#d0a070 1px solid; PADDING-LEFT: 0.5em; FLOAT: right; PADDING-BOTTOM: =
0.5em; MARGIN: 0px 0px 8px 8px; BORDER-LEFT: #d0a070 1px solid; WIDTH: =
12em; PADDING-TOP: 0.5em; BORDER-BOTTOM: #d0a070 1px solid; =
BACKGROUND-COLOR: #f0e0d0
}
.noteBox {
	BORDER-RIGHT: #909090 1px solid; PADDING-RIGHT: 0.5em; BORDER-TOP: =
#909090 1px solid; PADDING-LEFT: 0.5em; PADDING-BOTTOM: 0.5em; =
BORDER-LEFT: #909090 1px solid; PADDING-TOP: 0.5em; BORDER-BOTTOM: =
#909090 1px solid; BACKGROUND-COLOR: #f0f0f0
}
.footer {
	MARGIN-BOTTOM: 0px
}

@media Print   =20
{
#adsense {
	DISPLAY: none
}
A {
	FONT-WEIGHT: normal! important; COLOR: #808080! important
}
BODY {
	FONT-SIZE: 10pt! important; FONT-FAMILY: Arial, Helvetica, sans-serif! =
important
}
TD {
	FONT-SIZE: 10pt! important; FONT-FAMILY: Arial, Helvetica, sans-serif! =
important
}
TH {
	FONT-SIZE: 10pt! important; FONT-FAMILY: Arial, Helvetica, sans-serif! =
important
}
BODY {
	COLOR: #000000! important; BACKGROUND-COLOR: #ffffff! important
}
INPUT {
	COLOR: #000000! important; BACKGROUND-COLOR: #ffffff! important
}
TEXTAREA {
	COLOR: #000000! important; BACKGROUND-COLOR: #ffffff! important
}
INPUT {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
BORDER-LEFT: #000000 1px solid; COLOR: #000000! important; =
BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: #ffffff! important
}
TEXTAREA {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
BORDER-LEFT: #000000 1px solid; COLOR: #000000! important; =
BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: #ffffff! important
}
INPUT.button {
	BACKGROUND-COLOR: #e0e0e0! important
}
TEXTAREA {
	SCROLLBAR-BASE-COLOR: #e0e0e0! important
}
PRE {
	COLOR: #000000! important
}
PRE I {
	COLOR: #000000! important
}
TD.boxed {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
BORDER-LEFT: #000000 1px solid; COLOR: #000000! important; =
BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: #ffffff! important
}
TH.boxed {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
BORDER-LEFT: #000000 1px solid; COLOR: #000000! important; =
BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: #e0e0e0! important
}
TH.boxedHeader {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
BORDER-LEFT: #000000 1px solid; COLOR: #000000! important; =
BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: #c0c0c0! important
}
#main {
	COLOR: #000000! important; BORDER-TOP-STYLE: none! important; =
BORDER-RIGHT-STYLE: none! important; BORDER-LEFT-STYLE: none! important; =
BACKGROUND-COLOR: #ffffff! important; BORDER-BOTTOM-STYLE: none! =
important
}
#content {
	COLOR: #000000! important; BORDER-TOP-STYLE: none! important; =
BORDER-RIGHT-STYLE: none! important; BORDER-LEFT-STYLE: none! important; =
BACKGROUND-COLOR: #ffffff! important; BORDER-BOTTOM-STYLE: none! =
important
}
#content {
	BACKGROUND-IMAGE: none! important
}
.navBar {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; =
FONT-SIZE: 8pt! important; BORDER-LEFT: #000000 1px solid; COLOR: =
#000000! important; BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: =
#e0e0e0! important
}
.navCurrentPage {
	COLOR: #000000! important
}
.sideBox {
	BORDER-LEFT-COLOR: #000000! important; BORDER-BOTTOM-COLOR: #000000! =
important; COLOR: #000000! important; BORDER-TOP-COLOR: #000000! =
important; BACKGROUND-COLOR: #e0e0e0! important; BORDER-RIGHT-COLOR: =
#000000! important
}
.noteBox {
	BORDER-LEFT-COLOR: #000000! important; BORDER-BOTTOM-COLOR: #000000! =
important; COLOR: #000000! important; BORDER-TOP-COLOR: #000000! =
important; BACKGROUND-COLOR: #e0e0e0! important; BORDER-RIGHT-COLOR: =
#000000! important
}

}

------=_NextPart_000_0045_01C99027.D7A50410
Content-Type: application/x-css
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.brainjar.com/css/positioning/illustrations.css

.marginBlock {
	BORDER-RIGHT: #000000 1px dotted; PADDING-RIGHT: 1em; BORDER-TOP: =
#000000 1px dotted; PADDING-LEFT: 1em; FONT-WEIGHT: normal; =
PADDING-BOTTOM: 1em; BORDER-LEFT: #000000 1px dotted; PADDING-TOP: 1em; =
BORDER-BOTTOM: #000000 1px dotted
}
.containingBlock {
	BORDER-RIGHT: #000000 4px solid; PADDING-RIGHT: 1em; BORDER-TOP: =
#000000 4px solid; PADDING-LEFT: 1em; PADDING-BOTTOM: 1em; BORDER-LEFT: =
#000000 4px solid; PADDING-TOP: 1em; BORDER-BOTTOM: #000000 4px solid; =
BACKGROUND-COLOR: #d0d0d0
}
.contentBlock {
	FONT-SIZE: 12pt; BACKGROUND-COLOR: #f0f0f0
}

------=_NextPart_000_0045_01C99027.D7A50410
Content-Type: application/x-js
Content-Transfer-Encoding: quoted-printable
Content-Location: http://pagead2.googlesyndication.com/pagead/show_ads.js

(function(){=0A=
var g=3Dfalse,h=3Dnull,m=3Dtrue,aa=3D(new Date).getTime();var =
ba=3D{google_ad_channel:"channel",google_ad_host:"host",google_ad_host_ch=
annel:"h_ch",google_ad_host_tier_id:"ht_id",google_ad_region:"region",goo=
gle_ad_section:"region",google_ad_type:"ad_type",google_adtest:"adtest",g=
oogle_allow_expandable_ads:"ea",google_alternate_ad_url:"alternate_ad_url=
",google_alternate_color:"alt_color",google_bid:"bid",google_city:"gcs",g=
oogle_color_bg:"color_bg",google_color_border:"color_border",google_color=
_line:"color_line",google_color_link:"color_link",google_color_text:"colo=
r_text",=0A=
google_color_url:"color_url",google_contents:"contents",google_country:"g=
l",google_cust_age:"cust_age",google_cust_ch:"cust_ch",google_cust_gender=
:"cust_gender",google_cust_id:"cust_id",google_cust_interests:"cust_inter=
ests",google_cust_job:"cust_job",google_cust_l:"cust_l",google_cust_lh:"c=
ust_lh",google_cust_u_url:"cust_u_url",google_disable_video_autoplay:"dis=
able_video_autoplay",google_ed:"ed",google_encoding:"oe",google_feedback:=
"feedback_link",google_flash_version:"flash",google_gl:"gl",google_hints:=
"hints",=0A=
google_kw:"kw",google_kw_type:"kw_type",google_language:"hl",google_page_=
url:"url",google_referrer_url:"ref",google_region:"gr",google_reuse_color=
s:"reuse_colors",google_safe:"adsafe",google_targeting:"targeting",google=
_ui_features:"ui",google_ui_version:"uiv",google_tag_js_version:"gut",goo=
gle_video_doc_id:"video_doc_id",google_video_product_type:"video_product_=
type"},ca=3D{google_ad_format:"format",google_ad_output:"output",google_a=
d_callback:"callback",google_ad_override:"google_ad_override",google_ad_s=
lot:"slotname",=0A=
google_analytics_uacct:"ga_wpids",google_correlator:"correlator",google_c=
pa_choice:"cpa_choice",google_ctr_threshold:"ctr_t",google_image_size:"im=
age_size",google_last_modified_time:"lmt",google_max_num_ads:"num_ads",go=
ogle_max_radlink_len:"max_radlink_len",google_num_radlinks:"num_radlinks"=
,google_num_radlinks_per_unit:"num_radlinks_per_unit",google_only_ads_wit=
h_video:"only_ads_with_video",google_page_location:"loc",google_rl_dest_u=
rl:"rl_dest_url",google_rl_filtering:"rl_filtering",google_rl_mode:"rl_mo=
de",=0A=
google_rt:"rt",google_skip:"skip"},da=3D{google_only_pyv_ads:"pyv"};funct=
ion ea(a){return =
ba[a]||ca[a]||da[a]||h};document.URL&&(document.URL.indexOf("?google_debu=
g")>0||document.URL.indexOf("&google_debug")>0);function =
n(){this.I=3Dthis.xb();this.Ta=3Dg;if(!this.I)this.Ta=3Dthis.ab()}n.proto=
type.ia=3D"__gads=3D";n.prototype.S=3D"GoogleAdServingTest=3D";n.prototyp=
e.hb=3Dfunction(){return =
this.I};n.prototype.setCookieInfo=3Dfunction(a){this.B=3Da._cookies_[0];i=
f(this.B!=3Dh){this.I=3Dthis.B._value_;this.Gb()}};n.prototype.db=3Dfunct=
ion(a){var b=3D(new Date).valueOf(),c=3Dnew Date;c.setTime(b+a);return =
c};=0A=
n.prototype.cb=3Dfunction(a){if(!(this.I!=3Dh||!this.Ta)){var =
b=3D"script",c=3Ddocument.domain,d=3D"http://partner.googleadservices.com=
/gampad/cookie.js?callback=3D_GA_googleCookieHelper.setCookieInfo&client=3D=
"+fa(a)+"&domain=3D"+fa(c);document.write("<"+b+' =
src=3D"'+d+'"></'+b+">")}};n.prototype.ab=3Dfunction(){document.cookie=3D=
this.S+"Good";var a=3Dthis.Fa(this.S),b=3Da=3D=3D"Good";if(b){var =
c=3Dthis.db(-1);document.cookie=3Dthis.S+"; =
expires=3D"+c.toGMTString()}return b};n.prototype.xb=3Dfunction(){var =
a=3Dthis.Fa(this.ia);return a};=0A=
n.prototype.Fa=3Dfunction(a){var =
b=3Ddocument.cookie,c=3Db.indexOf(a),d=3Dh;if(c!=3D-1){var =
e=3Dc+a.length,f=3Db.indexOf(";",e);if(f=3D=3D-1)f=3Db.length;d=3Db.subst=
ring(e,f)}return =
d};n.prototype.Gb=3Dfunction(){if(!(this.B=3D=3Dh))if(!(this.I=3D=3Dh)){v=
ar a=3Dnew Date;a.setTime(1000*this.B._expires_);var =
b=3Dthis.B._domain_,c=3Dthis.ia+this.I+"; expires=3D"+a.toGMTString()+"; =
path=3D"+this.B._path_+"; domain=3D."+b;document.cookie=3Dc}};function =
ga(a,b){var c;return a?(c=3DparseFloat(a))?c:b:b}=0A=
function ha(a,b){if(a=3D=3D"true")return m;if(a=3D=3D"false")return =
g;return b}=0A=
function ia(){if(navigator.plugins&&navigator.mimeTypes.length){var =
a=3Dnavigator.plugins["Shockwave Flash"];if(a&&a.description)return =
a.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s)+r/,".")}else =
if(navigator.userAgent&&navigator.userAgent.indexOf("Windows =
CE")>=3D0){var b=3D3,c=3D1;for(;c;)try{c=3Dnew =
ActiveXObject("ShockwaveFlash.ShockwaveFlash."+(b+1));b++}catch(d){c=3Dh}=
return b.toString()}else if(ja()){var c=3Dh;try{c=3Dnew =
ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(d){var =
b=3D0;try{c=3Dnew ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");=0A=
b=3D6;c.AllowScriptAccess=3D"always"}catch(d){if(b=3D=3D6)return =
b.toString()}try{c=3Dnew =
ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(d){}}if(c!=3Dh){var =
b=3Dc.GetVariable("$version").split(" ")[1];return =
b.replace(/,/g,".")}}return"0"};var =
ka=3Dka||{},r=3Dthis,ma=3Dfunction(a,b,c){var =
d=3Da.split("."),e=3Dc||r,f;!(d[0]in e)&&e.execScript&&e.execScript("var =
"+d[0]);for(;d.length&&(f=3Dd.shift());)if(!d.length&&la(b))e[f]=3Db;else=
 if(e[f])e=3De[f];else{e[f]=3D{};e=3De[f]}},na=3Dfunction(a,b){var =
c=3Da.split("."),d=3Db||r,e;for(;e=3Dc.shift();)if(d[e])d=3Dd[e];else =
return h;return d},s=3Dfunction(a){var b=3Dtypeof =
a;if(b=3D=3D"object")if(a){if(typeof a.length=3D=3D"number"&&typeof =
a.splice!=3D"undefined"&&!pa(a,"length"))return"array";if(typeof =
a.call!=3D"undefined")return"function"}else return"null";=0A=
else if(b=3D=3D"function"&&typeof =
a.call=3D=3D"undefined")return"object";return b},qa=3Dfunction(a,b){if(b =
in a)for(var c in =
a)if(c=3D=3Db&&Object.prototype.hasOwnProperty.call(a,b))return m;return =
g};if(Object.prototype.propertyIsEnumerable)var =
pa=3Dfunction(a,b){return a instanceof =
Object?Object.prototype.propertyIsEnumerable.call(a,b):qa(a,b)};else =
pa=3Dqa;var la=3Dfunction(a){return typeof a!=3D"undefined"};=0A=
var ra=3Dfunction(a){return s(a)=3D=3D"function"},sa=3Dfunction(a){var =
b=3Ds(a);return =
b=3D=3D"object"||b=3D=3D"array"||b=3D=3D"function"},va=3Dfunction(a){if(a=
.hasOwnProperty&&a.hasOwnProperty(ta)){var b=3Da[ta];if(b)return =
b}a[ta]||(a[ta]=3D++ua);return =
a[ta]},ta=3D"closure_hashCode_",ua=3D0,wa=3Dfunction(a){var =
b=3Ds(a);if(b=3D=3D"object"||b=3D=3D"array"){if(a.clone)return =
a.clone.call(a);var c=3Db=3D=3D"array"?[]:{};for(var d in =
a)c[d]=3Dwa(a[d]);return c}return a},t=3Dfunction(a,b){var =
c=3Da.Hb;if(arguments.length>2){var =
d=3DArray.prototype.slice.call(arguments,=0A=
2);c&&d.unshift.apply(d,c);c=3Dd}b=3Da.Jb||b;a=3Da.Ib||a;var =
e,f=3Db||r;e=3Dc?function(){var =
j=3DArray.prototype.slice.call(arguments);j.unshift.apply(j,c);return =
a.apply(f,j)}:function(){return =
a.apply(f,arguments)};e.Hb=3Dc;e.Jb=3Db;e.Ib=3Da;return =
e},xa=3DDate.now||function(){return(new =
Date).getTime()},ya=3Dfunction(a,b,c){ma(a,b,c)},u=3Dfunction(a,b){functi=
on c(){}c.prototype=3Db.prototype;a.o=3Db.prototype;a.prototype=3Dnew =
c;a.prototype.constructor=3Da};var =
za=3Dfunction(a,b,c){if(a.indexOf)return =
a.indexOf(b,c);if(Array.indexOf)return Array.indexOf(a,b,c);var =
d=3Dc=3D=3Dh?0:c<0?Math.max(0,a.length+c):c,e=3Dd;for(;e<a.length;e++)if(=
e in a&&a[e]=3D=3D=3Db)return e;return-1},Aa=3Dfunction(a,b){var =
c=3Dza(a,b),d;if(d=3Dc!=3D-1)Array.prototype.splice.call(a,c,1).length=3D=
=3D1;return d};var =
Ba=3Dfunction(a,b){this.x=3Dla(a)?a:0;this.y=3Dla(b)?b:0};Ba.prototype.cl=
one=3Dfunction(){return new =
Ba(this.x,this.y)};Ba.prototype.toString=3Dfunction(){return"("+this.x+",=
 "+this.y+")"};var =
v=3Dfunction(a,b){this.width=3Da;this.height=3Db};v.prototype.clone=3Dfun=
ction(){return new =
v(this.width,this.height)};v.prototype.toString=3Dfunction(){return"("+th=
is.width+" x =
"+this.height+")"};v.prototype.ceil=3Dfunction(){this.width=3DMath.ceil(t=
his.width);this.height=3DMath.ceil(this.height);return =
this};v.prototype.floor=3Dfunction(){this.width=3DMath.floor(this.width);=
this.height=3DMath.floor(this.height);return this};=0A=
v.prototype.round=3Dfunction(){this.width=3DMath.round(this.width);this.h=
eight=3DMath.round(this.height);return =
this};v.prototype.scale=3Dfunction(a){this.width*=3Da;this.height*=3Da;re=
turn this};var Ca=3Dfunction(a){return =
a.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")},Da=3Dfunction(a,b){var =
c=3Db.length,d=3D0;for(;d<c;d++){var =
e=3Dc=3D=3D1?b:b.charAt(d);if(a.charAt(0)=3D=3De&&a.charAt(a.length-1)=3D=
=3De)return a.substring(1,a.length-1)}return a};=0A=
var Fa=3Dfunction(a,b){var =
c=3D0,d=3DCa(String(a)).split("."),e=3DCa(String(b)).split("."),f=3DMath.=
max(d.length,e.length),j=3D0;for(;c=3D=3D0&&j<f;j++){var =
i=3Dd[j]||"",l=3De[j]||"",k=3Dnew RegExp("(\\d*)(\\D*)","g"),o=3Dnew =
RegExp("(\\d*)(\\D*)","g");do{var =
p=3Dk.exec(i)||["","",""],q=3Do.exec(l)||["","",""];if(p[0].length=3D=3D0=
&&q[0].length=3D=3D0)break;var =
K=3Dp[1].length=3D=3D0?0:parseInt(p[1],10),N=3Dq[1].length=3D=3D0?0:parse=
Int(q[1],10);c=3DEa(K,N)||Ea(p[2].length=3D=3D0,q[2].length=3D=3D0)||Ea(p=
[2],q[2])}while(c=3D=3D0)}return c},Ea=3Dfunction(a,b){if(a<=0A=
b)return-1;else if(a>b)return 1;return 0};var =
Ga,Ha,Ia,Ja,Ka,La,Ma,Na,Oa,Pa=3Dfunction(){return =
r.navigator?r.navigator.userAgent:h};var =
Qa=3Dfunction(){La=3DKa=3DJa=3DIa=3DHa=3DGa=3Dg;var a;if(a=3DPa()){var =
b=3Dr.navigator;Ga=3Da.indexOf("Opera")=3D=3D0;Ha=3D!Ga&&a.indexOf("MSIE"=
)!=3D-1;Ja=3D(Ia=3D!Ga&&a.indexOf("WebKit")!=3D-1)&&a.indexOf("Mobile")!=3D=
-1;La=3D(Ka=3D!Ga&&!Ia&&b.product=3D=3D"Gecko")&&b.vendor=3D=3D"Camino"}}=
;Qa();=0A=
var Ra=3DGa,w=3DHa,Sa=3DKa,Ta=3DLa,x=3DIa,Ua=3DJa,Va=3Dfunction(){var =
a=3Dr.navigator;return =
a&&a.platform||""},Wa=3DVa(),Xa=3Dfunction(){Ma=3DWa.indexOf("Mac")!=3D-1=
;Na=3DWa.indexOf("Win")!=3D-1;Oa=3DWa.indexOf("Linux")!=3D-1};Xa();var =
Ya=3DMa,Za=3DNa,$a=3DOa,ab=3Dfunction(){var a=3D"",b;if(Ra&&r.opera){var =
c=3Dr.opera.version;a=3Dtypeof =
c=3D=3D"function"?c():c}else{if(Sa)b=3D/rv\:([^\);]+)(\)|;)/;else =
if(w)b=3D/MSIE\s+([^\);]+)(\)|;)/;else =
if(x)b=3D/WebKit\/(\S+)/;if(b){var =
d=3Db.exec(Pa());a=3Dd?d[1]:""}}return a},bb=3Dab();=0A=
var y=3Dfunction(a){return Fa(bb,a)>=3D0};var cb;var =
ib=3Dfunction(a){return a?new z(hb(a)):cb||(cb=3Dnew z)};var =
jb=3Dfunction(a){return typeof =
a=3D=3D"string"?document.getElementById(a):a},kb=3Djb,lb=3Dfunction(a){va=
r b=3Da||r||window,c=3Db.document;if(x&&!y("500")&&!Ua){if(typeof =
b.innerHeight=3D=3D"undefined")b=3Dwindow;var =
d=3Db.innerHeight,e=3Db.document.documentElement.scrollHeight;if(b=3D=3Db=
.top)if(e<d)d-=3D15;return new v(b.innerWidth,d)}var =
f=3Dib(c),j=3Df.Z()&&(!Ra||Ra&&y("9.50"))?c.documentElement:c.body;return=
 new v(j.clientWidth,j.clientHeight)};=0A=
var mb=3Dfunction(a,b){a.appendChild(b)},nb=3Dfunction(a){return =
a&&a.parentNode?a.parentNode.removeChild(a):h},ob=3Dfunction(a,b){var =
c=3Db.parentNode;c&&c.replaceChild(a,b)},pb=3Dx&&Fa(bb,"521")<=3D0,qb=3Df=
unction(a,b){if(typeof =
a.contains!=3D"undefined"&&!pb&&b.nodeType=3D=3D1)return =
a=3D=3Db||a.contains(b);if(typeof =
a.compareDocumentPosition!=3D"undefined")return =
a=3D=3Db||Boolean(a.compareDocumentPosition(b)&16);for(;b&&a!=3Db;)b=3Db.=
parentNode;return b=3D=3Da},hb=3Dfunction(a){return =
a.nodeType=3D=3D9?a:a.ownerDocument||a.document},z=3D=0A=
function(a){this.C=3Da||r.document||document};z.prototype.wa=3Dfunction()=
{return this.C};z.prototype.ya=3Dfunction(a){return typeof =
a=3D=3D"string"?this.C.getElementById(a):a};z.prototype.createElement=3Df=
unction(a){return =
this.C.createElement(a)};z.prototype.createTextNode=3Dfunction(a){return =
this.C.createTextNode(a)};=0A=
z.prototype.Z=3Dfunction(){var a=3Dthis.C;if(a.compatMode)return =
a.compatMode=3D=3D"CSS1Compat";if(x){var =
b=3Da.createElement("div");b.style.cssText=3D"position:absolute;width:0;h=
eight:0;width:1";var =
c=3Db.style.width=3D=3D"1px"?"BackCompat":"CSS1Compat";return(a.compatMod=
e=3Dc)=3D=3D"CSS1Compat"}return g};z.prototype.fb=3Dfunction(){var =
a=3Dthis.C;return!x&&this.Z()?a.documentElement:a.body};z.prototype.xa=3D=
function(){var a=3Dthis.fb();return new =
Ba(a.scrollLeft,a.scrollTop)};z.prototype.appendChild=3Dmb;=0A=
z.prototype.removeNode=3Dnb;z.prototype.replaceNode=3Dob;z.prototype.cont=
ains=3Dqb;var rb,sb=3Dfunction(a,b){var =
c=3Dhb(a);if(c.defaultView&&c.defaultView.getComputedStyle){var =
d=3Dc.defaultView.getComputedStyle(a,"");if(d)return d[b]}return h};var =
tb=3Dfunction(a,b){return =
sb(a,b)||(a.currentStyle?a.currentStyle[b]:h)||a.style[b]};=0A=
var ub=3Dfunction(a){var =
b;b=3Da?a.nodeType=3D=3D9?a:hb(a):document;if(w&&!ib(b).Z())return =
b.body;return b.documentElement},vb=3Dfunction(a){var =
b=3Da.getBoundingClientRect();if(w){var =
c=3Da.ownerDocument;b.left-=3Dc.documentElement.clientLeft+c.body.clientL=
eft;b.top-=3Dc.documentElement.clientTop+c.body.clientTop}return =
b},wb=3Dfunction(a){if(w)return a.offsetParent;var =
b=3Dhb(a),c=3Dtb(a,"position"),d=3Dc=3D=3D"fixed"||c=3D=3D"absolute",e=3D=
a.parentNode;for(;e&&e!=3Db;e=3De.parentNode){c=3Dtb(e,"position");d=3Dd&=
&c=3D=3D"static"&&e!=3Db.documentElement;=0A=
if(!d&&(e.scrollWidth>e.clientWidth||e.scrollHeight>e.clientHeight||c=3D=3D=
"fixed"||c=3D=3D"absolute"))return e}return h},xb=3Dfunction(a){var =
b,c=3Dhb(a),d=3Dtb(a,"position"),e=3DSa&&c.getBoxObjectFor&&!a.getBoundin=
gClientRect&&d=3D=3D"absolute"&&(b=3Dc.getBoxObjectFor(a))&&(b.screenX<0|=
|b.screenY<0);if(typeof rb=3D=3D"undefined")rb=3DTa&&!y("1.8.0.11");var =
f=3Dnew Ba(0,0),j=3Dub(c);if(a=3D=3Dj)return =
f;if(a.getBoundingClientRect){b=3Dvb(a);var =
i=3Dib(c).xa();f.x=3Db.left+i.x;f.y=3Db.top+i.y}else =
if(c.getBoxObjectFor&&!e&&!rb){b=3Dc.getBoxObjectFor(a);=0A=
var =
l=3Dc.getBoxObjectFor(j);f.x=3Db.screenX-l.screenX;f.y=3Db.screenY-l.scre=
enY}else{var =
k=3Da;do{f.x+=3Dk.offsetLeft;f.y+=3Dk.offsetTop;if(k!=3Da){f.x+=3Dk.clien=
tLeft||0;f.y+=3Dk.clientTop||0}if(x&&tb(k,"position")=3D=3D"fixed"){f.x+=3D=
c.body.scrollLeft;f.y+=3Dc.body.scrollTop;break}k=3Dk.offsetParent}while(=
k&&k!=3Da);if(Ra||x&&d=3D=3D"absolute")f.y-=3Dc.body.offsetTop;k=3Da;for(=
;k=3Dwb(k);){f.x-=3Dk.scrollLeft;if(!Ra||k.tagName!=3D"TR")f.y-=3Dk.scrol=
lTop}}return f},yb=3Dfunction(a){var b=3Dnew =
Ba;if(a.nodeType=3D=3D1)if(a.getBoundingClientRect){var c=3D=0A=
vb(a);b.x=3Dc.left;b.y=3Dc.top}else{var =
d=3Dib(a).xa(),e=3Dxb(a);b.x=3De.x-d.x;b.y=3De.y-d.y}else{b.x=3Da.clientX=
;b.y=3Da.clientY}return b},zb=3Dfunction(a){var =
b=3Dhb(a),c=3D"";if(b.createTextRange){var =
d=3Db.body.createTextRange();d.moveToElementText(a);c=3Dd.queryCommandVal=
ue("FontName")}if(!c){c=3Dtb(a,"fontFamily");if(Ra&&$a)c=3Dc.replace(/ =
\[[^\]]*\]/,"")}var e=3Dc.split(",");if(e.length>1)c=3De[0];return =
Da(c,"\"'")};var Ab=3Ddocument,A=3Dnavigator,B=3Dwindow;=0A=
function Bb(){var a=3DAb.cookie,b=3DMath.round((new =
Date).getTime()/1000),c=3DB.google_analytics_domain_name,d=3Dtypeof =
c=3D=3D"undefined"?Cb("auto"):Cb(c),e=3Da.indexOf("__utma=3D"+d+".")>-1,f=
=3Da.indexOf("__utmb=3D"+d)>-1,j=3Da.indexOf("__utmc=3D"+d)>-1,i,l=3D{};i=
f(e){i=3Da.split("__utma=3D"+d+".")[1].split(";")[0].split(".");l.sid=3Df=
&&j?i[3]+"":B&&B.gaGlobal&&B.gaGlobal.sid?B.gaGlobal.sid:b+"";l.vid=3Di[0=
]+"."+i[1];l.from_cookie=3Dm}else{l.sid=3DB&&B.gaGlobal&&B.gaGlobal.sid?B=
.gaGlobal.sid:b+"";l.vid=3DB&&B.gaGlobal&&B.gaGlobal.vid?=0A=
B.gaGlobal.vid:(Db()^Eb()&2147483647)+"."+b;l.from_cookie=3Dg}l.dh=3Dd;l.=
hid=3DB&&B.gaGlobal&&B.gaGlobal.hid?B.gaGlobal.hid:Db();return =
B.gaGlobal=3Dl}function Db(){return Math.round(Math.random()*2147483647)}=0A=
function Eb(){var =
a=3DAb.cookie?Ab.cookie:"",b=3DB.history.length,c,d,e=3D[A.appName,A.vers=
ion,A.language?A.language:A.browserLanguage,A.platform,A.userAgent,A.java=
Enabled()?1:0].join("");if(B.screen)e+=3DB.screen.width+"x"+B.screen.heig=
ht+B.screen.colorDepth;else =
if(B.java){d=3Djava.awt.Toolkit.getDefaultToolkit().getScreenSize();e+=3D=
d.screen.width+"x"+d.screen.height}e+=3Da;e+=3DAb.referrer?Ab.referrer:""=
;c=3De.length;for(;b>0;)e+=3Db--^c++;return Fb(e)}=0A=
function Fb(a){var =
b=3D1,c=3D0,d,e;if(!(a=3D=3Dundefined||a=3D=3D"")){b=3D0;d=3Da.length-1;f=
or(;d>=3D0;d--){e=3Da.charCodeAt(d);b=3D(b<<6&268435455)+e+(e<<14);c=3Db&=
266338304;b=3Dc!=3D0?b^c>>21:b}}return b}function =
Cb(a){if(!a||a=3D=3D""||a=3D=3D"none")return =
1;if("auto"=3D=3Da){a=3DAb.domain;if("www."=3D=3Da.substring(0,4))a=3Da.s=
ubstring(4,a.length)}return Fb(a.toLowerCase())};var =
C=3Dfunction(){};C.prototype.va=3Dg;C.prototype.dispose=3Dfunction(){if(!=
this.va){this.va=3Dm;this.b()}};C.prototype.b=3Dfunction(){};var =
Gb=3Dfunction(a){if(/^\s*$/.test(a))return g;var =
b=3D/\\["\\\/bfnrtu]/g,c=3D/"[^"\\\n\r\u2028\u2029\x00-\x1f\x7f-\x9f]*"|t=
rue|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,d=3D/(?:^|:|,)(?:[\s\u=
2028\u2029]*\[)+/g,e=3D/^[\],:{}\s\u2028\u2029]*$/;return =
e.test(a.replace(b,"@").replace(c,"]").replace(d,""))},Hb=3Dfunction(a){S=
tring(a);if(Gb(a))try{return eval("("+a+")")}catch(b){}throw =
Error("Invalid JSON string: "+a);};var =
D=3Dfunction(){};D.prototype.serialize=3Dfunction(a){var =
b=3D[];this.ga(a,b);return b.join("")};=0A=
D.prototype.ga=3Dfunction(a,b){switch(typeof a){case =
"string":this.Ia(a,b);break;case "number":this.Db(a,b);break;case =
"boolean":b.push(a);break;case "undefined":b.push("null");break;case =
"object":if(a=3D=3Dh){b.push("null");break}if(s(a)=3D=3D"array"){this.Cb(=
a,b);break}this.Eb(a,b);break;case "function":break;default:throw =
Error("Unknown type: "+typeof a);}};=0A=
var =
Ib=3D{'"':'\\"',"\\":"\\\\","/":"\\/","\u0008":"\\b","\u000c":"\\f","\n":=
"\\n","\r":"\\r","\t":"\\t","\u000b":"\\u000b"},Jb=3D/\uffff/.test("\ufff=
f")?/[\\\"\x00-\x1f\x80-\uffff]/g:/[\\\"\x00-\x1f\x80-\xff]/g;D.prototype=
.Ia=3Dfunction(a,b){b.push('"',a.replace(Jb,function(c){if(c in =
Ib)return Ib[c];var =
d=3Dc.charCodeAt(0),e=3D"\\u";if(d<16)e+=3D"000";else =
if(d<256)e+=3D"00";else if(d<4096)e+=3D"0";return =
Ib[c]=3De+d.toString(16)}),'"')};D.prototype.Db=3Dfunction(a,b){b.push(is=
Finite(a)&&!isNaN(a)?a:"null")};=0A=
D.prototype.Cb=3Dfunction(a,b){var c=3Da.length;b.push("[");var =
d=3D"",e=3D0;for(;e<c;e++){b.push(d);this.ga(a[e],b);d=3D","}b.push("]")}=
;D.prototype.Eb=3Dfunction(a,b){b.push("{");var c=3D"";for(var d in =
a)if(a.hasOwnProperty(d)){var e=3Da[d];if(typeof =
e!=3D"function"){b.push(c);this.Ia(d,b);b.push(":");this.ga(e,b);c=3D","}=
}b.push("}")};var E=3D"SETUP_ACK",F=3D{},Lb=3Dfunction(a,b){var =
c=3Db||Kb,d=3Dc.length,e=3D"";for(;a-- =
>0;)e+=3Dc.charAt(Math.floor(Math.random()*d));return =
e},Kb=3D"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";=
var G=3Dfunction(){};u(G,C);G.prototype.f=3D0;var =
H=3Dfunction(a){this.a=3Da;this.Q=3D[];this.Ob=3Dt(this.Za,this)};u(H,G);=
H.prototype.f=3D2;H.prototype.ca=3Dg;H.prototype.Fb=3D0;H.prototype.conne=
ct=3Dfunction(){if(this.a.s()=3D=3D0){this.l=3Dthis.a.t;this.l.XPC_toOute=
r=3Dt(this.za,this)}else this.ma()};=0A=
H.prototype.ma=3Dfunction(){var =
a=3Dm;try{if(!this.l)this.l=3Dwindow.frameElement;if(this.l&&this.l.XPC_t=
oOuter){this.Da=3Dthis.l.XPC_toOuter;this.l.XPC_toOuter.XPC_toInner=3Dt(t=
his.za,this);a=3Dg;this.send("tp",E);this.a.m()}}catch(b){}if(a){if(!this=
.Ma)this.Ma=3Dt(this.ma,this);window.setTimeout(this.Ma,100)}};H.prototyp=
e.H=3Dfunction(a){if(this.a.s()=3D=3D0&&!this.a.g()&&a=3D=3DE){this.Da=3D=
this.l.XPC_toOuter.XPC_toInner;this.a.m()}else throw Error("Got =
unexpected transport message.");};=0A=
H.prototype.za=3Dfunction(a,b){if(!this.ca&&this.Q.length=3D=3D0)this.a.j=
(a,b);else{this.Q.push({serviceName:a,payload:b});if(this.Q.length=3D=3D1=
)this.Fb=3Dwindow.setTimeout(this.Ob,1)}};H.prototype.Za=3Dfunction(){for=
(;this.Q.length;){var =
a=3Dthis.Q.shift();this.a.j(a.serviceName,a.payload)}};H.prototype.send=3D=
function(a,b){this.ca=3Dm;this.Da(a,b);this.ca=3Dg};H.prototype.b=3Dfunct=
ion(){H.o.b.call(this);this.l=3Dthis.Da=3Dh};var =
I=3Dfunction(a){this.a=3Da;this.R=3Dthis.a.c.ppu;this.Qb=3Dthis.a.c.lpu;t=
his.ea=3D[]},Mb,Nb;u(I,G);I.prototype.f=3D4;I.prototype.fa=3D0;I.prototyp=
e.w=3Dg;I.prototype.O=3Dg;var =
Ob=3D"googlexpc";I.prototype.M=3Dfunction(){return =
Ob+"_"+this.a.name+"_msg"};I.prototype.L=3Dfunction(){return =
Ob+"_"+this.a.name+"_ack"};I.prototype.connect=3Dfunction(){if(!this.O){t=
his.Sa();this.O=3Dm}this.Oa()};I.prototype.Sa=3Dfunction(){var =
a=3Dthis.M();this.D=3Dthis.W(a);this.Ba=3Dwindow.frames[a];a=3Dthis.L();t=
his.p=3Dthis.W(a);this.U=3Dwindow.frames[a]};=0A=
I.prototype.W=3Dfunction(a){var =
b=3Ddocument.createElement("iframe"),c=3Db.style;c.position=3D"absolute";=
c.top=3D"-10px";c.left=3D"10px";c.width=3D"1px";c.height=3D"1px";b.name=3D=
a;b.id=3Db.name;b.src=3Dthis.R+"#INITIAL";document.body.appendChild(b);re=
turn =
b};I.prototype.nb=3Dfunction(){this.a.name=3DLb(10);this.sa();this.O=3Dg;=
this.Sb=3Dthis.W(Ob+"_reconnect_"+this.a.name)};=0A=
I.prototype.sb=3Dfunction(){var =
a=3Dthis.a.h.frames,b=3Da.length,c=3D0;for(;c<b;c++){var =
d;try{if(a[c]&&a[c].name)d=3Da[c].name}catch(e){}if(!!d){var =
f=3Dd.split("_");if(f.length=3D=3D3&&f[0]=3D=3DOb&&f[1]=3D=3D"reconnect")=
{this.a.name=3Df[2];this.sa();this.O=3Dg;break}}}};I.prototype.sa=3Dfunct=
ion(){if(this.D){this.D.parentNode.removeChild(this.D);this.Ba=3Dthis.D=3D=
h}if(this.p){this.p.parentNode.removeChild(this.p);this.U=3Dthis.p=3Dh}};=0A=
I.prototype.Oa=3Dfunction(){if(this.Aa(this.M())&&this.Aa(this.L())){this=
.pb=3Dnew =
Pb(this,this.a.h.frames[this.M()],t(this.vb,this));this.ja=3Dnew =
Pb(this,this.a.h.frames[this.L()],t(this.ub,this));this.pa()}else{if(this=
.a.s()=3D=3D1&&!this.Sb)this.nb();else =
this.a.s()=3D=3D0&&this.sb();window.setTimeout(t(this.connect,this),100)}=
};I.prototype.Aa=3Dfunction(a){try{var =
b=3Dthis.a.h.frames[a];if(!b||b.location.href.indexOf(this.Qb)!=3D0)retur=
n g}catch(c){return g}return m};=0A=
I.prototype.pa=3Dfunction(){var =
a=3Dthis.a.h.frames;if(a[this.L()]&&a[this.M()]){this.qb=3Dnew =
Qb(this.R,this.Ba);this.T=3Dnew =
Qb(this.R,this.U);window.setTimeout(t(function(){this.qb.send("SETUP");th=
is.w=3Dthis.Vb=3Dm},this),100)}else{if(!this.Pa)this.Pa=3Dt(this.pa,this)=
;window.setTimeout(this.Pa,100)}};I.prototype.oa=3Dfunction(){if(this.Bb&=
&this.Rb){this.a.m();if(this.K){var =
a=3D0,b;for(;a<this.K.length;a++){b=3Dthis.K[a];this.a.j(b.service,b.payl=
oad)}delete this.K}}};=0A=
I.prototype.vb=3Dfunction(a){if(a=3D=3D"SETUP"){if(!!this.T){this.T.send(=
E);this.Bb=3Dm;this.oa()}}else if(this.a.g()||this.Bb){var =
b=3Da.indexOf("|"),c=3Da.substring(0,b),d=3Da.substring(b+1);b=3Dc.indexO=
f(",");if(b=3D=3D-1){var e=3Dc;this.T.send("ACK:"+e);this.ta(d)}else{var =
e=3Dc.substring(0,b);this.T.send("ACK:"+e);var =
f=3Dc.substring(b+1).split("/");f[0]=3DparseInt(f[0],10);f[1]=3DparseInt(=
f[1],10);if(f[0]=3D=3D1)this.Ea=3D[];this.Ea.push(d);if(f[0]=3D=3Df[1]){t=
his.ta(this.Ea.join(""));delete this.Ea}}}};=0A=
I.prototype.ub=3Dfunction(a){if(a=3D=3DE){this.w=3Dg;this.Rb=3Dm;this.oa(=
)}else if(this.a.g())if(!!this.w){var =
b=3DparseInt(a.split(":")[1],10);if(b=3D=3Dthis.fa){this.w=3Dg;this.Ha()}=
}};I.prototype.Ha=3Dfunction(){if(!(this.w||!this.ea.length)){var =
a=3Dthis.ea.shift();++this.fa;this.qb.send(this.fa+a);this.w=3Dm}};I.prot=
otype.ta=3Dfunction(a){var =
b=3Da.indexOf(":"),c=3Da.substr(0,b),d=3Da.substring(b+1);this.a.g()?this=
.a.j(c,d):(this.K||(this.K=3D[])).push({service:c,payload:d})};I.prototyp=
e.J=3D3800;=0A=
I.prototype.send=3Dfunction(a,b){var =
c=3Da+":"+b;if(!w||b.length<=3Dthis.J)this.ea.push("|"+c);else{var =
d=3Db.length,e=3DMath.ceil(d/this.J),f=3D0,j=3D1;for(;f<d;){this.ea.push(=
","+j+"/"+e+"|"+c.substr(f,this.J));j++;f+=3Dthis.J}}this.Ha()};I.prototy=
pe.b=3Dfunction(){I.o.b.call(this);var =
a=3DRb;Aa(a,this.pb);Aa(a,this.ja);this.pb=3Dthis.ja=3Dh;nb(this.D);nb(th=
is.p);this.Ba=3Dthis.U=3Dthis.D=3Dthis.p=3Dh};=0A=
var Rb=3D[],Tb=3Dfunction(){var a=3Dg;try{var =
b=3D0,c=3DRb.length;for(;b<c;b++)a=3Da||Rb[b].receive()}catch(d){Rb[b].d.=
a.rb();if(!Rb.length)return}var e=3Dxa();if(a)Mb=3De;var =
f=3De-Mb<1000?10:100;Nb=3Dwindow.setTimeout(Sb,f)},Sb=3Dt(Tb,I),Ub=3Dfunc=
tion(){Mb=3Dxa();Nb&&window.clearTimeout(Nb);Nb=3Dwindow.setTimeout(Sb,10=
)},Qb=3Dfunction(a,b){this.R=3Da;this.Ab=3Db;this.ra=3D0};Qb.prototype.se=
nd=3Dfunction(a){this.ra=3D++this.ra%2;var =
b=3Dthis.R+"#"+this.ra+encodeURIComponent(a);try{if(x)this.Ab.location.hr=
ef=3Db;else this.Ab.location.replace(b)}catch(c){}Ub()};=0A=
var =
Pb=3Dfunction(a,b,c){this.d=3Da;this.wb=3Db;this.Kb=3Dc;this.Xa=3Dthis.wb=
.location.href.split("#")[0]+"#INITIAL";Rb.push(this);Ub()};Pb.prototype.=
receive=3Dfunction(){var =
a=3Dthis.wb.location.href;if(a!=3Dthis.Xa){this.Xa=3Da;var =
b=3Da.split("#")[1];if(b){b=3Db.substr(1);this.Kb(decodeURIComponent(b))}=
return m}else return g};var =
J=3Dfunction(a,b){C.call(this);this.ob=3Db;this.r=3D[];this.Va(a)};u(J,C)=
;J.prototype.X=3Dh;J.prototype.Y=3Dh;J.prototype.G=3Dfunction(a){this.X=3D=
a};J.prototype.Ka=3Dfunction(a){this.Y=3Da};J.prototype.k=3Dfunction(){if=
(this.r.length)return this.r.pop();return =
this.qa()};J.prototype.v=3Dfunction(a){this.r.length<this.ob?this.r.push(=
a):this.ua(a)};J.prototype.Va=3Dfunction(a){if(a>this.ob)throw =
Error("[goog.structs.SimplePool] Initial cannot be greater than =
max");var b=3D0;for(;b<a;b++)this.r.push(this.qa())};=0A=
J.prototype.qa=3Dfunction(){return =
this.X?this.X():{}};J.prototype.ua=3Dfunction(a){if(this.Y)this.Y(a);else=
 if(ra(a.dispose))a.dispose();else for(var b in a)delete =
a[b]};J.prototype.b=3Dfunction(){J.o.b.call(this);var =
a=3Dthis.r;for(;a.length;)this.ua(a.pop());delete this.r};var =
L=3Dfunction(a,b){this.type=3Da;this.currentTarget=3Dthis.target=3Db};u(L=
,C);L.prototype.b=3Dfunction(){delete this.type;delete =
this.target;delete =
this.currentTarget};L.prototype.F=3Dg;L.prototype.da=3Dm;L.prototype.stop=
Propagation=3Dfunction(){this.F=3Dm};L.prototype.preventDefault=3Dfunctio=
n(){this.da=3Dg};var =
M=3Dfunction(a,b){a&&this.init(a,b)};u(M,L);M.prototype.type=3Dh;M.protot=
ype.target=3Dh;M.prototype.relatedTarget=3Dh;M.prototype.offsetX=3D0;M.pr=
ototype.offsetY=3D0;M.prototype.clientX=3D0;M.prototype.clientY=3D0;M.pro=
totype.screenX=3D0;M.prototype.screenY=3D0;M.prototype.button=3D0;M.proto=
type.keyCode=3D0;M.prototype.charCode=3D0;M.prototype.ctrlKey=3Dg;M.proto=
type.altKey=3Dg;M.prototype.shiftKey=3Dg;M.prototype.metaKey=3Dg;M.protot=
ype.i=3Dh;=0A=
M.prototype.init=3Dfunction(a,b){this.type=3Da.type;this.target=3Da.targe=
t||a.srcElement;this.currentTarget=3Db;this.relatedTarget=3Da.relatedTarg=
et?a.relatedTarget:this.type=3D=3D"mouseover"?a.fromElement:this.type=3D=3D=
"mouseout"?a.toElement:h;this.offsetX=3Dtypeof =
a.layerX=3D=3D"number"?a.layerX:a.offsetX;this.offsetY=3Dtypeof =
a.layerY=3D=3D"number"?a.layerY:a.offsetY;this.clientX=3Dtypeof =
a.clientX=3D=3D"number"?a.clientX:a.pageX;this.clientY=3Dtypeof =
a.clientY=3D=3D"number"?a.clientY:a.pageY;this.screenX=3Da.screenX||0;thi=
s.screenY=3Da.screenY||=0A=
0;this.button=3Da.button;this.keyCode=3Da.keyCode||0;this.charCode=3Da.ch=
arCode||(this.type=3D=3D"keypress"?a.keyCode:0);this.ctrlKey=3Da.ctrlKey;=
this.altKey=3Da.altKey;this.shiftKey=3Da.shiftKey;this.metaKey=3Da.metaKe=
y;this.i=3Da;delete this.da;delete =
this.F};M.prototype.stopPropagation=3Dfunction(){this.F=3Dm;if(this.i.sto=
pPropagation)this.i.stopPropagation();else this.i.cancelBubble=3Dm};=0A=
M.prototype.preventDefault=3Dfunction(){this.da=3Dg;if(this.i.preventDefa=
ult)this.i.preventDefault();else{this.i.returnValue=3Dg;try{this.i.keyCod=
e=3D-1}catch(a){}}};M.prototype.eb=3Dfunction(){return =
this.i};M.prototype.b=3Dfunction(){M.o.b.call(this);this.i=3Dh};var =
O=3Dfunction(){},Vb=3D0;O.prototype.aa=3Dh;O.prototype.listener=3Dh;O.pro=
totype.proxy=3Dh;O.prototype.src=3Dh;O.prototype.type=3Dh;O.prototype.cap=
ture=3Dh;O.prototype.handler=3Dh;O.prototype.key=3D0;O.prototype.removed=3D=
g;O.prototype.na=3Dg;=0A=
O.prototype.init=3Dfunction(a,b,c,d,e,f){if(ra(a))this.aa=3Dm;else =
if(a&&a.handleEvent&&ra(a.handleEvent))this.aa=3Dg;else throw =
Error("Invalid listener =
argument");this.listener=3Da;this.proxy=3Db;this.src=3Dc;this.type=3Dd;th=
is.capture=3D!!e;this.handler=3Df;this.na=3Dg;this.key=3D++Vb;this.remove=
d=3Dg};O.prototype.handleEvent=3Dfunction(a){if(this.aa)return =
this.listener.call(this.handler||this.src,a);return =
this.listener.handleEvent.call(this.listener,a)};var =
Wb=3D{},P=3D{},Xb=3D{},Yb=3Dnew =
J(0,600);Yb.G(function(){return{q:0}});Yb.Ka(function(a){a.q=3D0});var =
Q=3Dnew =
J(0,600);Q.G(function(){return[]});Q.Ka(function(a){a.length=3D0;delete =
a.P;delete a.Ca});var Zb=3Dnew J(0,600);Zb.G(function(){var =
a=3Dfunction(b){return bc.call(a.src,a.key,b)};return a});var =
cc=3Dfunction(){return new O},dc=3Dnew J(0,600);dc.G(cc);=0A=
var ec=3Dfunction(){return new M},fc=3Dfunction(){var =
a=3Dh;if(w){a=3Dnew J(0,600);a.G(ec)}return =
a},gc=3Dfc(),hc=3D"on",ic=3D{},jc=3Dfunction(a,b,c,d,e){if(b)if(s(b)=3D=3D=
"array"){var f=3D0;for(;f<b.length;f++)jc(a,b[f],c,d,e);return =
h}else{var j=3D!!d,i=3DP;b in i||(i[b]=3DYb.k());i=3Di[b];if(!(j in =
i)){i[j]=3DYb.k();i.q++}i=3Di[j];var l=3Dva(a),k,o;if(i[l]){k=3Di[l];var =
f=3D0;for(;f<k.length;f++){o=3Dk[f];if(o.listener=3D=3Dc&&o.handler=3D=3D=
e){if(o.removed)break;return =
k[f].key}}}else{i[l]=3DQ.k();k=3Di[l];i.q++}var =
p=3DZb.k();p.src=3Da;o=3Ddc.k();o.init(c,=0A=
p,a,b,j,e);var =
q=3Do.key;p.key=3Dq;k.push(o);Wb[q]=3Do;Xb[l]||(Xb[l]=3DQ.k());Xb[l].push=
(o);if(a.addEventListener){if(a=3D=3Dr||!a.Nb)a.addEventListener(b,p,j)}e=
lse a.attachEvent(kc(b),p);return q}else throw Error("Invalid event =
type");},lc=3Dfunction(a,b,c,d,e){if(s(b)=3D=3D"array"){var =
f=3D0;for(;f<b.length;f++)lc(a,b[f],c,d,e);return h}var =
j=3D!!d,i=3Dmc(a,b,j);if(!i)return g;var =
f=3D0;for(;f<i.length;f++)if(i[f].listener=3D=3Dc&&i[f].capture=3D=3Dj&&i=
[f].handler=3D=3De)return nc(i[f].key);return =
g},nc=3Dfunction(a){if(!Wb[a])return g;=0A=
var b=3DWb[a];if(b.removed)return g;var =
c=3Db.src,d=3Db.type,e=3Db.proxy,f=3Db.capture;if(c.removeEventListener){=
if(c=3D=3Dr||!c.Nb)c.removeEventListener(d,e,f)}else =
c.detachEvent&&c.detachEvent(kc(d),e);var =
j=3Dva(c),i=3DP[d][f][j];if(Xb[j]){var =
l=3DXb[j];Aa(l,b);l.length=3D=3D0&&delete =
Xb[j]}b.removed=3Dm;i.Ca=3Dm;oc(d,f,j,i);delete Wb[a];return =
m},oc=3Dfunction(a,b,c,d){if(!d.P)if(d.Ca){var =
e=3D0,f=3D0;for(;e<d.length;e++)if(d[e].removed)dc.v(d[e]);else{if(e!=3Df=
)d[f]=3Dd[e];f++}d.length=3Df;d.Ca=3Dg;if(f=3D=3D0){Q.v(d);delete =
P[a][b][c];=0A=
P[a][b].q--;if(P[a][b].q=3D=3D0){Yb.v(P[a][b]);delete =
P[a][b];P[a].q--}if(P[a].q=3D=3D0){Yb.v(P[a]);delete =
P[a]}}}},mc=3Dfunction(a,b,c){var d=3DP;if(b in d){d=3Dd[b];if(c in =
d){d=3Dd[c];var e=3Dva(a);if(d[e])return d[e]}}return =
h},kc=3Dfunction(a){if(a in ic)return ic[a];return =
ic[a]=3Dhc+a},qc=3Dfunction(a,b,c,d){var e=3D1,f=3DP;if(b in =
f){f=3Df[b];if(c in f){f=3Df[c];var j=3Dva(a);if(f[j]){var =
i=3Df[j];if(i.P)i.P++;else i.P=3D1;try{var =
l=3Di.length,k=3D0;for(;k<l;k++){var =
o=3Di[k];if(o&&!o.removed)e&=3Dpc(o,d)!=3D=3Dg}}finally{i.P--;oc(b,c,j,=0A=
i)}}}}return Boolean(e)},pc=3Dfunction(a,b){var =
c=3Da.handleEvent(b);a.na&&nc(a.key);return =
c},bc=3Dfunction(a,b){if(!Wb[a])return m;var =
c=3DWb[a],d=3Dc.type,e=3DP;if(!(d in e))return m;e=3De[d];var =
f;if(w){var j=3Db||na("window.event"),i=3Dm in =
e;if(i){if(j.keyCode<0||j.returnValue!=3Dundefined)return =
m;rc(j)}va(c.src);var l=3Dgc.k();l.init(j,this);f=3Dm;try{if(i){var =
k=3DQ.k(),o=3Dl.currentTarget;for(;o;o=3Do.parentNode)k.push(o);var =
p=3Dk.length-1;for(;!l.F&&p>=3D0;p--){l.currentTarget=3Dk[p];f&=3Dqc(k[p]=
,d,m,l)}var p=3D0;for(;!l.F&&=0A=
p<k.length;p++){l.currentTarget=3Dk[p];f&=3Dqc(k[p],d,g,l)}}else =
f=3Dpc(c,l)}finally{if(k){k.length=3D0;Q.v(k)}l.dispose();gc.v(l)}return =
f}var q=3Dnew M(b,this);try{f=3Dpc(c,q)}finally{q.dispose()}return =
f},rc=3Dfunction(a){var =
b=3Dg;if(a.keyCode=3D=3D0)try{a.keyCode=3D-1;return}catch(c){b=3Dm}if(b||=
a.returnValue=3D=3Dundefined)a.returnValue=3Dm};var =
R=3Dfunction(a){this.a=3Da;this.Pb=3Dthis.a.c.pru;this.tb=3Dthis.a.c.ifri=
d;x&&sc()};u(R,G);if(x)var =
tc=3D[],uc=3D0,sc=3Dfunction(){uc||(uc=3Dwindow.setTimeout(function(){vc(=
)},1000))},vc=3Dfunction(a){var =
b=3Dxa(),c=3Da||3000;for(;tc.length&&b-tc[0].timestamp>=3Dc;){var =
d=3Dtc.shift().iframeElement;nb(d)}uc=3Dwindow.setTimeout(wc,1000)},wc=3D=
function(){vc()};R.prototype.f=3D3;R.prototype.connect=3Dfunction(){this.=
send("tp","SETUP")};R.prototype.H=3Dfunction(a){if(a=3D=3D"SETUP"){this.s=
end("tp",E);this.a.m()}else a=3D=3DE&&this.a.m()};=0A=
R.prototype.send=3Dfunction(a,b){if(w){var =
c=3Ddocument.createElement("div");c.innerHTML=3D'<iframe =
onload=3D"this.xpcOnload()"></iframe>';var =
d=3Dc.childNodes[0];d.xpcOnload=3Dxc}else{var =
d=3Ddocument.createElement("iframe");x?tc.push({timestamp:xa(),iframeElem=
ent:d}):jc(d,"load",xc)}var =
e=3Dd.style;e.visibility=3D"hidden";d.style.height=3D"0px";e.width=3Dd.st=
yle.height;e.position=3D"absolute";var =
f=3Dthis.Pb;f+=3D"#"+this.a.name;if(this.tb)f+=3D","+this.tb;f+=3D"|"+a+"=
:"+encodeURIComponent(b);d.src=3Df;document.body.appendChild(d)};=0A=
var =
xc=3Dfunction(){nb(this);this.xpcOnload=3Dh};window.xpcRelay=3Dfunction(a=
,b){var =
c=3Db.indexOf(":"),d=3Db.substring(0,c),e=3Db.substring(c+1);F[a].j(d,dec=
odeURIComponent(e))};R.prototype.b=3Dfunction(){R.o.b.call(this);x&&vc(0)=
};var =
S=3Dfunction(a,b){this.a=3Da;this.ba=3Db||"*"};u(S,G);S.prototype.f=3D1;v=
ar =
yc=3Dg,Ac=3Dfunction(){if(!yc){jc(window.postMessage?window:document,"mes=
sage",zc,g,S);yc=3Dm}},zc=3Dfunction(a){var =
b=3Da.eb().data,c=3Db.indexOf("|"),d=3Db.indexOf(":");if(c=3D=3D-1||d=3D=3D=
-1)return g;var =
e=3Db.substring(0,c),f=3Db.substring(c+1,d),j=3Db.substring(d+1),i=3DF[e]=
;if(i){i.j(f,j);return m}for(var l in F){var =
k=3DF[l];if(k.s()=3D=3D1&&!k.g()&&f=3D=3D"tp"&&j=3D=3D"SETUP"){k.name=3De=
;F[e]=3Dk;F[l]=3Dh;k.j(f,j);return m}}return g};=0A=
S.prototype.H=3Dfunction(a){switch(a){case =
"SETUP":if(!this.Tb){this.Tb=3Dm;this.send("tp",E)}break;case =
E:this.a.m();break}};S.prototype.connect=3Dfunction(){Ac();this.V()};S.pr=
ototype.V=3Dfunction(){if(!this.a.g()){this.send("tp","SETUP");window.set=
Timeout(t(this.V,this),100)}};S.prototype.send=3Dfunction(a,b){var =
c=3Dthis.a.h;if(!!c){var =
d=3Dc.postMessage?c:c.document;this.send=3Dfunction(e,f){d.postMessage(th=
is.a.name+"|"+e+":"+f,this.ba)};this.send(a,b)}};=0A=
S.prototype.b=3Dfunction(){S.o.b.call(this);lc(window.postMessage?window:=
document,"message",zc,g,S)};var =
T=3Dfunction(a){this.a=3Da;this.Na=3Da.at||"";this.zb=3Da.rat||"";Bc();th=
is[Cc]=3Dthis.N;this[Dc]=3Dthis.Ua};u(T,G);=0A=
var =
Ec=3D"GCXPC____NIXVBS_wrapper",Fc=3D"GCXPC____NIXVBS_get_wrapper",Cc=3D"G=
CXPC____NIXJS_handle_message",Dc=3D"GCXPC____NIXJS_create_channel",Gc=3D"=
GCXPC____NIXVBS_container",Bc=3Dfunction(){if(!window.nix_setup_complete)=
{var a=3D"Class "+Ec+"\n Private m_Transport\nPrivate m_Auth\nPublic Sub =
SetTransport(transport)\nIf isEmpty(m_Transport) Then\nSet m_Transport =
=3D transport\nEnd If\nEnd Sub\nPublic Sub SetAuth(auth)\nIf =
isEmpty(m_Auth) Then\nm_Auth =3D auth\nEnd If\nEnd Sub\nPublic Function =
GetAuthToken()\n GetAuthToken =3D m_Auth\nEnd Function\nPublic Sub =
SendMessage(service, payload)\n Call m_Transport."+Cc+=0A=
"(service, payload)\nEnd Sub\nPublic Sub CreateChannel(channel)\n Call =
m_Transport."+Dc+"(channel)\nEnd Sub\nPublic Sub "+Gc+"()\n End Sub\nEnd =
Class\n Function "+Fc+"(transport, auth)\nDim wrap\nSet wrap =3D New =
"+Ec+"\nwrap.SetTransport transport\nwrap.SetAuth auth\nSet "+Fc+" =3D =
wrap\nEnd =
Function";try{window.execScript(a,"vbscript");window.nix_setup_complete=3D=
m}catch(b){}}};T.prototype.f=3D6;T.prototype.u=3Dg;T.prototype.n=3Dh;T.pr=
ototype.connect=3Dfunction(){this.a.s()=3D=3D0?this.la():this.ka()};=0A=
T.prototype.la=3Dfunction(){if(!this.u){var =
a=3Dthis.a.t;try{a.contentWindow.opener=3Dwindow[Fc](this,this.Na);this.u=
=3Dm}catch(b){}this.u||window.setTimeout(t(this.la,this),100)}};T.prototy=
pe.ka=3Dfunction(){if(!this.u){try{var a=3Dwindow.opener;if(a&&Gc in =
a){this.n=3Da;var =
b=3Dthis.n.GetAuthToken();if(b!=3Dthis.zb)return;this.n.CreateChannel(win=
dow[Fc](this,this.Na));this.u=3Dm;this.a.m()}}catch(c){return}this.u||win=
dow.setTimeout(t(this.ka,this),100)}};=0A=
T.prototype.Ua=3Dfunction(a){this.n=3Da;var =
b=3Dthis.n.GetAuthToken();b!=3Dthis.zb||this.a.m()};T.prototype.N=3Dfunct=
ion(a,b){function =
c(){this.a.j(a,b)}window.setTimeout(t(c,this),1)};T.prototype.send=3Dfunc=
tion(a,b){this.n.SendMessage(a,b)};T.prototype.b=3Dfunction(){T.o.b.call(=
this);this.n=3Dh};var =
U=3Dfunction(a){C.call(this);this.c=3Da;this.name=3Dthis.c.cn||Lb(10);thi=
s.Ja=3D{};F[this.name]=3Dthis;jc(window,"unload",Hc)};u(U,C);U.prototype.=
d=3Dh;U.prototype.ha=3D1;U.prototype.g=3Dfunction(){return =
this.ha=3D=3D2};U.prototype.h=3Dh;U.prototype.t=3Dh;U.prototype.La=3Dfunc=
tion(a){this.h=3Da};=0A=
U.prototype.Wa=3Dfunction(){if(!this.d){if(!this.c.tp)if(ra(document.post=
Message)||ra(window.postMessage)||w&&window.postMessage)this.c.tp=3D1;els=
e if(Sa)this.c.tp=3D2;else if(w&&this.c.pru)this.c.tp=3D3;else =
if(w)this.c.tp=3D6;else =
if(this.c.lpu&&this.c.ppu)this.c.tp=3D4;switch(this.c.tp){case =
1:this.d=3Dnew S(this,this.c.ph);break;case 6:this.d=3Dnew =
T(this);break;case 2:this.d=3Dnew H(this);break;case 3:this.d=3Dnew =
R(this);break;case 4:this.d=3Dnew I(this);break}if(!this.d)throw =
Error("CrossPageChannel: No suitable transport found!");=0A=
}};U.prototype.Ya=3Dg;U.prototype.Ra=3Dg;U.prototype.connect=3Dfunction(a=
){this.Mb=3Da;if(this.Ya)this.Ra=3Dm;else{if(this.c.ifrid)this.t=3Dtypeof=
 =
this.c.ifrid=3D=3D"string"?document.getElementById(this.c.ifrid):this.c.i=
frid;if(this.t){var =
b=3Dthis.t.contentWindow;b||(b=3Dwindow.frames[this.c.ifrid]);this.La(b)}=
if(!this.h)if(window=3D=3Dtop)throw Error("CrossPageChannel: Can't =
connect, peer window-object not set.");else =
this.La(window.parent);this.Wa();this.d.connect()}};=0A=
U.prototype.close=3Dfunction(){if(!!this.g()){this.ha=3D3;this.d.dispose(=
);this.d=3Dh}};U.prototype.m=3Dfunction(){if(!this.g()){this.ha=3D2;this.=
Mb()}};U.prototype.rb=3Dfunction(){this.close()};U.prototype.yb=3Dfunctio=
n(a,b,c){this.Ja[a]=3D{name:a,callback:b,jsonEncoded:!!c}};U.prototype.se=
nd=3Dfunction(a,b){if(!!this.g())if(this.h.closed)this.close();else{if(sa=
(b))b=3D(new D).serialize(b);this.d.send(a,b)}};=0A=
U.prototype.j=3Dfunction(a,b){if(!a||a=3D=3D"tp")this.d.H(b);else =
if(this.g()){var =
c=3Dthis.Ja[a];if(c){if(c.jsonEncoded)try{b=3DHb(b)}catch(d){return}c.cal=
lback(b)}}};U.prototype.s=3Dfunction(){return =
window.parent=3D=3Dthis.h?1:0};U.prototype.b=3Dfunction(){U.o.b.call(this=
);this.close();this.t=3Dthis.h=3Dh;delete this.Ja;F[this.name]=3Dh};var =
Hc=3Dfunction(){for(var a in F){var b=3DF[a];b&&b.dispose()}};var =
Ic=3Dfunction(a){var =
b=3Da||document.location.protocol+"//"+document.location.host;return =
b+"/robots.txt"};var =
V=3Dfunction(a,b){this.A=3Da.width;this.z=3Da.height;this.Lb=3Db;this.ba=3D=
this.gb(a.src,document);this.$=3Dg;this.e=3Da;this.mb(this.ib())};V.proto=
type.ib=3Dfunction(){var =
a=3D{};a.ifrid=3Dthis.e.id;a.pu=3Dthis.e.src;a.ph=3Dthis.ba;a.cn=3Dthis.L=
b;a.ppu=3DIc(this.ba);a.lpu=3DIc();return =
a};V.prototype.mb=3Dfunction(a){this.a=3Dnew =
U(a);this.a.yb("expandable_ad",t(this.N,this));this.a.connect(function(){=
});window.setTimeout(t(this.kb,this),30000)};=0A=
V.prototype.kb=3Dfunction(){if(this.a&&!this.a.g()){this.a.d.connect=3Dfu=
nction(){};if(this.a.d.f=3D=3D1)this.a.d.V=3Dfunction(){};if(this.a.d.f=3D=
=3D4)this.a.d.Ub=3Dfunction(){};this.a.d.dispose();this.a.dispose()}};V.p=
rototype.gb=3Dfunction(a,b){var =
c=3Da.indexOf("//"),d=3Dc>0,e=3Dd?a.substring(0,c):b.location.protocol,f=3D=
d?a.substring(c+2):b.location.host,j=3Df.indexOf("/");if(j<0)j=3Df.indexO=
f("?");if(d&&j>0)f=3Df.substring(0,j);return e+"//"+f};=0A=
V.prototype.N=3Dfunction(a){var =
b=3Da.split("_"),c=3Db[0];if(c=3D=3D"expand")this.lb(b);else =
c=3D=3D"collapse"&&this.jb()};V.prototype.Ga=3Dfunction(a){this.a.send("e=
xpandable_ad",a)};V.prototype.lb=3Dfunction(a){if(!this.$){var =
b,c;for(var d in a){var =
e=3Da[d].charAt(0);if(e=3D=3D"w")b=3DparseInt(a[d].substring(1),10);else =
if(e=3D=3D"h")c=3DparseInt(a[d].substring(1),10)}var =
f=3Dthis.$a(b,c);this.bb(b,c,f);this.Ga("ok_expand_w"+b+"_h"+c+"_d"+f)}};=0A=
V.prototype.jb=3Dfunction(){if(!!this.$){this.Qa();this.Ga("ok_collapse_w=
"+this.A+"_h"+this.z)}};V.prototype.Qa=3Dfunction(){this.e.style.width=3D=
this.A+"px";this.e.style.height=3Dthis.z+"px";this.e.style.left=3D"0";thi=
s.e.style.top=3D"0";this.e.style.zIndex=3Dh;this.e.parentNode.style.zInde=
x=3Dh;this.e.parentNode.parentNode.style.zIndex=3Dh;this.$=3Dg};=0A=
V.prototype.bb=3Dfunction(a,b,c){this.e.style.position=3D"absolute";this.=
e.style.width=3Da+"px";this.e.style.height=3Db+"px";this.e.style.zIndex=3D=
9999;this.e.parentNode.style.zIndex=3D9999;this.e.parentNode.parentNode.s=
tyle.zIndex=3D9999;if(a>this.A&&(c=3D=3D0||c=3D=3D3))this.e.style.left=3D=
"-"+(a-this.A)+"px";if(b>this.z&&(c=3D=3D1||c=3D=3D0))this.e.style.top=3D=
"-"+(b-this.z)+"px";this.$=3Dm};=0A=
V.prototype.$a=3Dfunction(a,b){var =
c=3Dyb(this.e),d=3Dlb(window),e=3Da-this.A,f=3Db-this.z,j=3Dc.y,i=3Df>j,l=
=3Dd.height-(c.y+this.z),k=3Di||l>=3Dj,o=3Dc.x,p=3De>o,q=3Dd.width-(c.x+t=
his.A),K=3Dp||q>=3Do,N=3D0;if(k&&K)N=3D2;else if(k&&!K)N=3D3;else =
if(!k&&K)N=3D1;else if(!k&&!K)N=3D0;return N};=0A=
var =
Jc=3Dfunction(){},Mc=3Dfunction(a,b,c,d,e){if(!a||!b||c<=3D0||d<=3D0)retu=
rn h;var f=3DLb(10);b=3DKc(b,c,d,f);var j=3DLc(a,b,c,d,e);return new =
V(j,f)},Kc=3Dfunction(a,b,c,d){var e=3Dib().wa();return =
a+(a.indexOf("?")=3D=3D-1?"?":"&")+"w=3D"+b+"&h=3D"+c+"&xpc=3D"+d+"&p=3D"=
+escape(e.location.protocol+"//"+e.location.host)},Lc=3Dfunction(a,b,c,d,=
e){var =
f=3D"border:none;height:"+d+"px;margin:0;padding:0;position:relative;visi=
bility:visible;width:"+c+"px",j=3D'<ins =
style=3D"display:inline-table;'+f+'"><ins =
style=3D"display:block;'+f+'"><iframe allowtransparency=3Dtrue =
frameborder=3D0 height=3D'+=0A=
d+" hspace=3D0 id=3D"+a+' marginheight=3D0 marginwidth=3D0 =
name=3Dgoogle_ads_frame scrolling=3Dno src=3D"'+b+'" =
style=3D"left:0;position:absolute;top:0" vspace=3D0 =
width=3D'+c+"></iframe></ins></ins>",i=3Dib(),l=3Di.ya(e);if(l)l.innerHTM=
L=3Dj;else i.wa().write(j);return =
i.ya(a)};ya("ExpandableAdSlot",V);ya("ExpandableAdSlotFactory",Jc);var =
W=3D"";function Nc(a){if(a){if(W!=3D"")W+=3D",";W+=3Da}}var =
Oc=3Dg,Pc=3Dha("true",g);function Qc(a){return =
a!=3Dh?'"'+a+'"':'""'}function fa(a){return typeof =
encodeURIComponent=3D=3D"function"?encodeURIComponent(a):escape(a)}functi=
on X(a,b){if(a&&b)window.google_ad_url+=3D"&"+a+"=3D"+b}function =
Y(a){var b=3Dwindow,c=3Dea(a),d=3Db[a];X(c,d)}function =
Z(a,b){b!=3Dh&&X(a,fa(b))}function $(a){var =
b=3Dwindow,c=3Dea(a),d=3Db[a];Z(c,d)}=0A=
function Rc(a,b){var c=3Dwindow,d=3Dea(a),e=3Dc[a];if(d&&e&&typeof =
e=3D=3D"object")e=3De[b%e.length];X(d,e)}function Sc(a){var =
b=3Da.screen,c=3Dnavigator.javaEnabled(),d=3D-(new =
Date).getTimezoneOffset();if(b){X("u_h",b.height);X("u_w",b.width);X("u_a=
h",b.availHeight);X("u_aw",b.availWidth);X("u_cd",b.colorDepth)}X("u_tz",=
d);X("u_his",history.length);X("u_java",c);navigator.plugins&&X("u_nplug"=
,navigator.plugins.length);navigator.mimeTypes&&X("u_nmime",navigator.mim=
eTypes.length)}=0A=
function =
Tc(a){if(!!a.google_enable_first_party_cookie){if(a._GA_googleCookieHelpe=
r=3D=3Dh)a._GA_googleCookieHelper=3Dnew =
n;if(!a._google_cookie_fetched){a._google_cookie_fetched=3Dm;a._GA_google=
CookieHelper.cb(Uc(a.google_ad_client))}}}function =
Uc(a){if(a){a=3Da.toLowerCase();if(a.substring(0,3)!=3D"ca-")a=3D"ca-"+a}=
return a}function =
Vc(a){if(a){a=3Da.toLowerCase();if(a.substring(0,9)!=3D"dist-aff-")a=3D"d=
ist-aff-"+a}return a}function Wc(a){var =
b=3D"google_unique_id";if(a[b])++a[b];else a[b]=3D1;return a[b]}=0A=
function Xc(){var =
a=3Dw&&y("6")&&!y("8"),b=3DSa&&y("1.8.1"),c=3Dx&&y("525");if(Za&&(a||b||c=
))return m;else if(Ya&&(c||b))return m;else if($a&&b)return m;return =
g}function Yc(a,b){var =
c=3Da.google_allow_expandable_ads;if(c!=3Dh&&c=3D=3Dg||!b.body||a.google_=
ad_output!=3D"html"||Zc(a,b)||$c(a)||ad(a.google_ad_format)||isNaN(a.goog=
le_ad_height)||isNaN(a.google_ad_width)||!Xc())return g;return m}=0A=
function bd(){var =
a=3DMath.random(),b=3Dga("0.03",0.03),c=3D2*b;if(a<b)return"30143019";if(=
a<c)return"30143020";return""}function cd(){var =
a=3DMath.random(),b=3Dga("0",0.03),c=3D2*b;if(a<b)return"30143021";if(a<c=
)return"30143022";return""}function dd(){var =
a=3DMath.random(),b=3Dga("0.03",0.01),c=3D2*b;if(a<b)return"6083029";if(a=
<c)return"6083028";return""}function =
ed(a){a.google_allow_expandable_ads=3Dg;a.google_expandable_iframe=3Dg}=0A=
function fd(a,b,c,d){var =
e=3DWc(a);c=3Dc.substring(0,1992);c=3Dc.replace(/%\w?$/,"");var =
f=3D"script";if((a.google_ad_output=3D=3D"js"||a.google_ad_output=3D=3D"j=
son_html")&&(a.google_ad_request_done||a.google_radlink_request_done))b.w=
rite("<"+f+' language=3D"JavaScript1.1" =
src=3D'+Qc(gd(c))+"></"+f+">");else =
if(a.google_ad_output=3D=3D"html")if(hd(a)){var =
j=3Da.google_container_id||d||h;a["google_expandable_ad_slot"+e]=3DMc("go=
ogle_ads_frame"+e,gd(c),a.google_ad_width,a.google_ad_height,j)}else{var =
i=3D'<iframe name=3D"google_ads_frame" width=3D'+=0A=
Qc(a.google_ad_width)+" height=3D"+Qc(a.google_ad_height)+" =
frameborder=3D"+Qc(a.google_ad_frameborder)+" src=3D"+Qc(gd(c))+' =
marginwidth=3D"0" marginheight=3D"0" vspace=3D"0" hspace=3D"0" =
allowtransparency=3D"true" =
scrolling=3D"no"></iframe>';i=3Did(a.google_ad_width,a.google_ad_height,i=
);a.google_container_id?jd(a.google_container_id,b,i):b.write(i)}else =
a.google_ad_output=3D=3D"textlink"&&b.write("<"+f+' =
language=3D"JavaScript1.1" src=3D'+Qc(gd(c))+"></"+f+">")}=0A=
function hd(a){if(!Oc)return g;var =
b=3DW.indexOf("30143020")!=3D-1,c=3DW.indexOf("30143019")!=3D-1,d=3Da.goo=
gle_expandable_iframe;return Pc&&!c||b||d}function kd(a){var =
b=3Dha("false",g);return =
b&&a.indexOf("30143021")=3D=3D-1||a.indexOf("30143022")!=3D-1}=0A=
function id(a,b,c){var d=3Dkd(W);if(Oc&&d){var =
e=3D"border:none;height:"+b+"px;margin:0;padding:0;position:relative;visi=
bility:visible;width:"+a+"px";return'<ins =
style=3D"display:inline-table;'+e+'"><ins =
style=3D"display:block;'+e+'">'+c+"</ins></ins>"}return c}function =
ld(a){for(var b in ba)a[b]=3Dh;for(var b in =
ca)b=3D=3D"google_correlator"||(a[b]=3Dh);for(var b in =
da)a[b]=3Dh;a.google_allow_expandable_ads=3Dh;a.google_container_id=3Dh;a=
.google_expandable_iframe=3Dh;a.google_tag_js_version=3Dh}=0A=
function $c(a){if(a.google_ad_format)return =
a.google_ad_format.indexOf("_0ads")>0;return =
a.google_ad_output!=3D"html"&&a.google_num_radlinks>0}function =
ad(a){return a&&a.indexOf("_sdo")!=3D-1}=0A=
function md(a){var =
b=3Dh,c=3Dwindow,d=3Ddocument,e=3Daa,f=3Dc.google_ad_format,j=3Dnd(c),i;i=
f(c.google_cpa_choice!=3Db){c.google_ad_url=3Dj+"/cpa/ads?";i=3Descape(Uc=
(c.google_ad_client));c.google_ad_region=3D"_google_cpa_region_";Y("googl=
e_cpa_choice");if(typeof =
d.characterSet!=3D"undefined")Z("oe",d.characterSet);else typeof =
d.charset!=3D"undefined"&&Z("oe",d.charset)}else =
if(ad(f)){c.google_ad_url=3Dj+"/pagead/sdo?";i=3Descape(Vc(c.google_ad_cl=
ient))}else{c.google_ad_url=3Dj+"/pagead/ads?";i=3Descape(Uc(c.google_ad_=
client))}c.google_ad_url+=3D=0A=
"client=3D"+i;Y("google_ad_host");Y("google_ad_host_tier_id");var =
l=3Dc.google_num_slots_by_client,k=3Dc.google_num_slots_by_channel,o=3Dc.=
google_prev_ad_formats_by_region,p=3Dc.google_prev_ad_slotnames_by_region=
;if(c.google_ad_region=3D=3Db&&c.google_ad_section!=3Db)c.google_ad_regio=
n=3Dc.google_ad_section;var =
q=3Dc.google_ad_region=3D=3Db?"":c.google_ad_region;if(ad(f)){c.google_nu=
m_sdo_slots=3Dc.google_num_sdo_slots?c.google_num_sdo_slots+1:1;if(c.goog=
le_num_sdo_slots>4)return g}else =
if($c(c)){c.google_num_0ad_slots=3Dc.google_num_0ad_slots?=0A=
c.google_num_0ad_slots+1:1;if(c.google_num_0ad_slots>3)return g}else =
if(c.google_cpa_choice=3D=3Db){c.google_num_ad_slots=3Dc.google_num_ad_sl=
ots?c.google_num_ad_slots+1:1;if(c.google_num_slots_to_rotate){o[q]=3Db;p=
[q]=3Db;if(c.google_num_slot_to_show=3D=3Db)c.google_num_slot_to_show=3De=
%c.google_num_slots_to_rotate+1;if(c.google_num_slot_to_show!=3Dc.google_=
num_ad_slots)return g}else if(c.google_num_ad_slots>6&&q=3D=3D"")return =
g}X("dt",aa);Y("google_language");c.google_country?Y("google_country"):Y(=
"google_gl");Y("google_region");=0A=
$("google_city");$("google_hints");Y("google_safe");Y("google_encoding");=
Y("google_last_modified_time");$("google_alternate_ad_url");Y("google_alt=
ernate_color");Y("google_skip");Y("google_targeting");var =
K=3Dc.google_ad_client;if(l[K])l[K]+=3D1;else{l[K]=3D1;l.length+=3D1}if(o=
[q])if(!ad(f)){Z("prev_fmts",o[q].toLowerCase());l.length>1&&X("slot",l[K=
])}p[q]&&Z("prev_slotnames",p[q].toLowerCase());if(f&&!c.google_ad_slot){=
Z("format",f.toLowerCase());ad(f)||(o[q]=3Do[q]?o[q]+","+f:f)}if(c.google=
_ad_slot)p[q]=3Dp[q]?=0A=
p[q]+","+c.google_ad_slot:c.google_ad_slot;Y("google_max_num_ads");X("out=
put",c.google_ad_output);Y("google_adtest");Y("google_ad_callback");Y("go=
ogle_ad_slot");$("google_correlator");c.google_new_domain_checked=3D=3D1&=
&c.google_new_domain_enabled=3D=3D0&&X("dblk",1);if(c.google_ad_channel){=
$("google_ad_channel");var =
N=3D"",$b=3Dc.google_ad_channel.split(od),db=3D0;for(;db<$b.length;db++){=
var eb=3D$b[db];if(k[eb])N+=3Deb+"+";else =
k[eb]=3D1}Z("pv_ch",N)}if(c.google_ad_host_channel){$("google_ad_host_cha=
nnel");var wd=3D=0A=
pd(c.google_ad_host_channel,c.google_viewed_host_channels);Z("pv_h_ch",wd=
)}c.google_enable_first_party_cookie&&Z("cookie",c._GA_googleCookieHelper=
.hb());$("google_page_url");Rc("google_color_bg",e);Rc("google_color_text=
",e);Rc("google_color_link",e);Rc("google_color_url",e);Rc("google_color_=
border",e);Rc("google_color_line",e);c.google_reuse_colors?X("reuse_color=
s",1):X("reuse_colors",0);Y("google_kw_type");$("google_kw");$("google_co=
ntents");Y("google_num_radlinks");Y("google_max_radlink_len");Y("google_r=
l_filtering");=0A=
Y("google_rl_mode");Y("google_rt");$("google_rl_dest_url");Y("google_num_=
radlinks_per_unit");Y("google_ad_type");Y("google_image_size");Y("google_=
ad_region");if(Oc=3DYc(c,d))if(c.google_expandable_iframe=3D=3D=3Dg)ed(c)=
;else if(i =
in{"ca-pub-2944451727872625":1,"ca-pub-9483266128490610":1,"ca-pub-195592=
4717845427":1,"ca-pub-6664249124335298":1})c.google_expandable_iframe=3Dm=
;else{if(!(c.google_expandable_iframe=3D=3Dm)){var =
oa=3Dbd();Nc(oa);if(oa=3D=3D"30143019"||oa=3D=3D""&&!Pc)ed(c);if(!oa){oa=3D=
cd();Nc(oa)}}}else ed(c);=0A=
X("eid",W);var =
ac=3Dc.google_allow_expandable_ads;if(ac!=3Dh)ac?X("ea","1"):X("ea","0");=
Y("google_feedback");$("google_referrer_url");$("google_page_location");X=
("frm",c.google_iframing);Y("google_bid");Y("google_ctr_threshold");Y("go=
ogle_cust_age");Y("google_cust_gender");Y("google_cust_interests");Y("goo=
gle_cust_id");Y("google_cust_job");Y("google_cust_u_url");Y("google_cust_=
l");Y("google_cust_lh");Y("google_cust_ch");Y("google_ed");Y("google_vide=
o_doc_id");Y("google_video_product_type");$("google_ui_features");=0A=
$("google_ui_version");$("google_tag_js_version");$("google_only_ads_with=
_video");$("google_only_pyv_ads");$("google_disable_video_autoplay");if(a=
){Z("ff",zb(a));var =
fb=3Dxb(a),gb=3Dlb();if(fb&&gb){Z("biw",gb.width);Z("bih",gb.height);Z("a=
dx",fb.x);Z("ady",fb.y)}}Bb();X("ga_vid",c.gaGlobal.vid);X("ga_sid",c.gaG=
lobal.sid);X("ga_hid",c.gaGlobal.hid);X("ga_fc",c.gaGlobal.from_cookie);$=
("google_analytics_uacct");Y("google_ad_override");Y("google_flash_versio=
n");Sc(c);return m}=0A=
function pd(a,b){var =
c=3Da.split("|"),d=3D-1,e=3D[],f=3D0;for(;f<c.length;f++){var =
j=3Dc[f].split(od);b[f]||(b[f]=3D{});var =
i=3D"",l=3D0;for(;l<j.length;l++){var =
k=3Dj[l];if(!(k=3D=3D""))if(b[f][k])i+=3D"+"+k;else =
b[f][k]=3D1}i=3Di.slice(1);e[f]=3Di;if(i!=3D"")d=3Df}var =
o=3D"";if(d>-1){var f=3D0;for(;f<d;f++)o+=3De[f]+"|";o+=3De[d]}return o}=0A=
function qd(){var a=3Dwindow,b=3Ddocument;Tc(a);var c=3Ddd();Nc(c);var =
d;if(c=3D=3D"6083029"){var =
e=3D"google_temp_span";d=3Da.google_container_id&&kb(a.google_container_i=
d)||kb(e);if(!d&&!a.google_container_id){b.write("<span =
id=3D"+e+"></span>");d=3Dkb(e)}}var =
f=3Dmd(d);d&&d.id=3D=3De&&nb(d);if(!!f){fd(a,b,a.google_ad_url);ld(a)}}fu=
nction gd(a){var b=3D(new =
Date).getTime()-aa,c=3D"&dtd=3D"+(b<1000?b:"M");return a+c}function =
rd(){qd();return m}=0A=
function Zc(a,b){if(a.top.location=3D=3Db.location)return g;var =
c=3Db.documentElement;if(a.google_ad_width&&a.google_ad_height){var =
d=3D1,e=3D1;if(a.innerHeight){d=3Da.innerWidth;e=3Da.innerHeight}else =
if(c&&c.clientHeight){d=3Dc.clientWidth;e=3Dc.clientHeight}else =
if(b.body){d=3Db.body.clientWidth;e=3Db.body.clientHeight}if(e>2*a.google=
_ad_height||d>2*a.google_ad_width)return g}return m}=0A=
function sd(a){var =
b=3Dwindow,c=3Dh,d=3Db.onerror;b.onerror=3Da;if(b.google_ad_frameborder=3D=
=3Dc)b.google_ad_frameborder=3D0;if(b.google_ad_output=3D=3Dc)b.google_ad=
_output=3D"html";if(ad(b.google_ad_format)){var =
e=3Db.google_ad_format.match(/^(\d+)x(\d+)_.*/);if(e){b.google_ad_width=3D=
parseInt(e[1],10);b.google_ad_height=3DparseInt(e[2],10);b.google_ad_outp=
ut=3D"html"}}if(b.google_ad_format=3D=3Dc&&b.google_ad_output=3D=3D"html"=
)b.google_ad_format=3Db.google_ad_width+"x"+b.google_ad_height;td(b,docum=
ent);if(b.google_num_slots_by_channel=3D=3D=0A=
c)b.google_num_slots_by_channel=3D[];if(b.google_viewed_host_channels=3D=3D=
c)b.google_viewed_host_channels=3D[];if(b.google_num_slots_by_client=3D=3D=
c)b.google_num_slots_by_client=3D[];if(b.google_prev_ad_formats_by_region=
=3D=3Dc)b.google_prev_ad_formats_by_region=3D[];if(b.google_prev_ad_slotn=
ames_by_region=3D=3Dc)b.google_prev_ad_slotnames_by_region=3D[];if(b.goog=
le_correlator=3D=3Dc)b.google_correlator=3Daa;if(b.google_adslot_loaded=3D=
=3Dc)b.google_adslot_loaded=3D{};if(b.google_adContentsBySlot=3D=3Dc)b.go=
ogle_adContentsBySlot=3D{};if(b.google_flash_version=3D=3D=0A=
c)b.google_flash_version=3Dia();if(b.google_new_domain_checked=3D=3Dc)b.g=
oogle_new_domain_checked=3D0;if(b.google_new_domain_enabled=3D=3Dc)b.goog=
le_new_domain_enabled=3D0;b.onerror=3Dd}function ud(a){if(a in vd)return =
vd[a];return =
vd[a]=3Dnavigator.userAgent.toLowerCase().indexOf(a)!=3D-1}var =
vd=3D{};function ja(){return ud("msie")&&!window.opera}=0A=
function xd(a){var =
b=3D{},c=3Da.split("?"),d=3Dc[c.length-1].split("&"),e=3D0;for(;e<d.lengt=
h;e++){var =
f=3Dd[e].split("=3D");if(f[0])try{b[f[0].toLowerCase()]=3Df.length>1?wind=
ow.decodeURIComponent?decodeURIComponent(f[1].replace(/\+/g," =
")):unescape(f[1]):""}catch(j){}}return b}function yd(){var =
a=3Dwindow,b=3Dxd(document.URL);if(b.google_ad_override){a.google_ad_over=
ride=3Db.google_ad_override;a.google_adtest=3D"on"}}function =
zd(a,b){for(var c in b)a["google_"+c]=3Db[c]}=0A=
function Ad(a,b){if(!b)return a.location;return a.referrer}function =
Bd(a,b){if(!b&&a.google_referrer_url=3D=3Dh)return"0";else =
if(b&&a.google_referrer_url=3D=3Dh)return"1";else =
if(!b&&a.google_referrer_url!=3Dh)return"2";else =
if(b&&a.google_referrer_url!=3Dh)return"3";return"4"}function =
Cd(a,b,c,d){a.page_url=3DAd(c,d);a.page_location=3Dh}function =
Dd(a,b,c,d){a.page_url=3Db.google_page_url;a.page_location=3DAd(c,d)||"EM=
PTY"}=0A=
function Ed(a,b){var =
c=3D{},d=3DZc(a,b);c.iframing=3DBd(a,d);!!a.google_page_url?Dd(c,a,b,d):C=
d(c,a,b,d);c.last_modified_time=3Db.location=3D=3Dc.page_url?Date.parse(b=
.lastModified)/1000:h;c.referrer_url=3Dd?a.google_referrer_url:a.google_p=
age_url&&a.google_referrer_url?a.google_referrer_url:b.referrer;return =
c}function Fd(a){var =
b=3D{},c=3Da.URL.substring(a.URL.lastIndexOf("http"));b.iframing=3Dh;b.pa=
ge_url=3Dc;b.page_location=3Da.location;b.last_modified_time=3Dh;b.referr=
er_url=3Dc;return b}=0A=
function td(a,b){var =
c;c=3Da.google_page_url=3D=3Dh&&Gd[b.domain]?Fd(b):Ed(a,b);zd(a,c)}functi=
on jd(a,b,c){if(a){var =
d=3Db.getElementById(a);if(d&&c&&c.length!=3D""){d.style.visibility=3D"vi=
sible";d.innerHTML=3Dc}}}var Gd=3D{};Gd["ad.yieldmanager.com"]=3Dm;var =
od=3D/[+, ]/;window.google_render_ad=3Dqd;var =
Hd=3D{google:1,googlegroups:1,gmail:1,googlemail:1,orkut:1,googleimages:1=
,googleprint:1};function Id(a){var =
b=3Da.google_page_location||a.google_page_url;if(!b)return =
g;b=3Db.toString();if(b.indexOf("http://")=3D=3D0)b=3Db.substring(7,b.len=
gth);else =
if(b.indexOf("https://")=3D=3D0)b=3Db.substring(8,b.length);var =
c=3Db.indexOf("/");if(c=3D=3D-1)c=3Db.length;var =
d=3Db.substring(0,c),e=3Dd.split("."),f=3Dg;if(e.length>=3D3)f=3De[e.leng=
th-3]in Hd;if(e.length>=3D2)f=3Df||e[e.length-2]in Hd;return f}=0A=
function Jd(a,b,c){if(Id(a)){a.google_new_domain_checked=3D1;return =
g}if(a.google_new_domain_checked=3D=3D0){var =
d=3DMath.random();if(d<=3Dc){var =
e=3D"http://googleads.g.doubleclick.net/pagead/test_domain.js",f=3D"scrip=
t";b.write("<"+f+' =
src=3D"'+e+'"></'+f+">");a.google_new_domain_checked=3D1;return =
m}}return g}function nd(a){var =
b=3D"http://googleads.g.doubleclick.net",c=3D"http://pagead2.googlesyndic=
ation.com";if(!Id(a)&&a.google_new_domain_enabled=3D=3D1)return b;return =
c};function Kd(a,b){var =
c=3D"script",d=3DJd(a,b,ga("1",0.01));d&&ja()?b.write("<"+c+' =
src=3D"http://pagead2.googlesyndication.com/pagead/render_ads.js"></'+c+"=
>"):b.write("<"+c+">window.google_render_ad();</"+c+">")}yd();sd(rd);Kd(w=
indow,document);=0A=
})()=0A=

------=_NextPart_000_0045_01C99027.D7A50410--
