
    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_32d571ff7594288931dbc7b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_74f7f461054dcb6700ad0e8e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bcba85d59bf725e51a7b21f8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_892f5bb9422a3f3176b8598d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_f178dc766064c7d3e5843451.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_d493ce1695f95bfef25ff3a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_c871d7a2b322d856dc5b4203.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_c3a9f2ce7d9fc758e4a6b438.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_48e6db0762ed5ab39a389dd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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_8267afb4e9ad6fe8419bec81.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_876273aa03a03e240adf97f0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_ea8695873ce4a6506ff41fde.woff2')format("woff");}.fff{font-family:fff;line-height:0.973145;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_00bdae1c904721fd09ab010c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_7787d1c0b1ecb19aee08cfb4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916992;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:ff12;src:url('chunks/assets/font_883c7b0c9beaf8e9576cf6e9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952148;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:ff13;src:url('chunks/assets/font_9c7ca611f24d73a33f71706c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.722656;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:ff14;src:url('chunks/assets/font_9e000052840e8cc88b5edaf3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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:ff15;src:url('chunks/assets/font_4ada71226a4a5b210e626ed1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.750000;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.ls1{letter-spacing:0.340926px;}
.ls4{letter-spacing:21.584211px;}
.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;}
}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws6{word-spacing:-13.715995px;}
.ws3{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws5{word-spacing:-10.064156px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._b{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._a{margin-left:-247.337985px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._2b{margin-left:-2.752051px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._11{width:2.253011px;}
._17{width:3.269213px;}
._10{width:4.274879px;}
._c{width:5.845160px;}
._d{width:6.973995px;}
._16{width:8.421112px;}
._15{width:9.444642px;}
._12{width:10.670640px;}
._14{width:11.873842px;}
._13{width:14.386159px;}
._26{width:15.389302px;}
._1d{width:16.408763px;}
._1c{width:17.412916px;}
._1f{width:18.654512px;}
._e{width:20.171746px;}
._27{width:21.879774px;}
._1e{width:23.449458px;}
._25{width:24.789291px;}
._23{width:26.346706px;}
._f{width:27.769791px;}
._21{width:28.940969px;}
._2c{width:30.176735px;}
._1b{width:31.382237px;}
._1a{width:32.523200px;}
._30{width:33.642936px;}
._29{width:34.686622px;}
._28{width:35.759619px;}
._2d{width:36.943179px;}
._32{width:38.123627px;}
._24{width:42.280800px;}
._2e{width:44.237138px;}
._2f{width:45.288418px;}
._33{width:46.429857px;}
._31{width:48.172442px;}
._20{width:49.530709px;}
._18{width:51.059257px;}
._19{width:52.638475px;}
._22{width:73.058232px;}
._2a{width:571.841948px;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fs8{font-size:33.119987px;}
.fsc{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fsb{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y41{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.ya6{bottom:2.339042px;}
.yab{bottom:2.339045px;}
.yad{bottom:2.339052px;}
.yb8{bottom:2.339069px;}
.yba{bottom:2.339072px;}
.y23{bottom:3.059155px;}
.yf{bottom:3.239038px;}
.y1e{bottom:3.599137px;}
.y21{bottom:3.599141px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y18{bottom:4.859076px;}
.y3c{bottom:6.478948px;}
.y44{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y145{bottom:111.360255px;}
.y70{bottom:112.079955px;}
.y124{bottom:112.439955px;}
.yf8{bottom:112.799955px;}
.ya0{bottom:113.159955px;}
.y137{bottom:113.879954px;}
.ycd{bottom:115.499954px;}
.y3a{bottom:124.499950px;}
.y144{bottom:134.400246px;}
.y123{bottom:134.759946px;}
.y6f{bottom:135.119946px;}
.ycc{bottom:135.299946px;}
.y9f{bottom:136.199946px;}
.y136{bottom:136.919945px;}
.y39{bottom:147.539941px;}
.y122{bottom:156.899937px;}
.y143{bottom:157.439937px;}
.y6e{bottom:158.159937px;}
.y9e{bottom:159.059936px;}
.yf7{bottom:159.419936px;}
.y135{bottom:159.959936px;}
.y38{bottom:170.579932px;}
.y82{bottom:173.639931px;}
.y121{bottom:179.219928px;}
.y142{bottom:180.479928px;}
.y6d{bottom:181.199928px;}
.y9d{bottom:182.099927px;}
.yf6{bottom:182.819927px;}
.y134{bottom:183.899926px;}
.y37{bottom:193.619923px;}
.y81{bottom:198.119921px;}
.y120{bottom:201.539919px;}
.y141{bottom:203.339919px;}
.y6c{bottom:205.139918px;}
.yf5{bottom:206.039918px;}
.y133{bottom:208.559917px;}
.y36{bottom:209.639916px;}
.y35{bottom:213.419915px;}
.y11f{bottom:217.739913px;}
.y80{bottom:221.159912px;}
.y140{bottom:226.379909px;}
.y9c{bottom:228.179909px;}
.yf4{bottom:229.439908px;}
.y6b{bottom:229.979908px;}
.y132{bottom:231.599907px;}
.y34{bottom:233.939906px;}
.y7f{bottom:244.199902px;}
.y9b{bottom:251.219900px;}
.y13f{bottom:251.579899px;}
.yf3{bottom:252.839899px;}
.y6a{bottom:253.559899px;}
.y131{bottom:254.639898px;}
.y33{bottom:256.979897px;}
.y11e{bottom:266.339893px;}
.y7e{bottom:267.239893px;}
.y9a{bottom:274.259890px;}
.yf2{bottom:276.059890px;}
.y69{bottom:276.959889px;}
.y130{bottom:277.499889px;}
.y32{bottom:280.019888px;}
.y11d{bottom:288.659885px;}
.y7d{bottom:290.099884px;}
.y99{bottom:297.119881px;}
.yf1{bottom:299.459880px;}
.y68{bottom:300.359880px;}
.y12f{bottom:300.539880px;}
.y31{bottom:303.059879px;}
.ycb{bottom:310.079876px;}
.y11c{bottom:310.799876px;}
.y7c{bottom:313.139875px;}
.y98{bottom:321.059872px;}
.yf0{bottom:322.679871px;}
.y12e{bottom:323.579871px;}
.y67{bottom:323.939870px;}
.y30{bottom:326.099870px;}
.y11b{bottom:333.119867px;}
.yca{bottom:333.299867px;}
.y7b{bottom:336.179866px;}
.y97{bottom:345.719862px;}
.yef{bottom:346.079862px;}
.y12d{bottom:346.619861px;}
.y66{bottom:347.339861px;}
.y2f{bottom:348.959860px;}
.y11a{bottom:355.439858px;}
.yc9{bottom:356.339857px;}
.y7a{bottom:359.219856px;}
.y96{bottom:368.759852px;}
.yee{bottom:369.479852px;}
.y13e{bottom:369.659852px;}
.y12c{bottom:370.559852px;}
.y65{bottom:370.739852px;}
.y2e{bottom:371.999851px;}
.y79{bottom:374.879850px;}
.y119{bottom:377.579849px;}
.yc8{bottom:379.379848px;}
.y95{bottom:391.799843px;}
.yed{bottom:392.699843px;}
.y64{bottom:394.139842px;}
.y13d{bottom:394.679842px;}
.y2d{bottom:395.039842px;}
.y12b{bottom:395.219842px;}
.y78{bottom:399.179840px;}
.y118{bottom:399.899840px;}
.yc7{bottom:402.419839px;}
.y94{bottom:415.019834px;}
.yec{bottom:416.099834px;}
.y63{bottom:417.719833px;}
.y2c{bottom:418.079833px;}
.y12a{bottom:418.259833px;}
.y13c{bottom:420.779832px;}
.y117{bottom:422.039831px;}
.y77{bottom:422.219831px;}
.yc6{bottom:425.279830px;}
.y93{bottom:438.239825px;}
.yeb{bottom:439.319824px;}
.y2b{bottom:441.119824px;}
.y13b{bottom:443.819822px;}
.y116{bottom:444.359822px;}
.y76{bottom:445.259822px;}
.yc5{bottom:448.319821px;}
.y92{bottom:461.639815px;}
.yea{bottom:462.719815px;}
.y2a{bottom:464.159814px;}
.y62{bottom:464.519814px;}
.y115{bottom:466.499813px;}
.y13a{bottom:466.679813px;}
.y75{bottom:468.299813px;}
.yc4{bottom:471.359811px;}
.y91{bottom:484.859806px;}
.ye9{bottom:486.119806px;}
.y29{bottom:487.019805px;}
.y129{bottom:487.199805px;}
.y61{bottom:488.099805px;}
.y114{bottom:488.819804px;}
.y139{bottom:489.719804px;}
.y74{bottom:491.339803px;}
.yc3{bottom:494.399802px;}
.y90{bottom:508.259797px;}
.ye8{bottom:509.339796px;}
.y28{bottom:510.059796px;}
.y113{bottom:510.959796px;}
.y128{bottom:511.139796px;}
.y60{bottom:511.499795px;}
.y138{bottom:512.759795px;}
.y73{bottom:514.199794px;}
.yc2{bottom:517.439793px;}
.y8f{bottom:531.659787px;}
.ye7{bottom:532.739787px;}
.y27{bottom:533.099787px;}
.y112{bottom:533.279787px;}
.y5f{bottom:534.899786px;}
.y127{bottom:535.799786px;}
.y72{bottom:537.239785px;}
.yc1{bottom:540.479784px;}
.y8e{bottom:554.879778px;}
.yc0{bottom:555.599778px;}
.ye6{bottom:555.959778px;}
.y26{bottom:556.139778px;}
.y71{bottom:557.039777px;}
.y5e{bottom:558.479777px;}
.y126{bottom:558.839776px;}
.y111{bottom:577.739769px;}
.y8d{bottom:578.279769px;}
.ybf{bottom:578.819768px;}
.y25{bottom:580.079768px;}
.y5d{bottom:581.519767px;}
.y125{bottom:581.699767px;}
.y110{bottom:600.059760px;}
.y8c{bottom:601.499759px;}
.ybe{bottom:601.679759px;}
.y5c{bottom:604.559758px;}
.ye5{bottom:604.739758px;}
.y22{bottom:610.680600px;}
.y24{bottom:613.739755px;}
.ybd{bottom:621.659751px;}
.y10f{bottom:622.199751px;}
.y8b{bottom:624.899750px;}
.y5b{bottom:627.599749px;}
.ye4{bottom:627.779749px;}
.y20{bottom:644.160600px;}
.y10e{bottom:644.519742px;}
.y1f{bottom:647.759741px;}
.y8a{bottom:648.299741px;}
.y5a{bottom:650.639740px;}
.ye3{bottom:650.819740px;}
.y1d{bottom:653.160600px;}
.y10d{bottom:666.659733px;}
.y89{bottom:671.519731px;}
.y59{bottom:673.679731px;}
.ye2{bottom:673.859730px;}
.y10c{bottom:688.979724px;}
.y1c{bottom:692.939723px;}
.y88{bottom:694.919722px;}
.y58{bottom:696.719721px;}
.ye1{bottom:696.899721px;}
.y10b{bottom:711.299715px;}
.y87{bottom:718.139713px;}
.y57{bottom:719.579712px;}
.ye0{bottom:719.759712px;}
.y1b{bottom:723.539711px;}
.y10a{bottom:733.439707px;}
.y86{bottom:741.539703px;}
.y56{bottom:742.619703px;}
.ydf{bottom:742.799703px;}
.y1a{bottom:748.199701px;}
.y109{bottom:755.759698px;}
.y85{bottom:764.939694px;}
.y55{bottom:765.659694px;}
.yde{bottom:765.839694px;}
.ybc{bottom:775.379690px;}
.y108{bottom:777.899689px;}
.y19{bottom:784.739686px;}
.y84{bottom:788.159685px;}
.y54{bottom:788.699685px;}
.ydd{bottom:788.879684px;}
.ybb{bottom:797.159681px;}
.y107{bottom:800.219680px;}
.y17{bottom:804.540600px;}
.y83{bottom:811.559675px;}
.y53{bottom:811.739675px;}
.ydc{bottom:811.919675px;}
.yb6{bottom:814.799674px;}
.y16{bottom:815.339674px;}
.yb9{bottom:818.400600px;}
.yb3{bottom:820.739672px;}
.y106{bottom:822.359671px;}
.yb7{bottom:824.340600px;}
.yb5{bottom:826.679669px;}
.y15{bottom:827.219669px;}
.yb2{bottom:832.619667px;}
.y52{bottom:834.779666px;}
.ydb{bottom:834.959666px;}
.yb4{bottom:838.559665px;}
.y105{bottom:844.679662px;}
.yb1{bottom:851.339659px;}
.y13{bottom:854.759658px;}
.yae{bottom:857.279657px;}
.y51{bottom:857.639657px;}
.yda{bottom:857.819657px;}
.y14{bottom:859.979656px;}
.yb0{bottom:863.219655px;}
.yac{bottom:866.820600px;}
.y104{bottom:866.999653px;}
.yaf{bottom:875.099650px;}
.y10{bottom:880.500600px;}
.y50{bottom:880.679648px;}
.yd9{bottom:880.859648px;}
.yaa{bottom:885.540600px;}
.ya9{bottom:887.879645px;}
.y103{bottom:889.139644px;}
.y12{bottom:890.579644px;}
.ya5{bottom:891.480600px;}
.ya3{bottom:893.819642px;}
.ya8{bottom:899.759640px;}
.ye{bottom:900.840600px;}
.y4f{bottom:903.719639px;}
.yd8{bottom:903.899638px;}
.ya4{bottom:905.699638px;}
.y102{bottom:911.459635px;}
.ya7{bottom:911.639635px;}
.y4e{bottom:926.759629px;}
.yd7{bottom:926.939629px;}
.y101{bottom:933.599627px;}
.yd{bottom:934.319626px;}
.y4d{bottom:949.799620px;}
.yd6{bottom:949.979620px;}
.y100{bottom:955.919618px;}
.ya2{bottom:957.359617px;}
.ya1{bottom:972.659611px;}
.y4c{bottom:972.839611px;}
.yd5{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.yff{bottom:978.059609px;}
.y4b{bottom:995.699602px;}
.yd4{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.yfe{bottom:1000.379600px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y4a{bottom:1018.739593px;}
.yd3{bottom:1018.919592px;}
.yfd{bottom:1022.519591px;}
.y49{bottom:1041.779583px;}
.yd2{bottom:1041.959583px;}
.yfc{bottom:1044.839582px;}
.y40{bottom:1051.500600px;}
.y48{bottom:1064.819574px;}
.yd1{bottom:1064.999574px;}
.y3f{bottom:1066.979573px;}
.yfb{bottom:1067.159573px;}
.y3e{bottom:1087.319565px;}
.y47{bottom:1087.859565px;}
.yd0{bottom:1088.039565px;}
.yfa{bottom:1089.299564px;}
.y3d{bottom:1107.659557px;}
.y46{bottom:1110.719556px;}
.ycf{bottom:1110.899556px;}
.yf9{bottom:1111.619555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y3b{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y45{bottom:1133.759546px;}
.yce{bottom:1133.939546px;}
.y43{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y42{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h27{height:11.880000px;}
.h24{height:12.060000px;}
.hc{height:13.500000px;}
.h1a{height:15.120000px;}
.h17{height:18.720000px;}
.h9{height:18.773430px;}
.h19{height:18.900000px;}
.he{height:20.160000px;}
.h13{height:20.340000px;}
.h5{height:20.520000px;}
.h12{height:22.171632px;}
.h21{height:23.760000px;}
.h15{height:24.439209px;}
.h1{height:24.480000px;}
.h1e{height:25.913662px;}
.h10{height:25.951630px;}
.h20{height:27.228505px;}
.h26{height:31.585065px;}
.h1c{height:32.152136px;}
.hd{height:32.199245px;}
.h11{height:36.179986px;}
.h1b{height:40.842757px;}
.h1f{height:43.185920px;}
.h1d{height:45.199318px;}
.h16{height:46.868888px;}
.h6{height:47.988262px;}
.hf{height:48.058575px;}
.h14{height:48.199199px;}
.h18{height:50.100449px;}
.h23{height:53.999978px;}
.h8{height:54.457009px;}
.h25{height:56.159978px;}
.h2{height:57.215719px;}
.h22{height:63.179975px;}
.ha{height:63.917904px;}
.hb{height:67.548728px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w1c{width:1.800000px;}
.w20{width:2.880000px;}
.w1b{width:4.500000px;}
.w2{width:4.680000px;}
.w1d{width:5.400000px;}
.w4{width:7.020000px;}
.w12{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.w11{width:9.540000px;}
.we{width:9.720000px;}
.w1a{width:10.800000px;}
.w6{width:12.420000px;}
.w10{width:12.960000px;}
.wa{width:14.760000px;}
.w5{width:24.840000px;}
.w1f{width:26.460000px;}
.w16{width:36.000000px;}
.w15{width:38.340000px;}
.w18{width:42.300000px;}
.w1e{width:64.800000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.w13{width:81.360000px;}
.w14{width:85.500000px;}
.w17{width:93.780000px;}
.wc{width:124.740000px;}
.w9{width:136.620000px;}
.wb{width:149.940000px;}
.wd{width:155.340000px;}
.wf{width:501.300000px;}
.w19{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2d{left:1.073925px;}
.x9{left:107.999957px;}
.x34{left:111.779955px;}
.x29{left:113.220000px;}
.xb{left:116.100000px;}
.xd{left:130.679908px;}
.x2c{left:187.380000px;}
.xe{left:200.339857px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x25{left:235.259906px;}
.x26{left:240.479904px;}
.x1b{left:243.719903px;}
.x1c{left:248.940000px;}
.x10{left:259.740421px;}
.x1d{left:263.700000px;}
.x2e{left:272.700000px;}
.x2f{left:279.720000px;}
.x30{left:318.060000px;}
.x27{left:346.679861px;}
.x28{left:351.899859px;}
.x31{left:353.700000px;}
.xa{left:384.479846px;}
.x1e{left:413.639835px;}
.x37{left:433.079827px;}
.x1f{left:439.560000px;}
.x32{left:447.300000px;}
.x19{left:450.359820px;}
.x20{left:454.320000px;}
.x36{left:462.600512px;}
.x3b{left:464.579814px;}
.x2a{left:476.992309px;}
.x33{left:489.599804px;}
.x11{left:493.920784px;}
.x35{left:502.919799px;}
.x12{left:507.240775px;}
.x13{left:520.560767px;}
.x14{left:533.700759px;}
.x3d{left:536.219806px;}
.x15{left:538.200756px;}
.x3c{left:540.354714px;}
.x49{left:543.419763px;}
.x53{left:546.659757px;}
.x1{left:549.000000px;}
.x38{left:550.250930px;}
.x3e{left:571.860000px;}
.x21{left:579.059768px;}
.x3f{left:580.500367px;}
.x4b{left:584.639791px;}
.x39{left:588.779764px;}
.x16{left:591.300737px;}
.x4a{left:596.159796px;}
.x1a{left:599.219760px;}
.x17{left:604.440730px;}
.x22{left:614.880000px;}
.x2{left:622.980000px;}
.x54{left:625.500000px;}
.x3{left:627.660000px;}
.x40{left:629.100000px;}
.x55{left:632.879747px;}
.x4d{left:639.359828px;}
.x42{left:641.160341px;}
.x41{left:645.655242px;}
.x4e{left:646.739827px;}
.x4c{left:650.519825px;}
.x56{left:658.800000px;}
.x18{left:666.359733px;}
.x57{left:691.559723px;}
.x45{left:692.995250px;}
.x44{left:695.160347px;}
.x4f{left:697.319814px;}
.x50{left:699.839808px;}
.x43{left:701.280342px;}
.x58{left:703.079728px;}
.x4{left:705.060000px;}
.x5{left:722.340000px;}
.x46{left:735.120000px;}
.x47{left:743.579703px;}
.x5a{left:745.919798px;}
.x6{left:747.180000px;}
.x52{left:751.499817px;}
.x51{left:755.459826px;}
.x48{left:757.079697px;}
.x7{left:759.600000px;}
.x59{left:760.859792px;}
.x23{left:770.219692px;}
.x8{left:772.020000px;}
.x24{left:775.440000px;}
.x2b{left:780.300000px;}
.x3a{left:782.820492px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.ls1{letter-spacing:0.303046pt;}
.ls4{letter-spacing:19.185966pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws6{word-spacing:-12.191995pt;}
.ws3{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws5{word-spacing:-8.945916pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._b{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._a{margin-left:-219.855986pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._2b{margin-left:-2.446268pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._11{width:2.002677pt;}
._17{width:2.905967pt;}
._10{width:3.799893pt;}
._c{width:5.195697pt;}
._d{width:6.199106pt;}
._16{width:7.485433pt;}
._15{width:8.395237pt;}
._12{width:9.485014pt;}
._14{width:10.554526pt;}
._13{width:12.787696pt;}
._26{width:13.679379pt;}
._1d{width:14.585567pt;}
._1c{width:15.478147pt;}
._1f{width:16.581789pt;}
._e{width:17.930441pt;}
._27{width:19.448688pt;}
._1e{width:20.843963pt;}
._25{width:22.034925pt;}
._23{width:23.419294pt;}
._f{width:24.684258pt;}
._21{width:25.725306pt;}
._2c{width:26.823764pt;}
._1b{width:27.895322pt;}
._1a{width:28.909511pt;}
._30{width:29.904832pt;}
._29{width:30.832552pt;}
._28{width:31.786328pt;}
._2d{width:32.838382pt;}
._32{width:33.887669pt;}
._24{width:37.582933pt;}
._2e{width:39.321901pt;}
._2f{width:40.256371pt;}
._33{width:41.270984pt;}
._31{width:42.819948pt;}
._20{width:44.027297pt;}
._18{width:45.386006pt;}
._19{width:46.789755pt;}
._22{width:64.940650pt;}
._2a{width:508.303954pt;}
.fs3{font-size:15.999994pt;}
.fs8{font-size:29.439988pt;}
.fsc{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fsb{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y41{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:2.079149pt;}
.yab{bottom:2.079151pt;}
.yad{bottom:2.079158pt;}
.yb8{bottom:2.079173pt;}
.yba{bottom:2.079175pt;}
.y23{bottom:2.719248pt;}
.yf{bottom:2.879145pt;}
.y1e{bottom:3.199233pt;}
.y21{bottom:3.199236pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y18{bottom:4.319179pt;}
.y3c{bottom:5.759065pt;}
.y44{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y145{bottom:98.986894pt;}
.y70{bottom:99.626627pt;}
.y124{bottom:99.946627pt;}
.yf8{bottom:100.266627pt;}
.ya0{bottom:100.586626pt;}
.y137{bottom:101.226626pt;}
.ycd{bottom:102.666626pt;}
.y3a{bottom:110.666622pt;}
.y144{bottom:119.466886pt;}
.y123{bottom:119.786619pt;}
.y6f{bottom:120.106619pt;}
.ycc{bottom:120.266619pt;}
.y9f{bottom:121.066618pt;}
.y136{bottom:121.706618pt;}
.y39{bottom:131.146614pt;}
.y122{bottom:139.466611pt;}
.y143{bottom:139.946611pt;}
.y6e{bottom:140.586610pt;}
.y9e{bottom:141.386610pt;}
.yf7{bottom:141.706610pt;}
.y135{bottom:142.186610pt;}
.y38{bottom:151.626606pt;}
.y82{bottom:154.346605pt;}
.y121{bottom:159.306603pt;}
.y142{bottom:160.426602pt;}
.y6d{bottom:161.066602pt;}
.y9d{bottom:161.866602pt;}
.yf6{bottom:162.506602pt;}
.y134{bottom:163.466601pt;}
.y37{bottom:172.106598pt;}
.y81{bottom:176.106596pt;}
.y120{bottom:179.146595pt;}
.y141{bottom:180.746594pt;}
.y6c{bottom:182.346594pt;}
.yf5{bottom:183.146593pt;}
.y133{bottom:185.386593pt;}
.y36{bottom:186.346592pt;}
.y35{bottom:189.706591pt;}
.y11f{bottom:193.546589pt;}
.y80{bottom:196.586588pt;}
.y140{bottom:201.226586pt;}
.y9c{bottom:202.826586pt;}
.yf4{bottom:203.946585pt;}
.y6b{bottom:204.426585pt;}
.y132{bottom:205.866584pt;}
.y34{bottom:207.946583pt;}
.y7f{bottom:217.066580pt;}
.y9b{bottom:223.306577pt;}
.y13f{bottom:223.626577pt;}
.yf3{bottom:224.746577pt;}
.y6a{bottom:225.386577pt;}
.y131{bottom:226.346576pt;}
.y33{bottom:228.426575pt;}
.y11e{bottom:236.746572pt;}
.y7e{bottom:237.546572pt;}
.y9a{bottom:243.786569pt;}
.yf2{bottom:245.386569pt;}
.y69{bottom:246.186568pt;}
.y130{bottom:246.666568pt;}
.y32{bottom:248.906567pt;}
.y11d{bottom:256.586564pt;}
.y7d{bottom:257.866564pt;}
.y99{bottom:264.106561pt;}
.yf1{bottom:266.186560pt;}
.y68{bottom:266.986560pt;}
.y12f{bottom:267.146560pt;}
.y31{bottom:269.386559pt;}
.ycb{bottom:275.626556pt;}
.y11c{bottom:276.266556pt;}
.y7c{bottom:278.346555pt;}
.y98{bottom:285.386553pt;}
.yf0{bottom:286.826552pt;}
.y12e{bottom:287.626552pt;}
.y67{bottom:287.946551pt;}
.y30{bottom:289.866551pt;}
.y11b{bottom:296.106548pt;}
.yca{bottom:296.266548pt;}
.y7b{bottom:298.826547pt;}
.y97{bottom:307.306544pt;}
.yef{bottom:307.626544pt;}
.y12d{bottom:308.106543pt;}
.y66{bottom:308.746543pt;}
.y2f{bottom:310.186543pt;}
.y11a{bottom:315.946540pt;}
.yc9{bottom:316.746540pt;}
.y7a{bottom:319.306539pt;}
.y96{bottom:327.786536pt;}
.yee{bottom:328.426535pt;}
.y13e{bottom:328.586535pt;}
.y12c{bottom:329.386535pt;}
.y65{bottom:329.546535pt;}
.y2e{bottom:330.666534pt;}
.y79{bottom:333.226533pt;}
.y119{bottom:335.626532pt;}
.yc8{bottom:337.226532pt;}
.y95{bottom:348.266527pt;}
.yed{bottom:349.066527pt;}
.y64{bottom:350.346527pt;}
.y13d{bottom:350.826526pt;}
.y2d{bottom:351.146526pt;}
.y12b{bottom:351.306526pt;}
.y78{bottom:354.826525pt;}
.y118{bottom:355.466524pt;}
.yc7{bottom:357.706524pt;}
.y94{bottom:368.906519pt;}
.yec{bottom:369.866519pt;}
.y63{bottom:371.306518pt;}
.y2c{bottom:371.626518pt;}
.y12a{bottom:371.786518pt;}
.y13c{bottom:374.026517pt;}
.y117{bottom:375.146517pt;}
.y77{bottom:375.306517pt;}
.yc6{bottom:378.026515pt;}
.y93{bottom:389.546511pt;}
.yeb{bottom:390.506510pt;}
.y2b{bottom:392.106510pt;}
.y13b{bottom:394.506509pt;}
.y116{bottom:394.986509pt;}
.y76{bottom:395.786508pt;}
.yc5{bottom:398.506507pt;}
.y92{bottom:410.346503pt;}
.yea{bottom:411.306502pt;}
.y2a{bottom:412.586502pt;}
.y62{bottom:412.906502pt;}
.y115{bottom:414.666501pt;}
.y13a{bottom:414.826501pt;}
.y75{bottom:416.266500pt;}
.yc4{bottom:418.986499pt;}
.y91{bottom:430.986494pt;}
.ye9{bottom:432.106494pt;}
.y29{bottom:432.906494pt;}
.y129{bottom:433.066493pt;}
.y61{bottom:433.866493pt;}
.y114{bottom:434.506493pt;}
.y139{bottom:435.306493pt;}
.y74{bottom:436.746492pt;}
.yc3{bottom:439.466491pt;}
.y90{bottom:451.786486pt;}
.ye8{bottom:452.746486pt;}
.y28{bottom:453.386485pt;}
.y113{bottom:454.186485pt;}
.y128{bottom:454.346485pt;}
.y60{bottom:454.666485pt;}
.y138{bottom:455.786484pt;}
.y73{bottom:457.066484pt;}
.yc2{bottom:459.946483pt;}
.y8f{bottom:472.586478pt;}
.ye7{bottom:473.546477pt;}
.y27{bottom:473.866477pt;}
.y112{bottom:474.026477pt;}
.y5f{bottom:475.466476pt;}
.y127{bottom:476.266476pt;}
.y72{bottom:477.546476pt;}
.yc1{bottom:480.426474pt;}
.y8e{bottom:493.226469pt;}
.yc0{bottom:493.866469pt;}
.ye6{bottom:494.186469pt;}
.y26{bottom:494.346469pt;}
.y71{bottom:495.146469pt;}
.y5e{bottom:496.426468pt;}
.y126{bottom:496.746468pt;}
.y111{bottom:513.546461pt;}
.y8d{bottom:514.026461pt;}
.ybf{bottom:514.506461pt;}
.y25{bottom:515.626460pt;}
.y5d{bottom:516.906460pt;}
.y125{bottom:517.066460pt;}
.y110{bottom:533.386453pt;}
.y8c{bottom:534.666453pt;}
.ybe{bottom:534.826453pt;}
.y5c{bottom:537.386452pt;}
.ye5{bottom:537.546452pt;}
.y22{bottom:542.827200pt;}
.y24{bottom:545.546448pt;}
.ybd{bottom:552.586446pt;}
.y10f{bottom:553.066445pt;}
.y8b{bottom:555.466444pt;}
.y5b{bottom:557.866444pt;}
.ye4{bottom:558.026443pt;}
.y20{bottom:572.587200pt;}
.y10e{bottom:572.906438pt;}
.y1f{bottom:575.786436pt;}
.y8a{bottom:576.266436pt;}
.y5a{bottom:578.346435pt;}
.ye3{bottom:578.506435pt;}
.y1d{bottom:580.587200pt;}
.y10d{bottom:592.586430pt;}
.y89{bottom:596.906428pt;}
.y59{bottom:598.826427pt;}
.ye2{bottom:598.986427pt;}
.y10c{bottom:612.426422pt;}
.y1c{bottom:615.946420pt;}
.y88{bottom:617.706420pt;}
.y58{bottom:619.306419pt;}
.ye1{bottom:619.466419pt;}
.y10b{bottom:632.266414pt;}
.y87{bottom:638.346411pt;}
.y57{bottom:639.626411pt;}
.ye0{bottom:639.786411pt;}
.y1b{bottom:643.146409pt;}
.y10a{bottom:651.946406pt;}
.y86{bottom:659.146403pt;}
.y56{bottom:660.106403pt;}
.ydf{bottom:660.266403pt;}
.y1a{bottom:665.066401pt;}
.y109{bottom:671.786398pt;}
.y85{bottom:679.946395pt;}
.y55{bottom:680.586394pt;}
.yde{bottom:680.746394pt;}
.ybc{bottom:689.226391pt;}
.y108{bottom:691.466390pt;}
.y19{bottom:697.546388pt;}
.y84{bottom:700.586386pt;}
.y54{bottom:701.066386pt;}
.ydd{bottom:701.226386pt;}
.ybb{bottom:708.586383pt;}
.y107{bottom:711.306382pt;}
.y17{bottom:715.147200pt;}
.y83{bottom:721.386378pt;}
.y53{bottom:721.546378pt;}
.ydc{bottom:721.706378pt;}
.yb6{bottom:724.266377pt;}
.y16{bottom:724.746377pt;}
.yb9{bottom:727.467200pt;}
.yb3{bottom:729.546375pt;}
.y106{bottom:730.986374pt;}
.yb7{bottom:732.747200pt;}
.yb5{bottom:734.826373pt;}
.y15{bottom:735.306373pt;}
.yb2{bottom:740.106371pt;}
.y52{bottom:742.026370pt;}
.ydb{bottom:742.186370pt;}
.yb4{bottom:745.386369pt;}
.y105{bottom:750.826366pt;}
.yb1{bottom:756.746364pt;}
.y13{bottom:759.786363pt;}
.yae{bottom:762.026362pt;}
.y51{bottom:762.346362pt;}
.yda{bottom:762.506362pt;}
.y14{bottom:764.426361pt;}
.yb0{bottom:767.306360pt;}
.yac{bottom:770.507200pt;}
.y104{bottom:770.666358pt;}
.yaf{bottom:777.866356pt;}
.y10{bottom:782.667200pt;}
.y50{bottom:782.826354pt;}
.yd9{bottom:782.986353pt;}
.yaa{bottom:787.147200pt;}
.ya9{bottom:789.226351pt;}
.y103{bottom:790.346351pt;}
.y12{bottom:791.626350pt;}
.ya5{bottom:792.427200pt;}
.ya3{bottom:794.506349pt;}
.ya8{bottom:799.786347pt;}
.ye{bottom:800.747200pt;}
.y4f{bottom:803.306345pt;}
.yd8{bottom:803.466345pt;}
.ya4{bottom:805.066345pt;}
.y102{bottom:810.186343pt;}
.ya7{bottom:810.346343pt;}
.y4e{bottom:823.786337pt;}
.yd7{bottom:823.946337pt;}
.y101{bottom:829.866335pt;}
.yd{bottom:830.506334pt;}
.y4d{bottom:844.266329pt;}
.yd6{bottom:844.426329pt;}
.y100{bottom:849.706327pt;}
.ya2{bottom:850.986326pt;}
.ya1{bottom:864.586321pt;}
.y4c{bottom:864.746321pt;}
.yd5{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.yff{bottom:869.386319pt;}
.y4b{bottom:885.066313pt;}
.yd4{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.yfe{bottom:889.226311pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y4a{bottom:905.546304pt;}
.yd3{bottom:905.706304pt;}
.yfd{bottom:908.906303pt;}
.y49{bottom:926.026296pt;}
.yd2{bottom:926.186296pt;}
.yfc{bottom:928.746295pt;}
.y40{bottom:934.667200pt;}
.y48{bottom:946.506288pt;}
.yd1{bottom:946.666288pt;}
.y3f{bottom:948.426287pt;}
.yfb{bottom:948.586287pt;}
.y3e{bottom:966.506280pt;}
.y47{bottom:966.986280pt;}
.yd0{bottom:967.146280pt;}
.yfa{bottom:968.266279pt;}
.y3d{bottom:984.586273pt;}
.y46{bottom:987.306272pt;}
.ycf{bottom:987.466272pt;}
.yf9{bottom:988.106271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y3b{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y45{bottom:1007.786264pt;}
.yce{bottom:1007.946263pt;}
.y43{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y42{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h27{height:10.560000pt;}
.h24{height:10.720000pt;}
.hc{height:12.000000pt;}
.h1a{height:13.440000pt;}
.h17{height:16.640000pt;}
.h9{height:16.687493pt;}
.h19{height:16.800000pt;}
.he{height:17.920000pt;}
.h13{height:18.080000pt;}
.h5{height:18.240000pt;}
.h12{height:19.708117pt;}
.h21{height:21.120000pt;}
.h15{height:21.723741pt;}
.h1{height:21.760000pt;}
.h1e{height:23.034366pt;}
.h10{height:23.068116pt;}
.h20{height:24.203115pt;}
.h26{height:28.075614pt;}
.h1c{height:28.579676pt;}
.hd{height:28.621551pt;}
.h11{height:32.159987pt;}
.h1b{height:36.304673pt;}
.h1f{height:38.387485pt;}
.h1d{height:40.177171pt;}
.h16{height:41.661233pt;}
.h6{height:42.656233pt;}
.hf{height:42.718733pt;}
.h14{height:42.843733pt;}
.h18{height:44.533732pt;}
.h23{height:47.999981pt;}
.h8{height:48.406231pt;}
.h25{height:49.919980pt;}
.h2{height:50.858417pt;}
.h22{height:56.159978pt;}
.ha{height:56.815915pt;}
.hb{height:60.043314pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w1c{width:1.600000pt;}
.w20{width:2.560000pt;}
.w1b{width:4.000000pt;}
.w2{width:4.160000pt;}
.w1d{width:4.800000pt;}
.w4{width:6.240000pt;}
.w12{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.w11{width:8.480000pt;}
.we{width:8.640000pt;}
.w1a{width:9.600000pt;}
.w6{width:11.040000pt;}
.w10{width:11.520000pt;}
.wa{width:13.120000pt;}
.w5{width:22.080000pt;}
.w1f{width:23.520000pt;}
.w16{width:32.000000pt;}
.w15{width:34.080000pt;}
.w18{width:37.600000pt;}
.w1e{width:57.600000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.w13{width:72.320000pt;}
.w14{width:76.000000pt;}
.w17{width:83.360000pt;}
.wc{width:110.880000pt;}
.w9{width:121.440000pt;}
.wb{width:133.280000pt;}
.wd{width:138.080000pt;}
.wf{width:445.600000pt;}
.w19{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2d{left:0.954600pt;}
.x9{left:95.999962pt;}
.x34{left:99.359960pt;}
.x29{left:100.640000pt;}
.xb{left:103.200000pt;}
.xd{left:116.159918pt;}
.x2c{left:166.560000pt;}
.xe{left:178.079873pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x25{left:209.119916pt;}
.x26{left:213.759914pt;}
.x1b{left:216.639913pt;}
.x1c{left:221.280000pt;}
.x10{left:230.880374pt;}
.x1d{left:234.400000pt;}
.x2e{left:242.400000pt;}
.x2f{left:248.640000pt;}
.x30{left:282.720000pt;}
.x27{left:308.159877pt;}
.x28{left:312.799875pt;}
.x31{left:314.400000pt;}
.xa{left:341.759863pt;}
.x1e{left:367.679853pt;}
.x37{left:384.959846pt;}
.x1f{left:390.720000pt;}
.x32{left:397.600000pt;}
.x19{left:400.319840pt;}
.x20{left:403.840000pt;}
.x36{left:411.200455pt;}
.x3b{left:412.959835pt;}
.x2a{left:423.993164pt;}
.x33{left:435.199826pt;}
.x11{left:439.040697pt;}
.x35{left:447.039821pt;}
.x12{left:450.880689pt;}
.x13{left:462.720681pt;}
.x14{left:474.400675pt;}
.x3d{left:476.639827pt;}
.x15{left:478.400672pt;}
.x3c{left:480.315301pt;}
.x49{left:483.039790pt;}
.x53{left:485.919784pt;}
.x1{left:488.000000pt;}
.x38{left:489.111938pt;}
.x3e{left:508.320000pt;}
.x21{left:514.719794pt;}
.x3f{left:516.000327pt;}
.x4b{left:519.679814pt;}
.x39{left:523.359791pt;}
.x16{left:525.600655pt;}
.x4a{left:529.919819pt;}
.x1a{left:532.639787pt;}
.x17{left:537.280649pt;}
.x22{left:546.560000pt;}
.x2{left:553.760000pt;}
.x54{left:556.000000pt;}
.x3{left:557.920000pt;}
.x40{left:559.200000pt;}
.x55{left:562.559775pt;}
.x4d{left:568.319847pt;}
.x42{left:569.920303pt;}
.x41{left:573.915770pt;}
.x4e{left:574.879847pt;}
.x4c{left:578.239845pt;}
.x56{left:585.600000pt;}
.x18{left:592.319763pt;}
.x57{left:614.719754pt;}
.x45{left:615.995777pt;}
.x44{left:617.920309pt;}
.x4f{left:619.839835pt;}
.x50{left:622.079829pt;}
.x43{left:623.360304pt;}
.x58{left:624.959758pt;}
.x4{left:626.720000pt;}
.x5{left:642.080000pt;}
.x46{left:653.440000pt;}
.x47{left:660.959736pt;}
.x5a{left:663.039820pt;}
.x6{left:664.160000pt;}
.x52{left:667.999837pt;}
.x51{left:671.519846pt;}
.x48{left:672.959730pt;}
.x7{left:675.200000pt;}
.x59{left:676.319816pt;}
.x23{left:684.639726pt;}
.x8{left:686.240000pt;}
.x24{left:689.280000pt;}
.x2b{left:693.600000pt;}
.x3a{left:695.840437pt;}
}




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