
    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_dc602cbaad832cb5c426ca95.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_bfd4cfb3c9440dbe9ab3eea4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.175781;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_9b6d6101f875d62f90500134.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175781;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_daa08945650f36f8cd60443d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.755371;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_6fe84f0ff24733a76a569934.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_f2270f47bf49a2efe21beb18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935059;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_b2cd4d0daaa264d387064a67.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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_d45fd33886d803e8d1403866.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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;}
.m6{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:49.200000px;}
.ls9{letter-spacing:-6.000000px;}
.ls4{letter-spacing:-3.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:3.000000px;}
.ls7{letter-spacing:8.592000px;}
.ls5{letter-spacing:8.808000px;}
.ls8{letter-spacing:9.000000px;}
.ls1{letter-spacing:12.000000px;}
.ls6{letter-spacing:22.992000px;}
.ls0{letter-spacing:124.235200px;}
.lsa{letter-spacing:1200.600000px;}
.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:-43.500000px;}
.ws9{word-spacing:-42.633000px;}
.ws18{word-spacing:-19.200000px;}
.ws1{word-spacing:-12.510000px;}
.ws16{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.676000px;}
.ws3{word-spacing:-11.613000px;}
.ws11{word-spacing:-10.476000px;}
.ws13{word-spacing:-9.340800px;}
.ws12{word-spacing:-6.672000px;}
.ws15{word-spacing:-6.630000px;}
.ws19{word-spacing:-6.000000px;}
.wsf{word-spacing:-4.992000px;}
.wse{word-spacing:-4.095000px;}
.wsa{word-spacing:-2.707200px;}
.wsb{word-spacing:-2.395200px;}
.wsd{word-spacing:-2.115000px;}
.wsc{word-spacing:-1.699200px;}
.ws2{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:9.366000px;}
.ws10{word-spacing:11.505000px;}
.ws14{word-spacing:13.338000px;}
.ws17{word-spacing:13.776000px;}
.ws8{word-spacing:20.685000px;}
._3e{margin-left:-19.008000px;}
._1c{margin-left:-12.879000px;}
._2{margin-left:-10.920000px;}
._31{margin-left:-9.630000px;}
._1{margin-left:-7.245000px;}
._0{margin-left:-5.670000px;}
._1f{margin-left:-4.665000px;}
._1d{margin-left:-3.339000px;}
._34{margin-left:-2.187000px;}
._1b{margin-left:-1.113000px;}
._11{width:1.215000px;}
._1e{width:2.226000px;}
._37{width:3.239400px;}
._28{width:4.248000px;}
._36{width:5.487000px;}
._1a{width:6.636000px;}
._13{width:8.148000px;}
._39{width:9.178800px;}
._24{width:10.224000px;}
._35{width:11.343000px;}
._17{width:12.936000px;}
._15{width:14.448000px;}
._12{width:16.002000px;}
._18{width:17.052000px;}
._21{width:18.324000px;}
._23{width:20.064000px;}
._3c{width:21.094800px;}
._16{width:22.176000px;}
._22{width:24.084000px;}
._3{width:26.037000px;}
._25{width:27.342000px;}
._3a{width:28.733400px;}
._19{width:29.778000px;}
._38{width:30.997200px;}
._27{width:32.058000px;}
._20{width:33.216000px;}
._30{width:34.230000px;}
._2f{width:35.328000px;}
._5{width:36.432000px;}
._4{width:37.620000px;}
._f{width:39.303000px;}
._6{width:45.173000px;}
._2a{width:46.233000px;}
._7{width:48.510000px;}
._3b{width:51.416400px;}
._c{width:53.460000px;}
._29{width:55.638000px;}
._33{width:57.195000px;}
._26{width:60.942000px;}
._2d{width:62.964000px;}
._d{width:64.449000px;}
._e{width:70.488000px;}
._8{width:78.309000px;}
._b{width:79.398000px;}
._a{width:80.784000px;}
._2e{width:84.447000px;}
._2c{width:90.981000px;}
._10{width:99.495000px;}
._9{width:134.640000px;}
._2b{width:140.244000px;}
._3f{width:151.002000px;}
._32{width:152.589000px;}
._14{width:191.394000px;}
._40{width:206.157000px;}
._3d{width:735.817800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:24.000000px;}
.fs8{font-size:28.800000px;}
.fse{font-size:33.600000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fsb{font-size:69.000000px;}
.fs2{font-size:79.200000px;}
.fs1{font-size:99.000000px;}
.fs0{font-size:105.000000px;}
.fs5{font-size:159.000000px;}
.y0{bottom:0.000000px;}
.yfb{bottom:0.330000px;}
.yf9{bottom:28.830000px;}
.y8{bottom:38.580000px;}
.yb{bottom:40.380000px;}
.yfa{bottom:93.330000px;}
.y5d{bottom:120.930000px;}
.y9d{bottom:121.680000px;}
.ye{bottom:122.130000px;}
.ydb{bottom:122.430000px;}
.y3b{bottom:123.930000px;}
.y7{bottom:124.980000px;}
.ya{bottom:126.030000px;}
.yba{bottom:132.480000px;}
.y5c{bottom:136.080000px;}
.y9c{bottom:137.130000px;}
.y3a{bottom:138.330000px;}
.y1a{bottom:140.130000px;}
.yb9{bottom:144.030000px;}
.y5b{bottom:150.930000px;}
.yda{bottom:151.530000px;}
.y9b{bottom:152.280000px;}
.y9{bottom:153.330000px;}
.y6{bottom:154.080000px;}
.y19{bottom:154.830000px;}
.yb8{bottom:159.930000px;}
.yd{bottom:165.630000px;}
.yd9{bottom:166.680000px;}
.y9a{bottom:167.130000px;}
.y39{bottom:168.180000px;}
.y5a{bottom:179.730000px;}
.yd8{bottom:181.530000px;}
.y99{bottom:181.830000px;}
.y38{bottom:182.580000px;}
.y18{bottom:184.380000px;}
.y7e{bottom:187.980000px;}
.yb7{bottom:189.030000px;}
.y98{bottom:196.530000px;}
.y37{bottom:197.730000px;}
.y7d{bottom:201.930000px;}
.y59{bottom:208.530000px;}
.y97{bottom:211.380000px;}
.y36{bottom:212.430000px;}
.y17{bottom:213.480000px;}
.y7c{bottom:217.080000px;}
.y58{bottom:224.730000px;}
.yd7{bottom:225.780000px;}
.y96{bottom:226.530000px;}
.y16{bottom:228.330000px;}
.y7b{bottom:231.930000px;}
.y57{bottom:239.280000px;}
.yd6{bottom:240.930000px;}
.y35{bottom:241.980000px;}
.y15{bottom:243.030000px;}
.y7a{bottom:246.330000px;}
.yb6{bottom:247.380000px;}
.y56{bottom:254.130000px;}
.y95{bottom:255.630000px;}
.y14{bottom:257.730000px;}
.y79{bottom:261.030000px;}
.y55{bottom:268.980000px;}
.yd5{bottom:270.780000px;}
.y34{bottom:272.130000px;}
.y13{bottom:272.580000px;}
.y78{bottom:275.430000px;}
.y54{bottom:283.680000px;}
.y94{bottom:284.730000px;}
.yd4{bottom:285.180000px;}
.y33{bottom:286.530000px;}
.y93{bottom:300.330000px;}
.y12{bottom:301.380000px;}
.yb5{bottom:302.430000px;}
.y77{bottom:304.980000px;}
.y53{bottom:312.930000px;}
.yd3{bottom:314.730000px;}
.y92{bottom:315.330000px;}
.y32{bottom:316.530000px;}
.y76{bottom:320.130000px;}
.y52{bottom:326.880000px;}
.yb4{bottom:329.730000px;}
.y91{bottom:330.180000px;}
.y75{bottom:334.530000px;}
.y51{bottom:342.780000px;}
.y90{bottom:345.030000px;}
.yb3{bottom:347.130000px;}
.y31{bottom:348.180000px;}
.y74{bottom:349.080000px;}
.y11{bottom:357.930000px;}
.yb2{bottom:359.430000px;}
.y8f{bottom:359.730000px;}
.y30{bottom:361.080000px;}
.y73{bottom:363.930000px;}
.y50{bottom:372.630000px;}
.yd2{bottom:373.680000px;}
.yb1{bottom:374.130000px;}
.y8e{bottom:374.430000px;}
.y2f{bottom:375.930000px;}
.y72{bottom:378.780000px;}
.y4f{bottom:387.330000px;}
.yb0{bottom:388.830000px;}
.y2e{bottom:390.930000px;}
.y4e{bottom:402.180000px;}
.y8d{bottom:403.980000px;}
.yaf{bottom:404.280000px;}
.y2d{bottom:405.330000px;}
.y71{bottom:407.880000px;}
.y4d{bottom:417.030000px;}
.yae{bottom:417.930000px;}
.yd1{bottom:419.430000px;}
.y2c{bottom:420.480000px;}
.y4c{bottom:431.730000px;}
.yad{bottom:432.780000px;}
.y8c{bottom:433.530000px;}
.yd0{bottom:434.130000px;}
.y70{bottom:437.430000px;}
.y4b{bottom:446.430000px;}
.yac{bottom:447.930000px;}
.y8b{bottom:448.530000px;}
.ycf{bottom:448.980000px;}
.y2b{bottom:450.030000px;}
.y6f{bottom:452.280000px;}
.yef{bottom:457.980000px;}
.y8a{bottom:463.380000px;}
.yce{bottom:464.130000px;}
.y6e{bottom:466.980000px;}
.yec{bottom:471.630000px;}
.y4a{bottom:475.530000px;}
.yee{bottom:477.030000px;}
.yab{bottom:477.330000px;}
.y89{bottom:478.530000px;}
.ycd{bottom:478.830000px;}
.y2a{bottom:480.330000px;}
.y6d{bottom:481.680000px;}
.yeb{bottom:493.530000px;}
.ycc{bottom:493.980000px;}
.y29{bottom:494.880000px;}
.y6c{bottom:496.530000px;}
.yed{bottom:498.330000px;}
.y49{bottom:505.530000px;}
.y88{bottom:507.930000px;}
.ycb{bottom:508.380000px;}
.y28{bottom:509.730000px;}
.yaa{bottom:510.180000px;}
.y6b{bottom:511.230000px;}
.y10{bottom:512.280000px;}
.y48{bottom:520.530000px;}
.yca{bottom:523.080000px;}
.y27{bottom:524.580000px;}
.yea{bottom:527.430000px;}
.yf6{bottom:533.580000px;}
.ya9{bottom:536.130000px;}
.y87{bottom:537.480000px;}
.yc9{bottom:537.930000px;}
.y26{bottom:539.280000px;}
.ye9{bottom:540.330000px;}
.y6a{bottom:540.780000px;}
.y47{bottom:549.780000px;}
.y5{bottom:550.530000px;}
.y86{bottom:552.330000px;}
.yc8{bottom:553.080000px;}
.yc{bottom:563.130000px;}
.y85{bottom:567.030000px;}
.yc7{bottom:567.780000px;}
.y25{bottom:568.830000px;}
.ye8{bottom:569.880000px;}
.y69{bottom:570.330000px;}
.yf8{bottom:570.930000px;}
.ya8{bottom:576.330000px;}
.yc6{bottom:582.480000px;}
.y68{bottom:585.330000px;}
.ye7{bottom:588.330000px;}
.ya7{bottom:588.930000px;}
.y46{bottom:590.730000px;}
.yf5{bottom:595.080000px;}
.y84{bottom:596.880000px;}
.yc5{bottom:597.930000px;}
.y24{bottom:599.430000px;}
.y67{bottom:600.180000px;}
.yf4{bottom:601.980000px;}
.ya6{bottom:604.080000px;}
.yf{bottom:605.580000px;}
.y4{bottom:606.630000px;}
.yc4{bottom:612.330000px;}
.y23{bottom:613.830000px;}
.y66{bottom:614.580000px;}
.ye6{bottom:616.380000px;}
.y45{bottom:617.430000px;}
.ya5{bottom:618.930000px;}
.y83{bottom:626.430000px;}
.yc3{bottom:627.180000px;}
.y22{bottom:628.980000px;}
.y65{bottom:629.280000px;}
.ye5{bottom:629.730000px;}
.ya4{bottom:633.330000px;}
.y44{bottom:641.130000px;}
.yc2{bottom:641.580000px;}
.y21{bottom:643.380000px;}
.y64{bottom:644.130000px;}
.ye4{bottom:644.430000px;}
.y3{bottom:646.530000px;}
.yf7{bottom:651.630000px;}
.y82{bottom:655.980000px;}
.yc1{bottom:656.730000px;}
.y20{bottom:658.530000px;}
.y63{bottom:659.130000px;}
.ye3{bottom:660.330000px;}
.ya3{bottom:663.180000px;}
.yc0{bottom:671.430000px;}
.y43{bottom:672.180000px;}
.y1f{bottom:673.230000px;}
.y62{bottom:673.530000px;}
.ye2{bottom:674.280000px;}
.y2{bottom:679.680000px;}
.y81{bottom:685.530000px;}
.y42{bottom:686.580000px;}
.y1e{bottom:688.380000px;}
.y61{bottom:688.680000px;}
.ya2{bottom:692.730000px;}
.ybf{bottom:700.980000px;}
.y41{bottom:701.280000px;}
.ye1{bottom:704.130000px;}
.ya1{bottom:707.430000px;}
.ybe{bottom:715.680000px;}
.y40{bottom:716.430000px;}
.y1d{bottom:717.930000px;}
.ye0{bottom:718.530000px;}
.y80{bottom:721.530000px;}
.ya0{bottom:722.130000px;}
.ybd{bottom:730.530000px;}
.y3f{bottom:731.130000px;}
.ydf{bottom:736.230000px;}
.y7f{bottom:745.230000px;}
.y3e{bottom:746.280000px;}
.y1c{bottom:747.780000px;}
.yde{bottom:748.530000px;}
.y9f{bottom:751.680000px;}
.ybc{bottom:760.380000px;}
.y3d{bottom:761.130000px;}
.y1b{bottom:762.180000px;}
.y60{bottom:762.480000px;}
.ydd{bottom:763.230000px;}
.yf3{bottom:765.030000px;}
.y1{bottom:773.280000px;}
.ybb{bottom:783.030000px;}
.y5e{bottom:783.780000px;}
.y5f{bottom:784.530000px;}
.ydc{bottom:785.580000px;}
.y9e{bottom:788.430000px;}
.yf2{bottom:806.430000px;}
.yf1{bottom:866.880000px;}
.yf0{bottom:868.380000px;}
.y3c{bottom:875.880000px;}
.hc{height:23.542969px;}
.he{height:25.787109px;}
.h8{height:27.936035px;}
.hd{height:35.507812px;}
.h4{height:41.200195px;}
.h6{height:42.234375px;}
.ha{height:42.978516px;}
.h3{height:44.143066px;}
.h7{height:45.127441px;}
.hb{height:47.085938px;}
.h9{height:67.686035px;}
.h1{height:75.212402px;}
.hf{height:90.400195px;}
.h2{height:97.114746px;}
.h5{height:117.774902px;}
.h0{height:882.750000px;}
.w1{width:638.250000px;}
.w0{width:648.000000px;}
.x0{left:0.000000px;}
.x5d{left:24.450000px;}
.x5f{left:45.750000px;}
.x5c{left:66.600000px;}
.x39{left:87.750000px;}
.x38{left:88.950000px;}
.x3a{left:90.300000px;}
.x1f{left:91.500000px;}
.x20{left:92.550000px;}
.x28{left:93.900000px;}
.x5{left:95.400000px;}
.x2c{left:96.450000px;}
.xf{left:103.350000px;}
.x13{left:104.850000px;}
.x16{left:106.200000px;}
.x3b{left:110.850000px;}
.x37{left:111.900000px;}
.x45{left:114.150000px;}
.x44{left:115.200000px;}
.x27{left:116.250000px;}
.x2b{left:118.350000px;}
.x4a{left:121.350000px;}
.x6{left:122.850000px;}
.x30{left:124.650000px;}
.x32{left:125.700000px;}
.x12{left:127.050000px;}
.x15{left:128.550000px;}
.x43{left:129.900000px;}
.x1a{left:131.100000px;}
.x17{left:132.150000px;}
.x3e{left:133.650000px;}
.x1b{left:135.450000px;}
.x5b{left:138.900000px;}
.x2{left:140.100000px;}
.x4c{left:142.650000px;}
.x49{left:144.300000px;}
.x10{left:145.800000px;}
.x31{left:146.850000px;}
.x34{left:148.650000px;}
.x21{left:152.250000px;}
.x19{left:153.450000px;}
.x1c{left:155.250000px;}
.x42{left:157.650000px;}
.xe{left:163.050000px;}
.x51{left:176.100000px;}
.x4f{left:180.000000px;}
.x3f{left:189.750000px;}
.x4{left:195.150000px;}
.x46{left:201.150000px;}
.x60{left:207.000000px;}
.x23{left:213.450000px;}
.xc{left:219.600000px;}
.x22{left:226.050000px;}
.x50{left:233.250000px;}
.xb{left:235.350000px;}
.x35{left:245.550000px;}
.x36{left:253.800000px;}
.x26{left:257.400000px;}
.x29{left:258.450000px;}
.x2a{left:259.500000px;}
.x2d{left:260.700000px;}
.x24{left:262.800000px;}
.x40{left:264.000000px;}
.x41{left:265.350000px;}
.x11{left:273.600000px;}
.x14{left:274.650000px;}
.x3{left:277.950000px;}
.x1{left:280.350000px;}
.x2e{left:288.000000px;}
.x33{left:290.850000px;}
.x1d{left:294.150000px;}
.x18{left:295.950000px;}
.x3d{left:298.350000px;}
.x4b{left:301.050000px;}
.x47{left:302.400000px;}
.x48{left:317.850000px;}
.xd{left:319.350000px;}
.x5e{left:320.400000px;}
.x2f{left:322.650000px;}
.x3c{left:326.850000px;}
.x61{left:328.950000px;}
.x25{left:359.250000px;}
.x52{left:365.100000px;}
.x53{left:381.900000px;}
.x9{left:392.850000px;}
.x54{left:394.500000px;}
.x8{left:398.550000px;}
.x1e{left:406.050000px;}
.x4e{left:409.650000px;}
.x55{left:412.500000px;}
.x56{left:421.500000px;}
.x4d{left:423.450000px;}
.x57{left:444.600000px;}
.x58{left:453.900000px;}
.x59{left:479.250000px;}
.x7{left:495.000000px;}
.xa{left:516.300000px;}
.x62{left:528.750000px;}
.x5a{left:624.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:43.733333pt;}
.ls9{letter-spacing:-5.333333pt;}
.ls4{letter-spacing:-2.666667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.666667pt;}
.ls7{letter-spacing:7.637333pt;}
.ls5{letter-spacing:7.829333pt;}
.ls8{letter-spacing:8.000000pt;}
.ls1{letter-spacing:10.666667pt;}
.ls6{letter-spacing:20.437333pt;}
.ls0{letter-spacing:110.431289pt;}
.lsa{letter-spacing:1067.200000pt;}
.ws0{word-spacing:-38.666667pt;}
.ws9{word-spacing:-37.896000pt;}
.ws18{word-spacing:-17.066667pt;}
.ws1{word-spacing:-11.120000pt;}
.ws16{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.378667pt;}
.ws3{word-spacing:-10.322667pt;}
.ws11{word-spacing:-9.312000pt;}
.ws13{word-spacing:-8.302933pt;}
.ws12{word-spacing:-5.930667pt;}
.ws15{word-spacing:-5.893333pt;}
.ws19{word-spacing:-5.333333pt;}
.wsf{word-spacing:-4.437333pt;}
.wse{word-spacing:-3.640000pt;}
.wsa{word-spacing:-2.406400pt;}
.wsb{word-spacing:-2.129067pt;}
.wsd{word-spacing:-1.880000pt;}
.wsc{word-spacing:-1.510400pt;}
.ws2{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:8.325333pt;}
.ws10{word-spacing:10.226667pt;}
.ws14{word-spacing:11.856000pt;}
.ws17{word-spacing:12.245333pt;}
.ws8{word-spacing:18.386667pt;}
._3e{margin-left:-16.896000pt;}
._1c{margin-left:-11.448000pt;}
._2{margin-left:-9.706667pt;}
._31{margin-left:-8.560000pt;}
._1{margin-left:-6.440000pt;}
._0{margin-left:-5.040000pt;}
._1f{margin-left:-4.146667pt;}
._1d{margin-left:-2.968000pt;}
._34{margin-left:-1.944000pt;}
._1b{margin-left:-0.989333pt;}
._11{width:1.080000pt;}
._1e{width:1.978667pt;}
._37{width:2.879467pt;}
._28{width:3.776000pt;}
._36{width:4.877333pt;}
._1a{width:5.898667pt;}
._13{width:7.242667pt;}
._39{width:8.158933pt;}
._24{width:9.088000pt;}
._35{width:10.082667pt;}
._17{width:11.498667pt;}
._15{width:12.842667pt;}
._12{width:14.224000pt;}
._18{width:15.157333pt;}
._21{width:16.288000pt;}
._23{width:17.834667pt;}
._3c{width:18.750933pt;}
._16{width:19.712000pt;}
._22{width:21.408000pt;}
._3{width:23.144000pt;}
._25{width:24.304000pt;}
._3a{width:25.540800pt;}
._19{width:26.469333pt;}
._38{width:27.553067pt;}
._27{width:28.496000pt;}
._20{width:29.525333pt;}
._30{width:30.426667pt;}
._2f{width:31.402667pt;}
._5{width:32.384000pt;}
._4{width:33.440000pt;}
._f{width:34.936000pt;}
._6{width:40.153778pt;}
._2a{width:41.096000pt;}
._7{width:43.120000pt;}
._3b{width:45.703467pt;}
._c{width:47.520000pt;}
._29{width:49.456000pt;}
._33{width:50.840000pt;}
._26{width:54.170667pt;}
._2d{width:55.968000pt;}
._d{width:57.288000pt;}
._e{width:62.656000pt;}
._8{width:69.608000pt;}
._b{width:70.576000pt;}
._a{width:71.808000pt;}
._2e{width:75.064000pt;}
._2c{width:80.872000pt;}
._10{width:88.440000pt;}
._9{width:119.680000pt;}
._2b{width:124.661333pt;}
._3f{width:134.224000pt;}
._32{width:135.634667pt;}
._14{width:170.128000pt;}
._40{width:183.250667pt;}
._3d{width:654.060267pt;}
.fsd{font-size:21.333333pt;}
.fs8{font-size:25.600000pt;}
.fse{font-size:29.866667pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fsb{font-size:61.333333pt;}
.fs2{font-size:70.400000pt;}
.fs1{font-size:88.000000pt;}
.fs0{font-size:93.333333pt;}
.fs5{font-size:141.333333pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:0.293333pt;}
.yf9{bottom:25.626667pt;}
.y8{bottom:34.293333pt;}
.yb{bottom:35.893333pt;}
.yfa{bottom:82.960000pt;}
.y5d{bottom:107.493333pt;}
.y9d{bottom:108.160000pt;}
.ye{bottom:108.560000pt;}
.ydb{bottom:108.826667pt;}
.y3b{bottom:110.160000pt;}
.y7{bottom:111.093333pt;}
.ya{bottom:112.026667pt;}
.yba{bottom:117.760000pt;}
.y5c{bottom:120.960000pt;}
.y9c{bottom:121.893333pt;}
.y3a{bottom:122.960000pt;}
.y1a{bottom:124.560000pt;}
.yb9{bottom:128.026667pt;}
.y5b{bottom:134.160000pt;}
.yda{bottom:134.693333pt;}
.y9b{bottom:135.360000pt;}
.y9{bottom:136.293333pt;}
.y6{bottom:136.960000pt;}
.y19{bottom:137.626667pt;}
.yb8{bottom:142.160000pt;}
.yd{bottom:147.226667pt;}
.yd9{bottom:148.160000pt;}
.y9a{bottom:148.560000pt;}
.y39{bottom:149.493333pt;}
.y5a{bottom:159.760000pt;}
.yd8{bottom:161.360000pt;}
.y99{bottom:161.626667pt;}
.y38{bottom:162.293333pt;}
.y18{bottom:163.893333pt;}
.y7e{bottom:167.093333pt;}
.yb7{bottom:168.026667pt;}
.y98{bottom:174.693333pt;}
.y37{bottom:175.760000pt;}
.y7d{bottom:179.493333pt;}
.y59{bottom:185.360000pt;}
.y97{bottom:187.893333pt;}
.y36{bottom:188.826667pt;}
.y17{bottom:189.760000pt;}
.y7c{bottom:192.960000pt;}
.y58{bottom:199.760000pt;}
.yd7{bottom:200.693333pt;}
.y96{bottom:201.360000pt;}
.y16{bottom:202.960000pt;}
.y7b{bottom:206.160000pt;}
.y57{bottom:212.693333pt;}
.yd6{bottom:214.160000pt;}
.y35{bottom:215.093333pt;}
.y15{bottom:216.026667pt;}
.y7a{bottom:218.960000pt;}
.yb6{bottom:219.893333pt;}
.y56{bottom:225.893333pt;}
.y95{bottom:227.226667pt;}
.y14{bottom:229.093333pt;}
.y79{bottom:232.026667pt;}
.y55{bottom:239.093333pt;}
.yd5{bottom:240.693333pt;}
.y34{bottom:241.893333pt;}
.y13{bottom:242.293333pt;}
.y78{bottom:244.826667pt;}
.y54{bottom:252.160000pt;}
.y94{bottom:253.093333pt;}
.yd4{bottom:253.493333pt;}
.y33{bottom:254.693333pt;}
.y93{bottom:266.960000pt;}
.y12{bottom:267.893333pt;}
.yb5{bottom:268.826667pt;}
.y77{bottom:271.093333pt;}
.y53{bottom:278.160000pt;}
.yd3{bottom:279.760000pt;}
.y92{bottom:280.293333pt;}
.y32{bottom:281.360000pt;}
.y76{bottom:284.560000pt;}
.y52{bottom:290.560000pt;}
.yb4{bottom:293.093333pt;}
.y91{bottom:293.493333pt;}
.y75{bottom:297.360000pt;}
.y51{bottom:304.693333pt;}
.y90{bottom:306.693333pt;}
.yb3{bottom:308.560000pt;}
.y31{bottom:309.493333pt;}
.y74{bottom:310.293333pt;}
.y11{bottom:318.160000pt;}
.yb2{bottom:319.493333pt;}
.y8f{bottom:319.760000pt;}
.y30{bottom:320.960000pt;}
.y73{bottom:323.493333pt;}
.y50{bottom:331.226667pt;}
.yd2{bottom:332.160000pt;}
.yb1{bottom:332.560000pt;}
.y8e{bottom:332.826667pt;}
.y2f{bottom:334.160000pt;}
.y72{bottom:336.693333pt;}
.y4f{bottom:344.293333pt;}
.yb0{bottom:345.626667pt;}
.y2e{bottom:347.493333pt;}
.y4e{bottom:357.493333pt;}
.y8d{bottom:359.093333pt;}
.yaf{bottom:359.360000pt;}
.y2d{bottom:360.293333pt;}
.y71{bottom:362.560000pt;}
.y4d{bottom:370.693333pt;}
.yae{bottom:371.493333pt;}
.yd1{bottom:372.826667pt;}
.y2c{bottom:373.760000pt;}
.y4c{bottom:383.760000pt;}
.yad{bottom:384.693333pt;}
.y8c{bottom:385.360000pt;}
.yd0{bottom:385.893333pt;}
.y70{bottom:388.826667pt;}
.y4b{bottom:396.826667pt;}
.yac{bottom:398.160000pt;}
.y8b{bottom:398.693333pt;}
.ycf{bottom:399.093333pt;}
.y2b{bottom:400.026667pt;}
.y6f{bottom:402.026667pt;}
.yef{bottom:407.093333pt;}
.y8a{bottom:411.893333pt;}
.yce{bottom:412.560000pt;}
.y6e{bottom:415.093333pt;}
.yec{bottom:419.226667pt;}
.y4a{bottom:422.693333pt;}
.yee{bottom:424.026667pt;}
.yab{bottom:424.293333pt;}
.y89{bottom:425.360000pt;}
.ycd{bottom:425.626667pt;}
.y2a{bottom:426.960000pt;}
.y6d{bottom:428.160000pt;}
.yeb{bottom:438.693333pt;}
.ycc{bottom:439.093333pt;}
.y29{bottom:439.893333pt;}
.y6c{bottom:441.360000pt;}
.yed{bottom:442.960000pt;}
.y49{bottom:449.360000pt;}
.y88{bottom:451.493333pt;}
.ycb{bottom:451.893333pt;}
.y28{bottom:453.093333pt;}
.yaa{bottom:453.493333pt;}
.y6b{bottom:454.426667pt;}
.y10{bottom:455.360000pt;}
.y48{bottom:462.693333pt;}
.yca{bottom:464.960000pt;}
.y27{bottom:466.293333pt;}
.yea{bottom:468.826667pt;}
.yf6{bottom:474.293333pt;}
.ya9{bottom:476.560000pt;}
.y87{bottom:477.760000pt;}
.yc9{bottom:478.160000pt;}
.y26{bottom:479.360000pt;}
.ye9{bottom:480.293333pt;}
.y6a{bottom:480.693333pt;}
.y47{bottom:488.693333pt;}
.y5{bottom:489.360000pt;}
.y86{bottom:490.960000pt;}
.yc8{bottom:491.626667pt;}
.yc{bottom:500.560000pt;}
.y85{bottom:504.026667pt;}
.yc7{bottom:504.693333pt;}
.y25{bottom:505.626667pt;}
.ye8{bottom:506.560000pt;}
.y69{bottom:506.960000pt;}
.yf8{bottom:507.493333pt;}
.ya8{bottom:512.293333pt;}
.yc6{bottom:517.760000pt;}
.y68{bottom:520.293333pt;}
.ye7{bottom:522.960000pt;}
.ya7{bottom:523.493333pt;}
.y46{bottom:525.093333pt;}
.yf5{bottom:528.960000pt;}
.y84{bottom:530.560000pt;}
.yc5{bottom:531.493333pt;}
.y24{bottom:532.826667pt;}
.y67{bottom:533.493333pt;}
.yf4{bottom:535.093333pt;}
.ya6{bottom:536.960000pt;}
.yf{bottom:538.293333pt;}
.y4{bottom:539.226667pt;}
.yc4{bottom:544.293333pt;}
.y23{bottom:545.626667pt;}
.y66{bottom:546.293333pt;}
.ye6{bottom:547.893333pt;}
.y45{bottom:548.826667pt;}
.ya5{bottom:550.160000pt;}
.y83{bottom:556.826667pt;}
.yc3{bottom:557.493333pt;}
.y22{bottom:559.093333pt;}
.y65{bottom:559.360000pt;}
.ye5{bottom:559.760000pt;}
.ya4{bottom:562.960000pt;}
.y44{bottom:569.893333pt;}
.yc2{bottom:570.293333pt;}
.y21{bottom:571.893333pt;}
.y64{bottom:572.560000pt;}
.ye4{bottom:572.826667pt;}
.y3{bottom:574.693333pt;}
.yf7{bottom:579.226667pt;}
.y82{bottom:583.093333pt;}
.yc1{bottom:583.760000pt;}
.y20{bottom:585.360000pt;}
.y63{bottom:585.893333pt;}
.ye3{bottom:586.960000pt;}
.ya3{bottom:589.493333pt;}
.yc0{bottom:596.826667pt;}
.y43{bottom:597.493333pt;}
.y1f{bottom:598.426667pt;}
.y62{bottom:598.693333pt;}
.ye2{bottom:599.360000pt;}
.y2{bottom:604.160000pt;}
.y81{bottom:609.360000pt;}
.y42{bottom:610.293333pt;}
.y1e{bottom:611.893333pt;}
.y61{bottom:612.160000pt;}
.ya2{bottom:615.760000pt;}
.ybf{bottom:623.093333pt;}
.y41{bottom:623.360000pt;}
.ye1{bottom:625.893333pt;}
.ya1{bottom:628.826667pt;}
.ybe{bottom:636.160000pt;}
.y40{bottom:636.826667pt;}
.y1d{bottom:638.160000pt;}
.ye0{bottom:638.693333pt;}
.y80{bottom:641.360000pt;}
.ya0{bottom:641.893333pt;}
.ybd{bottom:649.360000pt;}
.y3f{bottom:649.893333pt;}
.ydf{bottom:654.426667pt;}
.y7f{bottom:662.426667pt;}
.y3e{bottom:663.360000pt;}
.y1c{bottom:664.693333pt;}
.yde{bottom:665.360000pt;}
.y9f{bottom:668.160000pt;}
.ybc{bottom:675.893333pt;}
.y3d{bottom:676.560000pt;}
.y1b{bottom:677.493333pt;}
.y60{bottom:677.760000pt;}
.ydd{bottom:678.426667pt;}
.yf3{bottom:680.026667pt;}
.y1{bottom:687.360000pt;}
.ybb{bottom:696.026667pt;}
.y5e{bottom:696.693333pt;}
.y5f{bottom:697.360000pt;}
.ydc{bottom:698.293333pt;}
.y9e{bottom:700.826667pt;}
.yf2{bottom:716.826667pt;}
.yf1{bottom:770.560000pt;}
.yf0{bottom:771.893333pt;}
.y3c{bottom:778.560000pt;}
.hc{height:20.927083pt;}
.he{height:22.921875pt;}
.h8{height:24.832031pt;}
.hd{height:31.562500pt;}
.h4{height:36.622396pt;}
.h6{height:37.541667pt;}
.ha{height:38.203125pt;}
.h3{height:39.238281pt;}
.h7{height:40.113281pt;}
.hb{height:41.854167pt;}
.h9{height:60.165365pt;}
.h1{height:66.855469pt;}
.hf{height:80.355729pt;}
.h2{height:86.324219pt;}
.h5{height:104.688802pt;}
.h0{height:784.666667pt;}
.w1{width:567.333333pt;}
.w0{width:576.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:21.733333pt;}
.x5f{left:40.666667pt;}
.x5c{left:59.200000pt;}
.x39{left:78.000000pt;}
.x38{left:79.066667pt;}
.x3a{left:80.266667pt;}
.x1f{left:81.333333pt;}
.x20{left:82.266667pt;}
.x28{left:83.466667pt;}
.x5{left:84.800000pt;}
.x2c{left:85.733333pt;}
.xf{left:91.866667pt;}
.x13{left:93.200000pt;}
.x16{left:94.400000pt;}
.x3b{left:98.533333pt;}
.x37{left:99.466667pt;}
.x45{left:101.466667pt;}
.x44{left:102.400000pt;}
.x27{left:103.333333pt;}
.x2b{left:105.200000pt;}
.x4a{left:107.866667pt;}
.x6{left:109.200000pt;}
.x30{left:110.800000pt;}
.x32{left:111.733333pt;}
.x12{left:112.933333pt;}
.x15{left:114.266667pt;}
.x43{left:115.466667pt;}
.x1a{left:116.533333pt;}
.x17{left:117.466667pt;}
.x3e{left:118.800000pt;}
.x1b{left:120.400000pt;}
.x5b{left:123.466667pt;}
.x2{left:124.533333pt;}
.x4c{left:126.800000pt;}
.x49{left:128.266667pt;}
.x10{left:129.600000pt;}
.x31{left:130.533333pt;}
.x34{left:132.133333pt;}
.x21{left:135.333333pt;}
.x19{left:136.400000pt;}
.x1c{left:138.000000pt;}
.x42{left:140.133333pt;}
.xe{left:144.933333pt;}
.x51{left:156.533333pt;}
.x4f{left:160.000000pt;}
.x3f{left:168.666667pt;}
.x4{left:173.466667pt;}
.x46{left:178.800000pt;}
.x60{left:184.000000pt;}
.x23{left:189.733333pt;}
.xc{left:195.200000pt;}
.x22{left:200.933333pt;}
.x50{left:207.333333pt;}
.xb{left:209.200000pt;}
.x35{left:218.266667pt;}
.x36{left:225.600000pt;}
.x26{left:228.800000pt;}
.x29{left:229.733333pt;}
.x2a{left:230.666667pt;}
.x2d{left:231.733333pt;}
.x24{left:233.600000pt;}
.x40{left:234.666667pt;}
.x41{left:235.866667pt;}
.x11{left:243.200000pt;}
.x14{left:244.133333pt;}
.x3{left:247.066667pt;}
.x1{left:249.200000pt;}
.x2e{left:256.000000pt;}
.x33{left:258.533333pt;}
.x1d{left:261.466667pt;}
.x18{left:263.066667pt;}
.x3d{left:265.200000pt;}
.x4b{left:267.600000pt;}
.x47{left:268.800000pt;}
.x48{left:282.533333pt;}
.xd{left:283.866667pt;}
.x5e{left:284.800000pt;}
.x2f{left:286.800000pt;}
.x3c{left:290.533333pt;}
.x61{left:292.400000pt;}
.x25{left:319.333333pt;}
.x52{left:324.533333pt;}
.x53{left:339.466667pt;}
.x9{left:349.200000pt;}
.x54{left:350.666667pt;}
.x8{left:354.266667pt;}
.x1e{left:360.933333pt;}
.x4e{left:364.133333pt;}
.x55{left:366.666667pt;}
.x56{left:374.666667pt;}
.x4d{left:376.400000pt;}
.x57{left:395.200000pt;}
.x58{left:403.466667pt;}
.x59{left:426.000000pt;}
.x7{left:440.000000pt;}
.xa{left:458.933333pt;}
.x62{left:470.000000pt;}
.x5a{left:554.800000pt;}
}




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