
    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_a1bc4a93a4dff56991d0544b.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_5e64c3f48350c599b0cef931.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a8732f8ead59ab3f6da7eb6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf80095f6ade3ed940fd5ae2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_9ae36c5462e0af046e104dc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_22b08f3769eeb89b5b97d2e2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_053421054f657136e66c0258.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7c00374d6f7ca897460aaddd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_4c06391b28b142bf37a7eb12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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_4ef0585386eaf631b7d47756.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.440000px;}
.v4{vertical-align:5.760000px;}
.v7{vertical-align:14.220000px;}
.v8{vertical-align:17.280000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:37.200000px;}
.ls20{letter-spacing:-0.269400px;}
.ls14{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.289440px;}
.ls4{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.620000px;}
.ls22{letter-spacing:2.880000px;}
.ls1d{letter-spacing:6.480000px;}
.ls7{letter-spacing:8.100000px;}
.ls13{letter-spacing:8.640000px;}
.ls21{letter-spacing:10.080000px;}
.ls10{letter-spacing:10.800000px;}
.ls6{letter-spacing:10.980000px;}
.ls11{letter-spacing:11.520000px;}
.lsf{letter-spacing:13.680000px;}
.ls5{letter-spacing:16.740000px;}
.ls1b{letter-spacing:17.280000px;}
.lsc{letter-spacing:18.000000px;}
.ls1c{letter-spacing:23.760000px;}
.lse{letter-spacing:28.080000px;}
.ls1{letter-spacing:58.500000px;}
.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;}
}
.wse{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws18{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.246600px;}
.ws4{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws16{word-spacing:-14.976000px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.505760px;}
.ws10{word-spacing:-12.349440px;}
.ws0{word-spacing:-12.186000px;}
.ws15{word-spacing:-12.096000px;}
.ws9{word-spacing:-12.060000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
.ws17{word-spacing:196.919040px;}
.ws11{word-spacing:265.348080px;}
.ws12{word-spacing:267.236400px;}
.ws13{word-spacing:275.636400px;}
.ws14{word-spacing:279.476400px;}
._d{margin-left:-4.269600px;}
._c{margin-left:-3.236880px;}
._8{margin-left:-2.164800px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._3{width:2.454480px;}
._14{width:3.967440px;}
._15{width:5.079600px;}
._7{width:6.264960px;}
._6{width:7.709040px;}
._12{width:9.023760px;}
._13{width:10.398960px;}
._4{width:11.523840px;}
._5{width:12.728880px;}
._17{width:13.744800px;}
._19{width:15.115200px;}
._e{width:16.673040px;}
._f{width:17.977920px;}
._1d{width:19.872000px;}
._b{width:21.400800px;}
._a{width:22.708800px;}
._1b{width:24.264000px;}
._1c{width:25.459200px;}
._16{width:26.520000px;}
._11{width:27.615840px;}
._10{width:28.684800px;}
._1a{width:29.880000px;}
._9{width:31.613040px;}
._2d{width:34.056000px;}
._2e{width:35.418480px;}
._2f{width:36.864000px;}
._33{width:39.024000px;}
._32{width:40.032000px;}
._30{width:42.024000px;}
._31{width:43.104000px;}
._1e{width:45.792000px;}
._1f{width:47.664000px;}
._34{width:53.496000px;}
._35{width:54.852960px;}
._2{width:58.543920px;}
._38{width:65.448720px;}
._3c{width:95.328000px;}
._3b{width:96.768000px;}
._39{width:136.890000px;}
._37{width:180.914640px;}
._36{width:223.605360px;}
._3a{width:360.912480px;}
._26{width:422.640000px;}
._27{width:425.640000px;}
._23{width:463.860000px;}
._20{width:520.560000px;}
._28{width:534.960000px;}
._24{width:554.520000px;}
._2a{width:602.640000px;}
._25{width:617.220000px;}
._21{width:653.880000px;}
._2c{width:671.940000px;}
._2b{width:702.840000px;}
._29{width:712.980000px;}
._18{width:846.156000px;}
._22{width:854.100000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:48.384000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.240000px;}
.y51{bottom:3.780000px;}
.y2b{bottom:5.040000px;}
.y9{bottom:5.220000px;}
.y12f{bottom:5.550000px;}
.y44{bottom:12.060000px;}
.y14{bottom:12.240000px;}
.yd{bottom:12.960000px;}
.y7{bottom:17.100000px;}
.y11{bottom:17.325000px;}
.y29{bottom:20.520000px;}
.y43{bottom:29.340000px;}
.y26{bottom:29.520000px;}
.y12c{bottom:32.325000px;}
.y32{bottom:33.660000px;}
.y13{bottom:34.740000px;}
.y28{bottom:37.620000px;}
.y6{bottom:37.800000px;}
.y10{bottom:38.565000px;}
.yc{bottom:42.660000px;}
.y11e{bottom:45.465000px;}
.y42{bottom:46.620000px;}
.y25{bottom:46.800000px;}
.y50{bottom:52.200000px;}
.yf{bottom:56.205000px;}
.y3{bottom:56.700000px;}
.y4f{bottom:57.060000px;}
.y5{bottom:59.760000px;}
.yb{bottom:63.360000px;}
.y41{bottom:63.900000px;}
.y24{bottom:64.080000px;}
.y11f{bottom:70.590000px;}
.y2{bottom:75.600000px;}
.y40{bottom:81.180000px;}
.y23{bottom:81.360000px;}
.y128{bottom:90.645000px;}
.y120{bottom:95.685000px;}
.y22{bottom:98.460000px;}
.y12e{bottom:99.465000px;}
.y30{bottom:103.140000px;}
.yad{bottom:113.580000px;}
.y154{bottom:114.660000px;}
.y3f{bottom:115.740000px;}
.y21{bottom:115.770000px;}
.y82{bottom:119.160000px;}
.y4c{bottom:119.700000px;}
.y2f{bottom:120.450000px;}
.y121{bottom:120.780000px;}
.y3e{bottom:132.840000px;}
.y20{bottom:133.050000px;}
.yac{bottom:134.280000px;}
.y153{bottom:135.396000px;}
.y129{bottom:135.870000px;}
.y4b{bottom:136.980000px;}
.y2e{bottom:137.550000px;}
.y4d{bottom:139.536000px;}
.y81{bottom:139.896000px;}
.y11a{bottom:141.585000px;}
.y122{bottom:145.905000px;}
.y3d{bottom:150.120000px;}
.y1f{bottom:150.330000px;}
.y119{bottom:151.890000px;}
.y4a{bottom:154.260000px;}
.y2d{bottom:154.830000px;}
.yab{bottom:155.010000px;}
.y152{bottom:156.090000px;}
.y118{bottom:156.450000px;}
.y34{bottom:157.170000px;}
.yc4{bottom:158.790000px;}
.y80{bottom:160.590000px;}
.y3c{bottom:167.400000px;}
.y1e{bottom:167.610000px;}
.y117{bottom:170.310000px;}
.y123{bottom:171.000000px;}
.y108{bottom:171.390000px;}
.y49{bottom:171.540000px;}
.y2c{bottom:172.110000px;}
.y114{bottom:174.165000px;}
.yaa{bottom:175.710000px;}
.y12a{bottom:181.050000px;}
.y7f{bottom:181.290000px;}
.y3b{bottom:184.680000px;}
.y1d{bottom:184.710000px;}
.y151{bottom:185.790000px;}
.y113{bottom:186.915000px;}
.yc3{bottom:188.490000px;}
.y48{bottom:188.820000px;}
.y107{bottom:192.090000px;}
.y124{bottom:196.125000px;}
.ya9{bottom:196.410000px;}
.y112{bottom:200.775000px;}
.y3a{bottom:201.960000px;}
.y1c{bottom:201.990000px;}
.y47{bottom:206.100000px;}
.y150{bottom:206.490000px;}
.y10b{bottom:207.000000px;}
.yc2{bottom:209.190000px;}
.y7e{bottom:210.990000px;}
.y11d{bottom:216.180000px;}
.y169{bottom:218.190000px;}
.y39{bottom:219.240000px;}
.y1b{bottom:219.270000px;}
.y10d{bottom:220.575000px;}
.y10a{bottom:220.860000px;}
.y125{bottom:221.220000px;}
.y106{bottom:221.790000px;}
.y11c{bottom:225.720000px;}
.ya8{bottom:226.110000px;}
.y12b{bottom:226.260000px;}
.y14f{bottom:227.190000px;}
.y10f{bottom:227.265000px;}
.yc1{bottom:229.890000px;}
.y7d{bottom:231.690000px;}
.y10c{bottom:234.435000px;}
.y38{bottom:236.385000px;}
.y1a{bottom:236.550000px;}
.y168{bottom:238.890000px;}
.y11b{bottom:239.580000px;}
.y10e{bottom:241.125000px;}
.y111{bottom:245.415000px;}
.y126{bottom:246.345000px;}
.y116{bottom:248.010000px;}
.yc0{bottom:250.590000px;}
.y105{bottom:251.490000px;}
.y7c{bottom:252.390000px;}
.y37{bottom:253.665000px;}
.y19{bottom:253.830000px;}
.ya7{bottom:255.810000px;}
.y14e{bottom:256.890000px;}
.y110{bottom:259.275000px;}
.y115{bottom:261.870000px;}
.y167{bottom:268.590000px;}
.y36{bottom:270.945000px;}
.y18{bottom:271.110000px;}
.ybf{bottom:271.290000px;}
.y127{bottom:271.440000px;}
.y104{bottom:272.190000px;}
.y7b{bottom:273.090000px;}
.y12d{bottom:274.755000px;}
.ya6{bottom:276.510000px;}
.y14d{bottom:277.590000px;}
.y35{bottom:288.225000px;}
.y166{bottom:289.290000px;}
.ybe{bottom:291.990000px;}
.y103{bottom:292.890000px;}
.y130{bottom:293.010000px;}
.y7a{bottom:293.790000px;}
.ya5{bottom:297.210000px;}
.y14c{bottom:298.290000px;}
.ybd{bottom:312.510000px;}
.y79{bottom:314.490000px;}
.ya4{bottom:317.910000px;}
.y165{bottom:318.810000px;}
.y102{bottom:322.590000px;}
.y14b{bottom:327.810000px;}
.y78{bottom:335.190000px;}
.ya3{bottom:338.610000px;}
.y164{bottom:339.510000px;}
.ybc{bottom:342.210000px;}
.y14a{bottom:348.510000px;}
.y101{bottom:352.290000px;}
.y77{bottom:355.890000px;}
.yec{bottom:356.250000px;}
.ya2{bottom:359.310000px;}
.y149{bottom:369.210000px;}
.ybb{bottom:371.910000px;}
.y76{bottom:376.590000px;}
.yeb{bottom:376.950000px;}
.y46{bottom:379.470000px;}
.y100{bottom:381.990000px;}
.y163{bottom:389.955000px;}
.yba{bottom:392.655000px;}
.y75{bottom:397.335000px;}
.yea{bottom:397.695000px;}
.y45{bottom:398.955000px;}
.ya1{bottom:406.515000px;}
.y162{bottom:410.655000px;}
.yff{bottom:411.735000px;}
.yb9{bottom:413.355000px;}
.y74{bottom:418.035000px;}
.ye9{bottom:418.395000px;}
.y148{bottom:419.655000px;}
.yfe{bottom:432.435000px;}
.y73{bottom:438.555000px;}
.ye8{bottom:439.095000px;}
.y147{bottom:440.355000px;}
.ya0{bottom:441.435000px;}
.y33{bottom:442.155000px;}
.yb8{bottom:443.055000px;}
.y72{bottom:459.255000px;}
.ye7{bottom:459.795000px;}
.y161{bottom:461.055000px;}
.yfd{bottom:462.135000px;}
.y146{bottom:470.055000px;}
.y9c{bottom:470.955000px;}
.yb7{bottom:472.755000px;}
.y31{bottom:474.735000px;}
.y71{bottom:479.955000px;}
.ye6{bottom:480.495000px;}
.y160{bottom:481.755000px;}
.y145{bottom:490.755000px;}
.y9b{bottom:491.655000px;}
.yfc{bottom:491.835000px;}
.y70{bottom:500.655000px;}
.ye5{bottom:501.195000px;}
.yb6{bottom:502.455000px;}
.y15f{bottom:511.455000px;}
.y9a{bottom:512.355000px;}
.yfb{bottom:512.535000px;}
.y144{bottom:520.455000px;}
.y6f{bottom:521.355000px;}
.ye4{bottom:521.895000px;}
.yb5{bottom:532.155000px;}
.y99{bottom:533.055000px;}
.yfa{bottom:533.235000px;}
.y17{bottom:534.855000px;}
.y143{bottom:541.155000px;}
.y6e{bottom:542.055000px;}
.ye3{bottom:542.595000px;}
.y98{bottom:553.755000px;}
.yf9{bottom:553.935000px;}
.yb4{bottom:561.855000px;}
.y6d{bottom:562.755000px;}
.ye2{bottom:563.295000px;}
.y142{bottom:570.855000px;}
.y97{bottom:574.455000px;}
.yf8{bottom:574.635000px;}
.y15e{bottom:582.555000px;}
.y6c{bottom:583.455000px;}
.ye1{bottom:583.995000px;}
.yb3{bottom:591.555000px;}
.y96{bottom:595.155000px;}
.yf7{bottom:595.335000px;}
.y15d{bottom:603.255000px;}
.y6b{bottom:604.155000px;}
.ye0{bottom:604.695000px;}
.y141{bottom:612.255000px;}
.y95{bottom:615.855000px;}
.yf6{bottom:616.035000px;}
.yb2{bottom:621.255000px;}
.y9f{bottom:622.695000px;}
.ydf{bottom:625.395000px;}
.y15c{bottom:632.955000px;}
.y6a{bottom:633.855000px;}
.y94{bottom:636.555000px;}
.yf5{bottom:636.735000px;}
.y140{bottom:641.985000px;}
.yde{bottom:646.125000px;}
.yb1{bottom:650.985000px;}
.y15b{bottom:653.685000px;}
.y69{bottom:654.585000px;}
.y93{bottom:657.285000px;}
.yf4{bottom:657.465000px;}
.y13f{bottom:662.685000px;}
.ydd{bottom:666.825000px;}
.y68{bottom:675.285000px;}
.y92{bottom:677.985000px;}
.yf3{bottom:678.165000px;}
.yb0{bottom:680.685000px;}
.y15a{bottom:683.385000px;}
.ydc{bottom:687.525000px;}
.y13e{bottom:692.385000px;}
.y67{bottom:695.985000px;}
.y91{bottom:698.685000px;}
.yf2{bottom:698.865000px;}
.y159{bottom:704.085000px;}
.ydb{bottom:708.225000px;}
.yaf{bottom:710.385000px;}
.y13d{bottom:713.085000px;}
.y66{bottom:716.685000px;}
.y90{bottom:719.385000px;}
.yf1{bottom:719.565000px;}
.y2a{bottom:723.165000px;}
.yda{bottom:728.925000px;}
.y13c{bottom:733.785000px;}
.y65{bottom:737.385000px;}
.y8f{bottom:740.085000px;}
.y27{bottom:744.585000px;}
.yf0{bottom:749.265000px;}
.yd9{bottom:749.625000px;}
.y158{bottom:754.485000px;}
.y64{bottom:758.085000px;}
.y8e{bottom:760.785000px;}
.y13b{bottom:763.485000px;}
.yd8{bottom:770.325000px;}
.y63{bottom:778.785000px;}
.y8d{bottom:781.485000px;}
.y13a{bottom:784.185000px;}
.yd7{bottom:791.025000px;}
.yef{bottom:796.425000px;}
.y62{bottom:799.485000px;}
.y8c{bottom:802.185000px;}
.y15{bottom:802.725000px;}
.y9e{bottom:804.165000px;}
.y139{bottom:804.885000px;}
.yae{bottom:811.185000px;}
.yd6{bottom:811.725000px;}
.yee{bottom:815.685000px;}
.y61{bottom:820.185000px;}
.y157{bottom:825.585000px;}
.y8b{bottom:831.885000px;}
.yd5{bottom:832.425000px;}
.y138{bottom:834.585000px;}
.y12{bottom:836.025000px;}
.yed{bottom:839.985000px;}
.y60{bottom:840.885000px;}
.y109{bottom:841.500000px;}
.yd4{bottom:853.125000px;}
.y137{bottom:855.285000px;}
.y5f{bottom:861.585000px;}
.yd3{bottom:873.825000px;}
.y136{bottom:875.985000px;}
.ye{bottom:879.585000px;}
.y5e{bottom:882.285000px;}
.yd2{bottom:894.570000px;}
.y135{bottom:896.730000px;}
.y5d{bottom:903.030000px;}
.y156{bottom:905.730000px;}
.yd1{bottom:923.190000px;}
.y5c{bottom:923.730000px;}
.y134{bottom:926.430000px;}
.yd0{bottom:938.670000px;}
.y5b{bottom:944.430000px;}
.y133{bottom:947.130000px;}
.ya{bottom:950.190000px;}
.ycf{bottom:951.990000px;}
.y155{bottom:956.130000px;}
.y5a{bottom:965.130000px;}
.yce{bottom:969.270000px;}
.y8a{bottom:974.130000px;}
.y132{bottom:976.830000px;}
.y9d{bottom:985.470000px;}
.y59{bottom:985.830000px;}
.ycd{bottom:987.270000px;}
.y89{bottom:994.830000px;}
.y131{bottom:997.530000px;}
.ycc{bottom:1004.550000px;}
.y58{bottom:1006.530000px;}
.y88{bottom:1015.530000px;}
.ycb{bottom:1021.830000px;}
.y57{bottom:1027.230000px;}
.y87{bottom:1036.230000px;}
.yca{bottom:1039.110000px;}
.y8{bottom:1040.010000px;}
.y56{bottom:1047.930000px;}
.yc9{bottom:1056.390000px;}
.y86{bottom:1056.930000px;}
.y4{bottom:1061.250000px;}
.y55{bottom:1068.630000px;}
.yc8{bottom:1073.490000px;}
.y85{bottom:1077.630000px;}
.y54{bottom:1089.330000px;}
.yc7{bottom:1091.490000px;}
.y84{bottom:1098.330000px;}
.y53{bottom:1110.030000px;}
.y83{bottom:1119.030000px;}
.yc6{bottom:1122.090000px;}
.y52{bottom:1139.730000px;}
.yc5{bottom:1141.170000px;}
.y4e{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h21{height:17.100000px;}
.h20{height:17.280000px;}
.h1a{height:17.316000px;}
.h14{height:19.080000px;}
.h7{height:21.240000px;}
.h10{height:26.100000px;}
.h17{height:26.280000px;}
.h19{height:34.560000px;}
.hf{height:38.158594px;}
.hd{height:39.183750px;}
.he{height:43.560000px;}
.h25{height:47.344922px;}
.h2a{height:47.486250px;}
.h1c{height:48.088125px;}
.h12{height:49.868086px;}
.h13{height:51.660000px;}
.h26{height:51.784922px;}
.h22{height:52.998047px;}
.h2c{height:55.275469px;}
.h2{height:55.291992px;}
.h23{height:56.795625px;}
.h8{height:58.651172px;}
.h2b{height:58.792500px;}
.h16{height:59.400000px;}
.h1e{height:60.082031px;}
.hc{height:60.226875px;}
.h2d{height:61.171875px;}
.h1d{height:61.189805px;}
.h28{height:61.564922px;}
.h29{height:64.766250px;}
.h3{height:65.010937px;}
.h1f{height:66.757500px;}
.hb{height:70.596000px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h27{height:84.544922px;}
.h9{height:89.100000px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h15{height:186.150000px;}
.h1b{height:219.960000px;}
.h11{height:293.970000px;}
.h18{height:311.250000px;}
.h24{height:315.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:64.800000px;}
.wa{width:77.976000px;}
.w11{width:106.920000px;}
.wf{width:121.536000px;}
.w8{width:148.860000px;}
.w10{width:183.270000px;}
.wc{width:186.330000px;}
.wb{width:203.790000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.w6{width:264.990000px;}
.wd{width:290.190000px;}
.w9{width:531.645000px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w12{width:685.620000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:6.300000px;}
.xb{left:8.100000px;}
.x1e{left:15.480000px;}
.x3d{left:29.808000px;}
.x3a{left:36.468000px;}
.xc{left:38.160000px;}
.x9{left:41.040000px;}
.x39{left:43.950000px;}
.x24{left:46.260000px;}
.x23{left:49.680000px;}
.x11{left:51.654000px;}
.x7{left:53.994000px;}
.x20{left:57.420000px;}
.x21{left:78.480000px;}
.x6{left:82.254000px;}
.x25{left:94.320000px;}
.x3{left:106.415987px;}
.x5{left:109.434000px;}
.x26{left:113.220000px;}
.x3b{left:114.840000px;}
.x29{left:119.670000px;}
.x33{left:122.430000px;}
.x32{left:130.170000px;}
.x12{left:131.754000px;}
.x3e{left:142.770000px;}
.x16{left:148.895987px;}
.x2b{left:205.740000px;}
.x34{left:208.515000px;}
.x2a{left:213.840000px;}
.x19{left:234.389987px;}
.x1b{left:245.549987px;}
.x18{left:254.189987px;}
.xf{left:255.270000px;}
.x17{left:266.114987px;}
.x1a{left:277.454987px;}
.x2d{left:292.785000px;}
.xe{left:293.799000px;}
.x4{left:301.359000px;}
.x2c{left:303.585000px;}
.x1c{left:310.215000px;}
.x8{left:315.075000px;}
.xd{left:340.269000px;}
.x1{left:372.494987px;}
.x1f{left:375.015000px;}
.x28{left:377.714987px;}
.x13{left:379.694987px;}
.x2e{left:389.055000px;}
.x15{left:407.595000px;}
.x2{left:460.724987px;}
.x30{left:463.965000px;}
.x36{left:466.710000px;}
.x2f{left:472.065000px;}
.x35{left:474.810000px;}
.x1d{left:496.545000px;}
.xa{left:521.745000px;}
.x31{left:550.050000px;}
.x37{left:552.780000px;}
.x38{left:619.665000px;}
.x3c{left:660.495000px;}
.x22{left:679.830000px;}
.x14{left:786.749987px;}
.x27{left:793.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.946667pt;}
.v4{vertical-align:5.120000pt;}
.v7{vertical-align:12.640000pt;}
.v8{vertical-align:15.360000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:33.066667pt;}
.ls20{letter-spacing:-0.239467pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.257280pt;}
.ls4{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls7{letter-spacing:7.200000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls21{letter-spacing:8.960000pt;}
.ls10{letter-spacing:9.600000pt;}
.ls6{letter-spacing:9.760000pt;}
.ls11{letter-spacing:10.240000pt;}
.lsf{letter-spacing:12.160000pt;}
.ls5{letter-spacing:14.880000pt;}
.ls1b{letter-spacing:15.360000pt;}
.lsc{letter-spacing:16.000000pt;}
.ls1c{letter-spacing:21.120000pt;}
.lse{letter-spacing:24.960000pt;}
.ls1{letter-spacing:52.000000pt;}
.wse{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws18{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws16{word-spacing:-13.312000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws10{word-spacing:-10.977280pt;}
.ws0{word-spacing:-10.832000pt;}
.ws15{word-spacing:-10.752000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
.ws17{word-spacing:175.039147pt;}
.ws11{word-spacing:235.864960pt;}
.ws12{word-spacing:237.543467pt;}
.ws13{word-spacing:245.010133pt;}
.ws14{word-spacing:248.423467pt;}
._d{margin-left:-3.795200pt;}
._c{margin-left:-2.877227pt;}
._8{margin-left:-1.924267pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._3{width:2.181760pt;}
._14{width:3.526613pt;}
._15{width:4.515200pt;}
._7{width:5.568853pt;}
._6{width:6.852480pt;}
._12{width:8.021120pt;}
._13{width:9.243520pt;}
._4{width:10.243413pt;}
._5{width:11.314560pt;}
._17{width:12.217600pt;}
._19{width:13.435733pt;}
._e{width:14.820480pt;}
._f{width:15.980373pt;}
._1d{width:17.664000pt;}
._b{width:19.022933pt;}
._a{width:20.185600pt;}
._1b{width:21.568000pt;}
._1c{width:22.630400pt;}
._16{width:23.573333pt;}
._11{width:24.547413pt;}
._10{width:25.497600pt;}
._1a{width:26.560000pt;}
._9{width:28.100480pt;}
._2d{width:30.272000pt;}
._2e{width:31.483093pt;}
._2f{width:32.768000pt;}
._33{width:34.688000pt;}
._32{width:35.584000pt;}
._30{width:37.354667pt;}
._31{width:38.314667pt;}
._1e{width:40.704000pt;}
._1f{width:42.368000pt;}
._34{width:47.552000pt;}
._35{width:48.758187pt;}
._2{width:52.039040pt;}
._38{width:58.176640pt;}
._3c{width:84.736000pt;}
._3b{width:86.016000pt;}
._39{width:121.680000pt;}
._37{width:160.813013pt;}
._36{width:198.760320pt;}
._3a{width:320.811093pt;}
._26{width:375.680000pt;}
._27{width:378.346667pt;}
._23{width:412.320000pt;}
._20{width:462.720000pt;}
._28{width:475.520000pt;}
._24{width:492.906667pt;}
._2a{width:535.680000pt;}
._25{width:548.640000pt;}
._21{width:581.226667pt;}
._2c{width:597.280000pt;}
._2b{width:624.746667pt;}
._29{width:633.760000pt;}
._18{width:752.138667pt;}
._22{width:759.200000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:43.008000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.880000pt;}
.y51{bottom:3.360000pt;}
.y2b{bottom:4.480000pt;}
.y9{bottom:4.640000pt;}
.y12f{bottom:4.933333pt;}
.y44{bottom:10.720000pt;}
.y14{bottom:10.880000pt;}
.yd{bottom:11.520000pt;}
.y7{bottom:15.200000pt;}
.y11{bottom:15.400000pt;}
.y29{bottom:18.240000pt;}
.y43{bottom:26.080000pt;}
.y26{bottom:26.240000pt;}
.y12c{bottom:28.733333pt;}
.y32{bottom:29.920000pt;}
.y13{bottom:30.880000pt;}
.y28{bottom:33.440000pt;}
.y6{bottom:33.600000pt;}
.y10{bottom:34.280000pt;}
.yc{bottom:37.920000pt;}
.y11e{bottom:40.413333pt;}
.y42{bottom:41.440000pt;}
.y25{bottom:41.600000pt;}
.y50{bottom:46.400000pt;}
.yf{bottom:49.960000pt;}
.y3{bottom:50.400000pt;}
.y4f{bottom:50.720000pt;}
.y5{bottom:53.120000pt;}
.yb{bottom:56.320000pt;}
.y41{bottom:56.800000pt;}
.y24{bottom:56.960000pt;}
.y11f{bottom:62.746667pt;}
.y2{bottom:67.200000pt;}
.y40{bottom:72.160000pt;}
.y23{bottom:72.320000pt;}
.y128{bottom:80.573333pt;}
.y120{bottom:85.053333pt;}
.y22{bottom:87.520000pt;}
.y12e{bottom:88.413333pt;}
.y30{bottom:91.680000pt;}
.yad{bottom:100.960000pt;}
.y154{bottom:101.920000pt;}
.y3f{bottom:102.880000pt;}
.y21{bottom:102.906667pt;}
.y82{bottom:105.920000pt;}
.y4c{bottom:106.400000pt;}
.y2f{bottom:107.066667pt;}
.y121{bottom:107.360000pt;}
.y3e{bottom:118.080000pt;}
.y20{bottom:118.266667pt;}
.yac{bottom:119.360000pt;}
.y153{bottom:120.352000pt;}
.y129{bottom:120.773333pt;}
.y4b{bottom:121.760000pt;}
.y2e{bottom:122.266667pt;}
.y4d{bottom:124.032000pt;}
.y81{bottom:124.352000pt;}
.y11a{bottom:125.853333pt;}
.y122{bottom:129.693333pt;}
.y3d{bottom:133.440000pt;}
.y1f{bottom:133.626667pt;}
.y119{bottom:135.013333pt;}
.y4a{bottom:137.120000pt;}
.y2d{bottom:137.626667pt;}
.yab{bottom:137.786667pt;}
.y152{bottom:138.746667pt;}
.y118{bottom:139.066667pt;}
.y34{bottom:139.706667pt;}
.yc4{bottom:141.146667pt;}
.y80{bottom:142.746667pt;}
.y3c{bottom:148.800000pt;}
.y1e{bottom:148.986667pt;}
.y117{bottom:151.386667pt;}
.y123{bottom:152.000000pt;}
.y108{bottom:152.346667pt;}
.y49{bottom:152.480000pt;}
.y2c{bottom:152.986667pt;}
.y114{bottom:154.813333pt;}
.yaa{bottom:156.186667pt;}
.y12a{bottom:160.933333pt;}
.y7f{bottom:161.146667pt;}
.y3b{bottom:164.160000pt;}
.y1d{bottom:164.186667pt;}
.y151{bottom:165.146667pt;}
.y113{bottom:166.146667pt;}
.yc3{bottom:167.546667pt;}
.y48{bottom:167.840000pt;}
.y107{bottom:170.746667pt;}
.y124{bottom:174.333333pt;}
.ya9{bottom:174.586667pt;}
.y112{bottom:178.466667pt;}
.y3a{bottom:179.520000pt;}
.y1c{bottom:179.546667pt;}
.y47{bottom:183.200000pt;}
.y150{bottom:183.546667pt;}
.y10b{bottom:184.000000pt;}
.yc2{bottom:185.946667pt;}
.y7e{bottom:187.546667pt;}
.y11d{bottom:192.160000pt;}
.y169{bottom:193.946667pt;}
.y39{bottom:194.880000pt;}
.y1b{bottom:194.906667pt;}
.y10d{bottom:196.066667pt;}
.y10a{bottom:196.320000pt;}
.y125{bottom:196.640000pt;}
.y106{bottom:197.146667pt;}
.y11c{bottom:200.640000pt;}
.ya8{bottom:200.986667pt;}
.y12b{bottom:201.120000pt;}
.y14f{bottom:201.946667pt;}
.y10f{bottom:202.013333pt;}
.yc1{bottom:204.346667pt;}
.y7d{bottom:205.946667pt;}
.y10c{bottom:208.386667pt;}
.y38{bottom:210.120000pt;}
.y1a{bottom:210.266667pt;}
.y168{bottom:212.346667pt;}
.y11b{bottom:212.960000pt;}
.y10e{bottom:214.333333pt;}
.y111{bottom:218.146667pt;}
.y126{bottom:218.973333pt;}
.y116{bottom:220.453333pt;}
.yc0{bottom:222.746667pt;}
.y105{bottom:223.546667pt;}
.y7c{bottom:224.346667pt;}
.y37{bottom:225.480000pt;}
.y19{bottom:225.626667pt;}
.ya7{bottom:227.386667pt;}
.y14e{bottom:228.346667pt;}
.y110{bottom:230.466667pt;}
.y115{bottom:232.773333pt;}
.y167{bottom:238.746667pt;}
.y36{bottom:240.840000pt;}
.y18{bottom:240.986667pt;}
.ybf{bottom:241.146667pt;}
.y127{bottom:241.280000pt;}
.y104{bottom:241.946667pt;}
.y7b{bottom:242.746667pt;}
.y12d{bottom:244.226667pt;}
.ya6{bottom:245.786667pt;}
.y14d{bottom:246.746667pt;}
.y35{bottom:256.200000pt;}
.y166{bottom:257.146667pt;}
.ybe{bottom:259.546667pt;}
.y103{bottom:260.346667pt;}
.y130{bottom:260.453333pt;}
.y7a{bottom:261.146667pt;}
.ya5{bottom:264.186667pt;}
.y14c{bottom:265.146667pt;}
.ybd{bottom:277.786667pt;}
.y79{bottom:279.546667pt;}
.ya4{bottom:282.586667pt;}
.y165{bottom:283.386667pt;}
.y102{bottom:286.746667pt;}
.y14b{bottom:291.386667pt;}
.y78{bottom:297.946667pt;}
.ya3{bottom:300.986667pt;}
.y164{bottom:301.786667pt;}
.ybc{bottom:304.186667pt;}
.y14a{bottom:309.786667pt;}
.y101{bottom:313.146667pt;}
.y77{bottom:316.346667pt;}
.yec{bottom:316.666667pt;}
.ya2{bottom:319.386667pt;}
.y149{bottom:328.186667pt;}
.ybb{bottom:330.586667pt;}
.y76{bottom:334.746667pt;}
.yeb{bottom:335.066667pt;}
.y46{bottom:337.306667pt;}
.y100{bottom:339.546667pt;}
.y163{bottom:346.626667pt;}
.yba{bottom:349.026667pt;}
.y75{bottom:353.186667pt;}
.yea{bottom:353.506667pt;}
.y45{bottom:354.626667pt;}
.ya1{bottom:361.346667pt;}
.y162{bottom:365.026667pt;}
.yff{bottom:365.986667pt;}
.yb9{bottom:367.426667pt;}
.y74{bottom:371.586667pt;}
.ye9{bottom:371.906667pt;}
.y148{bottom:373.026667pt;}
.yfe{bottom:384.386667pt;}
.y73{bottom:389.826667pt;}
.ye8{bottom:390.306667pt;}
.y147{bottom:391.426667pt;}
.ya0{bottom:392.386667pt;}
.y33{bottom:393.026667pt;}
.yb8{bottom:393.826667pt;}
.y72{bottom:408.226667pt;}
.ye7{bottom:408.706667pt;}
.y161{bottom:409.826667pt;}
.yfd{bottom:410.786667pt;}
.y146{bottom:417.826667pt;}
.y9c{bottom:418.626667pt;}
.yb7{bottom:420.226667pt;}
.y31{bottom:421.986667pt;}
.y71{bottom:426.626667pt;}
.ye6{bottom:427.106667pt;}
.y160{bottom:428.226667pt;}
.y145{bottom:436.226667pt;}
.y9b{bottom:437.026667pt;}
.yfc{bottom:437.186667pt;}
.y70{bottom:445.026667pt;}
.ye5{bottom:445.506667pt;}
.yb6{bottom:446.626667pt;}
.y15f{bottom:454.626667pt;}
.y9a{bottom:455.426667pt;}
.yfb{bottom:455.586667pt;}
.y144{bottom:462.626667pt;}
.y6f{bottom:463.426667pt;}
.ye4{bottom:463.906667pt;}
.yb5{bottom:473.026667pt;}
.y99{bottom:473.826667pt;}
.yfa{bottom:473.986667pt;}
.y17{bottom:475.426667pt;}
.y143{bottom:481.026667pt;}
.y6e{bottom:481.826667pt;}
.ye3{bottom:482.306667pt;}
.y98{bottom:492.226667pt;}
.yf9{bottom:492.386667pt;}
.yb4{bottom:499.426667pt;}
.y6d{bottom:500.226667pt;}
.ye2{bottom:500.706667pt;}
.y142{bottom:507.426667pt;}
.y97{bottom:510.626667pt;}
.yf8{bottom:510.786667pt;}
.y15e{bottom:517.826667pt;}
.y6c{bottom:518.626667pt;}
.ye1{bottom:519.106667pt;}
.yb3{bottom:525.826667pt;}
.y96{bottom:529.026667pt;}
.yf7{bottom:529.186667pt;}
.y15d{bottom:536.226667pt;}
.y6b{bottom:537.026667pt;}
.ye0{bottom:537.506667pt;}
.y141{bottom:544.226667pt;}
.y95{bottom:547.426667pt;}
.yf6{bottom:547.586667pt;}
.yb2{bottom:552.226667pt;}
.y9f{bottom:553.506667pt;}
.ydf{bottom:555.906667pt;}
.y15c{bottom:562.626667pt;}
.y6a{bottom:563.426667pt;}
.y94{bottom:565.826667pt;}
.yf5{bottom:565.986667pt;}
.y140{bottom:570.653333pt;}
.yde{bottom:574.333333pt;}
.yb1{bottom:578.653333pt;}
.y15b{bottom:581.053333pt;}
.y69{bottom:581.853333pt;}
.y93{bottom:584.253333pt;}
.yf4{bottom:584.413333pt;}
.y13f{bottom:589.053333pt;}
.ydd{bottom:592.733333pt;}
.y68{bottom:600.253333pt;}
.y92{bottom:602.653333pt;}
.yf3{bottom:602.813333pt;}
.yb0{bottom:605.053333pt;}
.y15a{bottom:607.453333pt;}
.ydc{bottom:611.133333pt;}
.y13e{bottom:615.453333pt;}
.y67{bottom:618.653333pt;}
.y91{bottom:621.053333pt;}
.yf2{bottom:621.213333pt;}
.y159{bottom:625.853333pt;}
.ydb{bottom:629.533333pt;}
.yaf{bottom:631.453333pt;}
.y13d{bottom:633.853333pt;}
.y66{bottom:637.053333pt;}
.y90{bottom:639.453333pt;}
.yf1{bottom:639.613333pt;}
.y2a{bottom:642.813333pt;}
.yda{bottom:647.933333pt;}
.y13c{bottom:652.253333pt;}
.y65{bottom:655.453333pt;}
.y8f{bottom:657.853333pt;}
.y27{bottom:661.853333pt;}
.yf0{bottom:666.013333pt;}
.yd9{bottom:666.333333pt;}
.y158{bottom:670.653333pt;}
.y64{bottom:673.853333pt;}
.y8e{bottom:676.253333pt;}
.y13b{bottom:678.653333pt;}
.yd8{bottom:684.733333pt;}
.y63{bottom:692.253333pt;}
.y8d{bottom:694.653333pt;}
.y13a{bottom:697.053333pt;}
.yd7{bottom:703.133333pt;}
.yef{bottom:707.933333pt;}
.y62{bottom:710.653333pt;}
.y8c{bottom:713.053333pt;}
.y15{bottom:713.533333pt;}
.y9e{bottom:714.813333pt;}
.y139{bottom:715.453333pt;}
.yae{bottom:721.053333pt;}
.yd6{bottom:721.533333pt;}
.yee{bottom:725.053333pt;}
.y61{bottom:729.053333pt;}
.y157{bottom:733.853333pt;}
.y8b{bottom:739.453333pt;}
.yd5{bottom:739.933333pt;}
.y138{bottom:741.853333pt;}
.y12{bottom:743.133333pt;}
.yed{bottom:746.653333pt;}
.y60{bottom:747.453333pt;}
.y109{bottom:748.000000pt;}
.yd4{bottom:758.333333pt;}
.y137{bottom:760.253333pt;}
.y5f{bottom:765.853333pt;}
.yd3{bottom:776.733333pt;}
.y136{bottom:778.653333pt;}
.ye{bottom:781.853333pt;}
.y5e{bottom:784.253333pt;}
.yd2{bottom:795.173333pt;}
.y135{bottom:797.093333pt;}
.y5d{bottom:802.693333pt;}
.y156{bottom:805.093333pt;}
.yd1{bottom:820.613333pt;}
.y5c{bottom:821.093333pt;}
.y134{bottom:823.493333pt;}
.yd0{bottom:834.373333pt;}
.y5b{bottom:839.493333pt;}
.y133{bottom:841.893333pt;}
.ya{bottom:844.613333pt;}
.ycf{bottom:846.213333pt;}
.y155{bottom:849.893333pt;}
.y5a{bottom:857.893333pt;}
.yce{bottom:861.573333pt;}
.y8a{bottom:865.893333pt;}
.y132{bottom:868.293333pt;}
.y9d{bottom:875.973333pt;}
.y59{bottom:876.293333pt;}
.ycd{bottom:877.573333pt;}
.y89{bottom:884.293333pt;}
.y131{bottom:886.693333pt;}
.ycc{bottom:892.933333pt;}
.y58{bottom:894.693333pt;}
.y88{bottom:902.693333pt;}
.ycb{bottom:908.293333pt;}
.y57{bottom:913.093333pt;}
.y87{bottom:921.093333pt;}
.yca{bottom:923.653333pt;}
.y8{bottom:924.453333pt;}
.y56{bottom:931.493333pt;}
.yc9{bottom:939.013333pt;}
.y86{bottom:939.493333pt;}
.y4{bottom:943.333333pt;}
.y55{bottom:949.893333pt;}
.yc8{bottom:954.213333pt;}
.y85{bottom:957.893333pt;}
.y54{bottom:968.293333pt;}
.yc7{bottom:970.213333pt;}
.y84{bottom:976.293333pt;}
.y53{bottom:986.693333pt;}
.y83{bottom:994.693333pt;}
.yc6{bottom:997.413333pt;}
.y52{bottom:1013.093333pt;}
.yc5{bottom:1014.373333pt;}
.y4e{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h21{height:15.200000pt;}
.h20{height:15.360000pt;}
.h1a{height:15.392000pt;}
.h14{height:16.960000pt;}
.h7{height:18.880000pt;}
.h10{height:23.200000pt;}
.h17{height:23.360000pt;}
.h19{height:30.720000pt;}
.hf{height:33.918750pt;}
.hd{height:34.830000pt;}
.he{height:38.720000pt;}
.h25{height:42.084375pt;}
.h2a{height:42.210000pt;}
.h1c{height:42.745000pt;}
.h12{height:44.327188pt;}
.h13{height:45.920000pt;}
.h26{height:46.031042pt;}
.h22{height:47.109375pt;}
.h2c{height:49.133750pt;}
.h2{height:49.148438pt;}
.h23{height:50.485000pt;}
.h8{height:52.134375pt;}
.h2b{height:52.260000pt;}
.h16{height:52.800000pt;}
.h1e{height:53.406250pt;}
.hc{height:53.535000pt;}
.h2d{height:54.375000pt;}
.h1d{height:54.390938pt;}
.h28{height:54.724375pt;}
.h29{height:57.570000pt;}
.h3{height:57.787500pt;}
.h1f{height:59.340000pt;}
.hb{height:62.752000pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h27{height:75.151042pt;}
.h9{height:79.200000pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h15{height:165.466667pt;}
.h1b{height:195.520000pt;}
.h11{height:261.306667pt;}
.h18{height:276.666667pt;}
.h24{height:280.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:57.600000pt;}
.wa{width:69.312000pt;}
.w11{width:95.040000pt;}
.wf{width:108.032000pt;}
.w8{width:132.320000pt;}
.w10{width:162.906667pt;}
.wc{width:165.626667pt;}
.wb{width:181.146667pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.w6{width:235.546667pt;}
.wd{width:257.946667pt;}
.w9{width:472.573333pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w12{width:609.440000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.600000pt;}
.xb{left:7.200000pt;}
.x1e{left:13.760000pt;}
.x3d{left:26.496000pt;}
.x3a{left:32.416000pt;}
.xc{left:33.920000pt;}
.x9{left:36.480000pt;}
.x39{left:39.066667pt;}
.x24{left:41.120000pt;}
.x23{left:44.160000pt;}
.x11{left:45.914667pt;}
.x7{left:47.994667pt;}
.x20{left:51.040000pt;}
.x21{left:69.760000pt;}
.x6{left:73.114667pt;}
.x25{left:83.840000pt;}
.x3{left:94.591988pt;}
.x5{left:97.274667pt;}
.x26{left:100.640000pt;}
.x3b{left:102.080000pt;}
.x29{left:106.373333pt;}
.x33{left:108.826667pt;}
.x32{left:115.706667pt;}
.x12{left:117.114667pt;}
.x3e{left:126.906667pt;}
.x16{left:132.351988pt;}
.x2b{left:182.880000pt;}
.x34{left:185.346667pt;}
.x2a{left:190.080000pt;}
.x19{left:208.346655pt;}
.x1b{left:218.266655pt;}
.x18{left:225.946655pt;}
.xf{left:226.906667pt;}
.x17{left:236.546655pt;}
.x1a{left:246.626655pt;}
.x2d{left:260.253333pt;}
.xe{left:261.154667pt;}
.x4{left:267.874667pt;}
.x2c{left:269.853333pt;}
.x1c{left:275.746667pt;}
.x8{left:280.066667pt;}
.xd{left:302.461333pt;}
.x1{left:331.106655pt;}
.x1f{left:333.346667pt;}
.x28{left:335.746655pt;}
.x13{left:337.506655pt;}
.x2e{left:345.826667pt;}
.x15{left:362.306667pt;}
.x2{left:409.533322pt;}
.x30{left:412.413333pt;}
.x36{left:414.853333pt;}
.x2f{left:419.613333pt;}
.x35{left:422.053333pt;}
.x1d{left:441.373333pt;}
.xa{left:463.773333pt;}
.x31{left:488.933333pt;}
.x37{left:491.360000pt;}
.x38{left:550.813333pt;}
.x3c{left:587.106667pt;}
.x22{left:604.293333pt;}
.x14{left:699.333322pt;}
.x27{left:705.253322pt;}
}




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