
    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_c8676ce223e97f0a0cd20c5c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_446821e954721293fc82b4b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_d868d6a6462407a99d5b95db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_02907e4b15414ca361c8976b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_735e8ac97b7cc8d64f96e60b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_07d99abac049e27914ec44b9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls14{letter-spacing:-1.572000px;}
.ls17{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.350000px;}
.ls9{letter-spacing:-1.014000px;}
.ls8{letter-spacing:-0.852000px;}
.ls20{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.660000px;}
.ls13{letter-spacing:-0.590400px;}
.ls5{letter-spacing:-0.463800px;}
.ls1e{letter-spacing:-0.291000px;}
.ls21{letter-spacing:-0.227400px;}
.ls18{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.207600px;}
.ls16{letter-spacing:-0.193200px;}
.ls7{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.115200px;}
.ls15{letter-spacing:-0.048960px;}
.lsa{letter-spacing:-0.043200px;}
.ls10{letter-spacing:-0.025920px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.129600px;}
.ls12{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.175800px;}
.ls1d{letter-spacing:0.244800px;}
.lsd{letter-spacing:0.256200px;}
.ls1f{letter-spacing:0.256320px;}
.ls1{letter-spacing:0.391680px;}
.lsc{letter-spacing:4.469760px;}
.ls11{letter-spacing:18.702720px;}
.ls0{letter-spacing:28.038720px;}
.ls1c{letter-spacing:32.382720px;}
.ls1b{letter-spacing:33.102720px;}
.ls2{letter-spacing:59.321280px;}
.lsb{letter-spacing:77.022720px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws0{word-spacing:-17.749560px;}
.ws8{word-spacing:-17.573760px;}
.ws7{word-spacing:-15.226440px;}
.ws10{word-spacing:-15.215040px;}
.ws1{word-spacing:-15.099840px;}
.wsf{word-spacing:-14.990400px;}
.ws4{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.944320px;}
.wsd{word-spacing:-14.921280px;}
.ws9{word-spacing:-14.855040px;}
.ws2{word-spacing:-14.837640px;}
.ws13{word-spacing:-14.762640px;}
.wse{word-spacing:-14.754240px;}
.ws11{word-spacing:-14.679240px;}
.ws12{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.379840px;}
.wsa{word-spacing:-14.310240px;}
.ws3{word-spacing:-9.437760px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.239360px;}
._5{margin-left:-2.914560px;}
._1{margin-left:-1.059840px;}
._4{width:1.942080px;}
._9{width:2.956320px;}
._3{width:3.974400px;}
._2{width:5.166720px;}
._d{width:6.327840px;}
._6{width:7.450080px;}
._0{width:8.942400px;}
._7{width:10.068480px;}
._8{width:11.371200px;}
._11{width:12.932160px;}
._16{width:13.951200px;}
._14{width:16.704960px;}
._13{width:18.034560px;}
._10{width:19.323360px;}
._e{width:20.401920px;}
._f{width:21.991680px;}
._19{width:23.316480px;}
._15{width:24.508800px;}
._b{width:25.833600px;}
._a{width:27.754560px;}
._c{width:29.060160px;}
._17{width:34.577280px;}
._18{width:36.145920px;}
._1a{width:37.512960px;}
._28{width:39.081600px;}
._1b{width:52.793280px;}
._26{width:56.966400px;}
._27{width:58.320960px;}
._20{width:97.372800px;}
._21{width:98.528640px;}
._23{width:114.793920px;}
._24{width:115.887840px;}
._1c{width:118.569600px;}
._1d{width:120.664320px;}
._25{width:146.522880px;}
._22{width:161.542560px;}
._1e{width:181.563840px;}
._1f{width:183.102720px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.420000px;}
.y2{bottom:77.616000px;}
.ye2{bottom:111.456000px;}
.y1b9{bottom:113.796000px;}
.y7e{bottom:114.156000px;}
.y10c{bottom:115.236000px;}
.y53{bottom:117.036000px;}
.y98{bottom:119.916000px;}
.y156{bottom:121.356000px;}
.yfb{bottom:130.896000px;}
.y17a{bottom:133.056000px;}
.ye1{bottom:133.236000px;}
.y1b8{bottom:135.396000px;}
.y7d{bottom:135.936000px;}
.y10b{bottom:137.016000px;}
.y52{bottom:138.816000px;}
.y155{bottom:141.516000px;}
.y97{bottom:141.696000px;}
.y19c{bottom:149.076000px;}
.yfa{bottom:152.490000px;}
.y29{bottom:153.210000px;}
.ye0{bottom:154.830000px;}
.y7c{bottom:157.710000px;}
.y10a{bottom:158.790000px;}
.y51{bottom:160.590000px;}
.y154{bottom:161.490000px;}
.y96{bottom:163.470000px;}
.y1b7{bottom:169.230000px;}
.ybc{bottom:170.850000px;}
.yf9{bottom:174.270000px;}
.y28{bottom:174.810000px;}
.ydf{bottom:176.610000px;}
.y7b{bottom:179.310000px;}
.y109{bottom:180.570000px;}
.y153{bottom:181.650000px;}
.y50{bottom:182.370000px;}
.y95{bottom:185.070000px;}
.y1b6{bottom:191.010000px;}
.ybb{bottom:192.450000px;}
.yf8{bottom:196.050000px;}
.yde{bottom:198.390000px;}
.y7a{bottom:201.090000px;}
.y152{bottom:201.810000px;}
.y108{bottom:202.350000px;}
.y4f{bottom:203.970000px;}
.y19b{bottom:204.690000px;}
.y94{bottom:206.850000px;}
.y27{bottom:209.550000px;}
.y179{bottom:210.270000px;}
.y1b5{bottom:212.610000px;}
.yba{bottom:214.230000px;}
.yf7{bottom:217.830000px;}
.ydd{bottom:220.170000px;}
.y151{bottom:221.970000px;}
.y79{bottom:222.870000px;}
.y107{bottom:223.950000px;}
.y4e{bottom:225.750000px;}
.y19a{bottom:226.290000px;}
.y93{bottom:228.630000px;}
.y26{bottom:231.150000px;}
.yb9{bottom:236.010000px;}
.yf6{bottom:239.430000px;}
.y150{bottom:242.130000px;}
.y178{bottom:244.110000px;}
.y78{bottom:244.650000px;}
.y106{bottom:245.730000px;}
.y1b4{bottom:246.450000px;}
.y4d{bottom:247.530000px;}
.y199{bottom:248.070000px;}
.y92{bottom:250.410000px;}
.y25{bottom:252.930000px;}
.ydc{bottom:253.830000px;}
.yb8{bottom:257.790000px;}
.yf5{bottom:261.210000px;}
.y14f{bottom:262.290000px;}
.y77{bottom:266.250000px;}
.y105{bottom:267.510000px;}
.y1b3{bottom:268.230000px;}
.y4c{bottom:269.310000px;}
.y24{bottom:274.710000px;}
.ydb{bottom:276.510000px;}
.y177{bottom:277.770000px;}
.yb7{bottom:279.390000px;}
.y198{bottom:281.910000px;}
.y14e{bottom:282.450000px;}
.y12b{bottom:282.990000px;}
.y91{bottom:284.070000px;}
.y76{bottom:288.030000px;}
.y104{bottom:289.290000px;}
.y4b{bottom:290.910000px;}
.yf4{bottom:295.050000px;}
.y23{bottom:296.490000px;}
.y176{bottom:299.550000px;}
.yb6{bottom:301.170000px;}
.y1b2{bottom:301.890000px;}
.y14d{bottom:302.610000px;}
.yda{bottom:303.150000px;}
.y197{bottom:303.510000px;}
.y12a{bottom:304.770000px;}
.y90{bottom:306.750000px;}
.y103{bottom:310.890000px;}
.y4a{bottom:312.690000px;}
.yf3{bottom:316.650000px;}
.y22{bottom:318.090000px;}
.y175{bottom:321.330000px;}
.y75{bottom:321.690000px;}
.yb5{bottom:322.950000px;}
.y1b1{bottom:323.670000px;}
.y129{bottom:326.550000px;}
.y102{bottom:332.670000px;}
.yd9{bottom:336.855000px;}
.y196{bottom:337.395000px;}
.yf2{bottom:338.475000px;}
.y21{bottom:339.915000px;}
.y174{bottom:342.975000px;}
.y74{bottom:343.515000px;}
.y14c{bottom:343.695000px;}
.yb4{bottom:344.775000px;}
.y1b0{bottom:345.315000px;}
.y49{bottom:346.575000px;}
.y101{bottom:354.495000px;}
.yd8{bottom:358.455000px;}
.y195{bottom:359.175000px;}
.yf1{bottom:360.255000px;}
.y20{bottom:361.695000px;}
.y14b{bottom:363.855000px;}
.y173{bottom:364.755000px;}
.y73{bottom:365.295000px;}
.yb3{bottom:366.375000px;}
.y48{bottom:368.175000px;}
.y100{bottom:376.275000px;}
.y1af{bottom:379.155000px;}
.yd7{bottom:380.235000px;}
.y194{bottom:380.775000px;}
.yf0{bottom:382.035000px;}
.y1f{bottom:383.475000px;}
.y14a{bottom:384.915000px;}
.y172{bottom:386.535000px;}
.y72{bottom:387.075000px;}
.yb2{bottom:388.155000px;}
.y47{bottom:389.955000px;}
.yff{bottom:397.875000px;}
.y1ae{bottom:400.935000px;}
.yd6{bottom:402.015000px;}
.yef{bottom:403.635000px;}
.y149{bottom:405.075000px;}
.y1e{bottom:405.255000px;}
.y171{bottom:408.315000px;}
.y71{bottom:408.675000px;}
.yb1{bottom:409.935000px;}
.y46{bottom:411.735000px;}
.y193{bottom:414.615000px;}
.yfe{bottom:419.655000px;}
.yd5{bottom:423.795000px;}
.y148{bottom:425.235000px;}
.y128{bottom:425.415000px;}
.y1d{bottom:426.855000px;}
.y170{bottom:429.915000px;}
.y70{bottom:430.455000px;}
.yb0{bottom:431.715000px;}
.y45{bottom:433.515000px;}
.y1ad{bottom:434.595000px;}
.yee{bottom:437.475000px;}
.yfd{bottom:441.435000px;}
.yd4{bottom:445.395000px;}
.y127{bottom:447.195000px;}
.y192{bottom:448.275000px;}
.y1c{bottom:448.635000px;}
.y16f{bottom:451.695000px;}
.y6f{bottom:452.235000px;}
.yaf{bottom:453.315000px;}
.y1ac{bottom:456.375000px;}
.yed{bottom:460.155000px;}
.yfc{bottom:463.215000px;}
.y147{bottom:465.555000px;}
.y44{bottom:467.175000px;}
.y126{bottom:468.975000px;}
.y191{bottom:470.055000px;}
.y1b{bottom:470.415000px;}
.y16e{bottom:473.475000px;}
.y6e{bottom:474.015000px;}
.y146{bottom:485.535000px;}
.yae{bottom:487.155000px;}
.yd3{bottom:488.955000px;}
.y43{bottom:489.855000px;}
.y1ab{bottom:490.035000px;}
.y125{bottom:490.575000px;}
.y190{bottom:491.835000px;}
.y16d{bottom:495.255000px;}
.y6d{bottom:495.795000px;}
.yec{bottom:496.875000px;}
.y1a{bottom:504.075000px;}
.y145{bottom:505.695000px;}
.yad{bottom:508.935000px;}
.yd2{bottom:510.735000px;}
.y16c{bottom:516.855000px;}
.y6c{bottom:517.395000px;}
.yeb{bottom:518.655000px;}
.y1aa{bottom:523.875000px;}
.y124{bottom:524.415000px;}
.y18f{bottom:525.495000px;}
.y42{bottom:526.575000px;}
.y19{bottom:526.755000px;}
.yac{bottom:530.535000px;}
.yd1{bottom:532.335000px;}
.y16b{bottom:538.635000px;}
.y6b{bottom:539.175000px;}
.yea{bottom:540.435000px;}
.y1a9{bottom:545.475000px;}
.y123{bottom:546.195000px;}
.y144{bottom:546.915000px;}
.y41{bottom:548.355000px;}
.yab{bottom:552.315000px;}
.yd0{bottom:554.115000px;}
.y18e{bottom:559.155000px;}
.y16a{bottom:560.415000px;}
.y6a{bottom:560.955000px;}
.y8f{bottom:561.855000px;}
.ye9{bottom:562.035000px;}
.y18{bottom:563.475000px;}
.y143{bottom:567.075000px;}
.y122{bottom:567.795000px;}
.y40{bottom:570.135000px;}
.y1a8{bottom:579.315000px;}
.y18d{bottom:580.935000px;}
.y169{bottom:582.195000px;}
.y69{bottom:582.735000px;}
.ye8{bottom:583.815000px;}
.y17{bottom:585.255000px;}
.yaa{bottom:586.155000px;}
.y142{bottom:587.235000px;}
.ycf{bottom:587.955000px;}
.y121{bottom:589.575000px;}
.y8e{bottom:590.475000px;}
.y3f{bottom:591.735000px;}
.y18c{bottom:602.715000px;}
.y168{bottom:603.825000px;}
.y68{bottom:604.365000px;}
.ye7{bottom:605.625000px;}
.y16{bottom:607.065000px;}
.y141{bottom:607.425000px;}
.ya9{bottom:607.785000px;}
.yce{bottom:609.585000px;}
.y120{bottom:611.385000px;}
.y1a7{bottom:613.005000px;}
.y3e{bottom:613.545000px;}
.y18b{bottom:624.525000px;}
.y167{bottom:625.605000px;}
.y67{bottom:626.145000px;}
.y8d{bottom:627.405000px;}
.y140{bottom:627.585000px;}
.y15{bottom:628.845000px;}
.ya8{bottom:629.565000px;}
.ycd{bottom:631.365000px;}
.y11f{bottom:633.165000px;}
.y1a6{bottom:634.785000px;}
.y3d{bottom:635.325000px;}
.y166{bottom:647.385000px;}
.y13f{bottom:647.565000px;}
.y66{bottom:647.925000px;}
.y8c{bottom:649.005000px;}
.y14{bottom:650.445000px;}
.ya7{bottom:651.345000px;}
.ycc{bottom:653.145000px;}
.y11e{bottom:654.765000px;}
.y1a5{bottom:656.565000px;}
.y18a{bottom:658.185000px;}
.y13e{bottom:668.625000px;}
.y3c{bottom:668.985000px;}
.y165{bottom:669.165000px;}
.y65{bottom:669.705000px;}
.y8b{bottom:670.785000px;}
.y13{bottom:672.225000px;}
.ya6{bottom:673.125000px;}
.ycb{bottom:674.925000px;}
.y11d{bottom:676.545000px;}
.y189{bottom:679.965000px;}
.y13d{bottom:688.785000px;}
.y1c3{bottom:689.865000px;}
.y1a4{bottom:690.225000px;}
.y3b{bottom:690.765000px;}
.y8a{bottom:692.565000px;}
.y12{bottom:694.005000px;}
.ya5{bottom:694.725000px;}
.yca{bottom:696.525000px;}
.y64{bottom:703.365000px;}
.ye6{bottom:704.445000px;}
.y13c{bottom:708.945000px;}
.y11c{bottom:710.385000px;}
.y1a3{bottom:712.005000px;}
.y3a{bottom:712.545000px;}
.y188{bottom:713.625000px;}
.y89{bottom:714.345000px;}
.y11{bottom:715.785000px;}
.ya4{bottom:716.505000px;}
.yc9{bottom:718.305000px;}
.y63{bottom:726.045000px;}
.ye5{bottom:726.225000px;}
.y13b{bottom:730.005000px;}
.y11b{bottom:731.985000px;}
.y1a2{bottom:733.785000px;}
.y39{bottom:734.325000px;}
.y187{bottom:735.405000px;}
.y88{bottom:735.945000px;}
.y10{bottom:737.385000px;}
.ya3{bottom:738.285000px;}
.yc8{bottom:740.085000px;}
.ye4{bottom:748.005000px;}
.y13a{bottom:750.165000px;}
.y11a{bottom:753.765000px;}
.y62{bottom:754.665000px;}
.y1c2{bottom:755.565000px;}
.y38{bottom:755.925000px;}
.y164{bottom:756.105000px;}
.y186{bottom:757.185000px;}
.y87{bottom:757.725000px;}
.yf{bottom:759.165000px;}
.ya2{bottom:760.065000px;}
.yc7{bottom:761.865000px;}
.y1a1{bottom:767.445000px;}
.ye3{bottom:769.785000px;}
.y139{bottom:770.325000px;}
.y119{bottom:775.545000px;}
.y1c1{bottom:777.165000px;}
.y37{bottom:777.705000px;}
.y86{bottom:779.505000px;}
.ye{bottom:780.945000px;}
.ya1{bottom:781.665000px;}
.yc6{bottom:783.465000px;}
.y1a0{bottom:789.225000px;}
.y138{bottom:790.485000px;}
.y185{bottom:790.845000px;}
.y61{bottom:791.565000px;}
.y118{bottom:797.325000px;}
.y1c0{bottom:798.945000px;}
.y163{bottom:799.485000px;}
.y85{bottom:801.285000px;}
.yd{bottom:802.725000px;}
.ya0{bottom:803.445000px;}
.yc5{bottom:805.245000px;}
.y19f{bottom:811.005000px;}
.y36{bottom:811.545000px;}
.y184{bottom:812.625000px;}
.y60{bottom:813.165000px;}
.y117{bottom:818.925000px;}
.y162{bottom:821.265000px;}
.y137{bottom:821.985000px;}
.y84{bottom:822.885000px;}
.yc{bottom:824.325000px;}
.y9f{bottom:825.225000px;}
.yc4{bottom:827.025000px;}
.y1bf{bottom:832.605000px;}
.y35{bottom:833.145000px;}
.y5f{bottom:834.945000px;}
.y116{bottom:840.705000px;}
.y161{bottom:843.045000px;}
.y136{bottom:843.765000px;}
.y83{bottom:844.665000px;}
.yb{bottom:846.105000px;}
.y183{bottom:846.285000px;}
.y9e{bottom:847.005000px;}
.yc3{bottom:848.805000px;}
.y1be{bottom:854.385000px;}
.y34{bottom:854.925000px;}
.y5e{bottom:856.725000px;}
.y115{bottom:862.485000px;}
.y160{bottom:864.645000px;}
.y135{bottom:865.545000px;}
.y82{bottom:866.445000px;}
.ya{bottom:867.885000px;}
.y9d{bottom:868.605000px;}
.y182{bottom:869.145000px;}
.y1bd{bottom:876.210000px;}
.y33{bottom:876.750000px;}
.y5d{bottom:878.550000px;}
.yc2{bottom:882.510000px;}
.y114{bottom:884.310000px;}
.y15f{bottom:886.470000px;}
.y134{bottom:887.190000px;}
.y19e{bottom:888.270000px;}
.y9{bottom:889.710000px;}
.y9c{bottom:890.430000px;}
.y181{bottom:898.350000px;}
.y32{bottom:898.530000px;}
.y5c{bottom:900.150000px;}
.yc1{bottom:904.290000px;}
.y113{bottom:905.910000px;}
.y15e{bottom:908.250000px;}
.y133{bottom:908.970000px;}
.y19d{bottom:909.870000px;}
.y9b{bottom:912.210000px;}
.y31{bottom:920.130000px;}
.y180{bottom:921.390000px;}
.y5b{bottom:921.930000px;}
.y8{bottom:923.370000px;}
.yc0{bottom:926.070000px;}
.y112{bottom:927.690000px;}
.y15d{bottom:930.030000px;}
.y132{bottom:930.750000px;}
.y1bc{bottom:931.650000px;}
.y9a{bottom:933.990000px;}
.y30{bottom:941.910000px;}
.y5a{bottom:943.710000px;}
.y17f{bottom:944.610000px;}
.y7{bottom:946.050000px;}
.y111{bottom:949.470000px;}
.y15c{bottom:951.810000px;}
.y131{bottom:952.530000px;}
.y1bb{bottom:953.430000px;}
.y99{bottom:955.590000px;}
.ybf{bottom:959.730000px;}
.y2f{bottom:963.690000px;}
.y81{bottom:965.490000px;}
.y17e{bottom:967.830000px;}
.y110{bottom:971.250000px;}
.y6{bottom:972.690000px;}
.y15b{bottom:973.410000px;}
.y130{bottom:974.130000px;}
.y59{bottom:977.370000px;}
.ybe{bottom:982.410000px;}
.y2e{bottom:985.470000px;}
.y80{bottom:987.090000px;}
.y17d{bottom:990.870000px;}
.y10f{bottom:992.850000px;}
.y15a{bottom:995.190000px;}
.y12f{bottom:995.910000px;}
.y58{bottom:999.150000px;}
.y7f{bottom:1008.870000px;}
.ybd{bottom:1009.050000px;}
.y17c{bottom:1014.090000px;}
.y159{bottom:1016.970000px;}
.y12e{bottom:1017.690000px;}
.y2d{bottom:1019.130000px;}
.y57{bottom:1020.930000px;}
.y5{bottom:1021.650000px;}
.y10e{bottom:1026.690000px;}
.y1ba{bottom:1030.650000px;}
.y17b{bottom:1037.310000px;}
.y158{bottom:1038.750000px;}
.y12d{bottom:1039.290000px;}
.y2c{bottom:1040.910000px;}
.y56{bottom:1042.530000px;}
.y10d{bottom:1049.370000px;}
.y157{bottom:1060.350000px;}
.y2b{bottom:1063.410000px;}
.y55{bottom:1064.310000px;}
.y4{bottom:1073.130000px;}
.y12c{bottom:1083.030000px;}
.y2a{bottom:1085.190000px;}
.y54{bottom:1086.090000px;}
.y1{bottom:1101.750000px;}
.h7{height:45.992812px;}
.h8{height:57.927656px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h9{height:71.613281px;}
.h5{height:73.722656px;}
.h6{height:74.039062px;}
.h4{height:123.116836px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.235987px;}
.x6{left:133.235987px;}
.xa{left:142.235987px;}
.x7{left:160.229987px;}
.x4{left:174.809987px;}
.x8{left:180.569987px;}
.x2{left:185.069987px;}
.x9{left:255.134987px;}
.x3{left:446.504987px;}
.x1{left:786.779987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls14{letter-spacing:-1.397333pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.200000pt;}
.ls9{letter-spacing:-0.901333pt;}
.ls8{letter-spacing:-0.757333pt;}
.ls20{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls13{letter-spacing:-0.524800pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1e{letter-spacing:-0.258667pt;}
.ls21{letter-spacing:-0.202133pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.184533pt;}
.ls16{letter-spacing:-0.171733pt;}
.ls7{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.102400pt;}
.ls15{letter-spacing:-0.043520pt;}
.lsa{letter-spacing:-0.038400pt;}
.ls10{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.115200pt;}
.ls12{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.156267pt;}
.ls1d{letter-spacing:0.217600pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1f{letter-spacing:0.227840pt;}
.ls1{letter-spacing:0.348160pt;}
.lsc{letter-spacing:3.973120pt;}
.ls11{letter-spacing:16.624640pt;}
.ls0{letter-spacing:24.923307pt;}
.ls1c{letter-spacing:28.784640pt;}
.ls1b{letter-spacing:29.424640pt;}
.ls2{letter-spacing:52.730027pt;}
.lsb{letter-spacing:68.464640pt;}
.ws5{word-spacing:-58.880000pt;}
.ws0{word-spacing:-15.777387pt;}
.ws8{word-spacing:-15.621120pt;}
.ws7{word-spacing:-13.534613pt;}
.ws10{word-spacing:-13.524480pt;}
.ws1{word-spacing:-13.422080pt;}
.wsf{word-spacing:-13.324800pt;}
.ws4{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.283840pt;}
.wsd{word-spacing:-13.263360pt;}
.ws9{word-spacing:-13.204480pt;}
.ws2{word-spacing:-13.189013pt;}
.ws13{word-spacing:-13.122347pt;}
.wse{word-spacing:-13.114880pt;}
.ws11{word-spacing:-13.048213pt;}
.ws12{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.782080pt;}
.wsa{word-spacing:-12.720213pt;}
.ws3{word-spacing:-8.389120pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-3.768320pt;}
._5{margin-left:-2.590720pt;}
._1{margin-left:-0.942080pt;}
._4{width:1.726293pt;}
._9{width:2.627840pt;}
._3{width:3.532800pt;}
._2{width:4.592640pt;}
._d{width:5.624747pt;}
._6{width:6.622293pt;}
._0{width:7.948800pt;}
._7{width:8.949760pt;}
._8{width:10.107733pt;}
._11{width:11.495253pt;}
._16{width:12.401067pt;}
._14{width:14.848853pt;}
._13{width:16.030720pt;}
._10{width:17.176320pt;}
._e{width:18.135040pt;}
._f{width:19.548160pt;}
._19{width:20.725760pt;}
._15{width:21.785600pt;}
._b{width:22.963200pt;}
._a{width:24.670720pt;}
._c{width:25.831253pt;}
._17{width:30.735360pt;}
._18{width:32.129707pt;}
._1a{width:33.344853pt;}
._28{width:34.739200pt;}
._1b{width:46.927360pt;}
._26{width:50.636800pt;}
._27{width:51.840853pt;}
._20{width:86.553600pt;}
._21{width:87.581013pt;}
._23{width:102.039040pt;}
._24{width:103.011413pt;}
._1c{width:105.395200pt;}
._1d{width:107.257173pt;}
._25{width:130.242560pt;}
._22{width:143.593387pt;}
._1e{width:161.390080pt;}
._1f{width:162.757973pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.040000pt;}
.y2{bottom:68.992000pt;}
.ye2{bottom:99.072000pt;}
.y1b9{bottom:101.152000pt;}
.y7e{bottom:101.472000pt;}
.y10c{bottom:102.432000pt;}
.y53{bottom:104.032000pt;}
.y98{bottom:106.592000pt;}
.y156{bottom:107.872000pt;}
.yfb{bottom:116.352000pt;}
.y17a{bottom:118.272000pt;}
.ye1{bottom:118.432000pt;}
.y1b8{bottom:120.352000pt;}
.y7d{bottom:120.832000pt;}
.y10b{bottom:121.792000pt;}
.y52{bottom:123.392000pt;}
.y155{bottom:125.792000pt;}
.y97{bottom:125.952000pt;}
.y19c{bottom:132.512000pt;}
.yfa{bottom:135.546667pt;}
.y29{bottom:136.186667pt;}
.ye0{bottom:137.626667pt;}
.y7c{bottom:140.186667pt;}
.y10a{bottom:141.146667pt;}
.y51{bottom:142.746667pt;}
.y154{bottom:143.546667pt;}
.y96{bottom:145.306667pt;}
.y1b7{bottom:150.426667pt;}
.ybc{bottom:151.866667pt;}
.yf9{bottom:154.906667pt;}
.y28{bottom:155.386667pt;}
.ydf{bottom:156.986667pt;}
.y7b{bottom:159.386667pt;}
.y109{bottom:160.506667pt;}
.y153{bottom:161.466667pt;}
.y50{bottom:162.106667pt;}
.y95{bottom:164.506667pt;}
.y1b6{bottom:169.786667pt;}
.ybb{bottom:171.066667pt;}
.yf8{bottom:174.266667pt;}
.yde{bottom:176.346667pt;}
.y7a{bottom:178.746667pt;}
.y152{bottom:179.386667pt;}
.y108{bottom:179.866667pt;}
.y4f{bottom:181.306667pt;}
.y19b{bottom:181.946667pt;}
.y94{bottom:183.866667pt;}
.y27{bottom:186.266667pt;}
.y179{bottom:186.906667pt;}
.y1b5{bottom:188.986667pt;}
.yba{bottom:190.426667pt;}
.yf7{bottom:193.626667pt;}
.ydd{bottom:195.706667pt;}
.y151{bottom:197.306667pt;}
.y79{bottom:198.106667pt;}
.y107{bottom:199.066667pt;}
.y4e{bottom:200.666667pt;}
.y19a{bottom:201.146667pt;}
.y93{bottom:203.226667pt;}
.y26{bottom:205.466667pt;}
.yb9{bottom:209.786667pt;}
.yf6{bottom:212.826667pt;}
.y150{bottom:215.226667pt;}
.y178{bottom:216.986667pt;}
.y78{bottom:217.466667pt;}
.y106{bottom:218.426667pt;}
.y1b4{bottom:219.066667pt;}
.y4d{bottom:220.026667pt;}
.y199{bottom:220.506667pt;}
.y92{bottom:222.586667pt;}
.y25{bottom:224.826667pt;}
.ydc{bottom:225.626667pt;}
.yb8{bottom:229.146667pt;}
.yf5{bottom:232.186667pt;}
.y14f{bottom:233.146667pt;}
.y77{bottom:236.666667pt;}
.y105{bottom:237.786667pt;}
.y1b3{bottom:238.426667pt;}
.y4c{bottom:239.386667pt;}
.y24{bottom:244.186667pt;}
.ydb{bottom:245.786667pt;}
.y177{bottom:246.906667pt;}
.yb7{bottom:248.346667pt;}
.y198{bottom:250.586667pt;}
.y14e{bottom:251.066667pt;}
.y12b{bottom:251.546667pt;}
.y91{bottom:252.506667pt;}
.y76{bottom:256.026667pt;}
.y104{bottom:257.146667pt;}
.y4b{bottom:258.586667pt;}
.yf4{bottom:262.266667pt;}
.y23{bottom:263.546667pt;}
.y176{bottom:266.266667pt;}
.yb6{bottom:267.706667pt;}
.y1b2{bottom:268.346667pt;}
.y14d{bottom:268.986667pt;}
.yda{bottom:269.466667pt;}
.y197{bottom:269.786667pt;}
.y12a{bottom:270.906667pt;}
.y90{bottom:272.666667pt;}
.y103{bottom:276.346667pt;}
.y4a{bottom:277.946667pt;}
.yf3{bottom:281.466667pt;}
.y22{bottom:282.746667pt;}
.y175{bottom:285.626667pt;}
.y75{bottom:285.946667pt;}
.yb5{bottom:287.066667pt;}
.y1b1{bottom:287.706667pt;}
.y129{bottom:290.266667pt;}
.y102{bottom:295.706667pt;}
.yd9{bottom:299.426667pt;}
.y196{bottom:299.906667pt;}
.yf2{bottom:300.866667pt;}
.y21{bottom:302.146667pt;}
.y174{bottom:304.866667pt;}
.y74{bottom:305.346667pt;}
.y14c{bottom:305.506667pt;}
.yb4{bottom:306.466667pt;}
.y1b0{bottom:306.946667pt;}
.y49{bottom:308.066667pt;}
.y101{bottom:315.106667pt;}
.yd8{bottom:318.626667pt;}
.y195{bottom:319.266667pt;}
.yf1{bottom:320.226667pt;}
.y20{bottom:321.506667pt;}
.y14b{bottom:323.426667pt;}
.y173{bottom:324.226667pt;}
.y73{bottom:324.706667pt;}
.yb3{bottom:325.666667pt;}
.y48{bottom:327.266667pt;}
.y100{bottom:334.466667pt;}
.y1af{bottom:337.026667pt;}
.yd7{bottom:337.986667pt;}
.y194{bottom:338.466667pt;}
.yf0{bottom:339.586667pt;}
.y1f{bottom:340.866667pt;}
.y14a{bottom:342.146667pt;}
.y172{bottom:343.586667pt;}
.y72{bottom:344.066667pt;}
.yb2{bottom:345.026667pt;}
.y47{bottom:346.626667pt;}
.yff{bottom:353.666667pt;}
.y1ae{bottom:356.386667pt;}
.yd6{bottom:357.346667pt;}
.yef{bottom:358.786667pt;}
.y149{bottom:360.066667pt;}
.y1e{bottom:360.226667pt;}
.y171{bottom:362.946667pt;}
.y71{bottom:363.266667pt;}
.yb1{bottom:364.386667pt;}
.y46{bottom:365.986667pt;}
.y193{bottom:368.546667pt;}
.yfe{bottom:373.026667pt;}
.yd5{bottom:376.706667pt;}
.y148{bottom:377.986667pt;}
.y128{bottom:378.146667pt;}
.y1d{bottom:379.426667pt;}
.y170{bottom:382.146667pt;}
.y70{bottom:382.626667pt;}
.yb0{bottom:383.746667pt;}
.y45{bottom:385.346667pt;}
.y1ad{bottom:386.306667pt;}
.yee{bottom:388.866667pt;}
.yfd{bottom:392.386667pt;}
.yd4{bottom:395.906667pt;}
.y127{bottom:397.506667pt;}
.y192{bottom:398.466667pt;}
.y1c{bottom:398.786667pt;}
.y16f{bottom:401.506667pt;}
.y6f{bottom:401.986667pt;}
.yaf{bottom:402.946667pt;}
.y1ac{bottom:405.666667pt;}
.yed{bottom:409.026667pt;}
.yfc{bottom:411.746667pt;}
.y147{bottom:413.826667pt;}
.y44{bottom:415.266667pt;}
.y126{bottom:416.866667pt;}
.y191{bottom:417.826667pt;}
.y1b{bottom:418.146667pt;}
.y16e{bottom:420.866667pt;}
.y6e{bottom:421.346667pt;}
.y146{bottom:431.586667pt;}
.yae{bottom:433.026667pt;}
.yd3{bottom:434.626667pt;}
.y43{bottom:435.426667pt;}
.y1ab{bottom:435.586667pt;}
.y125{bottom:436.066667pt;}
.y190{bottom:437.186667pt;}
.y16d{bottom:440.226667pt;}
.y6d{bottom:440.706667pt;}
.yec{bottom:441.666667pt;}
.y1a{bottom:448.066667pt;}
.y145{bottom:449.506667pt;}
.yad{bottom:452.386667pt;}
.yd2{bottom:453.986667pt;}
.y16c{bottom:459.426667pt;}
.y6c{bottom:459.906667pt;}
.yeb{bottom:461.026667pt;}
.y1aa{bottom:465.666667pt;}
.y124{bottom:466.146667pt;}
.y18f{bottom:467.106667pt;}
.y42{bottom:468.066667pt;}
.y19{bottom:468.226667pt;}
.yac{bottom:471.586667pt;}
.yd1{bottom:473.186667pt;}
.y16b{bottom:478.786667pt;}
.y6b{bottom:479.266667pt;}
.yea{bottom:480.386667pt;}
.y1a9{bottom:484.866667pt;}
.y123{bottom:485.506667pt;}
.y144{bottom:486.146667pt;}
.y41{bottom:487.426667pt;}
.yab{bottom:490.946667pt;}
.yd0{bottom:492.546667pt;}
.y18e{bottom:497.026667pt;}
.y16a{bottom:498.146667pt;}
.y6a{bottom:498.626667pt;}
.y8f{bottom:499.426667pt;}
.ye9{bottom:499.586667pt;}
.y18{bottom:500.866667pt;}
.y143{bottom:504.066667pt;}
.y122{bottom:504.706667pt;}
.y40{bottom:506.786667pt;}
.y1a8{bottom:514.946667pt;}
.y18d{bottom:516.386667pt;}
.y169{bottom:517.506667pt;}
.y69{bottom:517.986667pt;}
.ye8{bottom:518.946667pt;}
.y17{bottom:520.226667pt;}
.yaa{bottom:521.026667pt;}
.y142{bottom:521.986667pt;}
.ycf{bottom:522.626667pt;}
.y121{bottom:524.066667pt;}
.y8e{bottom:524.866667pt;}
.y3f{bottom:525.986667pt;}
.y18c{bottom:535.746667pt;}
.y168{bottom:536.733333pt;}
.y68{bottom:537.213333pt;}
.ye7{bottom:538.333333pt;}
.y16{bottom:539.613333pt;}
.y141{bottom:539.933333pt;}
.ya9{bottom:540.253333pt;}
.yce{bottom:541.853333pt;}
.y120{bottom:543.453333pt;}
.y1a7{bottom:544.893333pt;}
.y3e{bottom:545.373333pt;}
.y18b{bottom:555.133333pt;}
.y167{bottom:556.093333pt;}
.y67{bottom:556.573333pt;}
.y8d{bottom:557.693333pt;}
.y140{bottom:557.853333pt;}
.y15{bottom:558.973333pt;}
.ya8{bottom:559.613333pt;}
.ycd{bottom:561.213333pt;}
.y11f{bottom:562.813333pt;}
.y1a6{bottom:564.253333pt;}
.y3d{bottom:564.733333pt;}
.y166{bottom:575.453333pt;}
.y13f{bottom:575.613333pt;}
.y66{bottom:575.933333pt;}
.y8c{bottom:576.893333pt;}
.y14{bottom:578.173333pt;}
.ya7{bottom:578.973333pt;}
.ycc{bottom:580.573333pt;}
.y11e{bottom:582.013333pt;}
.y1a5{bottom:583.613333pt;}
.y18a{bottom:585.053333pt;}
.y13e{bottom:594.333333pt;}
.y3c{bottom:594.653333pt;}
.y165{bottom:594.813333pt;}
.y65{bottom:595.293333pt;}
.y8b{bottom:596.253333pt;}
.y13{bottom:597.533333pt;}
.ya6{bottom:598.333333pt;}
.ycb{bottom:599.933333pt;}
.y11d{bottom:601.373333pt;}
.y189{bottom:604.413333pt;}
.y13d{bottom:612.253333pt;}
.y1c3{bottom:613.213333pt;}
.y1a4{bottom:613.533333pt;}
.y3b{bottom:614.013333pt;}
.y8a{bottom:615.613333pt;}
.y12{bottom:616.893333pt;}
.ya5{bottom:617.533333pt;}
.yca{bottom:619.133333pt;}
.y64{bottom:625.213333pt;}
.ye6{bottom:626.173333pt;}
.y13c{bottom:630.173333pt;}
.y11c{bottom:631.453333pt;}
.y1a3{bottom:632.893333pt;}
.y3a{bottom:633.373333pt;}
.y188{bottom:634.333333pt;}
.y89{bottom:634.973333pt;}
.y11{bottom:636.253333pt;}
.ya4{bottom:636.893333pt;}
.yc9{bottom:638.493333pt;}
.y63{bottom:645.373333pt;}
.ye5{bottom:645.533333pt;}
.y13b{bottom:648.893333pt;}
.y11b{bottom:650.653333pt;}
.y1a2{bottom:652.253333pt;}
.y39{bottom:652.733333pt;}
.y187{bottom:653.693333pt;}
.y88{bottom:654.173333pt;}
.y10{bottom:655.453333pt;}
.ya3{bottom:656.253333pt;}
.yc8{bottom:657.853333pt;}
.ye4{bottom:664.893333pt;}
.y13a{bottom:666.813333pt;}
.y11a{bottom:670.013333pt;}
.y62{bottom:670.813333pt;}
.y1c2{bottom:671.613333pt;}
.y38{bottom:671.933333pt;}
.y164{bottom:672.093333pt;}
.y186{bottom:673.053333pt;}
.y87{bottom:673.533333pt;}
.yf{bottom:674.813333pt;}
.ya2{bottom:675.613333pt;}
.yc7{bottom:677.213333pt;}
.y1a1{bottom:682.173333pt;}
.ye3{bottom:684.253333pt;}
.y139{bottom:684.733333pt;}
.y119{bottom:689.373333pt;}
.y1c1{bottom:690.813333pt;}
.y37{bottom:691.293333pt;}
.y86{bottom:692.893333pt;}
.ye{bottom:694.173333pt;}
.ya1{bottom:694.813333pt;}
.yc6{bottom:696.413333pt;}
.y1a0{bottom:701.533333pt;}
.y138{bottom:702.653333pt;}
.y185{bottom:702.973333pt;}
.y61{bottom:703.613333pt;}
.y118{bottom:708.733333pt;}
.y1c0{bottom:710.173333pt;}
.y163{bottom:710.653333pt;}
.y85{bottom:712.253333pt;}
.yd{bottom:713.533333pt;}
.ya0{bottom:714.173333pt;}
.yc5{bottom:715.773333pt;}
.y19f{bottom:720.893333pt;}
.y36{bottom:721.373333pt;}
.y184{bottom:722.333333pt;}
.y60{bottom:722.813333pt;}
.y117{bottom:727.933333pt;}
.y162{bottom:730.013333pt;}
.y137{bottom:730.653333pt;}
.y84{bottom:731.453333pt;}
.yc{bottom:732.733333pt;}
.y9f{bottom:733.533333pt;}
.yc4{bottom:735.133333pt;}
.y1bf{bottom:740.093333pt;}
.y35{bottom:740.573333pt;}
.y5f{bottom:742.173333pt;}
.y116{bottom:747.293333pt;}
.y161{bottom:749.373333pt;}
.y136{bottom:750.013333pt;}
.y83{bottom:750.813333pt;}
.yb{bottom:752.093333pt;}
.y183{bottom:752.253333pt;}
.y9e{bottom:752.893333pt;}
.yc3{bottom:754.493333pt;}
.y1be{bottom:759.453333pt;}
.y34{bottom:759.933333pt;}
.y5e{bottom:761.533333pt;}
.y115{bottom:766.653333pt;}
.y160{bottom:768.573333pt;}
.y135{bottom:769.373333pt;}
.y82{bottom:770.173333pt;}
.ya{bottom:771.453333pt;}
.y9d{bottom:772.093333pt;}
.y182{bottom:772.573333pt;}
.y1bd{bottom:778.853333pt;}
.y33{bottom:779.333333pt;}
.y5d{bottom:780.933333pt;}
.yc2{bottom:784.453333pt;}
.y114{bottom:786.053333pt;}
.y15f{bottom:787.973333pt;}
.y134{bottom:788.613333pt;}
.y19e{bottom:789.573333pt;}
.y9{bottom:790.853333pt;}
.y9c{bottom:791.493333pt;}
.y181{bottom:798.533333pt;}
.y32{bottom:798.693333pt;}
.y5c{bottom:800.133333pt;}
.yc1{bottom:803.813333pt;}
.y113{bottom:805.253333pt;}
.y15e{bottom:807.333333pt;}
.y133{bottom:807.973333pt;}
.y19d{bottom:808.773333pt;}
.y9b{bottom:810.853333pt;}
.y31{bottom:817.893333pt;}
.y180{bottom:819.013333pt;}
.y5b{bottom:819.493333pt;}
.y8{bottom:820.773333pt;}
.yc0{bottom:823.173333pt;}
.y112{bottom:824.613333pt;}
.y15d{bottom:826.693333pt;}
.y132{bottom:827.333333pt;}
.y1bc{bottom:828.133333pt;}
.y9a{bottom:830.213333pt;}
.y30{bottom:837.253333pt;}
.y5a{bottom:838.853333pt;}
.y17f{bottom:839.653333pt;}
.y7{bottom:840.933333pt;}
.y111{bottom:843.973333pt;}
.y15c{bottom:846.053333pt;}
.y131{bottom:846.693333pt;}
.y1bb{bottom:847.493333pt;}
.y99{bottom:849.413333pt;}
.ybf{bottom:853.093333pt;}
.y2f{bottom:856.613333pt;}
.y81{bottom:858.213333pt;}
.y17e{bottom:860.293333pt;}
.y110{bottom:863.333333pt;}
.y6{bottom:864.613333pt;}
.y15b{bottom:865.253333pt;}
.y130{bottom:865.893333pt;}
.y59{bottom:868.773333pt;}
.ybe{bottom:873.253333pt;}
.y2e{bottom:875.973333pt;}
.y80{bottom:877.413333pt;}
.y17d{bottom:880.773333pt;}
.y10f{bottom:882.533333pt;}
.y15a{bottom:884.613333pt;}
.y12f{bottom:885.253333pt;}
.y58{bottom:888.133333pt;}
.y7f{bottom:896.773333pt;}
.ybd{bottom:896.933333pt;}
.y17c{bottom:901.413333pt;}
.y159{bottom:903.973333pt;}
.y12e{bottom:904.613333pt;}
.y2d{bottom:905.893333pt;}
.y57{bottom:907.493333pt;}
.y5{bottom:908.133333pt;}
.y10e{bottom:912.613333pt;}
.y1ba{bottom:916.133333pt;}
.y17b{bottom:922.053333pt;}
.y158{bottom:923.333333pt;}
.y12d{bottom:923.813333pt;}
.y2c{bottom:925.253333pt;}
.y56{bottom:926.693333pt;}
.y10d{bottom:932.773333pt;}
.y157{bottom:942.533333pt;}
.y2b{bottom:945.253333pt;}
.y55{bottom:946.053333pt;}
.y4{bottom:953.893333pt;}
.y12c{bottom:962.693333pt;}
.y2a{bottom:964.613333pt;}
.y54{bottom:965.413333pt;}
.y1{bottom:979.333333pt;}
.h7{height:40.882500pt;}
.h8{height:51.491250pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h9{height:63.656250pt;}
.h5{height:65.531250pt;}
.h6{height:65.812500pt;}
.h4{height:109.437187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.431988pt;}
.x6{left:118.431988pt;}
.xa{left:126.431988pt;}
.x7{left:142.426655pt;}
.x4{left:155.386655pt;}
.x8{left:160.506655pt;}
.x2{left:164.506655pt;}
.x9{left:226.786655pt;}
.x3{left:396.893322pt;}
.x1{left:699.359988pt;}
}




    .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; }
  