
    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_8ece32f591357ea306110bef.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ced08c31d2f3355972473432.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_fb2ccc90e8c2eb61cfd2a724.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9717d14728caee7204870cc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_bdf61e1ae8867b6e00906cf1.woff2')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_881964c173b3b8c8b75f4a6d.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_8582deb3f9d3f4fe2095e55a.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_3e4691921339bf30a5674a68.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132324;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_515b217fe5de903eb5dde1b8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5fc8ce09874364ab45479d0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_6365a4a607cd065053e6ecfd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5a7d8edbda18fd81cc59d53d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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:ffd;src:url('chunks/assets/font_364e8869daf95bc62d5553a5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.208008;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:ffe;src:url('chunks/assets/font_50ddb6e2cf8254bf44de891d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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:fff;src:url('chunks/assets/font_d28c0e6f8958ae4e8e1e2e06.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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:ff10;src:url('chunks/assets/font_098c76ade9266e97390f4079.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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);}
.v6{vertical-align:-85.680000px;}
.v3{vertical-align:-33.120000px;}
.v5{vertical-align:-27.360000px;}
.v7{vertical-align:-14.400000px;}
.vb{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.760000px;}
.v8{vertical-align:14.400000px;}
.vc{vertical-align:16.560000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.va{vertical-align:36.000000px;}
.v9{vertical-align:56.880000px;}
.lsd{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.256200px;}
.lse{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.714000px;}
.ls19{letter-spacing:0.720000px;}
.ls9{letter-spacing:25.054320px;}
.ls11{letter-spacing:34.865280px;}
.ls14{letter-spacing:54.144000px;}
.lsa{letter-spacing:58.536000px;}
.ls16{letter-spacing:289.049760px;}
.ls8{letter-spacing:518.376000px;}
.lsf{letter-spacing:768.396000px;}
.ls17{letter-spacing:868.769760px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws2{word-spacing:-59.760000px;}
.wse{word-spacing:-51.120000px;}
.ws4{word-spacing:-21.041280px;}
.ws0{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.ws12{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.506480px;}
.wsf{word-spacing:-16.407600px;}
.ws9{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.226440px;}
.ws5{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.383080px;}
.ws10{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-4.608000px;}
._f{margin-left:-3.528000px;}
._c{margin-left:-2.428560px;}
._0{margin-left:-1.412400px;}
._1{width:1.852560px;}
._a{width:2.880000px;}
._b{width:4.032000px;}
._d{width:5.400000px;}
._2{width:6.480000px;}
._7{width:7.632000px;}
._12{width:9.288000px;}
._10{width:10.656000px;}
._5{width:12.600000px;}
._6{width:13.743840px;}
._4{width:15.496800px;}
._3{width:16.560000px;}
._11{width:19.008000px;}
._15{width:20.088000px;}
._8{width:21.216000px;}
._9{width:22.311840px;}
._16{width:24.522000px;}
._18{width:26.868000px;}
._1a{width:28.056000px;}
._17{width:35.903040px;}
._19{width:37.254000px;}
._1c{width:38.970000px;}
._1b{width:43.291440px;}
._13{width:104.589360px;}
._14{width:194.400000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:4.140000px;}
.y9d{bottom:4.500000px;}
.yb9{bottom:4.680000px;}
.yac{bottom:4.710000px;}
.yaf{bottom:5.040000px;}
.y9c{bottom:5.220000px;}
.y9b{bottom:5.760000px;}
.y59{bottom:8.100000px;}
.y5c{bottom:8.280000px;}
.y5a{bottom:8.460000px;}
.y5d{bottom:8.640000px;}
.y8b{bottom:8.820000px;}
.y87{bottom:9.000000px;}
.y91{bottom:10.800000px;}
.y3e{bottom:12.420000px;}
.y7{bottom:13.860000px;}
.y6{bottom:18.360000px;}
.yb{bottom:20.916000px;}
.y86{bottom:21.600000px;}
.y8d{bottom:21.780000px;}
.ybb{bottom:23.040000px;}
.y3d{bottom:28.440000px;}
.y80{bottom:29.340000px;}
.ya0{bottom:29.520000px;}
.y81{bottom:29.700000px;}
.y90{bottom:31.500000px;}
.y85{bottom:33.660000px;}
.y7d{bottom:33.840000px;}
.yb7{bottom:34.020000px;}
.y5{bottom:34.380000px;}
.y9{bottom:39.420000px;}
.y7b{bottom:43.560000px;}
.y7f{bottom:50.220000px;}
.ya{bottom:52.740000px;}
.yb6{bottom:55.080000px;}
.y3c{bottom:55.290000px;}
.y4{bottom:61.050000px;}
.y83{bottom:64.440000px;}
.y7a{bottom:64.620000px;}
.y40{bottom:77.616000px;}
.y3a{bottom:79.050000px;}
.y3b{bottom:83.190000px;}
.y2{bottom:86.790000px;}
.y3{bottom:89.130000px;}
.yd2{bottom:114.516000px;}
.y70{bottom:119.196000px;}
.y38{bottom:119.736000px;}
.y115{bottom:120.636000px;}
.yd1{bottom:135.216000px;}
.y6f{bottom:139.896000px;}
.y37{bottom:140.436000px;}
.y114{bottom:141.336000px;}
.yb5{bottom:152.130000px;}
.yd0{bottom:155.910000px;}
.y6e{bottom:160.590000px;}
.y36{bottom:161.130000px;}
.y113{bottom:162.030000px;}
.y9a{bottom:164.550000px;}
.ycf{bottom:176.610000px;}
.y6d{bottom:181.290000px;}
.y35{bottom:181.830000px;}
.y112{bottom:182.730000px;}
.y99{bottom:185.250000px;}
.yce{bottom:197.310000px;}
.y6c{bottom:201.990000px;}
.y34{bottom:202.530000px;}
.y111{bottom:203.430000px;}
.y98{bottom:205.950000px;}
.ycd{bottom:218.010000px;}
.y6b{bottom:222.690000px;}
.y33{bottom:223.230000px;}
.y10d{bottom:223.986000px;}
.y110{bottom:224.130000px;}
.y97{bottom:226.650000px;}
.yb4{bottom:228.630000px;}
.ycc{bottom:238.710000px;}
.y6a{bottom:239.070000px;}
.y32{bottom:243.930000px;}
.y10f{bottom:244.830000px;}
.y10b{bottom:245.046000px;}
.y96{bottom:247.350000px;}
.y69{bottom:248.070000px;}
.yb3{bottom:258.510000px;}
.ycb{bottom:259.410000px;}
.y31{bottom:264.630000px;}
.y10e{bottom:265.350000px;}
.y109{bottom:266.106000px;}
.y95{bottom:268.050000px;}
.y68{bottom:273.810000px;}
.yca{bottom:280.110000px;}
.y30{bottom:285.330000px;}
.y10c{bottom:286.410000px;}
.y107{bottom:286.986000px;}
.y94{bottom:288.390000px;}
.y67{bottom:294.510000px;}
.yc9{bottom:300.810000px;}
.y2f{bottom:306.030000px;}
.y10a{bottom:307.470000px;}
.y106{bottom:308.091000px;}
.y93{bottom:309.450000px;}
.y66{bottom:315.210000px;}
.yc8{bottom:321.510000px;}
.y92{bottom:326.370000px;}
.y2e{bottom:326.730000px;}
.y108{bottom:328.350000px;}
.y104{bottom:329.151000px;}
.y65{bottom:335.910000px;}
.yb2{bottom:342.255000px;}
.y2d{bottom:347.475000px;}
.y102{bottom:350.031000px;}
.y64{bottom:356.655000px;}
.y8f{bottom:357.195000px;}
.yc7{bottom:362.955000px;}
.y2c{bottom:368.175000px;}
.y105{bottom:370.515000px;}
.y100{bottom:371.091000px;}
.yb1{bottom:372.315000px;}
.y63{bottom:377.355000px;}
.yc6{bottom:383.655000px;}
.y2b{bottom:388.875000px;}
.y103{bottom:391.395000px;}
.yfe{bottom:392.151000px;}
.y62{bottom:398.055000px;}
.yc5{bottom:403.995000px;}
.y2a{bottom:409.575000px;}
.y101{bottom:412.455000px;}
.yfd{bottom:413.031000px;}
.y8e{bottom:413.355000px;}
.y61{bottom:418.755000px;}
.yc4{bottom:424.695000px;}
.y29{bottom:430.275000px;}
.yff{bottom:433.515000px;}
.yfb{bottom:434.091000px;}
.y60{bottom:439.455000px;}
.y8c{bottom:444.135000px;}
.yc3{bottom:445.755000px;}
.y28{bottom:450.975000px;}
.yf9{bottom:455.151000px;}
.yb0{bottom:456.015000px;}
.y5f{bottom:460.155000px;}
.yc2{bottom:466.455000px;}
.y27{bottom:471.675000px;}
.yfc{bottom:475.455000px;}
.yf7{bottom:476.031000px;}
.y5e{bottom:480.495000px;}
.yae{bottom:486.075000px;}
.yc1{bottom:487.155000px;}
.y26{bottom:492.375000px;}
.yfa{bottom:496.515000px;}
.yf5{bottom:497.091000px;}
.y5b{bottom:497.775000px;}
.y8a{bottom:500.475000px;}
.yc0{bottom:507.855000px;}
.y25{bottom:513.075000px;}
.yf8{bottom:517.395000px;}
.yf3{bottom:518.151000px;}
.y58{bottom:528.555000px;}
.y89{bottom:531.255000px;}
.y24{bottom:533.775000px;}
.yf6{bottom:538.455000px;}
.yf1{bottom:539.031000px;}
.ybf{bottom:549.075000px;}
.y23{bottom:554.475000px;}
.yf4{bottom:559.515000px;}
.yef{bottom:560.091000px;}
.yad{bottom:569.775000px;}
.y22{bottom:575.175000px;}
.yf2{bottom:580.395000px;}
.yee{bottom:581.181000px;}
.y88{bottom:587.415000px;}
.y57{bottom:589.215000px;}
.ybe{bottom:590.475000px;}
.y21{bottom:595.875000px;}
.yab{bottom:599.655000px;}
.yf0{bottom:601.455000px;}
.yec{bottom:602.061000px;}
.y56{bottom:609.945000px;}
.ybd{bottom:611.205000px;}
.y20{bottom:616.605000px;}
.y82{bottom:618.225000px;}
.yea{bottom:623.121000px;}
.yba{bottom:627.405000px;}
.y55{bottom:630.645000px;}
.y1f{bottom:637.305000px;}
.yed{bottom:643.425000px;}
.ye8{bottom:644.181000px;}
.y84{bottom:649.005000px;}
.y54{bottom:651.345000px;}
.y1e{bottom:658.005000px;}
.yeb{bottom:664.485000px;}
.ye6{bottom:665.061000px;}
.yb8{bottom:665.385000px;}
.y53{bottom:672.045000px;}
.y1d{bottom:678.705000px;}
.ye9{bottom:685.545000px;}
.ye4{bottom:686.121000px;}
.yaa{bottom:686.985000px;}
.y52{bottom:692.385000px;}
.y1c{bottom:699.405000px;}
.y7e{bottom:705.165000px;}
.ye7{bottom:706.425000px;}
.ye2{bottom:707.181000px;}
.ya9{bottom:707.685000px;}
.y51{bottom:713.445000px;}
.y1b{bottom:720.105000px;}
.ye5{bottom:727.485000px;}
.ye1{bottom:728.061000px;}
.ya8{bottom:728.385000px;}
.y50{bottom:734.145000px;}
.y1a{bottom:740.805000px;}
.ye3{bottom:748.545000px;}
.ya7{bottom:749.085000px;}
.ye0{bottom:749.121000px;}
.y4f{bottom:754.845000px;}
.y19{bottom:761.145000px;}
.ya6{bottom:769.785000px;}
.yde{bottom:770.181000px;}
.y4e{bottom:775.545000px;}
.y79{bottom:777.885000px;}
.y18{bottom:782.025000px;}
.ya5{bottom:790.485000px;}
.ydd{bottom:791.061000px;}
.y4d{bottom:796.245000px;}
.y17{bottom:803.085000px;}
.y7c{bottom:808.665000px;}
.ya4{bottom:811.185000px;}
.ydf{bottom:811.545000px;}
.ydb{bottom:812.121000px;}
.y4c{bottom:816.945000px;}
.y16{bottom:830.985000px;}
.ya3{bottom:831.885000px;}
.yd9{bottom:837.366000px;}
.y4b{bottom:837.645000px;}
.y15{bottom:845.025000px;}
.ya2{bottom:852.585000px;}
.ydc{bottom:853.485000px;}
.y4a{bottom:858.345000px;}
.y14{bottom:866.085000px;}
.ya1{bottom:873.330000px;}
.yda{bottom:878.730000px;}
.y49{bottom:879.090000px;}
.yd8{bottom:879.108000px;}
.y9f{bottom:889.890000px;}
.y13{bottom:894.030000px;}
.y78{bottom:894.930000px;}
.y48{bottom:899.790000px;}
.y12{bottom:908.070000px;}
.y77{bottom:915.630000px;}
.y47{bottom:920.490000px;}
.y11{bottom:935.970000px;}
.y76{bottom:936.330000px;}
.y9e{bottom:940.830000px;}
.y46{bottom:941.190000px;}
.y10{bottom:950.190000px;}
.y75{bottom:957.030000px;}
.y45{bottom:961.890000px;}
.yf{bottom:970.890000px;}
.y74{bottom:977.730000px;}
.yd7{bottom:982.230000px;}
.y44{bottom:982.590000px;}
.ye{bottom:991.230000px;}
.y73{bottom:998.430000px;}
.y43{bottom:1003.290000px;}
.yd{bottom:1012.470000px;}
.y72{bottom:1019.130000px;}
.y42{bottom:1023.990000px;}
.yc{bottom:1036.590000px;}
.y71{bottom:1039.830000px;}
.y41{bottom:1044.690000px;}
.y8{bottom:1069.890000px;}
.y3f{bottom:1083.390000px;}
.y1{bottom:1087.890000px;}
.y39{bottom:1099.770000px;}
.yd6{bottom:1112.190000px;}
.yd5{bottom:1128.210000px;}
.yd4{bottom:1155.060000px;}
.yd3{bottom:1178.820000px;}
.h11{height:29.880000px;}
.h13{height:30.060000px;}
.h1d{height:30.096000px;}
.h7{height:34.776000px;}
.h27{height:37.980000px;}
.hc{height:47.321367px;}
.h2b{height:50.027344px;}
.h21{height:50.940000px;}
.h1c{height:55.440000px;}
.h18{height:55.620000px;}
.h8{height:62.327813px;}
.h14{height:64.546875px;}
.h12{height:64.978594px;}
.h5{height:65.884219px;}
.h20{height:66.078281px;}
.h3{height:67.824844px;}
.h1a{height:68.324766px;}
.h1e{height:68.504766px;}
.h4{height:69.086250px;}
.hd{height:70.628906px;}
.hf{height:70.664062px;}
.he{height:71.081367px;}
.h6{height:71.613281px;}
.h19{height:72.000000px;}
.ha{height:72.562500px;}
.hb{height:74.704922px;}
.h28{height:75.093750px;}
.h25{height:76.500000px;}
.h2a{height:77.373281px;}
.h22{height:82.836000px;}
.h23{height:83.700000px;}
.h24{height:83.736000px;}
.h9{height:84.898125px;}
.h29{height:85.646250px;}
.h1b{height:86.220000px;}
.h17{height:86.400000px;}
.h15{height:87.958828px;}
.h1f{height:90.000000px;}
.h16{height:106.664062px;}
.h10{height:107.856000px;}
.h2{height:119.736000px;}
.h26{height:390.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:16.740000px;}
.wc{width:37.260000px;}
.wd{width:38.520000px;}
.wa{width:42.660000px;}
.w10{width:44.280000px;}
.wb{width:44.316000px;}
.we{width:47.160000px;}
.wf{width:47.376000px;}
.w11{width:55.620000px;}
.w13{width:63.720000px;}
.w12{width:63.756000px;}
.w19{width:75.240000px;}
.w18{width:75.276000px;}
.w9{width:91.620000px;}
.w15{width:93.456000px;}
.w16{width:93.600000px;}
.w14{width:101.880000px;}
.w17{width:102.816000px;}
.w1c{width:108.180000px;}
.w1e{width:108.360000px;}
.w1d{width:108.396000px;}
.w2{width:135.720000px;}
.w8{width:156.780000px;}
.w4{width:156.810000px;}
.w21{width:162.360000px;}
.w20{width:162.570000px;}
.w1b{width:393.915000px;}
.w3{width:403.995000px;}
.w7{width:404.025000px;}
.w1a{width:545.865000px;}
.w1f{width:650.085000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x10{left:10.260000px;}
.xe{left:12.060000px;}
.xc{left:14.220000px;}
.x16{left:16.200000px;}
.x14{left:17.280000px;}
.x1c{left:21.414000px;}
.x29{left:23.940000px;}
.x19{left:26.280000px;}
.x26{left:28.440000px;}
.x2a{left:33.120000px;}
.x20{left:37.440000px;}
.x2c{left:40.860000px;}
.x23{left:42.120000px;}
.x33{left:47.385000px;}
.x35{left:49.140000px;}
.x32{left:53.994000px;}
.x34{left:56.550000px;}
.x2{left:67.854000px;}
.x3a{left:71.994000px;}
.x2b{left:99.045000px;}
.x2d{left:103.854000px;}
.x7{left:106.956000px;}
.x1{left:108.036000px;}
.x37{left:131.214000px;}
.x8{left:135.036000px;}
.x3f{left:140.075987px;}
.x45{left:156.090000px;}
.x28{left:165.825000px;}
.x42{left:167.070000px;}
.x40{left:202.890000px;}
.x1f{left:211.530000px;}
.x44{left:223.410000px;}
.x36{left:226.479000px;}
.xd{left:228.270000px;}
.x4e{left:231.510000px;}
.x3{left:243.750000px;}
.x3b{left:248.079000px;}
.x3e{left:265.719000px;}
.x9{left:270.750000px;}
.x4a{left:277.050000px;}
.x41{left:278.895000px;}
.x38{left:297.615000px;}
.x21{left:305.715000px;}
.xf{left:316.875000px;}
.x3c{left:324.939000px;}
.x53{left:343.695000px;}
.x2e{left:351.615000px;}
.x11{left:354.855000px;}
.x12{left:394.275000px;}
.x22{left:400.035000px;}
.x6{left:427.394987px;}
.x46{left:430.635000px;}
.x13{left:442.155000px;}
.x1d{left:445.394987px;}
.x2f{left:459.975000px;}
.x1e{left:488.444987px;}
.x15{left:490.245000px;}
.x24{left:503.565000px;}
.x51{left:512.745000px;}
.x52{left:518.325000px;}
.x17{left:535.245000px;}
.x50{left:555.045000px;}
.x30{left:568.365000px;}
.x18{left:591.585000px;}
.x47{left:600.045000px;}
.x25{left:606.165000px;}
.x3d{left:612.114000px;}
.x39{left:622.545000px;}
.x48{left:631.545000px;}
.x49{left:640.545000px;}
.x5{left:647.745000px;}
.x1a{left:656.070000px;}
.x43{left:663.990000px;}
.xa{left:674.790000px;}
.x31{left:676.770000px;}
.x27{left:682.170000px;}
.x4f{left:685.770000px;}
.x4c{left:702.510000px;}
.x1b{left:720.690000px;}
.xb{left:768.389987px;}
.x4d{left:773.250000px;}
.x4b{left:785.130000px;}
@media print{
.v6{vertical-align:-76.160000pt;}
.v3{vertical-align:-29.440000pt;}
.v5{vertical-align:-24.320000pt;}
.v7{vertical-align:-12.800000pt;}
.vb{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.120000pt;}
.v8{vertical-align:12.800000pt;}
.vc{vertical-align:14.720000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.va{vertical-align:32.000000pt;}
.v9{vertical-align:50.560000pt;}
.lsd{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.634667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls9{letter-spacing:22.270507pt;}
.ls11{letter-spacing:30.991360pt;}
.ls14{letter-spacing:48.128000pt;}
.lsa{letter-spacing:52.032000pt;}
.ls16{letter-spacing:256.933120pt;}
.ls8{letter-spacing:460.778667pt;}
.lsf{letter-spacing:683.018667pt;}
.ls17{letter-spacing:772.239787pt;}
.wsd{word-spacing:-64.000000pt;}
.ws2{word-spacing:-53.120000pt;}
.wse{word-spacing:-45.440000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws0{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.000000pt;}
.ws13{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.ws12{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.584533pt;}
.ws9{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.534613pt;}
.ws5{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.118293pt;}
.ws10{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-4.096000pt;}
._f{margin-left:-3.136000pt;}
._c{margin-left:-2.158720pt;}
._0{margin-left:-1.255467pt;}
._1{width:1.646720pt;}
._a{width:2.560000pt;}
._b{width:3.584000pt;}
._d{width:4.800000pt;}
._2{width:5.760000pt;}
._7{width:6.784000pt;}
._12{width:8.256000pt;}
._10{width:9.472000pt;}
._5{width:11.200000pt;}
._6{width:12.216747pt;}
._4{width:13.774933pt;}
._3{width:14.720000pt;}
._11{width:16.896000pt;}
._15{width:17.856000pt;}
._8{width:18.858667pt;}
._9{width:19.832747pt;}
._16{width:21.797333pt;}
._18{width:23.882667pt;}
._1a{width:24.938667pt;}
._17{width:31.913813pt;}
._19{width:33.114667pt;}
._1c{width:34.640000pt;}
._1b{width:38.481280pt;}
._13{width:92.968320pt;}
._14{width:172.800000pt;}
.fs1{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:3.680000pt;}
.y9d{bottom:4.000000pt;}
.yb9{bottom:4.160000pt;}
.yac{bottom:4.186667pt;}
.yaf{bottom:4.480000pt;}
.y9c{bottom:4.640000pt;}
.y9b{bottom:5.120000pt;}
.y59{bottom:7.200000pt;}
.y5c{bottom:7.360000pt;}
.y5a{bottom:7.520000pt;}
.y5d{bottom:7.680000pt;}
.y8b{bottom:7.840000pt;}
.y87{bottom:8.000000pt;}
.y91{bottom:9.600000pt;}
.y3e{bottom:11.040000pt;}
.y7{bottom:12.320000pt;}
.y6{bottom:16.320000pt;}
.yb{bottom:18.592000pt;}
.y86{bottom:19.200000pt;}
.y8d{bottom:19.360000pt;}
.ybb{bottom:20.480000pt;}
.y3d{bottom:25.280000pt;}
.y80{bottom:26.080000pt;}
.ya0{bottom:26.240000pt;}
.y81{bottom:26.400000pt;}
.y90{bottom:28.000000pt;}
.y85{bottom:29.920000pt;}
.y7d{bottom:30.080000pt;}
.yb7{bottom:30.240000pt;}
.y5{bottom:30.560000pt;}
.y9{bottom:35.040000pt;}
.y7b{bottom:38.720000pt;}
.y7f{bottom:44.640000pt;}
.ya{bottom:46.880000pt;}
.yb6{bottom:48.960000pt;}
.y3c{bottom:49.146667pt;}
.y4{bottom:54.266667pt;}
.y83{bottom:57.280000pt;}
.y7a{bottom:57.440000pt;}
.y40{bottom:68.992000pt;}
.y3a{bottom:70.266667pt;}
.y3b{bottom:73.946667pt;}
.y2{bottom:77.146667pt;}
.y3{bottom:79.226667pt;}
.yd2{bottom:101.792000pt;}
.y70{bottom:105.952000pt;}
.y38{bottom:106.432000pt;}
.y115{bottom:107.232000pt;}
.yd1{bottom:120.192000pt;}
.y6f{bottom:124.352000pt;}
.y37{bottom:124.832000pt;}
.y114{bottom:125.632000pt;}
.yb5{bottom:135.226667pt;}
.yd0{bottom:138.586667pt;}
.y6e{bottom:142.746667pt;}
.y36{bottom:143.226667pt;}
.y113{bottom:144.026667pt;}
.y9a{bottom:146.266667pt;}
.ycf{bottom:156.986667pt;}
.y6d{bottom:161.146667pt;}
.y35{bottom:161.626667pt;}
.y112{bottom:162.426667pt;}
.y99{bottom:164.666667pt;}
.yce{bottom:175.386667pt;}
.y6c{bottom:179.546667pt;}
.y34{bottom:180.026667pt;}
.y111{bottom:180.826667pt;}
.y98{bottom:183.066667pt;}
.ycd{bottom:193.786667pt;}
.y6b{bottom:197.946667pt;}
.y33{bottom:198.426667pt;}
.y10d{bottom:199.098667pt;}
.y110{bottom:199.226667pt;}
.y97{bottom:201.466667pt;}
.yb4{bottom:203.226667pt;}
.ycc{bottom:212.186667pt;}
.y6a{bottom:212.506667pt;}
.y32{bottom:216.826667pt;}
.y10f{bottom:217.626667pt;}
.y10b{bottom:217.818667pt;}
.y96{bottom:219.866667pt;}
.y69{bottom:220.506667pt;}
.yb3{bottom:229.786667pt;}
.ycb{bottom:230.586667pt;}
.y31{bottom:235.226667pt;}
.y10e{bottom:235.866667pt;}
.y109{bottom:236.538667pt;}
.y95{bottom:238.266667pt;}
.y68{bottom:243.386667pt;}
.yca{bottom:248.986667pt;}
.y30{bottom:253.626667pt;}
.y10c{bottom:254.586667pt;}
.y107{bottom:255.098667pt;}
.y94{bottom:256.346667pt;}
.y67{bottom:261.786667pt;}
.yc9{bottom:267.386667pt;}
.y2f{bottom:272.026667pt;}
.y10a{bottom:273.306667pt;}
.y106{bottom:273.858667pt;}
.y93{bottom:275.066667pt;}
.y66{bottom:280.186667pt;}
.yc8{bottom:285.786667pt;}
.y92{bottom:290.106667pt;}
.y2e{bottom:290.426667pt;}
.y108{bottom:291.866667pt;}
.y104{bottom:292.578667pt;}
.y65{bottom:298.586667pt;}
.yb2{bottom:304.226667pt;}
.y2d{bottom:308.866667pt;}
.y102{bottom:311.138667pt;}
.y64{bottom:317.026667pt;}
.y8f{bottom:317.506667pt;}
.yc7{bottom:322.626667pt;}
.y2c{bottom:327.266667pt;}
.y105{bottom:329.346667pt;}
.y100{bottom:329.858667pt;}
.yb1{bottom:330.946667pt;}
.y63{bottom:335.426667pt;}
.yc6{bottom:341.026667pt;}
.y2b{bottom:345.666667pt;}
.y103{bottom:347.906667pt;}
.yfe{bottom:348.578667pt;}
.y62{bottom:353.826667pt;}
.yc5{bottom:359.106667pt;}
.y2a{bottom:364.066667pt;}
.y101{bottom:366.626667pt;}
.yfd{bottom:367.138667pt;}
.y8e{bottom:367.426667pt;}
.y61{bottom:372.226667pt;}
.yc4{bottom:377.506667pt;}
.y29{bottom:382.466667pt;}
.yff{bottom:385.346667pt;}
.yfb{bottom:385.858667pt;}
.y60{bottom:390.626667pt;}
.y8c{bottom:394.786667pt;}
.yc3{bottom:396.226667pt;}
.y28{bottom:400.866667pt;}
.yf9{bottom:404.578667pt;}
.yb0{bottom:405.346667pt;}
.y5f{bottom:409.026667pt;}
.yc2{bottom:414.626667pt;}
.y27{bottom:419.266667pt;}
.yfc{bottom:422.626667pt;}
.yf7{bottom:423.138667pt;}
.y5e{bottom:427.106667pt;}
.yae{bottom:432.066667pt;}
.yc1{bottom:433.026667pt;}
.y26{bottom:437.666667pt;}
.yfa{bottom:441.346667pt;}
.yf5{bottom:441.858667pt;}
.y5b{bottom:442.466667pt;}
.y8a{bottom:444.866667pt;}
.yc0{bottom:451.426667pt;}
.y25{bottom:456.066667pt;}
.yf8{bottom:459.906667pt;}
.yf3{bottom:460.578667pt;}
.y58{bottom:469.826667pt;}
.y89{bottom:472.226667pt;}
.y24{bottom:474.466667pt;}
.yf6{bottom:478.626667pt;}
.yf1{bottom:479.138667pt;}
.ybf{bottom:488.066667pt;}
.y23{bottom:492.866667pt;}
.yf4{bottom:497.346667pt;}
.yef{bottom:497.858667pt;}
.yad{bottom:506.466667pt;}
.y22{bottom:511.266667pt;}
.yf2{bottom:515.906667pt;}
.yee{bottom:516.605333pt;}
.y88{bottom:522.146667pt;}
.y57{bottom:523.746667pt;}
.ybe{bottom:524.866667pt;}
.y21{bottom:529.666667pt;}
.yab{bottom:533.026667pt;}
.yf0{bottom:534.626667pt;}
.yec{bottom:535.165333pt;}
.y56{bottom:542.173333pt;}
.ybd{bottom:543.293333pt;}
.y20{bottom:548.093333pt;}
.y82{bottom:549.533333pt;}
.yea{bottom:553.885333pt;}
.yba{bottom:557.693333pt;}
.y55{bottom:560.573333pt;}
.y1f{bottom:566.493333pt;}
.yed{bottom:571.933333pt;}
.ye8{bottom:572.605333pt;}
.y84{bottom:576.893333pt;}
.y54{bottom:578.973333pt;}
.y1e{bottom:584.893333pt;}
.yeb{bottom:590.653333pt;}
.ye6{bottom:591.165333pt;}
.yb8{bottom:591.453333pt;}
.y53{bottom:597.373333pt;}
.y1d{bottom:603.293333pt;}
.ye9{bottom:609.373333pt;}
.ye4{bottom:609.885333pt;}
.yaa{bottom:610.653333pt;}
.y52{bottom:615.453333pt;}
.y1c{bottom:621.693333pt;}
.y7e{bottom:626.813333pt;}
.ye7{bottom:627.933333pt;}
.ye2{bottom:628.605333pt;}
.ya9{bottom:629.053333pt;}
.y51{bottom:634.173333pt;}
.y1b{bottom:640.093333pt;}
.ye5{bottom:646.653333pt;}
.ye1{bottom:647.165333pt;}
.ya8{bottom:647.453333pt;}
.y50{bottom:652.573333pt;}
.y1a{bottom:658.493333pt;}
.ye3{bottom:665.373333pt;}
.ya7{bottom:665.853333pt;}
.ye0{bottom:665.885333pt;}
.y4f{bottom:670.973333pt;}
.y19{bottom:676.573333pt;}
.ya6{bottom:684.253333pt;}
.yde{bottom:684.605333pt;}
.y4e{bottom:689.373333pt;}
.y79{bottom:691.453333pt;}
.y18{bottom:695.133333pt;}
.ya5{bottom:702.653333pt;}
.ydd{bottom:703.165333pt;}
.y4d{bottom:707.773333pt;}
.y17{bottom:713.853333pt;}
.y7c{bottom:718.813333pt;}
.ya4{bottom:721.053333pt;}
.ydf{bottom:721.373333pt;}
.ydb{bottom:721.885333pt;}
.y4c{bottom:726.173333pt;}
.y16{bottom:738.653333pt;}
.ya3{bottom:739.453333pt;}
.yd9{bottom:744.325333pt;}
.y4b{bottom:744.573333pt;}
.y15{bottom:751.133333pt;}
.ya2{bottom:757.853333pt;}
.ydc{bottom:758.653333pt;}
.y4a{bottom:762.973333pt;}
.y14{bottom:769.853333pt;}
.ya1{bottom:776.293333pt;}
.yda{bottom:781.093333pt;}
.y49{bottom:781.413333pt;}
.yd8{bottom:781.429333pt;}
.y9f{bottom:791.013333pt;}
.y13{bottom:794.693333pt;}
.y78{bottom:795.493333pt;}
.y48{bottom:799.813333pt;}
.y12{bottom:807.173333pt;}
.y77{bottom:813.893333pt;}
.y47{bottom:818.213333pt;}
.y11{bottom:831.973333pt;}
.y76{bottom:832.293333pt;}
.y9e{bottom:836.293333pt;}
.y46{bottom:836.613333pt;}
.y10{bottom:844.613333pt;}
.y75{bottom:850.693333pt;}
.y45{bottom:855.013333pt;}
.yf{bottom:863.013333pt;}
.y74{bottom:869.093333pt;}
.yd7{bottom:873.093333pt;}
.y44{bottom:873.413333pt;}
.ye{bottom:881.093333pt;}
.y73{bottom:887.493333pt;}
.y43{bottom:891.813333pt;}
.yd{bottom:899.973333pt;}
.y72{bottom:905.893333pt;}
.y42{bottom:910.213333pt;}
.yc{bottom:921.413333pt;}
.y71{bottom:924.293333pt;}
.y41{bottom:928.613333pt;}
.y8{bottom:951.013333pt;}
.y3f{bottom:963.013333pt;}
.y1{bottom:967.013333pt;}
.y39{bottom:977.573333pt;}
.yd6{bottom:988.613333pt;}
.yd5{bottom:1002.853333pt;}
.yd4{bottom:1026.720000pt;}
.yd3{bottom:1047.840000pt;}
.h11{height:26.560000pt;}
.h13{height:26.720000pt;}
.h1d{height:26.752000pt;}
.h7{height:30.912000pt;}
.h27{height:33.760000pt;}
.hc{height:42.063437pt;}
.h2b{height:44.468750pt;}
.h21{height:45.280000pt;}
.h1c{height:49.280000pt;}
.h18{height:49.440000pt;}
.h8{height:55.402500pt;}
.h14{height:57.375000pt;}
.h12{height:57.758750pt;}
.h5{height:58.563750pt;}
.h20{height:58.736250pt;}
.h3{height:60.288750pt;}
.h1a{height:60.733125pt;}
.h1e{height:60.893125pt;}
.h4{height:61.410000pt;}
.hd{height:62.781250pt;}
.hf{height:62.812500pt;}
.he{height:63.183437pt;}
.h6{height:63.656250pt;}
.h19{height:64.000000pt;}
.ha{height:64.500000pt;}
.hb{height:66.404375pt;}
.h28{height:66.750000pt;}
.h25{height:68.000000pt;}
.h2a{height:68.776250pt;}
.h22{height:73.632000pt;}
.h23{height:74.400000pt;}
.h24{height:74.432000pt;}
.h9{height:75.465000pt;}
.h29{height:76.130000pt;}
.h1b{height:76.640000pt;}
.h17{height:76.800000pt;}
.h15{height:78.185625pt;}
.h1f{height:80.000000pt;}
.h16{height:94.812500pt;}
.h10{height:95.872000pt;}
.h2{height:106.432000pt;}
.h26{height:347.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:14.880000pt;}
.wc{width:33.120000pt;}
.wd{width:34.240000pt;}
.wa{width:37.920000pt;}
.w10{width:39.360000pt;}
.wb{width:39.392000pt;}
.we{width:41.920000pt;}
.wf{width:42.112000pt;}
.w11{width:49.440000pt;}
.w13{width:56.640000pt;}
.w12{width:56.672000pt;}
.w19{width:66.880000pt;}
.w18{width:66.912000pt;}
.w9{width:81.440000pt;}
.w15{width:83.072000pt;}
.w16{width:83.200000pt;}
.w14{width:90.560000pt;}
.w17{width:91.392000pt;}
.w1c{width:96.160000pt;}
.w1e{width:96.320000pt;}
.w1d{width:96.352000pt;}
.w2{width:120.640000pt;}
.w8{width:139.360000pt;}
.w4{width:139.386667pt;}
.w21{width:144.320000pt;}
.w20{width:144.506667pt;}
.w1b{width:350.146667pt;}
.w3{width:359.106667pt;}
.w7{width:359.133333pt;}
.w1a{width:485.213333pt;}
.w1f{width:577.853333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x10{left:9.120000pt;}
.xe{left:10.720000pt;}
.xc{left:12.640000pt;}
.x16{left:14.400000pt;}
.x14{left:15.360000pt;}
.x1c{left:19.034667pt;}
.x29{left:21.280000pt;}
.x19{left:23.360000pt;}
.x26{left:25.280000pt;}
.x2a{left:29.440000pt;}
.x20{left:33.280000pt;}
.x2c{left:36.320000pt;}
.x23{left:37.440000pt;}
.x33{left:42.120000pt;}
.x35{left:43.680000pt;}
.x32{left:47.994667pt;}
.x34{left:50.266667pt;}
.x2{left:60.314667pt;}
.x3a{left:63.994667pt;}
.x2b{left:88.040000pt;}
.x2d{left:92.314667pt;}
.x7{left:95.072000pt;}
.x1{left:96.032000pt;}
.x37{left:116.634667pt;}
.x8{left:120.032000pt;}
.x3f{left:124.511988pt;}
.x45{left:138.746667pt;}
.x28{left:147.400000pt;}
.x42{left:148.506667pt;}
.x40{left:180.346667pt;}
.x1f{left:188.026667pt;}
.x44{left:198.586667pt;}
.x36{left:201.314667pt;}
.xd{left:202.906667pt;}
.x4e{left:205.786667pt;}
.x3{left:216.666667pt;}
.x3b{left:220.514667pt;}
.x3e{left:236.194667pt;}
.x9{left:240.666667pt;}
.x4a{left:246.266667pt;}
.x41{left:247.906667pt;}
.x38{left:264.546667pt;}
.x21{left:271.746667pt;}
.xf{left:281.666667pt;}
.x3c{left:288.834667pt;}
.x53{left:305.506667pt;}
.x2e{left:312.546667pt;}
.x11{left:315.426667pt;}
.x12{left:350.466667pt;}
.x22{left:355.586667pt;}
.x6{left:379.906655pt;}
.x46{left:382.786667pt;}
.x13{left:393.026667pt;}
.x1d{left:395.906655pt;}
.x2f{left:408.866667pt;}
.x1e{left:434.173322pt;}
.x15{left:435.773333pt;}
.x24{left:447.613333pt;}
.x51{left:455.773333pt;}
.x52{left:460.733333pt;}
.x17{left:475.773333pt;}
.x50{left:493.373333pt;}
.x30{left:505.213333pt;}
.x18{left:525.853333pt;}
.x47{left:533.373333pt;}
.x25{left:538.813333pt;}
.x3d{left:544.101333pt;}
.x39{left:553.373333pt;}
.x48{left:561.373333pt;}
.x49{left:569.373333pt;}
.x5{left:575.773333pt;}
.x1a{left:583.173333pt;}
.x43{left:590.213333pt;}
.xa{left:599.813333pt;}
.x31{left:601.573333pt;}
.x27{left:606.373333pt;}
.x4f{left:609.573333pt;}
.x4c{left:624.453333pt;}
.x1b{left:640.613333pt;}
.xb{left:683.013322pt;}
.x4d{left:687.333333pt;}
.x4b{left:697.893333pt;}
}




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