
    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_2e00d523283f027dbc426838.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_39166f24870ce21dec131b81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_e1a094b097c88ac9d1beda74.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_91f6bda9b89e975cb3e61cd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_6f3a64d1ab951cb5cda72cfe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_9bf5fe0f0db4eebeae7de418.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972656;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_a2e68cb962b2f777de21fc7d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_266e21f669c2dd219b670f11.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9bfdf70c4ea5776e8e03b5a0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.711914;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_afc9e626d6e8d97ac95dfddf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-76.320000px;}
.v3{vertical-align:-69.840000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.828000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.414600px;}
.ls2d{letter-spacing:-0.308400px;}
.ls3f{letter-spacing:-0.259800px;}
.ls22{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.106800px;}
.ls32{letter-spacing:-0.100200px;}
.lse{letter-spacing:-0.094800px;}
.ls30{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.027360px;}
.ls1c{letter-spacing:0.036000px;}
.ls3e{letter-spacing:0.053280px;}
.ls2f{letter-spacing:0.073440px;}
.ls21{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.233280px;}
.ls3d{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.262080px;}
.ls2c{letter-spacing:0.262200px;}
.ls11{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.305280px;}
.ls20{letter-spacing:0.337200px;}
.ls39{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.636480px;}
.ls3{letter-spacing:0.702720px;}
.ls4{letter-spacing:1.025280px;}
.ls15{letter-spacing:1.350720px;}
.ls16{letter-spacing:1.745280px;}
.ls36{letter-spacing:2.441280px;}
.ls38{letter-spacing:2.826720px;}
.ls12{letter-spacing:3.185280px;}
.ls23{letter-spacing:3.365280px;}
.ls1b{letter-spacing:4.625280px;}
.ls13{letter-spacing:4.950720px;}
.ls1d{letter-spacing:6.065280px;}
.ls18{letter-spacing:7.505280px;}
.ls29{letter-spacing:8.225280px;}
.ls27{letter-spacing:15.425280px;}
.ls28{letter-spacing:16.145280px;}
.ls2b{letter-spacing:16.865280px;}
.ls25{letter-spacing:17.585280px;}
.ls26{letter-spacing:17.705280px;}
.ls9{letter-spacing:24.065280px;}
.ls3c{letter-spacing:26.586720px;}
.ls3b{letter-spacing:27.486720px;}
.ls24{letter-spacing:33.425280px;}
.ls3a{letter-spacing:34.506720px;}
.ls1a{letter-spacing:34.865280px;}
.ls37{letter-spacing:35.946720px;}
.ls2a{letter-spacing:40.230720px;}
.ls14{letter-spacing:44.945280px;}
.ls17{letter-spacing:49.985280px;}
.ls33{letter-spacing:59.345280px;}
.ls34{letter-spacing:67.265280px;}
.ls19{letter-spacing:75.185280px;}
.lsa{letter-spacing:151.505280px;}
.ls35{letter-spacing:170.945280px;}
.lsc{letter-spacing:193.985280px;}
.lsb{letter-spacing:302.681280px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws10{word-spacing:-66.240000px;}
.ws3{word-spacing:-20.232000px;}
.ws1{word-spacing:-20.016000px;}
.ws11{word-spacing:-18.774720px;}
.wse{word-spacing:-18.676800px;}
.ws6{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.305520px;}
.ws7{word-spacing:-17.586720px;}
.ws14{word-spacing:-17.225280px;}
.ws15{word-spacing:-16.666560px;}
.ws4{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.518480px;}
.wsf{word-spacing:-16.513080px;}
.ws0{word-spacing:-16.506480px;}
.ws13{word-spacing:-16.353480px;}
.ws2{word-spacing:-15.812640px;}
.ws12{word-spacing:-13.410720px;}
.wsc{word-spacing:-11.609280px;}
.wsd{word-spacing:-11.430480px;}
.ws5{word-spacing:-10.808640px;}
.ws8{word-spacing:0.000000px;}
._2d{margin-left:-13.679280px;}
._14{margin-left:-3.905280px;}
._5{margin-left:-2.868480px;}
._2{margin-left:-1.261440px;}
._0{width:1.249680px;}
._1{width:2.810640px;}
._6{width:3.984480px;}
._8{width:5.557680px;}
._19{width:6.888480px;}
._18{width:8.084160px;}
._23{width:9.271200px;}
._7{width:10.641600px;}
._4{width:11.922480px;}
._3{width:13.396080px;}
._9{width:14.892960px;}
._e{width:16.692480px;}
._f{width:19.607040px;}
._10{width:21.070080px;}
._1c{width:22.919040px;}
._d{width:24.442560px;}
._c{width:25.968960px;}
._1d{width:27.887040px;}
._12{width:29.678400px;}
._11{width:30.686400px;}
._15{width:31.795200px;}
._16{width:33.489600px;}
._22{width:34.580160px;}
._24{width:36.170400px;}
._2c{width:37.324320px;}
._27{width:39.818880px;}
._25{width:41.797440px;}
._28{width:43.474080px;}
._1e{width:44.853120px;}
._1a{width:47.096640px;}
._1b{width:48.222720px;}
._1f{width:49.742400px;}
._20{width:50.747520px;}
._2b{width:54.680400px;}
._17{width:56.171520px;}
._13{width:57.297600px;}
._26{width:66.107520px;}
._29{width:67.829760px;}
._21{width:74.324160px;}
._2a{width:78.747840px;}
._a{width:117.976320px;}
._b{width:119.036160px;}
._2e{width:846.156000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.yb4{bottom:20.340000px;}
.yac{bottom:20.520000px;}
.y2{bottom:22.500000px;}
.yae{bottom:22.680000px;}
.yb3{bottom:37.620000px;}
.yab{bottom:37.800000px;}
.yb5{bottom:39.780000px;}
.y1{bottom:41.040000px;}
.yb2{bottom:54.900000px;}
.yb1{bottom:72.180000px;}
.y98{bottom:113.436000px;}
.y103{bottom:113.796000px;}
.yb7{bottom:114.156000px;}
.y9e{bottom:124.056000px;}
.y76{bottom:125.856000px;}
.y5b{bottom:126.936000px;}
.y26{bottom:131.256000px;}
.y47{bottom:132.336000px;}
.y102{bottom:133.776000px;}
.yb6{bottom:137.736000px;}
.y9d{bottom:139.536000px;}
.ydb{bottom:140.256000px;}
.y5a{bottom:146.016000px;}
.y75{bottom:146.196000px;}
.y25{bottom:150.150000px;}
.y101{bottom:151.050000px;}
.y46{bottom:151.410000px;}
.yb0{bottom:154.290000px;}
.yda{bottom:157.350000px;}
.y59{bottom:164.910000px;}
.y74{bottom:165.090000px;}
.y100{bottom:168.330000px;}
.y24{bottom:169.230000px;}
.y45{bottom:170.130000px;}
.y97{bottom:170.310000px;}
.yd9{bottom:174.630000px;}
.y58{bottom:183.990000px;}
.y73{bottom:184.170000px;}
.yff{bottom:185.610000px;}
.y44{bottom:187.230000px;}
.y23{bottom:188.130000px;}
.y96{bottom:189.210000px;}
.yd8{bottom:191.910000px;}
.y57{bottom:202.890000px;}
.y72{bottom:203.070000px;}
.y43{bottom:204.510000px;}
.y22{bottom:207.210000px;}
.y95{bottom:208.290000px;}
.yd7{bottom:209.190000px;}
.yfe{bottom:219.990000px;}
.y56{bottom:221.790000px;}
.y71{bottom:222.510000px;}
.y21{bottom:226.110000px;}
.yd6{bottom:226.650000px;}
.y94{bottom:227.190000px;}
.yfd{bottom:237.315000px;}
.y42{bottom:239.295000px;}
.y55{bottom:240.915000px;}
.yaf{bottom:241.275000px;}
.y70{bottom:242.715000px;}
.y20{bottom:245.055000px;}
.yd5{bottom:245.595000px;}
.y93{bottom:246.675000px;}
.yfc{bottom:254.595000px;}
.y41{bottom:258.375000px;}
.y54{bottom:260.175000px;}
.y6f{bottom:261.795000px;}
.y1f{bottom:264.135000px;}
.yd4{bottom:264.675000px;}
.y92{bottom:267.015000px;}
.yfb{bottom:271.875000px;}
.y40{bottom:277.275000px;}
.y53{bottom:280.695000px;}
.y6e{bottom:281.235000px;}
.y1e{bottom:283.035000px;}
.yd3{bottom:283.575000px;}
.y91{bottom:285.915000px;}
.yfa{bottom:289.155000px;}
.yaa{bottom:293.655000px;}
.y3f{bottom:296.175000px;}
.y52{bottom:299.595000px;}
.y6d{bottom:301.935000px;}
.y1d{bottom:302.115000px;}
.yd2{bottom:302.655000px;}
.y90{bottom:304.815000px;}
.yf9{bottom:306.435000px;}
.y3e{bottom:315.255000px;}
.y51{bottom:318.495000px;}
.y1c{bottom:321.015000px;}
.yd1{bottom:321.555000px;}
.y6c{bottom:322.095000px;}
.yf8{bottom:323.535000px;}
.y8f{bottom:323.895000px;}
.y3d{bottom:334.155000px;}
.y50{bottom:337.935000px;}
.y1b{bottom:339.915000px;}
.yd0{bottom:340.455000px;}
.yf7{bottom:340.815000px;}
.y6b{bottom:341.175000px;}
.y8e{bottom:342.795000px;}
.ya9{bottom:349.455000px;}
.y3c{bottom:353.235000px;}
.yf6{bottom:358.095000px;}
.y4f{bottom:358.635000px;}
.y1a{bottom:358.995000px;}
.ycf{bottom:359.535000px;}
.y6a{bottom:360.075000px;}
.y8d{bottom:361.875000px;}
.ya8{bottom:366.735000px;}
.y3b{bottom:372.135000px;}
.yf5{bottom:375.375000px;}
.y19{bottom:377.895000px;}
.yce{bottom:378.435000px;}
.y4e{bottom:378.975000px;}
.y69{bottom:379.515000px;}
.y8c{bottom:380.775000px;}
.ya7{bottom:384.015000px;}
.yf4{bottom:392.655000px;}
.ycd{bottom:397.515000px;}
.y4d{bottom:398.055000px;}
.y8b{bottom:399.675000px;}
.y68{bottom:400.215000px;}
.ya6{bottom:401.475000px;}
.yf3{bottom:409.935000px;}
.y3a{bottom:410.115000px;}
.ycc{bottom:416.415000px;}
.y4c{bottom:416.955000px;}
.y8a{bottom:418.755000px;}
.y67{bottom:420.375000px;}
.y18{bottom:423.645000px;}
.yf2{bottom:427.065000px;}
.y39{bottom:429.045000px;}
.y9c{bottom:429.585000px;}
.ycb{bottom:435.525000px;}
.y4b{bottom:436.065000px;}
.y89{bottom:437.685000px;}
.y66{bottom:439.485000px;}
.y9b{bottom:439.845000px;}
.y17{bottom:440.925000px;}
.yf1{bottom:444.345000px;}
.y38{bottom:448.125000px;}
.yca{bottom:454.425000px;}
.y4a{bottom:454.785000px;}
.y88{bottom:456.765000px;}
.y9a{bottom:457.125000px;}
.y16{bottom:458.205000px;}
.y65{bottom:458.385000px;}
.yf0{bottom:461.625000px;}
.y37{bottom:467.025000px;}
.y99{bottom:471.165000px;}
.y49{bottom:471.885000px;}
.yc9{bottom:473.325000px;}
.y15{bottom:475.485000px;}
.y87{bottom:475.665000px;}
.y64{bottom:477.465000px;}
.yef{bottom:478.905000px;}
.y36{bottom:485.745000px;}
.y48{bottom:485.925000px;}
.yc8{bottom:492.405000px;}
.y14{bottom:492.585000px;}
.y86{bottom:494.565000px;}
.yee{bottom:496.185000px;}
.y63{bottom:496.365000px;}
.y13{bottom:509.865000px;}
.yc7{bottom:511.305000px;}
.yed{bottom:513.285000px;}
.y85{bottom:513.645000px;}
.y62{bottom:515.265000px;}
.y35{bottom:520.485000px;}
.y12{bottom:527.145000px;}
.yc6{bottom:530.385000px;}
.yec{bottom:530.565000px;}
.y84{bottom:532.545000px;}
.y61{bottom:534.345000px;}
.y34{bottom:539.565000px;}
.y11{bottom:544.425000px;}
.yeb{bottom:547.845000px;}
.yc5{bottom:549.285000px;}
.y83{bottom:551.985000px;}
.y60{bottom:553.245000px;}
.y33{bottom:558.465000px;}
.y10{bottom:561.705000px;}
.yea{bottom:565.125000px;}
.yc4{bottom:568.185000px;}
.y82{bottom:572.325000px;}
.y5f{bottom:572.685000px;}
.y32{bottom:577.365000px;}
.yf{bottom:578.985000px;}
.ye9{bottom:582.405000px;}
.yc3{bottom:588.345000px;}
.ya5{bottom:591.225000px;}
.y81{bottom:591.765000px;}
.y5e{bottom:593.385000px;}
.ye{bottom:596.085000px;}
.y31{bottom:596.445000px;}
.ye8{bottom:599.685000px;}
.yc2{bottom:607.245000px;}
.ya4{bottom:610.350000px;}
.y80{bottom:611.970000px;}
.yd{bottom:613.950000px;}
.y5d{bottom:614.130000px;}
.y30{bottom:615.390000px;}
.ye7{bottom:616.830000px;}
.yc1{bottom:627.450000px;}
.ya3{bottom:629.250000px;}
.y7f{bottom:630.870000px;}
.ye6{bottom:634.110000px;}
.y2f{bottom:634.470000px;}
.yc{bottom:634.830000px;}
.yc0{bottom:646.350000px;}
.ya2{bottom:648.690000px;}
.y7e{bottom:649.950000px;}
.ye5{bottom:651.390000px;}
.y2e{bottom:653.370000px;}
.yb{bottom:654.810000px;}
.ybf{bottom:665.250000px;}
.ye4{bottom:668.670000px;}
.y7d{bottom:668.850000px;}
.ya{bottom:672.090000px;}
.y5c{bottom:672.270000px;}
.ybe{bottom:685.410000px;}
.ye3{bottom:685.950000px;}
.y7c{bottom:687.930000px;}
.ya1{bottom:688.290000px;}
.y2d{bottom:691.350000px;}
.y9{bottom:695.310000px;}
.ye2{bottom:703.230000px;}
.ybd{bottom:704.490000px;}
.y7b{bottom:706.830000px;}
.ya0{bottom:708.630000px;}
.y2c{bottom:710.250000px;}
.y8{bottom:715.830000px;}
.ye1{bottom:720.330000px;}
.ybc{bottom:723.390000px;}
.y7a{bottom:725.910000px;}
.y9f{bottom:728.070000px;}
.y2b{bottom:729.330000px;}
.ye0{bottom:737.610000px;}
.y7{bottom:741.570000px;}
.ybb{bottom:743.550000px;}
.y79{bottom:744.810000px;}
.y2a{bottom:748.230000px;}
.ydf{bottom:754.890000px;}
.y6{bottom:762.270000px;}
.yba{bottom:762.450000px;}
.y78{bottom:764.250000px;}
.y29{bottom:767.310000px;}
.yde{bottom:772.170000px;}
.yb9{bottom:781.530000px;}
.y5{bottom:782.970000px;}
.y77{bottom:784.950000px;}
.y28{bottom:786.210000px;}
.ydd{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.yb8{bottom:804.960000px;}
.y27{bottom:805.140000px;}
.ydc{bottom:806.760000px;}
.h11{height:21.312070px;}
.h10{height:27.523125px;}
.h9{height:40.472227px;}
.hb{height:44.090508px;}
.ha{height:45.549492px;}
.h3{height:46.251562px;}
.h6{height:48.761719px;}
.hf{height:48.871406px;}
.h8{height:50.273438px;}
.h13{height:51.660000px;}
.h12{height:51.840000px;}
.h2{height:53.603086px;}
.h7{height:54.390938px;}
.hd{height:59.415469px;}
.hc{height:60.288750px;}
.he{height:61.217578px;}
.h5{height:64.582031px;}
.h4{height:65.531250px;}
.h14{height:86.256000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:84.240000px;}
.w5{width:84.276000px;}
.w6{width:84.420000px;}
.w3{width:126.936000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x1c{left:32.040000px;}
.x19{left:33.660000px;}
.x2{left:80.855991px;}
.x14{left:88.595991px;}
.x16{left:89.676000px;}
.xd{left:95.615991px;}
.x9{left:97.955991px;}
.x4{left:105.155991px;}
.x1e{left:106.415991px;}
.x8{left:112.175991px;}
.x3{left:114.875991px;}
.xa{left:123.335991px;}
.x7{left:127.115991px;}
.x13{left:139.715991px;}
.x10{left:150.329991px;}
.x1d{left:177.329991px;}
.x12{left:199.874991px;}
.x5{left:205.814991px;}
.xb{left:214.454991px;}
.x18{left:217.335000px;}
.xe{left:233.894991px;}
.x15{left:243.434991px;}
.x1{left:302.294991px;}
.x6{left:314.714991px;}
.xc{left:335.984991px;}
.x1a{left:387.465000px;}
.x1b{left:472.470000px;}
.xf{left:508.109991px;}
.x11{left:520.709991px;}
@media print{
.v2{vertical-align:-67.840000pt;}
.v3{vertical-align:-62.080000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.736000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.368533pt;}
.ls2d{letter-spacing:-0.274133pt;}
.ls3f{letter-spacing:-0.230933pt;}
.ls22{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls32{letter-spacing:-0.089067pt;}
.lse{letter-spacing:-0.084267pt;}
.ls30{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024320pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls3e{letter-spacing:0.047360pt;}
.ls2f{letter-spacing:0.065280pt;}
.ls21{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.207360pt;}
.ls3d{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.232960pt;}
.ls2c{letter-spacing:0.233067pt;}
.ls11{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.271360pt;}
.ls20{letter-spacing:0.299733pt;}
.ls39{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.565760pt;}
.ls3{letter-spacing:0.624640pt;}
.ls4{letter-spacing:0.911360pt;}
.ls15{letter-spacing:1.200640pt;}
.ls16{letter-spacing:1.551360pt;}
.ls36{letter-spacing:2.170027pt;}
.ls38{letter-spacing:2.512640pt;}
.ls12{letter-spacing:2.831360pt;}
.ls23{letter-spacing:2.991360pt;}
.ls1b{letter-spacing:4.111360pt;}
.ls13{letter-spacing:4.400640pt;}
.ls1d{letter-spacing:5.391360pt;}
.ls18{letter-spacing:6.671360pt;}
.ls29{letter-spacing:7.311360pt;}
.ls27{letter-spacing:13.711360pt;}
.ls28{letter-spacing:14.351360pt;}
.ls2b{letter-spacing:14.991360pt;}
.ls25{letter-spacing:15.631360pt;}
.ls26{letter-spacing:15.738027pt;}
.ls9{letter-spacing:21.391360pt;}
.ls3c{letter-spacing:23.632640pt;}
.ls3b{letter-spacing:24.432640pt;}
.ls24{letter-spacing:29.711360pt;}
.ls3a{letter-spacing:30.672640pt;}
.ls1a{letter-spacing:30.991360pt;}
.ls37{letter-spacing:31.952640pt;}
.ls2a{letter-spacing:35.760640pt;}
.ls14{letter-spacing:39.951360pt;}
.ls17{letter-spacing:44.431360pt;}
.ls33{letter-spacing:52.751360pt;}
.ls34{letter-spacing:59.791360pt;}
.ls19{letter-spacing:66.831360pt;}
.lsa{letter-spacing:134.671360pt;}
.ls35{letter-spacing:151.951360pt;}
.lsc{letter-spacing:172.431360pt;}
.lsb{letter-spacing:269.050027pt;}
.wsb{word-spacing:-64.000000pt;}
.ws10{word-spacing:-58.880000pt;}
.ws3{word-spacing:-17.984000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws11{word-spacing:-16.688640pt;}
.wse{word-spacing:-16.601600pt;}
.ws6{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.271573pt;}
.ws7{word-spacing:-15.632640pt;}
.ws14{word-spacing:-15.311360pt;}
.ws15{word-spacing:-14.814720pt;}
.ws4{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.683093pt;}
.wsf{word-spacing:-14.678293pt;}
.ws0{word-spacing:-14.672427pt;}
.ws13{word-spacing:-14.536427pt;}
.ws2{word-spacing:-14.055680pt;}
.ws12{word-spacing:-11.920640pt;}
.wsc{word-spacing:-10.319360pt;}
.wsd{word-spacing:-10.160427pt;}
.ws5{word-spacing:-9.607680pt;}
.ws8{word-spacing:0.000000pt;}
._2d{margin-left:-12.159360pt;}
._14{margin-left:-3.471360pt;}
._5{margin-left:-2.549760pt;}
._2{margin-left:-1.121280pt;}
._0{width:1.110827pt;}
._1{width:2.498347pt;}
._6{width:3.541760pt;}
._8{width:4.940160pt;}
._19{width:6.123093pt;}
._18{width:7.185920pt;}
._23{width:8.241067pt;}
._7{width:9.459200pt;}
._4{width:10.597760pt;}
._3{width:11.907627pt;}
._9{width:13.238187pt;}
._e{width:14.837760pt;}
._f{width:17.428480pt;}
._10{width:18.728960pt;}
._1c{width:20.372480pt;}
._d{width:21.726720pt;}
._c{width:23.083520pt;}
._1d{width:24.788480pt;}
._12{width:26.380800pt;}
._11{width:27.276800pt;}
._15{width:28.262400pt;}
._16{width:29.768533pt;}
._22{width:30.737920pt;}
._24{width:32.151467pt;}
._2c{width:33.177173pt;}
._27{width:35.394560pt;}
._25{width:37.153280pt;}
._28{width:38.643627pt;}
._1e{width:39.869440pt;}
._1a{width:41.863680pt;}
._1b{width:42.864640pt;}
._1f{width:44.215467pt;}
._20{width:45.108907pt;}
._2b{width:48.604800pt;}
._17{width:49.930240pt;}
._13{width:50.931200pt;}
._26{width:58.762240pt;}
._29{width:60.293120pt;}
._21{width:66.065920pt;}
._2a{width:69.998080pt;}
._a{width:104.867840pt;}
._b{width:105.809920pt;}
._2e{width:752.138667pt;}
.fs7{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.yb4{bottom:18.080000pt;}
.yac{bottom:18.240000pt;}
.y2{bottom:20.000000pt;}
.yae{bottom:20.160000pt;}
.yb3{bottom:33.440000pt;}
.yab{bottom:33.600000pt;}
.yb5{bottom:35.360000pt;}
.y1{bottom:36.480000pt;}
.yb2{bottom:48.800000pt;}
.yb1{bottom:64.160000pt;}
.y98{bottom:100.832000pt;}
.y103{bottom:101.152000pt;}
.yb7{bottom:101.472000pt;}
.y9e{bottom:110.272000pt;}
.y76{bottom:111.872000pt;}
.y5b{bottom:112.832000pt;}
.y26{bottom:116.672000pt;}
.y47{bottom:117.632000pt;}
.y102{bottom:118.912000pt;}
.yb6{bottom:122.432000pt;}
.y9d{bottom:124.032000pt;}
.ydb{bottom:124.672000pt;}
.y5a{bottom:129.792000pt;}
.y75{bottom:129.952000pt;}
.y25{bottom:133.466667pt;}
.y101{bottom:134.266667pt;}
.y46{bottom:134.586667pt;}
.yb0{bottom:137.146667pt;}
.yda{bottom:139.866667pt;}
.y59{bottom:146.586667pt;}
.y74{bottom:146.746667pt;}
.y100{bottom:149.626667pt;}
.y24{bottom:150.426667pt;}
.y45{bottom:151.226667pt;}
.y97{bottom:151.386667pt;}
.yd9{bottom:155.226667pt;}
.y58{bottom:163.546667pt;}
.y73{bottom:163.706667pt;}
.yff{bottom:164.986667pt;}
.y44{bottom:166.426667pt;}
.y23{bottom:167.226667pt;}
.y96{bottom:168.186667pt;}
.yd8{bottom:170.586667pt;}
.y57{bottom:180.346667pt;}
.y72{bottom:180.506667pt;}
.y43{bottom:181.786667pt;}
.y22{bottom:184.186667pt;}
.y95{bottom:185.146667pt;}
.yd7{bottom:185.946667pt;}
.yfe{bottom:195.546667pt;}
.y56{bottom:197.146667pt;}
.y71{bottom:197.786667pt;}
.y21{bottom:200.986667pt;}
.yd6{bottom:201.466667pt;}
.y94{bottom:201.946667pt;}
.yfd{bottom:210.946667pt;}
.y42{bottom:212.706667pt;}
.y55{bottom:214.146667pt;}
.yaf{bottom:214.466667pt;}
.y70{bottom:215.746667pt;}
.y20{bottom:217.826667pt;}
.yd5{bottom:218.306667pt;}
.y93{bottom:219.266667pt;}
.yfc{bottom:226.306667pt;}
.y41{bottom:229.666667pt;}
.y54{bottom:231.266667pt;}
.y6f{bottom:232.706667pt;}
.y1f{bottom:234.786667pt;}
.yd4{bottom:235.266667pt;}
.y92{bottom:237.346667pt;}
.yfb{bottom:241.666667pt;}
.y40{bottom:246.466667pt;}
.y53{bottom:249.506667pt;}
.y6e{bottom:249.986667pt;}
.y1e{bottom:251.586667pt;}
.yd3{bottom:252.066667pt;}
.y91{bottom:254.146667pt;}
.yfa{bottom:257.026667pt;}
.yaa{bottom:261.026667pt;}
.y3f{bottom:263.266667pt;}
.y52{bottom:266.306667pt;}
.y6d{bottom:268.386667pt;}
.y1d{bottom:268.546667pt;}
.yd2{bottom:269.026667pt;}
.y90{bottom:270.946667pt;}
.yf9{bottom:272.386667pt;}
.y3e{bottom:280.226667pt;}
.y51{bottom:283.106667pt;}
.y1c{bottom:285.346667pt;}
.yd1{bottom:285.826667pt;}
.y6c{bottom:286.306667pt;}
.yf8{bottom:287.586667pt;}
.y8f{bottom:287.906667pt;}
.y3d{bottom:297.026667pt;}
.y50{bottom:300.386667pt;}
.y1b{bottom:302.146667pt;}
.yd0{bottom:302.626667pt;}
.yf7{bottom:302.946667pt;}
.y6b{bottom:303.266667pt;}
.y8e{bottom:304.706667pt;}
.ya9{bottom:310.626667pt;}
.y3c{bottom:313.986667pt;}
.yf6{bottom:318.306667pt;}
.y4f{bottom:318.786667pt;}
.y1a{bottom:319.106667pt;}
.ycf{bottom:319.586667pt;}
.y6a{bottom:320.066667pt;}
.y8d{bottom:321.666667pt;}
.ya8{bottom:325.986667pt;}
.y3b{bottom:330.786667pt;}
.yf5{bottom:333.666667pt;}
.y19{bottom:335.906667pt;}
.yce{bottom:336.386667pt;}
.y4e{bottom:336.866667pt;}
.y69{bottom:337.346667pt;}
.y8c{bottom:338.466667pt;}
.ya7{bottom:341.346667pt;}
.yf4{bottom:349.026667pt;}
.ycd{bottom:353.346667pt;}
.y4d{bottom:353.826667pt;}
.y8b{bottom:355.266667pt;}
.y68{bottom:355.746667pt;}
.ya6{bottom:356.866667pt;}
.yf3{bottom:364.386667pt;}
.y3a{bottom:364.546667pt;}
.ycc{bottom:370.146667pt;}
.y4c{bottom:370.626667pt;}
.y8a{bottom:372.226667pt;}
.y67{bottom:373.666667pt;}
.y18{bottom:376.573333pt;}
.yf2{bottom:379.613333pt;}
.y39{bottom:381.373333pt;}
.y9c{bottom:381.853333pt;}
.ycb{bottom:387.133333pt;}
.y4b{bottom:387.613333pt;}
.y89{bottom:389.053333pt;}
.y66{bottom:390.653333pt;}
.y9b{bottom:390.973333pt;}
.y17{bottom:391.933333pt;}
.yf1{bottom:394.973333pt;}
.y38{bottom:398.333333pt;}
.yca{bottom:403.933333pt;}
.y4a{bottom:404.253333pt;}
.y88{bottom:406.013333pt;}
.y9a{bottom:406.333333pt;}
.y16{bottom:407.293333pt;}
.y65{bottom:407.453333pt;}
.yf0{bottom:410.333333pt;}
.y37{bottom:415.133333pt;}
.y99{bottom:418.813333pt;}
.y49{bottom:419.453333pt;}
.yc9{bottom:420.733333pt;}
.y15{bottom:422.653333pt;}
.y87{bottom:422.813333pt;}
.y64{bottom:424.413333pt;}
.yef{bottom:425.693333pt;}
.y36{bottom:431.773333pt;}
.y48{bottom:431.933333pt;}
.yc8{bottom:437.693333pt;}
.y14{bottom:437.853333pt;}
.y86{bottom:439.613333pt;}
.yee{bottom:441.053333pt;}
.y63{bottom:441.213333pt;}
.y13{bottom:453.213333pt;}
.yc7{bottom:454.493333pt;}
.yed{bottom:456.253333pt;}
.y85{bottom:456.573333pt;}
.y62{bottom:458.013333pt;}
.y35{bottom:462.653333pt;}
.y12{bottom:468.573333pt;}
.yc6{bottom:471.453333pt;}
.yec{bottom:471.613333pt;}
.y84{bottom:473.373333pt;}
.y61{bottom:474.973333pt;}
.y34{bottom:479.613333pt;}
.y11{bottom:483.933333pt;}
.yeb{bottom:486.973333pt;}
.yc5{bottom:488.253333pt;}
.y83{bottom:490.653333pt;}
.y60{bottom:491.773333pt;}
.y33{bottom:496.413333pt;}
.y10{bottom:499.293333pt;}
.yea{bottom:502.333333pt;}
.yc4{bottom:505.053333pt;}
.y82{bottom:508.733333pt;}
.y5f{bottom:509.053333pt;}
.y32{bottom:513.213333pt;}
.yf{bottom:514.653333pt;}
.ye9{bottom:517.693333pt;}
.yc3{bottom:522.973333pt;}
.ya5{bottom:525.533333pt;}
.y81{bottom:526.013333pt;}
.y5e{bottom:527.453333pt;}
.ye{bottom:529.853333pt;}
.y31{bottom:530.173333pt;}
.ye8{bottom:533.053333pt;}
.yc2{bottom:539.773333pt;}
.ya4{bottom:542.533333pt;}
.y80{bottom:543.973333pt;}
.yd{bottom:545.733333pt;}
.y5d{bottom:545.893333pt;}
.y30{bottom:547.013333pt;}
.ye7{bottom:548.293333pt;}
.yc1{bottom:557.733333pt;}
.ya3{bottom:559.333333pt;}
.y7f{bottom:560.773333pt;}
.ye6{bottom:563.653333pt;}
.y2f{bottom:563.973333pt;}
.yc{bottom:564.293333pt;}
.yc0{bottom:574.533333pt;}
.ya2{bottom:576.613333pt;}
.y7e{bottom:577.733333pt;}
.ye5{bottom:579.013333pt;}
.y2e{bottom:580.773333pt;}
.yb{bottom:582.053333pt;}
.ybf{bottom:591.333333pt;}
.ye4{bottom:594.373333pt;}
.y7d{bottom:594.533333pt;}
.ya{bottom:597.413333pt;}
.y5c{bottom:597.573333pt;}
.ybe{bottom:609.253333pt;}
.ye3{bottom:609.733333pt;}
.y7c{bottom:611.493333pt;}
.ya1{bottom:611.813333pt;}
.y2d{bottom:614.533333pt;}
.y9{bottom:618.053333pt;}
.ye2{bottom:625.093333pt;}
.ybd{bottom:626.213333pt;}
.y7b{bottom:628.293333pt;}
.ya0{bottom:629.893333pt;}
.y2c{bottom:631.333333pt;}
.y8{bottom:636.293333pt;}
.ye1{bottom:640.293333pt;}
.ybc{bottom:643.013333pt;}
.y7a{bottom:645.253333pt;}
.y9f{bottom:647.173333pt;}
.y2b{bottom:648.293333pt;}
.ye0{bottom:655.653333pt;}
.y7{bottom:659.173333pt;}
.ybb{bottom:660.933333pt;}
.y79{bottom:662.053333pt;}
.y2a{bottom:665.093333pt;}
.ydf{bottom:671.013333pt;}
.y6{bottom:677.573333pt;}
.yba{bottom:677.733333pt;}
.y78{bottom:679.333333pt;}
.y29{bottom:682.053333pt;}
.yde{bottom:686.373333pt;}
.yb9{bottom:694.693333pt;}
.y5{bottom:695.973333pt;}
.y77{bottom:697.733333pt;}
.y28{bottom:698.853333pt;}
.ydd{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.yb8{bottom:715.520000pt;}
.y27{bottom:715.680000pt;}
.ydc{bottom:717.120000pt;}
.h11{height:18.944062pt;}
.h10{height:24.465000pt;}
.h9{height:35.975313pt;}
.hb{height:39.191562pt;}
.ha{height:40.488438pt;}
.h3{height:41.112500pt;}
.h6{height:43.343750pt;}
.hf{height:43.441250pt;}
.h8{height:44.687500pt;}
.h13{height:45.920000pt;}
.h12{height:46.080000pt;}
.h2{height:47.647188pt;}
.h7{height:48.347500pt;}
.hd{height:52.813750pt;}
.hc{height:53.590000pt;}
.he{height:54.415625pt;}
.h5{height:57.406250pt;}
.h4{height:58.250000pt;}
.h14{height:76.672000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:74.880000pt;}
.w5{width:74.912000pt;}
.w6{width:75.040000pt;}
.w3{width:112.832000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x1c{left:28.480000pt;}
.x19{left:29.920000pt;}
.x2{left:71.871992pt;}
.x14{left:78.751992pt;}
.x16{left:79.712000pt;}
.xd{left:84.991992pt;}
.x9{left:87.071992pt;}
.x4{left:93.471992pt;}
.x1e{left:94.591992pt;}
.x8{left:99.711992pt;}
.x3{left:102.111992pt;}
.xa{left:109.631992pt;}
.x7{left:112.991992pt;}
.x13{left:124.191992pt;}
.x10{left:133.626658pt;}
.x1d{left:157.626658pt;}
.x12{left:177.666658pt;}
.x5{left:182.946658pt;}
.xb{left:190.626658pt;}
.x18{left:193.186667pt;}
.xe{left:207.906658pt;}
.x15{left:216.386658pt;}
.x1{left:268.706658pt;}
.x6{left:279.746658pt;}
.xc{left:298.653325pt;}
.x1a{left:344.413333pt;}
.x1b{left:419.973333pt;}
.xf{left:451.653325pt;}
.x11{left:462.853325pt;}
}




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