
    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_3d8c07c1802522d41a62ff86.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.147000;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_8123f08d7a14954b2d6dc845.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_d095a051aba44640e4bfa360.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_dcce7171a0003cd7beb3e101.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_dcce7171a0003cd7beb3e101.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_99c39f7687577b9ae15c8aae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.131000;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_40d0bdeea0a9fd1a5b3d04b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.044000;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_dcce7171a0003cd7beb3e101.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_0475fb5374ee708dfb8089e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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_adeef75e9ffa0283aab44f96.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.713867;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_c38c53edff43b03ea627694c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970000;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_55513e1f0f098be653dbaefd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.139000;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_50a82b767d26e162903454a9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.147000;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_51a6ddadf8a232a50c917a0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.376000;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);}
.v1{vertical-align:-14.028000px;}
.v3{vertical-align:-5.819400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v4{vertical-align:424.051200px;}
.ls6{letter-spacing:-56.700000px;}
.ls3{letter-spacing:-35.640000px;}
.lsc{letter-spacing:-24.840000px;}
.ls7{letter-spacing:-23.760000px;}
.lse{letter-spacing:-21.600000px;}
.lsd{letter-spacing:-20.520000px;}
.ls1c{letter-spacing:-14.580000px;}
.ls13{letter-spacing:-9.720000px;}
.ls16{letter-spacing:-1.716000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.255000px;}
.ls1b{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.714000px;}
.ls21{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.765000px;}
.ls12{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.912000px;}
.ls17{letter-spacing:0.960000px;}
.ls9{letter-spacing:0.969000px;}
.ls10{letter-spacing:1.008000px;}
.lsb{letter-spacing:1.173000px;}
.ls2{letter-spacing:2.250000px;}
.ls19{letter-spacing:2.286000px;}
.ls1a{letter-spacing:2.718000px;}
.ls22{letter-spacing:4.860000px;}
.ls18{letter-spacing:18.018000px;}
.ls14{letter-spacing:26.532000px;}
.ls4{letter-spacing:45.360000px;}
.ls1{letter-spacing:97.021200px;}
.ls5{letter-spacing:170.268000px;}
.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;}
}
.ws47{word-spacing:-112.860000px;}
.ws1f{word-spacing:-98.280000px;}
.ws20{word-spacing:-87.480000px;}
.wsc{word-spacing:-86.400000px;}
.ws8{word-spacing:-84.240000px;}
.ws4{word-spacing:-72.360000px;}
.ws0{word-spacing:-57.240000px;}
.ws49{word-spacing:-21.600000px;}
.ws3{word-spacing:-16.800000px;}
.ws42{word-spacing:-14.400000px;}
.ws44{word-spacing:-14.184000px;}
.ws5{word-spacing:-13.200000px;}
.ws4a{word-spacing:-10.200000px;}
.ws4b{word-spacing:-9.600000px;}
.ws2e{word-spacing:-4.029000px;}
.ws3c{word-spacing:-3.060000px;}
.ws40{word-spacing:-2.601000px;}
.ws39{word-spacing:-2.040000px;}
.ws38{word-spacing:-1.887000px;}
.ws11{word-spacing:-1.785000px;}
.ws1a{word-spacing:-1.275000px;}
.wsb{word-spacing:-1.173000px;}
.ws1c{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.918000px;}
.ws1d{word-spacing:-0.912000px;}
.ws2b{word-spacing:-0.867000px;}
.ws1e{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.816000px;}
.ws9{word-spacing:-0.765000px;}
.ws46{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.714000px;}
.ws22{word-spacing:-0.420000px;}
.ws36{word-spacing:-0.306000px;}
.ws26{word-spacing:-0.300000px;}
.ws25{word-spacing:-0.264000px;}
.ws2{word-spacing:-0.168000px;}
.ws28{word-spacing:-0.126000px;}
.ws1{word-spacing:0.000000px;}
.ws3a{word-spacing:0.102000px;}
.ws45{word-spacing:0.144000px;}
.ws3b{word-spacing:0.255000px;}
.ws43{word-spacing:0.288000px;}
.ws41{word-spacing:0.576000px;}
.ws2a{word-spacing:1.632000px;}
.ws23{word-spacing:1.716000px;}
.ws2c{word-spacing:1.938000px;}
.ws37{word-spacing:2.244000px;}
.ws3d{word-spacing:2.346000px;}
.ws18{word-spacing:3.417000px;}
.ws2d{word-spacing:3.570000px;}
.ws17{word-spacing:4.233000px;}
.ws1b{word-spacing:4.386000px;}
.ws16{word-spacing:4.641000px;}
.ws35{word-spacing:7.038000px;}
.ws13{word-spacing:8.670000px;}
.ws3f{word-spacing:9.282000px;}
.ws3e{word-spacing:9.333000px;}
.ws34{word-spacing:9.384000px;}
.ws2f{word-spacing:10.659000px;}
.ws15{word-spacing:10.863000px;}
.ws30{word-spacing:11.832000px;}
.ws14{word-spacing:12.546000px;}
.ws19{word-spacing:13.311000px;}
.ws29{word-spacing:14.178000px;}
.ws27{word-spacing:14.580000px;}
.ws32{word-spacing:14.586000px;}
.ws10{word-spacing:17.901000px;}
.wse{word-spacing:20.520000px;}
.wsf{word-spacing:21.600000px;}
.wsd{word-spacing:24.840000px;}
.ws12{word-spacing:29.070000px;}
.ws6{word-spacing:34.188000px;}
.ws21{word-spacing:48.181200px;}
.ws7{word-spacing:56.700000px;}
.ws48{word-spacing:905.314800px;}
._19{margin-left:-1222.298400px;}
._29{margin-left:-46.200000px;}
._28{margin-left:-27.600000px;}
._30{margin-left:-26.464560px;}
._33{margin-left:-25.272000px;}
._34{margin-left:-24.030000px;}
._2f{margin-left:-22.746000px;}
._31{margin-left:-20.392620px;}
._25{margin-left:-19.040580px;}
._8{margin-left:-16.632000px;}
._26{margin-left:-15.555000px;}
._32{margin-left:-14.409000px;}
._27{margin-left:-13.200000px;}
._1e{margin-left:-10.668960px;}
._24{margin-left:-9.129000px;}
._7{margin-left:-7.620960px;}
._2b{margin-left:-4.864140px;}
._6{margin-left:-3.392820px;}
._0{margin-left:-1.431000px;}
._3{width:1.144800px;}
._5{width:2.595780px;}
._1d{width:3.614220px;}
._1{width:4.865400px;}
._2{width:7.412580px;}
._20{width:8.532000px;}
._35{width:9.593220px;}
._21{width:10.638000px;}
._4{width:11.734200px;}
._2a{width:12.753780px;}
._a{width:14.148000px;}
._b{width:15.228000px;}
._9{width:17.662800px;}
._1f{width:18.957780px;}
._22{width:20.466000px;}
._23{width:22.291200px;}
._1c{width:24.105000px;}
._2d{width:25.110000px;}
._1b{width:28.059000px;}
._2c{width:29.464020px;}
._2e{width:32.940000px;}
._e{width:34.188000px;}
._c{width:39.960000px;}
._1a{width:56.700000px;}
._13{width:283.797420px;}
._15{width:632.383200px;}
._16{width:947.465040px;}
._11{width:1041.899640px;}
._12{width:1079.500440px;}
._14{width:1137.995640px;}
._17{width:1430.117820px;}
._10{width:1485.770400px;}
._f{width:1650.600000px;}
._18{width:1855.224000px;}
._d{width:1869.871200px;}
.fc5{color:transparent;}
.fc4{color:rgb(127,23,24);}
.fc2{color:rgb(182,31,41);}
.fc1{color:rgb(79,78,78);}
.fc6{color:rgb(79,79,79);}
.fc3{color:rgb(124,124,124);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fsc{font-size:108.000000px;}
.fs1{font-size:124.200000px;}
.fsb{font-size:126.000000px;}
.fs8{font-size:138.000000px;}
.fs0{font-size:286.200000px;}
.fs3{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:38.204100px;}
.y6c{bottom:80.714100px;}
.y6b{bottom:101.978100px;}
.y6a{bottom:123.242100px;}
.yd5{bottom:133.875450px;}
.y49{bottom:144.290850px;}
.y89{bottom:144.458100px;}
.y69{bottom:144.506100px;}
.yd4{bottom:155.139450px;}
.y48{bottom:165.557850px;}
.y88{bottom:165.726600px;}
.y68{bottom:165.770100px;}
.y87{bottom:186.995100px;}
.yb3{bottom:187.025100px;}
.y9f{bottom:197.661000px;}
.y6{bottom:202.631850px;}
.y14c{bottom:203.673000px;}
.y47{bottom:208.079100px;}
.yd3{bottom:208.237950px;}
.yb2{bottom:208.289100px;}
.y150{bottom:218.073000px;}
.y86{bottom:218.889600px;}
.y46{bottom:229.346100px;}
.yd2{bottom:229.506450px;}
.yf7{bottom:229.517100px;}
.yb1{bottom:229.553100px;}
.y14f{bottom:232.473000px;}
.y14b{bottom:234.177000px;}
.y5{bottom:237.731850px;}
.y85{bottom:240.158100px;}
.y14e{bottom:246.873000px;}
.y14a{bottom:247.677000px;}
.y45{bottom:250.613100px;}
.yd1{bottom:250.774950px;}
.yf6{bottom:250.784100px;}
.y14d{bottom:261.273000px;}
.y84{bottom:261.426600px;}
.y44{bottom:271.880100px;}
.yd0{bottom:272.043450px;}
.yf5{bottom:272.051100px;}
.y149{bottom:278.203050px;}
.yb0{bottom:282.624600px;}
.y43{bottom:293.147100px;}
.y148{bottom:293.197050px;}
.ycf{bottom:293.311950px;}
.yf4{bottom:293.318100px;}
.y83{bottom:293.321100px;}
.y4{bottom:303.474450px;}
.y147{bottom:308.191050px;}
.yaf{bottom:314.519100px;}
.yce{bottom:314.580450px;}
.yf3{bottom:314.585100px;}
.y82{bottom:314.589600px;}
.y1c{bottom:319.819650px;}
.y42{bottom:335.668350px;}
.yf2{bottom:335.852100px;}
.y81{bottom:335.858100px;}
.yae{bottom:346.413600px;}
.ycd{bottom:346.474950px;}
.y41{bottom:356.935350px;}
.yf1{bottom:357.119100px;}
.yad{bottom:367.682100px;}
.ycc{bottom:367.743450px;}
.y80{bottom:367.749600px;}
.y3{bottom:370.946100px;}
.y40{bottom:378.202350px;}
.yb9{bottom:378.351600px;}
.y1b{bottom:379.295100px;}
.yf0{bottom:381.302100px;}
.y67{bottom:388.959600px;}
.y3f{bottom:399.469350px;}
.yac{bottom:399.576600px;}
.yb8{bottom:399.620100px;}
.ycb{bottom:399.637950px;}
.yef{bottom:401.102100px;}
.y66{bottom:410.228100px;}
.y4d{bottom:411.663600px;}
.y3e{bottom:420.736350px;}
.yab{bottom:420.845100px;}
.y65{bottom:431.496600px;}
.yb7{bottom:431.514600px;}
.yca{bottom:431.532450px;}
.y1a{bottom:435.310650px;}
.y2{bottom:438.446100px;}
.y3d{bottom:442.003350px;}
.yee{bottom:442.139100px;}
.yaa{bottom:452.739600px;}
.y64{bottom:452.765100px;}
.yb6{bottom:452.783100px;}
.y3c{bottom:463.270350px;}
.yed{bottom:463.406100px;}
.yc9{bottom:463.435950px;}
.y6f{bottom:467.895600px;}
.y135{bottom:472.576800px;}
.y127{bottom:473.776800px;}
.ya9{bottom:474.008100px;}
.y63{bottom:474.033600px;}
.y19{bottom:481.762650px;}
.y3b{bottom:484.537350px;}
.yec{bottom:484.673100px;}
.yb5{bottom:484.677600px;}
.y103{bottom:484.685100px;}
.yc8{bottom:484.690950px;}
.y134{bottom:489.821700px;}
.y146{bottom:489.823950px;}
.y126{bottom:491.020950px;}
.y62{bottom:495.302100px;}
.ya0{bottom:495.379350px;}
.y3a{bottom:505.804350px;}
.ya8{bottom:505.902600px;}
.yeb{bottom:505.940100px;}
.yc7{bottom:505.945950px;}
.y1{bottom:505.946100px;}
.y125{bottom:506.320950px;}
.y18{bottom:506.962650px;}
.y133{bottom:507.072450px;}
.y145{bottom:507.074700px;}
.y124{bottom:515.322450px;}
.y61{bottom:516.570600px;}
.y1e{bottom:524.127600px;}
.y132{bottom:524.323200px;}
.y39{bottom:527.071350px;}
.yea{bottom:527.207100px;}
.y4c{bottom:531.678600px;}
.y131{bottom:533.324700px;}
.y123{bottom:533.325450px;}
.y144{bottom:533.326950px;}
.ya7{bottom:537.797100px;}
.yb4{bottom:537.837450px;}
.y111{bottom:541.732500px;}
.y38{bottom:548.338350px;}
.y130{bottom:550.575450px;}
.y122{bottom:550.576200px;}
.y143{bottom:550.577700px;}
.ye9{bottom:551.390100px;}
.y17{bottom:553.414650px;}
.y102{bottom:559.053450px;}
.ya6{bottom:559.065600px;}
.y60{bottom:559.091100px;}
.yc6{bottom:559.095450px;}
.y12f{bottom:567.826200px;}
.y121{bottom:567.826950px;}
.y142{bottom:567.828450px;}
.y37{bottom:569.605350px;}
.ye8{bottom:571.190100px;}
.y16{bottom:578.614650px;}
.yc5{bottom:580.359450px;}
.y5f{bottom:580.359600px;}
.y12e{bottom:585.076950px;}
.y120{bottom:585.077700px;}
.y141{bottom:585.079200px;}
.y6e{bottom:587.910600px;}
.y36{bottom:590.872350px;}
.y101{bottom:590.949450px;}
.ya5{bottom:590.960100px;}
.yb{bottom:590.990100px;}
.y110{bottom:591.155400px;}
.y113{bottom:592.966950px;}
.y114{bottom:592.973400px;}
.y12d{bottom:602.327700px;}
.y11f{bottom:602.328450px;}
.y140{bottom:602.329950px;}
.y15{bottom:603.814650px;}
.y12c{bottom:611.329200px;}
.y11e{bottom:611.329950px;}
.y13f{bottom:611.331450px;}
.y35{bottom:612.139350px;}
.ye7{bottom:612.209100px;}
.ya4{bottom:612.228600px;}
.y100{bottom:622.845450px;}
.y5e{bottom:622.875600px;}
.y34{bottom:633.406350px;}
.yc4{bottom:633.469950px;}
.ye6{bottom:633.476100px;}
.ya3{bottom:633.497100px;}
.y1d{bottom:644.142600px;}
.y14{bottom:650.266650px;}
.y4b{bottom:651.693600px;}
.yc3{bottom:654.738450px;}
.yff{bottom:654.741450px;}
.ye5{bottom:654.743100px;}
.ya2{bottom:654.765600px;}
.y13{bottom:675.466650px;}
.y33{bottom:675.927600px;}
.ye4{bottom:676.010100px;}
.ya1{bottom:676.034100px;}
.yc2{bottom:686.632950px;}
.yfe{bottom:686.637450px;}
.y9e{bottom:693.040350px;}
.y32{bottom:697.194600px;}
.ye3{bottom:697.277100px;}
.yc1{bottom:707.901450px;}
.y6d{bottom:707.925600px;}
.y31{bottom:718.461600px;}
.y5d{bottom:718.508700px;}
.yfd{bottom:718.533450px;}
.ye2{bottom:718.544100px;}
.y7e{bottom:718.553100px;}
.y12{bottom:721.918650px;}
.y10f{bottom:729.140100px;}
.yc0{bottom:729.169950px;}
.y9a{bottom:739.718100px;}
.y30{bottom:739.728600px;}
.y5c{bottom:739.775700px;}
.ye1{bottom:739.811100px;}
.y7d{bottom:739.817100px;}
.y10e{bottom:750.408600px;}
.yfc{bottom:750.429450px;}
.ybf{bottom:750.438450px;}
.y99{bottom:760.986600px;}
.y2f{bottom:760.995600px;}
.y5b{bottom:761.042700px;}
.ye0{bottom:761.078100px;}
.y11{bottom:768.370650px;}
.y4a{bottom:771.708600px;}
.y98{bottom:782.255100px;}
.y2e{bottom:782.262600px;}
.y10d{bottom:782.303100px;}
.y5a{bottom:782.309700px;}
.yfb{bottom:782.325450px;}
.ybe{bottom:782.332950px;}
.ydf{bottom:783.800100px;}
.y7c{bottom:792.911100px;}
.y10{bottom:793.570650px;}
.y13e{bottom:793.924200px;}
.y97{bottom:803.523600px;}
.y2d{bottom:803.529600px;}
.y10c{bottom:803.571600px;}
.y59{bottom:803.576700px;}
.y13d{bottom:811.165800px;}
.y7b{bottom:814.179600px;}
.yfa{bottom:814.221450px;}
.ybd{bottom:814.227450px;}
.y2c{bottom:824.796600px;}
.yde{bottom:824.837100px;}
.y13c{bottom:828.416550px;}
.y11d{bottom:828.424200px;}
.y96{bottom:835.418100px;}
.y7a{bottom:835.448100px;}
.y10b{bottom:835.466100px;}
.yf{bottom:843.529650px;}
.y11c{bottom:845.668200px;}
.y12b{bottom:845.674200px;}
.y2b{bottom:846.063600px;}
.y58{bottom:846.097950px;}
.ydd{bottom:846.104100px;}
.yf9{bottom:846.117450px;}
.ybc{bottom:846.121950px;}
.y13b{bottom:854.668800px;}
.y11b{bottom:854.669700px;}
.y95{bottom:856.686600px;}
.y10a{bottom:856.734600px;}
.y12a{bottom:862.918950px;}
.y79{bottom:867.342600px;}
.y57{bottom:867.364950px;}
.ydc{bottom:867.371100px;}
.y13a{bottom:871.919550px;}
.y11a{bottom:871.920450px;}
.yf8{bottom:876.513450px;}
.y94{bottom:877.955100px;}
.ybb{bottom:878.019600px;}
.y129{bottom:880.169700px;}
.y2a{bottom:888.584850px;}
.y78{bottom:888.611100px;}
.y109{bottom:888.629100px;}
.y56{bottom:888.631950px;}
.ydb{bottom:888.638100px;}
.y139{bottom:889.170300px;}
.y119{bottom:889.171200px;}
.y93{bottom:899.223600px;}
.y9d{bottom:899.271600px;}
.yba{bottom:899.274600px;}
.ye{bottom:903.005250px;}
.y138{bottom:906.421050px;}
.y118{bottom:906.421950px;}
.y29{bottom:909.851850px;}
.y77{bottom:909.879600px;}
.y55{bottom:909.898950px;}
.yda{bottom:909.905100px;}
.y117{bottom:915.423450px;}
.y108{bottom:920.523600px;}
.y9c{bottom:920.535600px;}
.y137{bottom:923.671800px;}
.y128{bottom:923.672700px;}
.y92{bottom:931.118100px;}
.y28{bottom:931.118850px;}
.y76{bottom:931.148100px;}
.y54{bottom:931.165950px;}
.yd9{bottom:932.627100px;}
.y136{bottom:932.673300px;}
.y116{bottom:932.674200px;}
.y27{bottom:952.385850px;}
.y91{bottom:952.386600px;}
.y107{bottom:952.418100px;}
.y53{bottom:953.888100px;}
.yd{bottom:962.480850px;}
.y75{bottom:963.042600px;}
.y26{bottom:973.652850px;}
.y90{bottom:973.655100px;}
.yd8{bottom:973.658100px;}
.y74{bottom:984.311100px;}
.y106{bottom:984.312600px;}
.y25{bottom:994.919850px;}
.y9b{bottom:994.923600px;}
.y52{bottom:994.925100px;}
.y8f{bottom:1005.549600px;}
.y73{bottom:1005.579600px;}
.y24{bottom:1016.186850px;}
.y51{bottom:1016.192100px;}
.y105{bottom:1016.207100px;}
.y8e{bottom:1026.818100px;}
.y7f{bottom:1036.924950px;}
.y23{bottom:1037.453850px;}
.y50{bottom:1037.459100px;}
.y72{bottom:1037.471100px;}
.y8d{bottom:1048.086600px;}
.y104{bottom:1048.101600px;}
.y22{bottom:1058.720850px;}
.y4f{bottom:1058.726100px;}
.y8c{bottom:1069.355100px;}
.y71{bottom:1075.909950px;}
.y21{bottom:1079.987850px;}
.y4e{bottom:1079.993100px;}
.ya{bottom:1086.684600px;}
.y8b{bottom:1090.623600px;}
.y20{bottom:1101.254850px;}
.yd7{bottom:1107.946800px;}
.y9{bottom:1111.884600px;}
.y70{bottom:1114.894950px;}
.y112{bottom:1120.249950px;}
.y115{bottom:1120.256400px;}
.y8a{bottom:1122.515100px;}
.yd6{bottom:1127.746800px;}
.y8{bottom:1137.084600px;}
.y1f{bottom:1143.776100px;}
.y7{bottom:1162.284600px;}
.h18{height:37.485000px;}
.hb{height:38.880000px;}
.h19{height:43.248000px;}
.h15{height:43.728000px;}
.h9{height:45.951000px;}
.h8{height:46.461000px;}
.hd{height:46.500000px;}
.he{height:48.510000px;}
.h12{height:54.060000px;}
.ha{height:59.268000px;}
.hf{height:59.664000px;}
.h6{height:60.126000px;}
.h14{height:65.088000px;}
.h10{height:65.592000px;}
.h13{height:71.088000px;}
.h4{height:75.684000px;}
.h7{height:76.524000px;}
.h17{height:97.308000px;}
.h3{height:111.904200px;}
.hc{height:124.338000px;}
.h2{height:260.728200px;}
.h5{height:482.220000px;}
.h16{height:548.389200px;}
.h11{height:946.116000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2b{left:-826.946250px;}
.xd{left:-759.338250px;}
.x2c{left:-735.686250px;}
.x38{left:-711.318750px;}
.x1c{left:-679.580250px;}
.x16{left:-664.723500px;}
.x5{left:-663.600750px;}
.x1d{left:-626.525250px;}
.x14{left:-614.233500px;}
.x15{left:-544.843500px;}
.x2a{left:-499.436250px;}
.x13{left:-498.133500px;}
.xc{left:-494.198250px;}
.x24{left:-212.298450px;}
.x0{left:0.000000px;}
.x28{left:65.967150px;}
.x4{left:74.409450px;}
.x12{left:75.628350px;}
.x39{left:79.555650px;}
.x21{left:80.995800px;}
.x22{left:83.289450px;}
.x6{left:85.747350px;}
.x1b{left:128.298450px;}
.xa{left:133.575150px;}
.x7{left:153.976350px;}
.x29{left:157.227150px;}
.x17{left:159.448800px;}
.x1f{left:167.805150px;}
.x20{left:174.438150px;}
.x18{left:182.416800px;}
.xb{left:202.950150px;}
.x19{left:213.333150px;}
.x11{left:228.189900px;}
.x3{left:229.312650px;}
.x25{left:240.001800px;}
.x26{left:244.506300px;}
.x1a{left:266.388150px;}
.x3a{left:276.803100px;}
.xf{left:278.679900px;}
.x3b{left:280.886400px;}
.x3e{left:328.444350px;}
.x10{left:348.069900px;}
.x1{left:385.387800px;}
.x27{left:393.477150px;}
.xe{left:394.779900px;}
.x9{left:398.715150px;}
.x3c{left:478.345650px;}
.x3d{left:482.429700px;}
.x3f{left:594.004350px;}
.x2{left:599.013750px;}
.x31{left:601.606050px;}
.x37{left:615.707850px;}
.x2f{left:629.056050px;}
.x35{left:630.154050px;}
.x30{left:632.044050px;}
.x2e{left:634.240050px;}
.x32{left:641.530050px;}
.x36{left:649.378050px;}
.x33{left:651.232050px;}
.x34{left:666.262050px;}
.x23{left:680.614950px;}
.x2d{left:682.543350px;}
.x1e{left:800.684100px;}
.x8{left:809.594100px;}
@media print{
.v1{vertical-align:-12.469333pt;}
.v3{vertical-align:-5.172800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v4{vertical-align:376.934400pt;}
.ls6{letter-spacing:-50.400000pt;}
.ls3{letter-spacing:-31.680000pt;}
.lsc{letter-spacing:-22.080000pt;}
.ls7{letter-spacing:-21.120000pt;}
.lse{letter-spacing:-19.200000pt;}
.lsd{letter-spacing:-18.240000pt;}
.ls1c{letter-spacing:-12.960000pt;}
.ls13{letter-spacing:-8.640000pt;}
.ls16{letter-spacing:-1.525333pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.226667pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.634667pt;}
.ls21{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.680000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.810667pt;}
.ls17{letter-spacing:0.853333pt;}
.ls9{letter-spacing:0.861333pt;}
.ls10{letter-spacing:0.896000pt;}
.lsb{letter-spacing:1.042667pt;}
.ls2{letter-spacing:2.000000pt;}
.ls19{letter-spacing:2.032000pt;}
.ls1a{letter-spacing:2.416000pt;}
.ls22{letter-spacing:4.320000pt;}
.ls18{letter-spacing:16.016000pt;}
.ls14{letter-spacing:23.584000pt;}
.ls4{letter-spacing:40.320000pt;}
.ls1{letter-spacing:86.241067pt;}
.ls5{letter-spacing:151.349333pt;}
.ws47{word-spacing:-100.320000pt;}
.ws1f{word-spacing:-87.360000pt;}
.ws20{word-spacing:-77.760000pt;}
.wsc{word-spacing:-76.800000pt;}
.ws8{word-spacing:-74.880000pt;}
.ws4{word-spacing:-64.320000pt;}
.ws0{word-spacing:-50.880000pt;}
.ws49{word-spacing:-19.200000pt;}
.ws3{word-spacing:-14.933333pt;}
.ws42{word-spacing:-12.800000pt;}
.ws44{word-spacing:-12.608000pt;}
.ws5{word-spacing:-11.733333pt;}
.ws4a{word-spacing:-9.066667pt;}
.ws4b{word-spacing:-8.533333pt;}
.ws2e{word-spacing:-3.581333pt;}
.ws3c{word-spacing:-2.720000pt;}
.ws40{word-spacing:-2.312000pt;}
.ws39{word-spacing:-1.813333pt;}
.ws38{word-spacing:-1.677333pt;}
.ws11{word-spacing:-1.586667pt;}
.ws1a{word-spacing:-1.133333pt;}
.wsb{word-spacing:-1.042667pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.816000pt;}
.ws1d{word-spacing:-0.810667pt;}
.ws2b{word-spacing:-0.770667pt;}
.ws1e{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.725333pt;}
.ws9{word-spacing:-0.680000pt;}
.ws46{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.634667pt;}
.ws22{word-spacing:-0.373333pt;}
.ws36{word-spacing:-0.272000pt;}
.ws26{word-spacing:-0.266667pt;}
.ws25{word-spacing:-0.234667pt;}
.ws2{word-spacing:-0.149333pt;}
.ws28{word-spacing:-0.112000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.090667pt;}
.ws45{word-spacing:0.128000pt;}
.ws3b{word-spacing:0.226667pt;}
.ws43{word-spacing:0.256000pt;}
.ws41{word-spacing:0.512000pt;}
.ws2a{word-spacing:1.450667pt;}
.ws23{word-spacing:1.525333pt;}
.ws2c{word-spacing:1.722667pt;}
.ws37{word-spacing:1.994667pt;}
.ws3d{word-spacing:2.085333pt;}
.ws18{word-spacing:3.037333pt;}
.ws2d{word-spacing:3.173333pt;}
.ws17{word-spacing:3.762667pt;}
.ws1b{word-spacing:3.898667pt;}
.ws16{word-spacing:4.125333pt;}
.ws35{word-spacing:6.256000pt;}
.ws13{word-spacing:7.706667pt;}
.ws3f{word-spacing:8.250667pt;}
.ws3e{word-spacing:8.296000pt;}
.ws34{word-spacing:8.341333pt;}
.ws2f{word-spacing:9.474667pt;}
.ws15{word-spacing:9.656000pt;}
.ws30{word-spacing:10.517333pt;}
.ws14{word-spacing:11.152000pt;}
.ws19{word-spacing:11.832000pt;}
.ws29{word-spacing:12.602667pt;}
.ws27{word-spacing:12.960000pt;}
.ws32{word-spacing:12.965333pt;}
.ws10{word-spacing:15.912000pt;}
.wse{word-spacing:18.240000pt;}
.wsf{word-spacing:19.200000pt;}
.wsd{word-spacing:22.080000pt;}
.ws12{word-spacing:25.840000pt;}
.ws6{word-spacing:30.389333pt;}
.ws21{word-spacing:42.827733pt;}
.ws7{word-spacing:50.400000pt;}
.ws48{word-spacing:804.724267pt;}
._19{margin-left:-1086.487467pt;}
._29{margin-left:-41.066667pt;}
._28{margin-left:-24.533333pt;}
._30{margin-left:-23.524053pt;}
._33{margin-left:-22.464000pt;}
._34{margin-left:-21.360000pt;}
._2f{margin-left:-20.218667pt;}
._31{margin-left:-18.126773pt;}
._25{margin-left:-16.924960pt;}
._8{margin-left:-14.784000pt;}
._26{margin-left:-13.826667pt;}
._32{margin-left:-12.808000pt;}
._27{margin-left:-11.733333pt;}
._1e{margin-left:-9.483520pt;}
._24{margin-left:-8.114667pt;}
._7{margin-left:-6.774187pt;}
._2b{margin-left:-4.323680pt;}
._6{margin-left:-3.015840pt;}
._0{margin-left:-1.272000pt;}
._3{width:1.017600pt;}
._5{width:2.307360pt;}
._1d{width:3.212640pt;}
._1{width:4.324800pt;}
._2{width:6.588960pt;}
._20{width:7.584000pt;}
._35{width:8.527307pt;}
._21{width:9.456000pt;}
._4{width:10.430400pt;}
._2a{width:11.336693pt;}
._a{width:12.576000pt;}
._b{width:13.536000pt;}
._9{width:15.700267pt;}
._1f{width:16.851360pt;}
._22{width:18.192000pt;}
._23{width:19.814400pt;}
._1c{width:21.426667pt;}
._2d{width:22.320000pt;}
._1b{width:24.941333pt;}
._2c{width:26.190240pt;}
._2e{width:29.280000pt;}
._e{width:30.389333pt;}
._c{width:35.520000pt;}
._1a{width:50.400000pt;}
._13{width:252.264373pt;}
._15{width:562.118400pt;}
._16{width:842.191147pt;}
._11{width:926.133013pt;}
._12{width:959.555947pt;}
._14{width:1011.551680pt;}
._17{width:1271.215840pt;}
._10{width:1320.684800pt;}
._f{width:1467.200000pt;}
._18{width:1649.088000pt;}
._d{width:1662.107733pt;}
.fs5{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fsc{font-size:96.000000pt;}
.fs1{font-size:110.400000pt;}
.fsb{font-size:112.000000pt;}
.fs8{font-size:122.666667pt;}
.fs0{font-size:254.400000pt;}
.fs3{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:33.959200pt;}
.y6c{bottom:71.745867pt;}
.y6b{bottom:90.647200pt;}
.y6a{bottom:109.548533pt;}
.yd5{bottom:119.000400pt;}
.y49{bottom:128.258533pt;}
.y89{bottom:128.407200pt;}
.y69{bottom:128.449867pt;}
.yd4{bottom:137.901733pt;}
.y48{bottom:147.162533pt;}
.y88{bottom:147.312533pt;}
.y68{bottom:147.351200pt;}
.y87{bottom:166.217867pt;}
.yb3{bottom:166.244533pt;}
.y9f{bottom:175.698667pt;}
.y6{bottom:180.117200pt;}
.y14c{bottom:181.042667pt;}
.y47{bottom:184.959200pt;}
.yd3{bottom:185.100400pt;}
.yb2{bottom:185.145867pt;}
.y150{bottom:193.842667pt;}
.y86{bottom:194.568533pt;}
.y46{bottom:203.863200pt;}
.yd2{bottom:204.005733pt;}
.yf7{bottom:204.015200pt;}
.yb1{bottom:204.047200pt;}
.y14f{bottom:206.642667pt;}
.y14b{bottom:208.157333pt;}
.y5{bottom:211.317200pt;}
.y85{bottom:213.473867pt;}
.y14e{bottom:219.442667pt;}
.y14a{bottom:220.157333pt;}
.y45{bottom:222.767200pt;}
.yd1{bottom:222.911067pt;}
.yf6{bottom:222.919200pt;}
.y14d{bottom:232.242667pt;}
.y84{bottom:232.379200pt;}
.y44{bottom:241.671200pt;}
.yd0{bottom:241.816400pt;}
.yf5{bottom:241.823200pt;}
.y149{bottom:247.291600pt;}
.yb0{bottom:251.221867pt;}
.y43{bottom:260.575200pt;}
.y148{bottom:260.619600pt;}
.ycf{bottom:260.721733pt;}
.yf4{bottom:260.727200pt;}
.y83{bottom:260.729867pt;}
.y4{bottom:269.755067pt;}
.y147{bottom:273.947600pt;}
.yaf{bottom:279.572533pt;}
.yce{bottom:279.627067pt;}
.yf3{bottom:279.631200pt;}
.y82{bottom:279.635200pt;}
.y1c{bottom:284.284133pt;}
.y42{bottom:298.371867pt;}
.yf2{bottom:298.535200pt;}
.y81{bottom:298.540533pt;}
.yae{bottom:307.923200pt;}
.ycd{bottom:307.977733pt;}
.y41{bottom:317.275867pt;}
.yf1{bottom:317.439200pt;}
.yad{bottom:326.828533pt;}
.ycc{bottom:326.883067pt;}
.y80{bottom:326.888533pt;}
.y3{bottom:329.729867pt;}
.y40{bottom:336.179867pt;}
.yb9{bottom:336.312533pt;}
.y1b{bottom:337.151200pt;}
.yf0{bottom:338.935200pt;}
.y67{bottom:345.741867pt;}
.y3f{bottom:355.083867pt;}
.yac{bottom:355.179200pt;}
.yb8{bottom:355.217867pt;}
.ycb{bottom:355.233733pt;}
.yef{bottom:356.535200pt;}
.y66{bottom:364.647200pt;}
.y4d{bottom:365.923200pt;}
.y3e{bottom:373.987867pt;}
.yab{bottom:374.084533pt;}
.y65{bottom:383.552533pt;}
.yb7{bottom:383.568533pt;}
.yca{bottom:383.584400pt;}
.y1a{bottom:386.942800pt;}
.y2{bottom:389.729867pt;}
.y3d{bottom:392.891867pt;}
.yee{bottom:393.012533pt;}
.yaa{bottom:402.435200pt;}
.y64{bottom:402.457867pt;}
.yb6{bottom:402.473867pt;}
.y3c{bottom:411.795867pt;}
.yed{bottom:411.916533pt;}
.yc9{bottom:411.943067pt;}
.y6f{bottom:415.907200pt;}
.y135{bottom:420.068267pt;}
.y127{bottom:421.134933pt;}
.ya9{bottom:421.340533pt;}
.y63{bottom:421.363200pt;}
.y19{bottom:428.233467pt;}
.y3b{bottom:430.699867pt;}
.yec{bottom:430.820533pt;}
.yb5{bottom:430.824533pt;}
.y103{bottom:430.831200pt;}
.yc8{bottom:430.836400pt;}
.y134{bottom:435.397067pt;}
.y146{bottom:435.399067pt;}
.y126{bottom:436.463067pt;}
.y62{bottom:440.268533pt;}
.ya0{bottom:440.337200pt;}
.y3a{bottom:449.603867pt;}
.ya8{bottom:449.691200pt;}
.yeb{bottom:449.724533pt;}
.yc7{bottom:449.729733pt;}
.y1{bottom:449.729867pt;}
.y125{bottom:450.063067pt;}
.y18{bottom:450.633467pt;}
.y133{bottom:450.731067pt;}
.y145{bottom:450.733067pt;}
.y124{bottom:458.064400pt;}
.y61{bottom:459.173867pt;}
.y1e{bottom:465.891200pt;}
.y132{bottom:466.065067pt;}
.y39{bottom:468.507867pt;}
.yea{bottom:468.628533pt;}
.y4c{bottom:472.603200pt;}
.y131{bottom:474.066400pt;}
.y123{bottom:474.067067pt;}
.y144{bottom:474.068400pt;}
.ya7{bottom:478.041867pt;}
.yb4{bottom:478.077733pt;}
.y111{bottom:481.540000pt;}
.y38{bottom:487.411867pt;}
.y130{bottom:489.400400pt;}
.y122{bottom:489.401067pt;}
.y143{bottom:489.402400pt;}
.ye9{bottom:490.124533pt;}
.y17{bottom:491.924133pt;}
.y102{bottom:496.936400pt;}
.ya6{bottom:496.947200pt;}
.y60{bottom:496.969867pt;}
.yc6{bottom:496.973733pt;}
.y12f{bottom:504.734400pt;}
.y121{bottom:504.735067pt;}
.y142{bottom:504.736400pt;}
.y37{bottom:506.315867pt;}
.ye8{bottom:507.724533pt;}
.y16{bottom:514.324133pt;}
.yc5{bottom:515.875067pt;}
.y5f{bottom:515.875200pt;}
.y12e{bottom:520.068400pt;}
.y120{bottom:520.069067pt;}
.y141{bottom:520.070400pt;}
.y6e{bottom:522.587200pt;}
.y36{bottom:525.219867pt;}
.y101{bottom:525.288400pt;}
.ya5{bottom:525.297867pt;}
.yb{bottom:525.324533pt;}
.y110{bottom:525.471467pt;}
.y113{bottom:527.081733pt;}
.y114{bottom:527.087467pt;}
.y12d{bottom:535.402400pt;}
.y11f{bottom:535.403067pt;}
.y140{bottom:535.404400pt;}
.y15{bottom:536.724133pt;}
.y12c{bottom:543.403733pt;}
.y11e{bottom:543.404400pt;}
.y13f{bottom:543.405733pt;}
.y35{bottom:544.123867pt;}
.ye7{bottom:544.185867pt;}
.ya4{bottom:544.203200pt;}
.y100{bottom:553.640400pt;}
.y5e{bottom:553.667200pt;}
.y34{bottom:563.027867pt;}
.yc4{bottom:563.084400pt;}
.ye6{bottom:563.089867pt;}
.ya3{bottom:563.108533pt;}
.y1d{bottom:572.571200pt;}
.y14{bottom:578.014800pt;}
.y4b{bottom:579.283200pt;}
.yc3{bottom:581.989733pt;}
.yff{bottom:581.992400pt;}
.ye5{bottom:581.993867pt;}
.ya2{bottom:582.013867pt;}
.y13{bottom:600.414800pt;}
.y33{bottom:600.824533pt;}
.ye4{bottom:600.897867pt;}
.ya1{bottom:600.919200pt;}
.yc2{bottom:610.340400pt;}
.yfe{bottom:610.344400pt;}
.y9e{bottom:616.035867pt;}
.y32{bottom:619.728533pt;}
.ye3{bottom:619.801867pt;}
.yc1{bottom:629.245733pt;}
.y6d{bottom:629.267200pt;}
.y31{bottom:638.632533pt;}
.y5d{bottom:638.674400pt;}
.yfd{bottom:638.696400pt;}
.ye2{bottom:638.705867pt;}
.y7e{bottom:638.713867pt;}
.y12{bottom:641.705467pt;}
.y10f{bottom:648.124533pt;}
.yc0{bottom:648.151067pt;}
.y9a{bottom:657.527200pt;}
.y30{bottom:657.536533pt;}
.y5c{bottom:657.578400pt;}
.ye1{bottom:657.609867pt;}
.y7d{bottom:657.615200pt;}
.y10e{bottom:667.029867pt;}
.yfc{bottom:667.048400pt;}
.ybf{bottom:667.056400pt;}
.y99{bottom:676.432533pt;}
.y2f{bottom:676.440533pt;}
.y5b{bottom:676.482400pt;}
.ye0{bottom:676.513867pt;}
.y11{bottom:682.996133pt;}
.y4a{bottom:685.963200pt;}
.y98{bottom:695.337867pt;}
.y2e{bottom:695.344533pt;}
.y10d{bottom:695.380533pt;}
.y5a{bottom:695.386400pt;}
.yfb{bottom:695.400400pt;}
.ybe{bottom:695.407067pt;}
.ydf{bottom:696.711200pt;}
.y7c{bottom:704.809867pt;}
.y10{bottom:705.396133pt;}
.y13e{bottom:705.710400pt;}
.y97{bottom:714.243200pt;}
.y2d{bottom:714.248533pt;}
.y10c{bottom:714.285867pt;}
.y59{bottom:714.290400pt;}
.y13d{bottom:721.036267pt;}
.y7b{bottom:723.715200pt;}
.yfa{bottom:723.752400pt;}
.ybd{bottom:723.757733pt;}
.y2c{bottom:733.152533pt;}
.yde{bottom:733.188533pt;}
.y13c{bottom:736.370267pt;}
.y11d{bottom:736.377067pt;}
.y96{bottom:742.593867pt;}
.y7a{bottom:742.620533pt;}
.y10b{bottom:742.636533pt;}
.yf{bottom:749.804133pt;}
.y11c{bottom:751.705067pt;}
.y12b{bottom:751.710400pt;}
.y2b{bottom:752.056533pt;}
.y58{bottom:752.087067pt;}
.ydd{bottom:752.092533pt;}
.yf9{bottom:752.104400pt;}
.ybc{bottom:752.108400pt;}
.y13b{bottom:759.705600pt;}
.y11b{bottom:759.706400pt;}
.y95{bottom:761.499200pt;}
.y10a{bottom:761.541867pt;}
.y12a{bottom:767.039067pt;}
.y79{bottom:770.971200pt;}
.y57{bottom:770.991067pt;}
.ydc{bottom:770.996533pt;}
.y13a{bottom:775.039600pt;}
.y11a{bottom:775.040400pt;}
.yf8{bottom:779.123067pt;}
.y94{bottom:780.404533pt;}
.ybb{bottom:780.461867pt;}
.y129{bottom:782.373067pt;}
.y2a{bottom:789.853200pt;}
.y78{bottom:789.876533pt;}
.y109{bottom:789.892533pt;}
.y56{bottom:789.895067pt;}
.ydb{bottom:789.900533pt;}
.y139{bottom:790.373600pt;}
.y119{bottom:790.374400pt;}
.y93{bottom:799.309867pt;}
.y9d{bottom:799.352533pt;}
.yba{bottom:799.355200pt;}
.ye{bottom:802.671333pt;}
.y138{bottom:805.707600pt;}
.y118{bottom:805.708400pt;}
.y29{bottom:808.757200pt;}
.y77{bottom:808.781867pt;}
.y55{bottom:808.799067pt;}
.yda{bottom:808.804533pt;}
.y117{bottom:813.709733pt;}
.y108{bottom:818.243200pt;}
.y9c{bottom:818.253867pt;}
.y137{bottom:821.041600pt;}
.y128{bottom:821.042400pt;}
.y92{bottom:827.660533pt;}
.y28{bottom:827.661200pt;}
.y76{bottom:827.687200pt;}
.y54{bottom:827.703067pt;}
.yd9{bottom:829.001867pt;}
.y136{bottom:829.042933pt;}
.y116{bottom:829.043733pt;}
.y27{bottom:846.565200pt;}
.y91{bottom:846.565867pt;}
.y107{bottom:846.593867pt;}
.y53{bottom:847.900533pt;}
.yd{bottom:855.538533pt;}
.y75{bottom:856.037867pt;}
.y26{bottom:865.469200pt;}
.y90{bottom:865.471200pt;}
.yd8{bottom:865.473867pt;}
.y74{bottom:874.943200pt;}
.y106{bottom:874.944533pt;}
.y25{bottom:884.373200pt;}
.y9b{bottom:884.376533pt;}
.y52{bottom:884.377867pt;}
.y8f{bottom:893.821867pt;}
.y73{bottom:893.848533pt;}
.y24{bottom:903.277200pt;}
.y51{bottom:903.281867pt;}
.y105{bottom:903.295200pt;}
.y8e{bottom:912.727200pt;}
.y7f{bottom:921.711067pt;}
.y23{bottom:922.181200pt;}
.y50{bottom:922.185867pt;}
.y72{bottom:922.196533pt;}
.y8d{bottom:931.632533pt;}
.y104{bottom:931.645867pt;}
.y22{bottom:941.085200pt;}
.y4f{bottom:941.089867pt;}
.y8c{bottom:950.537867pt;}
.y71{bottom:956.364400pt;}
.y21{bottom:959.989200pt;}
.y4e{bottom:959.993867pt;}
.ya{bottom:965.941867pt;}
.y8b{bottom:969.443200pt;}
.y20{bottom:978.893200pt;}
.yd7{bottom:984.841600pt;}
.y9{bottom:988.341867pt;}
.y70{bottom:991.017733pt;}
.y112{bottom:995.777733pt;}
.y115{bottom:995.783467pt;}
.y8a{bottom:997.791200pt;}
.yd6{bottom:1002.441600pt;}
.y8{bottom:1010.741867pt;}
.y1f{bottom:1016.689867pt;}
.y7{bottom:1033.141867pt;}
.h18{height:33.320000pt;}
.hb{height:34.560000pt;}
.h19{height:38.442667pt;}
.h15{height:38.869333pt;}
.h9{height:40.845333pt;}
.h8{height:41.298667pt;}
.hd{height:41.333333pt;}
.he{height:43.120000pt;}
.h12{height:48.053333pt;}
.ha{height:52.682667pt;}
.hf{height:53.034667pt;}
.h6{height:53.445333pt;}
.h14{height:57.856000pt;}
.h10{height:58.304000pt;}
.h13{height:63.189333pt;}
.h4{height:67.274667pt;}
.h7{height:68.021333pt;}
.h17{height:86.496000pt;}
.h3{height:99.470400pt;}
.hc{height:110.522667pt;}
.h2{height:231.758400pt;}
.h5{height:428.640000pt;}
.h16{height:487.457067pt;}
.h11{height:840.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2b{left:-735.063333pt;}
.xd{left:-674.967333pt;}
.x2c{left:-653.943333pt;}
.x38{left:-632.283333pt;}
.x1c{left:-604.071333pt;}
.x16{left:-590.865333pt;}
.x5{left:-589.867333pt;}
.x1d{left:-556.911333pt;}
.x14{left:-545.985333pt;}
.x15{left:-484.305333pt;}
.x2a{left:-443.943333pt;}
.x13{left:-442.785333pt;}
.xc{left:-439.287333pt;}
.x24{left:-188.709733pt;}
.x0{left:0.000000pt;}
.x28{left:58.637467pt;}
.x4{left:66.141733pt;}
.x12{left:67.225200pt;}
.x39{left:70.716133pt;}
.x21{left:71.996267pt;}
.x22{left:74.035067pt;}
.x6{left:76.219867pt;}
.x1b{left:114.043067pt;}
.xa{left:118.733467pt;}
.x7{left:136.867867pt;}
.x29{left:139.757467pt;}
.x17{left:141.732267pt;}
.x1f{left:149.160133pt;}
.x20{left:155.056133pt;}
.x18{left:162.148267pt;}
.xb{left:180.400133pt;}
.x19{left:189.629467pt;}
.x11{left:202.835467pt;}
.x3{left:203.833467pt;}
.x25{left:213.334933pt;}
.x26{left:217.338933pt;}
.x1a{left:236.789467pt;}
.x3a{left:246.047200pt;}
.xf{left:247.715467pt;}
.x3b{left:249.676800pt;}
.x3e{left:291.950533pt;}
.x10{left:309.395467pt;}
.x1{left:342.566933pt;}
.x27{left:349.757467pt;}
.xe{left:350.915467pt;}
.x9{left:354.413467pt;}
.x3c{left:425.196133pt;}
.x3d{left:428.826400pt;}
.x3f{left:528.003867pt;}
.x2{left:532.456667pt;}
.x31{left:534.760933pt;}
.x37{left:547.295867pt;}
.x2f{left:559.160933pt;}
.x35{left:560.136933pt;}
.x30{left:561.816933pt;}
.x2e{left:563.768933pt;}
.x32{left:570.248933pt;}
.x36{left:577.224933pt;}
.x33{left:578.872933pt;}
.x34{left:592.232933pt;}
.x23{left:604.991067pt;}
.x2d{left:606.705200pt;}
.x1e{left:711.719200pt;}
.x8{left:719.639200pt;}
}




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