
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_3554e14a28ade5d58ba837d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b35545d6d24548887c68fb39.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c1132f50aa151189a61e12c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_93cd04a1173ef480c451a8fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_35c70caf367cd5d9c2a01d5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d022b0ea477c1e064226fcd5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_db0ef76f255094d0d0a7315a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fcd4b146b2cd2bb42e6ce951.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_8186cc6e9d19e0518f2bd103.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8d9d2122aadc9fd5197cf8c1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6df9d79ae87b05238d887838.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_67fa9572d91cc86b1077248a.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-70.560000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.908000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.128000px;}
.ls19{letter-spacing:-0.972000px;}
.lsc{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.630000px;}
.ls21{letter-spacing:-0.507000px;}
.ls1f{letter-spacing:-0.486600px;}
.ls10{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.089400px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.140160px;}
.lsa{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.313920px;}
.ls1c{letter-spacing:0.423360px;}
.lse{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.160000px;}
.ls17{letter-spacing:3.600000px;}
.ls16{letter-spacing:5.040000px;}
.ls15{letter-spacing:6.480000px;}
.ls14{letter-spacing:7.920000px;}
.ls12{letter-spacing:9.360000px;}
.ls13{letter-spacing:9.480000px;}
.ls1e{letter-spacing:16.306560px;}
.ls1d{letter-spacing:46.546560px;}
.lsf{letter-spacing:486.156000px;}
.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;}
.wsa{word-spacing:-15.586800px;}
.wsf{word-spacing:-15.543360px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.653200px;}
.ws10{word-spacing:-14.633400px;}
.ws11{word-spacing:-14.613000px;}
.wsc{word-spacing:-14.400000px;}
.ws8{word-spacing:-14.184000px;}
.wse{word-spacing:-14.148000px;}
.ws4{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.212000px;}
.ws6{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._24{margin-left:-224.870400px;}
._22{margin-left:-99.846720px;}
._f{margin-left:-3.505920px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._6{width:4.683360px;}
._9{width:5.692800px;}
._7{width:7.522560px;}
._a{width:8.769600px;}
._12{width:9.786240px;}
._15{width:10.863360px;}
._16{width:12.247680px;}
._11{width:13.400640px;}
._8{width:14.976000px;}
._d{width:16.225920px;}
._b{width:17.392320px;}
._c{width:18.610560px;}
._14{width:19.789440px;}
._13{width:20.859840px;}
._1f{width:22.115520px;}
._5{width:23.244480px;}
._e{width:24.679680px;}
._10{width:26.076000px;}
._27{width:30.148320px;}
._26{width:31.368960px;}
._29{width:32.717760px;}
._1e{width:33.834240px;}
._28{width:35.447040px;}
._1a{width:38.102400px;}
._1c{width:40.037760px;}
._1b{width:42.154560px;}
._1d{width:43.317120px;}
._19{width:45.239040px;}
._18{width:46.396800px;}
._17{width:47.718720px;}
._20{width:49.351680px;}
._21{width:51.675840px;}
._2a{width:68.826240px;}
._2b{width:70.070400px;}
._23{width:84.240000px;}
._25{width:209.640000px;}
.fc6{color:transparent;}
.fc5{color:rgb(28,29,30);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(51,51,51);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs7{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:1.075500px;}
.y75{bottom:3.600000px;}
.yed{bottom:3.945000px;}
.y5{bottom:3.960000px;}
.yd8{bottom:5.025000px;}
.y7a{bottom:5.040000px;}
.yca{bottom:5.055000px;}
.yc3{bottom:5.070000px;}
.y5a{bottom:5.370000px;}
.y88{bottom:5.385000px;}
.y7e{bottom:5.400000px;}
.y2{bottom:7.920000px;}
.y57{bottom:8.995500px;}
.y4{bottom:21.240000px;}
.y87{bottom:23.745000px;}
.y79{bottom:23.760000px;}
.y7d{bottom:24.120000px;}
.y56{bottom:24.475500px;}
.y4a{bottom:30.595500px;}
.y43{bottom:38.520000px;}
.y55{bottom:39.991500px;}
.y86{bottom:42.465000px;}
.y78{bottom:42.480000px;}
.y7c{bottom:42.870000px;}
.y3{bottom:44.280000px;}
.y49{bottom:51.514500px;}
.y42{bottom:55.440000px;}
.y54{bottom:57.274500px;}
.y7{bottom:57.636000px;}
.yb3{bottom:60.090000px;}
.y77{bottom:60.840000px;}
.y85{bottom:61.185000px;}
.y81{bottom:61.200000px;}
.y11d{bottom:64.290000px;}
.y48{bottom:64.834500px;}
.y41{bottom:72.720000px;}
.y53{bottom:73.114500px;}
.y80{bottom:79.560000px;}
.y52{bottom:86.074500px;}
.y47{bottom:86.434500px;}
.y11c{bottom:89.745000px;}
.y40{bottom:90.000000px;}
.y58{bottom:91.836000px;}
.y51{bottom:92.194500px;}
.y8e{bottom:92.196000px;}
.yb4{bottom:92.265000px;}
.y116{bottom:92.556000px;}
.y150{bottom:99.036000px;}
.yba{bottom:103.470000px;}
.y44{bottom:105.160500px;}
.y3f{bottom:107.280000px;}
.y50{bottom:108.394500px;}
.y8d{bottom:109.476000px;}
.y115{bottom:109.836000px;}
.y11b{bottom:115.200000px;}
.y14f{bottom:115.956000px;}
.yf4{bottom:119.196000px;}
.yb1{bottom:120.636000px;}
.y169{bottom:122.076000px;}
.y4f{bottom:123.874500px;}
.yb5{bottom:124.410000px;}
.y3e{bottom:124.605000px;}
.y8c{bottom:126.756000px;}
.y114{bottom:127.116000px;}
.yb9{bottom:128.910000px;}
.yb0{bottom:133.956000px;}
.yb2{bottom:135.000000px;}
.yf3{bottom:136.476000px;}
.y4e{bottom:139.354500px;}
.y168{bottom:139.356000px;}
.y11a{bottom:140.655000px;}
.y3d{bottom:141.885000px;}
.y14e{bottom:142.632000px;}
.y8b{bottom:144.072000px;}
.y113{bottom:144.432000px;}
.y46{bottom:148.714500px;}
.yf2{bottom:153.795000px;}
.y4d{bottom:154.834500px;}
.yb6{bottom:156.600000px;}
.y167{bottom:156.675000px;}
.y3c{bottom:159.165000px;}
.y45{bottom:159.514500px;}
.y14d{bottom:159.555000px;}
.y8a{bottom:161.355000px;}
.y112{bottom:161.715000px;}
.y119{bottom:166.110000px;}
.yf1{bottom:167.850000px;}
.y4c{bottom:169.984500px;}
.y166{bottom:173.955000px;}
.y3b{bottom:176.445000px;}
.y14c{bottom:176.835000px;}
.y89{bottom:178.275000px;}
.y111{bottom:178.635000px;}
.yb7{bottom:188.790000px;}
.y165{bottom:191.235000px;}
.yf0{bottom:191.250000px;}
.y3a{bottom:193.725000px;}
.y14b{bottom:194.115000px;}
.y110{bottom:195.915000px;}
.y84{bottom:201.690000px;}
.y164{bottom:208.515000px;}
.y39{bottom:211.005000px;}
.y14a{bottom:211.035000px;}
.y10f{bottom:213.195000px;}
.yef{bottom:214.650000px;}
.yb8{bottom:220.935000px;}
.y163{bottom:225.795000px;}
.y38{bottom:228.285000px;}
.y10e{bottom:230.475000px;}
.y149{bottom:237.675000px;}
.yee{bottom:237.690000px;}
.y162{bottom:243.075000px;}
.y37{bottom:245.235000px;}
.y10d{bottom:247.755000px;}
.y118{bottom:254.490000px;}
.y148{bottom:254.955000px;}
.y161{bottom:260.355000px;}
.yec{bottom:261.090000px;}
.y36{bottom:262.515000px;}
.y10c{bottom:265.035000px;}
.y147{bottom:272.235000px;}
.y83{bottom:276.945000px;}
.y160{bottom:277.305000px;}
.y35{bottom:279.795000px;}
.y10b{bottom:282.345000px;}
.yeb{bottom:284.505000px;}
.y146{bottom:289.545000px;}
.yf{bottom:294.225000px;}
.y15f{bottom:294.585000px;}
.y34{bottom:297.075000px;}
.y10a{bottom:299.625000px;}
.y145{bottom:306.825000px;}
.yea{bottom:307.905000px;}
.y15e{bottom:311.865000px;}
.y33{bottom:314.355000px;}
.y109{bottom:316.905000px;}
.y144{bottom:324.105000px;}
.y15d{bottom:329.145000px;}
.ye9{bottom:331.305000px;}
.y32{bottom:331.635000px;}
.y82{bottom:333.465000px;}
.y108{bottom:334.185000px;}
.y143{bottom:341.385000px;}
.y1d{bottom:344.595000px;}
.y15c{bottom:346.425000px;}
.y31{bottom:348.915000px;}
.y107{bottom:351.465000px;}
.ye8{bottom:354.345000px;}
.y142{bottom:358.305000px;}
.y15b{bottom:363.705000px;}
.y30{bottom:365.835000px;}
.y106{bottom:368.385000px;}
.y1c{bottom:368.715000px;}
.y141{bottom:375.225000px;}
.ye7{bottom:377.745000px;}
.yaf{bottom:380.985000px;}
.y18c{bottom:381.345000px;}
.y105{bottom:382.785000px;}
.y2f{bottom:391.785000px;}
.y1b{bottom:392.865000px;}
.yae{bottom:398.265000px;}
.y18b{bottom:398.985000px;}
.y104{bottom:400.785000px;}
.y140{bottom:401.865000px;}
.ye6{bottom:404.745000px;}
.y2e{bottom:407.265000px;}
.y7f{bottom:408.750000px;}
.yad{bottom:415.590000px;}
.y18a{bottom:416.310000px;}
.y1a{bottom:416.985000px;}
.y103{bottom:418.830000px;}
.y13f{bottom:419.190000px;}
.y2d{bottom:422.745000px;}
.ye5{bottom:431.430000px;}
.yac{bottom:432.870000px;}
.y189{bottom:433.590000px;}
.y13e{bottom:436.470000px;}
.y102{bottom:436.830000px;}
.y2c{bottom:438.225000px;}
.y19{bottom:441.105000px;}
.ye4{bottom:448.710000px;}
.yab{bottom:450.150000px;}
.y188{bottom:450.870000px;}
.y2b{bottom:453.705000px;}
.y13d{bottom:453.750000px;}
.y101{bottom:454.830000px;}
.y18{bottom:465.225000px;}
.ye3{bottom:465.990000px;}
.yaa{bottom:467.070000px;}
.y15a{bottom:467.430000px;}
.y187{bottom:468.150000px;}
.y2a{bottom:469.545000px;}
.y13c{bottom:471.030000px;}
.y100{bottom:472.830000px;}
.ye2{bottom:483.270000px;}
.ya9{bottom:484.350000px;}
.y29{bottom:485.025000px;}
.y186{bottom:485.430000px;}
.y13b{bottom:488.310000px;}
.y17{bottom:489.705000px;}
.yff{bottom:490.830000px;}
.yc5{bottom:494.790000px;}
.ye1{bottom:500.190000px;}
.y28{bottom:500.505000px;}
.ya8{bottom:501.630000px;}
.y7b{bottom:502.350000px;}
.y13a{bottom:505.590000px;}
.yfe{bottom:508.830000px;}
.y16{bottom:513.870000px;}
.yc4{bottom:514.230000px;}
.y27{bottom:516.030000px;}
.ye0{bottom:517.470000px;}
.ya7{bottom:518.910000px;}
.y185{bottom:519.630000px;}
.y139{bottom:522.870000px;}
.yfd{bottom:526.830000px;}
.y26{bottom:531.510000px;}
.yc2{bottom:533.670000px;}
.ydf{bottom:534.750000px;}
.ya6{bottom:536.190000px;}
.y184{bottom:536.910000px;}
.y15{bottom:537.990000px;}
.y138{bottom:540.180000px;}
.yfc{bottom:544.860000px;}
.y25{bottom:546.990000px;}
.yde{bottom:552.060000px;}
.yc1{bottom:552.780000px;}
.ya5{bottom:553.500000px;}
.y183{bottom:554.220000px;}
.y137{bottom:557.460000px;}
.y76{bottom:559.260000px;}
.y14{bottom:562.110000px;}
.y24{bottom:562.470000px;}
.yfb{bottom:566.100000px;}
.ydd{bottom:568.980000px;}
.ya4{bottom:570.780000px;}
.y182{bottom:571.500000px;}
.yc0{bottom:572.220000px;}
.y136{bottom:574.380000px;}
.y23{bottom:577.950000px;}
.y13{bottom:586.230000px;}
.ya3{bottom:588.060000px;}
.y181{bottom:588.780000px;}
.ybf{bottom:591.660000px;}
.yfa{bottom:592.380000px;}
.y22{bottom:593.790000px;}
.ydc{bottom:595.620000px;}
.ya2{bottom:605.340000px;}
.y180{bottom:606.060000px;}
.y135{bottom:608.940000px;}
.y21{bottom:609.270000px;}
.yf9{bottom:609.660000px;}
.y12{bottom:610.350000px;}
.ybe{bottom:611.100000px;}
.ydb{bottom:612.900000px;}
.ya1{bottom:622.620000px;}
.yf8{bottom:623.340000px;}
.y117{bottom:623.880000px;}
.y20{bottom:624.750000px;}
.y134{bottom:626.220000px;}
.ybd{bottom:630.180000px;}
.y11{bottom:634.470000px;}
.y74{bottom:634.500000px;}
.ya0{bottom:639.900000px;}
.y1f{bottom:640.260000px;}
.y17f{bottom:640.620000px;}
.y133{bottom:643.500000px;}
.yda{bottom:644.220000px;}
.ybc{bottom:649.620000px;}
.y1e{bottom:655.380000px;}
.y73{bottom:655.740000px;}
.y9f{bottom:657.180000px;}
.y17e{bottom:657.900000px;}
.y10{bottom:658.620000px;}
.y132{bottom:660.780000px;}
.yd9{bottom:663.660000px;}
.ybb{bottom:669.090000px;}
.y9e{bottom:674.130000px;}
.y17d{bottom:675.210000px;}
.y131{bottom:678.090000px;}
.y72{bottom:682.050000px;}
.yd7{bottom:683.145000px;}
.y9d{bottom:691.410000px;}
.y17c{bottom:692.130000px;}
.y130{bottom:695.370000px;}
.yd6{bottom:702.225000px;}
.y9c{bottom:708.330000px;}
.y71{bottom:708.690000px;}
.y17b{bottom:709.410000px;}
.y12f{bottom:712.650000px;}
.yd5{bottom:721.665000px;}
.y9b{bottom:725.610000px;}
.y70{bottom:725.970000px;}
.y17a{bottom:726.690000px;}
.y12e{bottom:729.930000px;}
.yd4{bottom:741.105000px;}
.y9a{bottom:742.890000px;}
.y6f{bottom:743.250000px;}
.y179{bottom:743.970000px;}
.y12d{bottom:747.210000px;}
.y6e{bottom:760.530000px;}
.y178{bottom:761.250000px;}
.y12c{bottom:763.770000px;}
.yd3{bottom:764.130000px;}
.y99{bottom:769.530000px;}
.y6d{bottom:777.810000px;}
.y177{bottom:778.530000px;}
.y98{bottom:786.810000px;}
.y12b{bottom:790.410000px;}
.yd2{bottom:790.770000px;}
.y6c{bottom:795.090000px;}
.y176{bottom:795.810000px;}
.y97{bottom:804.135000px;}
.yd1{bottom:807.735000px;}
.y6b{bottom:812.415000px;}
.y175{bottom:813.135000px;}
.y96{bottom:821.415000px;}
.yd0{bottom:825.015000px;}
.y6a{bottom:829.695000px;}
.y174{bottom:830.415000px;}
.y95{bottom:838.695000px;}
.ycf{bottom:842.295000px;}
.y69{bottom:846.975000px;}
.y173{bottom:847.695000px;}
.y94{bottom:855.975000px;}
.yce{bottom:859.575000px;}
.y68{bottom:863.895000px;}
.y159{bottom:864.255000px;}
.y172{bottom:864.975000px;}
.y93{bottom:873.255000px;}
.ycd{bottom:876.855000px;}
.y158{bottom:881.175000px;}
.y171{bottom:882.255000px;}
.y67{bottom:890.175000px;}
.ycc{bottom:890.910000px;}
.y12a{bottom:894.135000px;}
.yf7{bottom:898.095000px;}
.y157{bottom:898.455000px;}
.y170{bottom:899.175000px;}
.y66{bottom:907.455000px;}
.ycb{bottom:910.350000px;}
.y129{bottom:911.415000px;}
.y156{bottom:915.735000px;}
.y16f{bottom:916.455000px;}
.y65{bottom:924.735000px;}
.y128{bottom:928.695000px;}
.yc9{bottom:929.790000px;}
.y155{bottom:933.045000px;}
.y16e{bottom:933.765000px;}
.y64{bottom:942.045000px;}
.y127{bottom:946.005000px;}
.yc8{bottom:949.245000px;}
.y154{bottom:950.325000px;}
.y16d{bottom:951.045000px;}
.y63{bottom:959.325000px;}
.y126{bottom:963.285000px;}
.y153{bottom:967.605000px;}
.yc7{bottom:968.325000px;}
.ye{bottom:974.805000px;}
.y62{bottom:976.605000px;}
.y125{bottom:980.205000px;}
.yd{bottom:982.725000px;}
.y152{bottom:984.525000px;}
.y16c{bottom:985.605000px;}
.yc6{bottom:987.765000px;}
.y92{bottom:993.525000px;}
.y61{bottom:993.885000px;}
.y124{bottom:994.245000px;}
.y16b{bottom:1002.885000px;}
.yc{bottom:1006.845000px;}
.y91{bottom:1010.805000px;}
.y60{bottom:1011.165000px;}
.y123{bottom:1012.245000px;}
.yb{bottom:1016.565000px;}
.y16a{bottom:1020.165000px;}
.y151{bottom:1028.085000px;}
.y5f{bottom:1028.445000px;}
.y122{bottom:1030.245000px;}
.ya{bottom:1036.005000px;}
.y90{bottom:1037.445000px;}
.y5e{bottom:1045.365000px;}
.yf6{bottom:1045.725000px;}
.y121{bottom:1048.245000px;}
.y8f{bottom:1054.725000px;}
.y9{bottom:1060.485000px;}
.yf5{bottom:1062.645000px;}
.y120{bottom:1066.290000px;}
.y5d{bottom:1072.050000px;}
.y11f{bottom:1084.290000px;}
.y8{bottom:1088.250000px;}
.y5c{bottom:1088.970000px;}
.y59{bottom:1091.520000px;}
.y11e{bottom:1105.890000px;}
.y5b{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h2a{height:16.905000px;}
.h18{height:16.920000px;}
.h29{height:16.950000px;}
.h2b{height:17.265000px;}
.h2c{height:17.310000px;}
.h25{height:18.345000px;}
.h22{height:18.360000px;}
.hc{height:18.372656px;}
.h23{height:18.396000px;}
.h24{height:18.705000px;}
.h21{height:18.720000px;}
.h27{height:22.305000px;}
.h26{height:22.665000px;}
.h28{height:22.680000px;}
.h6{height:24.348516px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.ha{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h1f{height:42.229688px;}
.h10{height:53.677969px;}
.h14{height:55.147500px;}
.h1d{height:55.785000px;}
.h1a{height:56.190000px;}
.h7{height:58.050000px;}
.h2f{height:59.328281px;}
.h5{height:59.357813px;}
.h11{height:60.155156px;}
.hb{height:60.952500px;}
.h2e{height:62.163910px;}
.h17{height:63.455625px;}
.h8{height:63.577969px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h19{height:74.160000px;}
.h1e{height:74.520000px;}
.h1c{height:74.550000px;}
.h2{height:81.390000px;}
.h1b{height:92.865000px;}
.h4{height:116.640000px;}
.h12{height:188.325000px;}
.h20{height:242.280000px;}
.h2d{height:270.720000px;}
.hd{height:667.965000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1c{width:53.640000px;}
.w10{width:54.750000px;}
.w13{width:63.750000px;}
.wd{width:77.040000px;}
.w1d{width:78.150000px;}
.w1e{width:91.476000px;}
.w11{width:100.470000px;}
.w2{width:103.702500px;}
.wb{width:103.716000px;}
.w14{width:107.310000px;}
.wf{width:109.476000px;}
.w15{width:111.960000px;}
.w18{width:115.560000px;}
.we{width:117.036000px;}
.wc{width:127.512000px;}
.w4{width:132.502500px;}
.w1f{width:140.805000px;}
.w7{width:155.565000px;}
.w6{width:163.080000px;}
.w12{width:195.195000px;}
.w16{width:227.625000px;}
.w19{width:230.505000px;}
.w17{width:234.045000px;}
.w1a{width:236.925000px;}
.w8{width:256.785000px;}
.w9{width:279.450000px;}
.wa{width:491.760000px;}
.w1b{width:518.400000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x17{left:8.266500px;}
.x24{left:9.900000px;}
.x4d{left:11.880000px;}
.x4{left:13.305000px;}
.x28{left:14.760000px;}
.x15{left:17.266500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x33{left:21.240000px;}
.x39{left:23.400000px;}
.x23{left:24.915000px;}
.x2b{left:26.280000px;}
.x3f{left:28.080000px;}
.x16{left:29.146500px;}
.x32{left:30.240000px;}
.x3a{left:32.040000px;}
.x30{left:34.560000px;}
.x34{left:36.000000px;}
.x2d{left:38.160000px;}
.x50{left:39.945000px;}
.x31{left:41.400000px;}
.xf{left:43.906500px;}
.x2f{left:45.000000px;}
.x1b{left:47.542500px;}
.x6{left:48.615000px;}
.x10{left:50.782500px;}
.x2e{left:52.605000px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x3b{left:74.910000px;}
.x1{left:78.529500px;}
.x54{left:79.530000px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x12{left:90.025500px;}
.x46{left:91.125000px;}
.x52{left:92.925000px;}
.x48{left:94.350000px;}
.x2{left:95.425500px;}
.x51{left:96.525000px;}
.x47{left:97.950000px;}
.x1f{left:100.129500px;}
.x45{left:101.910000px;}
.x1c{left:102.985500px;}
.x44{left:105.510000px;}
.x19{left:106.945500px;}
.x4f{left:110.910000px;}
.x35{left:118.836000px;}
.x11{left:124.585500px;}
.x4c{left:154.530000px;}
.x41{left:159.210000px;}
.x40{left:160.635000px;}
.x26{left:177.915000px;}
.x3{left:182.250000px;}
.x53{left:187.200000px;}
.x5c{left:194.475000px;}
.x1e{left:200.235000px;}
.x57{left:209.610000px;}
.x18{left:218.970000px;}
.x56{left:226.185000px;}
.x4b{left:247.785000px;}
.x20{left:256.785000px;}
.x3c{left:262.905000px;}
.x58{left:263.985000px;}
.x36{left:270.825000px;}
.x42{left:271.905000px;}
.x27{left:282.345000px;}
.xb{left:299.985000px;}
.x37{left:326.310000px;}
.x3d{left:327.390000px;}
.x49{left:333.510000px;}
.x59{left:372.030000px;}
.x55{left:383.325000px;}
.x25{left:385.890000px;}
.x29{left:410.580000px;}
.x38{left:427.500000px;}
.x3e{left:435.420000px;}
.x5a{left:450.900000px;}
.x2a{left:488.370000px;}
.x43{left:500.265000px;}
.x4e{left:502.065000px;}
.x21{left:514.305000px;}
.x5b{left:543.105000px;}
.xc{left:564.690000px;}
.xa{left:567.210000px;}
.x2c{left:606.135000px;}
.x22{left:692.925000px;}
.x4a{left:705.885000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.696000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.002667pt;}
.ls19{letter-spacing:-0.864000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.560000pt;}
.ls21{letter-spacing:-0.450667pt;}
.ls1f{letter-spacing:-0.432533pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.124587pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.279040pt;}
.ls1c{letter-spacing:0.376320pt;}
.lse{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls12{letter-spacing:8.320000pt;}
.ls13{letter-spacing:8.426667pt;}
.ls1e{letter-spacing:14.494720pt;}
.ls1d{letter-spacing:41.374720pt;}
.lsf{letter-spacing:432.138667pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.854933pt;}
.wsf{word-spacing:-13.816320pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.025067pt;}
.ws10{word-spacing:-13.007467pt;}
.ws11{word-spacing:-12.989333pt;}
.wsc{word-spacing:-12.800000pt;}
.ws8{word-spacing:-12.608000pt;}
.wse{word-spacing:-12.576000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.744000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._24{margin-left:-199.884800pt;}
._22{margin-left:-88.752640pt;}
._f{margin-left:-3.116373pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._6{width:4.162987pt;}
._9{width:5.060267pt;}
._7{width:6.686720pt;}
._a{width:7.795200pt;}
._12{width:8.698880pt;}
._15{width:9.656320pt;}
._16{width:10.886827pt;}
._11{width:11.911680pt;}
._8{width:13.312000pt;}
._d{width:14.423040pt;}
._b{width:15.459840pt;}
._c{width:16.542720pt;}
._14{width:17.590613pt;}
._13{width:18.542080pt;}
._1f{width:19.658240pt;}
._5{width:20.661760pt;}
._e{width:21.937493pt;}
._10{width:23.178667pt;}
._27{width:26.798507pt;}
._26{width:27.883520pt;}
._29{width:29.082453pt;}
._1e{width:30.074880pt;}
._28{width:31.508480pt;}
._1a{width:33.868800pt;}
._1c{width:35.589120pt;}
._1b{width:37.470720pt;}
._1d{width:38.504107pt;}
._19{width:40.212480pt;}
._18{width:41.241600pt;}
._17{width:42.416640pt;}
._20{width:43.868160pt;}
._21{width:45.934080pt;}
._2a{width:61.178880pt;}
._2b{width:62.284800pt;}
._23{width:74.880000pt;}
._25{width:186.346667pt;}
.fsc{font-size:5.120000pt;}
.fs7{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.956000pt;}
.y75{bottom:3.200000pt;}
.yed{bottom:3.506667pt;}
.y5{bottom:3.520000pt;}
.yd8{bottom:4.466667pt;}
.y7a{bottom:4.480000pt;}
.yca{bottom:4.493333pt;}
.yc3{bottom:4.506667pt;}
.y5a{bottom:4.773333pt;}
.y88{bottom:4.786667pt;}
.y7e{bottom:4.800000pt;}
.y2{bottom:7.040000pt;}
.y57{bottom:7.996000pt;}
.y4{bottom:18.880000pt;}
.y87{bottom:21.106667pt;}
.y79{bottom:21.120000pt;}
.y7d{bottom:21.440000pt;}
.y56{bottom:21.756000pt;}
.y4a{bottom:27.196000pt;}
.y43{bottom:34.240000pt;}
.y55{bottom:35.548000pt;}
.y86{bottom:37.746667pt;}
.y78{bottom:37.760000pt;}
.y7c{bottom:38.106667pt;}
.y3{bottom:39.360000pt;}
.y49{bottom:45.790667pt;}
.y42{bottom:49.280000pt;}
.y54{bottom:50.910667pt;}
.y7{bottom:51.232000pt;}
.yb3{bottom:53.413333pt;}
.y77{bottom:54.080000pt;}
.y85{bottom:54.386667pt;}
.y81{bottom:54.400000pt;}
.y11d{bottom:57.146667pt;}
.y48{bottom:57.630667pt;}
.y41{bottom:64.640000pt;}
.y53{bottom:64.990667pt;}
.y80{bottom:70.720000pt;}
.y52{bottom:76.510667pt;}
.y47{bottom:76.830667pt;}
.y11c{bottom:79.773333pt;}
.y40{bottom:80.000000pt;}
.y58{bottom:81.632000pt;}
.y51{bottom:81.950667pt;}
.y8e{bottom:81.952000pt;}
.yb4{bottom:82.013333pt;}
.y116{bottom:82.272000pt;}
.y150{bottom:88.032000pt;}
.yba{bottom:91.973333pt;}
.y44{bottom:93.476000pt;}
.y3f{bottom:95.360000pt;}
.y50{bottom:96.350667pt;}
.y8d{bottom:97.312000pt;}
.y115{bottom:97.632000pt;}
.y11b{bottom:102.400000pt;}
.y14f{bottom:103.072000pt;}
.yf4{bottom:105.952000pt;}
.yb1{bottom:107.232000pt;}
.y169{bottom:108.512000pt;}
.y4f{bottom:110.110667pt;}
.yb5{bottom:110.586667pt;}
.y3e{bottom:110.760000pt;}
.y8c{bottom:112.672000pt;}
.y114{bottom:112.992000pt;}
.yb9{bottom:114.586667pt;}
.yb0{bottom:119.072000pt;}
.yb2{bottom:120.000000pt;}
.yf3{bottom:121.312000pt;}
.y4e{bottom:123.870667pt;}
.y168{bottom:123.872000pt;}
.y11a{bottom:125.026667pt;}
.y3d{bottom:126.120000pt;}
.y14e{bottom:126.784000pt;}
.y8b{bottom:128.064000pt;}
.y113{bottom:128.384000pt;}
.y46{bottom:132.190667pt;}
.yf2{bottom:136.706667pt;}
.y4d{bottom:137.630667pt;}
.yb6{bottom:139.200000pt;}
.y167{bottom:139.266667pt;}
.y3c{bottom:141.480000pt;}
.y45{bottom:141.790667pt;}
.y14d{bottom:141.826667pt;}
.y8a{bottom:143.426667pt;}
.y112{bottom:143.746667pt;}
.y119{bottom:147.653333pt;}
.yf1{bottom:149.200000pt;}
.y4c{bottom:151.097333pt;}
.y166{bottom:154.626667pt;}
.y3b{bottom:156.840000pt;}
.y14c{bottom:157.186667pt;}
.y89{bottom:158.466667pt;}
.y111{bottom:158.786667pt;}
.yb7{bottom:167.813333pt;}
.y165{bottom:169.986667pt;}
.yf0{bottom:170.000000pt;}
.y3a{bottom:172.200000pt;}
.y14b{bottom:172.546667pt;}
.y110{bottom:174.146667pt;}
.y84{bottom:179.280000pt;}
.y164{bottom:185.346667pt;}
.y39{bottom:187.560000pt;}
.y14a{bottom:187.586667pt;}
.y10f{bottom:189.506667pt;}
.yef{bottom:190.800000pt;}
.yb8{bottom:196.386667pt;}
.y163{bottom:200.706667pt;}
.y38{bottom:202.920000pt;}
.y10e{bottom:204.866667pt;}
.y149{bottom:211.266667pt;}
.yee{bottom:211.280000pt;}
.y162{bottom:216.066667pt;}
.y37{bottom:217.986667pt;}
.y10d{bottom:220.226667pt;}
.y118{bottom:226.213333pt;}
.y148{bottom:226.626667pt;}
.y161{bottom:231.426667pt;}
.yec{bottom:232.080000pt;}
.y36{bottom:233.346667pt;}
.y10c{bottom:235.586667pt;}
.y147{bottom:241.986667pt;}
.y83{bottom:246.173333pt;}
.y160{bottom:246.493333pt;}
.y35{bottom:248.706667pt;}
.y10b{bottom:250.973333pt;}
.yeb{bottom:252.893333pt;}
.y146{bottom:257.373333pt;}
.yf{bottom:261.533333pt;}
.y15f{bottom:261.853333pt;}
.y34{bottom:264.066667pt;}
.y10a{bottom:266.333333pt;}
.y145{bottom:272.733333pt;}
.yea{bottom:273.693333pt;}
.y15e{bottom:277.213333pt;}
.y33{bottom:279.426667pt;}
.y109{bottom:281.693333pt;}
.y144{bottom:288.093333pt;}
.y15d{bottom:292.573333pt;}
.ye9{bottom:294.493333pt;}
.y32{bottom:294.786667pt;}
.y82{bottom:296.413333pt;}
.y108{bottom:297.053333pt;}
.y143{bottom:303.453333pt;}
.y1d{bottom:306.306667pt;}
.y15c{bottom:307.933333pt;}
.y31{bottom:310.146667pt;}
.y107{bottom:312.413333pt;}
.ye8{bottom:314.973333pt;}
.y142{bottom:318.493333pt;}
.y15b{bottom:323.293333pt;}
.y30{bottom:325.186667pt;}
.y106{bottom:327.453333pt;}
.y1c{bottom:327.746667pt;}
.y141{bottom:333.533333pt;}
.ye7{bottom:335.773333pt;}
.yaf{bottom:338.653333pt;}
.y18c{bottom:338.973333pt;}
.y105{bottom:340.253333pt;}
.y2f{bottom:348.253333pt;}
.y1b{bottom:349.213333pt;}
.yae{bottom:354.013333pt;}
.y18b{bottom:354.653333pt;}
.y104{bottom:356.253333pt;}
.y140{bottom:357.213333pt;}
.ye6{bottom:359.773333pt;}
.y2e{bottom:362.013333pt;}
.y7f{bottom:363.333333pt;}
.yad{bottom:369.413333pt;}
.y18a{bottom:370.053333pt;}
.y1a{bottom:370.653333pt;}
.y103{bottom:372.293333pt;}
.y13f{bottom:372.613333pt;}
.y2d{bottom:375.773333pt;}
.ye5{bottom:383.493333pt;}
.yac{bottom:384.773333pt;}
.y189{bottom:385.413333pt;}
.y13e{bottom:387.973333pt;}
.y102{bottom:388.293333pt;}
.y2c{bottom:389.533333pt;}
.y19{bottom:392.093333pt;}
.ye4{bottom:398.853333pt;}
.yab{bottom:400.133333pt;}
.y188{bottom:400.773333pt;}
.y2b{bottom:403.293333pt;}
.y13d{bottom:403.333333pt;}
.y101{bottom:404.293333pt;}
.y18{bottom:413.533333pt;}
.ye3{bottom:414.213333pt;}
.yaa{bottom:415.173333pt;}
.y15a{bottom:415.493333pt;}
.y187{bottom:416.133333pt;}
.y2a{bottom:417.373333pt;}
.y13c{bottom:418.693333pt;}
.y100{bottom:420.293333pt;}
.ye2{bottom:429.573333pt;}
.ya9{bottom:430.533333pt;}
.y29{bottom:431.133333pt;}
.y186{bottom:431.493333pt;}
.y13b{bottom:434.053333pt;}
.y17{bottom:435.293333pt;}
.yff{bottom:436.293333pt;}
.yc5{bottom:439.813333pt;}
.ye1{bottom:444.613333pt;}
.y28{bottom:444.893333pt;}
.ya8{bottom:445.893333pt;}
.y7b{bottom:446.533333pt;}
.y13a{bottom:449.413333pt;}
.yfe{bottom:452.293333pt;}
.y16{bottom:456.773333pt;}
.yc4{bottom:457.093333pt;}
.y27{bottom:458.693333pt;}
.ye0{bottom:459.973333pt;}
.ya7{bottom:461.253333pt;}
.y185{bottom:461.893333pt;}
.y139{bottom:464.773333pt;}
.yfd{bottom:468.293333pt;}
.y26{bottom:472.453333pt;}
.yc2{bottom:474.373333pt;}
.ydf{bottom:475.333333pt;}
.ya6{bottom:476.613333pt;}
.y184{bottom:477.253333pt;}
.y15{bottom:478.213333pt;}
.y138{bottom:480.160000pt;}
.yfc{bottom:484.320000pt;}
.y25{bottom:486.213333pt;}
.yde{bottom:490.720000pt;}
.yc1{bottom:491.360000pt;}
.ya5{bottom:492.000000pt;}
.y183{bottom:492.640000pt;}
.y137{bottom:495.520000pt;}
.y76{bottom:497.120000pt;}
.y14{bottom:499.653333pt;}
.y24{bottom:499.973333pt;}
.yfb{bottom:503.200000pt;}
.ydd{bottom:505.760000pt;}
.ya4{bottom:507.360000pt;}
.y182{bottom:508.000000pt;}
.yc0{bottom:508.640000pt;}
.y136{bottom:510.560000pt;}
.y23{bottom:513.733333pt;}
.y13{bottom:521.093333pt;}
.ya3{bottom:522.720000pt;}
.y181{bottom:523.360000pt;}
.ybf{bottom:525.920000pt;}
.yfa{bottom:526.560000pt;}
.y22{bottom:527.813333pt;}
.ydc{bottom:529.440000pt;}
.ya2{bottom:538.080000pt;}
.y180{bottom:538.720000pt;}
.y135{bottom:541.280000pt;}
.y21{bottom:541.573333pt;}
.yf9{bottom:541.920000pt;}
.y12{bottom:542.533333pt;}
.ybe{bottom:543.200000pt;}
.ydb{bottom:544.800000pt;}
.ya1{bottom:553.440000pt;}
.yf8{bottom:554.080000pt;}
.y117{bottom:554.560000pt;}
.y20{bottom:555.333333pt;}
.y134{bottom:556.640000pt;}
.ybd{bottom:560.160000pt;}
.y11{bottom:563.973333pt;}
.y74{bottom:564.000000pt;}
.ya0{bottom:568.800000pt;}
.y1f{bottom:569.120000pt;}
.y17f{bottom:569.440000pt;}
.y133{bottom:572.000000pt;}
.yda{bottom:572.640000pt;}
.ybc{bottom:577.440000pt;}
.y1e{bottom:582.560000pt;}
.y73{bottom:582.880000pt;}
.y9f{bottom:584.160000pt;}
.y17e{bottom:584.800000pt;}
.y10{bottom:585.440000pt;}
.y132{bottom:587.360000pt;}
.yd9{bottom:589.920000pt;}
.ybb{bottom:594.746667pt;}
.y9e{bottom:599.226667pt;}
.y17d{bottom:600.186667pt;}
.y131{bottom:602.746667pt;}
.y72{bottom:606.266667pt;}
.yd7{bottom:607.240000pt;}
.y9d{bottom:614.586667pt;}
.y17c{bottom:615.226667pt;}
.y130{bottom:618.106667pt;}
.yd6{bottom:624.200000pt;}
.y9c{bottom:629.626667pt;}
.y71{bottom:629.946667pt;}
.y17b{bottom:630.586667pt;}
.y12f{bottom:633.466667pt;}
.yd5{bottom:641.480000pt;}
.y9b{bottom:644.986667pt;}
.y70{bottom:645.306667pt;}
.y17a{bottom:645.946667pt;}
.y12e{bottom:648.826667pt;}
.yd4{bottom:658.760000pt;}
.y9a{bottom:660.346667pt;}
.y6f{bottom:660.666667pt;}
.y179{bottom:661.306667pt;}
.y12d{bottom:664.186667pt;}
.y6e{bottom:676.026667pt;}
.y178{bottom:676.666667pt;}
.y12c{bottom:678.906667pt;}
.yd3{bottom:679.226667pt;}
.y99{bottom:684.026667pt;}
.y6d{bottom:691.386667pt;}
.y177{bottom:692.026667pt;}
.y98{bottom:699.386667pt;}
.y12b{bottom:702.586667pt;}
.yd2{bottom:702.906667pt;}
.y6c{bottom:706.746667pt;}
.y176{bottom:707.386667pt;}
.y97{bottom:714.786667pt;}
.yd1{bottom:717.986667pt;}
.y6b{bottom:722.146667pt;}
.y175{bottom:722.786667pt;}
.y96{bottom:730.146667pt;}
.yd0{bottom:733.346667pt;}
.y6a{bottom:737.506667pt;}
.y174{bottom:738.146667pt;}
.y95{bottom:745.506667pt;}
.ycf{bottom:748.706667pt;}
.y69{bottom:752.866667pt;}
.y173{bottom:753.506667pt;}
.y94{bottom:760.866667pt;}
.yce{bottom:764.066667pt;}
.y68{bottom:767.906667pt;}
.y159{bottom:768.226667pt;}
.y172{bottom:768.866667pt;}
.y93{bottom:776.226667pt;}
.ycd{bottom:779.426667pt;}
.y158{bottom:783.266667pt;}
.y171{bottom:784.226667pt;}
.y67{bottom:791.266667pt;}
.ycc{bottom:791.920000pt;}
.y12a{bottom:794.786667pt;}
.yf7{bottom:798.306667pt;}
.y157{bottom:798.626667pt;}
.y170{bottom:799.266667pt;}
.y66{bottom:806.626667pt;}
.ycb{bottom:809.200000pt;}
.y129{bottom:810.146667pt;}
.y156{bottom:813.986667pt;}
.y16f{bottom:814.626667pt;}
.y65{bottom:821.986667pt;}
.y128{bottom:825.506667pt;}
.yc9{bottom:826.480000pt;}
.y155{bottom:829.373333pt;}
.y16e{bottom:830.013333pt;}
.y64{bottom:837.373333pt;}
.y127{bottom:840.893333pt;}
.yc8{bottom:843.773333pt;}
.y154{bottom:844.733333pt;}
.y16d{bottom:845.373333pt;}
.y63{bottom:852.733333pt;}
.y126{bottom:856.253333pt;}
.y153{bottom:860.093333pt;}
.yc7{bottom:860.733333pt;}
.ye{bottom:866.493333pt;}
.y62{bottom:868.093333pt;}
.y125{bottom:871.293333pt;}
.yd{bottom:873.533333pt;}
.y152{bottom:875.133333pt;}
.y16c{bottom:876.093333pt;}
.yc6{bottom:878.013333pt;}
.y92{bottom:883.133333pt;}
.y61{bottom:883.453333pt;}
.y124{bottom:883.773333pt;}
.y16b{bottom:891.453333pt;}
.yc{bottom:894.973333pt;}
.y91{bottom:898.493333pt;}
.y60{bottom:898.813333pt;}
.y123{bottom:899.773333pt;}
.yb{bottom:903.613333pt;}
.y16a{bottom:906.813333pt;}
.y151{bottom:913.853333pt;}
.y5f{bottom:914.173333pt;}
.y122{bottom:915.773333pt;}
.ya{bottom:920.893333pt;}
.y90{bottom:922.173333pt;}
.y5e{bottom:929.213333pt;}
.yf6{bottom:929.533333pt;}
.y121{bottom:931.773333pt;}
.y8f{bottom:937.533333pt;}
.y9{bottom:942.653333pt;}
.yf5{bottom:944.573333pt;}
.y120{bottom:947.813333pt;}
.y5d{bottom:952.933333pt;}
.y11f{bottom:963.813333pt;}
.y8{bottom:967.333333pt;}
.y5c{bottom:967.973333pt;}
.y59{bottom:970.240000pt;}
.y11e{bottom:983.013333pt;}
.y5b{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h2a{height:15.026667pt;}
.h18{height:15.040000pt;}
.h29{height:15.066667pt;}
.h2b{height:15.346667pt;}
.h2c{height:15.386667pt;}
.h25{height:16.306667pt;}
.h22{height:16.320000pt;}
.hc{height:16.331250pt;}
.h23{height:16.352000pt;}
.h24{height:16.626667pt;}
.h21{height:16.640000pt;}
.h27{height:19.826667pt;}
.h26{height:20.146667pt;}
.h28{height:20.160000pt;}
.h6{height:21.643125pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.ha{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h1f{height:37.537500pt;}
.h10{height:47.713750pt;}
.h14{height:49.020000pt;}
.h1d{height:49.586667pt;}
.h1a{height:49.946667pt;}
.h7{height:51.600000pt;}
.h2f{height:52.736250pt;}
.h5{height:52.762500pt;}
.h11{height:53.471250pt;}
.hb{height:54.180000pt;}
.h2e{height:55.256809pt;}
.h17{height:56.405000pt;}
.h8{height:56.513750pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h19{height:65.920000pt;}
.h1e{height:66.240000pt;}
.h1c{height:66.266667pt;}
.h2{height:72.346667pt;}
.h1b{height:82.546667pt;}
.h4{height:103.680000pt;}
.h12{height:167.400000pt;}
.h20{height:215.360000pt;}
.h2d{height:240.640000pt;}
.hd{height:593.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1c{width:47.680000pt;}
.w10{width:48.666667pt;}
.w13{width:56.666667pt;}
.wd{width:68.480000pt;}
.w1d{width:69.466667pt;}
.w1e{width:81.312000pt;}
.w11{width:89.306667pt;}
.w2{width:92.180000pt;}
.wb{width:92.192000pt;}
.w14{width:95.386667pt;}
.wf{width:97.312000pt;}
.w15{width:99.520000pt;}
.w18{width:102.720000pt;}
.we{width:104.032000pt;}
.wc{width:113.344000pt;}
.w4{width:117.780000pt;}
.w1f{width:125.160000pt;}
.w7{width:138.280000pt;}
.w6{width:144.960000pt;}
.w12{width:173.506667pt;}
.w16{width:202.333333pt;}
.w19{width:204.893333pt;}
.w17{width:208.040000pt;}
.w1a{width:210.600000pt;}
.w8{width:228.253333pt;}
.w9{width:248.400000pt;}
.wa{width:437.120000pt;}
.w1b{width:460.800000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x17{left:7.348000pt;}
.x24{left:8.800000pt;}
.x4d{left:10.560000pt;}
.x4{left:11.826667pt;}
.x28{left:13.120000pt;}
.x15{left:15.348000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x33{left:18.880000pt;}
.x39{left:20.800000pt;}
.x23{left:22.146667pt;}
.x2b{left:23.360000pt;}
.x3f{left:24.960000pt;}
.x16{left:25.908000pt;}
.x32{left:26.880000pt;}
.x3a{left:28.480000pt;}
.x30{left:30.720000pt;}
.x34{left:32.000000pt;}
.x2d{left:33.920000pt;}
.x50{left:35.506667pt;}
.x31{left:36.800000pt;}
.xf{left:39.028000pt;}
.x2f{left:40.000000pt;}
.x1b{left:42.260000pt;}
.x6{left:43.213333pt;}
.x10{left:45.140000pt;}
.x2e{left:46.760000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x3b{left:66.586667pt;}
.x1{left:69.804000pt;}
.x54{left:70.693333pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x12{left:80.022667pt;}
.x46{left:81.000000pt;}
.x52{left:82.600000pt;}
.x48{left:83.866667pt;}
.x2{left:84.822667pt;}
.x51{left:85.800000pt;}
.x47{left:87.066667pt;}
.x1f{left:89.004000pt;}
.x45{left:90.586667pt;}
.x1c{left:91.542667pt;}
.x44{left:93.786667pt;}
.x19{left:95.062667pt;}
.x4f{left:98.586667pt;}
.x35{left:105.632000pt;}
.x11{left:110.742667pt;}
.x4c{left:137.360000pt;}
.x41{left:141.520000pt;}
.x40{left:142.786667pt;}
.x26{left:158.146667pt;}
.x3{left:162.000000pt;}
.x53{left:166.400000pt;}
.x5c{left:172.866667pt;}
.x1e{left:177.986667pt;}
.x57{left:186.320000pt;}
.x18{left:194.640000pt;}
.x56{left:201.053333pt;}
.x4b{left:220.253333pt;}
.x20{left:228.253333pt;}
.x3c{left:233.693333pt;}
.x58{left:234.653333pt;}
.x36{left:240.733333pt;}
.x42{left:241.693333pt;}
.x27{left:250.973333pt;}
.xb{left:266.653333pt;}
.x37{left:290.053333pt;}
.x3d{left:291.013333pt;}
.x49{left:296.453333pt;}
.x59{left:330.693333pt;}
.x55{left:340.733333pt;}
.x25{left:343.013333pt;}
.x29{left:364.960000pt;}
.x38{left:380.000000pt;}
.x3e{left:387.040000pt;}
.x5a{left:400.800000pt;}
.x2a{left:434.106667pt;}
.x43{left:444.680000pt;}
.x4e{left:446.280000pt;}
.x21{left:457.160000pt;}
.x5b{left:482.760000pt;}
.xc{left:501.946667pt;}
.xa{left:504.186667pt;}
.x2c{left:538.786667pt;}
.x22{left:615.933333pt;}
.x4a{left:627.453333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{left:717.413333pt;}
}




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