
    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_35a6ea1540c592caeebdadf2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_8f41ba01c0d882db8f821b91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c8850aeb584dd47229e83012.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_3c3ec7e28dcff68fb4963208.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117188;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_fe5baad6896953d036ceca47.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_146a63c502282fb98120ec32.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_cde60d10eb0f4d9beedff8d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfa507c27e028d913097fd49.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2fef52b43b1022d542444e8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_13c914d2759ed2678d679cee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_24e002be763882d446dcf610.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850098;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_00a1852bac2e8ed1b3cc61cf.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.vf{vertical-align:-30.180000px;}
.v2{vertical-align:-24.000000px;}
.ve{vertical-align:-21.000000px;}
.v6{vertical-align:-15.000000px;}
.v3{vertical-align:-6.000000px;}
.vc{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:3.000000px;}
.v10{vertical-align:6.000000px;}
.v1{vertical-align:24.000000px;}
.v9{vertical-align:35.280000px;}
.v5{vertical-align:39.780000px;}
.v8{vertical-align:42.000000px;}
.v7{vertical-align:48.000000px;}
.v4{vertical-align:54.780000px;}
.va{vertical-align:99.000000px;}
.vb{vertical-align:123.000000px;}
.ls14{letter-spacing:-0.750000px;}
.ls6{letter-spacing:-0.726000px;}
.ls2b{letter-spacing:-0.492000px;}
.lsc{letter-spacing:-0.468000px;}
.ls9{letter-spacing:-0.282000px;}
.ls12{letter-spacing:-0.258000px;}
.ls10{letter-spacing:-0.234000px;}
.ls22{letter-spacing:-0.138000px;}
.ls29{letter-spacing:-0.066000px;}
.ls2a{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024000px;}
.ls24{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.234000px;}
.ls18{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.252000px;}
.ls2d{letter-spacing:0.258000px;}
.ls2{letter-spacing:0.282000px;}
.ls16{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.336000px;}
.ls17{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.606000px;}
.lsb{letter-spacing:0.720000px;}
.lse{letter-spacing:0.750000px;}
.ls2e{letter-spacing:0.780000px;}
.ls1f{letter-spacing:0.924000px;}
.ls1d{letter-spacing:0.960000px;}
.ls26{letter-spacing:0.972000px;}
.ls4{letter-spacing:0.984000px;}
.ls25{letter-spacing:1.500000px;}
.ls23{letter-spacing:1.896000px;}
.ls1e{letter-spacing:2.196000px;}
.ls20{letter-spacing:2.448000px;}
.ls1a{letter-spacing:2.940000px;}
.ls1b{letter-spacing:3.516000px;}
.ls1c{letter-spacing:4.422000px;}
.ls8{letter-spacing:6.000000px;}
.ls19{letter-spacing:16.092000px;}
.lsf{letter-spacing:40.734000px;}
.lsd{letter-spacing:87.954000px;}
.ls7{letter-spacing:94.734000px;}
.ls2c{letter-spacing:113.970000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-72.606000px;}
.wsc{word-spacing:-72.000000px;}
.ws0{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.984000px;}
.wsa{word-spacing:-18.750000px;}
.ws4{word-spacing:-18.282000px;}
.ws5{word-spacing:-18.234000px;}
.wsd{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.024000px;}
.ws3{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.976000px;}
.wsb{word-spacing:-17.766000px;}
.ws13{word-spacing:-17.742000px;}
.ws9{word-spacing:-17.718000px;}
.ws17{word-spacing:-17.508000px;}
.ws8{word-spacing:-17.274000px;}
.ws18{word-spacing:-17.250000px;}
.wse{word-spacing:-16.176000px;}
.ws12{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.702000px;}
.ws2{word-spacing:-12.000000px;}
.wsf{word-spacing:-11.220000px;}
.ws15{word-spacing:-9.750000px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:84.507000px;}
._1{margin-left:-43.226400px;}
._2{margin-left:-22.613400px;}
._0{margin-left:-21.240000px;}
._14{margin-left:-5.184000px;}
._13{margin-left:-4.170000px;}
._e{margin-left:-2.994000px;}
._4{margin-left:-1.056000px;}
._3{width:1.014000px;}
._5{width:2.166000px;}
._7{width:3.234000px;}
._8{width:4.254000px;}
._d{width:5.832000px;}
._f{width:7.638000px;}
._c{width:8.712000px;}
._12{width:10.080000px;}
._11{width:11.088000px;}
._24{width:12.096000px;}
._a{width:13.104000px;}
._9{width:14.400000px;}
._17{width:15.546000px;}
._b{width:16.590000px;}
._22{width:17.616000px;}
._1d{width:19.224000px;}
._1c{width:20.232000px;}
._21{width:21.384000px;}
._15{width:22.608000px;}
._16{width:23.700000px;}
._27{width:24.768000px;}
._18{width:25.776000px;}
._1b{width:26.856000px;}
._1a{width:28.200000px;}
._19{width:29.520000px;}
._1e{width:31.464000px;}
._28{width:32.880000px;}
._2e{width:34.560000px;}
._6{width:44.454000px;}
._2a{width:45.534000px;}
._2d{width:48.000000px;}
._1f{width:52.488000px;}
._20{width:53.706000px;}
._2c{width:67.542000px;}
._2b{width:68.622000px;}
._2f{width:70.176000px;}
._25{width:76.590000px;}
._26{width:78.642000px;}
._23{width:80.496000px;}
._29{width:113.946000px;}
._10{width:846.150000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:3.930000px;}
.ycd{bottom:3.937500px;}
.y7b{bottom:3.945000px;}
.yd1{bottom:4.125000px;}
.yd5{bottom:4.305000px;}
.yd2{bottom:4.500000px;}
.y107{bottom:5.055000px;}
.y109{bottom:5.070000px;}
.y105{bottom:5.445000px;}
.y106{bottom:5.820000px;}
.y8a{bottom:6.195000px;}
.yde{bottom:12.750000px;}
.ydb{bottom:13.125000px;}
.ye7{bottom:13.140000px;}
.ye4{bottom:13.305000px;}
.yea{bottom:13.320000px;}
.ye1{bottom:13.350000px;}
.ydd{bottom:13.695000px;}
.ye0{bottom:13.725000px;}
.ye5{bottom:14.055000px;}
.ye8{bottom:14.070000px;}
.ye2{bottom:14.100000px;}
.yce{bottom:14.250000px;}
.ycb{bottom:14.625000px;}
.y89{bottom:15.195000px;}
.yd{bottom:18.562500px;}
.yc{bottom:19.125000px;}
.ycc{bottom:24.562500px;}
.y101{bottom:25.500000px;}
.y88{bottom:36.945000px;}
.y7a{bottom:40.320000px;}
.y7c{bottom:42.195000px;}
.y79{bottom:52.320000px;}
.y156{bottom:112.350000px;}
.y117{bottom:113.100000px;}
.y14a{bottom:116.100000px;}
.y124{bottom:117.787500px;}
.yca{bottom:122.287500px;}
.y8e{bottom:123.975000px;}
.y77{bottom:131.475000px;}
.y1e{bottom:134.475000px;}
.yfa{bottom:134.662500px;}
.y63{bottom:139.725000px;}
.yaf{bottom:141.225000px;}
.y16a{bottom:146.100000px;}
.ya5{bottom:149.475000px;}
.y4c{bottom:150.600000px;}
.y4e{bottom:153.045000px;}
.y37{bottom:153.420000px;}
.y116{bottom:154.530000px;}
.y149{bottom:157.350000px;}
.y8d{bottom:166.170000px;}
.yc9{bottom:168.795000px;}
.y15c{bottom:172.350000px;}
.y76{bottom:172.725000px;}
.y123{bottom:174.600000px;}
.y1d{bottom:175.920000px;}
.yf9{bottom:176.100000px;}
.y62{bottom:180.975000px;}
.yae{bottom:183.795000px;}
.yb9{bottom:186.420000px;}
.y169{bottom:187.350000px;}
.yfc{bottom:189.225000px;}
.yc8{bottom:189.420000px;}
.y4b{bottom:192.030000px;}
.ya3{bottom:193.920000px;}
.y4d{bottom:194.295000px;}
.y36{bottom:194.655000px;}
.y115{bottom:195.795000px;}
.y136{bottom:197.295000px;}
.y8c{bottom:208.350000px;}
.y155{bottom:210.225000px;}
.y148{bottom:213.795000px;}
.y75{bottom:214.170000px;}
.y122{bottom:215.850000px;}
.y1c{bottom:217.170000px;}
.yf8{bottom:217.350000px;}
.y61{bottom:222.030000px;}
.yad{bottom:225.030000px;}
.yb8{bottom:227.850000px;}
.y168{bottom:228.780000px;}
.yc7{bottom:230.670000px;}
.y4a{bottom:233.295000px;}
.ya2{bottom:235.155000px;}
.y35{bottom:236.100000px;}
.y114{bottom:237.225000px;}
.y8b{bottom:249.795000px;}
.y135{bottom:253.920000px;}
.y147{bottom:255.225000px;}
.y74{bottom:255.600000px;}
.y121{bottom:257.295000px;}
.y1b{bottom:258.600000px;}
.yf7{bottom:258.780000px;}
.y60{bottom:265.350000px;}
.y87{bottom:266.280000px;}
.yac{bottom:266.475000px;}
.yb7{bottom:269.280000px;}
.yc6{bottom:271.920000px;}
.y49{bottom:274.725000px;}
.ya1{bottom:276.600000px;}
.y34{bottom:277.350000px;}
.y113{bottom:278.670000px;}
.y167{bottom:285.225000px;}
.y134{bottom:295.350000px;}
.y146{bottom:296.475000px;}
.y73{bottom:298.545000px;}
.yf6{bottom:300.225000px;}
.y120{bottom:302.850000px;}
.y5f{bottom:307.920000px;}
.yb6{bottom:310.545000px;}
.y15b{bottom:311.475000px;}
.yc5{bottom:313.350000px;}
.y48{bottom:315.975000px;}
.ya0{bottom:318.045000px;}
.y33{bottom:318.795000px;}
.y112{bottom:319.905000px;}
.y166{bottom:326.475000px;}
.y1a{bottom:326.850000px;}
.y133{bottom:336.795000px;}
.y72{bottom:340.530000px;}
.yf5{bottom:341.475000px;}
.y5e{bottom:349.155000px;}
.yb5{bottom:352.005000px;}
.y17e{bottom:352.755000px;}
.y145{bottom:352.950000px;}
.y11f{bottom:353.505000px;}
.yc4{bottom:354.630000px;}
.y47{bottom:357.450000px;}
.y9f{bottom:359.325000px;}
.y32{bottom:360.255000px;}
.y111{bottom:361.005000px;}
.y86{bottom:361.755000px;}
.y154{bottom:364.200000px;}
.y165{bottom:367.950000px;}
.y19{bottom:368.325000px;}
.y132{bottom:378.075000px;}
.yf4{bottom:382.950000px;}
.y71{bottom:388.380000px;}
.yab{bottom:390.630000px;}
.y5d{bottom:392.130000px;}
.yb4{bottom:393.255000px;}
.y144{bottom:394.200000px;}
.yc3{bottom:396.075000px;}
.y110{bottom:397.200000px;}
.y46{bottom:398.880000px;}
.ya4{bottom:400.380000px;}
.y9e{bottom:400.755000px;}
.y31{bottom:401.505000px;}
.y85{bottom:403.200000px;}
.y153{bottom:405.630000px;}
.y182{bottom:407.505000px;}
.y17d{bottom:409.200000px;}
.y11e{bottom:412.950000px;}
.y131{bottom:419.505000px;}
.y70{bottom:423.825000px;}
.y164{bottom:424.200000px;}
.yf3{bottom:425.880000px;}
.y18{bottom:427.755000px;}
.yaa{bottom:431.880000px;}
.y5c{bottom:434.700000px;}
.y15a{bottom:435.630000px;}
.y10f{bottom:437.325000px;}
.yc2{bottom:437.505000px;}
.y45{bottom:440.145000px;}
.y9d{bottom:442.005000px;}
.y30{bottom:442.950000px;}
.y84{bottom:444.450000px;}
.y10e{bottom:446.505000px;}
.y143{bottom:450.630000px;}
.y17c{bottom:452.130000px;}
.y11d{bottom:454.200000px;}
.y130{bottom:460.755000px;}
.y152{bottom:462.075000px;}
.y181{bottom:462.450000px;}
.y6f{bottom:465.075000px;}
.y163{bottom:465.630000px;}
.yf2{bottom:468.450000px;}
.y10d{bottom:470.880000px;}
.ya9{bottom:475.005000px;}
.y5b{bottom:476.130000px;}
.yc1{bottom:478.770000px;}
.y44{bottom:481.575000px;}
.y9c{bottom:483.450000px;}
.y2f{bottom:484.200000px;}
.y83{bottom:485.880000px;}
.y142{bottom:492.075000px;}
.y17{bottom:493.005000px;}
.y17b{bottom:494.700000px;}
.y10c{bottom:495.255000px;}
.y11c{bottom:495.645000px;}
.y12f{bottom:502.200000px;}
.y151{bottom:503.325000px;}
.y162{bottom:507.075000px;}
.y6e{bottom:508.005000px;}
.yb{bottom:508.660050px;}
.yf1{bottom:509.700000px;}
.ya8{bottom:517.395000px;}
.y5a{bottom:519.075000px;}
.y10b{bottom:519.630000px;}
.yc0{bottom:520.200000px;}
.y43{bottom:522.825000px;}
.y9b{bottom:524.880000px;}
.y2e{bottom:525.630000px;}
.ya{bottom:526.890000px;}
.y82{bottom:527.130000px;}
.y141{bottom:533.325000px;}
.y11b{bottom:537.075000px;}
.y12e{bottom:543.630000px;}
.y10a{bottom:544.005000px;}
.y9{bottom:545.119950px;}
.y16{bottom:546.450000px;}
.y161{bottom:548.325000px;}
.yf0{bottom:551.145000px;}
.y6d{bottom:552.255000px;}
.y17a{bottom:556.950000px;}
.yb3{bottom:558.825000px;}
.y150{bottom:559.770000px;}
.ya7{bottom:560.325000px;}
.y59{bottom:561.450000px;}
.y16d{bottom:563.325000px;}
.y8{bottom:563.349900px;}
.y42{bottom:564.255000px;}
.y9a{bottom:566.130000px;}
.y4f{bottom:566.700000px;}
.y2d{bottom:567.075000px;}
.y108{bottom:568.380000px;}
.y81{bottom:568.575000px;}
.y11a{bottom:578.325000px;}
.y7{bottom:581.579850px;}
.y12d{bottom:584.895000px;}
.y140{bottom:589.800000px;}
.yef{bottom:592.425000px;}
.y104{bottom:592.800000px;}
.y15{bottom:593.745000px;}
.y179{bottom:594.120000px;}
.y6c{bottom:594.675000px;}
.y14f{bottom:601.230000px;}
.yb2{bottom:601.800000px;}
.y58{bottom:602.925000px;}
.y160{bottom:604.800000px;}
.y41{bottom:605.745000px;}
.y99{bottom:607.620000px;}
.y2c{bottom:608.370000px;}
.y80{bottom:610.050000px;}
.y100{bottom:617.175000px;}
.y6{bottom:618.039750px;}
.y119{bottom:619.800000px;}
.y12c{bottom:620.550000px;}
.y13f{bottom:631.245000px;}
.yee{bottom:633.480000px;}
.y6b{bottom:636.120000px;}
.y5{bottom:636.269700px;}
.y178{bottom:638.175000px;}
.y103{bottom:638.550000px;}
.y57{bottom:644.370000px;}
.yb1{bottom:645.870000px;}
.y15f{bottom:646.245000px;}
.y40{bottom:646.980000px;}
.y14{bottom:647.175000px;}
.y51{bottom:648.675000px;}
.y98{bottom:648.870000px;}
.y2b{bottom:649.800000px;}
.y7f{bottom:651.300000px;}
.y184{bottom:652.425000px;}
.y4{bottom:654.499650px;}
.y14e{bottom:657.495000px;}
.y102{bottom:660.105000px;}
.yed{bottom:669.675000px;}
.y13e{bottom:672.495000px;}
.y3{bottom:672.729600px;}
.y118{bottom:676.245000px;}
.y12b{bottom:676.980000px;}
.y6a{bottom:679.050000px;}
.y177{bottom:680.550000px;}
.y56{bottom:685.605000px;}
.yff{bottom:685.800000px;}
.ya6{bottom:687.300000px;}
.y159{bottom:687.480000px;}
.y3f{bottom:688.425000px;}
.y13{bottom:688.620000px;}
.y97{bottom:690.300000px;}
.y2{bottom:690.959550px;}
.y2a{bottom:691.245000px;}
.y7e{bottom:692.745000px;}
.yec{bottom:694.800000px;}
.y16c{bottom:702.480000px;}
.y27{bottom:705.675000px;}
.y183{bottom:707.730000px;}
.yeb{bottom:712.050000px;}
.y14d{bottom:713.925000px;}
.y12a{bottom:718.425000px;}
.ye9{bottom:721.230000px;}
.y69{bottom:723.120000px;}
.y55{bottom:727.050000px;}
.y1{bottom:727.419450px;}
.yfe{bottom:728.745000px;}
.y13d{bottom:728.925000px;}
.y3e{bottom:729.870000px;}
.yb0{bottom:731.355000px;}
.y96{bottom:731.745000px;}
.y29{bottom:732.495000px;}
.y7d{bottom:733.620000px;}
.y12{bottom:735.870000px;}
.y176{bottom:736.995000px;}
.y15e{bottom:743.925000px;}
.y185{bottom:745.050000px;}
.y78{bottom:750.480000px;}
.ye6{bottom:753.105000px;}
.y14c{bottom:755.175000px;}
.y129{bottom:759.675000px;}
.y68{bottom:765.300000px;}
.y54{bottom:768.120000px;}
.ybf{bottom:768.480000px;}
.y13c{bottom:770.175000px;}
.y3d{bottom:771.105000px;}
.yfd{bottom:772.800000px;}
.y95{bottom:772.995000px;}
.y26{bottom:773.925000px;}
.y175{bottom:778.425000px;}
.y186{bottom:781.980000px;}
.ye3{bottom:784.800000px;}
.y15d{bottom:785.175000px;}
.y11{bottom:789.300000px;}
.y128{bottom:801.120000px;}
.y67{bottom:807.120000px;}
.ybe{bottom:809.745000px;}
.y53{bottom:811.425000px;}
.y14b{bottom:811.620000px;}
.y3c{bottom:812.550000px;}
.y94{bottom:814.425000px;}
.y25{bottom:815.175000px;}
.ydf{bottom:816.675000px;}
.y174{bottom:819.675000px;}
.y13b{bottom:826.620000px;}
.y10{bottom:830.580000px;}
.y16b{bottom:841.650000px;}
.y66{bottom:848.400000px;}
.ydc{bottom:848.580000px;}
.ybd{bottom:851.205000px;}
.y3b{bottom:853.830000px;}
.y93{bottom:855.330000px;}
.y24{bottom:856.650000px;}
.y127{bottom:857.205000px;}
.y173{bottom:861.150000px;}
.y16e{bottom:867.705000px;}
.y13a{bottom:868.080000px;}
.y180{bottom:872.205000px;}
.yda{bottom:880.275000px;}
.y158{bottom:883.080000px;}
.y65{bottom:891.330000px;}
.ybc{bottom:892.455000px;}
.yfb{bottom:894.150000px;}
.y3a{bottom:895.275000px;}
.y92{bottom:896.775000px;}
.y50{bottom:897.705000px;}
.y23{bottom:898.080000px;}
.y172{bottom:902.400000px;}
.y139{bottom:909.330000px;}
.yd9{bottom:915.150000px;}
.y126{bottom:916.830000px;}
.yf{bottom:919.275000px;}
.y157{bottom:924.330000px;}
.y17f{bottom:927.525000px;}
.y64{bottom:935.580000px;}
.yd8{bottom:935.775000px;}
.y39{bottom:936.705000px;}
.y52{bottom:938.205000px;}
.y22{bottom:939.330000px;}
.y171{bottom:943.830000px;}
.y125{bottom:962.400000px;}
.y138{bottom:965.775000px;}
.yd7{bottom:976.650000px;}
.ybb{bottom:977.955000px;}
.y38{bottom:979.650000px;}
.y91{bottom:979.830000px;}
.y21{bottom:980.775000px;}
.yd6{bottom:994.275000px;}
.ye{bottom:995.205000px;}
.y170{bottom:1000.275000px;}
.y137{bottom:1007.025000px;}
.yd3{bottom:1015.650000px;}
.yba{bottom:1020.900000px;}
.y90{bottom:1021.275000px;}
.y20{bottom:1022.025000px;}
.yd0{bottom:1037.025000px;}
.ycf{bottom:1058.580000px;}
.y16f{bottom:1060.650000px;}
.y28{bottom:1063.080000px;}
.y8f{bottom:1063.275000px;}
.y1f{bottom:1063.455000px;}
.h1b{height:20.625000px;}
.h18{height:20.662500px;}
.h1a{height:20.812500px;}
.h22{height:23.625000px;}
.h23{height:23.662500px;}
.h1c{height:29.812500px;}
.h1d{height:30.937500px;}
.h1f{height:31.125000px;}
.h1e{height:31.162500px;}
.h20{height:34.962891px;}
.h3{height:35.437500px;}
.hb{height:40.546875px;}
.h16{height:41.250000px;}
.h6{height:43.031250px;}
.h15{height:50.800781px;}
.h17{height:57.867188px;}
.h19{height:58.047188px;}
.h24{height:59.267578px;}
.hf{height:60.679688px;}
.h21{height:63.562500px;}
.h1{height:64.020000px;}
.h2{height:64.546875px;}
.h9{height:64.898438px;}
.h7{height:67.031250px;}
.ha{height:67.091250px;}
.h5{height:67.265625px;}
.h10{height:70.500000px;}
.h8{height:74.953125px;}
.h14{height:79.980469px;}
.hc{height:81.225000px;}
.h12{height:121.980469px;}
.he{height:127.980469px;}
.h4{height:129.550781px;}
.h11{height:134.700469px;}
.hd{height:134.760469px;}
.h13{height:183.679688px;}
.h0{height:1188.000000px;}
.w2{width:9.000000px;}
.w3{width:18.000000px;}
.w5{width:39.937500px;}
.we{width:80.662500px;}
.w10{width:84.187500px;}
.w11{width:84.937500px;}
.w8{width:95.850000px;}
.wa{width:104.062500px;}
.w18{width:115.162500px;}
.w7{width:127.500000px;}
.wf{width:127.725000px;}
.w13{width:129.750000px;}
.w17{width:134.287500px;}
.w16{width:134.475000px;}
.wb{width:135.022500px;}
.w19{width:153.600000px;}
.w9{width:159.405000px;}
.w15{width:180.030000px;}
.wc{width:208.170000px;}
.wd{width:208.905000px;}
.w6{width:210.030000px;}
.w14{width:268.755000px;}
.w12{width:448.800000px;}
.w4{width:587.175000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:8.062500px;}
.x14{left:9.360000px;}
.x1f{left:11.625000px;}
.x32{left:12.930000px;}
.x23{left:16.500000px;}
.x21{left:18.375000px;}
.x1b{left:19.875000px;}
.x33{left:22.695000px;}
.x34{left:24.795000px;}
.x35{left:26.250000px;}
.x1c{left:27.375000px;}
.x28{left:28.680000px;}
.x1e{left:31.920000px;}
.x2a{left:34.695000px;}
.x3d{left:36.735000px;}
.x27{left:39.195000px;}
.x24{left:43.320000px;}
.x3f{left:44.625000px;}
.x26{left:48.000000px;}
.x40{left:49.125000px;}
.x3b{left:53.610000px;}
.x25{left:55.492500px;}
.x2e{left:57.555000px;}
.x29{left:59.992500px;}
.x42{left:61.860000px;}
.x41{left:64.305000px;}
.x2c{left:67.485000px;}
.x19{left:105.007500px;}
.x2{left:108.037486px;}
.x18{left:110.662500px;}
.x8{left:120.974986px;}
.xe{left:123.224986px;}
.x37{left:127.350000px;}
.x36{left:129.412486px;}
.xb{left:132.599986px;}
.x9{left:134.849986px;}
.x6{left:141.037486px;}
.x5{left:145.162486px;}
.x10{left:152.857500px;}
.x43{left:156.029986px;}
.x4{left:158.849986px;}
.x38{left:168.780000px;}
.x2b{left:182.474986px;}
.x1{left:213.000000px;}
.x15{left:218.287500px;}
.xc{left:262.349986px;}
.x7{left:273.974986px;}
.x16{left:290.467500px;}
.x11{left:304.732500px;}
.x2d{left:316.575000px;}
.x1a{left:320.700000px;}
.x3e{left:327.450000px;}
.x17{left:338.707500px;}
.x3c{left:346.770000px;}
.xa{left:397.574986px;}
.x30{left:444.075000px;}
.x1d{left:448.200000px;}
.x48{left:452.324986px;}
.xd{left:459.074986px;}
.x3a{left:481.050000px;}
.x47{left:504.119986px;}
.x46{left:519.869986px;}
.x2f{left:524.745000px;}
.x20{left:544.050000px;}
.x44{left:600.869986px;}
.x31{left:652.470000px;}
.x39{left:661.095000px;}
.x22{left:703.470000px;}
.x13{left:722.220000px;}
.x45{left:745.274986px;}
.xf{left:792.150000px;}
.x3{left:801.150000px;}
@media print{
.vf{vertical-align:-26.826667pt;}
.v2{vertical-align:-21.333333pt;}
.ve{vertical-align:-18.666667pt;}
.v6{vertical-align:-13.333333pt;}
.v3{vertical-align:-5.333333pt;}
.vc{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.666667pt;}
.v10{vertical-align:5.333333pt;}
.v1{vertical-align:21.333333pt;}
.v9{vertical-align:31.360000pt;}
.v5{vertical-align:35.360000pt;}
.v8{vertical-align:37.333333pt;}
.v7{vertical-align:42.666667pt;}
.v4{vertical-align:48.693333pt;}
.va{vertical-align:88.000000pt;}
.vb{vertical-align:109.333333pt;}
.ls14{letter-spacing:-0.666667pt;}
.ls6{letter-spacing:-0.645333pt;}
.ls2b{letter-spacing:-0.437333pt;}
.lsc{letter-spacing:-0.416000pt;}
.ls9{letter-spacing:-0.250667pt;}
.ls12{letter-spacing:-0.229333pt;}
.ls10{letter-spacing:-0.208000pt;}
.ls22{letter-spacing:-0.122667pt;}
.ls29{letter-spacing:-0.058667pt;}
.ls2a{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021333pt;}
.ls24{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.208000pt;}
.ls18{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.224000pt;}
.ls2d{letter-spacing:0.229333pt;}
.ls2{letter-spacing:0.250667pt;}
.ls16{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.298667pt;}
.ls17{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.538667pt;}
.lsb{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.666667pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:0.821333pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls26{letter-spacing:0.864000pt;}
.ls4{letter-spacing:0.874667pt;}
.ls25{letter-spacing:1.333333pt;}
.ls23{letter-spacing:1.685333pt;}
.ls1e{letter-spacing:1.952000pt;}
.ls20{letter-spacing:2.176000pt;}
.ls1a{letter-spacing:2.613333pt;}
.ls1b{letter-spacing:3.125333pt;}
.ls1c{letter-spacing:3.930667pt;}
.ls8{letter-spacing:5.333333pt;}
.ls19{letter-spacing:14.304000pt;}
.lsf{letter-spacing:36.208000pt;}
.lsd{letter-spacing:78.181333pt;}
.ls7{letter-spacing:84.208000pt;}
.ls2c{letter-spacing:101.306667pt;}
.ws14{word-spacing:-64.538667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.874667pt;}
.wsa{word-spacing:-16.666667pt;}
.ws4{word-spacing:-16.250667pt;}
.ws5{word-spacing:-16.208000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.021333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.978667pt;}
.wsb{word-spacing:-15.792000pt;}
.ws13{word-spacing:-15.770667pt;}
.ws9{word-spacing:-15.749333pt;}
.ws17{word-spacing:-15.562667pt;}
.ws8{word-spacing:-15.354667pt;}
.ws18{word-spacing:-15.333333pt;}
.wse{word-spacing:-14.378667pt;}
.ws12{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.957333pt;}
.ws2{word-spacing:-10.666667pt;}
.wsf{word-spacing:-9.973333pt;}
.ws15{word-spacing:-8.666667pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:75.117333pt;}
._1{margin-left:-38.423467pt;}
._2{margin-left:-20.100800pt;}
._0{margin-left:-18.880000pt;}
._14{margin-left:-4.608000pt;}
._13{margin-left:-3.706667pt;}
._e{margin-left:-2.661333pt;}
._4{margin-left:-0.938667pt;}
._3{width:0.901333pt;}
._5{width:1.925333pt;}
._7{width:2.874667pt;}
._8{width:3.781333pt;}
._d{width:5.184000pt;}
._f{width:6.789333pt;}
._c{width:7.744000pt;}
._12{width:8.960000pt;}
._11{width:9.856000pt;}
._24{width:10.752000pt;}
._a{width:11.648000pt;}
._9{width:12.800000pt;}
._17{width:13.818667pt;}
._b{width:14.746667pt;}
._22{width:15.658667pt;}
._1d{width:17.088000pt;}
._1c{width:17.984000pt;}
._21{width:19.008000pt;}
._15{width:20.096000pt;}
._16{width:21.066667pt;}
._27{width:22.016000pt;}
._18{width:22.912000pt;}
._1b{width:23.872000pt;}
._1a{width:25.066667pt;}
._19{width:26.240000pt;}
._1e{width:27.968000pt;}
._28{width:29.226667pt;}
._2e{width:30.720000pt;}
._6{width:39.514667pt;}
._2a{width:40.474667pt;}
._2d{width:42.666667pt;}
._1f{width:46.656000pt;}
._20{width:47.738667pt;}
._2c{width:60.037333pt;}
._2b{width:60.997333pt;}
._2f{width:62.378667pt;}
._25{width:68.080000pt;}
._26{width:69.904000pt;}
._23{width:71.552000pt;}
._29{width:101.285333pt;}
._10{width:752.133333pt;}
.fs5{font-size:34.666667pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:3.493333pt;}
.ycd{bottom:3.500000pt;}
.y7b{bottom:3.506667pt;}
.yd1{bottom:3.666667pt;}
.yd5{bottom:3.826667pt;}
.yd2{bottom:4.000000pt;}
.y107{bottom:4.493333pt;}
.y109{bottom:4.506667pt;}
.y105{bottom:4.840000pt;}
.y106{bottom:5.173333pt;}
.y8a{bottom:5.506667pt;}
.yde{bottom:11.333333pt;}
.ydb{bottom:11.666667pt;}
.ye7{bottom:11.680000pt;}
.ye4{bottom:11.826667pt;}
.yea{bottom:11.840000pt;}
.ye1{bottom:11.866667pt;}
.ydd{bottom:12.173333pt;}
.ye0{bottom:12.200000pt;}
.ye5{bottom:12.493333pt;}
.ye8{bottom:12.506667pt;}
.ye2{bottom:12.533333pt;}
.yce{bottom:12.666667pt;}
.ycb{bottom:13.000000pt;}
.y89{bottom:13.506667pt;}
.yd{bottom:16.500000pt;}
.yc{bottom:17.000000pt;}
.ycc{bottom:21.833333pt;}
.y101{bottom:22.666667pt;}
.y88{bottom:32.840000pt;}
.y7a{bottom:35.840000pt;}
.y7c{bottom:37.506667pt;}
.y79{bottom:46.506667pt;}
.y156{bottom:99.866667pt;}
.y117{bottom:100.533333pt;}
.y14a{bottom:103.200000pt;}
.y124{bottom:104.700000pt;}
.yca{bottom:108.700000pt;}
.y8e{bottom:110.200000pt;}
.y77{bottom:116.866667pt;}
.y1e{bottom:119.533333pt;}
.yfa{bottom:119.700000pt;}
.y63{bottom:124.200000pt;}
.yaf{bottom:125.533333pt;}
.y16a{bottom:129.866667pt;}
.ya5{bottom:132.866667pt;}
.y4c{bottom:133.866667pt;}
.y4e{bottom:136.040000pt;}
.y37{bottom:136.373333pt;}
.y116{bottom:137.360000pt;}
.y149{bottom:139.866667pt;}
.y8d{bottom:147.706667pt;}
.yc9{bottom:150.040000pt;}
.y15c{bottom:153.200000pt;}
.y76{bottom:153.533333pt;}
.y123{bottom:155.200000pt;}
.y1d{bottom:156.373333pt;}
.yf9{bottom:156.533333pt;}
.y62{bottom:160.866667pt;}
.yae{bottom:163.373333pt;}
.yb9{bottom:165.706667pt;}
.y169{bottom:166.533333pt;}
.yfc{bottom:168.200000pt;}
.yc8{bottom:168.373333pt;}
.y4b{bottom:170.693333pt;}
.ya3{bottom:172.373333pt;}
.y4d{bottom:172.706667pt;}
.y36{bottom:173.026667pt;}
.y115{bottom:174.040000pt;}
.y136{bottom:175.373333pt;}
.y8c{bottom:185.200000pt;}
.y155{bottom:186.866667pt;}
.y148{bottom:190.040000pt;}
.y75{bottom:190.373333pt;}
.y122{bottom:191.866667pt;}
.y1c{bottom:193.040000pt;}
.yf8{bottom:193.200000pt;}
.y61{bottom:197.360000pt;}
.yad{bottom:200.026667pt;}
.yb8{bottom:202.533333pt;}
.y168{bottom:203.360000pt;}
.yc7{bottom:205.040000pt;}
.y4a{bottom:207.373333pt;}
.ya2{bottom:209.026667pt;}
.y35{bottom:209.866667pt;}
.y114{bottom:210.866667pt;}
.y8b{bottom:222.040000pt;}
.y135{bottom:225.706667pt;}
.y147{bottom:226.866667pt;}
.y74{bottom:227.200000pt;}
.y121{bottom:228.706667pt;}
.y1b{bottom:229.866667pt;}
.yf7{bottom:230.026667pt;}
.y60{bottom:235.866667pt;}
.y87{bottom:236.693333pt;}
.yac{bottom:236.866667pt;}
.yb7{bottom:239.360000pt;}
.yc6{bottom:241.706667pt;}
.y49{bottom:244.200000pt;}
.ya1{bottom:245.866667pt;}
.y34{bottom:246.533333pt;}
.y113{bottom:247.706667pt;}
.y167{bottom:253.533333pt;}
.y134{bottom:262.533333pt;}
.y146{bottom:263.533333pt;}
.y73{bottom:265.373333pt;}
.yf6{bottom:266.866667pt;}
.y120{bottom:269.200000pt;}
.y5f{bottom:273.706667pt;}
.yb6{bottom:276.040000pt;}
.y15b{bottom:276.866667pt;}
.yc5{bottom:278.533333pt;}
.y48{bottom:280.866667pt;}
.ya0{bottom:282.706667pt;}
.y33{bottom:283.373333pt;}
.y112{bottom:284.360000pt;}
.y166{bottom:290.200000pt;}
.y1a{bottom:290.533333pt;}
.y133{bottom:299.373333pt;}
.y72{bottom:302.693333pt;}
.yf5{bottom:303.533333pt;}
.y5e{bottom:310.360000pt;}
.yb5{bottom:312.893333pt;}
.y17e{bottom:313.560000pt;}
.y145{bottom:313.733333pt;}
.y11f{bottom:314.226667pt;}
.yc4{bottom:315.226667pt;}
.y47{bottom:317.733333pt;}
.y9f{bottom:319.400000pt;}
.y32{bottom:320.226667pt;}
.y111{bottom:320.893333pt;}
.y86{bottom:321.560000pt;}
.y154{bottom:323.733333pt;}
.y165{bottom:327.066667pt;}
.y19{bottom:327.400000pt;}
.y132{bottom:336.066667pt;}
.yf4{bottom:340.400000pt;}
.y71{bottom:345.226667pt;}
.yab{bottom:347.226667pt;}
.y5d{bottom:348.560000pt;}
.yb4{bottom:349.560000pt;}
.y144{bottom:350.400000pt;}
.yc3{bottom:352.066667pt;}
.y110{bottom:353.066667pt;}
.y46{bottom:354.560000pt;}
.ya4{bottom:355.893333pt;}
.y9e{bottom:356.226667pt;}
.y31{bottom:356.893333pt;}
.y85{bottom:358.400000pt;}
.y153{bottom:360.560000pt;}
.y182{bottom:362.226667pt;}
.y17d{bottom:363.733333pt;}
.y11e{bottom:367.066667pt;}
.y131{bottom:372.893333pt;}
.y70{bottom:376.733333pt;}
.y164{bottom:377.066667pt;}
.yf3{bottom:378.560000pt;}
.y18{bottom:380.226667pt;}
.yaa{bottom:383.893333pt;}
.y5c{bottom:386.400000pt;}
.y15a{bottom:387.226667pt;}
.y10f{bottom:388.733333pt;}
.yc2{bottom:388.893333pt;}
.y45{bottom:391.240000pt;}
.y9d{bottom:392.893333pt;}
.y30{bottom:393.733333pt;}
.y84{bottom:395.066667pt;}
.y10e{bottom:396.893333pt;}
.y143{bottom:400.560000pt;}
.y17c{bottom:401.893333pt;}
.y11d{bottom:403.733333pt;}
.y130{bottom:409.560000pt;}
.y152{bottom:410.733333pt;}
.y181{bottom:411.066667pt;}
.y6f{bottom:413.400000pt;}
.y163{bottom:413.893333pt;}
.yf2{bottom:416.400000pt;}
.y10d{bottom:418.560000pt;}
.ya9{bottom:422.226667pt;}
.y5b{bottom:423.226667pt;}
.yc1{bottom:425.573333pt;}
.y44{bottom:428.066667pt;}
.y9c{bottom:429.733333pt;}
.y2f{bottom:430.400000pt;}
.y83{bottom:431.893333pt;}
.y142{bottom:437.400000pt;}
.y17{bottom:438.226667pt;}
.y17b{bottom:439.733333pt;}
.y10c{bottom:440.226667pt;}
.y11c{bottom:440.573333pt;}
.y12f{bottom:446.400000pt;}
.y151{bottom:447.400000pt;}
.y162{bottom:450.733333pt;}
.y6e{bottom:451.560000pt;}
.yb{bottom:452.142267pt;}
.yf1{bottom:453.066667pt;}
.ya8{bottom:459.906667pt;}
.y5a{bottom:461.400000pt;}
.y10b{bottom:461.893333pt;}
.yc0{bottom:462.400000pt;}
.y43{bottom:464.733333pt;}
.y9b{bottom:466.560000pt;}
.y2e{bottom:467.226667pt;}
.ya{bottom:468.346667pt;}
.y82{bottom:468.560000pt;}
.y141{bottom:474.066667pt;}
.y11b{bottom:477.400000pt;}
.y12e{bottom:483.226667pt;}
.y10a{bottom:483.560000pt;}
.y9{bottom:484.551067pt;}
.y16{bottom:485.733333pt;}
.y161{bottom:487.400000pt;}
.yf0{bottom:489.906667pt;}
.y6d{bottom:490.893333pt;}
.y17a{bottom:495.066667pt;}
.yb3{bottom:496.733333pt;}
.y150{bottom:497.573333pt;}
.ya7{bottom:498.066667pt;}
.y59{bottom:499.066667pt;}
.y16d{bottom:500.733333pt;}
.y8{bottom:500.755467pt;}
.y42{bottom:501.560000pt;}
.y9a{bottom:503.226667pt;}
.y4f{bottom:503.733333pt;}
.y2d{bottom:504.066667pt;}
.y108{bottom:505.226667pt;}
.y81{bottom:505.400000pt;}
.y11a{bottom:514.066667pt;}
.y7{bottom:516.959867pt;}
.y12d{bottom:519.906667pt;}
.y140{bottom:524.266667pt;}
.yef{bottom:526.600000pt;}
.y104{bottom:526.933333pt;}
.y15{bottom:527.773333pt;}
.y179{bottom:528.106667pt;}
.y6c{bottom:528.600000pt;}
.y14f{bottom:534.426667pt;}
.yb2{bottom:534.933333pt;}
.y58{bottom:535.933333pt;}
.y160{bottom:537.600000pt;}
.y41{bottom:538.440000pt;}
.y99{bottom:540.106667pt;}
.y2c{bottom:540.773333pt;}
.y80{bottom:542.266667pt;}
.y100{bottom:548.600000pt;}
.y6{bottom:549.368667pt;}
.y119{bottom:550.933333pt;}
.y12c{bottom:551.600000pt;}
.y13f{bottom:561.106667pt;}
.yee{bottom:563.093333pt;}
.y6b{bottom:565.440000pt;}
.y5{bottom:565.573067pt;}
.y178{bottom:567.266667pt;}
.y103{bottom:567.600000pt;}
.y57{bottom:572.773333pt;}
.yb1{bottom:574.106667pt;}
.y15f{bottom:574.440000pt;}
.y40{bottom:575.093333pt;}
.y14{bottom:575.266667pt;}
.y51{bottom:576.600000pt;}
.y98{bottom:576.773333pt;}
.y2b{bottom:577.600000pt;}
.y7f{bottom:578.933333pt;}
.y184{bottom:579.933333pt;}
.y4{bottom:581.777467pt;}
.y14e{bottom:584.440000pt;}
.y102{bottom:586.760000pt;}
.yed{bottom:595.266667pt;}
.y13e{bottom:597.773333pt;}
.y3{bottom:597.981867pt;}
.y118{bottom:601.106667pt;}
.y12b{bottom:601.760000pt;}
.y6a{bottom:603.600000pt;}
.y177{bottom:604.933333pt;}
.y56{bottom:609.426667pt;}
.yff{bottom:609.600000pt;}
.ya6{bottom:610.933333pt;}
.y159{bottom:611.093333pt;}
.y3f{bottom:611.933333pt;}
.y13{bottom:612.106667pt;}
.y97{bottom:613.600000pt;}
.y2{bottom:614.186267pt;}
.y2a{bottom:614.440000pt;}
.y7e{bottom:615.773333pt;}
.yec{bottom:617.600000pt;}
.y16c{bottom:624.426667pt;}
.y27{bottom:627.266667pt;}
.y183{bottom:629.093333pt;}
.yeb{bottom:632.933333pt;}
.y14d{bottom:634.600000pt;}
.y12a{bottom:638.600000pt;}
.ye9{bottom:641.093333pt;}
.y69{bottom:642.773333pt;}
.y55{bottom:646.266667pt;}
.y1{bottom:646.595067pt;}
.yfe{bottom:647.773333pt;}
.y13d{bottom:647.933333pt;}
.y3e{bottom:648.773333pt;}
.yb0{bottom:650.093333pt;}
.y96{bottom:650.440000pt;}
.y29{bottom:651.106667pt;}
.y7d{bottom:652.106667pt;}
.y12{bottom:654.106667pt;}
.y176{bottom:655.106667pt;}
.y15e{bottom:661.266667pt;}
.y185{bottom:662.266667pt;}
.y78{bottom:667.093333pt;}
.ye6{bottom:669.426667pt;}
.y14c{bottom:671.266667pt;}
.y129{bottom:675.266667pt;}
.y68{bottom:680.266667pt;}
.y54{bottom:682.773333pt;}
.ybf{bottom:683.093333pt;}
.y13c{bottom:684.600000pt;}
.y3d{bottom:685.426667pt;}
.yfd{bottom:686.933333pt;}
.y95{bottom:687.106667pt;}
.y26{bottom:687.933333pt;}
.y175{bottom:691.933333pt;}
.y186{bottom:695.093333pt;}
.ye3{bottom:697.600000pt;}
.y15d{bottom:697.933333pt;}
.y11{bottom:701.600000pt;}
.y128{bottom:712.106667pt;}
.y67{bottom:717.440000pt;}
.ybe{bottom:719.773333pt;}
.y53{bottom:721.266667pt;}
.y14b{bottom:721.440000pt;}
.y3c{bottom:722.266667pt;}
.y94{bottom:723.933333pt;}
.y25{bottom:724.600000pt;}
.ydf{bottom:725.933333pt;}
.y174{bottom:728.600000pt;}
.y13b{bottom:734.773333pt;}
.y10{bottom:738.293333pt;}
.y16b{bottom:748.133333pt;}
.y66{bottom:754.133333pt;}
.ydc{bottom:754.293333pt;}
.ybd{bottom:756.626667pt;}
.y3b{bottom:758.960000pt;}
.y93{bottom:760.293333pt;}
.y24{bottom:761.466667pt;}
.y127{bottom:761.960000pt;}
.y173{bottom:765.466667pt;}
.y16e{bottom:771.293333pt;}
.y13a{bottom:771.626667pt;}
.y180{bottom:775.293333pt;}
.yda{bottom:782.466667pt;}
.y158{bottom:784.960000pt;}
.y65{bottom:792.293333pt;}
.ybc{bottom:793.293333pt;}
.yfb{bottom:794.800000pt;}
.y3a{bottom:795.800000pt;}
.y92{bottom:797.133333pt;}
.y50{bottom:797.960000pt;}
.y23{bottom:798.293333pt;}
.y172{bottom:802.133333pt;}
.y139{bottom:808.293333pt;}
.yd9{bottom:813.466667pt;}
.y126{bottom:814.960000pt;}
.yf{bottom:817.133333pt;}
.y157{bottom:821.626667pt;}
.y17f{bottom:824.466667pt;}
.y64{bottom:831.626667pt;}
.yd8{bottom:831.800000pt;}
.y39{bottom:832.626667pt;}
.y52{bottom:833.960000pt;}
.y22{bottom:834.960000pt;}
.y171{bottom:838.960000pt;}
.y125{bottom:855.466667pt;}
.y138{bottom:858.466667pt;}
.yd7{bottom:868.133333pt;}
.ybb{bottom:869.293333pt;}
.y38{bottom:870.800000pt;}
.y91{bottom:870.960000pt;}
.y21{bottom:871.800000pt;}
.yd6{bottom:883.800000pt;}
.ye{bottom:884.626667pt;}
.y170{bottom:889.133333pt;}
.y137{bottom:895.133333pt;}
.yd3{bottom:902.800000pt;}
.yba{bottom:907.466667pt;}
.y90{bottom:907.800000pt;}
.y20{bottom:908.466667pt;}
.yd0{bottom:921.800000pt;}
.ycf{bottom:940.960000pt;}
.y16f{bottom:942.800000pt;}
.y28{bottom:944.960000pt;}
.y8f{bottom:945.133333pt;}
.y1f{bottom:945.293333pt;}
.h1b{height:18.333333pt;}
.h18{height:18.366667pt;}
.h1a{height:18.500000pt;}
.h22{height:21.000000pt;}
.h23{height:21.033333pt;}
.h1c{height:26.500000pt;}
.h1d{height:27.500000pt;}
.h1f{height:27.666667pt;}
.h1e{height:27.700000pt;}
.h20{height:31.078125pt;}
.h3{height:31.500000pt;}
.hb{height:36.041667pt;}
.h16{height:36.666667pt;}
.h6{height:38.250000pt;}
.h15{height:45.156250pt;}
.h17{height:51.437500pt;}
.h19{height:51.597500pt;}
.h24{height:52.682292pt;}
.hf{height:53.937500pt;}
.h21{height:56.500000pt;}
.h1{height:56.906667pt;}
.h2{height:57.375000pt;}
.h9{height:57.687500pt;}
.h7{height:59.583333pt;}
.ha{height:59.636667pt;}
.h5{height:59.791667pt;}
.h10{height:62.666667pt;}
.h8{height:66.625000pt;}
.h14{height:71.093750pt;}
.hc{height:72.200000pt;}
.h12{height:108.427083pt;}
.he{height:113.760417pt;}
.h4{height:115.156250pt;}
.h11{height:119.733750pt;}
.hd{height:119.787083pt;}
.h13{height:163.270833pt;}
.h0{height:1056.000000pt;}
.w2{width:8.000000pt;}
.w3{width:16.000000pt;}
.w5{width:35.500000pt;}
.we{width:71.700000pt;}
.w10{width:74.833333pt;}
.w11{width:75.500000pt;}
.w8{width:85.200000pt;}
.wa{width:92.500000pt;}
.w18{width:102.366667pt;}
.w7{width:113.333333pt;}
.wf{width:113.533333pt;}
.w13{width:115.333333pt;}
.w17{width:119.366667pt;}
.w16{width:119.533333pt;}
.wb{width:120.020000pt;}
.w19{width:136.533333pt;}
.w9{width:141.693333pt;}
.w15{width:160.026667pt;}
.wc{width:185.040000pt;}
.wd{width:185.693333pt;}
.w6{width:186.693333pt;}
.w14{width:238.893333pt;}
.w12{width:398.933333pt;}
.w4{width:521.933333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.166667pt;}
.x14{left:8.320000pt;}
.x1f{left:10.333333pt;}
.x32{left:11.493333pt;}
.x23{left:14.666667pt;}
.x21{left:16.333333pt;}
.x1b{left:17.666667pt;}
.x33{left:20.173333pt;}
.x34{left:22.040000pt;}
.x35{left:23.333333pt;}
.x1c{left:24.333333pt;}
.x28{left:25.493333pt;}
.x1e{left:28.373333pt;}
.x2a{left:30.840000pt;}
.x3d{left:32.653333pt;}
.x27{left:34.840000pt;}
.x24{left:38.506667pt;}
.x3f{left:39.666667pt;}
.x26{left:42.666667pt;}
.x40{left:43.666667pt;}
.x3b{left:47.653333pt;}
.x25{left:49.326667pt;}
.x2e{left:51.160000pt;}
.x29{left:53.326667pt;}
.x42{left:54.986667pt;}
.x41{left:57.160000pt;}
.x2c{left:59.986667pt;}
.x19{left:93.340000pt;}
.x2{left:96.033321pt;}
.x18{left:98.366667pt;}
.x8{left:107.533321pt;}
.xe{left:109.533321pt;}
.x37{left:113.200000pt;}
.x36{left:115.033321pt;}
.xb{left:117.866655pt;}
.x9{left:119.866655pt;}
.x6{left:125.366655pt;}
.x5{left:129.033321pt;}
.x10{left:135.873333pt;}
.x43{left:138.693321pt;}
.x4{left:141.199988pt;}
.x38{left:150.026667pt;}
.x2b{left:162.199988pt;}
.x1{left:189.333333pt;}
.x15{left:194.033333pt;}
.xc{left:233.199988pt;}
.x7{left:243.533321pt;}
.x16{left:258.193333pt;}
.x11{left:270.873333pt;}
.x2d{left:281.400000pt;}
.x1a{left:285.066667pt;}
.x3e{left:291.066667pt;}
.x17{left:301.073333pt;}
.x3c{left:308.240000pt;}
.xa{left:353.399988pt;}
.x30{left:394.733333pt;}
.x1d{left:398.400000pt;}
.x48{left:402.066655pt;}
.xd{left:408.066655pt;}
.x3a{left:427.600000pt;}
.x47{left:448.106655pt;}
.x46{left:462.106655pt;}
.x2f{left:466.440000pt;}
.x20{left:483.600000pt;}
.x44{left:534.106655pt;}
.x31{left:579.973333pt;}
.x39{left:587.640000pt;}
.x22{left:625.306667pt;}
.x13{left:641.973333pt;}
.x45{left:662.466655pt;}
.xf{left:704.133333pt;}
.x3{left:712.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; }
  