
    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_839f8094c8e0eef3133e2b7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_fe0cb3e440e70b17030fa643.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5e333e3aa6b67013e8352d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_24dbe3a0c7a295af8abb1b1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_963b3f8b2f8164398586f757.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008789;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_07f6c9601f3a9a47ea138506.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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;}
.m1{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);}
.m2{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:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.ls6{letter-spacing:-1.248000px;}
.ls9{letter-spacing:-0.984000px;}
.lsb{letter-spacing:-0.570000px;}
.ls8{letter-spacing:-0.294000px;}
.ls3{letter-spacing:-0.135000px;}
.ls5{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.012000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.516000px;}
.lsf{letter-spacing:0.930000px;}
.ls11{letter-spacing:0.990000px;}
.ls10{letter-spacing:30.990000px;}
.lse{letter-spacing:56.490000px;}
.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;}
}
.ws2{word-spacing:-44.688000px;}
.ws8{word-spacing:-33.120000px;}
.wse{word-spacing:-32.760000px;}
.ws1{word-spacing:-31.464000px;}
.wsc{word-spacing:-18.780000px;}
.ws6{word-spacing:-16.902000px;}
.ws7{word-spacing:-15.918000px;}
.ws0{word-spacing:-15.024000px;}
.wsd{word-spacing:-14.085000px;}
.ws4{word-spacing:-14.064000px;}
.wsa{word-spacing:-14.052000px;}
.wsb{word-spacing:-13.515000px;}
.ws3{word-spacing:-12.207000px;}
.ws5{word-spacing:-11.913000px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-2.727000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._10{width:2.400000px;}
._11{width:3.879000px;}
._12{width:4.944000px;}
._c{width:6.720000px;}
._d{width:7.833000px;}
._1a{width:8.928000px;}
._1b{width:10.080000px;}
._18{width:11.292000px;}
._4{width:12.429000px;}
._5{width:14.130000px;}
._1f{width:15.180000px;}
._1e{width:16.320000px;}
._3{width:17.445000px;}
._2{width:18.528000px;}
._13{width:20.010000px;}
._20{width:21.084000px;}
._19{width:22.113000px;}
._b{width:24.330000px;}
._f{width:25.830000px;}
._17{width:26.958000px;}
._9{width:28.590000px;}
._14{width:30.678000px;}
._15{width:32.064000px;}
._16{width:33.216000px;}
._a{width:34.827000px;}
._8{width:36.300000px;}
._7{width:38.085000px;}
._2a{width:40.092000px;}
._25{width:48.360000px;}
._24{width:55.320000px;}
._23{width:56.820000px;}
._22{width:58.080000px;}
._21{width:66.060000px;}
._29{width:74.160000px;}
._6{width:83.898000px;}
._2b{width:87.120000px;}
._2c{width:88.245000px;}
._2d{width:94.320000px;}
._2e{width:95.670000px;}
._28{width:99.420000px;}
._26{width:110.220000px;}
._27{width:168.360000px;}
._1d{width:186.888000px;}
._1c{width:188.538000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fse{font-size:18.000000px;}
.fsf{font-size:30.000000px;}
.fs12{font-size:33.000000px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs13{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs10{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:0.750000px;}
.y42{bottom:1.125000px;}
.y6a{bottom:1.860000px;}
.y73{bottom:1.875000px;}
.y82{bottom:2.250000px;}
.y12d{bottom:2.265000px;}
.y25{bottom:2.610000px;}
.y9{bottom:2.625000px;}
.y40{bottom:2.655000px;}
.y7c{bottom:3.000000px;}
.y16{bottom:3.375000px;}
.y130{bottom:4.500000px;}
.y3{bottom:4.875000px;}
.y14{bottom:5.625000px;}
.y71{bottom:7.125000px;}
.ydd{bottom:7.500000px;}
.y68{bottom:7.860000px;}
.ya{bottom:8.625000px;}
.y4{bottom:10.125000px;}
.ydb{bottom:10.875000px;}
.y6{bottom:15.037500px;}
.y12c{bottom:15.765000px;}
.y24{bottom:16.485000px;}
.y3f{bottom:16.905000px;}
.y5d{bottom:17.250000px;}
.y6c{bottom:18.780000px;}
.y10a{bottom:19.530000px;}
.y6d{bottom:19.545000px;}
.y7{bottom:20.625000px;}
.y80{bottom:21.000000px;}
.yc2{bottom:21.045000px;}
.yb{bottom:21.375000px;}
.y10b{bottom:21.405000px;}
.y112{bottom:21.420000px;}
.y67{bottom:22.125000px;}
.y2{bottom:22.875000px;}
.y23{bottom:28.485000px;}
.yf4{bottom:28.500000px;}
.yda{bottom:28.875000px;}
.y12b{bottom:29.295000px;}
.y5c{bottom:31.500000px;}
.y3e{bottom:31.530000px;}
.y13{bottom:31.875000px;}
.y66{bottom:36.750000px;}
.y105{bottom:37.500000px;}
.y110{bottom:37.545000px;}
.yd8{bottom:39.045000px;}
.y7b{bottom:39.375000px;}
.yb5{bottom:39.382500px;}
.y111{bottom:39.420000px;}
.y22{bottom:40.110000px;}
.y6e{bottom:40.170000px;}
.yc1{bottom:41.670000px;}
.y12a{bottom:43.170000px;}
.yf3{bottom:43.507500px;}
.yd9{bottom:44.295000px;}
.y5b{bottom:46.125000px;}
.y3d{bottom:46.155000px;}
.y65{bottom:51.375000px;}
.y21{bottom:51.780000px;}
.y12{bottom:56.625000px;}
.y129{bottom:56.670000px;}
.y98{bottom:57.375000px;}
.y7a{bottom:57.382500px;}
.yd7{bottom:57.420000px;}
.y90{bottom:60.000000px;}
.y3c{bottom:60.405000px;}
.y5a{bottom:60.750000px;}
.y8{bottom:61.125000px;}
.y81{bottom:61.500000px;}
.yf2{bottom:61.882500px;}
.y20{bottom:63.780000px;}
.yc0{bottom:64.545000px;}
.y64{bottom:65.625000px;}
.y128{bottom:70.170000px;}
.y5{bottom:71.250000px;}
.y3b{bottom:75.030000px;}
.yb4{bottom:75.367500px;}
.y79{bottom:75.382500px;}
.y1f{bottom:75.405000px;}
.yd6{bottom:75.420000px;}
.y97{bottom:75.750000px;}
.y100{bottom:75.795000px;}
.y11{bottom:77.625000px;}
.ybf{bottom:79.170000px;}
.yf1{bottom:79.882500px;}
.y8f{bottom:82.920000px;}
.y127{bottom:83.670000px;}
.y1e{bottom:87.030000px;}
.y3a{bottom:89.655000px;}
.y95{bottom:91.875000px;}
.yd5{bottom:93.420000px;}
.y96{bottom:93.750000px;}
.y78{bottom:93.757500px;}
.yb3{bottom:93.787500px;}
.yff{bottom:96.420000px;}
.ybe{bottom:97.170000px;}
.yf0{bottom:97.912500px;}
.y8e{bottom:97.920000px;}
.y1d{bottom:99.030000px;}
.yf{bottom:101.250000px;}
.y10{bottom:103.500000px;}
.y39{bottom:103.905000px;}
.y74{bottom:107.662500px;}
.y63{bottom:109.125000px;}
.y1c{bottom:110.655000px;}
.y132{bottom:111.037500px;}
.y126{bottom:111.045000px;}
.y77{bottom:111.787500px;}
.yd4{bottom:111.795000px;}
.ye1{bottom:112.537500px;}
.y62{bottom:114.375000px;}
.y9c{bottom:115.162500px;}
.ybd{bottom:115.170000px;}
.yef{bottom:115.912500px;}
.y8d{bottom:116.295000px;}
.y38{bottom:118.530000px;}
.yfe{bottom:119.295000px;}
.y61{bottom:120.045000px;}
.y1b{bottom:122.655000px;}
.y125{bottom:124.545000px;}
.y60{bottom:125.295000px;}
.y5f{bottom:125.670000px;}
.y131{bottom:129.037500px;}
.y76{bottom:129.787500px;}
.yd3{bottom:129.795000px;}
.y37{bottom:132.810000px;}
.y59{bottom:133.155000px;}
.ybc{bottom:133.170000px;}
.yfd{bottom:133.545000px;}
.y1a{bottom:134.280000px;}
.yee{bottom:134.287500px;}
.y8c{bottom:134.295000px;}
.y124{bottom:138.045000px;}
.y19{bottom:146.655000px;}
.y58{bottom:147.405000px;}
.y36{bottom:147.435000px;}
.yb2{bottom:147.787500px;}
.yd2{bottom:147.795000px;}
.y75{bottom:148.162500px;}
.y18{bottom:148.530000px;}
.yfc{bottom:151.545000px;}
.ybb{bottom:151.575000px;}
.y123{bottom:151.590000px;}
.yed{bottom:152.287500px;}
.y8b{bottom:152.295000px;}
.y57{bottom:162.030000px;}
.y35{bottom:162.060000px;}
.y122{bottom:165.090000px;}
.y12f{bottom:165.780000px;}
.yd1{bottom:165.825000px;}
.yb1{bottom:166.162500px;}
.yfb{bottom:169.545000px;}
.yba{bottom:169.575000px;}
.yec{bottom:170.287500px;}
.y8a{bottom:170.295000px;}
.y34{bottom:176.310000px;}
.y56{bottom:176.655000px;}
.y121{bottom:178.965000px;}
.y12e{bottom:181.920000px;}
.yb0{bottom:184.162500px;}
.yd0{bottom:184.200000px;}
.yb9{bottom:187.575000px;}
.yeb{bottom:188.662500px;}
.y89{bottom:188.700000px;}
.y116{bottom:190.155000px;}
.yfa{bottom:190.200000px;}
.y55{bottom:190.905000px;}
.y33{bottom:190.935000px;}
.y120{bottom:192.465000px;}
.yaf{bottom:202.162500px;}
.ycf{bottom:202.200000px;}
.y32{bottom:205.560000px;}
.y54{bottom:205.575000px;}
.y11f{bottom:205.965000px;}
.yea{bottom:206.662500px;}
.y88{bottom:206.700000px;}
.yb8{bottom:208.200000px;}
.y45{bottom:211.905000px;}
.yf9{bottom:213.075000px;}
.y11e{bottom:219.465000px;}
.y31{bottom:219.810000px;}
.y53{bottom:219.825000px;}
.yce{bottom:220.200000px;}
.yae{bottom:220.207500px;}
.y4c{bottom:220.905000px;}
.ye9{bottom:224.332500px;}
.y87{bottom:224.700000px;}
.yf8{bottom:227.700000px;}
.yb7{bottom:231.075000px;}
.y11d{bottom:233.340000px;}
.y30{bottom:234.435000px;}
.y52{bottom:234.450000px;}
.y4b{bottom:234.780000px;}
.ycd{bottom:238.575000px;}
.yad{bottom:238.582500px;}
.ye8{bottom:239.332500px;}
.y86{bottom:243.075000px;}
.yf7{bottom:245.700000px;}
.y4a{bottom:246.435000px;}
.y11c{bottom:246.840000px;}
.y2f{bottom:248.685000px;}
.y51{bottom:249.075000px;}
.ycc{bottom:256.575000px;}
.yac{bottom:256.582500px;}
.ye7{bottom:257.317500px;}
.y49{bottom:258.075000px;}
.y11b{bottom:260.340000px;}
.y85{bottom:261.075000px;}
.y50{bottom:263.325000px;}
.y2e{bottom:263.355000px;}
.yf6{bottom:263.700000px;}
.y48{bottom:270.060000px;}
.y72{bottom:270.825000px;}
.y11a{bottom:273.870000px;}
.yab{bottom:274.567500px;}
.ycb{bottom:274.575000px;}
.ye6{bottom:275.332500px;}
.y4f{bottom:277.950000px;}
.y2d{bottom:277.980000px;}
.y84{bottom:279.075000px;}
.y70{bottom:280.575000px;}
.y47{bottom:281.700000px;}
.y119{bottom:287.370000px;}
.y2c{bottom:292.230000px;}
.y4e{bottom:292.575000px;}
.yca{bottom:292.605000px;}
.yaa{bottom:292.957500px;}
.ye5{bottom:293.707500px;}
.y46{bottom:294.435000px;}
.y117{bottom:295.620000px;}
.y118{bottom:301.245000px;}
.y2b{bottom:306.855000px;}
.ya9{bottom:310.957500px;}
.yc9{bottom:310.980000px;}
.ye4{bottom:311.707500px;}
.y6f{bottom:315.825000px;}
.y2a{bottom:321.480000px;}
.y6b{bottom:327.825000px;}
.ye2{bottom:327.832500px;}
.ya8{bottom:328.957500px;}
.yc8{bottom:328.980000px;}
.ye3{bottom:329.707500px;}
.y29{bottom:335.730000px;}
.yc7{bottom:346.980000px;}
.ya7{bottom:346.987500px;}
.y28{bottom:350.355000px;}
.yc6{bottom:364.980000px;}
.ya6{bottom:365.362500px;}
.y69{bottom:377.745000px;}
.yc4{bottom:381.480000px;}
.yc5{bottom:383.355000px;}
.ya5{bottom:383.362500px;}
.yc{bottom:385.620000px;}
.ya4{bottom:401.362500px;}
.ya3{bottom:419.737500px;}
.ya2{bottom:437.737500px;}
.ya1{bottom:455.737500px;}
.ye0{bottom:457.275000px;}
.y5e{bottom:463.275000px;}
.ydf{bottom:470.400000px;}
.ya0{bottom:473.782500px;}
.yd{bottom:476.760000px;}
.y9f{bottom:492.157500px;}
.y115{bottom:502.650000px;}
.yde{bottom:506.400000px;}
.y9e{bottom:512.782500px;}
.y114{bottom:514.650000px;}
.y9d{bottom:516.157500px;}
.ydc{bottom:522.900000px;}
.yc3{bottom:545.400000px;}
.y113{bottom:550.650000px;}
.y10f{bottom:567.150000px;}
.y44{bottom:593.070000px;}
.y10e{bottom:621.570000px;}
.y10d{bottom:634.695000px;}
.y9b{bottom:648.195000px;}
.y9a{bottom:661.320000px;}
.y26{bottom:669.180000px;}
.y10c{bottom:670.695000px;}
.y109{bottom:687.195000px;}
.y4d{bottom:689.820000px;}
.y99{bottom:697.695000px;}
.y27{bottom:704.445000px;}
.y94{bottom:715.725000px;}
.y108{bottom:723.600000px;}
.y107{bottom:736.725000px;}
.y106{bottom:772.725000px;}
.y104{bottom:789.225000px;}
.y93{bottom:824.475000px;}
.y92{bottom:837.630000px;}
.y103{bottom:843.630000px;}
.y102{bottom:856.005000px;}
.y91{bottom:874.020000px;}
.y83{bottom:892.005000px;}
.y101{bottom:892.380000px;}
.y41{bottom:901.005000px;}
.y17{bottom:906.270000px;}
.yf5{bottom:907.380000px;}
.yb6{bottom:943.755000px;}
.y15{bottom:1066.425000px;}
.ye{bottom:1082.955000px;}
.y7f{bottom:1189.830000px;}
.y7e{bottom:1208.625000px;}
.y1{bottom:1226.625000px;}
.y7d{bottom:1227.375000px;}
.hd{height:3.999023px;}
.h32{height:4.166016px;}
.h1b{height:5.250000px;}
.h9{height:5.625000px;}
.h23{height:7.875000px;}
.h2b{height:9.750000px;}
.ha{height:9.820312px;}
.h46{height:12.000000px;}
.h41{height:12.375000px;}
.h1c{height:12.498047px;}
.h38{height:13.125000px;}
.h35{height:13.162500px;}
.h48{height:14.250000px;}
.h1f{height:14.610000px;}
.h1d{height:14.730469px;}
.h14{height:16.537500px;}
.h24{height:22.500000px;}
.h2c{height:27.005859px;}
.h6{height:31.912500px;}
.h18{height:31.916016px;}
.h45{height:32.610000px;}
.h29{height:32.625000px;}
.h27{height:36.000000px;}
.h44{height:36.412500px;}
.h49{height:36.750000px;}
.h3b{height:36.826172px;}
.h42{height:36.892090px;}
.hb{height:38.250000px;}
.h31{height:38.625000px;}
.h8{height:39.281250px;}
.h36{height:39.351562px;}
.h28{height:40.500000px;}
.h7{height:43.875000px;}
.h17{height:44.191406px;}
.h40{height:45.826172px;}
.h2e{height:49.101562px;}
.h15{height:49.189453px;}
.h2{height:49.804688px;}
.h25{height:49.912500px;}
.h5{height:49.992188px;}
.h2f{height:52.916016px;}
.h3d{height:54.011719px;}
.h43{height:54.412500px;}
.h4{height:58.921875px;}
.h13{height:59.765625px;}
.h26{height:63.000000px;}
.h30{height:68.742188px;}
.h22{height:77.662500px;}
.h34{height:78.703125px;}
.h12{height:79.687500px;}
.h3{height:80.287500px;}
.h11{height:89.648438px;}
.h2a{height:98.378906px;}
.hc{height:108.000000px;}
.h37{height:108.750000px;}
.h10{height:124.162500px;}
.h21{height:129.787500px;}
.hf{height:139.453125px;}
.h16{height:160.140000px;}
.h2d{height:163.170000px;}
.h3a{height:242.325000px;}
.h3f{height:278.700000px;}
.h33{height:294.075000px;}
.h20{height:304.200000px;}
.h1e{height:307.950000px;}
.h47{height:312.495000px;}
.h3e{height:344.745000px;}
.h1a{height:361.965000px;}
.h3c{height:398.355000px;}
.h39{height:533.025000px;}
.h19{height:680.790000px;}
.he{height:821.505000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.w1b{width:16.875000px;}
.w19{width:18.000000px;}
.w17{width:18.750000px;}
.wb{width:21.375000px;}
.w7{width:25.162500px;}
.w5{width:59.250000px;}
.w6{width:62.625000px;}
.w14{width:85.537500px;}
.w10{width:95.662500px;}
.w2{width:97.537500px;}
.w12{width:106.537500px;}
.wf{width:114.787500px;}
.w9{width:115.950000px;}
.w15{width:117.037500px;}
.w11{width:127.537500px;}
.w13{width:154.200000px;}
.w3{width:182.700000px;}
.w1c{width:228.075000px;}
.wa{width:233.700000px;}
.wd{width:349.650000px;}
.wc{width:367.650000px;}
.w4{width:461.820000px;}
.w1d{width:556.350000px;}
.w8{width:713.520000px;}
.w18{width:776.925000px;}
.w1e{width:782.550000px;}
.w1a{width:784.425000px;}
.w16{width:795.675000px;}
.we{width:801.300000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x17{left:13.875000px;}
.x19{left:18.795000px;}
.x1b{left:26.280000px;}
.x8{left:30.750000px;}
.x26{left:34.875000px;}
.xb{left:44.250000px;}
.x2{left:45.787500px;}
.xa{left:51.000000px;}
.x1{left:54.037487px;}
.x22{left:62.662500px;}
.x1f{left:64.537500px;}
.xc{left:66.000000px;}
.x3{left:89.287500px;}
.x21{left:95.287487px;}
.xd{left:104.662500px;}
.xe{left:108.412500px;}
.x1e{left:109.530000px;}
.x13{left:110.662500px;}
.xf{left:133.575000px;}
.x4{left:143.325000px;}
.x15{left:160.575000px;}
.x5{left:174.825000px;}
.x10{left:224.370000px;}
.x16{left:256.245000px;}
.x24{left:290.745000px;}
.x6{left:326.025000px;}
.x27{left:350.362500px;}
.x18{left:383.775000px;}
.x14{left:400.657500px;}
.x28{left:451.312500px;}
.x11{left:458.070000px;}
.x12{left:479.445000px;}
.x1a{left:490.320000px;}
.x23{left:509.099987px;}
.x20{left:526.349987px;}
.x25{left:548.100000px;}
.x1c{left:644.520000px;}
.x1d{left:730.050000px;}
.x9{left:787.845000px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.ls6{letter-spacing:-1.109333pt;}
.ls9{letter-spacing:-0.874667pt;}
.lsb{letter-spacing:-0.506667pt;}
.ls8{letter-spacing:-0.261333pt;}
.ls3{letter-spacing:-0.120000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.458667pt;}
.lsf{letter-spacing:0.826667pt;}
.ls11{letter-spacing:0.880000pt;}
.ls10{letter-spacing:27.546667pt;}
.lse{letter-spacing:50.213333pt;}
.ws2{word-spacing:-39.722667pt;}
.ws8{word-spacing:-29.440000pt;}
.wse{word-spacing:-29.120000pt;}
.ws1{word-spacing:-27.968000pt;}
.wsc{word-spacing:-16.693333pt;}
.ws6{word-spacing:-15.024000pt;}
.ws7{word-spacing:-14.149333pt;}
.ws0{word-spacing:-13.354667pt;}
.wsd{word-spacing:-12.520000pt;}
.ws4{word-spacing:-12.501333pt;}
.wsa{word-spacing:-12.490667pt;}
.wsb{word-spacing:-12.013333pt;}
.ws3{word-spacing:-10.850667pt;}
.ws5{word-spacing:-10.589333pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-2.424000pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._10{width:2.133333pt;}
._11{width:3.448000pt;}
._12{width:4.394667pt;}
._c{width:5.973333pt;}
._d{width:6.962667pt;}
._1a{width:7.936000pt;}
._1b{width:8.960000pt;}
._18{width:10.037333pt;}
._4{width:11.048000pt;}
._5{width:12.560000pt;}
._1f{width:13.493333pt;}
._1e{width:14.506667pt;}
._3{width:15.506667pt;}
._2{width:16.469333pt;}
._13{width:17.786667pt;}
._20{width:18.741333pt;}
._19{width:19.656000pt;}
._b{width:21.626667pt;}
._f{width:22.960000pt;}
._17{width:23.962667pt;}
._9{width:25.413333pt;}
._14{width:27.269333pt;}
._15{width:28.501333pt;}
._16{width:29.525333pt;}
._a{width:30.957333pt;}
._8{width:32.266667pt;}
._7{width:33.853333pt;}
._2a{width:35.637333pt;}
._25{width:42.986667pt;}
._24{width:49.173333pt;}
._23{width:50.506667pt;}
._22{width:51.626667pt;}
._21{width:58.720000pt;}
._29{width:65.920000pt;}
._6{width:74.576000pt;}
._2b{width:77.440000pt;}
._2c{width:78.440000pt;}
._2d{width:83.840000pt;}
._2e{width:85.040000pt;}
._28{width:88.373333pt;}
._26{width:97.973333pt;}
._27{width:149.653333pt;}
._1d{width:166.122667pt;}
._1c{width:167.589333pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fse{font-size:16.000000pt;}
.fsf{font-size:26.666667pt;}
.fs12{font-size:29.333333pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs13{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs10{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:0.666667pt;}
.y42{bottom:1.000000pt;}
.y6a{bottom:1.653333pt;}
.y73{bottom:1.666667pt;}
.y82{bottom:2.000000pt;}
.y12d{bottom:2.013333pt;}
.y25{bottom:2.320000pt;}
.y9{bottom:2.333333pt;}
.y40{bottom:2.360000pt;}
.y7c{bottom:2.666667pt;}
.y16{bottom:3.000000pt;}
.y130{bottom:4.000000pt;}
.y3{bottom:4.333333pt;}
.y14{bottom:5.000000pt;}
.y71{bottom:6.333333pt;}
.ydd{bottom:6.666667pt;}
.y68{bottom:6.986667pt;}
.ya{bottom:7.666667pt;}
.y4{bottom:9.000000pt;}
.ydb{bottom:9.666667pt;}
.y6{bottom:13.366667pt;}
.y12c{bottom:14.013333pt;}
.y24{bottom:14.653333pt;}
.y3f{bottom:15.026667pt;}
.y5d{bottom:15.333333pt;}
.y6c{bottom:16.693333pt;}
.y10a{bottom:17.360000pt;}
.y6d{bottom:17.373333pt;}
.y7{bottom:18.333333pt;}
.y80{bottom:18.666667pt;}
.yc2{bottom:18.706667pt;}
.yb{bottom:19.000000pt;}
.y10b{bottom:19.026667pt;}
.y112{bottom:19.040000pt;}
.y67{bottom:19.666667pt;}
.y2{bottom:20.333333pt;}
.y23{bottom:25.320000pt;}
.yf4{bottom:25.333333pt;}
.yda{bottom:25.666667pt;}
.y12b{bottom:26.040000pt;}
.y5c{bottom:28.000000pt;}
.y3e{bottom:28.026667pt;}
.y13{bottom:28.333333pt;}
.y66{bottom:32.666667pt;}
.y105{bottom:33.333333pt;}
.y110{bottom:33.373333pt;}
.yd8{bottom:34.706667pt;}
.y7b{bottom:35.000000pt;}
.yb5{bottom:35.006667pt;}
.y111{bottom:35.040000pt;}
.y22{bottom:35.653333pt;}
.y6e{bottom:35.706667pt;}
.yc1{bottom:37.040000pt;}
.y12a{bottom:38.373333pt;}
.yf3{bottom:38.673333pt;}
.yd9{bottom:39.373333pt;}
.y5b{bottom:41.000000pt;}
.y3d{bottom:41.026667pt;}
.y65{bottom:45.666667pt;}
.y21{bottom:46.026667pt;}
.y12{bottom:50.333333pt;}
.y129{bottom:50.373333pt;}
.y98{bottom:51.000000pt;}
.y7a{bottom:51.006667pt;}
.yd7{bottom:51.040000pt;}
.y90{bottom:53.333333pt;}
.y3c{bottom:53.693333pt;}
.y5a{bottom:54.000000pt;}
.y8{bottom:54.333333pt;}
.y81{bottom:54.666667pt;}
.yf2{bottom:55.006667pt;}
.y20{bottom:56.693333pt;}
.yc0{bottom:57.373333pt;}
.y64{bottom:58.333333pt;}
.y128{bottom:62.373333pt;}
.y5{bottom:63.333333pt;}
.y3b{bottom:66.693333pt;}
.yb4{bottom:66.993333pt;}
.y79{bottom:67.006667pt;}
.y1f{bottom:67.026667pt;}
.yd6{bottom:67.040000pt;}
.y97{bottom:67.333333pt;}
.y100{bottom:67.373333pt;}
.y11{bottom:69.000000pt;}
.ybf{bottom:70.373333pt;}
.yf1{bottom:71.006667pt;}
.y8f{bottom:73.706667pt;}
.y127{bottom:74.373333pt;}
.y1e{bottom:77.360000pt;}
.y3a{bottom:79.693333pt;}
.y95{bottom:81.666667pt;}
.yd5{bottom:83.040000pt;}
.y96{bottom:83.333333pt;}
.y78{bottom:83.340000pt;}
.yb3{bottom:83.366667pt;}
.yff{bottom:85.706667pt;}
.ybe{bottom:86.373333pt;}
.yf0{bottom:87.033333pt;}
.y8e{bottom:87.040000pt;}
.y1d{bottom:88.026667pt;}
.yf{bottom:90.000000pt;}
.y10{bottom:92.000000pt;}
.y39{bottom:92.360000pt;}
.y74{bottom:95.700000pt;}
.y63{bottom:97.000000pt;}
.y1c{bottom:98.360000pt;}
.y132{bottom:98.700000pt;}
.y126{bottom:98.706667pt;}
.y77{bottom:99.366667pt;}
.yd4{bottom:99.373333pt;}
.ye1{bottom:100.033333pt;}
.y62{bottom:101.666667pt;}
.y9c{bottom:102.366667pt;}
.ybd{bottom:102.373333pt;}
.yef{bottom:103.033333pt;}
.y8d{bottom:103.373333pt;}
.y38{bottom:105.360000pt;}
.yfe{bottom:106.040000pt;}
.y61{bottom:106.706667pt;}
.y1b{bottom:109.026667pt;}
.y125{bottom:110.706667pt;}
.y60{bottom:111.373333pt;}
.y5f{bottom:111.706667pt;}
.y131{bottom:114.700000pt;}
.y76{bottom:115.366667pt;}
.yd3{bottom:115.373333pt;}
.y37{bottom:118.053333pt;}
.y59{bottom:118.360000pt;}
.ybc{bottom:118.373333pt;}
.yfd{bottom:118.706667pt;}
.y1a{bottom:119.360000pt;}
.yee{bottom:119.366667pt;}
.y8c{bottom:119.373333pt;}
.y124{bottom:122.706667pt;}
.y19{bottom:130.360000pt;}
.y58{bottom:131.026667pt;}
.y36{bottom:131.053333pt;}
.yb2{bottom:131.366667pt;}
.yd2{bottom:131.373333pt;}
.y75{bottom:131.700000pt;}
.y18{bottom:132.026667pt;}
.yfc{bottom:134.706667pt;}
.ybb{bottom:134.733333pt;}
.y123{bottom:134.746667pt;}
.yed{bottom:135.366667pt;}
.y8b{bottom:135.373333pt;}
.y57{bottom:144.026667pt;}
.y35{bottom:144.053333pt;}
.y122{bottom:146.746667pt;}
.y12f{bottom:147.360000pt;}
.yd1{bottom:147.400000pt;}
.yb1{bottom:147.700000pt;}
.yfb{bottom:150.706667pt;}
.yba{bottom:150.733333pt;}
.yec{bottom:151.366667pt;}
.y8a{bottom:151.373333pt;}
.y34{bottom:156.720000pt;}
.y56{bottom:157.026667pt;}
.y121{bottom:159.080000pt;}
.y12e{bottom:161.706667pt;}
.yb0{bottom:163.700000pt;}
.yd0{bottom:163.733333pt;}
.yb9{bottom:166.733333pt;}
.yeb{bottom:167.700000pt;}
.y89{bottom:167.733333pt;}
.y116{bottom:169.026667pt;}
.yfa{bottom:169.066667pt;}
.y55{bottom:169.693333pt;}
.y33{bottom:169.720000pt;}
.y120{bottom:171.080000pt;}
.yaf{bottom:179.700000pt;}
.ycf{bottom:179.733333pt;}
.y32{bottom:182.720000pt;}
.y54{bottom:182.733333pt;}
.y11f{bottom:183.080000pt;}
.yea{bottom:183.700000pt;}
.y88{bottom:183.733333pt;}
.yb8{bottom:185.066667pt;}
.y45{bottom:188.360000pt;}
.yf9{bottom:189.400000pt;}
.y11e{bottom:195.080000pt;}
.y31{bottom:195.386667pt;}
.y53{bottom:195.400000pt;}
.yce{bottom:195.733333pt;}
.yae{bottom:195.740000pt;}
.y4c{bottom:196.360000pt;}
.ye9{bottom:199.406667pt;}
.y87{bottom:199.733333pt;}
.yf8{bottom:202.400000pt;}
.yb7{bottom:205.400000pt;}
.y11d{bottom:207.413333pt;}
.y30{bottom:208.386667pt;}
.y52{bottom:208.400000pt;}
.y4b{bottom:208.693333pt;}
.ycd{bottom:212.066667pt;}
.yad{bottom:212.073333pt;}
.ye8{bottom:212.740000pt;}
.y86{bottom:216.066667pt;}
.yf7{bottom:218.400000pt;}
.y4a{bottom:219.053333pt;}
.y11c{bottom:219.413333pt;}
.y2f{bottom:221.053333pt;}
.y51{bottom:221.400000pt;}
.ycc{bottom:228.066667pt;}
.yac{bottom:228.073333pt;}
.ye7{bottom:228.726667pt;}
.y49{bottom:229.400000pt;}
.y11b{bottom:231.413333pt;}
.y85{bottom:232.066667pt;}
.y50{bottom:234.066667pt;}
.y2e{bottom:234.093333pt;}
.yf6{bottom:234.400000pt;}
.y48{bottom:240.053333pt;}
.y72{bottom:240.733333pt;}
.y11a{bottom:243.440000pt;}
.yab{bottom:244.060000pt;}
.ycb{bottom:244.066667pt;}
.ye6{bottom:244.740000pt;}
.y4f{bottom:247.066667pt;}
.y2d{bottom:247.093333pt;}
.y84{bottom:248.066667pt;}
.y70{bottom:249.400000pt;}
.y47{bottom:250.400000pt;}
.y119{bottom:255.440000pt;}
.y2c{bottom:259.760000pt;}
.y4e{bottom:260.066667pt;}
.yca{bottom:260.093333pt;}
.yaa{bottom:260.406667pt;}
.ye5{bottom:261.073333pt;}
.y46{bottom:261.720000pt;}
.y117{bottom:262.773333pt;}
.y118{bottom:267.773333pt;}
.y2b{bottom:272.760000pt;}
.ya9{bottom:276.406667pt;}
.yc9{bottom:276.426667pt;}
.ye4{bottom:277.073333pt;}
.y6f{bottom:280.733333pt;}
.y2a{bottom:285.760000pt;}
.y6b{bottom:291.400000pt;}
.ye2{bottom:291.406667pt;}
.ya8{bottom:292.406667pt;}
.yc8{bottom:292.426667pt;}
.ye3{bottom:293.073333pt;}
.y29{bottom:298.426667pt;}
.yc7{bottom:308.426667pt;}
.ya7{bottom:308.433333pt;}
.y28{bottom:311.426667pt;}
.yc6{bottom:324.426667pt;}
.ya6{bottom:324.766667pt;}
.y69{bottom:335.773333pt;}
.yc4{bottom:339.093333pt;}
.yc5{bottom:340.760000pt;}
.ya5{bottom:340.766667pt;}
.yc{bottom:342.773333pt;}
.ya4{bottom:356.766667pt;}
.ya3{bottom:373.100000pt;}
.ya2{bottom:389.100000pt;}
.ya1{bottom:405.100000pt;}
.ye0{bottom:406.466667pt;}
.y5e{bottom:411.800000pt;}
.ydf{bottom:418.133333pt;}
.ya0{bottom:421.140000pt;}
.yd{bottom:423.786667pt;}
.y9f{bottom:437.473333pt;}
.y115{bottom:446.800000pt;}
.yde{bottom:450.133333pt;}
.y9e{bottom:455.806667pt;}
.y114{bottom:457.466667pt;}
.y9d{bottom:458.806667pt;}
.ydc{bottom:464.800000pt;}
.yc3{bottom:484.800000pt;}
.y113{bottom:489.466667pt;}
.y10f{bottom:504.133333pt;}
.y44{bottom:527.173333pt;}
.y10e{bottom:552.506667pt;}
.y10d{bottom:564.173333pt;}
.y9b{bottom:576.173333pt;}
.y9a{bottom:587.840000pt;}
.y26{bottom:594.826667pt;}
.y10c{bottom:596.173333pt;}
.y109{bottom:610.840000pt;}
.y4d{bottom:613.173333pt;}
.y99{bottom:620.173333pt;}
.y27{bottom:626.173333pt;}
.y94{bottom:636.200000pt;}
.y108{bottom:643.200000pt;}
.y107{bottom:654.866667pt;}
.y106{bottom:686.866667pt;}
.y104{bottom:701.533333pt;}
.y93{bottom:732.866667pt;}
.y92{bottom:744.560000pt;}
.y103{bottom:749.893333pt;}
.y102{bottom:760.893333pt;}
.y91{bottom:776.906667pt;}
.y83{bottom:792.893333pt;}
.y101{bottom:793.226667pt;}
.y41{bottom:800.893333pt;}
.y17{bottom:805.573333pt;}
.yf5{bottom:806.560000pt;}
.yb6{bottom:838.893333pt;}
.y15{bottom:947.933333pt;}
.ye{bottom:962.626667pt;}
.y7f{bottom:1057.626667pt;}
.y7e{bottom:1074.333333pt;}
.y1{bottom:1090.333333pt;}
.y7d{bottom:1091.000000pt;}
.hd{height:3.554688pt;}
.h32{height:3.703125pt;}
.h1b{height:4.666667pt;}
.h9{height:5.000000pt;}
.h23{height:7.000000pt;}
.h2b{height:8.666667pt;}
.ha{height:8.729167pt;}
.h46{height:10.666667pt;}
.h41{height:11.000000pt;}
.h1c{height:11.109375pt;}
.h38{height:11.666667pt;}
.h35{height:11.700000pt;}
.h48{height:12.666667pt;}
.h1f{height:12.986667pt;}
.h1d{height:13.093750pt;}
.h14{height:14.700000pt;}
.h24{height:20.000000pt;}
.h2c{height:24.005208pt;}
.h6{height:28.366667pt;}
.h18{height:28.369792pt;}
.h45{height:28.986667pt;}
.h29{height:29.000000pt;}
.h27{height:32.000000pt;}
.h44{height:32.366667pt;}
.h49{height:32.666667pt;}
.h3b{height:32.734375pt;}
.h42{height:32.792969pt;}
.hb{height:34.000000pt;}
.h31{height:34.333333pt;}
.h8{height:34.916667pt;}
.h36{height:34.979167pt;}
.h28{height:36.000000pt;}
.h7{height:39.000000pt;}
.h17{height:39.281250pt;}
.h40{height:40.734375pt;}
.h2e{height:43.645833pt;}
.h15{height:43.723958pt;}
.h2{height:44.270833pt;}
.h25{height:44.366667pt;}
.h5{height:44.437500pt;}
.h2f{height:47.036458pt;}
.h3d{height:48.010417pt;}
.h43{height:48.366667pt;}
.h4{height:52.375000pt;}
.h13{height:53.125000pt;}
.h26{height:56.000000pt;}
.h30{height:61.104167pt;}
.h22{height:69.033333pt;}
.h34{height:69.958333pt;}
.h12{height:70.833333pt;}
.h3{height:71.366667pt;}
.h11{height:79.687500pt;}
.h2a{height:87.447917pt;}
.hc{height:96.000000pt;}
.h37{height:96.666667pt;}
.h10{height:110.366667pt;}
.h21{height:115.366667pt;}
.hf{height:123.958333pt;}
.h16{height:142.346667pt;}
.h2d{height:145.040000pt;}
.h3a{height:215.400000pt;}
.h3f{height:247.733333pt;}
.h33{height:261.400000pt;}
.h20{height:270.400000pt;}
.h1e{height:273.733333pt;}
.h47{height:277.773333pt;}
.h3e{height:306.440000pt;}
.h1a{height:321.746667pt;}
.h3c{height:354.093333pt;}
.h39{height:473.800000pt;}
.h19{height:605.146667pt;}
.he{height:730.226667pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.w1b{width:15.000000pt;}
.w19{width:16.000000pt;}
.w17{width:16.666667pt;}
.wb{width:19.000000pt;}
.w7{width:22.366667pt;}
.w5{width:52.666667pt;}
.w6{width:55.666667pt;}
.w14{width:76.033333pt;}
.w10{width:85.033333pt;}
.w2{width:86.700000pt;}
.w12{width:94.700000pt;}
.wf{width:102.033333pt;}
.w9{width:103.066667pt;}
.w15{width:104.033333pt;}
.w11{width:113.366667pt;}
.w13{width:137.066667pt;}
.w3{width:162.400000pt;}
.w1c{width:202.733333pt;}
.wa{width:207.733333pt;}
.wd{width:310.800000pt;}
.wc{width:326.800000pt;}
.w4{width:410.506667pt;}
.w1d{width:494.533333pt;}
.w8{width:634.240000pt;}
.w18{width:690.600000pt;}
.w1e{width:695.600000pt;}
.w1a{width:697.266667pt;}
.w16{width:707.266667pt;}
.we{width:712.266667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x17{left:12.333333pt;}
.x19{left:16.706667pt;}
.x1b{left:23.360000pt;}
.x8{left:27.333333pt;}
.x26{left:31.000000pt;}
.xb{left:39.333333pt;}
.x2{left:40.700000pt;}
.xa{left:45.333333pt;}
.x1{left:48.033322pt;}
.x22{left:55.700000pt;}
.x1f{left:57.366667pt;}
.xc{left:58.666667pt;}
.x3{left:79.366667pt;}
.x21{left:84.699988pt;}
.xd{left:93.033333pt;}
.xe{left:96.366667pt;}
.x1e{left:97.360000pt;}
.x13{left:98.366667pt;}
.xf{left:118.733333pt;}
.x4{left:127.400000pt;}
.x15{left:142.733333pt;}
.x5{left:155.400000pt;}
.x10{left:199.440000pt;}
.x16{left:227.773333pt;}
.x24{left:258.440000pt;}
.x6{left:289.800000pt;}
.x27{left:311.433333pt;}
.x18{left:341.133333pt;}
.x14{left:356.140000pt;}
.x28{left:401.166667pt;}
.x11{left:407.173333pt;}
.x12{left:426.173333pt;}
.x1a{left:435.840000pt;}
.x23{left:452.533322pt;}
.x20{left:467.866655pt;}
.x25{left:487.200000pt;}
.x1c{left:572.906667pt;}
.x1d{left:648.933333pt;}
.x9{left:700.306667pt;}
}




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