
    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_f0304e629c1fe45ff6b7ce29.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2af524bbd5303aa640eb6c21.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_b288c91b6acfe6a56a59d2f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_8b5e200bcd38cef716e91dda.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_021973ca5e281cd074691827.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166504;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_49c64b093db839c95429ae0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166504;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_ed821e9e910432fbc1627d3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_27fcef358cbf5d30e9effb23.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_44c7d5e8080a2aea298b5000.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_363715726196f7842f671f85.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b485ae944fed96f8e262b2cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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_0e2c041360c36322497fad02.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_84bcc7931b8909fda20adfd5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_74097268492a7cc8e753c0bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_953531b856a47a5c3cbf309b.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_05be08a702e2691d3e19e3d3.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.618000px;}
.ls1b{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.334200px;}
.ls21{letter-spacing:-0.316800px;}
.ls14{letter-spacing:-0.172800px;}
.lsb{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.109200px;}
.ls13{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.097800px;}
.ls4{letter-spacing:-0.051840px;}
.ls11{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.023040px;}
.ls17{letter-spacing:0.048960px;}
.ls1e{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144720px;}
.ls10{letter-spacing:0.152784px;}
.ls1a{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.187200px;}
.lsf{letter-spacing:0.210240px;}
.ls9{letter-spacing:0.303000px;}
.ls1d{letter-spacing:0.305280px;}
.ls1f{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.316800px;}
.lse{letter-spacing:0.334080px;}
.lsd{letter-spacing:4.867200px;}
.ls22{letter-spacing:7.747200px;}
.ls12{letter-spacing:8.467200px;}
.lsc{letter-spacing:12.787200px;}
.ls16{letter-spacing:14.227200px;}
.ls6{letter-spacing:27.665280px;}
.ls7{letter-spacing:38.707200px;}
.ls1c{letter-spacing:51.667200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-16.560000px;}
.wsc{word-spacing:-14.940000px;}
.wse{word-spacing:-14.889600px;}
.ws13{word-spacing:-14.878200px;}
.wsb{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.679600px;}
.ws11{word-spacing:-14.621760px;}
.ws4{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws10{word-spacing:-14.463600px;}
.ws14{word-spacing:-14.256000px;}
.ws3{word-spacing:-14.238600px;}
.ws12{word-spacing:-14.158200px;}
.ws5{word-spacing:-13.450200px;}
.ws6{word-spacing:-13.160160px;}
.ws9{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.136400px;}
.ws7{word-spacing:-13.049400px;}
.ws8{word-spacing:-13.026000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:3.047040px;}
._a{margin-left:-5.248800px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.170800px;}
._3{width:3.568800px;}
._14{width:4.595040px;}
._b{width:6.002400px;}
._c{width:7.052160px;}
._4{width:8.519760px;}
._f{width:9.660000px;}
._e{width:10.730880px;}
._d{width:12.519360px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._1b{width:16.560000px;}
._11{width:17.752320px;}
._10{width:19.275840px;}
._16{width:20.401920px;}
._20{width:21.498240px;}
._18{width:22.521600px;}
._19{width:23.978880px;}
._12{width:25.767360px;}
._13{width:26.827200px;}
._1a{width:27.999840px;}
._1f{width:29.278080px;}
._1d{width:30.337920px;}
._1c{width:31.397760px;}
._1e{width:32.513040px;}
._17{width:34.179840px;}
._15{width:36.233280px;}
._22{width:37.955520px;}
._21{width:39.234720px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._24{width:43.523760px;}
._2c{width:46.169280px;}
._2d{width:47.229120px;}
._29{width:48.487680px;}
._2a{width:49.547520px;}
._26{width:142.151040px;}
._28{width:146.027520px;}
._27{width:147.257760px;}
._2e{width:170.899200px;}
._1{width:201.403200px;}
._23{width:426.952800px;}
._2b{width:1757.280960px;}
._25{width:2348.203200px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y16e{bottom:-7.305000px;}
.y12b{bottom:-1.695000px;}
.y115{bottom:-1.515000px;}
.y0{bottom:0.000000px;}
.y122{bottom:3.030000px;}
.y112{bottom:3.232500px;}
.yc0{bottom:3.240000px;}
.y10c{bottom:3.405000px;}
.ybb{bottom:3.420000px;}
.ycd{bottom:3.450000px;}
.y92{bottom:3.600000px;}
.y8e{bottom:3.780000px;}
.ye7{bottom:4.860000px;}
.y125{bottom:7.350000px;}
.y11f{bottom:7.845000px;}
.y128{bottom:8.385000px;}
.y118{bottom:8.610000px;}
.y171{bottom:10.335000px;}
.y167{bottom:10.875000px;}
.y111{bottom:20.872500px;}
.ybf{bottom:20.880000px;}
.y10b{bottom:21.045000px;}
.yb9{bottom:21.060000px;}
.ycc{bottom:21.090000px;}
.ye5{bottom:22.500000px;}
.y90{bottom:23.760000px;}
.y124{bottom:26.790000px;}
.y12d{bottom:27.645000px;}
.y127{bottom:27.870000px;}
.y170{bottom:29.955000px;}
.y117{bottom:32.370000px;}
.y12a{bottom:35.565000px;}
.y114{bottom:35.790000px;}
.y10a{bottom:38.505000px;}
.y110{bottom:38.506500px;}
.ybe{bottom:38.520000px;}
.ycb{bottom:38.550000px;}
.yeb{bottom:38.565000px;}
.y15c{bottom:38.625000px;}
.yc2{bottom:38.700000px;}
.y15f{bottom:39.705000px;}
.y121{bottom:40.290000px;}
.y99{bottom:42.300000px;}
.y11a{bottom:43.890000px;}
.y11d{bottom:46.410000px;}
.y16c{bottom:49.215000px;}
.y169{bottom:53.355000px;}
.y10f{bottom:55.966500px;}
.ybd{bottom:55.980000px;}
.y12f{bottom:56.010000px;}
.yc4{bottom:56.025000px;}
.y109{bottom:56.145000px;}
.yc7{bottom:56.160000px;}
.yca{bottom:56.190000px;}
.y2f{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.y94{bottom:61.740000px;}
.y11c{bottom:65.670000px;}
.y161{bottom:69.015000px;}
.y165{bottom:70.275000px;}
.y10e{bottom:73.606500px;}
.yee{bottom:73.620000px;}
.yc{bottom:73.656000px;}
.y108{bottom:73.785000px;}
.yc6{bottom:73.800000px;}
.yb{bottom:89.136000px;}
.y107{bottom:91.245000px;}
.y9d{bottom:94.710000px;}
.ya{bottom:104.616000px;}
.yb6{bottom:115.236000px;}
.y8a{bottom:116.316000px;}
.ye3{bottom:119.016000px;}
.y9{bottom:120.096000px;}
.y101{bottom:120.276000px;}
.y10d{bottom:121.543500px;}
.y5a{bottom:124.596000px;}
.y15a{bottom:127.656000px;}
.yb5{bottom:134.676000px;}
.y8{bottom:135.576000px;}
.y89{bottom:135.756000px;}
.ye2{bottom:138.276000px;}
.y59{bottom:143.856000px;}
.y18d{bottom:145.296000px;}
.y159{bottom:147.096000px;}
.yb4{bottom:153.930000px;}
.y88{bottom:155.010000px;}
.y100{bottom:157.530000px;}
.ye1{bottom:157.710000px;}
.y58{bottom:163.290000px;}
.y18c{bottom:164.730000px;}
.y158{bottom:166.350000px;}
.yb3{bottom:173.370000px;}
.y87{bottom:174.450000px;}
.ye0{bottom:176.970000px;}
.yff{bottom:179.850000px;}
.y57{bottom:182.550000px;}
.y18b{bottom:183.990000px;}
.y157{bottom:185.610000px;}
.y2d{bottom:186.330000px;}
.yb2{bottom:192.630000px;}
.y86{bottom:193.710000px;}
.ydf{bottom:196.410000px;}
.y56{bottom:201.990000px;}
.y18a{bottom:203.430000px;}
.y156{bottom:205.050000px;}
.y106{bottom:209.385000px;}
.yb1{bottom:212.070000px;}
.y85{bottom:212.970000px;}
.yde{bottom:215.670000px;}
.y55{bottom:221.250000px;}
.yfe{bottom:221.430000px;}
.y189{bottom:222.690000px;}
.y155{bottom:224.310000px;}
.y2c{bottom:225.030000px;}
.yb0{bottom:231.330000px;}
.y84{bottom:232.410000px;}
.ydd{bottom:235.110000px;}
.y54{bottom:240.510000px;}
.yfd{bottom:240.690000px;}
.y188{bottom:242.130000px;}
.y154{bottom:243.750000px;}
.y2b{bottom:249.150000px;}
.yaf{bottom:250.770000px;}
.y83{bottom:251.670000px;}
.ydc{bottom:254.370000px;}
.y53{bottom:259.950000px;}
.yfc{bottom:260.130000px;}
.y187{bottom:261.390000px;}
.y153{bottom:263.010000px;}
.yae{bottom:270.030000px;}
.y82{bottom:271.110000px;}
.ydb{bottom:273.810000px;}
.y52{bottom:279.210000px;}
.yfb{bottom:279.390000px;}
.y186{bottom:280.830000px;}
.y152{bottom:282.450000px;}
.yad{bottom:289.290000px;}
.y81{bottom:290.370000px;}
.y2a{bottom:290.550000px;}
.yda{bottom:293.070000px;}
.y51{bottom:298.650000px;}
.yfa{bottom:298.830000px;}
.y185{bottom:300.090000px;}
.y151{bottom:301.710000px;}
.yac{bottom:308.730000px;}
.y80{bottom:309.855000px;}
.yd9{bottom:312.375000px;}
.y29{bottom:312.735000px;}
.y105{bottom:314.895000px;}
.y50{bottom:317.955000px;}
.yf9{bottom:318.135000px;}
.y184{bottom:319.575000px;}
.y150{bottom:321.195000px;}
.yab{bottom:328.035000px;}
.y7f{bottom:329.115000px;}
.yd8{bottom:331.815000px;}
.y28{bottom:335.055000px;}
.y4f{bottom:337.395000px;}
.yf8{bottom:337.575000px;}
.y183{bottom:338.835000px;}
.y14f{bottom:340.455000px;}
.yaa{bottom:347.475000px;}
.y7e{bottom:348.555000px;}
.yd7{bottom:351.075000px;}
.y4e{bottom:356.655000px;}
.yf7{bottom:356.835000px;}
.y27{bottom:357.375000px;}
.y16b{bottom:358.020000px;}
.y182{bottom:358.095000px;}
.y14e{bottom:359.895000px;}
.y16f{bottom:364.140000px;}
.ya9{bottom:366.735000px;}
.y104{bottom:367.635000px;}
.y7d{bottom:367.815000px;}
.yd6{bottom:370.515000px;}
.y4d{bottom:376.095000px;}
.y181{bottom:377.535000px;}
.y14d{bottom:379.155000px;}
.y26{bottom:379.515000px;}
.ya8{bottom:386.175000px;}
.y160{bottom:387.180000px;}
.y7c{bottom:387.255000px;}
.y16d{bottom:387.975000px;}
.yd5{bottom:389.775000px;}
.y4c{bottom:395.355000px;}
.yf6{bottom:395.535000px;}
.y180{bottom:396.795000px;}
.y14c{bottom:398.595000px;}
.y25{bottom:401.835000px;}
.ya7{bottom:405.435000px;}
.y7b{bottom:406.515000px;}
.yd4{bottom:409.215000px;}
.y4b{bottom:414.795000px;}
.y17f{bottom:416.235000px;}
.y14b{bottom:417.855000px;}
.y163{bottom:421.635000px;}
.y102{bottom:421.995000px;}
.y24{bottom:423.975000px;}
.ya6{bottom:424.875000px;}
.y7a{bottom:425.955000px;}
.yd3{bottom:428.475000px;}
.y4a{bottom:434.055000px;}
.yf5{bottom:434.235000px;}
.y164{bottom:434.700000px;}
.y17e{bottom:435.495000px;}
.y14a{bottom:437.295000px;}
.y162{bottom:438.915000px;}
.y168{bottom:440.820000px;}
.y103{bottom:441.075000px;}
.ya5{bottom:444.135000px;}
.y79{bottom:445.215000px;}
.y23{bottom:446.295000px;}
.yd2{bottom:447.915000px;}
.yf4{bottom:453.495000px;}
.y17d{bottom:454.935000px;}
.y149{bottom:456.555000px;}
.y49{bottom:463.035000px;}
.ya4{bottom:463.575000px;}
.y78{bottom:464.655000px;}
.yd1{bottom:467.175000px;}
.y166{bottom:467.715000px;}
.y22{bottom:468.615000px;}
.yf3{bottom:472.935000px;}
.y17c{bottom:474.195000px;}
.y16a{bottom:474.915000px;}
.y148{bottom:475.815000px;}
.ya3{bottom:482.835000px;}
.y77{bottom:483.915000px;}
.yd0{bottom:486.615000px;}
.y21{bottom:490.755000px;}
.yf2{bottom:491.835000px;}
.y17b{bottom:493.635000px;}
.y147{bottom:495.255000px;}
.y48{bottom:500.295000px;}
.ya2{bottom:502.275000px;}
.y76{bottom:503.175000px;}
.ycf{bottom:505.875000px;}
.yf1{bottom:509.475000px;}
.y17a{bottom:512.895000px;}
.y20{bottom:513.075000px;}
.y146{bottom:514.515000px;}
.y9c{bottom:521.175000px;}
.y47{bottom:522.615000px;}
.yce{bottom:524.955000px;}
.yf0{bottom:526.035000px;}
.y179{bottom:532.335000px;}
.y145{bottom:533.955000px;}
.y1f{bottom:535.215000px;}
.y75{bottom:541.875000px;}
.ya1{bottom:544.035000px;}
.y15b{bottom:549.180000px;}
.y178{bottom:551.595000px;}
.y144{bottom:553.215000px;}
.y15e{bottom:553.860000px;}
.y1e{bottom:557.535000px;}
.y46{bottom:559.875000px;}
.yc9{bottom:560.055000px;}
.yef{bottom:561.165000px;}
.y74{bottom:561.345000px;}
.y15d{bottom:563.835000px;}
.ya0{bottom:566.745000px;}
.y177{bottom:571.065000px;}
.y143{bottom:572.685000px;}
.y1d{bottom:579.885000px;}
.y73{bottom:580.605000px;}
.y45{bottom:582.045000px;}
.y9f{bottom:589.425000px;}
.y176{bottom:590.325000px;}
.y142{bottom:591.945000px;}
.y72{bottom:600.045000px;}
.y1c{bottom:602.025000px;}
.y44{bottom:604.365000px;}
.y175{bottom:609.765000px;}
.y141{bottom:611.385000px;}
.y9e{bottom:612.105000px;}
.y71{bottom:619.305000px;}
.y1b{bottom:624.345000px;}
.y43{bottom:626.685000px;}
.y174{bottom:629.025000px;}
.yc8{bottom:630.465000px;}
.y140{bottom:630.645000px;}
.y98{bottom:631.545000px;}
.y70{bottom:638.745000px;}
.y1a{bottom:646.485000px;}
.y173{bottom:648.285000px;}
.y42{bottom:648.825000px;}
.yed{bottom:649.185000px;}
.y13f{bottom:650.085000px;}
.y9b{bottom:650.805000px;}
.y6f{bottom:658.005000px;}
.y172{bottom:667.725000px;}
.y19{bottom:668.805000px;}
.y13e{bottom:669.345000px;}
.y9a{bottom:670.245000px;}
.y41{bottom:671.145000px;}
.y6e{bottom:677.445000px;}
.yc5{bottom:683.205000px;}
.y13d{bottom:688.785000px;}
.y93{bottom:689.505000px;}
.y18{bottom:690.945000px;}
.y40{bottom:693.285000px;}
.y6d{bottom:696.705000px;}
.y13c{bottom:708.045000px;}
.y97{bottom:708.945000px;}
.y17{bottom:713.265000px;}
.y3f{bottom:715.605000px;}
.y6c{bottom:716.145000px;}
.y13b{bottom:727.485000px;}
.y96{bottom:728.205000px;}
.y6b{bottom:735.405000px;}
.y16{bottom:735.585000px;}
.yec{bottom:737.025000px;}
.y129{bottom:737.100000px;}
.y3e{bottom:737.745000px;}
.y12c{bottom:741.600000px;}
.y13a{bottom:746.745000px;}
.y95{bottom:747.465000px;}
.y6a{bottom:754.845000px;}
.y3d{bottom:760.065000px;}
.y15{bottom:760.605000px;}
.y139{bottom:766.005000px;}
.y8f{bottom:766.905000px;}
.yc3{bottom:771.225000px;}
.y69{bottom:774.105000px;}
.y3c{bottom:782.385000px;}
.y138{bottom:785.445000px;}
.y91{bottom:787.065000px;}
.y14{bottom:787.245000px;}
.yea{bottom:789.765000px;}
.y68{bottom:793.365000px;}
.y3b{bottom:804.525000px;}
.y113{bottom:804.600000px;}
.y137{bottom:804.705000px;}
.y126{bottom:806.760000px;}
.y8d{bottom:807.045000px;}
.y11b{bottom:807.480000px;}
.y13{bottom:809.565000px;}
.y67{bottom:812.850000px;}
.y136{bottom:824.190000px;}
.y3a{bottom:826.890000px;}
.y12{bottom:831.750000px;}
.y66{bottom:832.110000px;}
.y8c{bottom:833.550000px;}
.y11e{bottom:834.450000px;}
.yc1{bottom:841.470000px;}
.ye9{bottom:842.550000px;}
.y135{bottom:843.450000px;}
.y39{bottom:849.030000px;}
.y65{bottom:851.550000px;}
.y8b{bottom:852.810000px;}
.y11{bottom:854.070000px;}
.y134{bottom:862.890000px;}
.y64{bottom:870.810000px;}
.y120{bottom:870.840000px;}
.y38{bottom:871.350000px;}
.y123{bottom:879.840000px;}
.y133{bottom:882.150000px;}
.y63{bottom:890.250000px;}
.y37{bottom:893.670000px;}
.ybc{bottom:894.390000px;}
.y132{bottom:901.590000px;}
.y10{bottom:906.990000px;}
.y62{bottom:909.510000px;}
.y36{bottom:915.810000px;}
.y131{bottom:919.410000px;}
.y61{bottom:928.950000px;}
.ye8{bottom:930.570000px;}
.y35{bottom:938.130000px;}
.yf{bottom:939.930000px;}
.y60{bottom:948.210000px;}
.y119{bottom:954.540000px;}
.y130{bottom:954.690000px;}
.y116{bottom:955.980000px;}
.y34{bottom:960.270000px;}
.yb8{bottom:965.310000px;}
.y5f{bottom:967.650000px;}
.ye{bottom:972.870000px;}
.y33{bottom:982.590000px;}
.yba{bottom:982.950000px;}
.y5e{bottom:986.910000px;}
.y7{bottom:1002.210000px;}
.ye4{bottom:1002.390000px;}
.y32{bottom:1004.730000px;}
.y5d{bottom:1006.350000px;}
.y12e{bottom:1007.430000px;}
.yb7{bottom:1007.610000px;}
.ye6{bottom:1021.470000px;}
.y6{bottom:1021.650000px;}
.y5c{bottom:1025.610000px;}
.y31{bottom:1027.050000px;}
.y5{bottom:1040.910000px;}
.y5b{bottom:1045.050000px;}
.y4{bottom:1060.350000px;}
.y30{bottom:1064.340000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y2e{bottom:1121.220000px;}
.h16{height:17.625000px;}
.hd{height:19.260000px;}
.h12{height:19.290000px;}
.h13{height:19.425000px;}
.hf{height:19.440000px;}
.hb{height:19.462500px;}
.h1d{height:35.085000px;}
.h23{height:35.130000px;}
.h14{height:35.265000px;}
.h1e{height:36.705000px;}
.hc{height:39.420000px;}
.h3{height:40.843828px;}
.h2e{height:42.480000px;}
.h32{height:43.380000px;}
.h2f{height:43.560000px;}
.h3e{height:45.360000px;}
.h8{height:46.986328px;}
.h28{height:48.780000px;}
.h15{height:50.597578px;}
.h31{height:51.300000px;}
.h27{height:51.480000px;}
.h24{height:52.725000px;}
.h1b{height:52.740000px;}
.h21{height:52.762500px;}
.h18{height:52.905000px;}
.h34{height:55.080000px;}
.h35{height:55.620000px;}
.h2d{height:55.980000px;}
.h1{height:56.084062px;}
.h2c{height:56.205984px;}
.h2{height:57.636562px;}
.h10{height:57.960000px;}
.h9{height:58.154062px;}
.h30{height:58.280484px;}
.h2a{height:59.580000px;}
.h38{height:60.226875px;}
.h7{height:60.960938px;}
.h3c{height:64.978594px;}
.h3d{height:64.980000px;}
.h36{height:65.010937px;}
.h39{height:66.757500px;}
.ha{height:68.084282px;}
.h3b{height:68.760000px;}
.h17{height:70.185000px;}
.h19{height:70.222500px;}
.h33{height:70.230000px;}
.h1f{height:70.365000px;}
.h1c{height:70.410000px;}
.h29{height:70.664062px;}
.h6{height:71.324297px;}
.he{height:77.400000px;}
.h2b{height:81.360000px;}
.h37{height:83.340000px;}
.h3a{height:86.040000px;}
.h5{height:86.255508px;}
.h26{height:87.832500px;}
.h22{height:87.840000px;}
.h20{height:88.005000px;}
.h1a{height:88.020000px;}
.h25{height:105.501000px;}
.h11{height:110.370000px;}
.h4{height:110.583984px;}
.h0{height:1188.000000px;}
.w11{width:63.705000px;}
.w9{width:63.885000px;}
.wa{width:74.325000px;}
.wd{width:74.340000px;}
.wb{width:74.361000px;}
.we{width:74.376000px;}
.wf{width:74.505000px;}
.wc{width:74.520000px;}
.w15{width:74.541000px;}
.w12{width:74.556000px;}
.w17{width:87.660000px;}
.w1e{width:95.760000px;}
.w19{width:101.160000px;}
.w2{width:101.865000px;}
.w20{width:111.600000px;}
.w3{width:128.721000px;}
.w6{width:138.229500px;}
.w13{width:141.109500px;}
.w10{width:148.849500px;}
.w8{width:148.881000px;}
.w4{width:166.879500px;}
.w5{width:241.230000px;}
.w23{width:246.780000px;}
.w1d{width:257.940000px;}
.w1a{width:289.440000px;}
.w18{width:292.140000px;}
.w1b{width:292.860000px;}
.w22{width:293.400000px;}
.w7{width:297.600000px;}
.w14{width:297.780000px;}
.w1f{width:358.740000px;}
.w1{width:408.124500px;}
.w1c{width:427.860000px;}
.w16{width:430.200000px;}
.w21{width:456.480000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:8.089500px;}
.x11{left:10.605000px;}
.x15{left:12.420000px;}
.x27{left:14.220000px;}
.x32{left:16.740000px;}
.x31{left:17.820000px;}
.x29{left:19.440000px;}
.x13{left:21.765000px;}
.x30{left:24.645000px;}
.x33{left:27.360000px;}
.x2a{left:28.785000px;}
.x2c{left:32.400000px;}
.x16{left:37.065000px;}
.x18{left:41.565000px;}
.x25{left:43.185000px;}
.x1a{left:46.245000px;}
.x17{left:48.990000px;}
.x19{left:53.670000px;}
.x3e{left:64.875000px;}
.x1b{left:97.606500px;}
.x34{left:101.386500px;}
.x1{left:135.036000px;}
.xe{left:139.726500px;}
.x47{left:142.740000px;}
.x4{left:149.076000px;}
.x48{left:153.570000px;}
.x41{left:160.920000px;}
.xc{left:162.030000px;}
.x5{left:165.090000px;}
.x8{left:170.310000px;}
.x42{left:171.750000px;}
.x3f{left:174.420000px;}
.xd{left:189.030000px;}
.x4f{left:198.930000px;}
.x4e{left:202.530000px;}
.x7{left:205.410000px;}
.x1c{left:235.845000px;}
.x35{left:242.505000px;}
.x23{left:246.465000px;}
.x6{left:257.610000px;}
.x3{left:262.470000px;}
.x49{left:274.320000px;}
.x3d{left:280.440000px;}
.x45{left:282.780000px;}
.x40{left:289.800000px;}
.x14{left:306.615000px;}
.x20{left:310.215000px;}
.x39{left:316.875000px;}
.x2b{left:320.835000px;}
.x4a{left:339.195000px;}
.x9{left:352.695000px;}
.x21{left:384.735000px;}
.x3a{left:391.395000px;}
.x2d{left:395.175000px;}
.x44{left:406.440000px;}
.x43{left:409.860000px;}
.xb{left:412.275000px;}
.x4b{left:421.380000px;}
.x4c{left:432.255000px;}
.x46{left:441.360000px;}
.xa{left:459.075000px;}
.x3b{left:465.915000px;}
.x4d{left:468.000000px;}
.x2e{left:469.695000px;}
.x1d{left:533.460000px;}
.x36{left:540.300000px;}
.x24{left:544.080000px;}
.x10{left:547.860000px;}
.x22{left:607.980000px;}
.x3c{left:614.640000px;}
.x2f{left:618.600000px;}
.x12{left:649.740000px;}
.x1e{left:682.350000px;}
.x37{left:689.190000px;}
.x26{left:692.970000px;}
.x1f{left:746.250000px;}
.x38{left:752.910000px;}
.x28{left:756.870000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.549333pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.297067pt;}
.ls21{letter-spacing:-0.281600pt;}
.ls14{letter-spacing:-0.153600pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.097067pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.086933pt;}
.ls4{letter-spacing:-0.046080pt;}
.ls11{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.020480pt;}
.ls17{letter-spacing:0.043520pt;}
.ls1e{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128640pt;}
.ls10{letter-spacing:0.135808pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.166400pt;}
.lsf{letter-spacing:0.186880pt;}
.ls9{letter-spacing:0.269333pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.281600pt;}
.lse{letter-spacing:0.296960pt;}
.lsd{letter-spacing:4.326400pt;}
.ls22{letter-spacing:6.886400pt;}
.ls12{letter-spacing:7.526400pt;}
.lsc{letter-spacing:11.366400pt;}
.ls16{letter-spacing:12.646400pt;}
.ls6{letter-spacing:24.591360pt;}
.ls7{letter-spacing:34.406400pt;}
.ls1c{letter-spacing:45.926400pt;}
.wsd{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.235200pt;}
.ws13{word-spacing:-13.225067pt;}
.wsb{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.048533pt;}
.ws11{word-spacing:-12.997120pt;}
.ws4{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.856533pt;}
.ws14{word-spacing:-12.672000pt;}
.ws3{word-spacing:-12.656533pt;}
.ws12{word-spacing:-12.585067pt;}
.ws5{word-spacing:-11.955733pt;}
.ws6{word-spacing:-11.697920pt;}
.ws9{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.676800pt;}
.ws7{word-spacing:-11.599467pt;}
.ws8{word-spacing:-11.578667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:2.708480pt;}
._a{margin-left:-4.665600pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:1.929600pt;}
._3{width:3.172267pt;}
._14{width:4.084480pt;}
._b{width:5.335467pt;}
._c{width:6.268587pt;}
._4{width:7.573120pt;}
._f{width:8.586667pt;}
._e{width:9.538560pt;}
._d{width:11.128320pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._1b{width:14.720000pt;}
._11{width:15.779840pt;}
._10{width:17.134080pt;}
._16{width:18.135040pt;}
._20{width:19.109547pt;}
._18{width:20.019200pt;}
._19{width:21.314560pt;}
._12{width:22.904320pt;}
._13{width:23.846400pt;}
._1a{width:24.888747pt;}
._1f{width:26.024960pt;}
._1d{width:26.967040pt;}
._1c{width:27.909120pt;}
._1e{width:28.900480pt;}
._17{width:30.382080pt;}
._15{width:32.207360pt;}
._22{width:33.738240pt;}
._21{width:34.875307pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._24{width:38.687787pt;}
._2c{width:41.039360pt;}
._2d{width:41.981440pt;}
._29{width:43.100160pt;}
._2a{width:44.042240pt;}
._26{width:126.356480pt;}
._28{width:129.802240pt;}
._27{width:130.895787pt;}
._2e{width:151.910400pt;}
._1{width:179.025067pt;}
._23{width:379.513600pt;}
._2b{width:1562.027520pt;}
._25{width:2087.291733pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y16e{bottom:-6.493333pt;}
.y12b{bottom:-1.506667pt;}
.y115{bottom:-1.346667pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:2.693333pt;}
.y112{bottom:2.873333pt;}
.yc0{bottom:2.880000pt;}
.y10c{bottom:3.026667pt;}
.ybb{bottom:3.040000pt;}
.ycd{bottom:3.066667pt;}
.y92{bottom:3.200000pt;}
.y8e{bottom:3.360000pt;}
.ye7{bottom:4.320000pt;}
.y125{bottom:6.533333pt;}
.y11f{bottom:6.973333pt;}
.y128{bottom:7.453333pt;}
.y118{bottom:7.653333pt;}
.y171{bottom:9.186667pt;}
.y167{bottom:9.666667pt;}
.y111{bottom:18.553333pt;}
.ybf{bottom:18.560000pt;}
.y10b{bottom:18.706667pt;}
.yb9{bottom:18.720000pt;}
.ycc{bottom:18.746667pt;}
.ye5{bottom:20.000000pt;}
.y90{bottom:21.120000pt;}
.y124{bottom:23.813333pt;}
.y12d{bottom:24.573333pt;}
.y127{bottom:24.773333pt;}
.y170{bottom:26.626667pt;}
.y117{bottom:28.773333pt;}
.y12a{bottom:31.613333pt;}
.y114{bottom:31.813333pt;}
.y10a{bottom:34.226667pt;}
.y110{bottom:34.228000pt;}
.ybe{bottom:34.240000pt;}
.ycb{bottom:34.266667pt;}
.yeb{bottom:34.280000pt;}
.y15c{bottom:34.333333pt;}
.yc2{bottom:34.400000pt;}
.y15f{bottom:35.293333pt;}
.y121{bottom:35.813333pt;}
.y99{bottom:37.600000pt;}
.y11a{bottom:39.013333pt;}
.y11d{bottom:41.253333pt;}
.y16c{bottom:43.746667pt;}
.y169{bottom:47.426667pt;}
.y10f{bottom:49.748000pt;}
.ybd{bottom:49.760000pt;}
.y12f{bottom:49.786667pt;}
.yc4{bottom:49.800000pt;}
.y109{bottom:49.906667pt;}
.yc7{bottom:49.920000pt;}
.yca{bottom:49.946667pt;}
.y2f{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.y94{bottom:54.880000pt;}
.y11c{bottom:58.373333pt;}
.y161{bottom:61.346667pt;}
.y165{bottom:62.466667pt;}
.y10e{bottom:65.428000pt;}
.yee{bottom:65.440000pt;}
.yc{bottom:65.472000pt;}
.y108{bottom:65.586667pt;}
.yc6{bottom:65.600000pt;}
.yb{bottom:79.232000pt;}
.y107{bottom:81.106667pt;}
.y9d{bottom:84.186667pt;}
.ya{bottom:92.992000pt;}
.yb6{bottom:102.432000pt;}
.y8a{bottom:103.392000pt;}
.ye3{bottom:105.792000pt;}
.y9{bottom:106.752000pt;}
.y101{bottom:106.912000pt;}
.y10d{bottom:108.038667pt;}
.y5a{bottom:110.752000pt;}
.y15a{bottom:113.472000pt;}
.yb5{bottom:119.712000pt;}
.y8{bottom:120.512000pt;}
.y89{bottom:120.672000pt;}
.ye2{bottom:122.912000pt;}
.y59{bottom:127.872000pt;}
.y18d{bottom:129.152000pt;}
.y159{bottom:130.752000pt;}
.yb4{bottom:136.826667pt;}
.y88{bottom:137.786667pt;}
.y100{bottom:140.026667pt;}
.ye1{bottom:140.186667pt;}
.y58{bottom:145.146667pt;}
.y18c{bottom:146.426667pt;}
.y158{bottom:147.866667pt;}
.yb3{bottom:154.106667pt;}
.y87{bottom:155.066667pt;}
.ye0{bottom:157.306667pt;}
.yff{bottom:159.866667pt;}
.y57{bottom:162.266667pt;}
.y18b{bottom:163.546667pt;}
.y157{bottom:164.986667pt;}
.y2d{bottom:165.626667pt;}
.yb2{bottom:171.226667pt;}
.y86{bottom:172.186667pt;}
.ydf{bottom:174.586667pt;}
.y56{bottom:179.546667pt;}
.y18a{bottom:180.826667pt;}
.y156{bottom:182.266667pt;}
.y106{bottom:186.120000pt;}
.yb1{bottom:188.506667pt;}
.y85{bottom:189.306667pt;}
.yde{bottom:191.706667pt;}
.y55{bottom:196.666667pt;}
.yfe{bottom:196.826667pt;}
.y189{bottom:197.946667pt;}
.y155{bottom:199.386667pt;}
.y2c{bottom:200.026667pt;}
.yb0{bottom:205.626667pt;}
.y84{bottom:206.586667pt;}
.ydd{bottom:208.986667pt;}
.y54{bottom:213.786667pt;}
.yfd{bottom:213.946667pt;}
.y188{bottom:215.226667pt;}
.y154{bottom:216.666667pt;}
.y2b{bottom:221.466667pt;}
.yaf{bottom:222.906667pt;}
.y83{bottom:223.706667pt;}
.ydc{bottom:226.106667pt;}
.y53{bottom:231.066667pt;}
.yfc{bottom:231.226667pt;}
.y187{bottom:232.346667pt;}
.y153{bottom:233.786667pt;}
.yae{bottom:240.026667pt;}
.y82{bottom:240.986667pt;}
.ydb{bottom:243.386667pt;}
.y52{bottom:248.186667pt;}
.yfb{bottom:248.346667pt;}
.y186{bottom:249.626667pt;}
.y152{bottom:251.066667pt;}
.yad{bottom:257.146667pt;}
.y81{bottom:258.106667pt;}
.y2a{bottom:258.266667pt;}
.yda{bottom:260.506667pt;}
.y51{bottom:265.466667pt;}
.yfa{bottom:265.626667pt;}
.y185{bottom:266.746667pt;}
.y151{bottom:268.186667pt;}
.yac{bottom:274.426667pt;}
.y80{bottom:275.426667pt;}
.yd9{bottom:277.666667pt;}
.y29{bottom:277.986667pt;}
.y105{bottom:279.906667pt;}
.y50{bottom:282.626667pt;}
.yf9{bottom:282.786667pt;}
.y184{bottom:284.066667pt;}
.y150{bottom:285.506667pt;}
.yab{bottom:291.586667pt;}
.y7f{bottom:292.546667pt;}
.yd8{bottom:294.946667pt;}
.y28{bottom:297.826667pt;}
.y4f{bottom:299.906667pt;}
.yf8{bottom:300.066667pt;}
.y183{bottom:301.186667pt;}
.y14f{bottom:302.626667pt;}
.yaa{bottom:308.866667pt;}
.y7e{bottom:309.826667pt;}
.yd7{bottom:312.066667pt;}
.y4e{bottom:317.026667pt;}
.yf7{bottom:317.186667pt;}
.y27{bottom:317.666667pt;}
.y16b{bottom:318.240000pt;}
.y182{bottom:318.306667pt;}
.y14e{bottom:319.906667pt;}
.y16f{bottom:323.680000pt;}
.ya9{bottom:325.986667pt;}
.y104{bottom:326.786667pt;}
.y7d{bottom:326.946667pt;}
.yd6{bottom:329.346667pt;}
.y4d{bottom:334.306667pt;}
.y181{bottom:335.586667pt;}
.y14d{bottom:337.026667pt;}
.y26{bottom:337.346667pt;}
.ya8{bottom:343.266667pt;}
.y160{bottom:344.160000pt;}
.y7c{bottom:344.226667pt;}
.y16d{bottom:344.866667pt;}
.yd5{bottom:346.466667pt;}
.y4c{bottom:351.426667pt;}
.yf6{bottom:351.586667pt;}
.y180{bottom:352.706667pt;}
.y14c{bottom:354.306667pt;}
.y25{bottom:357.186667pt;}
.ya7{bottom:360.386667pt;}
.y7b{bottom:361.346667pt;}
.yd4{bottom:363.746667pt;}
.y4b{bottom:368.706667pt;}
.y17f{bottom:369.986667pt;}
.y14b{bottom:371.426667pt;}
.y163{bottom:374.786667pt;}
.y102{bottom:375.106667pt;}
.y24{bottom:376.866667pt;}
.ya6{bottom:377.666667pt;}
.y7a{bottom:378.626667pt;}
.yd3{bottom:380.866667pt;}
.y4a{bottom:385.826667pt;}
.yf5{bottom:385.986667pt;}
.y164{bottom:386.400000pt;}
.y17e{bottom:387.106667pt;}
.y14a{bottom:388.706667pt;}
.y162{bottom:390.146667pt;}
.y168{bottom:391.840000pt;}
.y103{bottom:392.066667pt;}
.ya5{bottom:394.786667pt;}
.y79{bottom:395.746667pt;}
.y23{bottom:396.706667pt;}
.yd2{bottom:398.146667pt;}
.yf4{bottom:403.106667pt;}
.y17d{bottom:404.386667pt;}
.y149{bottom:405.826667pt;}
.y49{bottom:411.586667pt;}
.ya4{bottom:412.066667pt;}
.y78{bottom:413.026667pt;}
.yd1{bottom:415.266667pt;}
.y166{bottom:415.746667pt;}
.y22{bottom:416.546667pt;}
.yf3{bottom:420.386667pt;}
.y17c{bottom:421.506667pt;}
.y16a{bottom:422.146667pt;}
.y148{bottom:422.946667pt;}
.ya3{bottom:429.186667pt;}
.y77{bottom:430.146667pt;}
.yd0{bottom:432.546667pt;}
.y21{bottom:436.226667pt;}
.yf2{bottom:437.186667pt;}
.y17b{bottom:438.786667pt;}
.y147{bottom:440.226667pt;}
.y48{bottom:444.706667pt;}
.ya2{bottom:446.466667pt;}
.y76{bottom:447.266667pt;}
.ycf{bottom:449.666667pt;}
.yf1{bottom:452.866667pt;}
.y17a{bottom:455.906667pt;}
.y20{bottom:456.066667pt;}
.y146{bottom:457.346667pt;}
.y9c{bottom:463.266667pt;}
.y47{bottom:464.546667pt;}
.yce{bottom:466.626667pt;}
.yf0{bottom:467.586667pt;}
.y179{bottom:473.186667pt;}
.y145{bottom:474.626667pt;}
.y1f{bottom:475.746667pt;}
.y75{bottom:481.666667pt;}
.ya1{bottom:483.586667pt;}
.y15b{bottom:488.160000pt;}
.y178{bottom:490.306667pt;}
.y144{bottom:491.746667pt;}
.y15e{bottom:492.320000pt;}
.y1e{bottom:495.586667pt;}
.y46{bottom:497.666667pt;}
.yc9{bottom:497.826667pt;}
.yef{bottom:498.813333pt;}
.y74{bottom:498.973333pt;}
.y15d{bottom:501.186667pt;}
.ya0{bottom:503.773333pt;}
.y177{bottom:507.613333pt;}
.y143{bottom:509.053333pt;}
.y1d{bottom:515.453333pt;}
.y73{bottom:516.093333pt;}
.y45{bottom:517.373333pt;}
.y9f{bottom:523.933333pt;}
.y176{bottom:524.733333pt;}
.y142{bottom:526.173333pt;}
.y72{bottom:533.373333pt;}
.y1c{bottom:535.133333pt;}
.y44{bottom:537.213333pt;}
.y175{bottom:542.013333pt;}
.y141{bottom:543.453333pt;}
.y9e{bottom:544.093333pt;}
.y71{bottom:550.493333pt;}
.y1b{bottom:554.973333pt;}
.y43{bottom:557.053333pt;}
.y174{bottom:559.133333pt;}
.yc8{bottom:560.413333pt;}
.y140{bottom:560.573333pt;}
.y98{bottom:561.373333pt;}
.y70{bottom:567.773333pt;}
.y1a{bottom:574.653333pt;}
.y173{bottom:576.253333pt;}
.y42{bottom:576.733333pt;}
.yed{bottom:577.053333pt;}
.y13f{bottom:577.853333pt;}
.y9b{bottom:578.493333pt;}
.y6f{bottom:584.893333pt;}
.y172{bottom:593.533333pt;}
.y19{bottom:594.493333pt;}
.y13e{bottom:594.973333pt;}
.y9a{bottom:595.773333pt;}
.y41{bottom:596.573333pt;}
.y6e{bottom:602.173333pt;}
.yc5{bottom:607.293333pt;}
.y13d{bottom:612.253333pt;}
.y93{bottom:612.893333pt;}
.y18{bottom:614.173333pt;}
.y40{bottom:616.253333pt;}
.y6d{bottom:619.293333pt;}
.y13c{bottom:629.373333pt;}
.y97{bottom:630.173333pt;}
.y17{bottom:634.013333pt;}
.y3f{bottom:636.093333pt;}
.y6c{bottom:636.573333pt;}
.y13b{bottom:646.653333pt;}
.y96{bottom:647.293333pt;}
.y6b{bottom:653.693333pt;}
.y16{bottom:653.853333pt;}
.yec{bottom:655.133333pt;}
.y129{bottom:655.200000pt;}
.y3e{bottom:655.773333pt;}
.y12c{bottom:659.200000pt;}
.y13a{bottom:663.773333pt;}
.y95{bottom:664.413333pt;}
.y6a{bottom:670.973333pt;}
.y3d{bottom:675.613333pt;}
.y15{bottom:676.093333pt;}
.y139{bottom:680.893333pt;}
.y8f{bottom:681.693333pt;}
.yc3{bottom:685.533333pt;}
.y69{bottom:688.093333pt;}
.y3c{bottom:695.453333pt;}
.y138{bottom:698.173333pt;}
.y91{bottom:699.613333pt;}
.y14{bottom:699.773333pt;}
.yea{bottom:702.013333pt;}
.y68{bottom:705.213333pt;}
.y3b{bottom:715.133333pt;}
.y113{bottom:715.200000pt;}
.y137{bottom:715.293333pt;}
.y126{bottom:717.120000pt;}
.y8d{bottom:717.373333pt;}
.y11b{bottom:717.760000pt;}
.y13{bottom:719.613333pt;}
.y67{bottom:722.533333pt;}
.y136{bottom:732.613333pt;}
.y3a{bottom:735.013333pt;}
.y12{bottom:739.333333pt;}
.y66{bottom:739.653333pt;}
.y8c{bottom:740.933333pt;}
.y11e{bottom:741.733333pt;}
.yc1{bottom:747.973333pt;}
.ye9{bottom:748.933333pt;}
.y135{bottom:749.733333pt;}
.y39{bottom:754.693333pt;}
.y65{bottom:756.933333pt;}
.y8b{bottom:758.053333pt;}
.y11{bottom:759.173333pt;}
.y134{bottom:767.013333pt;}
.y64{bottom:774.053333pt;}
.y120{bottom:774.080000pt;}
.y38{bottom:774.533333pt;}
.y123{bottom:782.080000pt;}
.y133{bottom:784.133333pt;}
.y63{bottom:791.333333pt;}
.y37{bottom:794.373333pt;}
.ybc{bottom:795.013333pt;}
.y132{bottom:801.413333pt;}
.y10{bottom:806.213333pt;}
.y62{bottom:808.453333pt;}
.y36{bottom:814.053333pt;}
.y131{bottom:817.253333pt;}
.y61{bottom:825.733333pt;}
.ye8{bottom:827.173333pt;}
.y35{bottom:833.893333pt;}
.yf{bottom:835.493333pt;}
.y60{bottom:842.853333pt;}
.y119{bottom:848.480000pt;}
.y130{bottom:848.613333pt;}
.y116{bottom:849.760000pt;}
.y34{bottom:853.573333pt;}
.yb8{bottom:858.053333pt;}
.y5f{bottom:860.133333pt;}
.ye{bottom:864.773333pt;}
.y33{bottom:873.413333pt;}
.yba{bottom:873.733333pt;}
.y5e{bottom:877.253333pt;}
.y7{bottom:890.853333pt;}
.ye4{bottom:891.013333pt;}
.y32{bottom:893.093333pt;}
.y5d{bottom:894.533333pt;}
.y12e{bottom:895.493333pt;}
.yb7{bottom:895.653333pt;}
.ye6{bottom:907.973333pt;}
.y6{bottom:908.133333pt;}
.y5c{bottom:911.653333pt;}
.y31{bottom:912.933333pt;}
.y5{bottom:925.253333pt;}
.y5b{bottom:928.933333pt;}
.y4{bottom:942.533333pt;}
.y30{bottom:946.080000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y2e{bottom:996.640000pt;}
.h16{height:15.666667pt;}
.hd{height:17.120000pt;}
.h12{height:17.146667pt;}
.h13{height:17.266667pt;}
.hf{height:17.280000pt;}
.hb{height:17.300000pt;}
.h1d{height:31.186667pt;}
.h23{height:31.226667pt;}
.h14{height:31.346667pt;}
.h1e{height:32.626667pt;}
.hc{height:35.040000pt;}
.h3{height:36.305625pt;}
.h2e{height:37.760000pt;}
.h32{height:38.560000pt;}
.h2f{height:38.720000pt;}
.h3e{height:40.320000pt;}
.h8{height:41.765625pt;}
.h28{height:43.360000pt;}
.h15{height:44.975625pt;}
.h31{height:45.600000pt;}
.h27{height:45.760000pt;}
.h24{height:46.866667pt;}
.h1b{height:46.880000pt;}
.h21{height:46.900000pt;}
.h18{height:47.026667pt;}
.h34{height:48.960000pt;}
.h35{height:49.440000pt;}
.h2d{height:49.760000pt;}
.h1{height:49.852500pt;}
.h2c{height:49.960875pt;}
.h2{height:51.232500pt;}
.h10{height:51.520000pt;}
.h9{height:51.692500pt;}
.h30{height:51.804875pt;}
.h2a{height:52.960000pt;}
.h38{height:53.535000pt;}
.h7{height:54.187500pt;}
.h3c{height:57.758750pt;}
.h3d{height:57.760000pt;}
.h36{height:57.787500pt;}
.h39{height:59.340000pt;}
.ha{height:60.519362pt;}
.h3b{height:61.120000pt;}
.h17{height:62.386667pt;}
.h19{height:62.420000pt;}
.h33{height:62.426667pt;}
.h1f{height:62.546667pt;}
.h1c{height:62.586667pt;}
.h29{height:62.812500pt;}
.h6{height:63.399375pt;}
.he{height:68.800000pt;}
.h2b{height:72.320000pt;}
.h37{height:74.080000pt;}
.h3a{height:76.480000pt;}
.h5{height:76.671562pt;}
.h26{height:78.073333pt;}
.h22{height:78.080000pt;}
.h20{height:78.226667pt;}
.h1a{height:78.240000pt;}
.h25{height:93.778667pt;}
.h11{height:98.106667pt;}
.h4{height:98.296875pt;}
.h0{height:1056.000000pt;}
.w11{width:56.626667pt;}
.w9{width:56.786667pt;}
.wa{width:66.066667pt;}
.wd{width:66.080000pt;}
.wb{width:66.098667pt;}
.we{width:66.112000pt;}
.wf{width:66.226667pt;}
.wc{width:66.240000pt;}
.w15{width:66.258667pt;}
.w12{width:66.272000pt;}
.w17{width:77.920000pt;}
.w1e{width:85.120000pt;}
.w19{width:89.920000pt;}
.w2{width:90.546667pt;}
.w20{width:99.200000pt;}
.w3{width:114.418667pt;}
.w6{width:122.870667pt;}
.w13{width:125.430667pt;}
.w10{width:132.310667pt;}
.w8{width:132.338667pt;}
.w4{width:148.337333pt;}
.w5{width:214.426667pt;}
.w23{width:219.360000pt;}
.w1d{width:229.280000pt;}
.w1a{width:257.280000pt;}
.w18{width:259.680000pt;}
.w1b{width:260.320000pt;}
.w22{width:260.800000pt;}
.w7{width:264.533333pt;}
.w14{width:264.693333pt;}
.w1f{width:318.880000pt;}
.w1{width:362.777333pt;}
.w1c{width:380.320000pt;}
.w16{width:382.400000pt;}
.w21{width:405.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.190667pt;}
.x11{left:9.426667pt;}
.x15{left:11.040000pt;}
.x27{left:12.640000pt;}
.x32{left:14.880000pt;}
.x31{left:15.840000pt;}
.x29{left:17.280000pt;}
.x13{left:19.346667pt;}
.x30{left:21.906667pt;}
.x33{left:24.320000pt;}
.x2a{left:25.586667pt;}
.x2c{left:28.800000pt;}
.x16{left:32.946667pt;}
.x18{left:36.946667pt;}
.x25{left:38.386667pt;}
.x1a{left:41.106667pt;}
.x17{left:43.546667pt;}
.x19{left:47.706667pt;}
.x3e{left:57.666667pt;}
.x1b{left:86.761333pt;}
.x34{left:90.121333pt;}
.x1{left:120.032000pt;}
.xe{left:124.201333pt;}
.x47{left:126.880000pt;}
.x4{left:132.512000pt;}
.x48{left:136.506667pt;}
.x41{left:143.040000pt;}
.xc{left:144.026667pt;}
.x5{left:146.746667pt;}
.x8{left:151.386667pt;}
.x42{left:152.666667pt;}
.x3f{left:155.040000pt;}
.xd{left:168.026667pt;}
.x4f{left:176.826667pt;}
.x4e{left:180.026667pt;}
.x7{left:182.586667pt;}
.x1c{left:209.640000pt;}
.x35{left:215.560000pt;}
.x23{left:219.080000pt;}
.x6{left:228.986667pt;}
.x3{left:233.306667pt;}
.x49{left:243.840000pt;}
.x3d{left:249.280000pt;}
.x45{left:251.360000pt;}
.x40{left:257.600000pt;}
.x14{left:272.546667pt;}
.x20{left:275.746667pt;}
.x39{left:281.666667pt;}
.x2b{left:285.186667pt;}
.x4a{left:301.506667pt;}
.x9{left:313.506667pt;}
.x21{left:341.986667pt;}
.x3a{left:347.906667pt;}
.x2d{left:351.266667pt;}
.x44{left:361.280000pt;}
.x43{left:364.320000pt;}
.xb{left:366.466667pt;}
.x4b{left:374.560000pt;}
.x4c{left:384.226667pt;}
.x46{left:392.320000pt;}
.xa{left:408.066667pt;}
.x3b{left:414.146667pt;}
.x4d{left:416.000000pt;}
.x2e{left:417.506667pt;}
.x1d{left:474.186667pt;}
.x36{left:480.266667pt;}
.x24{left:483.626667pt;}
.x10{left:486.986667pt;}
.x22{left:540.426667pt;}
.x3c{left:546.346667pt;}
.x2f{left:549.866667pt;}
.x12{left:577.546667pt;}
.x1e{left:606.533333pt;}
.x37{left:612.613333pt;}
.x26{left:615.973333pt;}
.x1f{left:663.333333pt;}
.x38{left:669.253333pt;}
.x28{left:672.773333pt;}
.x2{left:696.133333pt;}
}




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