
    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_5134cb3a1cacf92e097c470f.woff')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_7bb87e96c08246039ae905fa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6d52f9ecad7162be41d71900.woff')format("woff");}.ff3{font-family:ff3;line-height:1.352051;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_e69189434a63be70558bf716.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1749da4acbf2a8ffedd8ae77.woff')format("woff");}.ff5{font-family:ff5;line-height:1.338867;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a15a88ae812df91f99b58112.woff')format("woff");}.ff8{font-family:ff8;line-height:0.877441;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_817585bcca9c7c60790b9ab1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.751953;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_fea5a017a776d1daccba0fe3.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a42c61a3d337bad5ae5cdf35.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6acb42d06fe8f49336714646.woff')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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);}
.v2{vertical-align:-6.480000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v3{vertical-align:6.480000px;}
.v1{vertical-align:27.360000px;}
.ls17{letter-spacing:-24.000000px;}
.ls31{letter-spacing:-23.460000px;}
.ls49{letter-spacing:-2.376000px;}
.ls19{letter-spacing:-2.304000px;}
.ls12{letter-spacing:-1.656000px;}
.ls1a{letter-spacing:-1.584000px;}
.ls15{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.224000px;}
.ls4f{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.576000px;}
.ls3c{letter-spacing:-0.432000px;}
.ls50{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.000006px;}
.lse{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000003px;}
.ls14{letter-spacing:0.000006px;}
.ls18{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls4a{letter-spacing:0.336000px;}
.ls45{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.396000px;}
.ls42{letter-spacing:0.504000px;}
.ls47{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.864000px;}
.ls46{letter-spacing:1.080000px;}
.ls4c{letter-spacing:1.416000px;}
.lsb{letter-spacing:1.440000px;}
.ls2c{letter-spacing:1.560000px;}
.ls2b{letter-spacing:1.620000px;}
.lsc{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.280000px;}
.ls1f{letter-spacing:2.340000px;}
.ls3{letter-spacing:2.880000px;}
.ls37{letter-spacing:3.060000px;}
.ls20{letter-spacing:3.600000px;}
.ls30{letter-spacing:3.720000px;}
.ls3f{letter-spacing:4.320000px;}
.ls40{letter-spacing:4.440000px;}
.ls2d{letter-spacing:5.040000px;}
.ls38{letter-spacing:5.760000px;}
.ls4d{letter-spacing:5.940000px;}
.ls5{letter-spacing:6.456000px;}
.ls6{letter-spacing:6.480000px;}
.ls7{letter-spacing:6.600000px;}
.ls8{letter-spacing:6.660000px;}
.ls9{letter-spacing:7.200000px;}
.ls4e{letter-spacing:7.920000px;}
.ls28{letter-spacing:8.640000px;}
.ls2a{letter-spacing:8.820000px;}
.ls29{letter-spacing:9.360000px;}
.ls39{letter-spacing:9.540000px;}
.ls2f{letter-spacing:10.080000px;}
.ls3d{letter-spacing:10.260000px;}
.ls23{letter-spacing:10.800000px;}
.ls4{letter-spacing:11.520000px;}
.ls3a{letter-spacing:12.240000px;}
.ls3e{letter-spacing:12.420000px;}
.ls26{letter-spacing:12.960000px;}
.ls36{letter-spacing:13.140000px;}
.ls27{letter-spacing:13.680000px;}
.ls2e{letter-spacing:14.400000px;}
.ls1{letter-spacing:15.120000px;}
.ls41{letter-spacing:15.840000px;}
.lsd{letter-spacing:18.720000px;}
.ls32{letter-spacing:19.152000px;}
.ls43{letter-spacing:33.984000px;}
.ls33{letter-spacing:38.880000px;}
.ls34{letter-spacing:39.600000px;}
.ls48{letter-spacing:51.264000px;}
.ls25{letter-spacing:54.864000px;}
.ls21{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,120,215),0 0.015em rgb(0,120,215),0.015em 0 rgb(0,120,215),0 -0.015em  rgb(0,120,215);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,120,215);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-72.000000px;}
.ws1a{word-spacing:-59.760000px;}
.ws1{word-spacing:-45.864000px;}
.ws2b{word-spacing:-45.792000px;}
.ws1c{word-spacing:-45.720000px;}
.ws0{word-spacing:-45.576000px;}
.ws1b{word-spacing:-45.288000px;}
.ws24{word-spacing:-45.144000px;}
.ws2{word-spacing:-44.352000px;}
.ws13{word-spacing:-44.064000px;}
.ws34{word-spacing:-43.920000px;}
.ws27{word-spacing:-43.848000px;}
.wsc{word-spacing:-43.632000px;}
.ws12{word-spacing:-43.560000px;}
.wse{word-spacing:-43.416000px;}
.ws8{word-spacing:-43.344006px;}
.wsa{word-spacing:-43.344003px;}
.ws4{word-spacing:-43.344000px;}
.ws11{word-spacing:-43.343994px;}
.wsb{word-spacing:-43.200000px;}
.ws5{word-spacing:-43.128000px;}
.ws10{word-spacing:-43.056000px;}
.ws38{word-spacing:-42.984000px;}
.ws35{word-spacing:-42.912000px;}
.ws2f{word-spacing:-42.624000px;}
.ws2a{word-spacing:-42.120000px;}
.ws9{word-spacing:-41.904000px;}
.wsf{word-spacing:-41.760000px;}
.ws7{word-spacing:-41.688000px;}
.ws2e{word-spacing:-40.608000px;}
.ws2d{word-spacing:-25.488000px;}
.ws2c{word-spacing:-25.128000px;}
.ws22{word-spacing:-24.696000px;}
.ws29{word-spacing:-24.444000px;}
.ws3{word-spacing:-23.328000px;}
.ws36{word-spacing:-20.376000px;}
.ws6{word-spacing:-19.656000px;}
.ws1e{word-spacing:-19.608000px;}
.ws23{word-spacing:-19.584000px;}
.ws1f{word-spacing:-19.512000px;}
.ws28{word-spacing:-19.404000px;}
.ws37{word-spacing:-19.392000px;}
.ws32{word-spacing:-19.332000px;}
.ws17{word-spacing:-18.936000px;}
.ws33{word-spacing:-18.792000px;}
.ws31{word-spacing:-18.576000px;}
.ws26{word-spacing:-18.216000px;}
.ws30{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.784000px;}
.ws25{word-spacing:-16.776000px;}
.ws16{word-spacing:0.000000px;}
.ws19{word-spacing:25.092000px;}
.wsd{word-spacing:28.440000px;}
.ws20{word-spacing:28.560000px;}
.ws18{word-spacing:28.620000px;}
.ws14{word-spacing:29.160000px;}
._1a{margin-left:-83.736000px;}
._19{margin-left:-26.004000px;}
._8{margin-left:-24.012000px;}
._6{margin-left:-22.344000px;}
._17{margin-left:-13.680000px;}
._14{margin-left:-12.060023px;}
._d{margin-left:-10.356000px;}
._9{margin-left:-8.844011px;}
._13{margin-left:-7.257600px;}
._3{margin-left:-5.616000px;}
._f{margin-left:-4.416009px;}
._4{margin-left:-3.096000px;}
._0{margin-left:-1.512000px;}
._1{width:1.368000px;}
._5{width:3.312000px;}
._e{width:4.836000px;}
._2{width:6.240000px;}
._a{width:7.848000px;}
._15{width:9.468000px;}
._c{width:10.835977px;}
._b{width:12.300011px;}
._16{width:14.088000px;}
._7{width:15.168000px;}
._1e{width:16.872000px;}
._10{width:19.056000px;}
._1f{width:20.352000px;}
._11{width:26.352000px;}
._12{width:27.720000px;}
._1b{width:32.472000px;}
._1c{width:33.552000px;}
._1d{width:34.560000px;}
._18{width:38.880000px;}
._21{width:42.624000px;}
._20{width:45.864000px;}
._22{width:846.300000px;}
.fc1{color:rgb(0,120,215);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:3.960000px;}
.y54{bottom:4.500000px;}
.yda{bottom:7.200000px;}
.yd4{bottom:14.400000px;}
.y58{bottom:16.380000px;}
.y5a{bottom:16.560000px;}
.yd8{bottom:17.460000px;}
.yd5{bottom:24.660000px;}
.yd9{bottom:27.900000px;}
.y57{bottom:28.440000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y52{bottom:100.836000px;}
.y105{bottom:101.376000px;}
.y9e{bottom:103.356000px;}
.ybf{bottom:106.236000px;}
.y51{bottom:121.536000px;}
.y2b{bottom:123.516000px;}
.y104{bottom:125.316000px;}
.ye4{bottom:126.756000px;}
.ybe{bottom:126.936000px;}
.y9d{bottom:127.296000px;}
.y50{bottom:142.236000px;}
.y2a{bottom:144.216000px;}
.ye3{bottom:147.996000px;}
.ybd{bottom:148.176000px;}
.y103{bottom:149.256000px;}
.y9c{bottom:151.230000px;}
.y77{bottom:151.770000px;}
.y11d{bottom:152.850000px;}
.y4f{bottom:163.470000px;}
.y29{bottom:165.450000px;}
.ybc{bottom:171.570000px;}
.ye2{bottom:171.930000px;}
.y102{bottom:173.190000px;}
.y11c{bottom:173.550000px;}
.y9b{bottom:175.170000px;}
.y76{bottom:175.710000px;}
.y4e{bottom:187.410000px;}
.y28{bottom:189.390000px;}
.ybb{bottom:194.070000px;}
.y11b{bottom:194.250000px;}
.ye1{bottom:195.870000px;}
.y101{bottom:197.130000px;}
.y9a{bottom:199.110000px;}
.y75{bottom:199.650000px;}
.y4d{bottom:211.350000px;}
.y27{bottom:213.330000px;}
.y11a{bottom:214.950000px;}
.yba{bottom:217.470000px;}
.ye0{bottom:219.810000px;}
.y100{bottom:221.070000px;}
.y99{bottom:223.050000px;}
.y74{bottom:223.590000px;}
.y4c{bottom:235.290000px;}
.y119{bottom:235.650000px;}
.y26{bottom:236.730000px;}
.yb9{bottom:239.970000px;}
.ydf{bottom:243.750000px;}
.yff{bottom:245.010000px;}
.y98{bottom:246.990000px;}
.y73{bottom:247.530000px;}
.y25{bottom:255.630000px;}
.y118{bottom:256.350000px;}
.y4b{bottom:259.230000px;}
.yb8{bottom:263.370000px;}
.yde{bottom:267.690000px;}
.y24{bottom:268.410000px;}
.y97{bottom:268.590000px;}
.yfe{bottom:268.950000px;}
.y72{bottom:271.470000px;}
.y117{bottom:277.050000px;}
.y96{bottom:281.370000px;}
.y4a{bottom:283.170000px;}
.yb7{bottom:285.330000px;}
.yfd{bottom:290.550000px;}
.ydd{bottom:291.675000px;}
.y23{bottom:292.395000px;}
.y71{bottom:295.455000px;}
.y116{bottom:297.795000px;}
.yfc{bottom:303.375000px;}
.y95{bottom:305.355000px;}
.yb6{bottom:306.075000px;}
.y49{bottom:307.155000px;}
.ydc{bottom:315.075000px;}
.y22{bottom:316.335000px;}
.y115{bottom:318.495000px;}
.y70{bottom:319.395000px;}
.yb5{bottom:326.775000px;}
.yfb{bottom:327.315000px;}
.y94{bottom:328.755000px;}
.y48{bottom:331.095000px;}
.ydb{bottom:333.795000px;}
.y114{bottom:339.195000px;}
.y21{bottom:340.275000px;}
.y6f{bottom:343.335000px;}
.yb4{bottom:347.475000px;}
.y93{bottom:351.255000px;}
.y47{bottom:355.035000px;}
.y113{bottom:359.895000px;}
.y20{bottom:364.215000px;}
.y6e{bottom:367.275000px;}
.yb3{bottom:368.715000px;}
.y92{bottom:375.195000px;}
.y136{bottom:375.375000px;}
.y46{bottom:378.975000px;}
.y112{bottom:380.595000px;}
.yd7{bottom:384.735000px;}
.y1f{bottom:388.155000px;}
.y6d{bottom:391.215000px;}
.yb2{bottom:392.115000px;}
.y135{bottom:396.615000px;}
.y91{bottom:398.595000px;}
.yfa{bottom:399.135000px;}
.y111{bottom:401.295000px;}
.y45{bottom:402.915000px;}
.y1e{bottom:412.095000px;}
.yb1{bottom:413.355000px;}
.y6c{bottom:415.155000px;}
.y134{bottom:420.555000px;}
.y90{bottom:421.095000px;}
.y110{bottom:421.995000px;}
.yf9{bottom:423.075000px;}
.y44{bottom:426.855000px;}
.yd3{bottom:435.495000px;}
.y1d{bottom:436.035000px;}
.yb0{bottom:437.295000px;}
.y6b{bottom:439.095000px;}
.y10f{bottom:442.695000px;}
.y133{bottom:444.495000px;}
.y8f{bottom:445.035000px;}
.yf8{bottom:447.015000px;}
.y43{bottom:450.795000px;}
.y1c{bottom:459.975000px;}
.yaf{bottom:460.695000px;}
.y6a{bottom:463.035000px;}
.y10e{bottom:463.395000px;}
.y8e{bottom:468.435000px;}
.yf7{bottom:468.615000px;}
.y42{bottom:474.735000px;}
.yf6{bottom:481.395000px;}
.yd2{bottom:482.835000px;}
.yae{bottom:483.195000px;}
.y1b{bottom:483.915000px;}
.y10d{bottom:484.095000px;}
.y69{bottom:486.975000px;}
.y8d{bottom:490.935000px;}
.y132{bottom:492.375000px;}
.y41{bottom:498.675000px;}
.yd1{bottom:501.555000px;}
.y10c{bottom:504.795000px;}
.yf5{bottom:505.335000px;}
.yad{bottom:506.775000px;}
.y1a{bottom:507.855000px;}
.y68{bottom:510.915000px;}
.yd0{bottom:513.795000px;}
.y8c{bottom:514.875000px;}
.y131{bottom:516.315000px;}
.y40{bottom:522.645000px;}
.y10b{bottom:525.525000px;}
.yac{bottom:528.765000px;}
.y19{bottom:531.825000px;}
.ycf{bottom:534.525000px;}
.y67{bottom:534.885000px;}
.y8b{bottom:538.845000px;}
.y130{bottom:540.285000px;}
.y10a{bottom:546.045000px;}
.y3f{bottom:546.585000px;}
.yab{bottom:549.465000px;}
.yf4{bottom:550.005000px;}
.y18{bottom:555.765000px;}
.y66{bottom:558.825000px;}
.y8a{bottom:562.245000px;}
.y12f{bottom:564.225000px;}
.y109{bottom:566.745000px;}
.y3e{bottom:570.705000px;}
.yf3{bottom:573.945000px;}
.y17{bottom:579.705000px;}
.y65{bottom:580.425000px;}
.y89{bottom:584.745000px;}
.y108{bottom:587.445000px;}
.y12e{bottom:587.625000px;}
.y64{bottom:593.205000px;}
.y3d{bottom:594.645000px;}
.yf2{bottom:597.345000px;}
.yce{bottom:603.105000px;}
.y16{bottom:603.645000px;}
.y88{bottom:606.345000px;}
.y12d{bottom:608.325000px;}
.y107{bottom:608.685000px;}
.y3c{bottom:616.065000px;}
.y63{bottom:617.145000px;}
.yaa{bottom:618.585000px;}
.y87{bottom:619.125000px;}
.ycd{bottom:624.345000px;}
.y15{bottom:627.585000px;}
.y3b{bottom:628.845000px;}
.y12c{bottom:629.025000px;}
.y106{bottom:630.285000px;}
.y62{bottom:641.085000px;}
.ya9{bottom:642.525000px;}
.y86{bottom:643.065000px;}
.ycc{bottom:647.745000px;}
.y12b{bottom:649.725000px;}
.y14{bottom:651.525000px;}
.y3a{bottom:652.785000px;}
.y61{bottom:662.505000px;}
.yf1{bottom:665.925000px;}
.ya8{bottom:666.465000px;}
.y85{bottom:667.005000px;}
.ycb{bottom:668.445000px;}
.y12a{bottom:670.425000px;}
.y13{bottom:673.125000px;}
.y60{bottom:675.285000px;}
.y39{bottom:676.725000px;}
.yf0{bottom:687.165000px;}
.yca{bottom:689.145000px;}
.y12{bottom:690.225000px;}
.ya7{bottom:690.405000px;}
.y84{bottom:690.945000px;}
.y129{bottom:691.125000px;}
.y5f{bottom:699.225000px;}
.y38{bottom:700.665000px;}
.yc9{bottom:709.845000px;}
.y11{bottom:710.925000px;}
.yef{bottom:711.105000px;}
.ya6{bottom:711.825000px;}
.y83{bottom:714.885000px;}
.y5e{bottom:723.165000px;}
.y37{bottom:724.605000px;}
.yc8{bottom:730.545000px;}
.y10{bottom:731.625000px;}
.y128{bottom:732.525000px;}
.yee{bottom:735.045000px;}
.y82{bottom:738.825000px;}
.y5d{bottom:744.765000px;}
.y36{bottom:748.545000px;}
.yf{bottom:750.345000px;}
.yc7{bottom:751.245000px;}
.y127{bottom:753.225000px;}
.y5c{bottom:753.810000px;}
.yed{bottom:758.490000px;}
.ye{bottom:762.630000px;}
.y81{bottom:762.810000px;}
.y35{bottom:770.190000px;}
.ya5{bottom:772.530000px;}
.y126{bottom:773.970000px;}
.yec{bottom:779.730000px;}
.y34{bottom:782.970000px;}
.yd{bottom:783.330000px;}
.y80{bottom:786.750000px;}
.y125{bottom:794.670000px;}
.ya4{bottom:795.930000px;}
.yc6{bottom:796.470000px;}
.y5b{bottom:802.410000px;}
.yeb{bottom:803.670000px;}
.yc{bottom:804.030000px;}
.y33{bottom:806.910000px;}
.y7f{bottom:810.690000px;}
.y124{bottom:815.370000px;}
.ya3{bottom:816.630000px;}
.yc5{bottom:820.410000px;}
.yb{bottom:822.930000px;}
.yea{bottom:827.070000px;}
.y32{bottom:830.850000px;}
.y7e{bottom:834.630000px;}
.ya{bottom:835.170000px;}
.y123{bottom:836.070000px;}
.ya2{bottom:837.870000px;}
.yc4{bottom:844.350000px;}
.ye9{bottom:848.310000px;}
.y59{bottom:851.010000px;}
.y31{bottom:854.790000px;}
.y9{bottom:855.870000px;}
.y122{bottom:856.770000px;}
.y7d{bottom:858.570000px;}
.ya1{bottom:861.810000px;}
.yc3{bottom:868.290000px;}
.ye8{bottom:872.250000px;}
.y8{bottom:876.570000px;}
.y121{bottom:877.470000px;}
.y30{bottom:878.730000px;}
.y7c{bottom:882.510000px;}
.ya0{bottom:885.750000px;}
.yc2{bottom:892.230000px;}
.ye7{bottom:896.190000px;}
.y7{bottom:897.270000px;}
.y120{bottom:898.170000px;}
.y56{bottom:899.790000px;}
.y2f{bottom:902.670000px;}
.y7b{bottom:906.450000px;}
.y9f{bottom:909.150000px;}
.yc1{bottom:915.630000px;}
.y6{bottom:915.990000px;}
.y11f{bottom:918.870000px;}
.ye6{bottom:920.130000px;}
.y2e{bottom:926.610000px;}
.y7a{bottom:930.390000px;}
.y5{bottom:933.630000px;}
.yc0{bottom:936.330000px;}
.y11e{bottom:939.570000px;}
.ye5{bottom:941.550000px;}
.y2d{bottom:948.030000px;}
.y55{bottom:948.390000px;}
.y79{bottom:954.330000px;}
.y4{bottom:957.570000px;}
.y2c{bottom:960.270000px;}
.y53{bottom:973.050000px;}
.y78{bottom:978.270000px;}
.y3{bottom:980.970000px;}
.ha{height:23.940000px;}
.h9{height:23.976000px;}
.h5{height:25.400391px;}
.h8{height:32.273438px;}
.he{height:41.400000px;}
.hb{height:47.880000px;}
.h3{height:50.800781px;}
.hc{height:52.417969px;}
.hd{height:58.113281px;}
.h6{height:64.546875px;}
.h2{height:67.824844px;}
.h7{height:70.606406px;}
.h4{height:77.695312px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w5{width:118.980000px;}
.w6{width:122.616000px;}
.w7{width:153.930000px;}
.w8{width:184.350000px;}
.w3{width:192.270000px;}
.w4{width:389.415000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x22{left:5.400000px;}
.x12{left:7.740000px;}
.x25{left:16.380000px;}
.x26{left:27.900000px;}
.x28{left:31.860000px;}
.x20{left:32.940000px;}
.x23{left:39.825000px;}
.x16{left:84.455988px;}
.x10{left:95.075988px;}
.xe{left:96.515988px;}
.x4{left:105.515988px;}
.x18{left:113.615988px;}
.x1e{left:117.035988px;}
.x11{left:122.075988px;}
.x1b{left:124.595988px;}
.x14{left:149.075988px;}
.xb{left:158.789988px;}
.x1a{left:170.669988px;}
.x8{left:173.729988px;}
.x15{left:176.069988px;}
.x7{left:185.429988px;}
.x21{left:215.490000px;}
.x17{left:229.709988px;}
.x19{left:232.949988px;}
.x1d{left:258.194988px;}
.x5{left:260.714988px;}
.xa{left:278.354988px;}
.xd{left:279.974988px;}
.xc{left:284.474988px;}
.xf{left:285.734988px;}
.x13{left:288.795000px;}
.x1f{left:324.434988px;}
.x3{left:330.914988px;}
.x9{left:336.674988px;}
.x24{left:339.015000px;}
.x6{left:346.574988px;}
.x1c{left:353.414988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.x27{left:493.845000px;}
@media print{
.v2{vertical-align:-5.760000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v3{vertical-align:5.760000pt;}
.v1{vertical-align:24.320000pt;}
.ls17{letter-spacing:-21.333333pt;}
.ls31{letter-spacing:-20.853333pt;}
.ls49{letter-spacing:-2.112000pt;}
.ls19{letter-spacing:-2.048000pt;}
.ls12{letter-spacing:-1.472000pt;}
.ls1a{letter-spacing:-1.408000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.088000pt;}
.ls4f{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.512000pt;}
.ls3c{letter-spacing:-0.384000pt;}
.ls50{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.000005pt;}
.lse{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000003pt;}
.ls14{letter-spacing:0.000005pt;}
.ls18{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls4a{letter-spacing:0.298667pt;}
.ls45{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.352000pt;}
.ls42{letter-spacing:0.448000pt;}
.ls47{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls46{letter-spacing:0.960000pt;}
.ls4c{letter-spacing:1.258667pt;}
.lsb{letter-spacing:1.280000pt;}
.ls2c{letter-spacing:1.386667pt;}
.ls2b{letter-spacing:1.440000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls3{letter-spacing:2.560000pt;}
.ls37{letter-spacing:2.720000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls30{letter-spacing:3.306667pt;}
.ls3f{letter-spacing:3.840000pt;}
.ls40{letter-spacing:3.946667pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls38{letter-spacing:5.120000pt;}
.ls4d{letter-spacing:5.280000pt;}
.ls5{letter-spacing:5.738667pt;}
.ls6{letter-spacing:5.760000pt;}
.ls7{letter-spacing:5.866667pt;}
.ls8{letter-spacing:5.920000pt;}
.ls9{letter-spacing:6.400000pt;}
.ls4e{letter-spacing:7.040000pt;}
.ls28{letter-spacing:7.680000pt;}
.ls2a{letter-spacing:7.840000pt;}
.ls29{letter-spacing:8.320000pt;}
.ls39{letter-spacing:8.480000pt;}
.ls2f{letter-spacing:8.960000pt;}
.ls3d{letter-spacing:9.120000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls4{letter-spacing:10.240000pt;}
.ls3a{letter-spacing:10.880000pt;}
.ls3e{letter-spacing:11.040000pt;}
.ls26{letter-spacing:11.520000pt;}
.ls36{letter-spacing:11.680000pt;}
.ls27{letter-spacing:12.160000pt;}
.ls2e{letter-spacing:12.800000pt;}
.ls1{letter-spacing:13.440000pt;}
.ls41{letter-spacing:14.080000pt;}
.lsd{letter-spacing:16.640000pt;}
.ls32{letter-spacing:17.024000pt;}
.ls43{letter-spacing:30.208000pt;}
.ls33{letter-spacing:34.560000pt;}
.ls34{letter-spacing:35.200000pt;}
.ls48{letter-spacing:45.568000pt;}
.ls25{letter-spacing:48.768000pt;}
.ls21{letter-spacing:56.912640pt;}
.ws1d{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws1{word-spacing:-40.768000pt;}
.ws2b{word-spacing:-40.704000pt;}
.ws1c{word-spacing:-40.640000pt;}
.ws0{word-spacing:-40.512000pt;}
.ws1b{word-spacing:-40.256000pt;}
.ws24{word-spacing:-40.128000pt;}
.ws2{word-spacing:-39.424000pt;}
.ws13{word-spacing:-39.168000pt;}
.ws34{word-spacing:-39.040000pt;}
.ws27{word-spacing:-38.976000pt;}
.wsc{word-spacing:-38.784000pt;}
.ws12{word-spacing:-38.720000pt;}
.wse{word-spacing:-38.592000pt;}
.ws8{word-spacing:-38.528005pt;}
.wsa{word-spacing:-38.528003pt;}
.ws4{word-spacing:-38.528000pt;}
.ws11{word-spacing:-38.527995pt;}
.wsb{word-spacing:-38.400000pt;}
.ws5{word-spacing:-38.336000pt;}
.ws10{word-spacing:-38.272000pt;}
.ws38{word-spacing:-38.208000pt;}
.ws35{word-spacing:-38.144000pt;}
.ws2f{word-spacing:-37.888000pt;}
.ws2a{word-spacing:-37.440000pt;}
.ws9{word-spacing:-37.248000pt;}
.wsf{word-spacing:-37.120000pt;}
.ws7{word-spacing:-37.056000pt;}
.ws2e{word-spacing:-36.096000pt;}
.ws2d{word-spacing:-22.656000pt;}
.ws2c{word-spacing:-22.336000pt;}
.ws22{word-spacing:-21.952000pt;}
.ws29{word-spacing:-21.728000pt;}
.ws3{word-spacing:-20.736000pt;}
.ws36{word-spacing:-18.112000pt;}
.ws6{word-spacing:-17.472000pt;}
.ws1e{word-spacing:-17.429333pt;}
.ws23{word-spacing:-17.408000pt;}
.ws1f{word-spacing:-17.344000pt;}
.ws28{word-spacing:-17.248000pt;}
.ws37{word-spacing:-17.237333pt;}
.ws32{word-spacing:-17.184000pt;}
.ws17{word-spacing:-16.832000pt;}
.ws33{word-spacing:-16.704000pt;}
.ws31{word-spacing:-16.512000pt;}
.ws26{word-spacing:-16.192000pt;}
.ws30{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.808000pt;}
.ws25{word-spacing:-14.912000pt;}
.ws16{word-spacing:0.000000pt;}
.ws19{word-spacing:22.304000pt;}
.wsd{word-spacing:25.280000pt;}
.ws20{word-spacing:25.386667pt;}
.ws18{word-spacing:25.440000pt;}
.ws14{word-spacing:25.920000pt;}
._1a{margin-left:-74.432000pt;}
._19{margin-left:-23.114667pt;}
._8{margin-left:-21.344000pt;}
._6{margin-left:-19.861333pt;}
._17{margin-left:-12.160000pt;}
._14{margin-left:-10.720020pt;}
._d{margin-left:-9.205333pt;}
._9{margin-left:-7.861344pt;}
._13{margin-left:-6.451200pt;}
._3{margin-left:-4.992000pt;}
._f{margin-left:-3.925341pt;}
._4{margin-left:-2.752000pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.216000pt;}
._5{width:2.944000pt;}
._e{width:4.298667pt;}
._2{width:5.546667pt;}
._a{width:6.976000pt;}
._15{width:8.416000pt;}
._c{width:9.631980pt;}
._b{width:10.933344pt;}
._16{width:12.522667pt;}
._7{width:13.482667pt;}
._1e{width:14.997333pt;}
._10{width:16.938667pt;}
._1f{width:18.090667pt;}
._11{width:23.424000pt;}
._12{width:24.640000pt;}
._1b{width:28.864000pt;}
._1c{width:29.824000pt;}
._1d{width:30.720000pt;}
._18{width:34.560000pt;}
._21{width:37.888000pt;}
._20{width:40.768000pt;}
._22{width:752.266667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:3.520000pt;}
.y54{bottom:4.000000pt;}
.yda{bottom:6.400000pt;}
.yd4{bottom:12.800000pt;}
.y58{bottom:14.560000pt;}
.y5a{bottom:14.720000pt;}
.yd8{bottom:15.520000pt;}
.yd5{bottom:21.920000pt;}
.yd9{bottom:24.800000pt;}
.y57{bottom:25.280000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y52{bottom:89.632000pt;}
.y105{bottom:90.112000pt;}
.y9e{bottom:91.872000pt;}
.ybf{bottom:94.432000pt;}
.y51{bottom:108.032000pt;}
.y2b{bottom:109.792000pt;}
.y104{bottom:111.392000pt;}
.ye4{bottom:112.672000pt;}
.ybe{bottom:112.832000pt;}
.y9d{bottom:113.152000pt;}
.y50{bottom:126.432000pt;}
.y2a{bottom:128.192000pt;}
.ye3{bottom:131.552000pt;}
.ybd{bottom:131.712000pt;}
.y103{bottom:132.672000pt;}
.y9c{bottom:134.426667pt;}
.y77{bottom:134.906667pt;}
.y11d{bottom:135.866667pt;}
.y4f{bottom:145.306667pt;}
.y29{bottom:147.066667pt;}
.ybc{bottom:152.506667pt;}
.ye2{bottom:152.826667pt;}
.y102{bottom:153.946667pt;}
.y11c{bottom:154.266667pt;}
.y9b{bottom:155.706667pt;}
.y76{bottom:156.186667pt;}
.y4e{bottom:166.586667pt;}
.y28{bottom:168.346667pt;}
.ybb{bottom:172.506667pt;}
.y11b{bottom:172.666667pt;}
.ye1{bottom:174.106667pt;}
.y101{bottom:175.226667pt;}
.y9a{bottom:176.986667pt;}
.y75{bottom:177.466667pt;}
.y4d{bottom:187.866667pt;}
.y27{bottom:189.626667pt;}
.y11a{bottom:191.066667pt;}
.yba{bottom:193.306667pt;}
.ye0{bottom:195.386667pt;}
.y100{bottom:196.506667pt;}
.y99{bottom:198.266667pt;}
.y74{bottom:198.746667pt;}
.y4c{bottom:209.146667pt;}
.y119{bottom:209.466667pt;}
.y26{bottom:210.426667pt;}
.yb9{bottom:213.306667pt;}
.ydf{bottom:216.666667pt;}
.yff{bottom:217.786667pt;}
.y98{bottom:219.546667pt;}
.y73{bottom:220.026667pt;}
.y25{bottom:227.226667pt;}
.y118{bottom:227.866667pt;}
.y4b{bottom:230.426667pt;}
.yb8{bottom:234.106667pt;}
.yde{bottom:237.946667pt;}
.y24{bottom:238.586667pt;}
.y97{bottom:238.746667pt;}
.yfe{bottom:239.066667pt;}
.y72{bottom:241.306667pt;}
.y117{bottom:246.266667pt;}
.y96{bottom:250.106667pt;}
.y4a{bottom:251.706667pt;}
.yb7{bottom:253.626667pt;}
.yfd{bottom:258.266667pt;}
.ydd{bottom:259.266667pt;}
.y23{bottom:259.906667pt;}
.y71{bottom:262.626667pt;}
.y116{bottom:264.706667pt;}
.yfc{bottom:269.666667pt;}
.y95{bottom:271.426667pt;}
.yb6{bottom:272.066667pt;}
.y49{bottom:273.026667pt;}
.ydc{bottom:280.066667pt;}
.y22{bottom:281.186667pt;}
.y115{bottom:283.106667pt;}
.y70{bottom:283.906667pt;}
.yb5{bottom:290.466667pt;}
.yfb{bottom:290.946667pt;}
.y94{bottom:292.226667pt;}
.y48{bottom:294.306667pt;}
.ydb{bottom:296.706667pt;}
.y114{bottom:301.506667pt;}
.y21{bottom:302.466667pt;}
.y6f{bottom:305.186667pt;}
.yb4{bottom:308.866667pt;}
.y93{bottom:312.226667pt;}
.y47{bottom:315.586667pt;}
.y113{bottom:319.906667pt;}
.y20{bottom:323.746667pt;}
.y6e{bottom:326.466667pt;}
.yb3{bottom:327.746667pt;}
.y92{bottom:333.506667pt;}
.y136{bottom:333.666667pt;}
.y46{bottom:336.866667pt;}
.y112{bottom:338.306667pt;}
.yd7{bottom:341.986667pt;}
.y1f{bottom:345.026667pt;}
.y6d{bottom:347.746667pt;}
.yb2{bottom:348.546667pt;}
.y135{bottom:352.546667pt;}
.y91{bottom:354.306667pt;}
.yfa{bottom:354.786667pt;}
.y111{bottom:356.706667pt;}
.y45{bottom:358.146667pt;}
.y1e{bottom:366.306667pt;}
.yb1{bottom:367.426667pt;}
.y6c{bottom:369.026667pt;}
.y134{bottom:373.826667pt;}
.y90{bottom:374.306667pt;}
.y110{bottom:375.106667pt;}
.yf9{bottom:376.066667pt;}
.y44{bottom:379.426667pt;}
.yd3{bottom:387.106667pt;}
.y1d{bottom:387.586667pt;}
.yb0{bottom:388.706667pt;}
.y6b{bottom:390.306667pt;}
.y10f{bottom:393.506667pt;}
.y133{bottom:395.106667pt;}
.y8f{bottom:395.586667pt;}
.yf8{bottom:397.346667pt;}
.y43{bottom:400.706667pt;}
.y1c{bottom:408.866667pt;}
.yaf{bottom:409.506667pt;}
.y6a{bottom:411.586667pt;}
.y10e{bottom:411.906667pt;}
.y8e{bottom:416.386667pt;}
.yf7{bottom:416.546667pt;}
.y42{bottom:421.986667pt;}
.yf6{bottom:427.906667pt;}
.yd2{bottom:429.186667pt;}
.yae{bottom:429.506667pt;}
.y1b{bottom:430.146667pt;}
.y10d{bottom:430.306667pt;}
.y69{bottom:432.866667pt;}
.y8d{bottom:436.386667pt;}
.y132{bottom:437.666667pt;}
.y41{bottom:443.266667pt;}
.yd1{bottom:445.826667pt;}
.y10c{bottom:448.706667pt;}
.yf5{bottom:449.186667pt;}
.yad{bottom:450.466667pt;}
.y1a{bottom:451.426667pt;}
.y68{bottom:454.146667pt;}
.yd0{bottom:456.706667pt;}
.y8c{bottom:457.666667pt;}
.y131{bottom:458.946667pt;}
.y40{bottom:464.573333pt;}
.y10b{bottom:467.133333pt;}
.yac{bottom:470.013333pt;}
.y19{bottom:472.733333pt;}
.ycf{bottom:475.133333pt;}
.y67{bottom:475.453333pt;}
.y8b{bottom:478.973333pt;}
.y130{bottom:480.253333pt;}
.y10a{bottom:485.373333pt;}
.y3f{bottom:485.853333pt;}
.yab{bottom:488.413333pt;}
.yf4{bottom:488.893333pt;}
.y18{bottom:494.013333pt;}
.y66{bottom:496.733333pt;}
.y8a{bottom:499.773333pt;}
.y12f{bottom:501.533333pt;}
.y109{bottom:503.773333pt;}
.y3e{bottom:507.293333pt;}
.yf3{bottom:510.173333pt;}
.y17{bottom:515.293333pt;}
.y65{bottom:515.933333pt;}
.y89{bottom:519.773333pt;}
.y108{bottom:522.173333pt;}
.y12e{bottom:522.333333pt;}
.y64{bottom:527.293333pt;}
.y3d{bottom:528.573333pt;}
.yf2{bottom:530.973333pt;}
.yce{bottom:536.093333pt;}
.y16{bottom:536.573333pt;}
.y88{bottom:538.973333pt;}
.y12d{bottom:540.733333pt;}
.y107{bottom:541.053333pt;}
.y3c{bottom:547.613333pt;}
.y63{bottom:548.573333pt;}
.yaa{bottom:549.853333pt;}
.y87{bottom:550.333333pt;}
.ycd{bottom:554.973333pt;}
.y15{bottom:557.853333pt;}
.y3b{bottom:558.973333pt;}
.y12c{bottom:559.133333pt;}
.y106{bottom:560.253333pt;}
.y62{bottom:569.853333pt;}
.ya9{bottom:571.133333pt;}
.y86{bottom:571.613333pt;}
.ycc{bottom:575.773333pt;}
.y12b{bottom:577.533333pt;}
.y14{bottom:579.133333pt;}
.y3a{bottom:580.253333pt;}
.y61{bottom:588.893333pt;}
.yf1{bottom:591.933333pt;}
.ya8{bottom:592.413333pt;}
.y85{bottom:592.893333pt;}
.ycb{bottom:594.173333pt;}
.y12a{bottom:595.933333pt;}
.y13{bottom:598.333333pt;}
.y60{bottom:600.253333pt;}
.y39{bottom:601.533333pt;}
.yf0{bottom:610.813333pt;}
.yca{bottom:612.573333pt;}
.y12{bottom:613.533333pt;}
.ya7{bottom:613.693333pt;}
.y84{bottom:614.173333pt;}
.y129{bottom:614.333333pt;}
.y5f{bottom:621.533333pt;}
.y38{bottom:622.813333pt;}
.yc9{bottom:630.973333pt;}
.y11{bottom:631.933333pt;}
.yef{bottom:632.093333pt;}
.ya6{bottom:632.733333pt;}
.y83{bottom:635.453333pt;}
.y5e{bottom:642.813333pt;}
.y37{bottom:644.093333pt;}
.yc8{bottom:649.373333pt;}
.y10{bottom:650.333333pt;}
.y128{bottom:651.133333pt;}
.yee{bottom:653.373333pt;}
.y82{bottom:656.733333pt;}
.y5d{bottom:662.013333pt;}
.y36{bottom:665.373333pt;}
.yf{bottom:666.973333pt;}
.yc7{bottom:667.773333pt;}
.y127{bottom:669.533333pt;}
.y5c{bottom:670.053333pt;}
.yed{bottom:674.213333pt;}
.ye{bottom:677.893333pt;}
.y81{bottom:678.053333pt;}
.y35{bottom:684.613333pt;}
.ya5{bottom:686.693333pt;}
.y126{bottom:687.973333pt;}
.yec{bottom:693.093333pt;}
.y34{bottom:695.973333pt;}
.yd{bottom:696.293333pt;}
.y80{bottom:699.333333pt;}
.y125{bottom:706.373333pt;}
.ya4{bottom:707.493333pt;}
.yc6{bottom:707.973333pt;}
.y5b{bottom:713.253333pt;}
.yeb{bottom:714.373333pt;}
.yc{bottom:714.693333pt;}
.y33{bottom:717.253333pt;}
.y7f{bottom:720.613333pt;}
.y124{bottom:724.773333pt;}
.ya3{bottom:725.893333pt;}
.yc5{bottom:729.253333pt;}
.yb{bottom:731.493333pt;}
.yea{bottom:735.173333pt;}
.y32{bottom:738.533333pt;}
.y7e{bottom:741.893333pt;}
.ya{bottom:742.373333pt;}
.y123{bottom:743.173333pt;}
.ya2{bottom:744.773333pt;}
.yc4{bottom:750.533333pt;}
.ye9{bottom:754.053333pt;}
.y59{bottom:756.453333pt;}
.y31{bottom:759.813333pt;}
.y9{bottom:760.773333pt;}
.y122{bottom:761.573333pt;}
.y7d{bottom:763.173333pt;}
.ya1{bottom:766.053333pt;}
.yc3{bottom:771.813333pt;}
.ye8{bottom:775.333333pt;}
.y8{bottom:779.173333pt;}
.y121{bottom:779.973333pt;}
.y30{bottom:781.093333pt;}
.y7c{bottom:784.453333pt;}
.ya0{bottom:787.333333pt;}
.yc2{bottom:793.093333pt;}
.ye7{bottom:796.613333pt;}
.y7{bottom:797.573333pt;}
.y120{bottom:798.373333pt;}
.y56{bottom:799.813333pt;}
.y2f{bottom:802.373333pt;}
.y7b{bottom:805.733333pt;}
.y9f{bottom:808.133333pt;}
.yc1{bottom:813.893333pt;}
.y6{bottom:814.213333pt;}
.y11f{bottom:816.773333pt;}
.ye6{bottom:817.893333pt;}
.y2e{bottom:823.653333pt;}
.y7a{bottom:827.013333pt;}
.y5{bottom:829.893333pt;}
.yc0{bottom:832.293333pt;}
.y11e{bottom:835.173333pt;}
.ye5{bottom:836.933333pt;}
.y2d{bottom:842.693333pt;}
.y55{bottom:843.013333pt;}
.y79{bottom:848.293333pt;}
.y4{bottom:851.173333pt;}
.y2c{bottom:853.573333pt;}
.y53{bottom:864.933333pt;}
.y78{bottom:869.573333pt;}
.y3{bottom:871.973333pt;}
.ha{height:21.280000pt;}
.h9{height:21.312000pt;}
.h5{height:22.578125pt;}
.h8{height:28.687500pt;}
.he{height:36.800000pt;}
.hb{height:42.560000pt;}
.h3{height:45.156250pt;}
.hc{height:46.593750pt;}
.hd{height:51.656250pt;}
.h6{height:57.375000pt;}
.h2{height:60.288750pt;}
.h7{height:62.761250pt;}
.h4{height:69.062500pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w5{width:105.760000pt;}
.w6{width:108.992000pt;}
.w7{width:136.826667pt;}
.w8{width:163.866667pt;}
.w3{width:170.906667pt;}
.w4{width:346.146667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x22{left:4.800000pt;}
.x12{left:6.880000pt;}
.x25{left:14.560000pt;}
.x26{left:24.800000pt;}
.x28{left:28.320000pt;}
.x20{left:29.280000pt;}
.x23{left:35.400000pt;}
.x16{left:75.071990pt;}
.x10{left:84.511990pt;}
.xe{left:85.791990pt;}
.x4{left:93.791990pt;}
.x18{left:100.991990pt;}
.x1e{left:104.031990pt;}
.x11{left:108.511990pt;}
.x1b{left:110.751990pt;}
.x14{left:132.511990pt;}
.xb{left:141.146656pt;}
.x1a{left:151.706656pt;}
.x8{left:154.426656pt;}
.x15{left:156.506656pt;}
.x7{left:164.826656pt;}
.x21{left:191.546667pt;}
.x17{left:204.186656pt;}
.x19{left:207.066656pt;}
.x1d{left:229.506656pt;}
.x5{left:231.746656pt;}
.xa{left:247.426656pt;}
.xd{left:248.866656pt;}
.xc{left:252.866656pt;}
.xf{left:253.986656pt;}
.x13{left:256.706667pt;}
.x1f{left:288.386656pt;}
.x3{left:294.146656pt;}
.x9{left:299.266656pt;}
.x24{left:301.346667pt;}
.x6{left:308.066656pt;}
.x1c{left:314.146656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.x27{left:438.973333pt;}
}




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