
    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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_eff7f7c7ad9e324c438c0309.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_191fd5a6a9ef19daee02bfe1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_c0b7f460195d51f0c14cff9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_36c948c10f3d3dd370376233.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_450123f5fb4f65bc8b3e3bc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_391f51c13939b9686fb0fa5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.180000;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_33f3933878a0ee007798f937.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.180000;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_cd14e3ae5698c39d439dba06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.081000;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:ffa;src:url('chunks/assets/font_a1fcebf7a7020560e9acc22a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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:ffb;src:url('chunks/assets/font_58c9944d4ee564d0e109c2ec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.081000;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);}
.v2{vertical-align:-30.240000px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v4{vertical-align:42.480000px;}
.v3{vertical-align:49.680000px;}
.v5{vertical-align:51.840000px;}
.lsd{letter-spacing:-0.714000px;}
.ls6{letter-spacing:-0.562800px;}
.ls10{letter-spacing:-0.166200px;}
.ls9{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.041040px;}
.lsb{letter-spacing:-0.021600px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.lse{letter-spacing:0.012240px;}
.lsa{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.157200px;}
.lsc{letter-spacing:0.270600px;}
.ls7{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.700560px;}
.ls1{letter-spacing:56.140560px;}
.ls5{letter-spacing:834.132000px;}
.lsf{letter-spacing:840.737280px;}
.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;}
}
.ws6{word-spacing:-25.236000px;}
.ws5{word-spacing:-24.948000px;}
.ws7{word-spacing:-20.217600px;}
.ws17{word-spacing:-19.730040px;}
.ws3{word-spacing:-19.616640px;}
.ws1{word-spacing:-19.468080px;}
.ws2{word-spacing:-19.459440px;}
.ws16{word-spacing:-19.437840px;}
.ws19{word-spacing:-19.293240px;}
.ws18{word-spacing:-18.745440px;}
.wsd{word-spacing:-18.532800px;}
.ws9{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.106160px;}
.ws4{word-spacing:-12.474000px;}
.ws13{word-spacing:-0.100080px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:4.219920px;}
.ws8{word-spacing:4.939920px;}
.wsa{word-spacing:5.059920px;}
.wse{word-spacing:7.017120px;}
.ws14{word-spacing:7.320240px;}
.ws15{word-spacing:7.345440px;}
.ws11{word-spacing:7.498080px;}
.ws12{word-spacing:7.990320px;}
.wsc{word-spacing:55.684080px;}
.ws10{word-spacing:360.735120px;}
._6{margin-left:-18.788400px;}
._9{margin-left:-12.842880px;}
._4{margin-left:-11.009760px;}
._7{margin-left:-7.562400px;}
._3{margin-left:-6.379920px;}
._5{margin-left:-4.590480px;}
._a{margin-left:-3.477120px;}
._8{margin-left:-2.462400px;}
._1{margin-left:-1.296000px;}
._2{width:1.317600px;}
._2e{width:2.325120px;}
._c{width:3.350160px;}
._b{width:4.464720px;}
._1c{width:6.318000px;}
._1f{width:7.665840px;}
._d{width:9.013680px;}
._22{width:10.056960px;}
._23{width:11.095920px;}
._11{width:12.144240px;}
._f{width:13.160880px;}
._10{width:14.347200px;}
._12{width:15.985200px;}
._17{width:17.254560px;}
._1d{width:18.377280px;}
._33{width:20.470320px;}
._1a{width:21.513600px;}
._27{width:22.829040px;}
._4a{width:23.924160px;}
._20{width:25.019280px;}
._21{width:26.483760px;}
._18{width:27.578880px;}
._19{width:28.745280px;}
._1e{width:30.514320px;}
._44{width:32.179680px;}
._45{width:33.780240px;}
._26{width:36.255600px;}
._25{width:37.992240px;}
._e{width:39.275280px;}
._2b{width:40.532400px;}
._1b{width:42.120000px;}
._30{width:43.908480px;}
._14{width:45.017760px;}
._2a{width:46.162320px;}
._13{width:47.183520px;}
._2d{width:48.690720px;}
._2c{width:49.889520px;}
._24{width:51.639120px;}
._28{width:53.596080px;}
._29{width:55.209600px;}
._4c{width:56.954400px;}
._3b{width:58.378320px;}
._4b{width:62.635440px;}
._15{width:63.717840px;}
._16{width:65.305680px;}
._34{width:66.582000px;}
._2f{width:68.234400px;}
._46{width:69.919200px;}
._47{width:71.519760px;}
._3d{width:78.312720px;}
._48{width:81.291600px;}
._49{width:82.555200px;}
._42{width:89.308560px;}
._35{width:96.623280px;}
._36{width:97.674240px;}
._31{width:99.234720px;}
._32{width:100.498320px;}
._3c{width:109.910880px;}
._43{width:118.632720px;}
._3f{width:197.225280px;}
._38{width:231.692400px;}
._40{width:238.050480px;}
._3a{width:360.609120px;}
._39{width:375.794640px;}
._37{width:400.833360px;}
._3e{width:433.360800px;}
._41{width:599.239440px;}
._0{width:847.884000px;}
.fc4{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,76,62);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:2.880000px;}
.ya5{bottom:3.960000px;}
.yc6{bottom:3.990000px;}
.yb1{bottom:4.140000px;}
.ybd{bottom:4.680000px;}
.yc9{bottom:12.090000px;}
.yad{bottom:12.240000px;}
.yb6{bottom:13.500000px;}
.yd1{bottom:16.020000px;}
.y8{bottom:16.380000px;}
.yc0{bottom:16.560000px;}
.yb5{bottom:18.720000px;}
.y3{bottom:19.260000px;}
.yac{bottom:22.860000px;}
.yd3{bottom:24.300000px;}
.yc2{bottom:24.480000px;}
.ya8{bottom:28.080000px;}
.yc5{bottom:28.110000px;}
.yb0{bottom:28.305000px;}
.ybc{bottom:28.800000px;}
.yd2{bottom:34.920000px;}
.yc1{bottom:35.100000px;}
.yc8{bottom:35.130000px;}
.yaa{bottom:36.360000px;}
.yb3{bottom:36.945000px;}
.yce{bottom:37.980000px;}
.yd0{bottom:40.140000px;}
.ybf{bottom:40.680000px;}
.yb9{bottom:41.400000px;}
.yc7{bottom:45.750000px;}
.ya9{bottom:46.980000px;}
.yb2{bottom:47.565000px;}
.ybb{bottom:48.960000px;}
.ya7{bottom:52.200000px;}
.yc4{bottom:52.230000px;}
.yaf{bottom:52.425000px;}
.yba{bottom:59.580000px;}
.ycd{bottom:61.020000px;}
.yb8{bottom:65.520000px;}
.ycc{bottom:71.640000px;}
.y7{bottom:72.360000px;}
.ycb{bottom:76.320000px;}
.y15a{bottom:87.696000px;}
.y134{bottom:112.176000px;}
.y5a{bottom:112.716000px;}
.y6{bottom:116.325000px;}
.y101{bottom:125.676000px;}
.ydb{bottom:129.096000px;}
.y155{bottom:132.516000px;}
.y133{bottom:136.296000px;}
.y7b{bottom:138.816000px;}
.y59{bottom:140.796000px;}
.y39{bottom:149.256000px;}
.y100{bottom:153.570000px;}
.y154{bottom:156.630000px;}
.yda{bottom:157.170000px;}
.y5{bottom:160.245000px;}
.y132{bottom:160.410000px;}
.y121{bottom:166.350000px;}
.y7a{bottom:166.710000px;}
.y38{bottom:177.150000px;}
.y58{bottom:180.570000px;}
.yff{bottom:181.650000px;}
.y4{bottom:181.830000px;}
.yd9{bottom:185.070000px;}
.y153{bottom:192.810000px;}
.y120{bottom:194.430000px;}
.y79{bottom:194.610000px;}
.y131{bottom:196.590000px;}
.y37{bottom:205.050000px;}
.y57{bottom:208.650000px;}
.yfe{bottom:209.550000px;}
.y90{bottom:210.630000px;}
.yd8{bottom:212.970000px;}
.y152{bottom:216.930000px;}
.y130{bottom:220.710000px;}
.y11f{bottom:222.330000px;}
.y78{bottom:222.510000px;}
.y36{bottom:233.130000px;}
.y56{bottom:236.550000px;}
.yfd{bottom:237.450000px;}
.y8f{bottom:238.530000px;}
.yd7{bottom:240.870000px;}
.y151{bottom:241.050000px;}
.y12f{bottom:244.830000px;}
.y11e{bottom:250.230000px;}
.y77{bottom:250.590000px;}
.y35{bottom:261.030000px;}
.y55{bottom:264.450000px;}
.yfc{bottom:265.530000px;}
.y8e{bottom:266.430000px;}
.yd6{bottom:268.950000px;}
.y150{bottom:277.230000px;}
.y11d{bottom:278.130000px;}
.y76{bottom:278.490000px;}
.y34{bottom:288.975000px;}
.y54{bottom:292.575000px;}
.yfb{bottom:293.475000px;}
.y8d{bottom:294.555000px;}
.y14f{bottom:301.395000px;}
.ya2{bottom:304.455000px;}
.y12e{bottom:305.175000px;}
.y11c{bottom:306.255000px;}
.ye2{bottom:306.435000px;}
.yd5{bottom:308.955000px;}
.y33{bottom:317.055000px;}
.y75{bottom:318.495000px;}
.y53{bottom:320.475000px;}
.yfa{bottom:321.375000px;}
.y8c{bottom:322.455000px;}
.y14e{bottom:325.515000px;}
.y12d{bottom:329.295000px;}
.yd4{bottom:329.835000px;}
.ya1{bottom:332.535000px;}
.y11b{bottom:334.155000px;}
.ye1{bottom:334.515000px;}
.y32{bottom:344.955000px;}
.y74{bottom:346.395000px;}
.y52{bottom:348.375000px;}
.yf9{bottom:349.275000px;}
.y14d{bottom:349.635000px;}
.y8b{bottom:350.355000px;}
.y12c{bottom:353.415000px;}
.ya0{bottom:360.435000px;}
.ye0{bottom:362.415000px;}
.y31{bottom:372.855000px;}
.y11a{bottom:374.115000px;}
.y73{bottom:374.295000px;}
.y51{bottom:376.275000px;}
.yf8{bottom:377.355000px;}
.y12b{bottom:377.535000px;}
.y8a{bottom:378.255000px;}
.y14c{bottom:385.815000px;}
.y9f{bottom:388.335000px;}
.ydf{bottom:390.315000px;}
.y30{bottom:400.755000px;}
.y12a{bottom:401.655000px;}
.y119{bottom:402.015000px;}
.y72{bottom:402.375000px;}
.ycf{bottom:402.915000px;}
.y50{bottom:404.355000px;}
.yf7{bottom:405.255000px;}
.y89{bottom:406.335000px;}
.y14b{bottom:409.935000px;}
.y9e{bottom:416.235000px;}
.yde{bottom:418.215000px;}
.y129{bottom:425.775000px;}
.y2f{bottom:428.835000px;}
.y118{bottom:429.915000px;}
.y71{bottom:430.275000px;}
.y4f{bottom:432.255000px;}
.yf6{bottom:433.155000px;}
.y14a{bottom:434.055000px;}
.y88{bottom:434.235000px;}
.y159{bottom:442.335000px;}
.y9d{bottom:444.315000px;}
.ydd{bottom:446.295000px;}
.y2e{bottom:456.735000px;}
.y117{bottom:457.995000px;}
.y70{bottom:458.175000px;}
.y4e{bottom:460.155000px;}
.yf5{bottom:461.055000px;}
.y128{bottom:461.955000px;}
.y87{bottom:462.135000px;}
.yca{bottom:463.935000px;}
.y110{bottom:470.235000px;}
.y9c{bottom:472.215000px;}
.ydc{bottom:474.195000px;}
.y158{bottom:482.295000px;}
.y1a{bottom:484.275000px;}
.y2d{bottom:484.635000px;}
.y116{bottom:485.895000px;}
.y127{bottom:486.075000px;}
.y6f{bottom:486.255000px;}
.y4d{bottom:488.055000px;}
.yf4{bottom:489.135000px;}
.y149{bottom:494.355000px;}
.y10f{bottom:498.135000px;}
.y9b{bottom:500.115000px;}
.y86{bottom:502.095000px;}
.y2c{bottom:512.535000px;}
.y115{bottom:513.795000px;}
.y6e{bottom:514.155000px;}
.y4c{bottom:516.135000px;}
.yf3{bottom:517.035000px;}
.y19{bottom:517.935000px;}
.y148{bottom:518.475000px;}
.y126{bottom:522.255000px;}
.y10e{bottom:526.215000px;}
.y9a{bottom:528.015000px;}
.y85{bottom:529.995000px;}
.y2b{bottom:540.615000px;}
.y6d{bottom:542.055000px;}
.y147{bottom:542.595000px;}
.y4b{bottom:544.035000px;}
.yf2{bottom:544.935000px;}
.y18{bottom:545.835000px;}
.y114{bottom:553.755000px;}
.y10d{bottom:554.115000px;}
.y99{bottom:556.095000px;}
.y84{bottom:558.075000px;}
.yc3{bottom:561.135000px;}
.y146{bottom:566.745000px;}
.y2a{bottom:568.545000px;}
.y6c{bottom:569.985000px;}
.yf1{bottom:573.045000px;}
.y10c{bottom:582.045000px;}
.y125{bottom:582.945000px;}
.y4a{bottom:584.025000px;}
.y83{bottom:586.005000px;}
.y17{bottom:587.985000px;}
.y145{bottom:590.865000px;}
.y113{bottom:593.025000px;}
.y6b{bottom:598.065000px;}
.yf0{bottom:600.945000px;}
.y10b{bottom:609.945000px;}
.y29{bottom:610.665000px;}
.y124{bottom:610.845000px;}
.y49{bottom:611.925000px;}
.y82{bottom:613.905000px;}
.y112{bottom:617.145000px;}
.y98{bottom:623.985000px;}
.y6a{bottom:625.965000px;}
.y144{bottom:626.865000px;}
.y16{bottom:633.705000px;}
.ybe{bottom:634.245000px;}
.y10a{bottom:638.025000px;}
.y123{bottom:638.925000px;}
.y48{bottom:640.005000px;}
.yef{bottom:640.905000px;}
.y81{bottom:641.985000px;}
.y143{bottom:651.165000px;}
.y97{bottom:651.885000px;}
.y111{bottom:652.965000px;}
.y69{bottom:653.865000px;}
.y28{bottom:658.725000px;}
.y15{bottom:661.785000px;}
.y109{bottom:665.925000px;}
.y47{bottom:667.905000px;}
.yee{bottom:668.805000px;}
.y80{bottom:669.885000px;}
.y122{bottom:675.105000px;}
.y142{bottom:675.285000px;}
.y96{bottom:679.785000px;}
.y68{bottom:681.945000px;}
.y14{bottom:689.685000px;}
.y108{bottom:693.825000px;}
.y46{bottom:695.805000px;}
.yed{bottom:696.705000px;}
.y27{bottom:704.085000px;}
.y95{bottom:707.865000px;}
.y67{bottom:709.845000px;}
.y141{bottom:711.285000px;}
.y13{bottom:717.585000px;}
.y107{bottom:721.725000px;}
.y45{bottom:723.705000px;}
.yec{bottom:724.785000px;}
.y140{bottom:735.405000px;}
.y94{bottom:735.765000px;}
.y66{bottom:737.745000px;}
.y26{bottom:739.545000px;}
.y106{bottom:749.805000px;}
.y44{bottom:751.785000px;}
.yeb{bottom:752.685000px;}
.y13f{bottom:759.525000px;}
.y12{bottom:759.885000px;}
.y93{bottom:763.665000px;}
.y65{bottom:765.645000px;}
.y105{bottom:777.705000px;}
.y25{bottom:779.145000px;}
.y43{bottom:779.685000px;}
.yea{bottom:780.585000px;}
.yb4{bottom:782.205000px;}
.y13e{bottom:783.645000px;}
.y92{bottom:791.745000px;}
.y64{bottom:793.725000px;}
.y2{bottom:794.805000px;}
.y157{bottom:795.705000px;}
.y104{bottom:805.605000px;}
.y11{bottom:806.325000px;}
.y42{bottom:807.585000px;}
.y13d{bottom:807.945000px;}
.ye9{bottom:808.485000px;}
.y24{bottom:811.365000px;}
.y91{bottom:819.645000px;}
.y156{bottom:819.825000px;}
.y63{bottom:821.625000px;}
.yae{bottom:821.805000px;}
.y103{bottom:833.685000px;}
.ye8{bottom:836.565000px;}
.y10{bottom:838.545000px;}
.y23{bottom:839.085000px;}
.y13c{bottom:843.945000px;}
.y41{bottom:847.590000px;}
.y7f{bottom:849.570000px;}
.y62{bottom:861.630000px;}
.ye7{bottom:864.510000px;}
.y22{bottom:867.030000px;}
.y13b{bottom:868.110000px;}
.yf{bottom:873.870000px;}
.y40{bottom:875.490000px;}
.y7e{bottom:877.470000px;}
.y61{bottom:889.530000px;}
.y13a{bottom:892.230000px;}
.ye6{bottom:892.410000px;}
.y21{bottom:894.750000px;}
.yab{bottom:895.110000px;}
.y3f{bottom:903.570000px;}
.y7d{bottom:905.550000px;}
.ye{bottom:909.330000px;}
.y60{bottom:917.430000px;}
.ye5{bottom:920.490000px;}
.y139{bottom:928.410000px;}
.y20{bottom:930.030000px;}
.y3e{bottom:931.470000px;}
.y7c{bottom:933.450000px;}
.ya6{bottom:944.070000px;}
.yd{bottom:944.790000px;}
.y5f{bottom:945.510000px;}
.y138{bottom:952.530000px;}
.ye4{bottom:956.670000px;}
.y3d{bottom:959.370000px;}
.y102{bottom:961.350000px;}
.y1f{bottom:962.250000px;}
.y5e{bottom:973.410000px;}
.y137{bottom:976.650000px;}
.yc{bottom:980.250000px;}
.y3c{bottom:987.270000px;}
.y1e{bottom:989.970000px;}
.y136{bottom:1000.770000px;}
.y5d{bottom:1001.310000px;}
.y3b{bottom:1015.350000px;}
.yb{bottom:1015.710000px;}
.ya4{bottom:1017.150000px;}
.ye3{bottom:1017.330000px;}
.y1d{bottom:1017.690000px;}
.y5c{bottom:1029.210000px;}
.y135{bottom:1036.950000px;}
.y3a{bottom:1043.250000px;}
.ya{bottom:1054.590000px;}
.y5b{bottom:1057.290000px;}
.y1c{bottom:1057.470000px;}
.ya3{bottom:1061.070000px;}
.y9{bottom:1079.430000px;}
.y1b{bottom:1085.190000px;}
.y1{bottom:1088.250000px;}
.hf{height:24.120000px;}
.h15{height:38.880000px;}
.h13{height:48.240000px;}
.he{height:50.328000px;}
.h1b{height:60.300000px;}
.h17{height:60.840000px;}
.ha{height:60.855469px;}
.h8{height:67.104000px;}
.h10{height:72.360000px;}
.h18{height:72.396000px;}
.h14{height:72.576000px;}
.h2{height:73.722656px;}
.h1c{height:75.142080px;}
.hd{height:78.408000px;}
.h9{height:78.511680px;}
.hc{height:80.786160px;}
.h16{height:85.680000px;}
.h1d{height:86.585445px;}
.h1a{height:96.480000px;}
.h11{height:100.044141px;}
.h7{height:100.656000px;}
.h19{height:102.204141px;}
.hb{height:111.006981px;}
.h3{height:120.636000px;}
.h12{height:120.991680px;}
.h6{height:122.800320px;}
.h5{height:191.910000px;}
.h4{height:365.132812px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:286.050000px;}
.w6{width:431.355000px;}
.w3{width:482.835000px;}
.w4{width:710.070000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x3{left:10.800000px;}
.x8{left:24.876000px;}
.x5{left:46.296000px;}
.x1c{left:67.500000px;}
.x4{left:74.340000px;}
.x6{left:75.990000px;}
.x1f{left:82.980000px;}
.x19{left:91.620000px;}
.x1d{left:95.400000px;}
.x1a{left:97.200000px;}
.x1b{left:100.110000px;}
.x1{left:108.035987px;}
.xe{left:114.875987px;}
.x20{left:117.570000px;}
.x9{left:123.155987px;}
.x16{left:135.035987px;}
.xb{left:137.015987px;}
.xc{left:138.455987px;}
.x15{left:143.135987px;}
.x1e{left:193.710000px;}
.x2{left:195.150000px;}
.xf{left:202.169987px;}
.x10{left:205.229987px;}
.x12{left:206.669987px;}
.x11{left:216.749987px;}
.x7{left:250.275000px;}
.xd{left:269.309987px;}
.x14{left:276.329987px;}
.x13{left:291.989987px;}
.xa{left:368.354987px;}
.x18{left:395.535000px;}
.x22{left:446.474987px;}
.x21{left:785.309987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v4{vertical-align:37.760000pt;}
.v3{vertical-align:44.160000pt;}
.v5{vertical-align:46.080000pt;}
.lsd{letter-spacing:-0.634667pt;}
.ls6{letter-spacing:-0.500267pt;}
.ls10{letter-spacing:-0.147733pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.036480pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.lse{letter-spacing:0.010880pt;}
.lsa{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.139733pt;}
.lsc{letter-spacing:0.240533pt;}
.ls7{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.622720pt;}
.ls1{letter-spacing:49.902720pt;}
.ls5{letter-spacing:741.450667pt;}
.lsf{letter-spacing:747.322027pt;}
.ws6{word-spacing:-22.432000pt;}
.ws5{word-spacing:-22.176000pt;}
.ws7{word-spacing:-17.971200pt;}
.ws17{word-spacing:-17.537813pt;}
.ws3{word-spacing:-17.437013pt;}
.ws1{word-spacing:-17.304960pt;}
.ws2{word-spacing:-17.297280pt;}
.ws16{word-spacing:-17.278080pt;}
.ws19{word-spacing:-17.149547pt;}
.ws18{word-spacing:-16.662613pt;}
.wsd{word-spacing:-16.473600pt;}
.ws9{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.649920pt;}
.ws4{word-spacing:-11.088000pt;}
.ws13{word-spacing:-0.088960pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:3.751040pt;}
.ws8{word-spacing:4.391040pt;}
.wsa{word-spacing:4.497707pt;}
.wse{word-spacing:6.237440pt;}
.ws14{word-spacing:6.506880pt;}
.ws15{word-spacing:6.529280pt;}
.ws11{word-spacing:6.664960pt;}
.ws12{word-spacing:7.102507pt;}
.wsc{word-spacing:49.496960pt;}
.ws10{word-spacing:320.653440pt;}
._6{margin-left:-16.700800pt;}
._9{margin-left:-11.415893pt;}
._4{margin-left:-9.786453pt;}
._7{margin-left:-6.722133pt;}
._3{margin-left:-5.671040pt;}
._5{margin-left:-4.080427pt;}
._a{margin-left:-3.090773pt;}
._8{margin-left:-2.188800pt;}
._1{margin-left:-1.152000pt;}
._2{width:1.171200pt;}
._2e{width:2.066773pt;}
._c{width:2.977920pt;}
._b{width:3.968640pt;}
._1c{width:5.616000pt;}
._1f{width:6.814080pt;}
._d{width:8.012160pt;}
._22{width:8.939520pt;}
._23{width:9.863040pt;}
._11{width:10.794880pt;}
._f{width:11.698560pt;}
._10{width:12.753067pt;}
._12{width:14.209067pt;}
._17{width:15.337387pt;}
._1d{width:16.335360pt;}
._33{width:18.195840pt;}
._1a{width:19.123200pt;}
._27{width:20.292480pt;}
._4a{width:21.265920pt;}
._20{width:22.239360pt;}
._21{width:23.541120pt;}
._18{width:24.514560pt;}
._19{width:25.551360pt;}
._1e{width:27.123840pt;}
._44{width:28.604160pt;}
._45{width:30.026880pt;}
._26{width:32.227200pt;}
._25{width:33.770880pt;}
._e{width:34.911360pt;}
._2b{width:36.028800pt;}
._1b{width:37.440000pt;}
._30{width:39.029760pt;}
._14{width:40.015787pt;}
._2a{width:41.033173pt;}
._13{width:41.940907pt;}
._2d{width:43.280640pt;}
._2c{width:44.346240pt;}
._24{width:45.901440pt;}
._28{width:47.640960pt;}
._29{width:49.075200pt;}
._4c{width:50.626133pt;}
._3b{width:51.891840pt;}
._4b{width:55.675947pt;}
._15{width:56.638080pt;}
._16{width:58.049493pt;}
._34{width:59.184000pt;}
._2f{width:60.652800pt;}
._46{width:62.150400pt;}
._47{width:63.573120pt;}
._3d{width:69.611307pt;}
._48{width:72.259200pt;}
._49{width:73.382400pt;}
._42{width:79.385387pt;}
._35{width:85.887360pt;}
._36{width:86.821547pt;}
._31{width:88.208640pt;}
._32{width:89.331840pt;}
._3c{width:97.698560pt;}
._43{width:105.451307pt;}
._3f{width:175.311360pt;}
._38{width:205.948800pt;}
._40{width:211.600427pt;}
._3a{width:320.541440pt;}
._39{width:334.039680pt;}
._37{width:356.296320pt;}
._3e{width:385.209600pt;}
._41{width:532.657280pt;}
._0{width:753.674667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:2.560000pt;}
.ya5{bottom:3.520000pt;}
.yc6{bottom:3.546667pt;}
.yb1{bottom:3.680000pt;}
.ybd{bottom:4.160000pt;}
.yc9{bottom:10.746667pt;}
.yad{bottom:10.880000pt;}
.yb6{bottom:12.000000pt;}
.yd1{bottom:14.240000pt;}
.y8{bottom:14.560000pt;}
.yc0{bottom:14.720000pt;}
.yb5{bottom:16.640000pt;}
.y3{bottom:17.120000pt;}
.yac{bottom:20.320000pt;}
.yd3{bottom:21.600000pt;}
.yc2{bottom:21.760000pt;}
.ya8{bottom:24.960000pt;}
.yc5{bottom:24.986667pt;}
.yb0{bottom:25.160000pt;}
.ybc{bottom:25.600000pt;}
.yd2{bottom:31.040000pt;}
.yc1{bottom:31.200000pt;}
.yc8{bottom:31.226667pt;}
.yaa{bottom:32.320000pt;}
.yb3{bottom:32.840000pt;}
.yce{bottom:33.760000pt;}
.yd0{bottom:35.680000pt;}
.ybf{bottom:36.160000pt;}
.yb9{bottom:36.800000pt;}
.yc7{bottom:40.666667pt;}
.ya9{bottom:41.760000pt;}
.yb2{bottom:42.280000pt;}
.ybb{bottom:43.520000pt;}
.ya7{bottom:46.400000pt;}
.yc4{bottom:46.426667pt;}
.yaf{bottom:46.600000pt;}
.yba{bottom:52.960000pt;}
.ycd{bottom:54.240000pt;}
.yb8{bottom:58.240000pt;}
.ycc{bottom:63.680000pt;}
.y7{bottom:64.320000pt;}
.ycb{bottom:67.840000pt;}
.y15a{bottom:77.952000pt;}
.y134{bottom:99.712000pt;}
.y5a{bottom:100.192000pt;}
.y6{bottom:103.400000pt;}
.y101{bottom:111.712000pt;}
.ydb{bottom:114.752000pt;}
.y155{bottom:117.792000pt;}
.y133{bottom:121.152000pt;}
.y7b{bottom:123.392000pt;}
.y59{bottom:125.152000pt;}
.y39{bottom:132.672000pt;}
.y100{bottom:136.506667pt;}
.y154{bottom:139.226667pt;}
.yda{bottom:139.706667pt;}
.y5{bottom:142.440000pt;}
.y132{bottom:142.586667pt;}
.y121{bottom:147.866667pt;}
.y7a{bottom:148.186667pt;}
.y38{bottom:157.466667pt;}
.y58{bottom:160.506667pt;}
.yff{bottom:161.466667pt;}
.y4{bottom:161.626667pt;}
.yd9{bottom:164.506667pt;}
.y153{bottom:171.386667pt;}
.y120{bottom:172.826667pt;}
.y79{bottom:172.986667pt;}
.y131{bottom:174.746667pt;}
.y37{bottom:182.266667pt;}
.y57{bottom:185.466667pt;}
.yfe{bottom:186.266667pt;}
.y90{bottom:187.226667pt;}
.yd8{bottom:189.306667pt;}
.y152{bottom:192.826667pt;}
.y130{bottom:196.186667pt;}
.y11f{bottom:197.626667pt;}
.y78{bottom:197.786667pt;}
.y36{bottom:207.226667pt;}
.y56{bottom:210.266667pt;}
.yfd{bottom:211.066667pt;}
.y8f{bottom:212.026667pt;}
.yd7{bottom:214.106667pt;}
.y151{bottom:214.266667pt;}
.y12f{bottom:217.626667pt;}
.y11e{bottom:222.426667pt;}
.y77{bottom:222.746667pt;}
.y35{bottom:232.026667pt;}
.y55{bottom:235.066667pt;}
.yfc{bottom:236.026667pt;}
.y8e{bottom:236.826667pt;}
.yd6{bottom:239.066667pt;}
.y150{bottom:246.426667pt;}
.y11d{bottom:247.226667pt;}
.y76{bottom:247.546667pt;}
.y34{bottom:256.866667pt;}
.y54{bottom:260.066667pt;}
.yfb{bottom:260.866667pt;}
.y8d{bottom:261.826667pt;}
.y14f{bottom:267.906667pt;}
.ya2{bottom:270.626667pt;}
.y12e{bottom:271.266667pt;}
.y11c{bottom:272.226667pt;}
.ye2{bottom:272.386667pt;}
.yd5{bottom:274.626667pt;}
.y33{bottom:281.826667pt;}
.y75{bottom:283.106667pt;}
.y53{bottom:284.866667pt;}
.yfa{bottom:285.666667pt;}
.y8c{bottom:286.626667pt;}
.y14e{bottom:289.346667pt;}
.y12d{bottom:292.706667pt;}
.yd4{bottom:293.186667pt;}
.ya1{bottom:295.586667pt;}
.y11b{bottom:297.026667pt;}
.ye1{bottom:297.346667pt;}
.y32{bottom:306.626667pt;}
.y74{bottom:307.906667pt;}
.y52{bottom:309.666667pt;}
.yf9{bottom:310.466667pt;}
.y14d{bottom:310.786667pt;}
.y8b{bottom:311.426667pt;}
.y12c{bottom:314.146667pt;}
.ya0{bottom:320.386667pt;}
.ye0{bottom:322.146667pt;}
.y31{bottom:331.426667pt;}
.y11a{bottom:332.546667pt;}
.y73{bottom:332.706667pt;}
.y51{bottom:334.466667pt;}
.yf8{bottom:335.426667pt;}
.y12b{bottom:335.586667pt;}
.y8a{bottom:336.226667pt;}
.y14c{bottom:342.946667pt;}
.y9f{bottom:345.186667pt;}
.ydf{bottom:346.946667pt;}
.y30{bottom:356.226667pt;}
.y12a{bottom:357.026667pt;}
.y119{bottom:357.346667pt;}
.y72{bottom:357.666667pt;}
.ycf{bottom:358.146667pt;}
.y50{bottom:359.426667pt;}
.yf7{bottom:360.226667pt;}
.y89{bottom:361.186667pt;}
.y14b{bottom:364.386667pt;}
.y9e{bottom:369.986667pt;}
.yde{bottom:371.746667pt;}
.y129{bottom:378.466667pt;}
.y2f{bottom:381.186667pt;}
.y118{bottom:382.146667pt;}
.y71{bottom:382.466667pt;}
.y4f{bottom:384.226667pt;}
.yf6{bottom:385.026667pt;}
.y14a{bottom:385.826667pt;}
.y88{bottom:385.986667pt;}
.y159{bottom:393.186667pt;}
.y9d{bottom:394.946667pt;}
.ydd{bottom:396.706667pt;}
.y2e{bottom:405.986667pt;}
.y117{bottom:407.106667pt;}
.y70{bottom:407.266667pt;}
.y4e{bottom:409.026667pt;}
.yf5{bottom:409.826667pt;}
.y128{bottom:410.626667pt;}
.y87{bottom:410.786667pt;}
.yca{bottom:412.386667pt;}
.y110{bottom:417.986667pt;}
.y9c{bottom:419.746667pt;}
.ydc{bottom:421.506667pt;}
.y158{bottom:428.706667pt;}
.y1a{bottom:430.466667pt;}
.y2d{bottom:430.786667pt;}
.y116{bottom:431.906667pt;}
.y127{bottom:432.066667pt;}
.y6f{bottom:432.226667pt;}
.y4d{bottom:433.826667pt;}
.yf4{bottom:434.786667pt;}
.y149{bottom:439.426667pt;}
.y10f{bottom:442.786667pt;}
.y9b{bottom:444.546667pt;}
.y86{bottom:446.306667pt;}
.y2c{bottom:455.586667pt;}
.y115{bottom:456.706667pt;}
.y6e{bottom:457.026667pt;}
.y4c{bottom:458.786667pt;}
.yf3{bottom:459.586667pt;}
.y19{bottom:460.386667pt;}
.y148{bottom:460.866667pt;}
.y126{bottom:464.226667pt;}
.y10e{bottom:467.746667pt;}
.y9a{bottom:469.346667pt;}
.y85{bottom:471.106667pt;}
.y2b{bottom:480.546667pt;}
.y6d{bottom:481.826667pt;}
.y147{bottom:482.306667pt;}
.y4b{bottom:483.586667pt;}
.yf2{bottom:484.386667pt;}
.y18{bottom:485.186667pt;}
.y114{bottom:492.226667pt;}
.y10d{bottom:492.546667pt;}
.y99{bottom:494.306667pt;}
.y84{bottom:496.066667pt;}
.yc3{bottom:498.786667pt;}
.y146{bottom:503.773333pt;}
.y2a{bottom:505.373333pt;}
.y6c{bottom:506.653333pt;}
.yf1{bottom:509.373333pt;}
.y10c{bottom:517.373333pt;}
.y125{bottom:518.173333pt;}
.y4a{bottom:519.133333pt;}
.y83{bottom:520.893333pt;}
.y17{bottom:522.653333pt;}
.y145{bottom:525.213333pt;}
.y113{bottom:527.133333pt;}
.y6b{bottom:531.613333pt;}
.yf0{bottom:534.173333pt;}
.y10b{bottom:542.173333pt;}
.y29{bottom:542.813333pt;}
.y124{bottom:542.973333pt;}
.y49{bottom:543.933333pt;}
.y82{bottom:545.693333pt;}
.y112{bottom:548.573333pt;}
.y98{bottom:554.653333pt;}
.y6a{bottom:556.413333pt;}
.y144{bottom:557.213333pt;}
.y16{bottom:563.293333pt;}
.ybe{bottom:563.773333pt;}
.y10a{bottom:567.133333pt;}
.y123{bottom:567.933333pt;}
.y48{bottom:568.893333pt;}
.yef{bottom:569.693333pt;}
.y81{bottom:570.653333pt;}
.y143{bottom:578.813333pt;}
.y97{bottom:579.453333pt;}
.y111{bottom:580.413333pt;}
.y69{bottom:581.213333pt;}
.y28{bottom:585.533333pt;}
.y15{bottom:588.253333pt;}
.y109{bottom:591.933333pt;}
.y47{bottom:593.693333pt;}
.yee{bottom:594.493333pt;}
.y80{bottom:595.453333pt;}
.y122{bottom:600.093333pt;}
.y142{bottom:600.253333pt;}
.y96{bottom:604.253333pt;}
.y68{bottom:606.173333pt;}
.y14{bottom:613.053333pt;}
.y108{bottom:616.733333pt;}
.y46{bottom:618.493333pt;}
.yed{bottom:619.293333pt;}
.y27{bottom:625.853333pt;}
.y95{bottom:629.213333pt;}
.y67{bottom:630.973333pt;}
.y141{bottom:632.253333pt;}
.y13{bottom:637.853333pt;}
.y107{bottom:641.533333pt;}
.y45{bottom:643.293333pt;}
.yec{bottom:644.253333pt;}
.y140{bottom:653.693333pt;}
.y94{bottom:654.013333pt;}
.y66{bottom:655.773333pt;}
.y26{bottom:657.373333pt;}
.y106{bottom:666.493333pt;}
.y44{bottom:668.253333pt;}
.yeb{bottom:669.053333pt;}
.y13f{bottom:675.133333pt;}
.y12{bottom:675.453333pt;}
.y93{bottom:678.813333pt;}
.y65{bottom:680.573333pt;}
.y105{bottom:691.293333pt;}
.y25{bottom:692.573333pt;}
.y43{bottom:693.053333pt;}
.yea{bottom:693.853333pt;}
.yb4{bottom:695.293333pt;}
.y13e{bottom:696.573333pt;}
.y92{bottom:703.773333pt;}
.y64{bottom:705.533333pt;}
.y2{bottom:706.493333pt;}
.y157{bottom:707.293333pt;}
.y104{bottom:716.093333pt;}
.y11{bottom:716.733333pt;}
.y42{bottom:717.853333pt;}
.y13d{bottom:718.173333pt;}
.ye9{bottom:718.653333pt;}
.y24{bottom:721.213333pt;}
.y91{bottom:728.573333pt;}
.y156{bottom:728.733333pt;}
.y63{bottom:730.333333pt;}
.yae{bottom:730.493333pt;}
.y103{bottom:741.053333pt;}
.ye8{bottom:743.613333pt;}
.y10{bottom:745.373333pt;}
.y23{bottom:745.853333pt;}
.y13c{bottom:750.173333pt;}
.y41{bottom:753.413333pt;}
.y7f{bottom:755.173333pt;}
.y62{bottom:765.893333pt;}
.ye7{bottom:768.453333pt;}
.y22{bottom:770.693333pt;}
.y13b{bottom:771.653333pt;}
.yf{bottom:776.773333pt;}
.y40{bottom:778.213333pt;}
.y7e{bottom:779.973333pt;}
.y61{bottom:790.693333pt;}
.y13a{bottom:793.093333pt;}
.ye6{bottom:793.253333pt;}
.y21{bottom:795.333333pt;}
.yab{bottom:795.653333pt;}
.y3f{bottom:803.173333pt;}
.y7d{bottom:804.933333pt;}
.ye{bottom:808.293333pt;}
.y60{bottom:815.493333pt;}
.ye5{bottom:818.213333pt;}
.y139{bottom:825.253333pt;}
.y20{bottom:826.693333pt;}
.y3e{bottom:827.973333pt;}
.y7c{bottom:829.733333pt;}
.ya6{bottom:839.173333pt;}
.yd{bottom:839.813333pt;}
.y5f{bottom:840.453333pt;}
.y138{bottom:846.693333pt;}
.ye4{bottom:850.373333pt;}
.y3d{bottom:852.773333pt;}
.y102{bottom:854.533333pt;}
.y1f{bottom:855.333333pt;}
.y5e{bottom:865.253333pt;}
.y137{bottom:868.133333pt;}
.yc{bottom:871.333333pt;}
.y3c{bottom:877.573333pt;}
.y1e{bottom:879.973333pt;}
.y136{bottom:889.573333pt;}
.y5d{bottom:890.053333pt;}
.y3b{bottom:902.533333pt;}
.yb{bottom:902.853333pt;}
.ya4{bottom:904.133333pt;}
.ye3{bottom:904.293333pt;}
.y1d{bottom:904.613333pt;}
.y5c{bottom:914.853333pt;}
.y135{bottom:921.733333pt;}
.y3a{bottom:927.333333pt;}
.ya{bottom:937.413333pt;}
.y5b{bottom:939.813333pt;}
.y1c{bottom:939.973333pt;}
.ya3{bottom:943.173333pt;}
.y9{bottom:959.493333pt;}
.y1b{bottom:964.613333pt;}
.y1{bottom:967.333333pt;}
.hf{height:21.440000pt;}
.h15{height:34.560000pt;}
.h13{height:42.880000pt;}
.he{height:44.736000pt;}
.h1b{height:53.600000pt;}
.h17{height:54.080000pt;}
.ha{height:54.093750pt;}
.h8{height:59.648000pt;}
.h10{height:64.320000pt;}
.h18{height:64.352000pt;}
.h14{height:64.512000pt;}
.h2{height:65.531250pt;}
.h1c{height:66.792960pt;}
.hd{height:69.696000pt;}
.h9{height:69.788160pt;}
.hc{height:71.809920pt;}
.h16{height:76.160000pt;}
.h1d{height:76.964840pt;}
.h1a{height:85.760000pt;}
.h11{height:88.928125pt;}
.h7{height:89.472000pt;}
.h19{height:90.848125pt;}
.hb{height:98.672872pt;}
.h3{height:107.232000pt;}
.h12{height:107.548160pt;}
.h6{height:109.155840pt;}
.h5{height:170.586667pt;}
.h4{height:324.562500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:254.266667pt;}
.w6{width:383.426667pt;}
.w3{width:429.186667pt;}
.w4{width:631.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x3{left:9.600000pt;}
.x8{left:22.112000pt;}
.x5{left:41.152000pt;}
.x1c{left:60.000000pt;}
.x4{left:66.080000pt;}
.x6{left:67.546667pt;}
.x1f{left:73.760000pt;}
.x19{left:81.440000pt;}
.x1d{left:84.800000pt;}
.x1a{left:86.400000pt;}
.x1b{left:88.986667pt;}
.x1{left:96.031988pt;}
.xe{left:102.111988pt;}
.x20{left:104.506667pt;}
.x9{left:109.471988pt;}
.x16{left:120.031988pt;}
.xb{left:121.791988pt;}
.xc{left:123.071988pt;}
.x15{left:127.231988pt;}
.x1e{left:172.186667pt;}
.x2{left:173.466667pt;}
.xf{left:179.706655pt;}
.x10{left:182.426655pt;}
.x12{left:183.706655pt;}
.x11{left:192.666655pt;}
.x7{left:222.466667pt;}
.xd{left:239.386655pt;}
.x14{left:245.626655pt;}
.x13{left:259.546655pt;}
.xa{left:327.426655pt;}
.x18{left:351.586667pt;}
.x22{left:396.866655pt;}
.x21{left:698.053322pt;}
}




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