
    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_cb784fd67765ff0a043057ed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b4498e3469b3149e10e1890d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b541f86ac6bae244cac39014.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a5a1c2460501b9bf5793e1c3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dbf5177cb8c9064f17102e2f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_32e145f06d188b7647b14e03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m0{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.148604px;}
.lsf{letter-spacing:0.151282px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.239040px;}
.ls9{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.516695px;}
.lsb{letter-spacing:0.518268px;}
.lse{letter-spacing:0.610801px;}
.ls10{letter-spacing:0.612120px;}
.ls1{letter-spacing:0.719214px;}
.lsa{letter-spacing:0.769854px;}
.ls7{letter-spacing:0.771567px;}
.ls3{letter-spacing:12.238933px;}
.ls2{letter-spacing:15.118821px;}
.ls0{letter-spacing:28.796546px;}
.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;}
}
.ws4{word-spacing:-36.000000px;}
.wsc{word-spacing:-15.298560px;}
.ws7{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:-7.560000px;}
.ws1b{word-spacing:-3.662235px;}
.ws14{word-spacing:-3.661635px;}
.ws19{word-spacing:-3.658838px;}
.wse{word-spacing:-2.483519px;}
.ws9{word-spacing:-2.480879px;}
.ws20{word-spacing:-2.472223px;}
.ws23{word-spacing:-2.469472px;}
.ws22{word-spacing:-2.452916px;}
.ws21{word-spacing:-2.452316px;}
.ws1f{word-spacing:-2.449378px;}
.ws15{word-spacing:-0.830054px;}
.ws1a{word-spacing:-0.821827px;}
.wsf{word-spacing:-0.663894px;}
.wsa{word-spacing:-0.660627px;}
.ws17{word-spacing:-0.086150px;}
.ws1d{word-spacing:-0.075115px;}
.ws0{word-spacing:-0.059760px;}
.ws12{word-spacing:-0.042773px;}
.ws10{word-spacing:-0.036147px;}
.ws24{word-spacing:-0.004294px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:0.879964px;}
.ws1c{word-spacing:0.893582px;}
.ws13{word-spacing:2.871576px;}
.wsb{word-spacing:3.346028px;}
.ws18{word-spacing:9.798344px;}
.wsd{word-spacing:10.851569px;}
.ws2{word-spacing:11.178493px;}
.ws11{word-spacing:11.312706px;}
.ws1e{word-spacing:29.757008px;}
._25{margin-left:-16.704000px;}
._26{margin-left:-2.121452px;}
._1{margin-left:-1.087809px;}
._2{width:1.234191px;}
._f{width:2.484000px;}
._9{width:4.042191px;}
._4{width:5.299809px;}
._3{width:6.480000px;}
._d{width:7.830000px;}
._e{width:8.987428px;}
._6{width:10.044000px;}
._7{width:11.124000px;}
._8{width:12.211809px;}
._1c{width:13.365471px;}
._c{width:14.560006px;}
._0{width:15.883809px;}
._10{width:17.650191px;}
._16{width:19.421779px;}
._5{width:21.024506px;}
._1b{width:22.526964px;}
._1a{width:23.759059px;}
._b{width:25.326000px;}
._a{width:26.568000px;}
._18{width:27.719280px;}
._27{width:28.923840px;}
._14{width:29.970000px;}
._11{width:31.582532px;}
._1e{width:32.840849px;}
._13{width:33.858000px;}
._12{width:35.046000px;}
._19{width:36.546259px;}
._20{width:38.339059px;}
._30{width:39.441600px;}
._2b{width:41.003544px;}
._17{width:42.023339px;}
._24{width:43.804080px;}
._2f{width:45.139815px;}
._1d{width:46.215366px;}
._15{width:47.487575px;}
._1f{width:48.525120px;}
._31{width:49.583631px;}
._23{width:50.614825px;}
._21{width:51.871680px;}
._2d{width:52.931034px;}
._28{width:54.740160px;}
._2a{width:56.114640px;}
._32{width:60.297840px;}
._22{width:67.189141px;}
._2e{width:68.229568px;}
._29{width:69.642136px;}
._34{width:71.901564px;}
._2c{width:77.900179px;}
._35{width:83.841120px;}
._36{width:85.355501px;}
._33{width:137.146320px;}
._37{width:138.350659px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y61{bottom:48.043500px;}
.y60{bottom:67.042500px;}
.y11e{bottom:91.977150px;}
.y51{bottom:94.500000px;}
.y8d{bottom:97.197150px;}
.ya8{bottom:101.517150px;}
.y28{bottom:105.120000px;}
.y11d{bottom:109.977150px;}
.y50{bottom:112.680000px;}
.y8c{bottom:115.377150px;}
.ya7{bottom:119.517150px;}
.y27{bottom:123.300000px;}
.y11c{bottom:128.157150px;}
.y4f{bottom:130.860000px;}
.y8b{bottom:134.997150px;}
.ya6{bottom:137.517150px;}
.yfc{bottom:140.937150px;}
.y26{bottom:141.300000px;}
.yd1{bottom:144.537150px;}
.y11b{bottom:146.337150px;}
.y4e{bottom:148.860000px;}
.y8a{bottom:154.977150px;}
.ya5{bottom:155.517150px;}
.yfb{bottom:158.037150px;}
.y25{bottom:159.480000px;}
.yd0{bottom:162.537150px;}
.y11a{bottom:164.337150px;}
.y4d{bottom:167.040000px;}
.ya4{bottom:173.517150px;}
.y89{bottom:174.777150px;}
.yfa{bottom:175.317150px;}
.y24{bottom:177.480000px;}
.ycf{bottom:180.717150px;}
.y119{bottom:182.517150px;}
.y4c{bottom:185.040000px;}
.ya3{bottom:191.517150px;}
.yf9{bottom:192.597150px;}
.y88{bottom:194.577150px;}
.y23{bottom:195.660000px;}
.yce{bottom:198.897150px;}
.y118{bottom:200.517150px;}
.y4b{bottom:203.220000px;}
.ya2{bottom:209.517150px;}
.yf8{bottom:209.877150px;}
.y22{bottom:213.840000px;}
.y87{bottom:214.377150px;}
.ycd{bottom:216.897150px;}
.y117{bottom:218.697150px;}
.y4a{bottom:221.400000px;}
.yf7{bottom:227.157150px;}
.ya1{bottom:227.517150px;}
.y21{bottom:231.840000px;}
.y86{bottom:234.177150px;}
.ycc{bottom:235.077150px;}
.y116{bottom:236.877150px;}
.y49{bottom:239.400000px;}
.yf6{bottom:244.437150px;}
.ya0{bottom:245.517150px;}
.y20{bottom:250.020000px;}
.ycb{bottom:253.077150px;}
.y85{bottom:253.977150px;}
.y115{bottom:254.877150px;}
.y48{bottom:257.580000px;}
.yf5{bottom:261.537150px;}
.y9f{bottom:263.517150px;}
.y1f{bottom:268.200000px;}
.yca{bottom:271.257150px;}
.y84{bottom:271.437150px;}
.y114{bottom:273.057150px;}
.y47{bottom:275.760000px;}
.yf4{bottom:278.817150px;}
.y9e{bottom:281.517150px;}
.y142{bottom:283.137150px;}
.y1e{bottom:286.200000px;}
.y83{bottom:288.717150px;}
.yc9{bottom:289.437150px;}
.y113{bottom:291.237150px;}
.y46{bottom:293.760000px;}
.yf3{bottom:296.097150px;}
.y141{bottom:296.817150px;}
.y9d{bottom:299.517150px;}
.y1d{bottom:304.380000px;}
.y112{bottom:309.237150px;}
.y140{bottom:310.677150px;}
.y45{bottom:311.940000px;}
.yf2{bottom:313.377150px;}
.y9c{bottom:317.517150px;}
.y1c{bottom:322.380000px;}
.y82{bottom:323.637150px;}
.y13f{bottom:324.537150px;}
.yc8{bottom:325.077150px;}
.y111{bottom:327.417150px;}
.y44{bottom:329.940000px;}
.yf1{bottom:330.657150px;}
.y9b{bottom:335.517150px;}
.y13e{bottom:338.217150px;}
.y1b{bottom:340.560000px;}
.y110{bottom:345.417150px;}
.yf0{bottom:347.757150px;}
.y43{bottom:348.120000px;}
.y13d{bottom:352.077150px;}
.y9a{bottom:353.517150px;}
.y1a{bottom:358.740000px;}
.y5b{bottom:359.100000px;}
.y10f{bottom:363.597150px;}
.yef{bottom:365.037150px;}
.y13c{bottom:365.937150px;}
.y42{bottom:366.300000px;}
.y99{bottom:371.517150px;}
.y19{bottom:376.740000px;}
.y13b{bottom:379.617150px;}
.yee{bottom:382.317150px;}
.y41{bottom:384.300000px;}
.y10e{bottom:386.637150px;}
.y98{bottom:389.517150px;}
.y13a{bottom:393.477150px;}
.yed{bottom:399.597150px;}
.y18{bottom:399.780000px;}
.y40{bottom:402.480000px;}
.y139{bottom:407.337150px;}
.y97{bottom:407.517150px;}
.yec{bottom:416.877150px;}
.y3f{bottom:420.480000px;}
.y138{bottom:421.017150px;}
.y10d{bottom:422.097150px;}
.yeb{bottom:434.157150px;}
.y137{bottom:434.877150px;}
.y17{bottom:434.880000px;}
.y3e{bottom:438.660000px;}
.y96{bottom:438.837150px;}
.y10c{bottom:439.377150px;}
.y136{bottom:448.737150px;}
.y16{bottom:450.360000px;}
.yea{bottom:451.257150px;}
.y10b{bottom:456.657150px;}
.y3d{bottom:456.840000px;}
.y135{bottom:462.417150px;}
.y15{bottom:466.020000px;}
.ye9{bottom:468.537150px;}
.y10a{bottom:473.757150px;}
.y3c{bottom:474.840000px;}
.y134{bottom:476.277150px;}
.ye8{bottom:485.817150px;}
.y133{bottom:490.137150px;}
.y109{bottom:491.037150px;}
.y3b{bottom:493.020000px;}
.y14{bottom:500.400000px;}
.ye7{bottom:503.097150px;}
.y132{bottom:503.817150px;}
.y108{bottom:508.317150px;}
.y3a{bottom:511.200000px;}
.y13{bottom:515.880000px;}
.y131{bottom:517.677150px;}
.ye6{bottom:520.377150px;}
.y107{bottom:525.597150px;}
.y81{bottom:526.677150px;}
.yc7{bottom:526.857150px;}
.y39{bottom:529.200000px;}
.y12{bottom:531.360000px;}
.y130{bottom:531.537150px;}
.ye5{bottom:537.657150px;}
.y106{bottom:542.877150px;}
.y80{bottom:544.857150px;}
.y12f{bottom:545.217150px;}
.y11{bottom:547.020000px;}
.y38{bottom:547.380000px;}
.ye4{bottom:554.757150px;}
.y12e{bottom:559.077150px;}
.y105{bottom:560.157150px;}
.y10{bottom:562.500000px;}
.yc6{bottom:562.857150px;}
.y7f{bottom:563.037150px;}
.y37{bottom:565.380000px;}
.ye3{bottom:572.037150px;}
.y12d{bottom:572.757150px;}
.y104{bottom:577.257150px;}
.yf{bottom:577.980000px;}
.yc5{bottom:580.857150px;}
.y7e{bottom:581.037150px;}
.y36{bottom:583.560000px;}
.y12c{bottom:586.617150px;}
.ye2{bottom:589.317150px;}
.ye{bottom:593.460000px;}
.y103{bottom:594.537150px;}
.yc4{bottom:598.857150px;}
.y7d{bottom:599.217150px;}
.y12b{bottom:600.477150px;}
.y35{bottom:601.740000px;}
.ye1{bottom:606.597150px;}
.yd{bottom:608.940000px;}
.y102{bottom:611.817150px;}
.y12a{bottom:614.157150px;}
.yc3{bottom:616.857150px;}
.y7c{bottom:617.217150px;}
.y34{bottom:619.740000px;}
.ye0{bottom:623.877150px;}
.yc{bottom:624.600000px;}
.y129{bottom:628.017150px;}
.y101{bottom:629.097150px;}
.yc2{bottom:634.857150px;}
.y7b{bottom:635.397150px;}
.y33{bottom:637.920000px;}
.yb{bottom:640.080000px;}
.ydf{bottom:640.977150px;}
.y128{bottom:641.877150px;}
.y100{bottom:646.377150px;}
.yc1{bottom:652.857150px;}
.y7a{bottom:653.577150px;}
.y127{bottom:655.557150px;}
.ya{bottom:655.560000px;}
.y32{bottom:655.920000px;}
.yff{bottom:663.657150px;}
.yde{bottom:664.197150px;}
.y126{bottom:669.417150px;}
.yc0{bottom:670.857150px;}
.y9{bottom:671.040000px;}
.y79{bottom:671.577150px;}
.y31{bottom:674.100000px;}
.y125{bottom:683.277150px;}
.y8{bottom:686.700000px;}
.ybf{bottom:688.857150px;}
.y78{bottom:689.757150px;}
.y30{bottom:692.280000px;}
.yfe{bottom:698.397150px;}
.ydd{bottom:699.477150px;}
.y7{bottom:702.180000px;}
.y124{bottom:703.617150px;}
.ybe{bottom:706.857150px;}
.y77{bottom:707.757150px;}
.y2f{bottom:710.280000px;}
.yfd{bottom:714.597150px;}
.y95{bottom:716.397150px;}
.ydc{bottom:716.757150px;}
.y6{bottom:717.660000px;}
.ybd{bottom:724.857150px;}
.y2e{bottom:728.460000px;}
.y5{bottom:733.140000px;}
.y76{bottom:733.677150px;}
.ydb{bottom:734.037150px;}
.y94{bottom:734.577150px;}
.y123{bottom:739.077150px;}
.ybc{bottom:742.857150px;}
.y2d{bottom:746.640000px;}
.y4{bottom:748.800000px;}
.yda{bottom:751.317150px;}
.y93{bottom:752.757150px;}
.y122{bottom:756.357150px;}
.y75{bottom:759.597150px;}
.ybb{bottom:760.857150px;}
.y3{bottom:764.280000px;}
.y2c{bottom:764.640000px;}
.yd9{bottom:768.597150px;}
.y92{bottom:770.757150px;}
.y121{bottom:773.457150px;}
.yba{bottom:778.857150px;}
.y2{bottom:779.760000px;}
.y2b{bottom:782.820000px;}
.yd8{bottom:785.877150px;}
.y91{bottom:790.377150px;}
.y120{bottom:790.737150px;}
.y1{bottom:795.240000px;}
.y74{bottom:795.777150px;}
.yb9{bottom:796.857150px;}
.y2a{bottom:800.820000px;}
.yd7{bottom:802.977150px;}
.y90{bottom:810.357150px;}
.y11f{bottom:813.777150px;}
.y73{bottom:813.957150px;}
.yb8{bottom:814.857150px;}
.y29{bottom:819.000000px;}
.yd6{bottom:820.257150px;}
.y8f{bottom:830.157150px;}
.y72{bottom:831.957150px;}
.yb7{bottom:832.857150px;}
.yd5{bottom:837.537150px;}
.y8e{bottom:849.957150px;}
.y71{bottom:850.137150px;}
.yb6{bottom:850.857150px;}
.yd4{bottom:854.817150px;}
.y70{bottom:868.317150px;}
.yb5{bottom:868.857150px;}
.yd3{bottom:872.097150px;}
.y5a{bottom:877.140000px;}
.y6f{bottom:886.317150px;}
.yb4{bottom:886.857150px;}
.y59{bottom:896.220000px;}
.yd2{bottom:903.417150px;}
.y6e{bottom:904.497150px;}
.y58{bottom:904.680000px;}
.yb3{bottom:904.857150px;}
.y6d{bottom:922.497150px;}
.yb2{bottom:922.857150px;}
.y57{bottom:923.760000px;}
.y56{bottom:937.620000px;}
.y6c{bottom:940.677150px;}
.yb1{bottom:940.857150px;}
.y55{bottom:951.300000px;}
.y6b{bottom:958.857150px;}
.y54{bottom:960.300000px;}
.y6a{bottom:976.857150px;}
.yb0{bottom:994.857150px;}
.y69{bottom:995.037150px;}
.yaf{bottom:1012.857150px;}
.y68{bottom:1013.217150px;}
.yae{bottom:1030.857150px;}
.y67{bottom:1031.217150px;}
.y53{bottom:1038.960000px;}
.yad{bottom:1048.857150px;}
.y66{bottom:1049.397150px;}
.yac{bottom:1066.857150px;}
.y65{bottom:1067.397150px;}
.y52{bottom:1080.360000px;}
.yab{bottom:1084.857150px;}
.y64{bottom:1085.577150px;}
.yaa{bottom:1102.857150px;}
.y63{bottom:1103.757150px;}
.ya9{bottom:1120.857150px;}
.y62{bottom:1121.757150px;}
.y5f{bottom:1144.678500px;}
.y5e{bottom:1162.318500px;}
.y5d{bottom:1179.958500px;}
.y5c{bottom:1197.598500px;}
.h7{height:29.678906px;}
.h8{height:47.344922px;}
.h3{height:52.998047px;}
.hb{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:60.226875px;}
.h6{height:66.543750px;}
.h5{height:141.328125px;}
.h9{height:164.647266px;}
.ha{height:1262.877000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:247.500000px;}
.w2{width:322.917000px;}
.w3{width:322.920000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x36{left:-560.357400px;}
.x39{left:-545.237400px;}
.x3b{left:-539.117400px;}
.x7e{left:-538.037400px;}
.x37{left:-505.817400px;}
.x63{left:-486.377400px;}
.x3a{left:-462.617400px;}
.x7f{left:-444.257400px;}
.x80{left:-438.137400px;}
.x38{left:-426.977400px;}
.x1f{left:-237.623850px;}
.x24{left:-183.083850px;}
.x67{left:-168.677400px;}
.x65{left:-167.597400px;}
.x3c{left:-162.737400px;}
.x87{left:-156.977400px;}
.x89{left:-151.937400px;}
.x75{left:-115.403850px;}
.x26{left:-104.243850px;}
.x84{left:-84.257400px;}
.x86{left:-60.677400px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x10{left:87.951000px;}
.x57{left:93.396150px;}
.x77{left:95.916150px;}
.x1{left:100.080000px;}
.x74{left:104.196150px;}
.x5{left:106.200000px;}
.x6c{left:107.283000px;}
.x4{left:115.380000px;}
.x22{left:120.036150px;}
.xa{left:129.600000px;}
.x2c{left:132.996150px;}
.x27{left:137.496150px;}
.x15{left:139.503000px;}
.xb{left:142.020000px;}
.x55{left:147.396150px;}
.x21{left:152.256150px;}
.x20{left:153.336150px;}
.x4f{left:158.943000px;}
.x56{left:170.976150px;}
.x1b{left:182.702820px;}
.x72{left:184.296150px;}
.x58{left:192.036150px;}
.x5b{left:198.336150px;}
.x6d{left:201.062820px;}
.x3{left:204.660000px;}
.x54{left:205.716150px;}
.x9{left:207.360000px;}
.x51{left:215.436150px;}
.x17{left:218.343000px;}
.x52{left:229.296150px;}
.x76{left:239.916150px;}
.x28{left:245.316150px;}
.x23{left:247.656150px;}
.x2b{left:256.296150px;}
.x59{left:258.816150px;}
.x53{left:259.896150px;}
.x73{left:262.236150px;}
.x78{left:266.016150px;}
.xf{left:269.790000px;}
.x5a{left:273.036150px;}
.xe{left:280.410000px;}
.x25{left:289.956150px;}
.x2a{left:303.276150px;}
.x29{left:307.416150px;}
.xd{left:311.550000px;}
.x1e{left:322.740000px;}
.x16{left:332.279850px;}
.x31{left:333.336150px;}
.x4a{left:335.340000px;}
.x7c{left:337.656150px;}
.x5e{left:340.356150px;}
.x34{left:341.436150px;}
.x4d{left:346.679850px;}
.x18{left:349.380000px;}
.x2f{left:350.976150px;}
.x7b{left:353.496150px;}
.x5c{left:356.196150px;}
.x1c{left:358.380000px;}
.x7d{left:362.856150px;}
.x6e{left:364.319850px;}
.x32{left:365.916150px;}
.x2d{left:367.716150px;}
.xc{left:373.500000px;}
.x8{left:375.480000px;}
.x7a{left:378.156150px;}
.x79{left:388.776150px;}
.x62{left:395.256150px;}
.x13{left:404.639850px;}
.x2e{left:405.876150px;}
.x60{left:410.556150px;}
.x4e{left:412.379850px;}
.x14{left:414.900000px;}
.x4b{left:416.519850px;}
.x19{left:424.980000px;}
.x1a{left:426.420000px;}
.x4c{left:427.500000px;}
.x5f{left:429.456150px;}
.x11{left:438.120000px;}
.x61{left:439.536150px;}
.x12{left:449.460000px;}
.x33{left:455.196150px;}
.x30{left:458.616150px;}
.x6{left:461.340000px;}
.x44{left:476.802600px;}
.x5d{left:477.876150px;}
.x7{left:482.580000px;}
.x71{left:488.340000px;}
.x3e{left:491.382600px;}
.x68{left:494.262600px;}
.x6b{left:495.702600px;}
.x81{left:498.042600px;}
.x1d{left:505.259850px;}
.x8b{left:509.202600px;}
.x48{left:513.882600px;}
.x47{left:515.142600px;}
.x43{left:530.622600px;}
.x3f{left:532.062600px;}
.x50{left:535.320000px;}
.x8a{left:539.442600px;}
.x88{left:553.302600px;}
.x6f{left:561.059850px;}
.x45{left:568.062600px;}
.x83{left:571.302600px;}
.x49{left:574.182600px;}
.x66{left:575.802600px;}
.x82{left:577.962600px;}
.x42{left:581.022600px;}
.x70{left:584.639850px;}
.x85{left:589.482600px;}
.x40{left:598.662600px;}
.x3d{left:600.462600px;}
.x46{left:603.162600px;}
.x69{left:605.142600px;}
.x6a{left:615.402600px;}
.x64{left:616.842600px;}
.x8c{left:620.802600px;}
.x41{left:623.682600px;}
.x35{left:645.480000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.132093pt;}
.lsf{letter-spacing:0.134473pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.212480pt;}
.ls9{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.459285pt;}
.lsb{letter-spacing:0.460682pt;}
.lse{letter-spacing:0.542934pt;}
.ls10{letter-spacing:0.544107pt;}
.ls1{letter-spacing:0.639301pt;}
.lsa{letter-spacing:0.684315pt;}
.ls7{letter-spacing:0.685837pt;}
.ls3{letter-spacing:10.879052pt;}
.ls2{letter-spacing:13.438952pt;}
.ls0{letter-spacing:25.596930pt;}
.ws4{word-spacing:-32.000000pt;}
.wsc{word-spacing:-13.598720pt;}
.ws7{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:-6.720000pt;}
.ws1b{word-spacing:-3.255320pt;}
.ws14{word-spacing:-3.254787pt;}
.ws19{word-spacing:-3.252300pt;}
.wse{word-spacing:-2.207572pt;}
.ws9{word-spacing:-2.205226pt;}
.ws20{word-spacing:-2.197532pt;}
.ws23{word-spacing:-2.195086pt;}
.ws22{word-spacing:-2.180370pt;}
.ws21{word-spacing:-2.179836pt;}
.ws1f{word-spacing:-2.177225pt;}
.ws15{word-spacing:-0.737826pt;}
.ws1a{word-spacing:-0.730513pt;}
.wsf{word-spacing:-0.590128pt;}
.wsa{word-spacing:-0.587224pt;}
.ws17{word-spacing:-0.076577pt;}
.ws1d{word-spacing:-0.066769pt;}
.ws0{word-spacing:-0.053120pt;}
.ws12{word-spacing:-0.038020pt;}
.ws10{word-spacing:-0.032130pt;}
.ws24{word-spacing:-0.003817pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:0.782190pt;}
.ws1c{word-spacing:0.794295pt;}
.ws13{word-spacing:2.552512pt;}
.wsb{word-spacing:2.974247pt;}
.ws18{word-spacing:8.709639pt;}
.wsd{word-spacing:9.645839pt;}
.ws2{word-spacing:9.936438pt;}
.ws11{word-spacing:10.055739pt;}
.ws1e{word-spacing:26.450673pt;}
._25{margin-left:-14.848000pt;}
._26{margin-left:-1.885735pt;}
._1{margin-left:-0.966942pt;}
._2{width:1.097058pt;}
._f{width:2.208000pt;}
._9{width:3.593058pt;}
._4{width:4.710942pt;}
._3{width:5.760000pt;}
._d{width:6.960000pt;}
._e{width:7.988825pt;}
._6{width:8.928000pt;}
._7{width:9.888000pt;}
._8{width:10.854942pt;}
._1c{width:11.880418pt;}
._c{width:12.942228pt;}
._0{width:14.118942pt;}
._10{width:15.689058pt;}
._16{width:17.263803pt;}
._5{width:18.688450pt;}
._1b{width:20.023968pt;}
._1a{width:21.119163pt;}
._b{width:22.512000pt;}
._a{width:23.616000pt;}
._18{width:24.639360pt;}
._27{width:25.710080pt;}
._14{width:26.640000pt;}
._11{width:28.073362pt;}
._1e{width:29.191866pt;}
._13{width:30.096000pt;}
._12{width:31.152000pt;}
._19{width:32.485563pt;}
._20{width:34.079163pt;}
._30{width:35.059200pt;}
._2b{width:36.447594pt;}
._17{width:37.354079pt;}
._24{width:38.936960pt;}
._2f{width:40.124280pt;}
._1d{width:41.080325pt;}
._15{width:42.211178pt;}
._1f{width:43.133440pt;}
._31{width:44.074338pt;}
._23{width:44.990956pt;}
._21{width:46.108160pt;}
._2d{width:47.049808pt;}
._28{width:48.657920pt;}
._2a{width:49.879680pt;}
._32{width:53.598080pt;}
._22{width:59.723681pt;}
._2e{width:60.648505pt;}
._29{width:61.904121pt;}
._34{width:63.912501pt;}
._2c{width:69.244603pt;}
._35{width:74.525440pt;}
._36{width:75.871557pt;}
._33{width:121.907840pt;}
._37{width:122.978363pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:42.705333pt;}
.y60{bottom:59.593333pt;}
.y11e{bottom:81.757467pt;}
.y51{bottom:84.000000pt;}
.y8d{bottom:86.397467pt;}
.ya8{bottom:90.237467pt;}
.y28{bottom:93.440000pt;}
.y11d{bottom:97.757467pt;}
.y50{bottom:100.160000pt;}
.y8c{bottom:102.557467pt;}
.ya7{bottom:106.237467pt;}
.y27{bottom:109.600000pt;}
.y11c{bottom:113.917467pt;}
.y4f{bottom:116.320000pt;}
.y8b{bottom:119.997467pt;}
.ya6{bottom:122.237467pt;}
.yfc{bottom:125.277467pt;}
.y26{bottom:125.600000pt;}
.yd1{bottom:128.477467pt;}
.y11b{bottom:130.077467pt;}
.y4e{bottom:132.320000pt;}
.y8a{bottom:137.757467pt;}
.ya5{bottom:138.237467pt;}
.yfb{bottom:140.477467pt;}
.y25{bottom:141.760000pt;}
.yd0{bottom:144.477467pt;}
.y11a{bottom:146.077467pt;}
.y4d{bottom:148.480000pt;}
.ya4{bottom:154.237467pt;}
.y89{bottom:155.357467pt;}
.yfa{bottom:155.837467pt;}
.y24{bottom:157.760000pt;}
.ycf{bottom:160.637467pt;}
.y119{bottom:162.237467pt;}
.y4c{bottom:164.480000pt;}
.ya3{bottom:170.237467pt;}
.yf9{bottom:171.197467pt;}
.y88{bottom:172.957467pt;}
.y23{bottom:173.920000pt;}
.yce{bottom:176.797467pt;}
.y118{bottom:178.237467pt;}
.y4b{bottom:180.640000pt;}
.ya2{bottom:186.237467pt;}
.yf8{bottom:186.557467pt;}
.y22{bottom:190.080000pt;}
.y87{bottom:190.557467pt;}
.ycd{bottom:192.797467pt;}
.y117{bottom:194.397467pt;}
.y4a{bottom:196.800000pt;}
.yf7{bottom:201.917467pt;}
.ya1{bottom:202.237467pt;}
.y21{bottom:206.080000pt;}
.y86{bottom:208.157467pt;}
.ycc{bottom:208.957467pt;}
.y116{bottom:210.557467pt;}
.y49{bottom:212.800000pt;}
.yf6{bottom:217.277467pt;}
.ya0{bottom:218.237467pt;}
.y20{bottom:222.240000pt;}
.ycb{bottom:224.957467pt;}
.y85{bottom:225.757467pt;}
.y115{bottom:226.557467pt;}
.y48{bottom:228.960000pt;}
.yf5{bottom:232.477467pt;}
.y9f{bottom:234.237467pt;}
.y1f{bottom:238.400000pt;}
.yca{bottom:241.117467pt;}
.y84{bottom:241.277467pt;}
.y114{bottom:242.717467pt;}
.y47{bottom:245.120000pt;}
.yf4{bottom:247.837467pt;}
.y9e{bottom:250.237467pt;}
.y142{bottom:251.677467pt;}
.y1e{bottom:254.400000pt;}
.y83{bottom:256.637467pt;}
.yc9{bottom:257.277467pt;}
.y113{bottom:258.877467pt;}
.y46{bottom:261.120000pt;}
.yf3{bottom:263.197467pt;}
.y141{bottom:263.837467pt;}
.y9d{bottom:266.237467pt;}
.y1d{bottom:270.560000pt;}
.y112{bottom:274.877467pt;}
.y140{bottom:276.157467pt;}
.y45{bottom:277.280000pt;}
.yf2{bottom:278.557467pt;}
.y9c{bottom:282.237467pt;}
.y1c{bottom:286.560000pt;}
.y82{bottom:287.677467pt;}
.y13f{bottom:288.477467pt;}
.yc8{bottom:288.957467pt;}
.y111{bottom:291.037467pt;}
.y44{bottom:293.280000pt;}
.yf1{bottom:293.917467pt;}
.y9b{bottom:298.237467pt;}
.y13e{bottom:300.637467pt;}
.y1b{bottom:302.720000pt;}
.y110{bottom:307.037467pt;}
.yf0{bottom:309.117467pt;}
.y43{bottom:309.440000pt;}
.y13d{bottom:312.957467pt;}
.y9a{bottom:314.237467pt;}
.y1a{bottom:318.880000pt;}
.y5b{bottom:319.200000pt;}
.y10f{bottom:323.197467pt;}
.yef{bottom:324.477467pt;}
.y13c{bottom:325.277467pt;}
.y42{bottom:325.600000pt;}
.y99{bottom:330.237467pt;}
.y19{bottom:334.880000pt;}
.y13b{bottom:337.437467pt;}
.yee{bottom:339.837467pt;}
.y41{bottom:341.600000pt;}
.y10e{bottom:343.677467pt;}
.y98{bottom:346.237467pt;}
.y13a{bottom:349.757467pt;}
.yed{bottom:355.197467pt;}
.y18{bottom:355.360000pt;}
.y40{bottom:357.760000pt;}
.y139{bottom:362.077467pt;}
.y97{bottom:362.237467pt;}
.yec{bottom:370.557467pt;}
.y3f{bottom:373.760000pt;}
.y138{bottom:374.237467pt;}
.y10d{bottom:375.197467pt;}
.yeb{bottom:385.917467pt;}
.y137{bottom:386.557467pt;}
.y17{bottom:386.560000pt;}
.y3e{bottom:389.920000pt;}
.y96{bottom:390.077467pt;}
.y10c{bottom:390.557467pt;}
.y136{bottom:398.877467pt;}
.y16{bottom:400.320000pt;}
.yea{bottom:401.117467pt;}
.y10b{bottom:405.917467pt;}
.y3d{bottom:406.080000pt;}
.y135{bottom:411.037467pt;}
.y15{bottom:414.240000pt;}
.ye9{bottom:416.477467pt;}
.y10a{bottom:421.117467pt;}
.y3c{bottom:422.080000pt;}
.y134{bottom:423.357467pt;}
.ye8{bottom:431.837467pt;}
.y133{bottom:435.677467pt;}
.y109{bottom:436.477467pt;}
.y3b{bottom:438.240000pt;}
.y14{bottom:444.800000pt;}
.ye7{bottom:447.197467pt;}
.y132{bottom:447.837467pt;}
.y108{bottom:451.837467pt;}
.y3a{bottom:454.400000pt;}
.y13{bottom:458.560000pt;}
.y131{bottom:460.157467pt;}
.ye6{bottom:462.557467pt;}
.y107{bottom:467.197467pt;}
.y81{bottom:468.157467pt;}
.yc7{bottom:468.317467pt;}
.y39{bottom:470.400000pt;}
.y12{bottom:472.320000pt;}
.y130{bottom:472.477467pt;}
.ye5{bottom:477.917467pt;}
.y106{bottom:482.557467pt;}
.y80{bottom:484.317467pt;}
.y12f{bottom:484.637467pt;}
.y11{bottom:486.240000pt;}
.y38{bottom:486.560000pt;}
.ye4{bottom:493.117467pt;}
.y12e{bottom:496.957467pt;}
.y105{bottom:497.917467pt;}
.y10{bottom:500.000000pt;}
.yc6{bottom:500.317467pt;}
.y7f{bottom:500.477467pt;}
.y37{bottom:502.560000pt;}
.ye3{bottom:508.477467pt;}
.y12d{bottom:509.117467pt;}
.y104{bottom:513.117467pt;}
.yf{bottom:513.760000pt;}
.yc5{bottom:516.317467pt;}
.y7e{bottom:516.477467pt;}
.y36{bottom:518.720000pt;}
.y12c{bottom:521.437467pt;}
.ye2{bottom:523.837467pt;}
.ye{bottom:527.520000pt;}
.y103{bottom:528.477467pt;}
.yc4{bottom:532.317467pt;}
.y7d{bottom:532.637467pt;}
.y12b{bottom:533.757467pt;}
.y35{bottom:534.880000pt;}
.ye1{bottom:539.197467pt;}
.yd{bottom:541.280000pt;}
.y102{bottom:543.837467pt;}
.y12a{bottom:545.917467pt;}
.yc3{bottom:548.317467pt;}
.y7c{bottom:548.637467pt;}
.y34{bottom:550.880000pt;}
.ye0{bottom:554.557467pt;}
.yc{bottom:555.200000pt;}
.y129{bottom:558.237467pt;}
.y101{bottom:559.197467pt;}
.yc2{bottom:564.317467pt;}
.y7b{bottom:564.797467pt;}
.y33{bottom:567.040000pt;}
.yb{bottom:568.960000pt;}
.ydf{bottom:569.757467pt;}
.y128{bottom:570.557467pt;}
.y100{bottom:574.557467pt;}
.yc1{bottom:580.317467pt;}
.y7a{bottom:580.957467pt;}
.y127{bottom:582.717467pt;}
.ya{bottom:582.720000pt;}
.y32{bottom:583.040000pt;}
.yff{bottom:589.917467pt;}
.yde{bottom:590.397467pt;}
.y126{bottom:595.037467pt;}
.yc0{bottom:596.317467pt;}
.y9{bottom:596.480000pt;}
.y79{bottom:596.957467pt;}
.y31{bottom:599.200000pt;}
.y125{bottom:607.357467pt;}
.y8{bottom:610.400000pt;}
.ybf{bottom:612.317467pt;}
.y78{bottom:613.117467pt;}
.y30{bottom:615.360000pt;}
.yfe{bottom:620.797467pt;}
.ydd{bottom:621.757467pt;}
.y7{bottom:624.160000pt;}
.y124{bottom:625.437467pt;}
.ybe{bottom:628.317467pt;}
.y77{bottom:629.117467pt;}
.y2f{bottom:631.360000pt;}
.yfd{bottom:635.197467pt;}
.y95{bottom:636.797467pt;}
.ydc{bottom:637.117467pt;}
.y6{bottom:637.920000pt;}
.ybd{bottom:644.317467pt;}
.y2e{bottom:647.520000pt;}
.y5{bottom:651.680000pt;}
.y76{bottom:652.157467pt;}
.ydb{bottom:652.477467pt;}
.y94{bottom:652.957467pt;}
.y123{bottom:656.957467pt;}
.ybc{bottom:660.317467pt;}
.y2d{bottom:663.680000pt;}
.y4{bottom:665.600000pt;}
.yda{bottom:667.837467pt;}
.y93{bottom:669.117467pt;}
.y122{bottom:672.317467pt;}
.y75{bottom:675.197467pt;}
.ybb{bottom:676.317467pt;}
.y3{bottom:679.360000pt;}
.y2c{bottom:679.680000pt;}
.yd9{bottom:683.197467pt;}
.y92{bottom:685.117467pt;}
.y121{bottom:687.517467pt;}
.yba{bottom:692.317467pt;}
.y2{bottom:693.120000pt;}
.y2b{bottom:695.840000pt;}
.yd8{bottom:698.557467pt;}
.y91{bottom:702.557467pt;}
.y120{bottom:702.877467pt;}
.y1{bottom:706.880000pt;}
.y74{bottom:707.357467pt;}
.yb9{bottom:708.317467pt;}
.y2a{bottom:711.840000pt;}
.yd7{bottom:713.757467pt;}
.y90{bottom:720.317467pt;}
.y11f{bottom:723.357467pt;}
.y73{bottom:723.517467pt;}
.yb8{bottom:724.317467pt;}
.y29{bottom:728.000000pt;}
.yd6{bottom:729.117467pt;}
.y8f{bottom:737.917467pt;}
.y72{bottom:739.517467pt;}
.yb7{bottom:740.317467pt;}
.yd5{bottom:744.477467pt;}
.y8e{bottom:755.517467pt;}
.y71{bottom:755.677467pt;}
.yb6{bottom:756.317467pt;}
.yd4{bottom:759.837467pt;}
.y70{bottom:771.837467pt;}
.yb5{bottom:772.317467pt;}
.yd3{bottom:775.197467pt;}
.y5a{bottom:779.680000pt;}
.y6f{bottom:787.837467pt;}
.yb4{bottom:788.317467pt;}
.y59{bottom:796.640000pt;}
.yd2{bottom:803.037467pt;}
.y6e{bottom:803.997467pt;}
.y58{bottom:804.160000pt;}
.yb3{bottom:804.317467pt;}
.y6d{bottom:819.997467pt;}
.yb2{bottom:820.317467pt;}
.y57{bottom:821.120000pt;}
.y56{bottom:833.440000pt;}
.y6c{bottom:836.157467pt;}
.yb1{bottom:836.317467pt;}
.y55{bottom:845.600000pt;}
.y6b{bottom:852.317467pt;}
.y54{bottom:853.600000pt;}
.y6a{bottom:868.317467pt;}
.yb0{bottom:884.317467pt;}
.y69{bottom:884.477467pt;}
.yaf{bottom:900.317467pt;}
.y68{bottom:900.637467pt;}
.yae{bottom:916.317467pt;}
.y67{bottom:916.637467pt;}
.y53{bottom:923.520000pt;}
.yad{bottom:932.317467pt;}
.y66{bottom:932.797467pt;}
.yac{bottom:948.317467pt;}
.y65{bottom:948.797467pt;}
.y52{bottom:960.320000pt;}
.yab{bottom:964.317467pt;}
.y64{bottom:964.957467pt;}
.yaa{bottom:980.317467pt;}
.y63{bottom:981.117467pt;}
.ya9{bottom:996.317467pt;}
.y62{bottom:997.117467pt;}
.y5f{bottom:1017.492000pt;}
.y5e{bottom:1033.172000pt;}
.y5d{bottom:1048.852000pt;}
.y5c{bottom:1064.532000pt;}
.h7{height:26.381250pt;}
.h8{height:42.084375pt;}
.h3{height:47.109375pt;}
.hb{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:53.535000pt;}
.h6{height:59.150000pt;}
.h5{height:125.625000pt;}
.h9{height:146.353125pt;}
.ha{height:1122.557333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:220.000000pt;}
.w2{width:287.037333pt;}
.w3{width:287.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x36{left:-498.095467pt;}
.x39{left:-484.655467pt;}
.x3b{left:-479.215467pt;}
.x7e{left:-478.255467pt;}
.x37{left:-449.615467pt;}
.x63{left:-432.335467pt;}
.x3a{left:-411.215467pt;}
.x7f{left:-394.895467pt;}
.x80{left:-389.455467pt;}
.x38{left:-379.535467pt;}
.x1f{left:-211.221200pt;}
.x24{left:-162.741200pt;}
.x67{left:-149.935467pt;}
.x65{left:-148.975467pt;}
.x3c{left:-144.655467pt;}
.x87{left:-139.535467pt;}
.x89{left:-135.055467pt;}
.x75{left:-102.581200pt;}
.x26{left:-92.661200pt;}
.x84{left:-74.895467pt;}
.x86{left:-53.935467pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x10{left:78.178667pt;}
.x57{left:83.018800pt;}
.x77{left:85.258800pt;}
.x1{left:88.960000pt;}
.x74{left:92.618800pt;}
.x5{left:94.400000pt;}
.x6c{left:95.362667pt;}
.x4{left:102.560000pt;}
.x22{left:106.698800pt;}
.xa{left:115.200000pt;}
.x2c{left:118.218800pt;}
.x27{left:122.218800pt;}
.x15{left:124.002667pt;}
.xb{left:126.240000pt;}
.x55{left:131.018800pt;}
.x21{left:135.338800pt;}
.x20{left:136.298800pt;}
.x4f{left:141.282667pt;}
.x56{left:151.978800pt;}
.x1b{left:162.402507pt;}
.x72{left:163.818800pt;}
.x58{left:170.698800pt;}
.x5b{left:176.298800pt;}
.x6d{left:178.722507pt;}
.x3{left:181.920000pt;}
.x54{left:182.858800pt;}
.x9{left:184.320000pt;}
.x51{left:191.498800pt;}
.x17{left:194.082667pt;}
.x52{left:203.818800pt;}
.x76{left:213.258800pt;}
.x28{left:218.058800pt;}
.x23{left:220.138800pt;}
.x2b{left:227.818800pt;}
.x59{left:230.058800pt;}
.x53{left:231.018800pt;}
.x73{left:233.098800pt;}
.x78{left:236.458800pt;}
.xf{left:239.813333pt;}
.x5a{left:242.698800pt;}
.xe{left:249.253333pt;}
.x25{left:257.738800pt;}
.x2a{left:269.578800pt;}
.x29{left:273.258800pt;}
.xd{left:276.933333pt;}
.x1e{left:286.880000pt;}
.x16{left:295.359867pt;}
.x31{left:296.298800pt;}
.x4a{left:298.080000pt;}
.x7c{left:300.138800pt;}
.x5e{left:302.538800pt;}
.x34{left:303.498800pt;}
.x4d{left:308.159867pt;}
.x18{left:310.560000pt;}
.x2f{left:311.978800pt;}
.x7b{left:314.218800pt;}
.x5c{left:316.618800pt;}
.x1c{left:318.560000pt;}
.x7d{left:322.538800pt;}
.x6e{left:323.839867pt;}
.x32{left:325.258800pt;}
.x2d{left:326.858800pt;}
.xc{left:332.000000pt;}
.x8{left:333.760000pt;}
.x7a{left:336.138800pt;}
.x79{left:345.578800pt;}
.x62{left:351.338800pt;}
.x13{left:359.679867pt;}
.x2e{left:360.778800pt;}
.x60{left:364.938800pt;}
.x4e{left:366.559867pt;}
.x14{left:368.800000pt;}
.x4b{left:370.239867pt;}
.x19{left:377.760000pt;}
.x1a{left:379.040000pt;}
.x4c{left:380.000000pt;}
.x5f{left:381.738800pt;}
.x11{left:389.440000pt;}
.x61{left:390.698800pt;}
.x12{left:399.520000pt;}
.x33{left:404.618800pt;}
.x30{left:407.658800pt;}
.x6{left:410.080000pt;}
.x44{left:423.824533pt;}
.x5d{left:424.778800pt;}
.x7{left:428.960000pt;}
.x71{left:434.080000pt;}
.x3e{left:436.784533pt;}
.x68{left:439.344533pt;}
.x6b{left:440.624533pt;}
.x81{left:442.704533pt;}
.x1d{left:449.119867pt;}
.x8b{left:452.624533pt;}
.x48{left:456.784533pt;}
.x47{left:457.904533pt;}
.x43{left:471.664533pt;}
.x3f{left:472.944533pt;}
.x50{left:475.840000pt;}
.x8a{left:479.504533pt;}
.x88{left:491.824533pt;}
.x6f{left:498.719867pt;}
.x45{left:504.944533pt;}
.x83{left:507.824533pt;}
.x49{left:510.384533pt;}
.x66{left:511.824533pt;}
.x82{left:513.744533pt;}
.x42{left:516.464533pt;}
.x70{left:519.679867pt;}
.x85{left:523.984533pt;}
.x40{left:532.144533pt;}
.x3d{left:533.744533pt;}
.x46{left:536.144533pt;}
.x69{left:537.904533pt;}
.x6a{left:547.024533pt;}
.x64{left:548.304533pt;}
.x8c{left:551.824533pt;}
.x41{left:554.384533pt;}
.x35{left:573.760000pt;}
}




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