
    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_84a6eabae4beea0c26ba5e23.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4a89a0de4c3b4fbb9ea7e27e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_514903f407290380f9d7d50d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9492b9580d19287a60b199f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_4a7c2b5f1e3768fd66ee1ccd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_bcc930b3882529c3f8911640.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a44d94e234bc930ec8dbdc21.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_bb203f1a5530644ff5e38136.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_6e5793b30ac7cb25dfbf4d7b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ee394d814396118bb6c0025f.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m6{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-72.144000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:27.360000px;}
.ls1b{letter-spacing:-12.240000px;}
.ls1d{letter-spacing:-11.760000px;}
.ls1e{letter-spacing:-10.800000px;}
.ls2d{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-0.984000px;}
.ls2f{letter-spacing:-0.828000px;}
.ls2a{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls37{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.379200px;}
.ls22{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.252000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.018000px;}
.ls35{letter-spacing:0.036000px;}
.ls23{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.440000px;}
.ls19{letter-spacing:2.160000px;}
.ls32{letter-spacing:2.880000px;}
.ls2{letter-spacing:3.780000px;}
.ls12{letter-spacing:6.480000px;}
.ls18{letter-spacing:7.768421px;}
.ls30{letter-spacing:8.820000px;}
.ls17{letter-spacing:10.080000px;}
.lse{letter-spacing:11.640000px;}
.lsa{letter-spacing:12.240000px;}
.lsd{letter-spacing:13.680000px;}
.ls29{letter-spacing:14.400000px;}
.lsc{letter-spacing:14.520000px;}
.lsb{letter-spacing:15.120000px;}
.ls27{letter-spacing:15.840000px;}
.ls33{letter-spacing:16.560000px;}
.ls9{letter-spacing:18.720000px;}
.ls14{letter-spacing:21.600000px;}
.ls13{letter-spacing:21.780000px;}
.ls15{letter-spacing:24.456000px;}
.ls26{letter-spacing:25.200000px;}
.ls8{letter-spacing:25.896000px;}
.ls10{letter-spacing:25.957895px;}
.lsf{letter-spacing:28.231579px;}
.ls1a{letter-spacing:40.320000px;}
.ls0{letter-spacing:57.900000px;}
.ls34{letter-spacing:151.920000px;}
.ls28{letter-spacing:156.420000px;}
.ls31{letter-spacing:195.120000px;}
.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;}
}
.ws18{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.784000px;}
.ws16{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.620800px;}
.ws19{word-spacing:-17.568000px;}
.ws14{word-spacing:-15.576000px;}
.ws3{word-spacing:-15.246600px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws11{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.505760px;}
.wse{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.248000px;}
.ws10{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.996000px;}
.ws17{word-spacing:-12.672000px;}
.ws15{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws2{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.000000px;}
.wsa{word-spacing:-6.240000px;}
.ws7{word-spacing:0.000000px;}
._24{margin-left:-14.285520px;}
._23{margin-left:-11.736000px;}
._18{margin-left:-10.690080px;}
._22{margin-left:-9.000000px;}
._1f{margin-left:-6.864000px;}
._c{margin-left:-5.112000px;}
._d{margin-left:-3.456000px;}
._9{margin-left:-2.307600px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._3{width:2.580480px;}
._4{width:3.879360px;}
._20{width:5.008143px;}
._8{width:6.334560px;}
._7{width:7.460160px;}
._5{width:8.605440px;}
._6{width:9.611520px;}
._f{width:10.974480px;}
._10{width:12.651600px;}
._e{width:13.680000px;}
._21{width:15.096000px;}
._1d{width:16.630080px;}
._1c{width:19.272000px;}
._2b{width:20.376000px;}
._25{width:21.585840px;}
._1e{width:23.400000px;}
._19{width:24.408000px;}
._11{width:25.743158px;}
._12{width:27.181895px;}
._2a{width:28.224000px;}
._13{width:30.048000px;}
._26{width:33.924000px;}
._1a{width:40.464000px;}
._15{width:42.442080px;}
._14{width:43.920000px;}
._16{width:52.043520px;}
._27{width:53.220000px;}
._17{width:56.482080px;}
._2{width:58.697760px;}
._28{width:143.100000px;}
._1b{width:151.920000px;}
._29{width:195.120000px;}
._a{width:846.156000px;}
._b{width:1294.860000px;}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:2.880000px;}
.y7e{bottom:3.060000px;}
.y17{bottom:3.240000px;}
.yb4{bottom:3.600000px;}
.yb2{bottom:3.780000px;}
.yf{bottom:3.960000px;}
.y24{bottom:5.040000px;}
.y9{bottom:5.220000px;}
.y27{bottom:7.740000px;}
.y13{bottom:9.900000px;}
.y2a{bottom:12.990000px;}
.y7{bottom:17.100000px;}
.y6f{bottom:18.360000px;}
.yac{bottom:18.540000px;}
.y92{bottom:19.080000px;}
.y35{bottom:20.340000px;}
.y22{bottom:20.520000px;}
.ye{bottom:24.660000px;}
.y26{bottom:25.020000px;}
.y16{bottom:25.740000px;}
.y12{bottom:30.600000px;}
.y33{bottom:33.480000px;}
.y29{bottom:33.690000px;}
.y6e{bottom:33.840000px;}
.y7c{bottom:34.020000px;}
.y91{bottom:34.740000px;}
.y21{bottom:37.620000px;}
.y6{bottom:37.800000px;}
.y25{bottom:42.300000px;}
.y15{bottom:43.020000px;}
.y11{bottom:44.640000px;}
.yd{bottom:45.360000px;}
.y6d{bottom:49.500000px;}
.y32{bottom:50.760000px;}
.y37{bottom:54.900000px;}
.y1f{bottom:55.080000px;}
.y3{bottom:56.700000px;}
.y5{bottom:59.760000px;}
.yc{bottom:66.060000px;}
.y31{bottom:68.040000px;}
.y1e{bottom:72.180000px;}
.y3c{bottom:75.096000px;}
.y2{bottom:75.636000px;}
.y30{bottom:85.320000px;}
.yb{bottom:86.760000px;}
.y1d{bottom:89.460000px;}
.y2f{bottom:102.600000px;}
.y1c{bottom:106.740000px;}
.y9f{bottom:115.956000px;}
.y6a{bottom:118.296000px;}
.y2e{bottom:119.700000px;}
.y1b{bottom:124.020000px;}
.ycd{bottom:125.676000px;}
.y9e{bottom:136.656000px;}
.y2d{bottom:136.980000px;}
.y1a{bottom:141.300000px;}
.ycc{bottom:146.376000px;}
.y69{bottom:147.996000px;}
.y9d{bottom:157.350000px;}
.ycb{bottom:167.070000px;}
.y68{bottom:168.690000px;}
.y122{bottom:174.810000px;}
.y9c{bottom:178.050000px;}
.yca{bottom:187.770000px;}
.y67{bottom:189.390000px;}
.yf8{bottom:192.450000px;}
.y121{bottom:195.510000px;}
.y9b{bottom:207.750000px;}
.yc9{bottom:208.470000px;}
.y66{bottom:210.090000px;}
.yf7{bottom:222.150000px;}
.y120{bottom:225.210000px;}
.y9a{bottom:228.450000px;}
.y65{bottom:230.790000px;}
.yc8{bottom:238.170000px;}
.yf6{bottom:242.850000px;}
.y99{bottom:249.150000px;}
.y13e{bottom:250.590000px;}
.y64{bottom:251.490000px;}
.y11f{bottom:254.910000px;}
.yf5{bottom:263.550000px;}
.y98{bottom:269.850000px;}
.y13d{bottom:271.290000px;}
.yc7{bottom:274.530000px;}
.y11e{bottom:275.610000px;}
.y63{bottom:281.190000px;}
.yf4{bottom:284.250000px;}
.yc6{bottom:287.850000px;}
.y11d{bottom:296.310000px;}
.y97{bottom:299.550000px;}
.y13c{bottom:300.810000px;}
.y62{bottom:301.890000px;}
.yc5{bottom:304.230000px;}
.yf3{bottom:304.950000px;}
.y96{bottom:317.010000px;}
.yc4{bottom:320.430000px;}
.y13b{bottom:321.510000px;}
.y61{bottom:322.590000px;}
.yf2{bottom:325.650000px;}
.y11c{bottom:326.010000px;}
.y95{bottom:332.490000px;}
.yc3{bottom:336.675000px;}
.y60{bottom:343.335000px;}
.yf1{bottom:346.395000px;}
.y94{bottom:348.015000px;}
.y13a{bottom:351.255000px;}
.yc2{bottom:352.335000px;}
.y11b{bottom:355.755000px;}
.y90{bottom:364.395000px;}
.yf0{bottom:367.095000px;}
.yc1{bottom:367.815000px;}
.y39{bottom:370.515000px;}
.y139{bottom:371.955000px;}
.y5f{bottom:372.855000px;}
.yc0{bottom:384.015000px;}
.y11a{bottom:385.455000px;}
.yef{bottom:387.795000px;}
.y93{bottom:396.075000px;}
.y38{bottom:400.215000px;}
.y138{bottom:401.655000px;}
.y5e{bottom:402.555000px;}
.ybf{bottom:403.995000px;}
.yee{bottom:408.495000px;}
.y119{bottom:415.155000px;}
.y137{bottom:422.355000px;}
.ybe{bottom:422.895000px;}
.y5d{bottom:423.255000px;}
.y8f{bottom:424.875000px;}
.y2c{bottom:426.855000px;}
.y118{bottom:435.855000px;}
.yed{bottom:438.195000px;}
.y5c{bottom:443.955000px;}
.y8e{bottom:444.315000px;}
.ybd{bottom:451.155000px;}
.y136{bottom:452.055000px;}
.y117{bottom:465.555000px;}
.yec{bottom:466.815000px;}
.ybc{bottom:471.855000px;}
.y135{bottom:472.755000px;}
.y5b{bottom:473.655000px;}
.y8d{bottom:474.015000px;}
.yeb{bottom:482.295000px;}
.ybb{bottom:492.555000px;}
.y134{bottom:493.455000px;}
.y5a{bottom:494.355000px;}
.y8c{bottom:494.715000px;}
.y116{bottom:495.255000px;}
.yea{bottom:495.615000px;}
.y36{bottom:497.955000px;}
.ye9{bottom:511.995000px;}
.yba{bottom:513.255000px;}
.y133{bottom:514.155000px;}
.y59{bottom:515.055000px;}
.y8b{bottom:515.415000px;}
.y115{bottom:515.955000px;}
.y34{bottom:517.575000px;}
.ye8{bottom:528.195000px;}
.yb9{bottom:533.955000px;}
.y58{bottom:535.755000px;}
.y8a{bottom:536.115000px;}
.y114{bottom:536.655000px;}
.y132{bottom:543.855000px;}
.ye7{bottom:544.395000px;}
.yb8{bottom:554.655000px;}
.y57{bottom:556.455000px;}
.y89{bottom:556.815000px;}
.y113{bottom:557.355000px;}
.ye6{bottom:560.055000px;}
.y2b{bottom:560.595000px;}
.y131{bottom:564.555000px;}
.ye5{bottom:575.535000px;}
.y112{bottom:578.055000px;}
.yb7{bottom:584.355000px;}
.y56{bottom:586.155000px;}
.y88{bottom:586.515000px;}
.ye4{bottom:591.735000px;}
.y28{bottom:593.175000px;}
.y130{bottom:594.255000px;}
.y111{bottom:598.755000px;}
.y55{bottom:606.885000px;}
.y87{bottom:607.245000px;}
.yb6{bottom:614.085000px;}
.y12f{bottom:614.985000px;}
.y110{bottom:619.485000px;}
.ye3{bottom:620.565000px;}
.y54{bottom:627.585000px;}
.y86{bottom:627.945000px;}
.yb5{bottom:633.885000px;}
.ye2{bottom:640.005000px;}
.y12e{bottom:644.685000px;}
.yb3{bottom:647.205000px;}
.y53{bottom:648.285000px;}
.y85{bottom:648.645000px;}
.y10f{bottom:649.185000px;}
.y19{bottom:653.505000px;}
.y12d{bottom:665.385000px;}
.yb1{bottom:666.825000px;}
.y52{bottom:668.985000px;}
.ye1{bottom:669.705000px;}
.y10e{bottom:669.885000px;}
.y84{bottom:678.345000px;}
.yb0{bottom:686.625000px;}
.ye0{bottom:690.405000px;}
.y10d{bottom:690.585000px;}
.y12c{bottom:695.085000px;}
.y83{bottom:697.965000px;}
.y51{bottom:698.685000px;}
.yaf{bottom:702.825000px;}
.ydf{bottom:711.105000px;}
.y82{bottom:711.285000px;}
.y23{bottom:712.005000px;}
.yae{bottom:718.485000px;}
.y50{bottom:719.385000px;}
.y10c{bottom:720.285000px;}
.y12b{bottom:724.785000px;}
.y81{bottom:726.945000px;}
.yde{bottom:731.805000px;}
.y20{bottom:733.425000px;}
.yad{bottom:733.965000px;}
.y4f{bottom:740.085000px;}
.y10b{bottom:740.985000px;}
.y80{bottom:742.425000px;}
.y12a{bottom:745.485000px;}
.yab{bottom:750.165000px;}
.ydd{bottom:752.505000px;}
.y7f{bottom:757.905000px;}
.y4e{bottom:760.785000px;}
.y10a{bottom:761.685000px;}
.ydc{bottom:773.205000px;}
.y7d{bottom:773.385000px;}
.y129{bottom:775.185000px;}
.y4d{bottom:781.485000px;}
.yaa{bottom:785.625000px;}
.y7b{bottom:789.765000px;}
.y109{bottom:791.385000px;}
.y18{bottom:791.565000px;}
.ydb{bottom:793.905000px;}
.y128{bottom:795.885000px;}
.y4c{bottom:811.185000px;}
.y108{bottom:812.085000px;}
.ya9{bottom:813.885000px;}
.yda{bottom:814.605000px;}
.y14{bottom:824.865000px;}
.y127{bottom:825.585000px;}
.y4b{bottom:831.885000px;}
.y107{bottom:832.785000px;}
.ya8{bottom:834.585000px;}
.yd9{bottom:844.305000px;}
.y126{bottom:846.285000px;}
.y7a{bottom:849.525000px;}
.y4a{bottom:852.585000px;}
.ya7{bottom:855.285000px;}
.y106{bottom:862.485000px;}
.y125{bottom:866.985000px;}
.y79{bottom:868.965000px;}
.y49{bottom:873.330000px;}
.yd8{bottom:873.690000px;}
.ya6{bottom:876.030000px;}
.y10{bottom:876.750000px;}
.y105{bottom:883.230000px;}
.yd7{bottom:892.050000px;}
.y48{bottom:894.030000px;}
.ya5{bottom:896.730000px;}
.y78{bottom:898.710000px;}
.y104{bottom:903.930000px;}
.yd6{bottom:905.370000px;}
.ya4{bottom:917.430000px;}
.y77{bottom:919.410000px;}
.yd5{bottom:921.570000px;}
.y47{bottom:923.730000px;}
.y103{bottom:924.630000px;}
.ya{bottom:935.790000px;}
.yd4{bottom:937.950000px;}
.ya3{bottom:938.130000px;}
.y76{bottom:940.110000px;}
.y46{bottom:944.430000px;}
.yd3{bottom:954.150000px;}
.y102{bottom:954.330000px;}
.y75{bottom:960.810000px;}
.y45{bottom:965.130000px;}
.ya2{bottom:967.830000px;}
.yd2{bottom:969.630000px;}
.y74{bottom:981.510000px;}
.y101{bottom:983.850000px;}
.yd1{bottom:985.290000px;}
.y44{bottom:985.830000px;}
.y124{bottom:988.530000px;}
.ya1{bottom:997.530000px;}
.yd0{bottom:1001.490000px;}
.y73{bottom:1002.210000px;}
.y100{bottom:1002.750000px;}
.y43{bottom:1006.530000px;}
.yff{bottom:1016.070000px;}
.y123{bottom:1018.230000px;}
.y42{bottom:1027.230000px;}
.ycf{bottom:1030.290000px;}
.y72{bottom:1031.910000px;}
.yfe{bottom:1032.450000px;}
.y8{bottom:1040.010000px;}
.y41{bottom:1047.930000px;}
.yfd{bottom:1048.650000px;}
.y71{bottom:1049.370000px;}
.y4{bottom:1061.250000px;}
.yfc{bottom:1064.850000px;}
.y6c{bottom:1065.750000px;}
.y40{bottom:1068.630000px;}
.yfb{bottom:1080.510000px;}
.y3f{bottom:1089.330000px;}
.yfa{bottom:1095.990000px;}
.yce{bottom:1098.330000px;}
.y3e{bottom:1110.030000px;}
.yf9{bottom:1112.190000px;}
.ya0{bottom:1119.030000px;}
.y3d{bottom:1139.760000px;}
.y6b{bottom:1141.020000px;}
.y3b{bottom:1175.940000px;}
.y3a{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h22{height:15.480000px;}
.h29{height:15.516000px;}
.h25{height:15.660000px;}
.h2e{height:15.696000px;}
.h1a{height:17.280000px;}
.h2b{height:18.900000px;}
.h14{height:19.080000px;}
.h7{height:21.240000px;}
.h10{height:26.100000px;}
.h17{height:26.280000px;}
.h28{height:30.960000px;}
.h2a{height:31.140000px;}
.h19{height:34.380000px;}
.hf{height:38.158594px;}
.h21{height:46.300781px;}
.h24{height:46.620000px;}
.h27{height:47.340000px;}
.h1c{height:48.088125px;}
.hd{height:48.616875px;}
.h12{height:49.868086px;}
.h13{height:51.660000px;}
.he{height:51.876000px;}
.h2d{height:52.971680px;}
.h23{height:52.998047px;}
.h20{height:54.421875px;}
.h2{height:55.291992px;}
.h15{height:56.340000px;}
.h8{height:58.651172px;}
.hb{height:59.040000px;}
.h16{height:59.436000px;}
.h1d{height:60.082031px;}
.hc{height:60.226875px;}
.h1f{height:62.100000px;}
.h2c{height:64.978594px;}
.h3{height:65.010937px;}
.h1e{height:66.757500px;}
.h1b{height:68.940000px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h26{height:74.704922px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h9{height:103.500000px;}
.h18{height:160.020000px;}
.h11{height:164.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:41.976000px;}
.we{width:42.480000px;}
.wd{width:52.920000px;}
.w15{width:63.900000px;}
.w16{width:63.936000px;}
.w17{width:64.080000px;}
.w10{width:70.920000px;}
.w11{width:71.640000px;}
.w13{width:71.820000px;}
.wa{width:73.440000px;}
.wb{width:73.620000px;}
.w18{width:74.556000px;}
.w12{width:82.296000px;}
.wf{width:83.196000px;}
.w14{width:84.780000px;}
.w19{width:95.400000px;}
.w1e{width:106.416000px;}
.w21{width:117.000000px;}
.w29{width:125.100000px;}
.w1d{width:127.656000px;}
.w25{width:130.176000px;}
.w24{width:138.240000px;}
.w20{width:138.276000px;}
.w26{width:146.340000px;}
.w28{width:148.716000px;}
.w8{width:148.860000px;}
.w1a{width:159.480000px;}
.w22{width:159.510000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.w1b{width:234.255000px;}
.w27{width:244.650000px;}
.w1f{width:263.190000px;}
.w6{width:264.990000px;}
.w1c{width:286.770000px;}
.w23{width:414.795000px;}
.w2a{width:433.335000px;}
.w9{width:531.645000px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.880000px;}
.x12{left:6.300000px;}
.xc{left:8.100000px;}
.x47{left:10.440000px;}
.x4b{left:11.520000px;}
.x4c{left:12.960000px;}
.x3e{left:14.220000px;}
.x49{left:15.840000px;}
.x43{left:18.360000px;}
.x3f{left:19.620000px;}
.x50{left:21.060000px;}
.x4f{left:22.860000px;}
.x3d{left:24.480000px;}
.x41{left:25.920000px;}
.x4a{left:27.000000px;}
.x51{left:28.620000px;}
.x40{left:29.700000px;}
.xe{left:31.500000px;}
.x52{left:35.820000px;}
.x5b{left:37.440000px;}
.xa{left:41.040000px;}
.x42{left:42.300000px;}
.x58{left:48.105000px;}
.x8{left:53.994000px;}
.x62{left:61.200000px;}
.x5a{left:67.680000px;}
.x5c{left:72.534000px;}
.x53{left:76.674000px;}
.x57{left:78.345000px;}
.x7{left:82.254000px;}
.x5d{left:83.565000px;}
.xf{left:103.494000px;}
.x4{left:106.416000px;}
.x6{left:109.434000px;}
.x56{left:142.200000px;}
.x16{left:148.895987px;}
.x5e{left:153.000000px;}
.x5f{left:156.465000px;}
.x3{left:159.509987px;}
.x10{left:162.354000px;}
.x36{left:181.290000px;}
.x44{left:191.190000px;}
.x14{left:202.899000px;}
.x11{left:255.270000px;}
.x54{left:265.890000px;}
.x37{left:298.335000px;}
.x5{left:301.359000px;}
.x9{left:315.075000px;}
.x45{left:319.035000px;}
.xd{left:340.239000px;}
.x38{left:351.975000px;}
.x34{left:355.574987px;}
.x35{left:364.214987px;}
.x15{left:367.274987px;}
.x60{left:369.615000px;}
.x1{left:372.494987px;}
.x46{left:383.115000px;}
.x28{left:390.854987px;}
.x59{left:393.555000px;}
.x39{left:395.175000px;}
.x29{left:398.774987px;}
.x30{left:418.754987px;}
.x31{left:426.854987px;}
.x2{left:434.054987px;}
.x48{left:436.035000px;}
.x32{left:443.234987px;}
.x33{left:450.614987px;}
.x1f{left:473.504987px;}
.x22{left:475.304987px;}
.x23{left:479.444987px;}
.x27{left:492.584987px;}
.x55{left:499.965000px;}
.x61{left:507.885000px;}
.x2e{left:510.404987px;}
.x1d{left:513.104987px;}
.x2f{left:516.524987px;}
.x1e{left:518.684987px;}
.xb{left:521.745000px;}
.x3a{left:550.905000px;}
.x4d{left:563.505000px;}
.x1b{left:572.504987px;}
.x25{left:582.404987px;}
.x1c{left:587.804987px;}
.x26{left:589.784987px;}
.x2c{left:602.204987px;}
.x2d{left:606.704987px;}
.x3b{left:623.265000px;}
.x63{left:624.885000px;}
.x4e{left:627.405000px;}
.x19{left:631.184987px;}
.x1a{left:638.204987px;}
.x64{left:646.125000px;}
.x65{left:659.310000px;}
.x20{left:671.189987px;}
.x2a{left:690.449987px;}
.x2b{left:695.849987px;}
.x17{left:704.129987px;}
.x3c{left:706.290000px;}
.x24{left:711.149987px;}
.x21{left:714.749987px;}
.x18{left:715.829987px;}
@media print{
.v3{vertical-align:-64.128000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:24.320000pt;}
.ls1b{letter-spacing:-10.880000pt;}
.ls1d{letter-spacing:-10.453333pt;}
.ls1e{letter-spacing:-9.600000pt;}
.ls2d{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.874667pt;}
.ls2f{letter-spacing:-0.736000pt;}
.ls2a{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls37{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.337067pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.016000pt;}
.ls35{letter-spacing:0.032000pt;}
.ls23{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.920000pt;}
.ls32{letter-spacing:2.560000pt;}
.ls2{letter-spacing:3.360000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls18{letter-spacing:6.905263pt;}
.ls30{letter-spacing:7.840000pt;}
.ls17{letter-spacing:8.960000pt;}
.lse{letter-spacing:10.346667pt;}
.lsa{letter-spacing:10.880000pt;}
.lsd{letter-spacing:12.160000pt;}
.ls29{letter-spacing:12.800000pt;}
.lsc{letter-spacing:12.906667pt;}
.lsb{letter-spacing:13.440000pt;}
.ls27{letter-spacing:14.080000pt;}
.ls33{letter-spacing:14.720000pt;}
.ls9{letter-spacing:16.640000pt;}
.ls14{letter-spacing:19.200000pt;}
.ls13{letter-spacing:19.360000pt;}
.ls15{letter-spacing:21.738667pt;}
.ls26{letter-spacing:22.400000pt;}
.ls8{letter-spacing:23.018667pt;}
.ls10{letter-spacing:23.073684pt;}
.lsf{letter-spacing:25.094737pt;}
.ls1a{letter-spacing:35.840000pt;}
.ls0{letter-spacing:51.466667pt;}
.ls34{letter-spacing:135.040000pt;}
.ls28{letter-spacing:139.040000pt;}
.ls31{letter-spacing:173.440000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws16{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.662933pt;}
.ws19{word-spacing:-15.616000pt;}
.ws14{word-spacing:-13.845333pt;}
.ws3{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.005120pt;}
.wse{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.776000pt;}
.ws10{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.552000pt;}
.ws17{word-spacing:-11.264000pt;}
.ws15{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.000000pt;}
.wsa{word-spacing:-5.546667pt;}
.ws7{word-spacing:0.000000pt;}
._24{margin-left:-12.698240pt;}
._23{margin-left:-10.432000pt;}
._18{margin-left:-9.502293pt;}
._22{margin-left:-8.000000pt;}
._1f{margin-left:-6.101333pt;}
._c{margin-left:-4.544000pt;}
._d{margin-left:-3.072000pt;}
._9{margin-left:-2.051200pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._3{width:2.293760pt;}
._4{width:3.448320pt;}
._20{width:4.451683pt;}
._8{width:5.630720pt;}
._7{width:6.631253pt;}
._5{width:7.649280pt;}
._6{width:8.543573pt;}
._f{width:9.755093pt;}
._10{width:11.245867pt;}
._e{width:12.160000pt;}
._21{width:13.418667pt;}
._1d{width:14.782293pt;}
._1c{width:17.130667pt;}
._2b{width:18.112000pt;}
._25{width:19.187413pt;}
._1e{width:20.800000pt;}
._19{width:21.696000pt;}
._11{width:22.882807pt;}
._12{width:24.161684pt;}
._2a{width:25.088000pt;}
._13{width:26.709333pt;}
._26{width:30.154667pt;}
._1a{width:35.968000pt;}
._15{width:37.726293pt;}
._14{width:39.040000pt;}
._16{width:46.260907pt;}
._27{width:47.306667pt;}
._17{width:50.206293pt;}
._2{width:52.175787pt;}
._28{width:127.200000pt;}
._1b{width:135.040000pt;}
._29{width:173.440000pt;}
._a{width:752.138667pt;}
._b{width:1150.986667pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.560000pt;}
.y7e{bottom:2.720000pt;}
.y17{bottom:2.880000pt;}
.yb4{bottom:3.200000pt;}
.yb2{bottom:3.360000pt;}
.yf{bottom:3.520000pt;}
.y24{bottom:4.480000pt;}
.y9{bottom:4.640000pt;}
.y27{bottom:6.880000pt;}
.y13{bottom:8.800000pt;}
.y2a{bottom:11.546667pt;}
.y7{bottom:15.200000pt;}
.y6f{bottom:16.320000pt;}
.yac{bottom:16.480000pt;}
.y92{bottom:16.960000pt;}
.y35{bottom:18.080000pt;}
.y22{bottom:18.240000pt;}
.ye{bottom:21.920000pt;}
.y26{bottom:22.240000pt;}
.y16{bottom:22.880000pt;}
.y12{bottom:27.200000pt;}
.y33{bottom:29.760000pt;}
.y29{bottom:29.946667pt;}
.y6e{bottom:30.080000pt;}
.y7c{bottom:30.240000pt;}
.y91{bottom:30.880000pt;}
.y21{bottom:33.440000pt;}
.y6{bottom:33.600000pt;}
.y25{bottom:37.600000pt;}
.y15{bottom:38.240000pt;}
.y11{bottom:39.680000pt;}
.yd{bottom:40.320000pt;}
.y6d{bottom:44.000000pt;}
.y32{bottom:45.120000pt;}
.y37{bottom:48.800000pt;}
.y1f{bottom:48.960000pt;}
.y3{bottom:50.400000pt;}
.y5{bottom:53.120000pt;}
.yc{bottom:58.720000pt;}
.y31{bottom:60.480000pt;}
.y1e{bottom:64.160000pt;}
.y3c{bottom:66.752000pt;}
.y2{bottom:67.232000pt;}
.y30{bottom:75.840000pt;}
.yb{bottom:77.120000pt;}
.y1d{bottom:79.520000pt;}
.y2f{bottom:91.200000pt;}
.y1c{bottom:94.880000pt;}
.y9f{bottom:103.072000pt;}
.y6a{bottom:105.152000pt;}
.y2e{bottom:106.400000pt;}
.y1b{bottom:110.240000pt;}
.ycd{bottom:111.712000pt;}
.y9e{bottom:121.472000pt;}
.y2d{bottom:121.760000pt;}
.y1a{bottom:125.600000pt;}
.ycc{bottom:130.112000pt;}
.y69{bottom:131.552000pt;}
.y9d{bottom:139.866667pt;}
.ycb{bottom:148.506667pt;}
.y68{bottom:149.946667pt;}
.y122{bottom:155.386667pt;}
.y9c{bottom:158.266667pt;}
.yca{bottom:166.906667pt;}
.y67{bottom:168.346667pt;}
.yf8{bottom:171.066667pt;}
.y121{bottom:173.786667pt;}
.y9b{bottom:184.666667pt;}
.yc9{bottom:185.306667pt;}
.y66{bottom:186.746667pt;}
.yf7{bottom:197.466667pt;}
.y120{bottom:200.186667pt;}
.y9a{bottom:203.066667pt;}
.y65{bottom:205.146667pt;}
.yc8{bottom:211.706667pt;}
.yf6{bottom:215.866667pt;}
.y99{bottom:221.466667pt;}
.y13e{bottom:222.746667pt;}
.y64{bottom:223.546667pt;}
.y11f{bottom:226.586667pt;}
.yf5{bottom:234.266667pt;}
.y98{bottom:239.866667pt;}
.y13d{bottom:241.146667pt;}
.yc7{bottom:244.026667pt;}
.y11e{bottom:244.986667pt;}
.y63{bottom:249.946667pt;}
.yf4{bottom:252.666667pt;}
.yc6{bottom:255.866667pt;}
.y11d{bottom:263.386667pt;}
.y97{bottom:266.266667pt;}
.y13c{bottom:267.386667pt;}
.y62{bottom:268.346667pt;}
.yc5{bottom:270.426667pt;}
.yf3{bottom:271.066667pt;}
.y96{bottom:281.786667pt;}
.yc4{bottom:284.826667pt;}
.y13b{bottom:285.786667pt;}
.y61{bottom:286.746667pt;}
.yf2{bottom:289.466667pt;}
.y11c{bottom:289.786667pt;}
.y95{bottom:295.546667pt;}
.yc3{bottom:299.266667pt;}
.y60{bottom:305.186667pt;}
.yf1{bottom:307.906667pt;}
.y94{bottom:309.346667pt;}
.y13a{bottom:312.226667pt;}
.yc2{bottom:313.186667pt;}
.y11b{bottom:316.226667pt;}
.y90{bottom:323.906667pt;}
.yf0{bottom:326.306667pt;}
.yc1{bottom:326.946667pt;}
.y39{bottom:329.346667pt;}
.y139{bottom:330.626667pt;}
.y5f{bottom:331.426667pt;}
.yc0{bottom:341.346667pt;}
.y11a{bottom:342.626667pt;}
.yef{bottom:344.706667pt;}
.y93{bottom:352.066667pt;}
.y38{bottom:355.746667pt;}
.y138{bottom:357.026667pt;}
.y5e{bottom:357.826667pt;}
.ybf{bottom:359.106667pt;}
.yee{bottom:363.106667pt;}
.y119{bottom:369.026667pt;}
.y137{bottom:375.426667pt;}
.ybe{bottom:375.906667pt;}
.y5d{bottom:376.226667pt;}
.y8f{bottom:377.666667pt;}
.y2c{bottom:379.426667pt;}
.y118{bottom:387.426667pt;}
.yed{bottom:389.506667pt;}
.y5c{bottom:394.626667pt;}
.y8e{bottom:394.946667pt;}
.ybd{bottom:401.026667pt;}
.y136{bottom:401.826667pt;}
.y117{bottom:413.826667pt;}
.yec{bottom:414.946667pt;}
.ybc{bottom:419.426667pt;}
.y135{bottom:420.226667pt;}
.y5b{bottom:421.026667pt;}
.y8d{bottom:421.346667pt;}
.yeb{bottom:428.706667pt;}
.ybb{bottom:437.826667pt;}
.y134{bottom:438.626667pt;}
.y5a{bottom:439.426667pt;}
.y8c{bottom:439.746667pt;}
.y116{bottom:440.226667pt;}
.yea{bottom:440.546667pt;}
.y36{bottom:442.626667pt;}
.ye9{bottom:455.106667pt;}
.yba{bottom:456.226667pt;}
.y133{bottom:457.026667pt;}
.y59{bottom:457.826667pt;}
.y8b{bottom:458.146667pt;}
.y115{bottom:458.626667pt;}
.y34{bottom:460.066667pt;}
.ye8{bottom:469.506667pt;}
.yb9{bottom:474.626667pt;}
.y58{bottom:476.226667pt;}
.y8a{bottom:476.546667pt;}
.y114{bottom:477.026667pt;}
.y132{bottom:483.426667pt;}
.ye7{bottom:483.906667pt;}
.yb8{bottom:493.026667pt;}
.y57{bottom:494.626667pt;}
.y89{bottom:494.946667pt;}
.y113{bottom:495.426667pt;}
.ye6{bottom:497.826667pt;}
.y2b{bottom:498.306667pt;}
.y131{bottom:501.826667pt;}
.ye5{bottom:511.586667pt;}
.y112{bottom:513.826667pt;}
.yb7{bottom:519.426667pt;}
.y56{bottom:521.026667pt;}
.y88{bottom:521.346667pt;}
.ye4{bottom:525.986667pt;}
.y28{bottom:527.266667pt;}
.y130{bottom:528.226667pt;}
.y111{bottom:532.226667pt;}
.y55{bottom:539.453333pt;}
.y87{bottom:539.773333pt;}
.yb6{bottom:545.853333pt;}
.y12f{bottom:546.653333pt;}
.y110{bottom:550.653333pt;}
.ye3{bottom:551.613333pt;}
.y54{bottom:557.853333pt;}
.y86{bottom:558.173333pt;}
.yb5{bottom:563.453333pt;}
.ye2{bottom:568.893333pt;}
.y12e{bottom:573.053333pt;}
.yb3{bottom:575.293333pt;}
.y53{bottom:576.253333pt;}
.y85{bottom:576.573333pt;}
.y10f{bottom:577.053333pt;}
.y19{bottom:580.893333pt;}
.y12d{bottom:591.453333pt;}
.yb1{bottom:592.733333pt;}
.y52{bottom:594.653333pt;}
.ye1{bottom:595.293333pt;}
.y10e{bottom:595.453333pt;}
.y84{bottom:602.973333pt;}
.yb0{bottom:610.333333pt;}
.ye0{bottom:613.693333pt;}
.y10d{bottom:613.853333pt;}
.y12c{bottom:617.853333pt;}
.y83{bottom:620.413333pt;}
.y51{bottom:621.053333pt;}
.yaf{bottom:624.733333pt;}
.ydf{bottom:632.093333pt;}
.y82{bottom:632.253333pt;}
.y23{bottom:632.893333pt;}
.yae{bottom:638.653333pt;}
.y50{bottom:639.453333pt;}
.y10c{bottom:640.253333pt;}
.y12b{bottom:644.253333pt;}
.y81{bottom:646.173333pt;}
.yde{bottom:650.493333pt;}
.y20{bottom:651.933333pt;}
.yad{bottom:652.413333pt;}
.y4f{bottom:657.853333pt;}
.y10b{bottom:658.653333pt;}
.y80{bottom:659.933333pt;}
.y12a{bottom:662.653333pt;}
.yab{bottom:666.813333pt;}
.ydd{bottom:668.893333pt;}
.y7f{bottom:673.693333pt;}
.y4e{bottom:676.253333pt;}
.y10a{bottom:677.053333pt;}
.ydc{bottom:687.293333pt;}
.y7d{bottom:687.453333pt;}
.y129{bottom:689.053333pt;}
.y4d{bottom:694.653333pt;}
.yaa{bottom:698.333333pt;}
.y7b{bottom:702.013333pt;}
.y109{bottom:703.453333pt;}
.y18{bottom:703.613333pt;}
.ydb{bottom:705.693333pt;}
.y128{bottom:707.453333pt;}
.y4c{bottom:721.053333pt;}
.y108{bottom:721.853333pt;}
.ya9{bottom:723.453333pt;}
.yda{bottom:724.093333pt;}
.y14{bottom:733.213333pt;}
.y127{bottom:733.853333pt;}
.y4b{bottom:739.453333pt;}
.y107{bottom:740.253333pt;}
.ya8{bottom:741.853333pt;}
.yd9{bottom:750.493333pt;}
.y126{bottom:752.253333pt;}
.y7a{bottom:755.133333pt;}
.y4a{bottom:757.853333pt;}
.ya7{bottom:760.253333pt;}
.y106{bottom:766.653333pt;}
.y125{bottom:770.653333pt;}
.y79{bottom:772.413333pt;}
.y49{bottom:776.293333pt;}
.yd8{bottom:776.613333pt;}
.ya6{bottom:778.693333pt;}
.y10{bottom:779.333333pt;}
.y105{bottom:785.093333pt;}
.yd7{bottom:792.933333pt;}
.y48{bottom:794.693333pt;}
.ya5{bottom:797.093333pt;}
.y78{bottom:798.853333pt;}
.y104{bottom:803.493333pt;}
.yd6{bottom:804.773333pt;}
.ya4{bottom:815.493333pt;}
.y77{bottom:817.253333pt;}
.yd5{bottom:819.173333pt;}
.y47{bottom:821.093333pt;}
.y103{bottom:821.893333pt;}
.ya{bottom:831.813333pt;}
.yd4{bottom:833.733333pt;}
.ya3{bottom:833.893333pt;}
.y76{bottom:835.653333pt;}
.y46{bottom:839.493333pt;}
.yd3{bottom:848.133333pt;}
.y102{bottom:848.293333pt;}
.y75{bottom:854.053333pt;}
.y45{bottom:857.893333pt;}
.ya2{bottom:860.293333pt;}
.yd2{bottom:861.893333pt;}
.y74{bottom:872.453333pt;}
.y101{bottom:874.533333pt;}
.yd1{bottom:875.813333pt;}
.y44{bottom:876.293333pt;}
.y124{bottom:878.693333pt;}
.ya1{bottom:886.693333pt;}
.yd0{bottom:890.213333pt;}
.y73{bottom:890.853333pt;}
.y100{bottom:891.333333pt;}
.y43{bottom:894.693333pt;}
.yff{bottom:903.173333pt;}
.y123{bottom:905.093333pt;}
.y42{bottom:913.093333pt;}
.ycf{bottom:915.813333pt;}
.y72{bottom:917.253333pt;}
.yfe{bottom:917.733333pt;}
.y8{bottom:924.453333pt;}
.y41{bottom:931.493333pt;}
.yfd{bottom:932.133333pt;}
.y71{bottom:932.773333pt;}
.y4{bottom:943.333333pt;}
.yfc{bottom:946.533333pt;}
.y6c{bottom:947.333333pt;}
.y40{bottom:949.893333pt;}
.yfb{bottom:960.453333pt;}
.y3f{bottom:968.293333pt;}
.yfa{bottom:974.213333pt;}
.yce{bottom:976.293333pt;}
.y3e{bottom:986.693333pt;}
.yf9{bottom:988.613333pt;}
.ya0{bottom:994.693333pt;}
.y3d{bottom:1013.120000pt;}
.y6b{bottom:1014.240000pt;}
.y3b{bottom:1045.280000pt;}
.y3a{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h22{height:13.760000pt;}
.h29{height:13.792000pt;}
.h25{height:13.920000pt;}
.h2e{height:13.952000pt;}
.h1a{height:15.360000pt;}
.h2b{height:16.800000pt;}
.h14{height:16.960000pt;}
.h7{height:18.880000pt;}
.h10{height:23.200000pt;}
.h17{height:23.360000pt;}
.h28{height:27.520000pt;}
.h2a{height:27.680000pt;}
.h19{height:30.560000pt;}
.hf{height:33.918750pt;}
.h21{height:41.156250pt;}
.h24{height:41.440000pt;}
.h27{height:42.080000pt;}
.h1c{height:42.745000pt;}
.hd{height:43.215000pt;}
.h12{height:44.327188pt;}
.h13{height:45.920000pt;}
.he{height:46.112000pt;}
.h2d{height:47.085938pt;}
.h23{height:47.109375pt;}
.h20{height:48.375000pt;}
.h2{height:49.148438pt;}
.h15{height:50.080000pt;}
.h8{height:52.134375pt;}
.hb{height:52.480000pt;}
.h16{height:52.832000pt;}
.h1d{height:53.406250pt;}
.hc{height:53.535000pt;}
.h1f{height:55.200000pt;}
.h2c{height:57.758750pt;}
.h3{height:57.787500pt;}
.h1e{height:59.340000pt;}
.h1b{height:61.280000pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h26{height:66.404375pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h9{height:92.000000pt;}
.h18{height:142.240000pt;}
.h11{height:145.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:37.312000pt;}
.we{width:37.760000pt;}
.wd{width:47.040000pt;}
.w15{width:56.800000pt;}
.w16{width:56.832000pt;}
.w17{width:56.960000pt;}
.w10{width:63.040000pt;}
.w11{width:63.680000pt;}
.w13{width:63.840000pt;}
.wa{width:65.280000pt;}
.wb{width:65.440000pt;}
.w18{width:66.272000pt;}
.w12{width:73.152000pt;}
.wf{width:73.952000pt;}
.w14{width:75.360000pt;}
.w19{width:84.800000pt;}
.w1e{width:94.592000pt;}
.w21{width:104.000000pt;}
.w29{width:111.200000pt;}
.w1d{width:113.472000pt;}
.w25{width:115.712000pt;}
.w24{width:122.880000pt;}
.w20{width:122.912000pt;}
.w26{width:130.080000pt;}
.w28{width:132.192000pt;}
.w8{width:132.320000pt;}
.w1a{width:141.760000pt;}
.w22{width:141.786667pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.w1b{width:208.226667pt;}
.w27{width:217.466667pt;}
.w1f{width:233.946667pt;}
.w6{width:235.546667pt;}
.w1c{width:254.906667pt;}
.w23{width:368.706667pt;}
.w2a{width:385.186667pt;}
.w9{width:472.573333pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:2.560000pt;}
.x12{left:5.600000pt;}
.xc{left:7.200000pt;}
.x47{left:9.280000pt;}
.x4b{left:10.240000pt;}
.x4c{left:11.520000pt;}
.x3e{left:12.640000pt;}
.x49{left:14.080000pt;}
.x43{left:16.320000pt;}
.x3f{left:17.440000pt;}
.x50{left:18.720000pt;}
.x4f{left:20.320000pt;}
.x3d{left:21.760000pt;}
.x41{left:23.040000pt;}
.x4a{left:24.000000pt;}
.x51{left:25.440000pt;}
.x40{left:26.400000pt;}
.xe{left:28.000000pt;}
.x52{left:31.840000pt;}
.x5b{left:33.280000pt;}
.xa{left:36.480000pt;}
.x42{left:37.600000pt;}
.x58{left:42.760000pt;}
.x8{left:47.994667pt;}
.x62{left:54.400000pt;}
.x5a{left:60.160000pt;}
.x5c{left:64.474667pt;}
.x53{left:68.154667pt;}
.x57{left:69.640000pt;}
.x7{left:73.114667pt;}
.x5d{left:74.280000pt;}
.xf{left:91.994667pt;}
.x4{left:94.592000pt;}
.x6{left:97.274667pt;}
.x56{left:126.400000pt;}
.x16{left:132.351988pt;}
.x5e{left:136.000000pt;}
.x5f{left:139.080000pt;}
.x3{left:141.786655pt;}
.x10{left:144.314667pt;}
.x36{left:161.146667pt;}
.x44{left:169.946667pt;}
.x14{left:180.354667pt;}
.x11{left:226.906667pt;}
.x54{left:236.346667pt;}
.x37{left:265.186667pt;}
.x5{left:267.874667pt;}
.x9{left:280.066667pt;}
.x45{left:283.586667pt;}
.xd{left:302.434667pt;}
.x38{left:312.866667pt;}
.x34{left:316.066655pt;}
.x35{left:323.746655pt;}
.x15{left:326.466655pt;}
.x60{left:328.546667pt;}
.x1{left:331.106655pt;}
.x46{left:340.546667pt;}
.x28{left:347.426655pt;}
.x59{left:349.826667pt;}
.x39{left:351.266667pt;}
.x29{left:354.466655pt;}
.x30{left:372.226655pt;}
.x31{left:379.426655pt;}
.x2{left:385.826655pt;}
.x48{left:387.586667pt;}
.x32{left:393.986655pt;}
.x33{left:400.546655pt;}
.x1f{left:420.893322pt;}
.x22{left:422.493322pt;}
.x23{left:426.173322pt;}
.x27{left:437.853322pt;}
.x55{left:444.413333pt;}
.x61{left:451.453333pt;}
.x2e{left:453.693322pt;}
.x1d{left:456.093322pt;}
.x2f{left:459.133322pt;}
.x1e{left:461.053322pt;}
.xb{left:463.773333pt;}
.x3a{left:489.693333pt;}
.x4d{left:500.893333pt;}
.x1b{left:508.893322pt;}
.x25{left:517.693322pt;}
.x1c{left:522.493322pt;}
.x26{left:524.253322pt;}
.x2c{left:535.293322pt;}
.x2d{left:539.293322pt;}
.x3b{left:554.013333pt;}
.x63{left:555.453333pt;}
.x4e{left:557.693333pt;}
.x19{left:561.053322pt;}
.x1a{left:567.293322pt;}
.x64{left:574.333333pt;}
.x65{left:586.053333pt;}
.x20{left:596.613322pt;}
.x2a{left:613.733322pt;}
.x2b{left:618.533322pt;}
.x17{left:625.893322pt;}
.x3c{left:627.813333pt;}
.x24{left:632.133322pt;}
.x21{left:635.333322pt;}
.x18{left:636.293322pt;}
}




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