
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_07adf673c508c3a7dc358578.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_2331c4d61de7061dea28bc65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_7db438dd006e54a71eca0e67.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_efd9d7d469ae609138fd87e2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_af59584081f852be40503eb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.813477;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_f6a3a92105444d42a5448fe3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_61eacd88996e90babbcaea72.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_98f1b3a3ed2a31a6c786536a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_11681e3d09db65570a8ced79.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_594470cc5cce2a544aaead06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_20316345731501ba68f0457f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.fff{font-family:fff;line-height:0.850586;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-0.924000px;}
.ls1f{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.208200px;}
.lse{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.153360px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.540000px;}
.ls16{letter-spacing:2.340000px;}
.ls20{letter-spacing:4.500000px;}
.ls3{letter-spacing:10.260000px;}
.ls1d{letter-spacing:16.506720px;}
.ls17{letter-spacing:19.620000px;}
.ls15{letter-spacing:21.060000px;}
.ls14{letter-spacing:29.700000px;}
.ls2{letter-spacing:35.436000px;}
.ls1b{letter-spacing:46.026720px;}
.ls18{letter-spacing:49.140000px;}
.ls11{letter-spacing:64.026720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws2{word-spacing:-15.226440px;}
.wsd{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wse{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.506440px;}
.wsf{word-spacing:-14.166000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._11{margin-left:-4.219440px;}
._1{margin-left:-3.179520px;}
._10{margin-left:-2.175840px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._4{width:2.364720px;}
._3{width:4.130880px;}
._9{width:5.202960px;}
._b{width:7.120800px;}
._17{width:8.823600px;}
._8{width:10.146240px;}
._a{width:11.163600px;}
._12{width:12.617280px;}
._24{width:13.813920px;}
._f{width:16.562880px;}
._1f{width:18.300960px;}
._16{width:19.713600px;}
._e{width:20.985120px;}
._18{width:22.614480px;}
._49{width:23.748480px;}
._d{width:24.750000px;}
._c{width:25.816320px;}
._1a{width:27.310320px;}
._19{width:28.923840px;}
._29{width:30.615840px;}
._21{width:32.160240px;}
._1d{width:33.624000px;}
._5{width:34.909920px;}
._6{width:36.283680px;}
._1e{width:37.538640px;}
._20{width:39.262320px;}
._26{width:40.935600px;}
._15{width:42.967440px;}
._14{width:43.983360px;}
._25{width:45.018000px;}
._2c{width:46.493280px;}
._2b{width:47.697840px;}
._2e{width:48.823920px;}
._1c{width:49.899600px;}
._3a{width:52.588800px;}
._48{width:53.802720px;}
._4c{width:54.928800px;}
._3e{width:57.369600px;}
._30{width:58.737600px;}
._2f{width:59.895360px;}
._7{width:62.996400px;}
._3d{width:66.342960px;}
._23{width:67.836960px;}
._27{width:69.919200px;}
._2a{width:71.891280px;}
._43{width:73.504800px;}
._4e{width:75.810000px;}
._22{width:77.090400px;}
._3b{width:78.763680px;}
._2d{width:81.522000px;}
._13{width:83.255040px;}
._1b{width:84.440880px;}
._4d{width:90.622560px;}
._35{width:91.791360px;}
._3c{width:93.474000px;}
._39{width:95.317200px;}
._31{width:97.537680px;}
._36{width:111.691440px;}
._41{width:116.532000px;}
._42{width:117.667440px;}
._45{width:130.813920px;}
._44{width:132.676560px;}
._34{width:134.400240px;}
._33{width:147.178800px;}
._28{width:150.260160px;}
._38{width:151.416720px;}
._37{width:162.308160px;}
._32{width:167.029200px;}
._4b{width:170.801760px;}
._4a{width:172.347840px;}
._46{width:202.825440px;}
._3f{width:232.884720px;}
._47{width:290.442960px;}
._40{width:301.788000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y61{bottom:5.940000px;}
.y7{bottom:14.760000px;}
.y74{bottom:15.660000px;}
.y29{bottom:15.840000px;}
.y22{bottom:25.560000px;}
.y72{bottom:25.605000px;}
.y80{bottom:25.740000px;}
.y120{bottom:25.770000px;}
.y69{bottom:35.460000px;}
.y6d{bottom:35.505000px;}
.y7f{bottom:35.640000px;}
.y28{bottom:35.670000px;}
.y6{bottom:43.920000px;}
.y76{bottom:45.360000px;}
.y21{bottom:45.390000px;}
.y71{bottom:45.405000px;}
.y64{bottom:45.540000px;}
.y11f{bottom:45.570000px;}
.yf1{bottom:45.585000px;}
.yd{bottom:55.260000px;}
.y132{bottom:55.290000px;}
.y6c{bottom:55.305000px;}
.y68{bottom:55.440000px;}
.y27{bottom:55.470000px;}
.y20{bottom:62.670000px;}
.y5{bottom:64.080000px;}
.y75{bottom:65.160000px;}
.y70{bottom:65.205000px;}
.y63{bottom:65.340000px;}
.yed{bottom:65.370000px;}
.yb{bottom:73.800000px;}
.y67{bottom:75.240000px;}
.y11d{bottom:75.270000px;}
.y6b{bottom:75.285000px;}
.y26{bottom:75.450000px;}
.ya{bottom:78.300000px;}
.y147{bottom:81.360000px;}
.y1f{bottom:82.470000px;}
.y43{bottom:83.340000px;}
.y79{bottom:84.960000px;}
.y66{bottom:85.140000px;}
.yec{bottom:85.170000px;}
.y6f{bottom:85.185000px;}
.y4{bottom:86.400000px;}
.ybb{bottom:86.940000px;}
.yea{bottom:87.300000px;}
.y9f{bottom:90.000000px;}
.y131{bottom:95.070000px;}
.y127{bottom:95.085000px;}
.y25{bottom:95.250000px;}
.y128{bottom:99.540000px;}
.y1e{bottom:99.750000px;}
.y146{bottom:101.160000px;}
.y115{bottom:101.520000px;}
.y42{bottom:103.320000px;}
.y65{bottom:104.940000px;}
.yeb{bottom:104.970000px;}
.y6e{bottom:104.985000px;}
.y11e{bottom:105.150000px;}
.yba{bottom:106.920000px;}
.y9{bottom:107.490000px;}
.y9e{bottom:109.800000px;}
.y130{bottom:114.870000px;}
.y126{bottom:114.885000px;}
.y24{bottom:115.050000px;}
.y14c{bottom:115.920000px;}
.y1d{bottom:119.010000px;}
.y145{bottom:120.960000px;}
.y114{bottom:121.500000px;}
.y3{bottom:122.610000px;}
.y41{bottom:123.120000px;}
.y118{bottom:124.740000px;}
.y12b{bottom:124.770000px;}
.y124{bottom:124.965000px;}
.yb9{bottom:126.720000px;}
.y9d{bottom:129.600000px;}
.y12f{bottom:134.670000px;}
.y23{bottom:134.850000px;}
.y125{bottom:134.865000px;}
.y14b{bottom:135.720000px;}
.y8{bottom:136.650000px;}
.y1c{bottom:137.370000px;}
.y144{bottom:140.760000px;}
.y113{bottom:141.300000px;}
.y40{bottom:142.920000px;}
.y12a{bottom:144.570000px;}
.y11b{bottom:144.585000px;}
.y123{bottom:144.765000px;}
.yb8{bottom:146.520000px;}
.y9c{bottom:149.580000px;}
.y12e{bottom:154.470000px;}
.y1b{bottom:154.650000px;}
.y14a{bottom:155.550000px;}
.y143{bottom:160.770000px;}
.y112{bottom:161.130000px;}
.y3f{bottom:162.750000px;}
.y129{bottom:164.550000px;}
.y11a{bottom:164.565000px;}
.y78{bottom:165.090000px;}
.yb7{bottom:166.350000px;}
.y9b{bottom:169.410000px;}
.y12d{bottom:174.450000px;}
.y1a{bottom:174.630000px;}
.y149{bottom:175.350000px;}
.y142{bottom:178.050000px;}
.y111{bottom:180.930000px;}
.y3e{bottom:182.550000px;}
.y12c{bottom:184.350000px;}
.y119{bottom:184.365000px;}
.yb6{bottom:186.150000px;}
.y9a{bottom:189.210000px;}
.y19{bottom:194.430000px;}
.y148{bottom:195.150000px;}
.y141{bottom:195.330000px;}
.y110{bottom:200.730000px;}
.y3d{bottom:202.530000px;}
.y133{bottom:204.150000px;}
.yb5{bottom:206.130000px;}
.ye9{bottom:207.030000px;}
.y99{bottom:209.010000px;}
.y18{bottom:214.230000px;}
.y140{bottom:215.130000px;}
.y10f{bottom:220.710000px;}
.y3c{bottom:222.330000px;}
.yb4{bottom:225.930000px;}
.y98{bottom:228.810000px;}
.ye8{bottom:233.490000px;}
.y13f{bottom:234.930000px;}
.y10e{bottom:240.510000px;}
.y3b{bottom:242.130000px;}
.y77{bottom:245.190000px;}
.yb3{bottom:245.730000px;}
.y97{bottom:248.790000px;}
.ye7{bottom:253.290000px;}
.y13e{bottom:254.730000px;}
.y10d{bottom:260.310000px;}
.y3a{bottom:261.930000px;}
.yb2{bottom:265.530000px;}
.y96{bottom:268.590000px;}
.ye6{bottom:273.090000px;}
.y13d{bottom:274.530000px;}
.y10c{bottom:280.110000px;}
.y39{bottom:281.730000px;}
.yb1{bottom:285.330000px;}
.y95{bottom:288.390000px;}
.ye5{bottom:293.070000px;}
.y13c{bottom:294.330000px;}
.y10b{bottom:299.910000px;}
.y38{bottom:301.710000px;}
.yb0{bottom:305.310000px;}
.y73{bottom:305.490000px;}
.y94{bottom:308.190000px;}
.ye4{bottom:312.870000px;}
.y13b{bottom:314.310000px;}
.y10a{bottom:319.890000px;}
.y37{bottom:321.510000px;}
.y122{bottom:322.950000px;}
.yaf{bottom:325.110000px;}
.y93{bottom:327.990000px;}
.ye3{bottom:332.670000px;}
.y13a{bottom:334.110000px;}
.y109{bottom:339.690000px;}
.y36{bottom:341.310000px;}
.yae{bottom:344.910000px;}
.y92{bottom:347.970000px;}
.ye2{bottom:352.470000px;}
.y139{bottom:353.910000px;}
.y108{bottom:359.490000px;}
.y35{bottom:361.110000px;}
.yad{bottom:364.710000px;}
.y91{bottom:367.770000px;}
.ye1{bottom:372.270000px;}
.y138{bottom:373.710000px;}
.y107{bottom:379.290000px;}
.y34{bottom:380.910000px;}
.yac{bottom:384.510000px;}
.y6a{bottom:385.590000px;}
.y90{bottom:387.570000px;}
.ye0{bottom:392.250000px;}
.y137{bottom:393.510000px;}
.y106{bottom:399.090000px;}
.y33{bottom:400.935000px;}
.yab{bottom:404.535000px;}
.y8f{bottom:407.415000px;}
.ydf{bottom:412.095000px;}
.y136{bottom:413.535000px;}
.y105{bottom:419.115000px;}
.y32{bottom:420.735000px;}
.yaa{bottom:424.335000px;}
.y8e{bottom:427.215000px;}
.yde{bottom:431.895000px;}
.y135{bottom:433.335000px;}
.y104{bottom:438.915000px;}
.y31{bottom:440.535000px;}
.ya9{bottom:444.135000px;}
.y8d{bottom:447.195000px;}
.ydd{bottom:451.695000px;}
.y134{bottom:453.135000px;}
.y103{bottom:458.715000px;}
.y30{bottom:460.335000px;}
.y8c{bottom:466.995000px;}
.ydc{bottom:471.495000px;}
.ya8{bottom:472.935000px;}
.y102{bottom:478.515000px;}
.y2f{bottom:480.135000px;}
.y8b{bottom:486.795000px;}
.ydb{bottom:491.475000px;}
.ya7{bottom:492.735000px;}
.y101{bottom:498.315000px;}
.y2e{bottom:499.935000px;}
.y62{bottom:505.335000px;}
.y8a{bottom:506.595000px;}
.y121{bottom:506.775000px;}
.yda{bottom:511.275000px;}
.ya6{bottom:512.715000px;}
.y100{bottom:518.295000px;}
.y2d{bottom:519.915000px;}
.y89{bottom:526.395000px;}
.yd9{bottom:532.155000px;}
.ya5{bottom:532.515000px;}
.yff{bottom:538.095000px;}
.y2c{bottom:539.715000px;}
.y88{bottom:546.375000px;}
.yd8{bottom:551.955000px;}
.ya4{bottom:552.315000px;}
.yfe{bottom:557.895000px;}
.y2b{bottom:559.515000px;}
.y87{bottom:566.175000px;}
.yd7{bottom:571.755000px;}
.ya3{bottom:572.115000px;}
.yfd{bottom:577.695000px;}
.y2a{bottom:579.315000px;}
.y86{bottom:585.975000px;}
.yd6{bottom:591.735000px;}
.ya2{bottom:591.915000px;}
.yfc{bottom:597.495000px;}
.y85{bottom:605.775000px;}
.ya1{bottom:611.895000px;}
.yd5{bottom:612.615000px;}
.y17{bottom:614.055000px;}
.yfb{bottom:617.475000px;}
.y60{bottom:625.035000px;}
.y84{bottom:625.575000px;}
.y11c{bottom:630.975000px;}
.ya0{bottom:631.695000px;}
.yd4{bottom:632.415000px;}
.yfa{bottom:637.275000px;}
.y83{bottom:645.555000px;}
.y5f{bottom:651.525000px;}
.yd3{bottom:652.245000px;}
.yf9{bottom:657.105000px;}
.y82{bottom:660.345000px;}
.y5e{bottom:671.325000px;}
.yd2{bottom:672.045000px;}
.yf8{bottom:676.905000px;}
.y5d{bottom:691.125000px;}
.yd1{bottom:692.025000px;}
.yf7{bottom:696.705000px;}
.y5c{bottom:711.105000px;}
.yd0{bottom:712.905000px;}
.y81{bottom:720.645000px;}
.yf6{bottom:725.685000px;}
.y5b{bottom:730.905000px;}
.ycf{bottom:732.705000px;}
.yf5{bottom:745.485000px;}
.y5a{bottom:750.705000px;}
.y117{bottom:755.385000px;}
.yce{bottom:761.505000px;}
.yf4{bottom:765.285000px;}
.y59{bottom:770.505000px;}
.ycd{bottom:781.305000px;}
.yf3{bottom:785.085000px;}
.y58{bottom:790.305000px;}
.yf2{bottom:799.845000px;}
.y7e{bottom:800.565000px;}
.ycc{bottom:801.285000px;}
.y57{bottom:810.285000px;}
.ycb{bottom:821.085000px;}
.y56{bottom:830.085000px;}
.yca{bottom:840.885000px;}
.y15{bottom:843.045000px;}
.y55{bottom:849.885000px;}
.yf0{bottom:860.145000px;}
.yc9{bottom:860.685000px;}
.y14{bottom:868.605000px;}
.y54{bottom:869.685000px;}
.yc8{bottom:880.485000px;}
.y53{bottom:889.485000px;}
.y13{bottom:893.805000px;}
.yc7{bottom:900.510000px;}
.y7d{bottom:900.690000px;}
.y52{bottom:909.510000px;}
.y12{bottom:913.650000px;}
.yc6{bottom:920.310000px;}
.yef{bottom:920.490000px;}
.y11{bottom:928.770000px;}
.y51{bottom:929.310000px;}
.yc5{bottom:940.110000px;}
.y50{bottom:949.110000px;}
.y10{bottom:950.010000px;}
.y116{bottom:959.010000px;}
.yc4{bottom:959.910000px;}
.y4f{bottom:968.910000px;}
.yf{bottom:973.590000px;}
.yc3{bottom:979.710000px;}
.y4e{bottom:988.710000px;}
.yc2{bottom:999.510000px;}
.y7c{bottom:1000.590000px;}
.ye{bottom:1005.270000px;}
.y4d{bottom:1008.510000px;}
.yc1{bottom:1019.490000px;}
.y4c{bottom:1028.490000px;}
.yc{bottom:1030.830000px;}
.yc0{bottom:1039.290000px;}
.y1{bottom:1045.590000px;}
.y4b{bottom:1048.290000px;}
.ybf{bottom:1059.090000px;}
.yee{bottom:1060.890000px;}
.y4a{bottom:1068.090000px;}
.ybe{bottom:1078.890000px;}
.y49{bottom:1087.890000px;}
.ybd{bottom:1098.690000px;}
.y7b{bottom:1100.490000px;}
.y48{bottom:1107.690000px;}
.ybc{bottom:1118.670000px;}
.y47{bottom:1127.670000px;}
.y46{bottom:1147.500000px;}
.y7a{bottom:1160.820000px;}
.y45{bottom:1167.300000px;}
.y44{bottom:1193.580000px;}
.h3{height:2.864531px;}
.hb{height:19.800000px;}
.h10{height:19.980000px;}
.ha{height:27.147656px;}
.he{height:38.100586px;}
.h20{height:40.472227px;}
.h6{height:41.726953px;}
.hc{height:42.164648px;}
.h21{height:43.506914px;}
.h7{height:46.251562px;}
.hf{height:49.255313px;}
.h9{height:53.224453px;}
.h1a{height:59.400000px;}
.h14{height:59.580000px;}
.h17{height:59.616000px;}
.h1b{height:60.679688px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h13{height:79.200000px;}
.h15{height:79.380000px;}
.h16{height:79.416000px;}
.h18{height:99.180000px;}
.h19{height:99.216000px;}
.h4{height:105.060586px;}
.h11{height:118.980000px;}
.h12{height:119.016000px;}
.h1d{height:119.196000px;}
.h2{height:161.310000px;}
.h1e{height:178.590000px;}
.h1c{height:198.390000px;}
.h1f{height:218.190000px;}
.hd{height:228.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:99.756000px;}
.wf{width:123.156000px;}
.w9{width:128.376000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w11{width:166.890000px;}
.w10{width:167.070000px;}
.w7{width:287.895000px;}
.wd{width:309.495000px;}
.w13{width:313.455000px;}
.w12{width:314.175000px;}
.wb{width:317.235000px;}
.wa{width:336.675000px;}
.we{width:372.675000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.080000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xf{left:80.999987px;}
.x10{left:108.035987px;}
.x8{left:110.205000px;}
.x7{left:117.225000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.x11{left:155.370000px;}
.x14{left:182.550000px;}
.xd{left:183.810000px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xc{left:283.574987px;}
.xb{left:343.875000px;}
.x15{left:352.695000px;}
.x12{left:465.765000px;}
.xe{left:521.205000px;}
.x16{left:522.645000px;}
.x9{left:681.270000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-0.821333pt;}
.ls1f{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.185067pt;}
.lse{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.136320pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls20{letter-spacing:4.000000pt;}
.ls3{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls17{letter-spacing:17.440000pt;}
.ls15{letter-spacing:18.720000pt;}
.ls14{letter-spacing:26.400000pt;}
.ls2{letter-spacing:31.498667pt;}
.ls1b{letter-spacing:40.912640pt;}
.ls18{letter-spacing:43.680000pt;}
.ls11{letter-spacing:56.912640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.592000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._11{margin-left:-3.750613pt;}
._1{margin-left:-2.826240pt;}
._10{margin-left:-1.934080pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._4{width:2.101973pt;}
._3{width:3.671893pt;}
._9{width:4.624853pt;}
._b{width:6.329600pt;}
._17{width:7.843200pt;}
._8{width:9.018880pt;}
._a{width:9.923200pt;}
._12{width:11.215360pt;}
._24{width:12.279040pt;}
._f{width:14.722560pt;}
._1f{width:16.267520pt;}
._16{width:17.523200pt;}
._e{width:18.653440pt;}
._18{width:20.101760pt;}
._49{width:21.109760pt;}
._d{width:22.000000pt;}
._c{width:22.947840pt;}
._1a{width:24.275840pt;}
._19{width:25.710080pt;}
._29{width:27.214080pt;}
._21{width:28.586880pt;}
._1d{width:29.888000pt;}
._5{width:31.031040pt;}
._6{width:32.252160pt;}
._1e{width:33.367680pt;}
._20{width:34.899840pt;}
._26{width:36.387200pt;}
._15{width:38.193280pt;}
._14{width:39.096320pt;}
._25{width:40.016000pt;}
._2c{width:41.327360pt;}
._2b{width:42.398080pt;}
._2e{width:43.399040pt;}
._1c{width:44.355200pt;}
._3a{width:46.745600pt;}
._48{width:47.824640pt;}
._4c{width:48.825600pt;}
._3e{width:50.995200pt;}
._30{width:52.211200pt;}
._2f{width:53.240320pt;}
._7{width:55.996800pt;}
._3d{width:58.971520pt;}
._23{width:60.299520pt;}
._27{width:62.150400pt;}
._2a{width:63.903360pt;}
._43{width:65.337600pt;}
._4e{width:67.386667pt;}
._22{width:68.524800pt;}
._3b{width:70.012160pt;}
._2d{width:72.464000pt;}
._13{width:74.004480pt;}
._1b{width:75.058560pt;}
._4d{width:80.553387pt;}
._35{width:81.592320pt;}
._3c{width:83.088000pt;}
._39{width:84.726400pt;}
._31{width:86.700160pt;}
._36{width:99.281280pt;}
._41{width:103.584000pt;}
._42{width:104.593280pt;}
._45{width:116.279040pt;}
._44{width:117.934720pt;}
._34{width:119.466880pt;}
._33{width:130.825600pt;}
._28{width:133.564587pt;}
._38{width:134.592640pt;}
._37{width:144.273920pt;}
._32{width:148.470400pt;}
._4b{width:151.823787pt;}
._4a{width:153.198080pt;}
._46{width:180.289280pt;}
._3f{width:207.008640pt;}
._47{width:258.171520pt;}
._40{width:268.256000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y61{bottom:5.280000pt;}
.y7{bottom:13.120000pt;}
.y74{bottom:13.920000pt;}
.y29{bottom:14.080000pt;}
.y22{bottom:22.720000pt;}
.y72{bottom:22.760000pt;}
.y80{bottom:22.880000pt;}
.y120{bottom:22.906667pt;}
.y69{bottom:31.520000pt;}
.y6d{bottom:31.560000pt;}
.y7f{bottom:31.680000pt;}
.y28{bottom:31.706667pt;}
.y6{bottom:39.040000pt;}
.y76{bottom:40.320000pt;}
.y21{bottom:40.346667pt;}
.y71{bottom:40.360000pt;}
.y64{bottom:40.480000pt;}
.y11f{bottom:40.506667pt;}
.yf1{bottom:40.520000pt;}
.yd{bottom:49.120000pt;}
.y132{bottom:49.146667pt;}
.y6c{bottom:49.160000pt;}
.y68{bottom:49.280000pt;}
.y27{bottom:49.306667pt;}
.y20{bottom:55.706667pt;}
.y5{bottom:56.960000pt;}
.y75{bottom:57.920000pt;}
.y70{bottom:57.960000pt;}
.y63{bottom:58.080000pt;}
.yed{bottom:58.106667pt;}
.yb{bottom:65.600000pt;}
.y67{bottom:66.880000pt;}
.y11d{bottom:66.906667pt;}
.y6b{bottom:66.920000pt;}
.y26{bottom:67.066667pt;}
.ya{bottom:69.600000pt;}
.y147{bottom:72.320000pt;}
.y1f{bottom:73.306667pt;}
.y43{bottom:74.080000pt;}
.y79{bottom:75.520000pt;}
.y66{bottom:75.680000pt;}
.yec{bottom:75.706667pt;}
.y6f{bottom:75.720000pt;}
.y4{bottom:76.800000pt;}
.ybb{bottom:77.280000pt;}
.yea{bottom:77.600000pt;}
.y9f{bottom:80.000000pt;}
.y131{bottom:84.506667pt;}
.y127{bottom:84.520000pt;}
.y25{bottom:84.666667pt;}
.y128{bottom:88.480000pt;}
.y1e{bottom:88.666667pt;}
.y146{bottom:89.920000pt;}
.y115{bottom:90.240000pt;}
.y42{bottom:91.840000pt;}
.y65{bottom:93.280000pt;}
.yeb{bottom:93.306667pt;}
.y6e{bottom:93.320000pt;}
.y11e{bottom:93.466667pt;}
.yba{bottom:95.040000pt;}
.y9{bottom:95.546667pt;}
.y9e{bottom:97.600000pt;}
.y130{bottom:102.106667pt;}
.y126{bottom:102.120000pt;}
.y24{bottom:102.266667pt;}
.y14c{bottom:103.040000pt;}
.y1d{bottom:105.786667pt;}
.y145{bottom:107.520000pt;}
.y114{bottom:108.000000pt;}
.y3{bottom:108.986667pt;}
.y41{bottom:109.440000pt;}
.y118{bottom:110.880000pt;}
.y12b{bottom:110.906667pt;}
.y124{bottom:111.080000pt;}
.yb9{bottom:112.640000pt;}
.y9d{bottom:115.200000pt;}
.y12f{bottom:119.706667pt;}
.y23{bottom:119.866667pt;}
.y125{bottom:119.880000pt;}
.y14b{bottom:120.640000pt;}
.y8{bottom:121.466667pt;}
.y1c{bottom:122.106667pt;}
.y144{bottom:125.120000pt;}
.y113{bottom:125.600000pt;}
.y40{bottom:127.040000pt;}
.y12a{bottom:128.506667pt;}
.y11b{bottom:128.520000pt;}
.y123{bottom:128.680000pt;}
.yb8{bottom:130.240000pt;}
.y9c{bottom:132.960000pt;}
.y12e{bottom:137.306667pt;}
.y1b{bottom:137.466667pt;}
.y14a{bottom:138.266667pt;}
.y143{bottom:142.906667pt;}
.y112{bottom:143.226667pt;}
.y3f{bottom:144.666667pt;}
.y129{bottom:146.266667pt;}
.y11a{bottom:146.280000pt;}
.y78{bottom:146.746667pt;}
.yb7{bottom:147.866667pt;}
.y9b{bottom:150.586667pt;}
.y12d{bottom:155.066667pt;}
.y1a{bottom:155.226667pt;}
.y149{bottom:155.866667pt;}
.y142{bottom:158.266667pt;}
.y111{bottom:160.826667pt;}
.y3e{bottom:162.266667pt;}
.y12c{bottom:163.866667pt;}
.y119{bottom:163.880000pt;}
.yb6{bottom:165.466667pt;}
.y9a{bottom:168.186667pt;}
.y19{bottom:172.826667pt;}
.y148{bottom:173.466667pt;}
.y141{bottom:173.626667pt;}
.y110{bottom:178.426667pt;}
.y3d{bottom:180.026667pt;}
.y133{bottom:181.466667pt;}
.yb5{bottom:183.226667pt;}
.ye9{bottom:184.026667pt;}
.y99{bottom:185.786667pt;}
.y18{bottom:190.426667pt;}
.y140{bottom:191.226667pt;}
.y10f{bottom:196.186667pt;}
.y3c{bottom:197.626667pt;}
.yb4{bottom:200.826667pt;}
.y98{bottom:203.386667pt;}
.ye8{bottom:207.546667pt;}
.y13f{bottom:208.826667pt;}
.y10e{bottom:213.786667pt;}
.y3b{bottom:215.226667pt;}
.y77{bottom:217.946667pt;}
.yb3{bottom:218.426667pt;}
.y97{bottom:221.146667pt;}
.ye7{bottom:225.146667pt;}
.y13e{bottom:226.426667pt;}
.y10d{bottom:231.386667pt;}
.y3a{bottom:232.826667pt;}
.yb2{bottom:236.026667pt;}
.y96{bottom:238.746667pt;}
.ye6{bottom:242.746667pt;}
.y13d{bottom:244.026667pt;}
.y10c{bottom:248.986667pt;}
.y39{bottom:250.426667pt;}
.yb1{bottom:253.626667pt;}
.y95{bottom:256.346667pt;}
.ye5{bottom:260.506667pt;}
.y13c{bottom:261.626667pt;}
.y10b{bottom:266.586667pt;}
.y38{bottom:268.186667pt;}
.yb0{bottom:271.386667pt;}
.y73{bottom:271.546667pt;}
.y94{bottom:273.946667pt;}
.ye4{bottom:278.106667pt;}
.y13b{bottom:279.386667pt;}
.y10a{bottom:284.346667pt;}
.y37{bottom:285.786667pt;}
.y122{bottom:287.066667pt;}
.yaf{bottom:288.986667pt;}
.y93{bottom:291.546667pt;}
.ye3{bottom:295.706667pt;}
.y13a{bottom:296.986667pt;}
.y109{bottom:301.946667pt;}
.y36{bottom:303.386667pt;}
.yae{bottom:306.586667pt;}
.y92{bottom:309.306667pt;}
.ye2{bottom:313.306667pt;}
.y139{bottom:314.586667pt;}
.y108{bottom:319.546667pt;}
.y35{bottom:320.986667pt;}
.yad{bottom:324.186667pt;}
.y91{bottom:326.906667pt;}
.ye1{bottom:330.906667pt;}
.y138{bottom:332.186667pt;}
.y107{bottom:337.146667pt;}
.y34{bottom:338.586667pt;}
.yac{bottom:341.786667pt;}
.y6a{bottom:342.746667pt;}
.y90{bottom:344.506667pt;}
.ye0{bottom:348.666667pt;}
.y137{bottom:349.786667pt;}
.y106{bottom:354.746667pt;}
.y33{bottom:356.386667pt;}
.yab{bottom:359.586667pt;}
.y8f{bottom:362.146667pt;}
.ydf{bottom:366.306667pt;}
.y136{bottom:367.586667pt;}
.y105{bottom:372.546667pt;}
.y32{bottom:373.986667pt;}
.yaa{bottom:377.186667pt;}
.y8e{bottom:379.746667pt;}
.yde{bottom:383.906667pt;}
.y135{bottom:385.186667pt;}
.y104{bottom:390.146667pt;}
.y31{bottom:391.586667pt;}
.ya9{bottom:394.786667pt;}
.y8d{bottom:397.506667pt;}
.ydd{bottom:401.506667pt;}
.y134{bottom:402.786667pt;}
.y103{bottom:407.746667pt;}
.y30{bottom:409.186667pt;}
.y8c{bottom:415.106667pt;}
.ydc{bottom:419.106667pt;}
.ya8{bottom:420.386667pt;}
.y102{bottom:425.346667pt;}
.y2f{bottom:426.786667pt;}
.y8b{bottom:432.706667pt;}
.ydb{bottom:436.866667pt;}
.ya7{bottom:437.986667pt;}
.y101{bottom:442.946667pt;}
.y2e{bottom:444.386667pt;}
.y62{bottom:449.186667pt;}
.y8a{bottom:450.306667pt;}
.y121{bottom:450.466667pt;}
.yda{bottom:454.466667pt;}
.ya6{bottom:455.746667pt;}
.y100{bottom:460.706667pt;}
.y2d{bottom:462.146667pt;}
.y89{bottom:467.906667pt;}
.yd9{bottom:473.026667pt;}
.ya5{bottom:473.346667pt;}
.yff{bottom:478.306667pt;}
.y2c{bottom:479.746667pt;}
.y88{bottom:485.666667pt;}
.yd8{bottom:490.626667pt;}
.ya4{bottom:490.946667pt;}
.yfe{bottom:495.906667pt;}
.y2b{bottom:497.346667pt;}
.y87{bottom:503.266667pt;}
.yd7{bottom:508.226667pt;}
.ya3{bottom:508.546667pt;}
.yfd{bottom:513.506667pt;}
.y2a{bottom:514.946667pt;}
.y86{bottom:520.866667pt;}
.yd6{bottom:525.986667pt;}
.ya2{bottom:526.146667pt;}
.yfc{bottom:531.106667pt;}
.y85{bottom:538.466667pt;}
.ya1{bottom:543.906667pt;}
.yd5{bottom:544.546667pt;}
.y17{bottom:545.826667pt;}
.yfb{bottom:548.866667pt;}
.y60{bottom:555.586667pt;}
.y84{bottom:556.066667pt;}
.y11c{bottom:560.866667pt;}
.ya0{bottom:561.506667pt;}
.yd4{bottom:562.146667pt;}
.yfa{bottom:566.466667pt;}
.y83{bottom:573.826667pt;}
.y5f{bottom:579.133333pt;}
.yd3{bottom:579.773333pt;}
.yf9{bottom:584.093333pt;}
.y82{bottom:586.973333pt;}
.y5e{bottom:596.733333pt;}
.yd2{bottom:597.373333pt;}
.yf8{bottom:601.693333pt;}
.y5d{bottom:614.333333pt;}
.yd1{bottom:615.133333pt;}
.yf7{bottom:619.293333pt;}
.y5c{bottom:632.093333pt;}
.yd0{bottom:633.693333pt;}
.y81{bottom:640.573333pt;}
.yf6{bottom:645.053333pt;}
.y5b{bottom:649.693333pt;}
.ycf{bottom:651.293333pt;}
.yf5{bottom:662.653333pt;}
.y5a{bottom:667.293333pt;}
.y117{bottom:671.453333pt;}
.yce{bottom:676.893333pt;}
.yf4{bottom:680.253333pt;}
.y59{bottom:684.893333pt;}
.ycd{bottom:694.493333pt;}
.yf3{bottom:697.853333pt;}
.y58{bottom:702.493333pt;}
.yf2{bottom:710.973333pt;}
.y7e{bottom:711.613333pt;}
.ycc{bottom:712.253333pt;}
.y57{bottom:720.253333pt;}
.ycb{bottom:729.853333pt;}
.y56{bottom:737.853333pt;}
.yca{bottom:747.453333pt;}
.y15{bottom:749.373333pt;}
.y55{bottom:755.453333pt;}
.yf0{bottom:764.573333pt;}
.yc9{bottom:765.053333pt;}
.y14{bottom:772.093333pt;}
.y54{bottom:773.053333pt;}
.yc8{bottom:782.653333pt;}
.y53{bottom:790.653333pt;}
.y13{bottom:794.493333pt;}
.yc7{bottom:800.453333pt;}
.y7d{bottom:800.613333pt;}
.y52{bottom:808.453333pt;}
.y12{bottom:812.133333pt;}
.yc6{bottom:818.053333pt;}
.yef{bottom:818.213333pt;}
.y11{bottom:825.573333pt;}
.y51{bottom:826.053333pt;}
.yc5{bottom:835.653333pt;}
.y50{bottom:843.653333pt;}
.y10{bottom:844.453333pt;}
.y116{bottom:852.453333pt;}
.yc4{bottom:853.253333pt;}
.y4f{bottom:861.253333pt;}
.yf{bottom:865.413333pt;}
.yc3{bottom:870.853333pt;}
.y4e{bottom:878.853333pt;}
.yc2{bottom:888.453333pt;}
.y7c{bottom:889.413333pt;}
.ye{bottom:893.573333pt;}
.y4d{bottom:896.453333pt;}
.yc1{bottom:906.213333pt;}
.y4c{bottom:914.213333pt;}
.yc{bottom:916.293333pt;}
.yc0{bottom:923.813333pt;}
.y1{bottom:929.413333pt;}
.y4b{bottom:931.813333pt;}
.ybf{bottom:941.413333pt;}
.yee{bottom:943.013333pt;}
.y4a{bottom:949.413333pt;}
.ybe{bottom:959.013333pt;}
.y49{bottom:967.013333pt;}
.ybd{bottom:976.613333pt;}
.y7b{bottom:978.213333pt;}
.y48{bottom:984.613333pt;}
.ybc{bottom:994.373333pt;}
.y47{bottom:1002.373333pt;}
.y46{bottom:1020.000000pt;}
.y7a{bottom:1031.840000pt;}
.y45{bottom:1037.600000pt;}
.y44{bottom:1060.960000pt;}
.h3{height:2.546250pt;}
.hb{height:17.600000pt;}
.h10{height:17.760000pt;}
.ha{height:24.131250pt;}
.he{height:33.867188pt;}
.h20{height:35.975313pt;}
.h6{height:37.090625pt;}
.hc{height:37.479688pt;}
.h21{height:38.672812pt;}
.h7{height:41.112500pt;}
.hf{height:43.782500pt;}
.h9{height:47.310625pt;}
.h1a{height:52.800000pt;}
.h14{height:52.960000pt;}
.h17{height:52.992000pt;}
.h1b{height:53.937500pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h13{height:70.400000pt;}
.h15{height:70.560000pt;}
.h16{height:70.592000pt;}
.h18{height:88.160000pt;}
.h19{height:88.192000pt;}
.h4{height:93.387187pt;}
.h11{height:105.760000pt;}
.h12{height:105.792000pt;}
.h1d{height:105.952000pt;}
.h2{height:143.386667pt;}
.h1e{height:158.746667pt;}
.h1c{height:176.346667pt;}
.h1f{height:193.946667pt;}
.hd{height:202.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:88.672000pt;}
.wf{width:109.472000pt;}
.w9{width:114.112000pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w11{width:148.346667pt;}
.w10{width:148.506667pt;}
.w7{width:255.906667pt;}
.wd{width:275.106667pt;}
.w13{width:278.626667pt;}
.w12{width:279.266667pt;}
.wb{width:281.986667pt;}
.wa{width:299.266667pt;}
.we{width:331.266667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:0.960000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xf{left:71.999988pt;}
.x10{left:96.031988pt;}
.x8{left:97.960000pt;}
.x7{left:104.200000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.x11{left:138.106667pt;}
.x14{left:162.266667pt;}
.xd{left:163.386667pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xc{left:252.066655pt;}
.xb{left:305.666667pt;}
.x15{left:313.506667pt;}
.x12{left:414.013333pt;}
.xe{left:463.293333pt;}
.x16{left:464.573333pt;}
.x9{left:605.573333pt;}
}




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