
    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_b82dc9fedd8045a6fa44dfb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_00fcfaff69eb978956a7bb60.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b172817bd965d073eb6bf0f7.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_46376079db3657b1d8678131.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_77aa8d819bcb25a08befde4e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_002b9a6952ca4c391e3dc4d6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6a65d8d70f770a575cba6d6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.975586;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_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_38e7f1271301a53857dde11f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_4ca097ae661f7b851cdd6a1b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.956543;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.080000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.120000px;}
.v3{vertical-align:48.240000px;}
.v2{vertical-align:54.720000px;}
.ls32{letter-spacing:-2.880000px;}
.ls31{letter-spacing:-1.800000px;}
.ls23{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.008000px;}
.ls2c{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.567600px;}
.ls38{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.034560px;}
.ls18{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.109200px;}
.ls2f{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.259200px;}
.ls5{letter-spacing:0.262080px;}
.ls21{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.396000px;}
.ls24{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.504000px;}
.ls2d{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.008000px;}
.lsb{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.160000px;}
.ls30{letter-spacing:2.880000px;}
.ls28{letter-spacing:3.600000px;}
.ls11{letter-spacing:4.320000px;}
.ls4{letter-spacing:5.040000px;}
.ls13{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.ls25{letter-spacing:7.920000px;}
.ls26{letter-spacing:8.640000px;}
.ls33{letter-spacing:11.496000px;}
.ls1b{letter-spacing:11.520000px;}
.ls2b{letter-spacing:15.120000px;}
.ls2a{letter-spacing:15.300000px;}
.ls29{letter-spacing:15.840000px;}
.ls27{letter-spacing:16.560000px;}
.ls6{letter-spacing:34.020000px;}
.ls3a{letter-spacing:34.841280px;}
.ls1a{letter-spacing:54.120000px;}
.ls17{letter-spacing:62.040000px;}
.ls36{letter-spacing:67.961280px;}
.ls34{letter-spacing:75.576000px;}
.ls19{letter-spacing:76.440000px;}
.ls35{letter-spacing:859.836000px;}
.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;}
}
.ws5{word-spacing:-84.060000px;}
.ws1{word-spacing:-19.474560px;}
.ws0{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.504000px;}
.wse{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.552000px;}
.ws10{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.572800px;}
.ws12{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.wsf{word-spacing:-10.260000px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:195.456000px;}
._17{margin-left:-9.288000px;}
._1d{margin-left:-5.040000px;}
._1c{margin-left:-3.240000px;}
._6{margin-left:-2.021760px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._7{width:2.352480px;}
._13{width:3.388800px;}
._9{width:4.472640px;}
._8{width:5.564160px;}
._a{width:6.624000px;}
._d{width:7.931520px;}
._12{width:9.116160px;}
._b{width:10.303680px;}
._c{width:11.626560px;}
._18{width:12.674880px;}
._14{width:13.701120px;}
._15{width:15.033600px;}
._16{width:16.560000px;}
._19{width:19.800000px;}
._10{width:25.334400px;}
._f{width:26.429760px;}
._22{width:28.791360px;}
._23{width:30.404160px;}
._e{width:33.252480px;}
._1a{width:34.992000px;}
._1b{width:36.720000px;}
._20{width:46.831680px;}
._21{width:48.775200px;}
._1f{width:84.288960px;}
._1e{width:85.449600px;}
._1{width:480.335520px;}
._11{width:728.841120px;}
._4{width:756.300000px;}
._2{width:778.620000px;}
._3{width:831.888480px;}
._25{width:847.740000px;}
._24{width:2224.442880px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:69.822393px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.ye0{bottom:4.125000px;}
.y119{bottom:4.140000px;}
.y58{bottom:4.320000px;}
.ye4{bottom:4.485000px;}
.ye9{bottom:4.486500px;}
.yec{bottom:4.500000px;}
.yde{bottom:14.565000px;}
.y117{bottom:14.580000px;}
.ye2{bottom:14.745000px;}
.yef{bottom:14.760000px;}
.ye7{bottom:14.926500px;}
.yed{bottom:14.940000px;}
.y9{bottom:21.240000px;}
.ydf{bottom:24.825000px;}
.y118{bottom:24.840000px;}
.ye3{bottom:25.185000px;}
.ye8{bottom:25.186500px;}
.yf0{bottom:25.200000px;}
.yeb{bottom:25.230000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y141{bottom:139.896000px;}
.y38{bottom:140.256000px;}
.y56{bottom:144.036000px;}
.y112{bottom:144.396000px;}
.ye6{bottom:146.923500px;}
.y101{bottom:147.636000px;}
.y140{bottom:158.970000px;}
.y37{bottom:159.150000px;}
.ya2{bottom:159.690000px;}
.y55{bottom:164.730000px;}
.y111{bottom:165.090000px;}
.y7d{bottom:165.270000px;}
.y100{bottom:168.330000px;}
.y16f{bottom:172.830000px;}
.y13f{bottom:177.870000px;}
.y36{bottom:178.230000px;}
.ya1{bottom:180.390000px;}
.yff{bottom:184.530000px;}
.y54{bottom:185.430000px;}
.y7c{bottom:185.610000px;}
.y110{bottom:185.790000px;}
.yc3{bottom:187.050000px;}
.ye5{bottom:189.945000px;}
.y16e{bottom:191.730000px;}
.y13e{bottom:196.950000px;}
.y35{bottom:197.130000px;}
.ya0{bottom:201.090000px;}
.y53{bottom:206.130000px;}
.y10f{bottom:206.490000px;}
.y7b{bottom:206.670000px;}
.yc2{bottom:207.750000px;}
.y16d{bottom:210.810000px;}
.y13d{bottom:215.850000px;}
.y34{bottom:216.210000px;}
.y9f{bottom:221.790000px;}
.y52{bottom:226.830000px;}
.y10e{bottom:227.010000px;}
.y7a{bottom:227.370000px;}
.yc1{bottom:228.450000px;}
.y16c{bottom:229.710000px;}
.ye1{bottom:232.785000px;}
.y13c{bottom:234.750000px;}
.y33{bottom:235.110000px;}
.y9e{bottom:242.490000px;}
.yc0{bottom:245.550000px;}
.y51{bottom:247.530000px;}
.y79{bottom:248.070000px;}
.y10d{bottom:248.250000px;}
.y16b{bottom:248.610000px;}
.y13b{bottom:253.830000px;}
.y32{bottom:254.010000px;}
.ybf{bottom:257.610000px;}
.y9d{bottom:263.190000px;}
.y16a{bottom:267.690000px;}
.y50{bottom:268.230000px;}
.y78{bottom:268.770000px;}
.y10c{bottom:268.950000px;}
.y13a{bottom:272.730000px;}
.y31{bottom:273.090000px;}
.ydd{bottom:275.625000px;}
.y9c{bottom:283.890000px;}
.y169{bottom:286.590000px;}
.y4f{bottom:288.930000px;}
.y77{bottom:289.470000px;}
.y10b{bottom:289.650000px;}
.ybe{bottom:290.190000px;}
.y139{bottom:291.810000px;}
.y30{bottom:292.350000px;}
.y9b{bottom:304.590000px;}
.y168{bottom:305.670000px;}
.y4e{bottom:309.630000px;}
.y76{bottom:310.170000px;}
.y10a{bottom:310.350000px;}
.y138{bottom:310.710000px;}
.ybd{bottom:310.890000px;}
.y2f{bottom:311.430000px;}
.ydc{bottom:323.130000px;}
.y167{bottom:324.570000px;}
.y9a{bottom:325.290000px;}
.y137{bottom:329.790000px;}
.y2e{bottom:330.330000px;}
.y75{bottom:330.870000px;}
.y109{bottom:331.050000px;}
.ybc{bottom:331.590000px;}
.y166{bottom:343.470000px;}
.ydb{bottom:343.830000px;}
.y99{bottom:345.990000px;}
.y136{bottom:348.690000px;}
.y2d{bottom:349.230000px;}
.y4d{bottom:351.030000px;}
.y74{bottom:351.570000px;}
.y108{bottom:351.750000px;}
.ybb{bottom:352.110000px;}
.y165{bottom:362.550000px;}
.yda{bottom:364.350000px;}
.y98{bottom:366.690000px;}
.y135{bottom:367.590000px;}
.y2c{bottom:368.310000px;}
.y4c{bottom:371.730000px;}
.y73{bottom:372.270000px;}
.y107{bottom:372.450000px;}
.yba{bottom:372.810000px;}
.y164{bottom:381.495000px;}
.yd9{bottom:385.095000px;}
.y134{bottom:386.715000px;}
.y2b{bottom:387.255000px;}
.y97{bottom:387.435000px;}
.y106{bottom:388.875000px;}
.y4b{bottom:392.475000px;}
.y72{bottom:393.015000px;}
.yb9{bottom:393.555000px;}
.y163{bottom:400.575000px;}
.y133{bottom:405.615000px;}
.yd8{bottom:405.795000px;}
.y2a{bottom:406.335000px;}
.y96{bottom:408.135000px;}
.y4a{bottom:413.175000px;}
.y71{bottom:413.715000px;}
.yb8{bottom:414.255000px;}
.y162{bottom:419.475000px;}
.y132{bottom:424.695000px;}
.y29{bottom:425.235000px;}
.yd7{bottom:426.495000px;}
.y95{bottom:428.835000px;}
.y49{bottom:433.875000px;}
.y70{bottom:434.415000px;}
.yb7{bottom:434.955000px;}
.y161{bottom:438.375000px;}
.y131{bottom:443.595000px;}
.y28{bottom:444.315000px;}
.yd6{bottom:447.195000px;}
.y94{bottom:449.535000px;}
.y48{bottom:454.575000px;}
.y6f{bottom:455.115000px;}
.yb6{bottom:455.655000px;}
.y160{bottom:457.455000px;}
.y130{bottom:462.495000px;}
.y27{bottom:463.215000px;}
.yfe{bottom:465.195000px;}
.yd5{bottom:467.895000px;}
.y93{bottom:470.235000px;}
.y47{bottom:475.275000px;}
.y6e{bottom:475.815000px;}
.y15f{bottom:476.355000px;}
.yb5{bottom:476.895000px;}
.y12f{bottom:481.575000px;}
.y26{bottom:482.475000px;}
.yfd{bottom:485.895000px;}
.yd4{bottom:489.135000px;}
.y92{bottom:490.755000px;}
.y15e{bottom:495.435000px;}
.y46{bottom:495.975000px;}
.y6d{bottom:496.515000px;}
.yb4{bottom:497.595000px;}
.y12e{bottom:500.475000px;}
.y25{bottom:501.555000px;}
.yfc{bottom:506.595000px;}
.yd3{bottom:509.655000px;}
.y91{bottom:511.635000px;}
.y15d{bottom:514.335000px;}
.y45{bottom:516.675000px;}
.y6c{bottom:517.215000px;}
.yb3{bottom:518.295000px;}
.y12d{bottom:519.555000px;}
.y24{bottom:520.455000px;}
.yfb{bottom:522.975000px;}
.yd2{bottom:530.895000px;}
.y90{bottom:532.695000px;}
.y6b{bottom:533.415000px;}
.y44{bottom:537.375000px;}
.y12c{bottom:538.455000px;}
.yb2{bottom:538.995000px;}
.y23{bottom:539.535000px;}
.yd1{bottom:551.595000px;}
.y15c{bottom:552.315000px;}
.y8f{bottom:553.395000px;}
.y12b{bottom:557.355000px;}
.y43{bottom:558.075000px;}
.y22{bottom:558.975000px;}
.yb1{bottom:559.695000px;}
.y15b{bottom:571.215000px;}
.yd0{bottom:572.295000px;}
.y8e{bottom:574.095000px;}
.y42{bottom:574.275000px;}
.y12a{bottom:576.795000px;}
.y21{bottom:579.855000px;}
.yb0{bottom:580.395000px;}
.y15a{bottom:590.295000px;}
.ycf{bottom:592.995000px;}
.y8d{bottom:594.615000px;}
.yaf{bottom:601.095000px;}
.y20{bottom:602.355000px;}
.y159{bottom:609.195000px;}
.yce{bottom:613.695000px;}
.y8c{bottom:616.755000px;}
.y129{bottom:618.195000px;}
.yae{bottom:621.795000px;}
.y1f{bottom:624.135000px;}
.y158{bottom:628.275000px;}
.ycd{bottom:634.425000px;}
.y8b{bottom:637.485000px;}
.y128{bottom:638.925000px;}
.yad{bottom:642.525000px;}
.y1e{bottom:647.205000px;}
.ycc{bottom:654.945000px;}
.y8a{bottom:658.185000px;}
.y127{bottom:659.625000px;}
.yac{bottom:663.225000px;}
.y157{bottom:666.465000px;}
.y1d{bottom:669.525000px;}
.ycb{bottom:676.185000px;}
.y89{bottom:680.325000px;}
.yab{bottom:683.925000px;}
.y156{bottom:685.545000px;}
.y1c{bottom:691.485000px;}
.yca{bottom:696.885000px;}
.y88{bottom:701.025000px;}
.y155{bottom:704.445000px;}
.yaa{bottom:704.625000px;}
.y1b{bottom:714.525000px;}
.yc9{bottom:717.225000px;}
.y87{bottom:721.545000px;}
.y126{bottom:721.725000px;}
.y154{bottom:723.525000px;}
.ya9{bottom:725.145000px;}
.y1a{bottom:736.845000px;}
.yc8{bottom:738.285000px;}
.y125{bottom:742.425000px;}
.y86{bottom:743.685000px;}
.y105{bottom:746.025000px;}
.ya8{bottom:746.385000px;}
.yc7{bottom:758.985000px;}
.y19{bottom:759.345000px;}
.y153{bottom:761.325000px;}
.y124{bottom:763.125000px;}
.y85{bottom:764.385000px;}
.y6a{bottom:766.185000px;}
.y104{bottom:766.725000px;}
.ya7{bottom:767.085000px;}
.yc6{bottom:779.685000px;}
.y152{bottom:780.405000px;}
.y18{bottom:781.125000px;}
.y123{bottom:784.365000px;}
.y84{bottom:785.085000px;}
.y69{bottom:786.885000px;}
.y103{bottom:787.425000px;}
.ya6{bottom:787.785000px;}
.y151{bottom:799.305000px;}
.yc5{bottom:800.385000px;}
.y102{bottom:803.625000px;}
.y17{bottom:804.165000px;}
.y122{bottom:805.065000px;}
.y83{bottom:807.225000px;}
.y68{bottom:808.125000px;}
.ya5{bottom:808.485000px;}
.yc4{bottom:816.765000px;}
.y150{bottom:818.385000px;}
.yfa{bottom:819.825000px;}
.y121{bottom:825.765000px;}
.y16{bottom:826.485000px;}
.y82{bottom:827.925000px;}
.y67{bottom:828.465000px;}
.ya4{bottom:829.185000px;}
.y14f{bottom:837.285000px;}
.yf9{bottom:840.525000px;}
.y120{bottom:846.465000px;}
.y15{bottom:848.445000px;}
.y81{bottom:848.625000px;}
.y66{bottom:849.345000px;}
.ya3{bottom:849.885000px;}
.y14e{bottom:856.185000px;}
.yf8{bottom:861.045000px;}
.y11f{bottom:866.985000px;}
.y80{bottom:869.145000px;}
.y65{bottom:870.585000px;}
.y14{bottom:870.765000px;}
.y14d{bottom:875.265000px;}
.yf7{bottom:881.745000px;}
.y11e{bottom:888.090000px;}
.y7f{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.y14c{bottom:894.210000px;}
.yf6{bottom:902.490000px;}
.y11d{bottom:909.330000px;}
.y7e{bottom:911.670000px;}
.y64{bottom:912.030000px;}
.y14b{bottom:913.290000px;}
.y12{bottom:916.170000px;}
.yf5{bottom:923.730000px;}
.y11c{bottom:929.670000px;}
.y14a{bottom:932.190000px;}
.y63{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.y173{bottom:944.250000px;}
.yf4{bottom:944.430000px;}
.y11b{bottom:950.730000px;}
.y149{bottom:951.270000px;}
.y62{bottom:953.430000px;}
.y41{bottom:956.850000px;}
.yf3{bottom:962.070000px;}
.y172{bottom:963.690000px;}
.y10{bottom:964.590000px;}
.y11a{bottom:967.650000px;}
.y148{bottom:970.170000px;}
.y61{bottom:974.130000px;}
.y40{bottom:977.550000px;}
.y171{bottom:979.890000px;}
.yf{bottom:988.710000px;}
.y116{bottom:989.070000px;}
.y60{bottom:994.830000px;}
.y3f{bottom:998.250000px;}
.y170{bottom:1000.590000px;}
.yf2{bottom:1004.910000px;}
.y147{bottom:1008.150000px;}
.ye{bottom:1012.830000px;}
.y5f{bottom:1015.530000px;}
.y3e{bottom:1018.950000px;}
.y146{bottom:1027.050000px;}
.yf1{bottom:1027.230000px;}
.y57{bottom:1035.150000px;}
.y115{bottom:1035.690000px;}
.y5e{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y3d{bottom:1039.650000px;}
.y145{bottom:1046.130000px;}
.y5d{bottom:1056.930000px;}
.y3c{bottom:1060.350000px;}
.yc{bottom:1060.890000px;}
.y144{bottom:1065.030000px;}
.yee{bottom:1070.070000px;}
.y6{bottom:1077.090000px;}
.y5c{bottom:1077.630000px;}
.y3b{bottom:1080.690000px;}
.y143{bottom:1083.930000px;}
.y114{bottom:1097.790000px;}
.y5b{bottom:1098.330000px;}
.y142{bottom:1103.010000px;}
.yea{bottom:1112.910000px;}
.y113{bottom:1118.490000px;}
.y5a{bottom:1119.030000px;}
.y3a{bottom:1121.910000px;}
.y59{bottom:1139.760000px;}
.y39{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1d{height:20.685000px;}
.h18{height:41.385000px;}
.h1b{height:41.392500px;}
.h1c{height:41.430000px;}
.h3{height:45.184219px;}
.hd{height:56.213437px;}
.h1f{height:59.383125px;}
.h11{height:62.085000px;}
.h19{height:62.261719px;}
.h10{height:64.546875px;}
.he{height:64.978594px;}
.h4{height:65.010937px;}
.h1e{height:68.084282px;}
.hc{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h14{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h1a{height:80.464922px;}
.h20{height:84.352500px;}
.h9{height:84.898125px;}
.hf{height:88.914453px;}
.h13{height:91.687500px;}
.h15{height:96.646145px;}
.h17{height:139.927500px;}
.h16{height:146.407500px;}
.h12{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:54.000000px;}
.w5{width:56.194500px;}
.w6{width:62.809500px;}
.w7{width:68.385000px;}
.w4{width:82.470000px;}
.wf{width:96.825000px;}
.we{width:96.876000px;}
.wc{width:101.541000px;}
.w11{width:105.510000px;}
.w10{width:107.301000px;}
.wb{width:155.008500px;}
.w9{width:171.750000px;}
.w3{width:180.735000px;}
.w8{width:189.915000px;}
.wa{width:211.155000px;}
.w12{width:337.753500px;}
.w13{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x51{left:9.000000px;}
.x3d{left:10.789500px;}
.x31{left:13.845000px;}
.x39{left:14.929500px;}
.x3b{left:16.365000px;}
.x2f{left:17.809500px;}
.x38{left:21.585000px;}
.x36{left:24.120000px;}
.x57{left:27.900000px;}
.x3e{left:29.685000px;}
.x55{left:32.610000px;}
.x46{left:34.545000px;}
.x42{left:35.850000px;}
.x3a{left:37.425000px;}
.x3f{left:39.225000px;}
.x35{left:40.350000px;}
.x3c{left:43.050000px;}
.x48{left:45.750000px;}
.x40{left:51.870000px;}
.x47{left:58.530000px;}
.x45{left:73.290000px;}
.x43{left:75.990000px;}
.x2{left:77.041500px;}
.x44{left:78.510000px;}
.x41{left:81.570000px;}
.x33{left:83.370000px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x2e{left:91.486500px;}
.x2b{left:103.536000px;}
.x4c{left:120.456000px;}
.x4a{left:123.876000px;}
.x19{left:127.476000px;}
.x22{left:141.156000px;}
.xd{left:150.330000px;}
.x30{left:155.925000px;}
.xe{left:159.870000px;}
.x5{left:172.650000px;}
.x9{left:173.910000px;}
.xa{left:181.290000px;}
.x13{left:186.870000px;}
.x27{left:188.850000px;}
.x28{left:196.950000px;}
.x26{left:205.590000px;}
.xb{left:220.890000px;}
.x32{left:225.945000px;}
.x17{left:228.990000px;}
.x4f{left:241.605000px;}
.x4e{left:326.775000px;}
.x2d{left:336.855000px;}
.x14{left:342.075000px;}
.x50{left:343.875000px;}
.x18{left:349.095000px;}
.xf{left:355.395000px;}
.x2c{left:381.495000px;}
.x52{left:398.595000px;}
.x24{left:405.615000px;}
.x58{left:414.795000px;}
.x34{left:417.315000px;}
.x29{left:426.135000px;}
.x1a{left:443.775000px;}
.xc{left:446.505000px;}
.x1b{left:450.465000px;}
.x10{left:467.745000px;}
.x11{left:471.165000px;}
.x53{left:496.200000px;}
.x15{left:501.945000px;}
.x1c{left:505.365000px;}
.x1d{left:512.025000px;}
.x4{left:552.900000px;}
.x37{left:590.520000px;}
.x54{left:593.760000px;}
.x1e{left:595.185000px;}
.x1f{left:601.845000px;}
.x49{left:644.010000px;}
.x4b{left:654.810000px;}
.x4d{left:671.010000px;}
.x20{left:676.950000px;}
.x21{left:683.610000px;}
.x56{left:701.790000px;}
.x2a{left:718.710000px;}
.x12{left:723.930000px;}
.x16{left:730.050000px;}
.x6{left:733.650000px;}
.x23{left:799.710000px;}
.x8{left:808.020000px;}
.x25{left:826.380000px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.440000pt;}
.v3{vertical-align:42.880000pt;}
.v2{vertical-align:48.640000pt;}
.ls32{letter-spacing:-2.560000pt;}
.ls31{letter-spacing:-1.600000pt;}
.ls23{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls2c{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.504533pt;}
.ls38{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.030720pt;}
.ls18{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls2f{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.230400pt;}
.ls5{letter-spacing:0.232960pt;}
.ls21{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.352000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.896000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls30{letter-spacing:2.560000pt;}
.ls28{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls26{letter-spacing:7.680000pt;}
.ls33{letter-spacing:10.218667pt;}
.ls1b{letter-spacing:10.240000pt;}
.ls2b{letter-spacing:13.440000pt;}
.ls2a{letter-spacing:13.600000pt;}
.ls29{letter-spacing:14.080000pt;}
.ls27{letter-spacing:14.720000pt;}
.ls6{letter-spacing:30.240000pt;}
.ls3a{letter-spacing:30.970027pt;}
.ls1a{letter-spacing:48.106667pt;}
.ls17{letter-spacing:55.146667pt;}
.ls36{letter-spacing:60.410027pt;}
.ls34{letter-spacing:67.178667pt;}
.ls19{letter-spacing:67.946667pt;}
.ls35{letter-spacing:764.298667pt;}
.ws5{word-spacing:-74.720000pt;}
.ws1{word-spacing:-17.310720pt;}
.ws0{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.448000pt;}
.wse{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.440000pt;}
.ws13{word-spacing:-12.953600pt;}
.ws12{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.wsf{word-spacing:-9.120000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:173.738667pt;}
._17{margin-left:-8.256000pt;}
._1d{margin-left:-4.480000pt;}
._1c{margin-left:-2.880000pt;}
._6{margin-left:-1.797120pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._7{width:2.091093pt;}
._13{width:3.012267pt;}
._9{width:3.975680pt;}
._8{width:4.945920pt;}
._a{width:5.888000pt;}
._d{width:7.050240pt;}
._12{width:8.103253pt;}
._b{width:9.158827pt;}
._c{width:10.334720pt;}
._18{width:11.266560pt;}
._14{width:12.178773pt;}
._15{width:13.363200pt;}
._16{width:14.720000pt;}
._19{width:17.600000pt;}
._10{width:22.519467pt;}
._f{width:23.493120pt;}
._22{width:25.592320pt;}
._23{width:27.025920pt;}
._e{width:29.557760pt;}
._1a{width:31.104000pt;}
._1b{width:32.640000pt;}
._20{width:41.628160pt;}
._21{width:43.355733pt;}
._1f{width:74.923520pt;}
._1e{width:75.955200pt;}
._1{width:426.964907pt;}
._11{width:647.858773pt;}
._4{width:672.266667pt;}
._2{width:692.106667pt;}
._3{width:739.456427pt;}
._25{width:753.546667pt;}
._24{width:1977.282560pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:62.064349pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.ye0{bottom:3.666667pt;}
.y119{bottom:3.680000pt;}
.y58{bottom:3.840000pt;}
.ye4{bottom:3.986667pt;}
.ye9{bottom:3.988000pt;}
.yec{bottom:4.000000pt;}
.yde{bottom:12.946667pt;}
.y117{bottom:12.960000pt;}
.ye2{bottom:13.106667pt;}
.yef{bottom:13.120000pt;}
.ye7{bottom:13.268000pt;}
.yed{bottom:13.280000pt;}
.y9{bottom:18.880000pt;}
.ydf{bottom:22.066667pt;}
.y118{bottom:22.080000pt;}
.ye3{bottom:22.386667pt;}
.ye8{bottom:22.388000pt;}
.yf0{bottom:22.400000pt;}
.yeb{bottom:22.426667pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y141{bottom:124.352000pt;}
.y38{bottom:124.672000pt;}
.y56{bottom:128.032000pt;}
.y112{bottom:128.352000pt;}
.ye6{bottom:130.598667pt;}
.y101{bottom:131.232000pt;}
.y140{bottom:141.306667pt;}
.y37{bottom:141.466667pt;}
.ya2{bottom:141.946667pt;}
.y55{bottom:146.426667pt;}
.y111{bottom:146.746667pt;}
.y7d{bottom:146.906667pt;}
.y100{bottom:149.626667pt;}
.y16f{bottom:153.626667pt;}
.y13f{bottom:158.106667pt;}
.y36{bottom:158.426667pt;}
.ya1{bottom:160.346667pt;}
.yff{bottom:164.026667pt;}
.y54{bottom:164.826667pt;}
.y7c{bottom:164.986667pt;}
.y110{bottom:165.146667pt;}
.yc3{bottom:166.266667pt;}
.ye5{bottom:168.840000pt;}
.y16e{bottom:170.426667pt;}
.y13e{bottom:175.066667pt;}
.y35{bottom:175.226667pt;}
.ya0{bottom:178.746667pt;}
.y53{bottom:183.226667pt;}
.y10f{bottom:183.546667pt;}
.y7b{bottom:183.706667pt;}
.yc2{bottom:184.666667pt;}
.y16d{bottom:187.386667pt;}
.y13d{bottom:191.866667pt;}
.y34{bottom:192.186667pt;}
.y9f{bottom:197.146667pt;}
.y52{bottom:201.626667pt;}
.y10e{bottom:201.786667pt;}
.y7a{bottom:202.106667pt;}
.yc1{bottom:203.066667pt;}
.y16c{bottom:204.186667pt;}
.ye1{bottom:206.920000pt;}
.y13c{bottom:208.666667pt;}
.y33{bottom:208.986667pt;}
.y9e{bottom:215.546667pt;}
.yc0{bottom:218.266667pt;}
.y51{bottom:220.026667pt;}
.y79{bottom:220.506667pt;}
.y10d{bottom:220.666667pt;}
.y16b{bottom:220.986667pt;}
.y13b{bottom:225.626667pt;}
.y32{bottom:225.786667pt;}
.ybf{bottom:228.986667pt;}
.y9d{bottom:233.946667pt;}
.y16a{bottom:237.946667pt;}
.y50{bottom:238.426667pt;}
.y78{bottom:238.906667pt;}
.y10c{bottom:239.066667pt;}
.y13a{bottom:242.426667pt;}
.y31{bottom:242.746667pt;}
.ydd{bottom:245.000000pt;}
.y9c{bottom:252.346667pt;}
.y169{bottom:254.746667pt;}
.y4f{bottom:256.826667pt;}
.y77{bottom:257.306667pt;}
.y10b{bottom:257.466667pt;}
.ybe{bottom:257.946667pt;}
.y139{bottom:259.386667pt;}
.y30{bottom:259.866667pt;}
.y9b{bottom:270.746667pt;}
.y168{bottom:271.706667pt;}
.y4e{bottom:275.226667pt;}
.y76{bottom:275.706667pt;}
.y10a{bottom:275.866667pt;}
.y138{bottom:276.186667pt;}
.ybd{bottom:276.346667pt;}
.y2f{bottom:276.826667pt;}
.ydc{bottom:287.226667pt;}
.y167{bottom:288.506667pt;}
.y9a{bottom:289.146667pt;}
.y137{bottom:293.146667pt;}
.y2e{bottom:293.626667pt;}
.y75{bottom:294.106667pt;}
.y109{bottom:294.266667pt;}
.ybc{bottom:294.746667pt;}
.y166{bottom:305.306667pt;}
.ydb{bottom:305.626667pt;}
.y99{bottom:307.546667pt;}
.y136{bottom:309.946667pt;}
.y2d{bottom:310.426667pt;}
.y4d{bottom:312.026667pt;}
.y74{bottom:312.506667pt;}
.y108{bottom:312.666667pt;}
.ybb{bottom:312.986667pt;}
.y165{bottom:322.266667pt;}
.yda{bottom:323.866667pt;}
.y98{bottom:325.946667pt;}
.y135{bottom:326.746667pt;}
.y2c{bottom:327.386667pt;}
.y4c{bottom:330.426667pt;}
.y73{bottom:330.906667pt;}
.y107{bottom:331.066667pt;}
.yba{bottom:331.386667pt;}
.y164{bottom:339.106667pt;}
.yd9{bottom:342.306667pt;}
.y134{bottom:343.746667pt;}
.y2b{bottom:344.226667pt;}
.y97{bottom:344.386667pt;}
.y106{bottom:345.666667pt;}
.y4b{bottom:348.866667pt;}
.y72{bottom:349.346667pt;}
.yb9{bottom:349.826667pt;}
.y163{bottom:356.066667pt;}
.y133{bottom:360.546667pt;}
.yd8{bottom:360.706667pt;}
.y2a{bottom:361.186667pt;}
.y96{bottom:362.786667pt;}
.y4a{bottom:367.266667pt;}
.y71{bottom:367.746667pt;}
.yb8{bottom:368.226667pt;}
.y162{bottom:372.866667pt;}
.y132{bottom:377.506667pt;}
.y29{bottom:377.986667pt;}
.yd7{bottom:379.106667pt;}
.y95{bottom:381.186667pt;}
.y49{bottom:385.666667pt;}
.y70{bottom:386.146667pt;}
.yb7{bottom:386.626667pt;}
.y161{bottom:389.666667pt;}
.y131{bottom:394.306667pt;}
.y28{bottom:394.946667pt;}
.yd6{bottom:397.506667pt;}
.y94{bottom:399.586667pt;}
.y48{bottom:404.066667pt;}
.y6f{bottom:404.546667pt;}
.yb6{bottom:405.026667pt;}
.y160{bottom:406.626667pt;}
.y130{bottom:411.106667pt;}
.y27{bottom:411.746667pt;}
.yfe{bottom:413.506667pt;}
.yd5{bottom:415.906667pt;}
.y93{bottom:417.986667pt;}
.y47{bottom:422.466667pt;}
.y6e{bottom:422.946667pt;}
.y15f{bottom:423.426667pt;}
.yb5{bottom:423.906667pt;}
.y12f{bottom:428.066667pt;}
.y26{bottom:428.866667pt;}
.yfd{bottom:431.906667pt;}
.yd4{bottom:434.786667pt;}
.y92{bottom:436.226667pt;}
.y15e{bottom:440.386667pt;}
.y46{bottom:440.866667pt;}
.y6d{bottom:441.346667pt;}
.yb4{bottom:442.306667pt;}
.y12e{bottom:444.866667pt;}
.y25{bottom:445.826667pt;}
.yfc{bottom:450.306667pt;}
.yd3{bottom:453.026667pt;}
.y91{bottom:454.786667pt;}
.y15d{bottom:457.186667pt;}
.y45{bottom:459.266667pt;}
.y6c{bottom:459.746667pt;}
.yb3{bottom:460.706667pt;}
.y12d{bottom:461.826667pt;}
.y24{bottom:462.626667pt;}
.yfb{bottom:464.866667pt;}
.yd2{bottom:471.906667pt;}
.y90{bottom:473.506667pt;}
.y6b{bottom:474.146667pt;}
.y44{bottom:477.666667pt;}
.y12c{bottom:478.626667pt;}
.yb2{bottom:479.106667pt;}
.y23{bottom:479.586667pt;}
.yd1{bottom:490.306667pt;}
.y15c{bottom:490.946667pt;}
.y8f{bottom:491.906667pt;}
.y12b{bottom:495.426667pt;}
.y43{bottom:496.066667pt;}
.y22{bottom:496.866667pt;}
.yb1{bottom:497.506667pt;}
.y15b{bottom:507.746667pt;}
.yd0{bottom:508.706667pt;}
.y8e{bottom:510.306667pt;}
.y42{bottom:510.466667pt;}
.y12a{bottom:512.706667pt;}
.y21{bottom:515.426667pt;}
.yb0{bottom:515.906667pt;}
.y15a{bottom:524.706667pt;}
.ycf{bottom:527.106667pt;}
.y8d{bottom:528.546667pt;}
.yaf{bottom:534.306667pt;}
.y20{bottom:535.426667pt;}
.y159{bottom:541.506667pt;}
.yce{bottom:545.506667pt;}
.y8c{bottom:548.226667pt;}
.y129{bottom:549.506667pt;}
.yae{bottom:552.706667pt;}
.y1f{bottom:554.786667pt;}
.y158{bottom:558.466667pt;}
.ycd{bottom:563.933333pt;}
.y8b{bottom:566.653333pt;}
.y128{bottom:567.933333pt;}
.yad{bottom:571.133333pt;}
.y1e{bottom:575.293333pt;}
.ycc{bottom:582.173333pt;}
.y8a{bottom:585.053333pt;}
.y127{bottom:586.333333pt;}
.yac{bottom:589.533333pt;}
.y157{bottom:592.413333pt;}
.y1d{bottom:595.133333pt;}
.ycb{bottom:601.053333pt;}
.y89{bottom:604.733333pt;}
.yab{bottom:607.933333pt;}
.y156{bottom:609.373333pt;}
.y1c{bottom:614.653333pt;}
.yca{bottom:619.453333pt;}
.y88{bottom:623.133333pt;}
.y155{bottom:626.173333pt;}
.yaa{bottom:626.333333pt;}
.y1b{bottom:635.133333pt;}
.yc9{bottom:637.533333pt;}
.y87{bottom:641.373333pt;}
.y126{bottom:641.533333pt;}
.y154{bottom:643.133333pt;}
.ya9{bottom:644.573333pt;}
.y1a{bottom:654.973333pt;}
.yc8{bottom:656.253333pt;}
.y125{bottom:659.933333pt;}
.y86{bottom:661.053333pt;}
.y105{bottom:663.133333pt;}
.ya8{bottom:663.453333pt;}
.yc7{bottom:674.653333pt;}
.y19{bottom:674.973333pt;}
.y153{bottom:676.733333pt;}
.y124{bottom:678.333333pt;}
.y85{bottom:679.453333pt;}
.y6a{bottom:681.053333pt;}
.y104{bottom:681.533333pt;}
.ya7{bottom:681.853333pt;}
.yc6{bottom:693.053333pt;}
.y152{bottom:693.693333pt;}
.y18{bottom:694.333333pt;}
.y123{bottom:697.213333pt;}
.y84{bottom:697.853333pt;}
.y69{bottom:699.453333pt;}
.y103{bottom:699.933333pt;}
.ya6{bottom:700.253333pt;}
.y151{bottom:710.493333pt;}
.yc5{bottom:711.453333pt;}
.y102{bottom:714.333333pt;}
.y17{bottom:714.813333pt;}
.y122{bottom:715.613333pt;}
.y83{bottom:717.533333pt;}
.y68{bottom:718.333333pt;}
.ya5{bottom:718.653333pt;}
.yc4{bottom:726.013333pt;}
.y150{bottom:727.453333pt;}
.yfa{bottom:728.733333pt;}
.y121{bottom:734.013333pt;}
.y16{bottom:734.653333pt;}
.y82{bottom:735.933333pt;}
.y67{bottom:736.413333pt;}
.ya4{bottom:737.053333pt;}
.y14f{bottom:744.253333pt;}
.yf9{bottom:747.133333pt;}
.y120{bottom:752.413333pt;}
.y15{bottom:754.173333pt;}
.y81{bottom:754.333333pt;}
.y66{bottom:754.973333pt;}
.ya3{bottom:755.453333pt;}
.y14e{bottom:761.053333pt;}
.yf8{bottom:765.373333pt;}
.y11f{bottom:770.653333pt;}
.y80{bottom:772.573333pt;}
.y65{bottom:773.853333pt;}
.y14{bottom:774.013333pt;}
.y14d{bottom:778.013333pt;}
.yf7{bottom:783.773333pt;}
.y11e{bottom:789.413333pt;}
.y7f{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.y14c{bottom:794.853333pt;}
.yf6{bottom:802.213333pt;}
.y11d{bottom:808.293333pt;}
.y7e{bottom:810.373333pt;}
.y64{bottom:810.693333pt;}
.y14b{bottom:811.813333pt;}
.y12{bottom:814.373333pt;}
.yf5{bottom:821.093333pt;}
.y11c{bottom:826.373333pt;}
.y14a{bottom:828.613333pt;}
.y63{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.y173{bottom:839.333333pt;}
.yf4{bottom:839.493333pt;}
.y11b{bottom:845.093333pt;}
.y149{bottom:845.573333pt;}
.y62{bottom:847.493333pt;}
.y41{bottom:850.533333pt;}
.yf3{bottom:855.173333pt;}
.y172{bottom:856.613333pt;}
.y10{bottom:857.413333pt;}
.y11a{bottom:860.133333pt;}
.y148{bottom:862.373333pt;}
.y61{bottom:865.893333pt;}
.y40{bottom:868.933333pt;}
.y171{bottom:871.013333pt;}
.yf{bottom:878.853333pt;}
.y116{bottom:879.173333pt;}
.y60{bottom:884.293333pt;}
.y3f{bottom:887.333333pt;}
.y170{bottom:889.413333pt;}
.yf2{bottom:893.253333pt;}
.y147{bottom:896.133333pt;}
.ye{bottom:900.293333pt;}
.y5f{bottom:902.693333pt;}
.y3e{bottom:905.733333pt;}
.y146{bottom:912.933333pt;}
.yf1{bottom:913.093333pt;}
.y57{bottom:920.133333pt;}
.y115{bottom:920.613333pt;}
.y5e{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y3d{bottom:924.133333pt;}
.y145{bottom:929.893333pt;}
.y5d{bottom:939.493333pt;}
.y3c{bottom:942.533333pt;}
.yc{bottom:943.013333pt;}
.y144{bottom:946.693333pt;}
.yee{bottom:951.173333pt;}
.y6{bottom:957.413333pt;}
.y5c{bottom:957.893333pt;}
.y3b{bottom:960.613333pt;}
.y143{bottom:963.493333pt;}
.y114{bottom:975.813333pt;}
.y5b{bottom:976.293333pt;}
.y142{bottom:980.453333pt;}
.yea{bottom:989.253333pt;}
.y113{bottom:994.213333pt;}
.y5a{bottom:994.693333pt;}
.y3a{bottom:997.253333pt;}
.y59{bottom:1013.120000pt;}
.y39{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1d{height:18.386667pt;}
.h18{height:36.786667pt;}
.h1b{height:36.793333pt;}
.h1c{height:36.826667pt;}
.h3{height:40.163750pt;}
.hd{height:49.967500pt;}
.h1f{height:52.785000pt;}
.h11{height:55.186667pt;}
.h19{height:55.343750pt;}
.h10{height:57.375000pt;}
.he{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1e{height:60.519362pt;}
.hc{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h14{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h1a{height:71.524375pt;}
.h20{height:74.980000pt;}
.h9{height:75.465000pt;}
.hf{height:79.035069pt;}
.h13{height:81.500000pt;}
.h15{height:85.907684pt;}
.h17{height:124.380000pt;}
.h16{height:130.140000pt;}
.h12{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:48.000000pt;}
.w5{width:49.950667pt;}
.w6{width:55.830667pt;}
.w7{width:60.786667pt;}
.w4{width:73.306667pt;}
.wf{width:86.066667pt;}
.we{width:86.112000pt;}
.wc{width:90.258667pt;}
.w11{width:93.786667pt;}
.w10{width:95.378667pt;}
.wb{width:137.785333pt;}
.w9{width:152.666667pt;}
.w3{width:160.653333pt;}
.w8{width:168.813333pt;}
.wa{width:187.693333pt;}
.w12{width:300.225333pt;}
.w13{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x51{left:8.000000pt;}
.x3d{left:9.590667pt;}
.x31{left:12.306667pt;}
.x39{left:13.270667pt;}
.x3b{left:14.546667pt;}
.x2f{left:15.830667pt;}
.x38{left:19.186667pt;}
.x36{left:21.440000pt;}
.x57{left:24.800000pt;}
.x3e{left:26.386667pt;}
.x55{left:28.986667pt;}
.x46{left:30.706667pt;}
.x42{left:31.866667pt;}
.x3a{left:33.266667pt;}
.x3f{left:34.866667pt;}
.x35{left:35.866667pt;}
.x3c{left:38.266667pt;}
.x48{left:40.666667pt;}
.x40{left:46.106667pt;}
.x47{left:52.026667pt;}
.x45{left:65.146667pt;}
.x43{left:67.546667pt;}
.x2{left:68.481333pt;}
.x44{left:69.786667pt;}
.x41{left:72.506667pt;}
.x33{left:74.106667pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x2e{left:81.321333pt;}
.x2b{left:92.032000pt;}
.x4c{left:107.072000pt;}
.x4a{left:110.112000pt;}
.x19{left:113.312000pt;}
.x22{left:125.472000pt;}
.xd{left:133.626667pt;}
.x30{left:138.600000pt;}
.xe{left:142.106667pt;}
.x5{left:153.466667pt;}
.x9{left:154.586667pt;}
.xa{left:161.146667pt;}
.x13{left:166.106667pt;}
.x27{left:167.866667pt;}
.x28{left:175.066667pt;}
.x26{left:182.746667pt;}
.xb{left:196.346667pt;}
.x32{left:200.840000pt;}
.x17{left:203.546667pt;}
.x4f{left:214.760000pt;}
.x4e{left:290.466667pt;}
.x2d{left:299.426667pt;}
.x14{left:304.066667pt;}
.x50{left:305.666667pt;}
.x18{left:310.306667pt;}
.xf{left:315.906667pt;}
.x2c{left:339.106667pt;}
.x52{left:354.306667pt;}
.x24{left:360.546667pt;}
.x58{left:368.706667pt;}
.x34{left:370.946667pt;}
.x29{left:378.786667pt;}
.x1a{left:394.466667pt;}
.xc{left:396.893333pt;}
.x1b{left:400.413333pt;}
.x10{left:415.773333pt;}
.x11{left:418.813333pt;}
.x53{left:441.066667pt;}
.x15{left:446.173333pt;}
.x1c{left:449.213333pt;}
.x1d{left:455.133333pt;}
.x4{left:491.466667pt;}
.x37{left:524.906667pt;}
.x54{left:527.786667pt;}
.x1e{left:529.053333pt;}
.x1f{left:534.973333pt;}
.x49{left:572.453333pt;}
.x4b{left:582.053333pt;}
.x4d{left:596.453333pt;}
.x20{left:601.733333pt;}
.x21{left:607.653333pt;}
.x56{left:623.813333pt;}
.x2a{left:638.853333pt;}
.x12{left:643.493333pt;}
.x16{left:648.933333pt;}
.x6{left:652.133333pt;}
.x23{left:710.853333pt;}
.x8{left:718.240000pt;}
.x25{left:734.560000pt;}
}




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