
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c2882aa15fecbd3b247daccd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dc9703497a6c7a277c18140c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0bbe450348dbfde44de743d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d1878120a9d352572c4e7526.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_39b3bf50fa2deb1f581441b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3f8b75a75067f45b5e4042fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_95053eaf8b5e61f9226c35f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8d40ac0ab78ddf01d1579526.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f5a325825b0f3cebd7e3b1f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.999980px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.999980px;}
.v4{vertical-align:28.634280px;}
.v3{vertical-align:31.785780px;}
.v5{vertical-align:48.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000060px;}
.ls1{letter-spacing:0.000360px;}
.ls4{letter-spacing:0.007980px;}
.ls3{letter-spacing:10.788180px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f{word-spacing:-54.000000px;}
.wsc{word-spacing:-45.000000px;}
.ws87{word-spacing:-33.750000px;}
.ws1d{word-spacing:-33.024000px;}
.ws0{word-spacing:-15.000000px;}
.ws59{word-spacing:-12.000000px;}
.ws86{word-spacing:-11.250000px;}
.ws76{word-spacing:-5.909760px;}
.ws77{word-spacing:-5.909700px;}
.ws13{word-spacing:-5.835000px;}
.ws12{word-spacing:-5.834940px;}
.ws3a{word-spacing:-5.828700px;}
.ws41{word-spacing:-5.579580px;}
.ws22{word-spacing:-5.555820px;}
.ws4b{word-spacing:-5.447760px;}
.ws7e{word-spacing:-5.383620px;}
.ws62{word-spacing:-5.315940px;}
.ws55{word-spacing:-5.218560px;}
.ws2c{word-spacing:-5.179680px;}
.ws49{word-spacing:-5.149680px;}
.ws64{word-spacing:-4.970100px;}
.ws7d{word-spacing:-4.942740px;}
.ws50{word-spacing:-4.926900px;}
.ws45{word-spacing:-4.916820px;}
.ws46{word-spacing:-4.916760px;}
.ws23{word-spacing:-4.902480px;}
.ws2f{word-spacing:-4.805520px;}
.ws10{word-spacing:-4.698780px;}
.ws47{word-spacing:-4.656960px;}
.ws5c{word-spacing:-4.600680px;}
.ws80{word-spacing:-4.537440px;}
.ws7f{word-spacing:-4.537380px;}
.ws2a{word-spacing:-4.516140px;}
.ws75{word-spacing:-4.492380px;}
.ws74{word-spacing:-4.492320px;}
.ws7c{word-spacing:-4.289520px;}
.ws2b{word-spacing:-4.217280px;}
.ws35{word-spacing:-3.960120px;}
.wsf{word-spacing:-3.766680px;}
.ws6c{word-spacing:-3.672660px;}
.ws3{word-spacing:-3.650760px;}
.ws73{word-spacing:-3.585180px;}
.ws29{word-spacing:-3.582840px;}
.ws28{word-spacing:-3.582780px;}
.ws8c{word-spacing:-3.571560px;}
.ws5f{word-spacing:-3.543480px;}
.ws81{word-spacing:-3.543300px;}
.ws82{word-spacing:-3.528780px;}
.ws69{word-spacing:-3.503700px;}
.ws6d{word-spacing:-3.465840px;}
.ws60{word-spacing:-3.412800px;}
.ws4{word-spacing:-3.340320px;}
.ws61{word-spacing:-3.327240px;}
.ws27{word-spacing:-3.289560px;}
.ws79{word-spacing:-3.243840px;}
.ws5a{word-spacing:-3.242340px;}
.ws5b{word-spacing:-3.242280px;}
.ws18{word-spacing:-3.164820px;}
.ws4e{word-spacing:-3.146040px;}
.ws4f{word-spacing:-3.125160px;}
.ws54{word-spacing:-3.124380px;}
.ws20{word-spacing:-3.123540px;}
.ws78{word-spacing:-3.030960px;}
.ws37{word-spacing:-2.926560px;}
.ws16{word-spacing:-2.823060px;}
.wsa{word-spacing:-2.807040px;}
.ws6b{word-spacing:-2.804580px;}
.ws8{word-spacing:-2.776260px;}
.ws66{word-spacing:-2.744700px;}
.ws6e{word-spacing:-2.744160px;}
.ws83{word-spacing:-2.694060px;}
.ws7{word-spacing:-2.664960px;}
.wsb{word-spacing:-2.551740px;}
.ws2{word-spacing:-2.510280px;}
.ws44{word-spacing:-2.493960px;}
.ws3e{word-spacing:-2.478000px;}
.ws84{word-spacing:-2.475360px;}
.ws38{word-spacing:-2.471940px;}
.ws31{word-spacing:-2.417940px;}
.ws6a{word-spacing:-2.324160px;}
.ws53{word-spacing:-2.315280px;}
.ws51{word-spacing:-2.302740px;}
.wsd{word-spacing:-2.276160px;}
.ws32{word-spacing:-2.103540px;}
.ws72{word-spacing:-2.074680px;}
.ws67{word-spacing:-2.074020px;}
.ws3c{word-spacing:-2.070480px;}
.ws42{word-spacing:-2.025240px;}
.ws6{word-spacing:-2.017740px;}
.ws33{word-spacing:-1.998060px;}
.ws17{word-spacing:-1.972800px;}
.ws1b{word-spacing:-1.846680px;}
.ws52{word-spacing:-1.687500px;}
.ws40{word-spacing:-1.582800px;}
.ws68{word-spacing:-1.581000px;}
.ws70{word-spacing:-1.567740px;}
.ws26{word-spacing:-1.446960px;}
.ws3b{word-spacing:-1.401480px;}
.ws4c{word-spacing:-1.339560px;}
.ws6f{word-spacing:-1.332720px;}
.ws58{word-spacing:-1.250820px;}
.ws57{word-spacing:-1.250760px;}
.ws2d{word-spacing:-1.222380px;}
.ws3f{word-spacing:-1.162920px;}
.ws15{word-spacing:-1.103640px;}
.ws56{word-spacing:-1.092060px;}
.ws5d{word-spacing:-1.084920px;}
.ws5e{word-spacing:-1.084860px;}
.ws1a{word-spacing:-1.016580px;}
.ws2e{word-spacing:-1.006020px;}
.ws9{word-spacing:-0.978540px;}
.ws19{word-spacing:-0.892320px;}
.ws7b{word-spacing:-0.877680px;}
.ws36{word-spacing:-0.857640px;}
.ws25{word-spacing:-0.837000px;}
.ws48{word-spacing:-0.828000px;}
.ws14{word-spacing:-0.700020px;}
.ws39{word-spacing:-0.696120px;}
.ws7a{word-spacing:-0.690480px;}
.ws11{word-spacing:-0.677580px;}
.ws63{word-spacing:-0.668400px;}
.ws4d{word-spacing:-0.590040px;}
.ws5{word-spacing:-0.584280px;}
.ws1c{word-spacing:-0.559800px;}
.ws24{word-spacing:-0.537120px;}
.ws34{word-spacing:-0.521880px;}
.ws30{word-spacing:-0.509280px;}
.ws65{word-spacing:-0.341280px;}
.ws21{word-spacing:-0.337920px;}
.ws4a{word-spacing:-0.300660px;}
.ws3d{word-spacing:-0.253440px;}
.wse{word-spacing:-0.240600px;}
.ws43{word-spacing:-0.222120px;}
.ws71{word-spacing:-0.189960px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:25.545720px;}
.ws8b{word-spacing:329.004720px;}
.ws88{word-spacing:340.254720px;}
.ws8a{word-spacing:374.264100px;}
.ws89{word-spacing:395.885160px;}
.ws85{word-spacing:488.832900px;}
._2{margin-left:-1.713720px;}
._13{width:183.391740px;}
._10{width:203.290740px;}
._f{width:217.768140px;}
._6{width:223.385580px;}
._12{width:225.098580px;}
._4{width:227.168700px;}
._11{width:235.276920px;}
._9{width:265.262040px;}
._a{width:278.257680px;}
._b{width:329.004720px;}
._7{width:366.335400px;}
._e{width:374.497560px;}
._d{width:381.462900px;}
._5{width:416.668200px;}
._c{width:423.870120px;}
._0{width:432.000000px;}
._8{width:478.823700px;}
._3{width:2182.807320px;}
._1{width:2206.807320px;}
.fc2{color:rgb(0,0,102);}
.fc1{color:rgb(181,199,222);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:106.462650px;}
.y27{bottom:109.688970px;}
.y26{bottom:123.188970px;}
.y165{bottom:148.031805px;}
.y86{bottom:150.555630px;}
.ya5{bottom:150.799815px;}
.yc5{bottom:153.808605px;}
.y5c{bottom:156.808605px;}
.y125{bottom:156.836415px;}
.y164{bottom:166.031805px;}
.y85{bottom:168.555630px;}
.ya4{bottom:168.799815px;}
.yc4{bottom:171.808605px;}
.y124{bottom:173.336415px;}
.y5b{bottom:174.808605px;}
.y163{bottom:184.031805px;}
.y25{bottom:186.344235px;}
.ya3{bottom:186.799815px;}
.yc3{bottom:189.808605px;}
.y84{bottom:192.555630px;}
.y5a{bottom:192.808605px;}
.y123{bottom:192.836415px;}
.y162{bottom:202.031805px;}
.y24{bottom:204.344235px;}
.ya2{bottom:204.799815px;}
.yc2{bottom:207.808605px;}
.y122{bottom:209.336415px;}
.yf1{bottom:216.382350px;}
.y161{bottom:220.031805px;}
.y23{bottom:222.344235px;}
.ya1{bottom:222.799815px;}
.y59{bottom:225.808605px;}
.y121{bottom:225.836415px;}
.y83{bottom:228.694785px;}
.yf0{bottom:234.382350px;}
.y160{bottom:238.031805px;}
.ya0{bottom:240.799815px;}
.y58{bottom:243.808605px;}
.y120{bottom:245.336415px;}
.y82{bottom:246.694785px;}
.yef{bottom:252.382350px;}
.y22{bottom:255.344235px;}
.y15f{bottom:256.031805px;}
.y9f{bottom:258.799815px;}
.y57{bottom:261.808605px;}
.y11f{bottom:261.836415px;}
.y81{bottom:264.694785px;}
.yd4{bottom:267.808605px;}
.y21{bottom:273.344235px;}
.y15e{bottom:274.031805px;}
.yee{bottom:276.382350px;}
.y9e{bottom:276.799815px;}
.y11e{bottom:278.336415px;}
.y56{bottom:279.808605px;}
.y80{bottom:282.694785px;}
.y20{bottom:291.344235px;}
.y15d{bottom:292.031805px;}
.yd3{bottom:295.259775px;}
.y55{bottom:297.808605px;}
.y11d{bottom:297.836415px;}
.y7f{bottom:300.694785px;}
.yc1{bottom:307.120620px;}
.y15c{bottom:308.531805px;}
.y1f{bottom:309.344235px;}
.y9d{bottom:309.799815px;}
.yed{bottom:312.521505px;}
.y11c{bottom:314.336415px;}
.y54{bottom:315.808605px;}
.y7e{bottom:318.694785px;}
.y1e{bottom:327.344235px;}
.y9c{bottom:327.799815px;}
.yec{bottom:330.521505px;}
.y53{bottom:333.808605px;}
.y11b{bottom:333.836415px;}
.y7d{bottom:336.694785px;}
.yd2{bottom:336.938970px;}
.y1d{bottom:345.344235px;}
.y9b{bottom:345.799815px;}
.yeb{bottom:348.521505px;}
.yc0{bottom:348.799815px;}
.y11a{bottom:350.336415px;}
.y52{bottom:351.808605px;}
.y7c{bottom:354.694785px;}
.yd1{bottom:354.938970px;}
.y1c{bottom:363.344235px;}
.y9a{bottom:363.799815px;}
.yea{bottom:366.521505px;}
.ybf{bottom:366.799815px;}
.y51{bottom:369.808605px;}
.y119{bottom:369.836415px;}
.yd0{bottom:372.938970px;}
.y1b{bottom:381.344235px;}
.y99{bottom:381.799815px;}
.ye9{bottom:384.521505px;}
.ybe{bottom:384.799815px;}
.y118{bottom:386.336415px;}
.y7b{bottom:387.694785px;}
.y50{bottom:387.808605px;}
.ycf{bottom:390.938970px;}
.y1a{bottom:399.344235px;}
.y98{bottom:399.799815px;}
.ye8{bottom:402.521505px;}
.ybd{bottom:402.799815px;}
.y117{bottom:402.836415px;}
.y7a{bottom:405.694785px;}
.yce{bottom:408.938970px;}
.y4f{bottom:411.808605px;}
.y97{bottom:417.799815px;}
.ye7{bottom:420.521505px;}
.ybc{bottom:420.799815px;}
.y116{bottom:422.336415px;}
.y79{bottom:423.694785px;}
.y19{bottom:426.656250px;}
.ycd{bottom:426.938970px;}
.y96{bottom:435.799815px;}
.ybb{bottom:438.799815px;}
.y115{bottom:438.836415px;}
.y4e{bottom:439.259775px;}
.y78{bottom:441.694785px;}
.ye6{bottom:444.521505px;}
.ycc{bottom:444.938970px;}
.y14a{bottom:451.688970px;}
.y95{bottom:453.799815px;}
.y114{bottom:455.336415px;}
.yba{bottom:456.799815px;}
.y77{bottom:459.694785px;}
.ycb{bottom:462.938970px;}
.y149{bottom:468.188970px;}
.y94{bottom:471.799815px;}
.yb9{bottom:474.799815px;}
.y113{bottom:474.836415px;}
.y76{bottom:477.694785px;}
.ye5{bottom:480.660660px;}
.y4d{bottom:480.938970px;}
.y18{bottom:481.147710px;}
.y148{bottom:487.688970px;}
.y93{bottom:489.799815px;}
.y112{bottom:491.336415px;}
.yb8{bottom:492.799815px;}
.y75{bottom:495.694785px;}
.yca{bottom:495.938970px;}
.y152{bottom:498.218955px;}
.ye4{bottom:498.660660px;}
.y4c{bottom:498.938970px;}
.y17{bottom:499.272225px;}
.y147{bottom:504.188970px;}
.y92{bottom:507.799815px;}
.y111{bottom:507.836415px;}
.yb7{bottom:510.799815px;}
.y74{bottom:513.694785px;}
.yc9{bottom:513.938970px;}
.y151{bottom:516.218955px;}
.ye3{bottom:516.660660px;}
.y4b{bottom:516.938970px;}
.y146{bottom:520.688970px;}
.y16{bottom:523.858155px;}
.y91{bottom:525.799815px;}
.y110{bottom:527.336415px;}
.yb6{bottom:528.799815px;}
.y73{bottom:531.694785px;}
.yc8{bottom:531.938970px;}
.y150{bottom:534.218955px;}
.ye2{bottom:534.660660px;}
.y4a{bottom:534.938970px;}
.y145{bottom:540.188970px;}
.y90{bottom:543.799815px;}
.y10f{bottom:543.836415px;}
.yb5{bottom:546.799815px;}
.y72{bottom:549.694785px;}
.yc7{bottom:549.938970px;}
.y14f{bottom:552.218955px;}
.ye1{bottom:552.660660px;}
.y144{bottom:556.688970px;}
.y8f{bottom:561.799815px;}
.y10e{bottom:563.336415px;}
.y49{bottom:567.938970px;}
.y14e{bottom:570.218955px;}
.ye0{bottom:570.660660px;}
.y143{bottom:573.188970px;}
.y15{bottom:578.059575px;}
.y8e{bottom:579.799815px;}
.y10d{bottom:579.836415px;}
.y71{bottom:582.694785px;}
.y48{bottom:585.938970px;}
.y14d{bottom:588.218955px;}
.ydf{bottom:588.660660px;}
.y142{bottom:592.688970px;}
.y14{bottom:596.059575px;}
.y10c{bottom:596.336415px;}
.yb4{bottom:597.799815px;}
.y70{bottom:600.694785px;}
.y47{bottom:603.938970px;}
.y14c{bottom:606.218955px;}
.yde{bottom:606.660660px;}
.y141{bottom:609.188970px;}
.y8d{bottom:612.799815px;}
.y13{bottom:614.059575px;}
.yb3{bottom:615.799815px;}
.y10b{bottom:615.836415px;}
.y6f{bottom:618.694785px;}
.y46{bottom:621.938970px;}
.y14b{bottom:622.718955px;}
.ydd{bottom:624.660660px;}
.y140{bottom:625.688970px;}
.y8c{bottom:630.799815px;}
.y12{bottom:632.059575px;}
.y10a{bottom:632.336415px;}
.yb2{bottom:633.799815px;}
.y6e{bottom:636.154290px;}
.y45{bottom:639.938970px;}
.y13f{bottom:642.188970px;}
.y6d{bottom:643.312830px;}
.ydc{bottom:648.660660px;}
.y8b{bottom:648.799815px;}
.y109{bottom:648.836415px;}
.y11{bottom:650.059575px;}
.yb1{bottom:651.799815px;}
.y44{bottom:657.938970px;}
.y13e{bottom:661.688970px;}
.y6c{bottom:666.799815px;}
.y10{bottom:668.059575px;}
.y108{bottom:668.336415px;}
.yb0{bottom:669.799815px;}
.y43{bottom:675.938970px;}
.y13d{bottom:678.188970px;}
.y6b{bottom:684.799815px;}
.y107{bottom:684.836415px;}
.yf{bottom:686.059575px;}
.yaf{bottom:687.799815px;}
.y42{bottom:693.938970px;}
.y13c{bottom:694.688970px;}
.y15b{bottom:697.298940px;}
.y6a{bottom:702.799815px;}
.ye{bottom:704.059575px;}
.y106{bottom:704.336415px;}
.yae{bottom:705.799815px;}
.y41{bottom:711.938970px;}
.y13b{bottom:714.188970px;}
.y15a{bottom:715.298970px;}
.y69{bottom:720.799815px;}
.y105{bottom:720.836415px;}
.yd{bottom:722.059575px;}
.yad{bottom:729.799815px;}
.y40{bottom:729.938970px;}
.y13a{bottom:730.688970px;}
.y159{bottom:733.298970px;}
.y68{bottom:738.799815px;}
.yc{bottom:740.059575px;}
.y104{bottom:740.336415px;}
.y139{bottom:747.188970px;}
.yc6{bottom:747.938970px;}
.y158{bottom:751.298970px;}
.y17a{bottom:753.938970px;}
.y67{bottom:756.799815px;}
.y103{bottom:756.836415px;}
.yb{bottom:758.059575px;}
.y3f{bottom:762.938970px;}
.yac{bottom:765.938970px;}
.y138{bottom:766.688970px;}
.y157{bottom:769.298970px;}
.y102{bottom:773.336415px;}
.y66{bottom:774.799815px;}
.ya{bottom:776.059575px;}
.y179{bottom:777.938970px;}
.y3e{bottom:780.938970px;}
.y137{bottom:783.188970px;}
.yab{bottom:783.938970px;}
.y156{bottom:787.298970px;}
.y178{bottom:789.938970px;}
.y8a{bottom:792.799815px;}
.y101{bottom:792.836415px;}
.y9{bottom:794.059575px;}
.y65{bottom:798.799815px;}
.y3d{bottom:798.938970px;}
.y136{bottom:799.688970px;}
.yaa{bottom:801.938970px;}
.y155{bottom:805.298970px;}
.y100{bottom:809.336415px;}
.y89{bottom:810.799815px;}
.y8{bottom:812.059575px;}
.y177{bottom:813.938970px;}
.y3c{bottom:816.938970px;}
.y135{bottom:819.188970px;}
.ya9{bottom:819.938970px;}
.y154{bottom:823.298970px;}
.yff{bottom:825.836415px;}
.y176{bottom:825.938970px;}
.y88{bottom:828.799815px;}
.y7{bottom:830.059575px;}
.y3b{bottom:834.938970px;}
.ya8{bottom:837.938970px;}
.y134{bottom:838.688970px;}
.y153{bottom:839.798970px;}
.yfe{bottom:845.336415px;}
.ydb{bottom:846.799815px;}
.y6{bottom:848.059575px;}
.y175{bottom:849.938970px;}
.y87{bottom:852.799815px;}
.y3a{bottom:852.938970px;}
.y133{bottom:855.188970px;}
.ya7{bottom:855.938970px;}
.yfd{bottom:861.836415px;}
.y174{bottom:861.938970px;}
.y39{bottom:870.938970px;}
.y132{bottom:871.688970px;}
.y5{bottom:872.583255px;}
.ya6{bottom:873.938970px;}
.yfc{bottom:878.336415px;}
.yda{bottom:879.799815px;}
.y173{bottom:885.938970px;}
.y38{bottom:888.938970px;}
.y131{bottom:891.188970px;}
.yd9{bottom:897.799815px;}
.yfb{bottom:897.836415px;}
.y172{bottom:897.938970px;}
.y37{bottom:906.938970px;}
.y130{bottom:907.688970px;}
.y171{bottom:909.938970px;}
.y4{bottom:911.782470px;}
.yfa{bottom:914.336415px;}
.yd8{bottom:915.799815px;}
.y170{bottom:921.938970px;}
.y12f{bottom:924.188970px;}
.y36{bottom:924.938970px;}
.y3{bottom:929.782470px;}
.yf9{bottom:930.836415px;}
.yd7{bottom:933.799815px;}
.y16f{bottom:933.938970px;}
.y35{bottom:942.938970px;}
.y12e{bottom:943.688970px;}
.y16e{bottom:945.938970px;}
.y2{bottom:950.181885px;}
.yf8{bottom:950.336415px;}
.yd6{bottom:951.799815px;}
.y16d{bottom:957.938970px;}
.y12d{bottom:960.188970px;}
.y64{bottom:960.938970px;}
.yf7{bottom:966.836415px;}
.y16c{bottom:969.938970px;}
.yd5{bottom:975.799815px;}
.y34{bottom:975.938970px;}
.y63{bottom:978.938970px;}
.y12c{bottom:979.688970px;}
.y16b{bottom:981.938970px;}
.y1{bottom:992.407470px;}
.yf6{bottom:993.398430px;}
.y33{bottom:993.938970px;}
.y12b{bottom:996.188970px;}
.y62{bottom:996.938970px;}
.y32{bottom:1011.938970px;}
.y61{bottom:1014.938970px;}
.y12a{bottom:1015.688970px;}
.y16a{bottom:1023.938970px;}
.y166{bottom:1026.000000px;}
.y31{bottom:1029.938970px;}
.y129{bottom:1032.188970px;}
.y60{bottom:1032.938970px;}
.yf5{bottom:1034.214840px;}
.y169{bottom:1035.938970px;}
.y2c{bottom:1041.695790px;}
.y5f{bottom:1047.106935px;}
.y30{bottom:1047.938970px;}
.yf4{bottom:1048.464840px;}
.y128{bottom:1051.688970px;}
.y2b{bottom:1059.871575px;}
.y2d{bottom:1060.606935px;}
.yf3{bottom:1062.714840px;}
.y2f{bottom:1065.938970px;}
.y127{bottom:1068.188970px;}
.y168{bottom:1068.938970px;}
.y2e{bottom:1083.938970px;}
.y2a{bottom:1084.621575px;}
.y126{bottom:1084.688970px;}
.yf2{bottom:1084.839840px;}
.y167{bottom:1085.438970px;}
.y29{bottom:1104.977775px;}
.y5d{bottom:1120.951170px;}
.y28{bottom:1131.053460px;}
.h17{height:44.165039px;}
.h15{height:45.351562px;}
.h7{height:47.109375px;}
.h6{height:48.375000px;}
.hf{height:50.062500px;}
.h10{height:52.998047px;}
.h11{height:54.421875px;}
.h14{height:56.320312px;}
.h3{height:58.857422px;}
.h5{height:58.886719px;}
.h12{height:60.468750px;}
.h2{height:62.578125px;}
.ha{height:64.775391px;}
.h13{height:67.109235px;}
.hb{height:67.109355px;}
.he{height:67.109415px;}
.hc{height:68.629590px;}
.h4{height:75.093750px;}
.h9{height:84.656250px;}
.hd{height:87.520819px;}
.h1{height:87.609375px;}
.h18{height:92.165039px;}
.h16{height:93.351562px;}
.h8{height:129.550781px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:34.255365px;}
.xf{left:106.595625px;}
.xd{left:108.784650px;}
.x13{left:110.970930px;}
.x7{left:117.000000px;}
.x1{left:135.000000px;}
.x4{left:141.950490px;}
.x5{left:144.000000px;}
.x2{left:162.000000px;}
.xe{left:222.750540px;}
.x3{left:225.000000px;}
.x8{left:228.196290px;}
.xa{left:239.999985px;}
.xb{left:247.499985px;}
.x10{left:326.311050px;}
.x22{left:327.764985px;}
.x11{left:334.650675px;}
.x20{left:342.766815px;}
.x1c{left:345.601290px;}
.x1a{left:346.697175px;}
.x17{left:354.829815px;}
.x14{left:379.480380px;}
.x15{left:385.105380px;}
.x1b{left:390.730395px;}
.x1d{left:412.291050px;}
.xc{left:426.740850px;}
.x18{left:588.642375px;}
.x9{left:589.847445px;}
.x1e{left:591.426660px;}
.x12{left:598.444170px;}
.x21{left:604.069170px;}
.x16{left:615.159870px;}
.x19{left:623.281515px;}
.x1f{left:669.885510px;}
@media print{
.v2{vertical-align:-17.777760pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.777760pt;}
.v4{vertical-align:25.452693pt;}
.v3{vertical-align:28.254027pt;}
.v5{vertical-align:42.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000053pt;}
.ls1{letter-spacing:0.000320pt;}
.ls4{letter-spacing:0.007093pt;}
.ls3{letter-spacing:9.589493pt;}
.ws1f{word-spacing:-48.000000pt;}
.wsc{word-spacing:-40.000000pt;}
.ws87{word-spacing:-30.000000pt;}
.ws1d{word-spacing:-29.354667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws59{word-spacing:-10.666667pt;}
.ws86{word-spacing:-10.000000pt;}
.ws76{word-spacing:-5.253120pt;}
.ws77{word-spacing:-5.253067pt;}
.ws13{word-spacing:-5.186667pt;}
.ws12{word-spacing:-5.186613pt;}
.ws3a{word-spacing:-5.181067pt;}
.ws41{word-spacing:-4.959627pt;}
.ws22{word-spacing:-4.938507pt;}
.ws4b{word-spacing:-4.842453pt;}
.ws7e{word-spacing:-4.785440pt;}
.ws62{word-spacing:-4.725280pt;}
.ws55{word-spacing:-4.638720pt;}
.ws2c{word-spacing:-4.604160pt;}
.ws49{word-spacing:-4.577493pt;}
.ws64{word-spacing:-4.417867pt;}
.ws7d{word-spacing:-4.393547pt;}
.ws50{word-spacing:-4.379467pt;}
.ws45{word-spacing:-4.370507pt;}
.ws46{word-spacing:-4.370453pt;}
.ws23{word-spacing:-4.357760pt;}
.ws2f{word-spacing:-4.271573pt;}
.ws10{word-spacing:-4.176693pt;}
.ws47{word-spacing:-4.139520pt;}
.ws5c{word-spacing:-4.089493pt;}
.ws80{word-spacing:-4.033280pt;}
.ws7f{word-spacing:-4.033227pt;}
.ws2a{word-spacing:-4.014347pt;}
.ws75{word-spacing:-3.993227pt;}
.ws74{word-spacing:-3.993173pt;}
.ws7c{word-spacing:-3.812907pt;}
.ws2b{word-spacing:-3.748693pt;}
.ws35{word-spacing:-3.520107pt;}
.wsf{word-spacing:-3.348160pt;}
.ws6c{word-spacing:-3.264587pt;}
.ws3{word-spacing:-3.245120pt;}
.ws73{word-spacing:-3.186827pt;}
.ws29{word-spacing:-3.184747pt;}
.ws28{word-spacing:-3.184693pt;}
.ws8c{word-spacing:-3.174720pt;}
.ws5f{word-spacing:-3.149760pt;}
.ws81{word-spacing:-3.149600pt;}
.ws82{word-spacing:-3.136693pt;}
.ws69{word-spacing:-3.114400pt;}
.ws6d{word-spacing:-3.080747pt;}
.ws60{word-spacing:-3.033600pt;}
.ws4{word-spacing:-2.969173pt;}
.ws61{word-spacing:-2.957547pt;}
.ws27{word-spacing:-2.924053pt;}
.ws79{word-spacing:-2.883413pt;}
.ws5a{word-spacing:-2.882080pt;}
.ws5b{word-spacing:-2.882027pt;}
.ws18{word-spacing:-2.813173pt;}
.ws4e{word-spacing:-2.796480pt;}
.ws4f{word-spacing:-2.777920pt;}
.ws54{word-spacing:-2.777227pt;}
.ws20{word-spacing:-2.776480pt;}
.ws78{word-spacing:-2.694187pt;}
.ws37{word-spacing:-2.601387pt;}
.ws16{word-spacing:-2.509387pt;}
.wsa{word-spacing:-2.495147pt;}
.ws6b{word-spacing:-2.492960pt;}
.ws8{word-spacing:-2.467787pt;}
.ws66{word-spacing:-2.439733pt;}
.ws6e{word-spacing:-2.439253pt;}
.ws83{word-spacing:-2.394720pt;}
.ws7{word-spacing:-2.368853pt;}
.wsb{word-spacing:-2.268213pt;}
.ws2{word-spacing:-2.231360pt;}
.ws44{word-spacing:-2.216853pt;}
.ws3e{word-spacing:-2.202667pt;}
.ws84{word-spacing:-2.200320pt;}
.ws38{word-spacing:-2.197280pt;}
.ws31{word-spacing:-2.149280pt;}
.ws6a{word-spacing:-2.065920pt;}
.ws53{word-spacing:-2.058027pt;}
.ws51{word-spacing:-2.046880pt;}
.wsd{word-spacing:-2.023253pt;}
.ws32{word-spacing:-1.869813pt;}
.ws72{word-spacing:-1.844160pt;}
.ws67{word-spacing:-1.843573pt;}
.ws3c{word-spacing:-1.840427pt;}
.ws42{word-spacing:-1.800213pt;}
.ws6{word-spacing:-1.793547pt;}
.ws33{word-spacing:-1.776053pt;}
.ws17{word-spacing:-1.753600pt;}
.ws1b{word-spacing:-1.641493pt;}
.ws52{word-spacing:-1.500000pt;}
.ws40{word-spacing:-1.406933pt;}
.ws68{word-spacing:-1.405333pt;}
.ws70{word-spacing:-1.393547pt;}
.ws26{word-spacing:-1.286187pt;}
.ws3b{word-spacing:-1.245760pt;}
.ws4c{word-spacing:-1.190720pt;}
.ws6f{word-spacing:-1.184640pt;}
.ws58{word-spacing:-1.111840pt;}
.ws57{word-spacing:-1.111787pt;}
.ws2d{word-spacing:-1.086560pt;}
.ws3f{word-spacing:-1.033707pt;}
.ws15{word-spacing:-0.981013pt;}
.ws56{word-spacing:-0.970720pt;}
.ws5d{word-spacing:-0.964373pt;}
.ws5e{word-spacing:-0.964320pt;}
.ws1a{word-spacing:-0.903627pt;}
.ws2e{word-spacing:-0.894240pt;}
.ws9{word-spacing:-0.869813pt;}
.ws19{word-spacing:-0.793173pt;}
.ws7b{word-spacing:-0.780160pt;}
.ws36{word-spacing:-0.762347pt;}
.ws25{word-spacing:-0.744000pt;}
.ws48{word-spacing:-0.736000pt;}
.ws14{word-spacing:-0.622240pt;}
.ws39{word-spacing:-0.618773pt;}
.ws7a{word-spacing:-0.613760pt;}
.ws11{word-spacing:-0.602293pt;}
.ws63{word-spacing:-0.594133pt;}
.ws4d{word-spacing:-0.524480pt;}
.ws5{word-spacing:-0.519360pt;}
.ws1c{word-spacing:-0.497600pt;}
.ws24{word-spacing:-0.477440pt;}
.ws34{word-spacing:-0.463893pt;}
.ws30{word-spacing:-0.452693pt;}
.ws65{word-spacing:-0.303360pt;}
.ws21{word-spacing:-0.300373pt;}
.ws4a{word-spacing:-0.267253pt;}
.ws3d{word-spacing:-0.225280pt;}
.wse{word-spacing:-0.213867pt;}
.ws43{word-spacing:-0.197440pt;}
.ws71{word-spacing:-0.168853pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:22.707307pt;}
.ws8b{word-spacing:292.448640pt;}
.ws88{word-spacing:302.448640pt;}
.ws8a{word-spacing:332.679200pt;}
.ws89{word-spacing:351.897920pt;}
.ws85{word-spacing:434.518133pt;}
._2{margin-left:-1.523307pt;}
._13{width:163.014880pt;}
._10{width:180.702880pt;}
._f{width:193.571680pt;}
._6{width:198.564960pt;}
._12{width:200.087627pt;}
._4{width:201.927733pt;}
._11{width:209.135040pt;}
._9{width:235.788480pt;}
._a{width:247.340160pt;}
._b{width:292.448640pt;}
._7{width:325.631467pt;}
._e{width:332.886720pt;}
._d{width:339.078133pt;}
._5{width:370.371733pt;}
._c{width:376.773440pt;}
._0{width:384.000000pt;}
._8{width:425.621067pt;}
._3{width:1940.273173pt;}
._1{width:1961.606507pt;}
.fs7{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:94.633467pt;}
.y27{bottom:97.501307pt;}
.y26{bottom:109.501307pt;}
.y165{bottom:131.583827pt;}
.y86{bottom:133.827227pt;}
.ya5{bottom:134.044280pt;}
.yc5{bottom:136.718760pt;}
.y5c{bottom:139.385427pt;}
.y125{bottom:139.410147pt;}
.y164{bottom:147.583827pt;}
.y85{bottom:149.827227pt;}
.ya4{bottom:150.044280pt;}
.yc4{bottom:152.718760pt;}
.y124{bottom:154.076813pt;}
.y5b{bottom:155.385427pt;}
.y163{bottom:163.583827pt;}
.y25{bottom:165.639320pt;}
.ya3{bottom:166.044280pt;}
.yc3{bottom:168.718760pt;}
.y84{bottom:171.160560pt;}
.y5a{bottom:171.385427pt;}
.y123{bottom:171.410147pt;}
.y162{bottom:179.583827pt;}
.y24{bottom:181.639320pt;}
.ya2{bottom:182.044280pt;}
.yc2{bottom:184.718760pt;}
.y122{bottom:186.076813pt;}
.yf1{bottom:192.339867pt;}
.y161{bottom:195.583827pt;}
.y23{bottom:197.639320pt;}
.ya1{bottom:198.044280pt;}
.y59{bottom:200.718760pt;}
.y121{bottom:200.743480pt;}
.y83{bottom:203.284253pt;}
.yf0{bottom:208.339867pt;}
.y160{bottom:211.583827pt;}
.ya0{bottom:214.044280pt;}
.y58{bottom:216.718760pt;}
.y120{bottom:218.076813pt;}
.y82{bottom:219.284253pt;}
.yef{bottom:224.339867pt;}
.y22{bottom:226.972653pt;}
.y15f{bottom:227.583827pt;}
.y9f{bottom:230.044280pt;}
.y57{bottom:232.718760pt;}
.y11f{bottom:232.743480pt;}
.y81{bottom:235.284253pt;}
.yd4{bottom:238.052093pt;}
.y21{bottom:242.972653pt;}
.y15e{bottom:243.583827pt;}
.yee{bottom:245.673200pt;}
.y9e{bottom:246.044280pt;}
.y11e{bottom:247.410147pt;}
.y56{bottom:248.718760pt;}
.y80{bottom:251.284253pt;}
.y20{bottom:258.972653pt;}
.y15d{bottom:259.583827pt;}
.yd3{bottom:262.453133pt;}
.y55{bottom:264.718760pt;}
.y11d{bottom:264.743480pt;}
.y7f{bottom:267.284253pt;}
.yc1{bottom:272.996107pt;}
.y15c{bottom:274.250493pt;}
.y1f{bottom:274.972653pt;}
.y9d{bottom:275.377613pt;}
.yed{bottom:277.796893pt;}
.y11c{bottom:279.410147pt;}
.y54{bottom:280.718760pt;}
.y7e{bottom:283.284253pt;}
.y1e{bottom:290.972653pt;}
.y9c{bottom:291.377613pt;}
.yec{bottom:293.796893pt;}
.y53{bottom:296.718760pt;}
.y11b{bottom:296.743480pt;}
.y7d{bottom:299.284253pt;}
.yd2{bottom:299.501307pt;}
.y1d{bottom:306.972653pt;}
.y9b{bottom:307.377613pt;}
.yeb{bottom:309.796893pt;}
.yc0{bottom:310.044280pt;}
.y11a{bottom:311.410147pt;}
.y52{bottom:312.718760pt;}
.y7c{bottom:315.284253pt;}
.yd1{bottom:315.501307pt;}
.y1c{bottom:322.972653pt;}
.y9a{bottom:323.377613pt;}
.yea{bottom:325.796893pt;}
.ybf{bottom:326.044280pt;}
.y51{bottom:328.718760pt;}
.y119{bottom:328.743480pt;}
.yd0{bottom:331.501307pt;}
.y1b{bottom:338.972653pt;}
.y99{bottom:339.377613pt;}
.ye9{bottom:341.796893pt;}
.ybe{bottom:342.044280pt;}
.y118{bottom:343.410147pt;}
.y7b{bottom:344.617587pt;}
.y50{bottom:344.718760pt;}
.ycf{bottom:347.501307pt;}
.y1a{bottom:354.972653pt;}
.y98{bottom:355.377613pt;}
.ye8{bottom:357.796893pt;}
.ybd{bottom:358.044280pt;}
.y117{bottom:358.076813pt;}
.y7a{bottom:360.617587pt;}
.yce{bottom:363.501307pt;}
.y4f{bottom:366.052093pt;}
.y97{bottom:371.377613pt;}
.ye7{bottom:373.796893pt;}
.ybc{bottom:374.044280pt;}
.y116{bottom:375.410147pt;}
.y79{bottom:376.617587pt;}
.y19{bottom:379.250000pt;}
.ycd{bottom:379.501307pt;}
.y96{bottom:387.377613pt;}
.ybb{bottom:390.044280pt;}
.y115{bottom:390.076813pt;}
.y4e{bottom:390.453133pt;}
.y78{bottom:392.617587pt;}
.ye6{bottom:395.130227pt;}
.ycc{bottom:395.501307pt;}
.y14a{bottom:401.501307pt;}
.y95{bottom:403.377613pt;}
.y114{bottom:404.743480pt;}
.yba{bottom:406.044280pt;}
.y77{bottom:408.617587pt;}
.ycb{bottom:411.501307pt;}
.y149{bottom:416.167973pt;}
.y94{bottom:419.377613pt;}
.yb9{bottom:422.044280pt;}
.y113{bottom:422.076813pt;}
.y76{bottom:424.617587pt;}
.ye5{bottom:427.253920pt;}
.y4d{bottom:427.501307pt;}
.y18{bottom:427.686853pt;}
.y148{bottom:433.501307pt;}
.y93{bottom:435.377613pt;}
.y112{bottom:436.743480pt;}
.yb8{bottom:438.044280pt;}
.y75{bottom:440.617587pt;}
.yca{bottom:440.834640pt;}
.y152{bottom:442.861293pt;}
.ye4{bottom:443.253920pt;}
.y4c{bottom:443.501307pt;}
.y17{bottom:443.797533pt;}
.y147{bottom:448.167973pt;}
.y92{bottom:451.377613pt;}
.y111{bottom:451.410147pt;}
.yb7{bottom:454.044280pt;}
.y74{bottom:456.617587pt;}
.yc9{bottom:456.834640pt;}
.y151{bottom:458.861293pt;}
.ye3{bottom:459.253920pt;}
.y4b{bottom:459.501307pt;}
.y146{bottom:462.834640pt;}
.y16{bottom:465.651693pt;}
.y91{bottom:467.377613pt;}
.y110{bottom:468.743480pt;}
.yb6{bottom:470.044280pt;}
.y73{bottom:472.617587pt;}
.yc8{bottom:472.834640pt;}
.y150{bottom:474.861293pt;}
.ye2{bottom:475.253920pt;}
.y4a{bottom:475.501307pt;}
.y145{bottom:480.167973pt;}
.y90{bottom:483.377613pt;}
.y10f{bottom:483.410147pt;}
.yb5{bottom:486.044280pt;}
.y72{bottom:488.617587pt;}
.yc7{bottom:488.834640pt;}
.y14f{bottom:490.861293pt;}
.ye1{bottom:491.253920pt;}
.y144{bottom:494.834640pt;}
.y8f{bottom:499.377613pt;}
.y10e{bottom:500.743480pt;}
.y49{bottom:504.834640pt;}
.y14e{bottom:506.861293pt;}
.ye0{bottom:507.253920pt;}
.y143{bottom:509.501307pt;}
.y15{bottom:513.830733pt;}
.y8e{bottom:515.377613pt;}
.y10d{bottom:515.410147pt;}
.y71{bottom:517.950920pt;}
.y48{bottom:520.834640pt;}
.y14d{bottom:522.861293pt;}
.ydf{bottom:523.253920pt;}
.y142{bottom:526.834640pt;}
.y14{bottom:529.830733pt;}
.y10c{bottom:530.076813pt;}
.yb4{bottom:531.377613pt;}
.y70{bottom:533.950920pt;}
.y47{bottom:536.834640pt;}
.y14c{bottom:538.861293pt;}
.yde{bottom:539.253920pt;}
.y141{bottom:541.501307pt;}
.y8d{bottom:544.710947pt;}
.y13{bottom:545.830733pt;}
.yb3{bottom:547.377613pt;}
.y10b{bottom:547.410147pt;}
.y6f{bottom:549.950920pt;}
.y46{bottom:552.834640pt;}
.y14b{bottom:553.527960pt;}
.ydd{bottom:555.253920pt;}
.y140{bottom:556.167973pt;}
.y8c{bottom:560.710947pt;}
.y12{bottom:561.830733pt;}
.y10a{bottom:562.076813pt;}
.yb2{bottom:563.377613pt;}
.y6e{bottom:565.470480pt;}
.y45{bottom:568.834640pt;}
.y13f{bottom:570.834640pt;}
.y6d{bottom:571.833627pt;}
.ydc{bottom:576.587253pt;}
.y8b{bottom:576.710947pt;}
.y109{bottom:576.743480pt;}
.y11{bottom:577.830733pt;}
.yb1{bottom:579.377613pt;}
.y44{bottom:584.834640pt;}
.y13e{bottom:588.167973pt;}
.y6c{bottom:592.710947pt;}
.y10{bottom:593.830733pt;}
.y108{bottom:594.076813pt;}
.yb0{bottom:595.377613pt;}
.y43{bottom:600.834640pt;}
.y13d{bottom:602.834640pt;}
.y6b{bottom:608.710947pt;}
.y107{bottom:608.743480pt;}
.yf{bottom:609.830733pt;}
.yaf{bottom:611.377613pt;}
.y42{bottom:616.834640pt;}
.y13c{bottom:617.501307pt;}
.y15b{bottom:619.821280pt;}
.y6a{bottom:624.710947pt;}
.ye{bottom:625.830733pt;}
.y106{bottom:626.076813pt;}
.yae{bottom:627.377613pt;}
.y41{bottom:632.834640pt;}
.y13b{bottom:634.834640pt;}
.y15a{bottom:635.821307pt;}
.y69{bottom:640.710947pt;}
.y105{bottom:640.743480pt;}
.yd{bottom:641.830733pt;}
.yad{bottom:648.710947pt;}
.y40{bottom:648.834640pt;}
.y13a{bottom:649.501307pt;}
.y159{bottom:651.821307pt;}
.y68{bottom:656.710947pt;}
.yc{bottom:657.830733pt;}
.y104{bottom:658.076813pt;}
.y139{bottom:664.167973pt;}
.yc6{bottom:664.834640pt;}
.y158{bottom:667.821307pt;}
.y17a{bottom:670.167973pt;}
.y67{bottom:672.710947pt;}
.y103{bottom:672.743480pt;}
.yb{bottom:673.830733pt;}
.y3f{bottom:678.167973pt;}
.yac{bottom:680.834640pt;}
.y138{bottom:681.501307pt;}
.y157{bottom:683.821307pt;}
.y102{bottom:687.410147pt;}
.y66{bottom:688.710947pt;}
.ya{bottom:689.830733pt;}
.y179{bottom:691.501307pt;}
.y3e{bottom:694.167973pt;}
.y137{bottom:696.167973pt;}
.yab{bottom:696.834640pt;}
.y156{bottom:699.821307pt;}
.y178{bottom:702.167973pt;}
.y8a{bottom:704.710947pt;}
.y101{bottom:704.743480pt;}
.y9{bottom:705.830733pt;}
.y65{bottom:710.044280pt;}
.y3d{bottom:710.167973pt;}
.y136{bottom:710.834640pt;}
.yaa{bottom:712.834640pt;}
.y155{bottom:715.821307pt;}
.y100{bottom:719.410147pt;}
.y89{bottom:720.710947pt;}
.y8{bottom:721.830733pt;}
.y177{bottom:723.501307pt;}
.y3c{bottom:726.167973pt;}
.y135{bottom:728.167973pt;}
.ya9{bottom:728.834640pt;}
.y154{bottom:731.821307pt;}
.yff{bottom:734.076813pt;}
.y176{bottom:734.167973pt;}
.y88{bottom:736.710947pt;}
.y7{bottom:737.830733pt;}
.y3b{bottom:742.167973pt;}
.ya8{bottom:744.834640pt;}
.y134{bottom:745.501307pt;}
.y153{bottom:746.487973pt;}
.yfe{bottom:751.410147pt;}
.ydb{bottom:752.710947pt;}
.y6{bottom:753.830733pt;}
.y175{bottom:755.501307pt;}
.y87{bottom:758.044280pt;}
.y3a{bottom:758.167973pt;}
.y133{bottom:760.167973pt;}
.ya7{bottom:760.834640pt;}
.yfd{bottom:766.076813pt;}
.y174{bottom:766.167973pt;}
.y39{bottom:774.167973pt;}
.y132{bottom:774.834640pt;}
.y5{bottom:775.629560pt;}
.ya6{bottom:776.834640pt;}
.yfc{bottom:780.743480pt;}
.yda{bottom:782.044280pt;}
.y173{bottom:787.501307pt;}
.y38{bottom:790.167973pt;}
.y131{bottom:792.167973pt;}
.yd9{bottom:798.044280pt;}
.yfb{bottom:798.076813pt;}
.y172{bottom:798.167973pt;}
.y37{bottom:806.167973pt;}
.y130{bottom:806.834640pt;}
.y171{bottom:808.834640pt;}
.y4{bottom:810.473307pt;}
.yfa{bottom:812.743480pt;}
.yd8{bottom:814.044280pt;}
.y170{bottom:819.501307pt;}
.y12f{bottom:821.501307pt;}
.y36{bottom:822.167973pt;}
.y3{bottom:826.473307pt;}
.yf9{bottom:827.410147pt;}
.yd7{bottom:830.044280pt;}
.y16f{bottom:830.167973pt;}
.y35{bottom:838.167973pt;}
.y12e{bottom:838.834640pt;}
.y16e{bottom:840.834640pt;}
.y2{bottom:844.606120pt;}
.yf8{bottom:844.743480pt;}
.yd6{bottom:846.044280pt;}
.y16d{bottom:851.501307pt;}
.y12d{bottom:853.501307pt;}
.y64{bottom:854.167973pt;}
.yf7{bottom:859.410147pt;}
.y16c{bottom:862.167973pt;}
.yd5{bottom:867.377613pt;}
.y34{bottom:867.501307pt;}
.y63{bottom:870.167973pt;}
.y12c{bottom:870.834640pt;}
.y16b{bottom:872.834640pt;}
.y1{bottom:882.139973pt;}
.yf6{bottom:883.020827pt;}
.y33{bottom:883.501307pt;}
.y12b{bottom:885.501307pt;}
.y62{bottom:886.167973pt;}
.y32{bottom:899.501307pt;}
.y61{bottom:902.167973pt;}
.y12a{bottom:902.834640pt;}
.y16a{bottom:910.167973pt;}
.y166{bottom:912.000000pt;}
.y31{bottom:915.501307pt;}
.y129{bottom:917.501307pt;}
.y60{bottom:918.167973pt;}
.yf5{bottom:919.302080pt;}
.y169{bottom:920.834640pt;}
.y2c{bottom:925.951813pt;}
.y5f{bottom:930.761720pt;}
.y30{bottom:931.501307pt;}
.yf4{bottom:931.968747pt;}
.y128{bottom:934.834640pt;}
.y2b{bottom:942.108067pt;}
.y2d{bottom:942.761720pt;}
.yf3{bottom:944.635413pt;}
.y2f{bottom:947.501307pt;}
.y127{bottom:949.501307pt;}
.y168{bottom:950.167973pt;}
.y2e{bottom:963.501307pt;}
.y2a{bottom:964.108067pt;}
.y126{bottom:964.167973pt;}
.yf2{bottom:964.302080pt;}
.y167{bottom:964.834640pt;}
.y29{bottom:982.202467pt;}
.y5d{bottom:996.401040pt;}
.y28{bottom:1005.380853pt;}
.h17{height:39.257812pt;}
.h15{height:40.312500pt;}
.h7{height:41.875000pt;}
.h6{height:43.000000pt;}
.hf{height:44.500000pt;}
.h10{height:47.109375pt;}
.h11{height:48.375000pt;}
.h14{height:50.062500pt;}
.h3{height:52.317708pt;}
.h5{height:52.343750pt;}
.h12{height:53.750000pt;}
.h2{height:55.625000pt;}
.ha{height:57.578125pt;}
.h13{height:59.652653pt;}
.hb{height:59.652760pt;}
.he{height:59.652813pt;}
.hc{height:61.004080pt;}
.h4{height:66.750000pt;}
.h9{height:75.250000pt;}
.hd{height:77.796283pt;}
.h1{height:77.875000pt;}
.h18{height:81.924479pt;}
.h16{height:82.979167pt;}
.h8{height:115.156250pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.449213pt;}
.xf{left:94.751667pt;}
.xd{left:96.697467pt;}
.x13{left:98.640827pt;}
.x7{left:104.000000pt;}
.x1{left:120.000000pt;}
.x4{left:126.178213pt;}
.x5{left:128.000000pt;}
.x2{left:144.000000pt;}
.xe{left:198.000480pt;}
.x3{left:200.000000pt;}
.x8{left:202.841147pt;}
.xa{left:213.333320pt;}
.xb{left:219.999987pt;}
.x10{left:290.054267pt;}
.x22{left:291.346653pt;}
.x11{left:297.467267pt;}
.x20{left:304.681613pt;}
.x1c{left:307.201147pt;}
.x1a{left:308.175267pt;}
.x17{left:315.404280pt;}
.x14{left:337.315893pt;}
.x15{left:342.315893pt;}
.x1b{left:347.315907pt;}
.x1d{left:366.480933pt;}
.xc{left:379.325200pt;}
.x18{left:523.237667pt;}
.x9{left:524.308840pt;}
.x1e{left:525.712587pt;}
.x12{left:531.950373pt;}
.x21{left:536.950373pt;}
.x16{left:546.808773pt;}
.x19{left:554.028013pt;}
.x1f{left:595.453787pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  