
    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_fe63a3e793480dd51592dd0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_35bcb671ea00ba13b7c3c90f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ca7c6cc4b10a16c609b8846b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_35e8c6b3dc41f0456f2a3e02.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_97409e3c814a061611213763.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_9d73df4f6ccf6ce701ba82a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3ca9e927e485a4219c5e64b6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c07bebcbeb029e197fb1d8cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_1844dadbd984ae084c26e959.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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_7f5e33e6c3641f22374feb05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987793;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_4eef28480ae1b9ffe5352a02.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_e72910842d38788bfcccc23e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0d74fed395a3966fcda22070.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5c3e0bfab09c8c65bc00291d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6c4bc9452fcac651cd40bfa0.woff2')format("woff");}.fff{font-family:fff;line-height:1.010254;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);}
.v3{vertical-align:-91.440000px;}
.v1{vertical-align:-79.920000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v2{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.206400px;}
.ls32{letter-spacing:-0.174000px;}
.ls2b{letter-spacing:-0.110400px;}
.ls8{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.041760px;}
.ls2e{letter-spacing:-0.040320px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.019440px;}
.lsd{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.084000px;}
.ls13{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls30{letter-spacing:0.264240px;}
.ls2d{letter-spacing:0.285000px;}
.ls0{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls31{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.306600px;}
.ls2f{letter-spacing:0.346800px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.377400px;}
.lse{letter-spacing:0.425280px;}
.ls24{letter-spacing:0.466800px;}
.ls1d{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.666000px;}
.ls1c{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.080000px;}
.ls1a{letter-spacing:2.340000px;}
.ls21{letter-spacing:3.060000px;}
.ls22{letter-spacing:4.500000px;}
.ls20{letter-spacing:5.220000px;}
.ls18{letter-spacing:5.940000px;}
.ls5{letter-spacing:6.840000px;}
.ls16{letter-spacing:7.380000px;}
.lsf{letter-spacing:10.440000px;}
.ls1b{letter-spacing:10.980000px;}
.ls19{letter-spacing:11.700000px;}
.ls1f{letter-spacing:12.420000px;}
.ls1e{letter-spacing:13.860000px;}
.ls17{letter-spacing:14.580000px;}
.ls28{letter-spacing:16.506720px;}
.ls26{letter-spacing:46.026720px;}
.ls1{letter-spacing:143.460000px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws3{word-spacing:-18.720120px;}
.ws4{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws0{word-spacing:-16.506480px;}
.ws12{word-spacing:-15.406800px;}
.wsa{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.286800px;}
.ws11{word-spacing:-15.246600px;}
.ws1a{word-spacing:-15.246000px;}
.ws8{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws14{word-spacing:-15.024000px;}
.ws9{word-spacing:-14.993280px;}
.ws16{word-spacing:-14.959440px;}
.ws7{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.899680px;}
.wsd{word-spacing:-14.898240px;}
.ws10{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.829600px;}
.ws1b{word-spacing:-14.766000px;}
.ws13{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.588760px;}
.wsf{word-spacing:-14.580000px;}
.wsb{word-spacing:-10.080000px;}
.ws17{word-spacing:-10.005000px;}
.ws5{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._2{margin-left:-1.000800px;}
._0{width:1.254960px;}
._5{width:2.280000px;}
._7{width:3.634080px;}
._6{width:4.776240px;}
._8{width:6.044160px;}
._16{width:7.171200px;}
._a{width:8.199120px;}
._9{width:9.756960px;}
._19{width:10.962000px;}
._c{width:12.128400px;}
._d{width:13.153440px;}
._1b{width:16.153920px;}
._17{width:17.184720px;}
._b{width:18.525600px;}
._18{width:19.687200px;}
._1a{width:20.796480px;}
._1e{width:21.975600px;}
._e{width:23.007600px;}
._f{width:24.083280px;}
._10{width:25.131120px;}
._11{width:26.613840px;}
._1f{width:30.415680px;}
._21{width:31.614000px;}
._20{width:34.362000px;}
._1c{width:42.011280px;}
._1d{width:43.086960px;}
._23{width:49.944240px;}
._22{width:51.333840px;}
._13{width:81.647040px;}
._15{width:82.777680px;}
._14{width:83.877600px;}
._3{width:88.776000px;}
._24{width:114.660720px;}
._25{width:116.653920px;}
._12{width:121.629360px;}
._1{width:359.408400px;}
._4{width:452.688000px;}
.fc6{color:rgb(18,121,246);}
.fc5{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(52,52,52);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:58.860000px;}
.ya4{bottom:111.780000px;}
.ye1{bottom:112.140000px;}
.ybf{bottom:119.340000px;}
.y97{bottom:122.940000px;}
.y6b{bottom:126.180000px;}
.yb7{bottom:127.440000px;}
.ya3{bottom:129.060000px;}
.ye0{bottom:129.420000px;}
.y34{bottom:134.640000px;}
.ybe{bottom:136.620000px;}
.yfc{bottom:138.240000px;}
.y96{bottom:140.220000px;}
.y6a{bottom:143.460000px;}
.yb6{bottom:144.720000px;}
.ya2{bottom:146.340000px;}
.ydf{bottom:146.520000px;}
.ybd{bottom:153.900000px;}
.yfb{bottom:156.960000px;}
.y33{bottom:157.500000px;}
.y69{bottom:160.770000px;}
.yb5{bottom:162.030000px;}
.ya1{bottom:163.650000px;}
.yde{bottom:163.830000px;}
.ybc{bottom:171.030000px;}
.y32{bottom:174.810000px;}
.yfa{bottom:175.530000px;}
.y68{bottom:177.870000px;}
.yb4{bottom:179.310000px;}
.ya0{bottom:180.750000px;}
.ydd{bottom:181.110000px;}
.ybb{bottom:188.310000px;}
.y95{bottom:192.090000px;}
.yf9{bottom:194.250000px;}
.y67{bottom:196.230000px;}
.yb3{bottom:196.590000px;}
.y31{bottom:197.310000px;}
.ydc{bottom:198.390000px;}
.yba{bottom:205.590000px;}
.y9f{bottom:207.210000px;}
.y30{bottom:209.370000px;}
.yf8{bottom:212.790000px;}
.yb2{bottom:213.690000px;}
.y66{bottom:214.950000px;}
.ydb{bottom:215.670000px;}
.y94{bottom:226.470000px;}
.y9e{bottom:230.430000px;}
.yb1{bottom:230.970000px;}
.yf7{bottom:231.510000px;}
.y2f{bottom:231.690000px;}
.yb9{bottom:232.050000px;}
.yda{bottom:232.950000px;}
.y65{bottom:233.310000px;}
.y2e{bottom:243.750000px;}
.yb0{bottom:248.250000px;}
.yd9{bottom:250.050000px;}
.yf6{bottom:250.230000px;}
.y64{bottom:251.670000px;}
.yb8{bottom:255.270000px;}
.y2d{bottom:261.030000px;}
.yaf{bottom:265.530000px;}
.yd8{bottom:267.330000px;}
.yf5{bottom:268.770000px;}
.y63{bottom:270.210000px;}
.y93{bottom:278.310000px;}
.yae{bottom:282.810000px;}
.y2c{bottom:283.530000px;}
.yd7{bottom:284.610000px;}
.yf4{bottom:287.490000px;}
.y62{bottom:288.930000px;}
.y2b{bottom:295.590000px;}
.yad{bottom:299.910000px;}
.yd6{bottom:301.890000px;}
.yf3{bottom:306.030000px;}
.y61{bottom:307.470000px;}
.y92{bottom:312.870000px;}
.y2a{bottom:318.090000px;}
.yd5{bottom:319.170000px;}
.yf2{bottom:324.750000px;}
.y60{bottom:326.190000px;}
.yac{bottom:326.370000px;}
.y29{bottom:329.970000px;}
.yd4{bottom:336.270000px;}
.yf1{bottom:343.290000px;}
.y5f{bottom:344.910000px;}
.y28{bottom:347.250000px;}
.yab{bottom:349.590000px;}
.yd3{bottom:353.550000px;}
.yf0{bottom:362.010000px;}
.y5e{bottom:363.450000px;}
.y91{bottom:364.530000px;}
.y27{bottom:369.750000px;}
.yd2{bottom:370.830000px;}
.yef{bottom:380.550000px;}
.y26{bottom:381.810000px;}
.y5d{bottom:382.170000px;}
.yd1{bottom:388.110000px;}
.y90{bottom:399.090000px;}
.yee{bottom:399.270000px;}
.y5c{bottom:400.710000px;}
.y25{bottom:404.310000px;}
.yd0{bottom:405.435000px;}
.y24{bottom:416.415000px;}
.yed{bottom:418.035000px;}
.y5b{bottom:419.475000px;}
.ycf{bottom:422.715000px;}
.y8f{bottom:433.515000px;}
.yec{bottom:436.575000px;}
.y5a{bottom:438.015000px;}
.y23{bottom:438.735000px;}
.yce{bottom:439.815000px;}
.y8e{bottom:450.795000px;}
.yeb{bottom:455.295000px;}
.y22{bottom:456.015000px;}
.y59{bottom:456.735000px;}
.ycd{bottom:457.095000px;}
.y21{bottom:468.075000px;}
.yea{bottom:473.835000px;}
.ycc{bottom:474.375000px;}
.y58{bottom:475.275000px;}
.y20{bottom:485.355000px;}
.ycb{bottom:491.655000px;}
.ye9{bottom:492.555000px;}
.y57{bottom:493.995000px;}
.y1f{bottom:502.635000px;}
.yca{bottom:508.935000px;}
.ye8{bottom:511.095000px;}
.y56{bottom:512.715000px;}
.y9d{bottom:517.035000px;}
.y1e{bottom:519.735000px;}
.yc9{bottom:526.215000px;}
.ye7{bottom:529.815000px;}
.y55{bottom:531.255000px;}
.y9c{bottom:534.315000px;}
.y1d{bottom:537.015000px;}
.yc8{bottom:543.315000px;}
.ye6{bottom:548.355000px;}
.y54{bottom:549.975000px;}
.y9b{bottom:551.595000px;}
.y1c{bottom:553.935000px;}
.y8d{bottom:554.295000px;}
.yc7{bottom:560.595000px;}
.ye5{bottom:567.075000px;}
.y1b{bottom:568.515000px;}
.y9a{bottom:568.875000px;}
.y8c{bottom:571.575000px;}
.yc6{bottom:577.875000px;}
.y1a{bottom:583.095000px;}
.ye4{bottom:585.795000px;}
.y99{bottom:585.975000px;}
.y53{bottom:587.235000px;}
.y8b{bottom:588.855000px;}
.yc5{bottom:595.155000px;}
.y19{bottom:597.855000px;}
.ye3{bottom:604.335000px;}
.y52{bottom:604.695000px;}
.y8a{bottom:606.135000px;}
.y18{bottom:612.435000px;}
.y51{bottom:621.975000px;}
.ye2{bottom:623.055000px;}
.y89{bottom:623.235000px;}
.y17{bottom:627.195000px;}
.yc4{bottom:629.715000px;}
.y98{bottom:635.655000px;}
.y50{bottom:639.255000px;}
.y88{bottom:640.515000px;}
.y16{bottom:642.495000px;}
.yc3{bottom:646.815000px;}
.yaa{bottom:655.845000px;}
.y4f{bottom:656.565000px;}
.y87{bottom:657.825000px;}
.y15{bottom:661.785000px;}
.yc2{bottom:664.125000px;}
.ya9{bottom:673.125000px;}
.y4e{bottom:673.845000px;}
.y86{bottom:675.105000px;}
.ya8{bottom:690.405000px;}
.yc1{bottom:690.585000px;}
.y4d{bottom:690.945000px;}
.y85{bottom:692.385000px;}
.y14{bottom:704.445000px;}
.y4c{bottom:708.225000px;}
.y84{bottom:709.665000px;}
.y114{bottom:711.825000px;}
.yc0{bottom:713.805000px;}
.ya7{bottom:716.685000px;}
.y13{bottom:721.725000px;}
.y83{bottom:726.765000px;}
.y113{bottom:730.365000px;}
.y4b{bottom:730.725000px;}
.ya6{bottom:734.325000px;}
.y4a{bottom:742.785000px;}
.y82{bottom:744.045000px;}
.y12{bottom:747.465000px;}
.y112{bottom:749.085000px;}
.ya5{bottom:757.545000px;}
.y81{bottom:761.325000px;}
.y49{bottom:765.285000px;}
.y111{bottom:767.625000px;}
.y11{bottom:773.385000px;}
.y48{bottom:777.345000px;}
.y80{bottom:778.605000px;}
.y110{bottom:786.345000px;}
.y47{bottom:794.445000px;}
.y7f{bottom:795.885000px;}
.y10{bottom:799.305000px;}
.y10f{bottom:804.885000px;}
.y7e{bottom:812.985000px;}
.y46{bottom:816.945000px;}
.y10e{bottom:823.605000px;}
.yf{bottom:825.045000px;}
.y45{bottom:829.005000px;}
.y7d{bottom:830.265000px;}
.y10d{bottom:842.325000px;}
.y7c{bottom:847.545000px;}
.ye{bottom:850.965000px;}
.y44{bottom:851.505000px;}
.y10c{bottom:860.865000px;}
.y43{bottom:863.565000px;}
.y7b{bottom:864.825000px;}
.yd{bottom:876.885000px;}
.y10b{bottom:879.585000px;}
.y42{bottom:880.845000px;}
.y7a{bottom:882.105000px;}
.y10a{bottom:898.170000px;}
.y79{bottom:899.430000px;}
.yc{bottom:902.850000px;}
.y41{bottom:903.210000px;}
.y40{bottom:915.270000px;}
.y78{bottom:916.530000px;}
.y109{bottom:916.890000px;}
.yb{bottom:928.590000px;}
.y77{bottom:933.810000px;}
.y108{bottom:935.430000px;}
.y3f{bottom:937.770000px;}
.y3e{bottom:949.830000px;}
.y76{bottom:951.090000px;}
.y107{bottom:954.150000px;}
.ya{bottom:965.850000px;}
.y75{bottom:968.370000px;}
.y3d{bottom:972.330000px;}
.y106{bottom:972.690000px;}
.y3c{bottom:984.210000px;}
.y74{bottom:985.650000px;}
.y105{bottom:991.410000px;}
.y9{bottom:996.810000px;}
.y3b{bottom:1001.490000px;}
.y73{bottom:1002.930000px;}
.y104{bottom:1010.130000px;}
.y3a{bottom:1020.030000px;}
.y8{bottom:1025.790000px;}
.y103{bottom:1028.670000px;}
.y72{bottom:1037.310000px;}
.y39{bottom:1044.150000px;}
.y7{bottom:1044.510000px;}
.y102{bottom:1047.390000px;}
.y71{bottom:1054.590000px;}
.y6{bottom:1063.410000px;}
.y101{bottom:1065.930000px;}
.y38{bottom:1071.870000px;}
.y5{bottom:1082.490000px;}
.y100{bottom:1084.650000px;}
.y70{bottom:1089.150000px;}
.y37{bottom:1099.770000px;}
.y4{bottom:1101.390000px;}
.yff{bottom:1103.190000px;}
.y6f{bottom:1106.430000px;}
.y36{bottom:1118.850000px;}
.y3{bottom:1120.470000px;}
.yfe{bottom:1121.910000px;}
.y6e{bottom:1123.530000px;}
.y35{bottom:1134.330000px;}
.y2{bottom:1139.370000px;}
.yfd{bottom:1140.480000px;}
.y6d{bottom:1140.840000px;}
.y6c{bottom:1172.700000px;}
.hb{height:38.158594px;}
.h12{height:41.726953px;}
.hf{height:43.419375px;}
.he{height:43.506914px;}
.h11{height:50.597578px;}
.ha{height:53.316562px;}
.h8{height:58.651172px;}
.hc{height:59.038594px;}
.h7{height:60.226875px;}
.h2{height:62.327813px;}
.h9{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:69.086250px;}
.h10{height:82.676953px;}
.hd{height:84.898125px;}
.h4{height:87.859687px;}
.h6{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x17{left:120.635987px;}
.x19{left:127.475987px;}
.x1d{left:135.035987px;}
.x1c{left:161.669987px;}
.xf{left:224.489987px;}
.x15{left:244.469987px;}
.x1a{left:292.034987px;}
.x13{left:297.074987px;}
.xd{left:355.574987px;}
.x11{left:358.994987px;}
.x10{left:379.154987px;}
.x18{left:422.894987px;}
.x4{left:528.224987px;}
.x3{left:650.264987px;}
.x7{left:656.384987px;}
.x9{left:658.904987px;}
.x5{left:664.844987px;}
.xb{left:671.369987px;}
.xc{left:677.129987px;}
.x6{left:682.349987px;}
.xa{left:690.629987px;}
.x8{left:694.049987px;}
.x16{left:738.149987px;}
.x14{left:750.569987px;}
.x12{left:761.909987px;}
.x1b{left:767.669987px;}
.xe{left:777.209987px;}
.x2{left:785.129987px;}
@media print{
.v3{vertical-align:-81.280000pt;}
.v1{vertical-align:-71.040000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v2{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.183467pt;}
.ls32{letter-spacing:-0.154667pt;}
.ls2b{letter-spacing:-0.098133pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.037120pt;}
.ls2e{letter-spacing:-0.035840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.017280pt;}
.lsd{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.074667pt;}
.ls13{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls30{letter-spacing:0.234880pt;}
.ls2d{letter-spacing:0.253333pt;}
.ls0{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls31{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.272533pt;}
.ls2f{letter-spacing:0.308267pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.335467pt;}
.lse{letter-spacing:0.378027pt;}
.ls24{letter-spacing:0.414933pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.592000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls22{letter-spacing:4.000000pt;}
.ls20{letter-spacing:4.640000pt;}
.ls18{letter-spacing:5.280000pt;}
.ls5{letter-spacing:6.080000pt;}
.ls16{letter-spacing:6.560000pt;}
.lsf{letter-spacing:9.280000pt;}
.ls1b{letter-spacing:9.760000pt;}
.ls19{letter-spacing:10.400000pt;}
.ls1f{letter-spacing:11.040000pt;}
.ls1e{letter-spacing:12.320000pt;}
.ls17{letter-spacing:12.960000pt;}
.ls28{letter-spacing:14.672640pt;}
.ls26{letter-spacing:40.912640pt;}
.ls1{letter-spacing:127.520000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws3{word-spacing:-16.640107pt;}
.ws4{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws0{word-spacing:-14.672427pt;}
.ws12{word-spacing:-13.694933pt;}
.wsa{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.588267pt;}
.ws11{word-spacing:-13.552533pt;}
.ws1a{word-spacing:-13.552000pt;}
.ws8{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.354667pt;}
.ws9{word-spacing:-13.327360pt;}
.ws16{word-spacing:-13.297280pt;}
.ws7{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.244160pt;}
.wsd{word-spacing:-13.242880pt;}
.ws10{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.181867pt;}
.ws1b{word-spacing:-13.125333pt;}
.ws13{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.967787pt;}
.wsf{word-spacing:-12.960000pt;}
.wsb{word-spacing:-8.960000pt;}
.ws17{word-spacing:-8.893333pt;}
.ws5{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._2{margin-left:-0.889600pt;}
._0{width:1.115520pt;}
._5{width:2.026667pt;}
._7{width:3.230293pt;}
._6{width:4.245547pt;}
._8{width:5.372587pt;}
._16{width:6.374400pt;}
._a{width:7.288107pt;}
._9{width:8.672853pt;}
._19{width:9.744000pt;}
._c{width:10.780800pt;}
._d{width:11.691947pt;}
._1b{width:14.359040pt;}
._17{width:15.275307pt;}
._b{width:16.467200pt;}
._18{width:17.499733pt;}
._1a{width:18.485760pt;}
._1e{width:19.533867pt;}
._e{width:20.451200pt;}
._f{width:21.407360pt;}
._10{width:22.338773pt;}
._11{width:23.656747pt;}
._1f{width:27.036160pt;}
._21{width:28.101333pt;}
._20{width:30.544000pt;}
._1c{width:37.343360pt;}
._1d{width:38.299520pt;}
._23{width:44.394880pt;}
._22{width:45.630080pt;}
._13{width:72.575147pt;}
._15{width:73.580160pt;}
._14{width:74.557867pt;}
._3{width:78.912000pt;}
._24{width:101.920640pt;}
._25{width:103.692373pt;}
._12{width:108.114987pt;}
._1{width:319.474133pt;}
._4{width:402.389333pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:52.320000pt;}
.ya4{bottom:99.360000pt;}
.ye1{bottom:99.680000pt;}
.ybf{bottom:106.080000pt;}
.y97{bottom:109.280000pt;}
.y6b{bottom:112.160000pt;}
.yb7{bottom:113.280000pt;}
.ya3{bottom:114.720000pt;}
.ye0{bottom:115.040000pt;}
.y34{bottom:119.680000pt;}
.ybe{bottom:121.440000pt;}
.yfc{bottom:122.880000pt;}
.y96{bottom:124.640000pt;}
.y6a{bottom:127.520000pt;}
.yb6{bottom:128.640000pt;}
.ya2{bottom:130.080000pt;}
.ydf{bottom:130.240000pt;}
.ybd{bottom:136.800000pt;}
.yfb{bottom:139.520000pt;}
.y33{bottom:140.000000pt;}
.y69{bottom:142.906667pt;}
.yb5{bottom:144.026667pt;}
.ya1{bottom:145.466667pt;}
.yde{bottom:145.626667pt;}
.ybc{bottom:152.026667pt;}
.y32{bottom:155.386667pt;}
.yfa{bottom:156.026667pt;}
.y68{bottom:158.106667pt;}
.yb4{bottom:159.386667pt;}
.ya0{bottom:160.666667pt;}
.ydd{bottom:160.986667pt;}
.ybb{bottom:167.386667pt;}
.y95{bottom:170.746667pt;}
.yf9{bottom:172.666667pt;}
.y67{bottom:174.426667pt;}
.yb3{bottom:174.746667pt;}
.y31{bottom:175.386667pt;}
.ydc{bottom:176.346667pt;}
.yba{bottom:182.746667pt;}
.y9f{bottom:184.186667pt;}
.y30{bottom:186.106667pt;}
.yf8{bottom:189.146667pt;}
.yb2{bottom:189.946667pt;}
.y66{bottom:191.066667pt;}
.ydb{bottom:191.706667pt;}
.y94{bottom:201.306667pt;}
.y9e{bottom:204.826667pt;}
.yb1{bottom:205.306667pt;}
.yf7{bottom:205.786667pt;}
.y2f{bottom:205.946667pt;}
.yb9{bottom:206.266667pt;}
.yda{bottom:207.066667pt;}
.y65{bottom:207.386667pt;}
.y2e{bottom:216.666667pt;}
.yb0{bottom:220.666667pt;}
.yd9{bottom:222.266667pt;}
.yf6{bottom:222.426667pt;}
.y64{bottom:223.706667pt;}
.yb8{bottom:226.906667pt;}
.y2d{bottom:232.026667pt;}
.yaf{bottom:236.026667pt;}
.yd8{bottom:237.626667pt;}
.yf5{bottom:238.906667pt;}
.y63{bottom:240.186667pt;}
.y93{bottom:247.386667pt;}
.yae{bottom:251.386667pt;}
.y2c{bottom:252.026667pt;}
.yd7{bottom:252.986667pt;}
.yf4{bottom:255.546667pt;}
.y62{bottom:256.826667pt;}
.y2b{bottom:262.746667pt;}
.yad{bottom:266.586667pt;}
.yd6{bottom:268.346667pt;}
.yf3{bottom:272.026667pt;}
.y61{bottom:273.306667pt;}
.y92{bottom:278.106667pt;}
.y2a{bottom:282.746667pt;}
.yd5{bottom:283.706667pt;}
.yf2{bottom:288.666667pt;}
.y60{bottom:289.946667pt;}
.yac{bottom:290.106667pt;}
.y29{bottom:293.306667pt;}
.yd4{bottom:298.906667pt;}
.yf1{bottom:305.146667pt;}
.y5f{bottom:306.586667pt;}
.y28{bottom:308.666667pt;}
.yab{bottom:310.746667pt;}
.yd3{bottom:314.266667pt;}
.yf0{bottom:321.786667pt;}
.y5e{bottom:323.066667pt;}
.y91{bottom:324.026667pt;}
.y27{bottom:328.666667pt;}
.yd2{bottom:329.626667pt;}
.yef{bottom:338.266667pt;}
.y26{bottom:339.386667pt;}
.y5d{bottom:339.706667pt;}
.yd1{bottom:344.986667pt;}
.y90{bottom:354.746667pt;}
.yee{bottom:354.906667pt;}
.y5c{bottom:356.186667pt;}
.y25{bottom:359.386667pt;}
.yd0{bottom:360.386667pt;}
.y24{bottom:370.146667pt;}
.yed{bottom:371.586667pt;}
.y5b{bottom:372.866667pt;}
.ycf{bottom:375.746667pt;}
.y8f{bottom:385.346667pt;}
.yec{bottom:388.066667pt;}
.y5a{bottom:389.346667pt;}
.y23{bottom:389.986667pt;}
.yce{bottom:390.946667pt;}
.y8e{bottom:400.706667pt;}
.yeb{bottom:404.706667pt;}
.y22{bottom:405.346667pt;}
.y59{bottom:405.986667pt;}
.ycd{bottom:406.306667pt;}
.y21{bottom:416.066667pt;}
.yea{bottom:421.186667pt;}
.ycc{bottom:421.666667pt;}
.y58{bottom:422.466667pt;}
.y20{bottom:431.426667pt;}
.ycb{bottom:437.026667pt;}
.ye9{bottom:437.826667pt;}
.y57{bottom:439.106667pt;}
.y1f{bottom:446.786667pt;}
.yca{bottom:452.386667pt;}
.ye8{bottom:454.306667pt;}
.y56{bottom:455.746667pt;}
.y9d{bottom:459.586667pt;}
.y1e{bottom:461.986667pt;}
.yc9{bottom:467.746667pt;}
.ye7{bottom:470.946667pt;}
.y55{bottom:472.226667pt;}
.y9c{bottom:474.946667pt;}
.y1d{bottom:477.346667pt;}
.yc8{bottom:482.946667pt;}
.ye6{bottom:487.426667pt;}
.y54{bottom:488.866667pt;}
.y9b{bottom:490.306667pt;}
.y1c{bottom:492.386667pt;}
.y8d{bottom:492.706667pt;}
.yc7{bottom:498.306667pt;}
.ye5{bottom:504.066667pt;}
.y1b{bottom:505.346667pt;}
.y9a{bottom:505.666667pt;}
.y8c{bottom:508.066667pt;}
.yc6{bottom:513.666667pt;}
.y1a{bottom:518.306667pt;}
.ye4{bottom:520.706667pt;}
.y99{bottom:520.866667pt;}
.y53{bottom:521.986667pt;}
.y8b{bottom:523.426667pt;}
.yc5{bottom:529.026667pt;}
.y19{bottom:531.426667pt;}
.ye3{bottom:537.186667pt;}
.y52{bottom:537.506667pt;}
.y8a{bottom:538.786667pt;}
.y18{bottom:544.386667pt;}
.y51{bottom:552.866667pt;}
.ye2{bottom:553.826667pt;}
.y89{bottom:553.986667pt;}
.y17{bottom:557.506667pt;}
.yc4{bottom:559.746667pt;}
.y98{bottom:565.026667pt;}
.y50{bottom:568.226667pt;}
.y88{bottom:569.346667pt;}
.y16{bottom:571.106667pt;}
.yc3{bottom:574.946667pt;}
.yaa{bottom:582.973333pt;}
.y4f{bottom:583.613333pt;}
.y87{bottom:584.733333pt;}
.y15{bottom:588.253333pt;}
.yc2{bottom:590.333333pt;}
.ya9{bottom:598.333333pt;}
.y4e{bottom:598.973333pt;}
.y86{bottom:600.093333pt;}
.ya8{bottom:613.693333pt;}
.yc1{bottom:613.853333pt;}
.y4d{bottom:614.173333pt;}
.y85{bottom:615.453333pt;}
.y14{bottom:626.173333pt;}
.y4c{bottom:629.533333pt;}
.y84{bottom:630.813333pt;}
.y114{bottom:632.733333pt;}
.yc0{bottom:634.493333pt;}
.ya7{bottom:637.053333pt;}
.y13{bottom:641.533333pt;}
.y83{bottom:646.013333pt;}
.y113{bottom:649.213333pt;}
.y4b{bottom:649.533333pt;}
.ya6{bottom:652.733333pt;}
.y4a{bottom:660.253333pt;}
.y82{bottom:661.373333pt;}
.y12{bottom:664.413333pt;}
.y112{bottom:665.853333pt;}
.ya5{bottom:673.373333pt;}
.y81{bottom:676.733333pt;}
.y49{bottom:680.253333pt;}
.y111{bottom:682.333333pt;}
.y11{bottom:687.453333pt;}
.y48{bottom:690.973333pt;}
.y80{bottom:692.093333pt;}
.y110{bottom:698.973333pt;}
.y47{bottom:706.173333pt;}
.y7f{bottom:707.453333pt;}
.y10{bottom:710.493333pt;}
.y10f{bottom:715.453333pt;}
.y7e{bottom:722.653333pt;}
.y46{bottom:726.173333pt;}
.y10e{bottom:732.093333pt;}
.yf{bottom:733.373333pt;}
.y45{bottom:736.893333pt;}
.y7d{bottom:738.013333pt;}
.y10d{bottom:748.733333pt;}
.y7c{bottom:753.373333pt;}
.ye{bottom:756.413333pt;}
.y44{bottom:756.893333pt;}
.y10c{bottom:765.213333pt;}
.y43{bottom:767.613333pt;}
.y7b{bottom:768.733333pt;}
.yd{bottom:779.453333pt;}
.y10b{bottom:781.853333pt;}
.y42{bottom:782.973333pt;}
.y7a{bottom:784.093333pt;}
.y10a{bottom:798.373333pt;}
.y79{bottom:799.493333pt;}
.yc{bottom:802.533333pt;}
.y41{bottom:802.853333pt;}
.y40{bottom:813.573333pt;}
.y78{bottom:814.693333pt;}
.y109{bottom:815.013333pt;}
.yb{bottom:825.413333pt;}
.y77{bottom:830.053333pt;}
.y108{bottom:831.493333pt;}
.y3f{bottom:833.573333pt;}
.y3e{bottom:844.293333pt;}
.y76{bottom:845.413333pt;}
.y107{bottom:848.133333pt;}
.ya{bottom:858.533333pt;}
.y75{bottom:860.773333pt;}
.y3d{bottom:864.293333pt;}
.y106{bottom:864.613333pt;}
.y3c{bottom:874.853333pt;}
.y74{bottom:876.133333pt;}
.y105{bottom:881.253333pt;}
.y9{bottom:886.053333pt;}
.y3b{bottom:890.213333pt;}
.y73{bottom:891.493333pt;}
.y104{bottom:897.893333pt;}
.y3a{bottom:906.693333pt;}
.y8{bottom:911.813333pt;}
.y103{bottom:914.373333pt;}
.y72{bottom:922.053333pt;}
.y39{bottom:928.133333pt;}
.y7{bottom:928.453333pt;}
.y102{bottom:931.013333pt;}
.y71{bottom:937.413333pt;}
.y6{bottom:945.253333pt;}
.y101{bottom:947.493333pt;}
.y38{bottom:952.773333pt;}
.y5{bottom:962.213333pt;}
.y100{bottom:964.133333pt;}
.y70{bottom:968.133333pt;}
.y37{bottom:977.573333pt;}
.y4{bottom:979.013333pt;}
.yff{bottom:980.613333pt;}
.y6f{bottom:983.493333pt;}
.y36{bottom:994.533333pt;}
.y3{bottom:995.973333pt;}
.yfe{bottom:997.253333pt;}
.y6e{bottom:998.693333pt;}
.y35{bottom:1008.293333pt;}
.y2{bottom:1012.773333pt;}
.yfd{bottom:1013.760000pt;}
.y6d{bottom:1014.080000pt;}
.y6c{bottom:1042.400000pt;}
.hb{height:33.918750pt;}
.h12{height:37.090625pt;}
.hf{height:38.595000pt;}
.he{height:38.672812pt;}
.h11{height:44.975625pt;}
.ha{height:47.392500pt;}
.h8{height:52.134375pt;}
.hc{height:52.478750pt;}
.h7{height:53.535000pt;}
.h2{height:55.402500pt;}
.h9{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:61.410000pt;}
.h10{height:73.490625pt;}
.hd{height:75.465000pt;}
.h4{height:78.097500pt;}
.h6{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x17{left:107.231988pt;}
.x19{left:113.311988pt;}
.x1d{left:120.031988pt;}
.x1c{left:143.706655pt;}
.xf{left:199.546655pt;}
.x15{left:217.306655pt;}
.x1a{left:259.586655pt;}
.x13{left:264.066655pt;}
.xd{left:316.066655pt;}
.x11{left:319.106655pt;}
.x10{left:337.026655pt;}
.x18{left:375.906655pt;}
.x4{left:469.533322pt;}
.x3{left:578.013322pt;}
.x7{left:583.453322pt;}
.x9{left:585.693322pt;}
.x5{left:590.973322pt;}
.xb{left:596.773322pt;}
.xc{left:601.893322pt;}
.x6{left:606.533322pt;}
.xa{left:613.893322pt;}
.x8{left:616.933322pt;}
.x16{left:656.133322pt;}
.x14{left:667.173322pt;}
.x12{left:677.253322pt;}
.x1b{left:682.373322pt;}
.xe{left:690.853322pt;}
.x2{left:697.893322pt;}
}




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