
    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_161175c396e35343504f43f4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d23dfebc24edd9858906b396.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_63ab6e30718673a8c7b8e469.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_956bea4bbf65c0792f24547b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_30dfdb9a45d686a39382d259.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b68c6d7cb5fc9041e1f5eead.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6d482a3605d1b043dd1ed5e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_c9dfbad21be055dc1a0f6c83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7e2382e6630fa032d02bbec6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_25db404315851b11d4835926.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-2.520000px;}
.ls9{letter-spacing:-1.800000px;}
.ls7{letter-spacing:-0.924000px;}
.ls20{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.804000px;}
.lsf{letter-spacing:-0.738000px;}
.lsc{letter-spacing:-0.702000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.085200px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.292200px;}
.ls21{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.594000px;}
.ls27{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.869760px;}
.ls16{letter-spacing:3.780000px;}
.ls1c{letter-spacing:7.380000px;}
.ls19{letter-spacing:8.820000px;}
.ls23{letter-spacing:9.540000px;}
.ls1a{letter-spacing:11.700000px;}
.ls15{letter-spacing:17.460000px;}
.ls17{letter-spacing:21.780000px;}
.ls26{letter-spacing:24.660000px;}
.ls24{letter-spacing:25.308000px;}
.ls1d{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws16{word-spacing:-14.112000px;}
.ws13{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.284000px;}
.ws7{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.906000px;}
.ws6{word-spacing:-12.798000px;}
.ws9{word-spacing:-12.762000px;}
.ws14{word-spacing:-12.672000px;}
.ws4{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.980000px;}
.wsc{word-spacing:-10.905000px;}
.wse{word-spacing:-10.612800px;}
.wsb{word-spacing:-10.527600px;}
.ws2{word-spacing:-9.978240px;}
.wsd{word-spacing:-9.808800px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._7{width:4.320000px;}
._8{width:5.778000px;}
._15{width:7.133040px;}
._14{width:8.532000px;}
._5{width:9.727680px;}
._1a{width:10.750320px;}
._17{width:11.772000px;}
._13{width:14.768640px;}
._10{width:15.984000px;}
._18{width:17.334000px;}
._d{width:19.080000px;}
._4{width:21.010320px;}
._16{width:22.680000px;}
._1f{width:23.710320px;}
._11{width:24.786000px;}
._12{width:26.279040px;}
._19{width:28.062960px;}
._1b{width:29.717040px;}
._1e{width:31.295280px;}
._26{width:32.503440px;}
._a{width:33.579360px;}
._9{width:34.614000px;}
._1c{width:35.951040px;}
._1d{width:37.176960px;}
._6{width:38.664000px;}
._b{width:39.731040px;}
._c{width:40.770000px;}
._21{width:41.837040px;}
._22{width:43.266960px;}
._25{width:44.658000px;}
._24{width:45.699120px;}
._20{width:47.304000px;}
._31{width:48.486720px;}
._2a{width:49.954320px;}
._27{width:51.354000px;}
._28{width:52.380000px;}
._3a{width:54.067680px;}
._2c{width:55.196640px;}
._2b{width:56.538000px;}
._30{width:57.834000px;}
._23{width:58.860000px;}
._e{width:60.534000px;}
._29{width:62.964000px;}
._2d{width:65.286000px;}
._35{width:66.366000px;}
._40{width:69.066000px;}
._41{width:72.269280px;}
._3e{width:73.926000px;}
._32{width:80.568000px;}
._43{width:88.182000px;}
._38{width:130.446000px;}
._3b{width:141.534000px;}
._39{width:172.314000px;}
._33{width:178.416000px;}
._34{width:179.549040px;}
._3d{width:187.812000px;}
._2f{width:205.848000px;}
._2e{width:207.144000px;}
._3f{width:242.298000px;}
._45{width:272.808000px;}
._44{width:274.212000px;}
._37{width:399.546000px;}
._42{width:405.918000px;}
._3{width:432.814560px;}
._3c{width:671.364000px;}
._36{width:902.394000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:5.580000px;}
.y2a{bottom:7.740000px;}
.y29{bottom:25.560000px;}
.y1a{bottom:30.060000px;}
.y19{bottom:54.720000px;}
.y68{bottom:58.500000px;}
.y27{bottom:72.720000px;}
.y4{bottom:77.220000px;}
.y18{bottom:81.180000px;}
.y49{bottom:93.060000px;}
.y157{bottom:97.560000px;}
.y184{bottom:97.920000px;}
.y104{bottom:98.100000px;}
.y26{bottom:99.540000px;}
.ya0{bottom:100.620000px;}
.y18d{bottom:100.800000px;}
.y6{bottom:105.120000px;}
.y1bf{bottom:106.560000px;}
.yd9{bottom:107.100000px;}
.y17{bottom:108.360000px;}
.y48{bottom:111.060000px;}
.y183{bottom:115.740000px;}
.y103{bottom:115.920000px;}
.y25{bottom:117.360000px;}
.y9f{bottom:118.440000px;}
.y18c{bottom:118.620000px;}
.y1a9{bottom:118.800000px;}
.y66{bottom:122.940000px;}
.y156{bottom:124.380000px;}
.yd8{bottom:124.920000px;}
.y16{bottom:126.180000px;}
.y47{bottom:128.880000px;}
.y1c4{bottom:133.380000px;}
.y182{bottom:133.560000px;}
.y110{bottom:133.740000px;}
.y24{bottom:135.180000px;}
.y18b{bottom:136.440000px;}
.y1a8{bottom:136.620000px;}
.y65{bottom:140.760000px;}
.y102{bottom:142.380000px;}
.yd7{bottom:142.740000px;}
.y15{bottom:144.000000px;}
.y9e{bottom:144.900000px;}
.y46{bottom:146.700000px;}
.y1be{bottom:151.200000px;}
.y181{bottom:151.380000px;}
.y10f{bottom:151.560000px;}
.y23{bottom:153.000000px;}
.y18a{bottom:154.260000px;}
.y1a7{bottom:154.440000px;}
.y64{bottom:158.760000px;}
.y14{bottom:161.820000px;}
.y45{bottom:164.520000px;}
.yd6{bottom:169.200000px;}
.y12f{bottom:169.380000px;}
.y101{bottom:169.560000px;}
.y22{bottom:170.865000px;}
.y9d{bottom:172.260000px;}
.y63{bottom:176.580000px;}
.y10e{bottom:178.020000px;}
.y13{bottom:179.865000px;}
.y1a6{bottom:182.700000px;}
.yd5{bottom:187.020000px;}
.y12e{bottom:187.200000px;}
.y100{bottom:187.380000px;}
.y21{bottom:188.865000px;}
.y9c{bottom:190.080000px;}
.y44{bottom:190.980000px;}
.y62{bottom:194.400000px;}
.y180{bottom:196.200000px;}
.y12{bottom:197.685000px;}
.y1bd{bottom:204.840000px;}
.yff{bottom:205.200000px;}
.y20{bottom:206.685000px;}
.y9b{bottom:207.930000px;}
.y61{bottom:212.250000px;}
.y17f{bottom:214.050000px;}
.yd4{bottom:214.230000px;}
.y11{bottom:215.505000px;}
.y43{bottom:218.190000px;}
.y1bc{bottom:222.690000px;}
.y12d{bottom:223.050000px;}
.yfe{bottom:223.230000px;}
.y1f{bottom:224.505000px;}
.y9a{bottom:225.750000px;}
.y17e{bottom:231.870000px;}
.y1a5{bottom:232.050000px;}
.yd3{bottom:232.230000px;}
.y10{bottom:233.325000px;}
.y42{bottom:236.190000px;}
.y60{bottom:239.070000px;}
.y155{bottom:240.870000px;}
.yfd{bottom:241.050000px;}
.y1e{bottom:242.325000px;}
.y99{bottom:243.570000px;}
.y1bb{bottom:249.510000px;}
.y17d{bottom:249.690000px;}
.y12c{bottom:249.870000px;}
.yd2{bottom:250.050000px;}
.y41{bottom:254.010000px;}
.y5f{bottom:257.070000px;}
.y154{bottom:258.690000px;}
.yfc{bottom:258.870000px;}
.yf{bottom:259.785000px;}
.y1d{bottom:260.145000px;}
.y98{bottom:261.390000px;}
.y17c{bottom:267.510000px;}
.y12b{bottom:267.690000px;}
.yd1{bottom:267.870000px;}
.y40{bottom:271.830000px;}
.y5e{bottom:274.890000px;}
.y153{bottom:276.510000px;}
.yfb{bottom:276.690000px;}
.ye{bottom:277.785000px;}
.y1c{bottom:278.145000px;}
.y97{bottom:279.390000px;}
.y1ba{bottom:285.330000px;}
.y12a{bottom:285.510000px;}
.yd0{bottom:285.690000px;}
.y189{bottom:288.030000px;}
.y3f{bottom:289.650000px;}
.y5d{bottom:292.710000px;}
.yfa{bottom:294.510000px;}
.y1b9{bottom:303.150000px;}
.y17b{bottom:303.330000px;}
.ycf{bottom:303.510000px;}
.y96{bottom:305.850000px;}
.y3e{bottom:307.470000px;}
.y5c{bottom:310.530000px;}
.y152{bottom:312.330000px;}
.yf9{bottom:312.510000px;}
.y1b8{bottom:320.970000px;}
.y17a{bottom:321.150000px;}
.y129{bottom:321.330000px;}
.yce{bottom:321.510000px;}
.y3d{bottom:325.470000px;}
.y5b{bottom:328.350000px;}
.y151{bottom:330.150000px;}
.yf8{bottom:330.330000px;}
.y95{bottom:333.030000px;}
.y188{bottom:334.470000px;}
.y179{bottom:338.970000px;}
.y128{bottom:339.150000px;}
.ycd{bottom:339.330000px;}
.y3c{bottom:343.290000px;}
.y5a{bottom:346.170000px;}
.y1b7{bottom:347.790000px;}
.y150{bottom:347.970000px;}
.yf7{bottom:348.150000px;}
.y94{bottom:350.850000px;}
.y127{bottom:356.970000px;}
.ycc{bottom:357.150000px;}
.y3b{bottom:361.110000px;}
.y59{bottom:364.170000px;}
.y178{bottom:365.430000px;}
.y1b6{bottom:365.610000px;}
.y14f{bottom:365.790000px;}
.yf6{bottom:365.970000px;}
.y93{bottom:368.670000px;}
.y126{bottom:374.790000px;}
.ycb{bottom:374.970000px;}
.y58{bottom:381.990000px;}
.y14e{bottom:383.610000px;}
.yf5{bottom:383.790000px;}
.y92{bottom:386.670000px;}
.y3a{bottom:387.930000px;}
.y125{bottom:392.610000px;}
.yca{bottom:392.790000px;}
.y57{bottom:399.810000px;}
.y1b5{bottom:401.430000px;}
.yf4{bottom:401.610000px;}
.y91{bottom:404.490000px;}
.y39{bottom:405.750000px;}
.yc9{bottom:410.610000px;}
.y1c3{bottom:419.250000px;}
.y14d{bottom:419.430000px;}
.yf3{bottom:419.610000px;}
.y90{bottom:422.310000px;}
.y38{bottom:423.570000px;}
.y56{bottom:426.630000px;}
.y1b4{bottom:428.250000px;}
.y177{bottom:428.430000px;}
.yc8{bottom:428.610000px;}
.y124{bottom:437.070000px;}
.y14c{bottom:437.250000px;}
.yf2{bottom:437.430000px;}
.y8f{bottom:440.130000px;}
.y37{bottom:441.615000px;}
.y55{bottom:444.495000px;}
.y1b3{bottom:446.115000px;}
.y176{bottom:446.295000px;}
.yc7{bottom:446.475000px;}
.y14b{bottom:455.115000px;}
.y167{bottom:455.295000px;}
.y8e{bottom:457.995000px;}
.y36{bottom:459.435000px;}
.y54{bottom:462.315000px;}
.yf1{bottom:463.935000px;}
.y175{bottom:464.115000px;}
.yc6{bottom:464.295000px;}
.y14a{bottom:472.935000px;}
.y8d{bottom:475.815000px;}
.y35{bottom:477.255000px;}
.y53{bottom:480.315000px;}
.y166{bottom:481.755000px;}
.y174{bottom:481.935000px;}
.y10d{bottom:482.115000px;}
.yc5{bottom:490.755000px;}
.y149{bottom:490.935000px;}
.yf0{bottom:491.115000px;}
.y8c{bottom:493.815000px;}
.y34{bottom:495.075000px;}
.y52{bottom:498.135000px;}
.y1b2{bottom:499.755000px;}
.y10c{bottom:499.935000px;}
.y148{bottom:508.755000px;}
.yef{bottom:508.935000px;}
.y19d{bottom:511.635000px;}
.y33{bottom:512.895000px;}
.y51{bottom:515.955000px;}
.y187{bottom:517.755000px;}
.yc4{bottom:517.935000px;}
.y8b{bottom:520.635000px;}
.y1a4{bottom:526.395000px;}
.y1b1{bottom:526.575000px;}
.y173{bottom:526.755000px;}
.yee{bottom:526.935000px;}
.y19c{bottom:529.455000px;}
.y32{bottom:530.895000px;}
.y147{bottom:535.215000px;}
.y186{bottom:535.575000px;}
.y10b{bottom:535.755000px;}
.yc3{bottom:535.935000px;}
.y8a{bottom:538.455000px;}
.y50{bottom:542.775000px;}
.y1b0{bottom:544.395000px;}
.y172{bottom:544.575000px;}
.yed{bottom:544.755000px;}
.y19b{bottom:547.275000px;}
.y31{bottom:548.715000px;}
.y10a{bottom:553.575000px;}
.yc2{bottom:553.755000px;}
.y89{bottom:556.275000px;}
.y4f{bottom:560.595000px;}
.y1af{bottom:562.215000px;}
.y146{bottom:562.395000px;}
.yec{bottom:562.575000px;}
.y19a{bottom:565.095000px;}
.y30{bottom:566.535000px;}
.y109{bottom:571.395000px;}
.yc1{bottom:571.575000px;}
.y88{bottom:574.095000px;}
.y4e{bottom:578.595000px;}
.y1ae{bottom:580.035000px;}
.y145{bottom:580.215000px;}
.yeb{bottom:580.395000px;}
.y199{bottom:583.095000px;}
.y2f{bottom:584.355000px;}
.y1a3{bottom:589.215000px;}
.yc0{bottom:589.395000px;}
.y87{bottom:592.095000px;}
.y4d{bottom:596.415000px;}
.y108{bottom:597.855000px;}
.y144{bottom:598.035000px;}
.yea{bottom:598.215000px;}
.y198{bottom:600.915000px;}
.y2e{bottom:602.175000px;}
.y1a2{bottom:607.035000px;}
.ybf{bottom:607.215000px;}
.y86{bottom:609.915000px;}
.y4c{bottom:614.235000px;}
.y1c2{bottom:615.855000px;}
.ye9{bottom:616.035000px;}
.y2d{bottom:619.995000px;}
.y1cc{bottom:624.675000px;}
.y1ad{bottom:624.855000px;}
.ybe{bottom:625.035000px;}
.y197{bottom:627.375000px;}
.y85{bottom:627.735000px;}
.y4b{bottom:632.055000px;}
.y143{bottom:633.855000px;}
.ye8{bottom:634.035000px;}
.y1cb{bottom:642.495000px;}
.y1ac{bottom:642.675000px;}
.y1a1{bottom:642.855000px;}
.ybd{bottom:643.035000px;}
.y84{bottom:645.555000px;}
.y2c{bottom:646.635000px;}
.y4a{bottom:649.875000px;}
.y142{bottom:651.675000px;}
.ye7{bottom:651.855000px;}
.y196{bottom:654.555000px;}
.y1ab{bottom:660.495000px;}
.y1a0{bottom:660.675000px;}
.ybc{bottom:660.855000px;}
.y83{bottom:663.375000px;}
.y2b{bottom:669.315000px;}
.y141{bottom:669.495000px;}
.ye6{bottom:669.675000px;}
.y195{bottom:672.375000px;}
.y1c1{bottom:678.345000px;}
.y19f{bottom:678.525000px;}
.ybb{bottom:678.705000px;}
.y82{bottom:681.225000px;}
.y1ca{bottom:687.165000px;}
.y140{bottom:687.345000px;}
.ye5{bottom:687.525000px;}
.y194{bottom:690.225000px;}
.y28{bottom:695.805000px;}
.y171{bottom:696.345000px;}
.yba{bottom:696.525000px;}
.y13f{bottom:705.165000px;}
.ye4{bottom:705.345000px;}
.y81{bottom:708.225000px;}
.y185{bottom:713.805000px;}
.y170{bottom:714.165000px;}
.yb9{bottom:714.345000px;}
.y1c9{bottom:722.985000px;}
.ye3{bottom:723.165000px;}
.y80{bottom:726.045000px;}
.yb8{bottom:732.165000px;}
.y1aa{bottom:740.985000px;}
.ye2{bottom:741.165000px;}
.yd{bottom:743.325000px;}
.y7f{bottom:743.865000px;}
.y1c8{bottom:749.805000px;}
.y13e{bottom:749.985000px;}
.yb7{bottom:750.165000px;}
.y1c0{bottom:758.805000px;}
.y123{bottom:758.985000px;}
.y7e{bottom:761.685000px;}
.ye1{bottom:767.625000px;}
.y13d{bottom:767.805000px;}
.yb6{bottom:767.985000px;}
.y193{bottom:770.325000px;}
.y122{bottom:776.805000px;}
.y7d{bottom:779.505000px;}
.y13c{bottom:785.625000px;}
.yb5{bottom:785.805000px;}
.y18f{bottom:794.265000px;}
.y1c7{bottom:794.445000px;}
.y121{bottom:794.625000px;}
.ye0{bottom:794.805000px;}
.y7c{bottom:797.505000px;}
.y192{bottom:798.945000px;}
.y165{bottom:803.265000px;}
.y13b{bottom:803.445000px;}
.y107{bottom:803.625000px;}
.yb4{bottom:812.265000px;}
.y120{bottom:812.445000px;}
.ydf{bottom:812.625000px;}
.y7b{bottom:815.325000px;}
.y106{bottom:821.445000px;}
.y1c6{bottom:830.265000px;}
.yde{bottom:830.445000px;}
.y7a{bottom:833.145000px;}
.y13a{bottom:839.265000px;}
.yb3{bottom:839.445000px;}
.y105{bottom:848.085000px;}
.y11f{bottom:848.265000px;}
.ydd{bottom:848.445000px;}
.y139{bottom:857.085000px;}
.y18e{bottom:857.265000px;}
.yb2{bottom:857.445000px;}
.y79{bottom:859.965000px;}
.y19e{bottom:865.725000px;}
.y16f{bottom:866.085000px;}
.ydc{bottom:866.265000px;}
.y138{bottom:874.905000px;}
.y11e{bottom:875.085000px;}
.yb1{bottom:875.265000px;}
.y78{bottom:877.785000px;}
.y16e{bottom:883.905000px;}
.ydb{bottom:884.085000px;}
.y137{bottom:892.725000px;}
.y11d{bottom:892.905000px;}
.yb0{bottom:893.085000px;}
.y77{bottom:895.605000px;}
.y16d{bottom:901.725000px;}
.yda{bottom:901.905000px;}
.y136{bottom:910.545000px;}
.y11c{bottom:910.770000px;}
.yaf{bottom:910.950000px;}
.y16c{bottom:919.590000px;}
.y164{bottom:919.770000px;}
.y76{bottom:922.290000px;}
.y11b{bottom:928.590000px;}
.yae{bottom:928.770000px;}
.y163{bottom:937.590000px;}
.y135{bottom:946.410000px;}
.yad{bottom:946.590000px;}
.y75{bottom:949.470000px;}
.y16b{bottom:955.410000px;}
.y162{bottom:955.590000px;}
.y134{bottom:964.230000px;}
.y11a{bottom:964.410000px;}
.yac{bottom:964.590000px;}
.y74{bottom:967.290000px;}
.y16a{bottom:973.230000px;}
.y161{bottom:973.410000px;}
.y133{bottom:982.050000px;}
.y119{bottom:982.230000px;}
.yab{bottom:982.410000px;}
.y73{bottom:985.110000px;}
.y191{bottom:991.050000px;}
.y160{bottom:991.230000px;}
.y132{bottom:999.870000px;}
.y118{bottom:1000.050000px;}
.yaa{bottom:1000.230000px;}
.y72{bottom:1002.930000px;}
.y190{bottom:1008.870000px;}
.y15f{bottom:1009.050000px;}
.y117{bottom:1017.870000px;}
.ya9{bottom:1018.050000px;}
.y71{bottom:1020.930000px;}
.y131{bottom:1026.510000px;}
.y15e{bottom:1026.870000px;}
.ya8{bottom:1035.870000px;}
.y70{bottom:1038.750000px;}
.y15d{bottom:1044.870000px;}
.yc{bottom:1049.010000px;}
.y116{bottom:1053.690000px;}
.ya7{bottom:1053.870000px;}
.y6f{bottom:1056.570000px;}
.y15c{bottom:1062.690000px;}
.yb{bottom:1066.830000px;}
.y115{bottom:1071.510000px;}
.ya6{bottom:1071.690000px;}
.y169{bottom:1080.150000px;}
.y15b{bottom:1080.510000px;}
.y6e{bottom:1084.830000px;}
.y114{bottom:1089.330000px;}
.ya5{bottom:1089.510000px;}
.ya{bottom:1093.290000px;}
.y168{bottom:1097.970000px;}
.y15a{bottom:1098.330000px;}
.y113{bottom:1107.150000px;}
.ya4{bottom:1107.330000px;}
.y5{bottom:1112.940000px;}
.y6d{bottom:1116.150000px;}
.y9{bottom:1123.350000px;}
.y112{bottom:1124.970000px;}
.ya3{bottom:1125.150000px;}
.y130{bottom:1133.610000px;}
.y6c{bottom:1133.970000px;}
.ya2{bottom:1142.970000px;}
.y111{bottom:1151.640000px;}
.y6b{bottom:1152.000000px;}
.ya1{bottom:1161.000000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y159{bottom:1169.820000px;}
.y6a{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y1c5{bottom:1187.640000px;}
.y7{bottom:1191.240000px;}
.y158{bottom:1196.280000px;}
.y69{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y67{bottom:1224.540000px;}
.h12{height:38.100586px;}
.h11{height:40.843828px;}
.he{height:46.800000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h10{height:48.410156px;}
.h14{height:52.971680px;}
.hb{height:52.998047px;}
.hd{height:54.421875px;}
.h13{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.hf{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:299.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x10{left:55.440000px;}
.x8{left:65.160000px;}
.xa{left:69.481500px;}
.x6{left:80.280000px;}
.xd{left:95.256000px;}
.x15{left:108.036000px;}
.x9{left:200.730000px;}
.xc{left:282.315000px;}
.x7{left:380.415000px;}
.x12{left:438.195000px;}
.xe{left:473.505000px;}
.x13{left:500.505000px;}
.xf{left:514.725000px;}
.x14{left:527.505000px;}
.x11{left:680.550000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-2.240000pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls7{letter-spacing:-0.821333pt;}
.ls20{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.714667pt;}
.lsf{letter-spacing:-0.656000pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.259733pt;}
.ls21{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls27{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773120pt;}
.ls16{letter-spacing:3.360000pt;}
.ls1c{letter-spacing:6.560000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls23{letter-spacing:8.480000pt;}
.ls1a{letter-spacing:10.400000pt;}
.ls15{letter-spacing:15.520000pt;}
.ls17{letter-spacing:19.360000pt;}
.ls26{letter-spacing:21.920000pt;}
.ls24{letter-spacing:22.496000pt;}
.ls1d{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws16{word-spacing:-12.544000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.808000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.472000pt;}
.ws6{word-spacing:-11.376000pt;}
.ws9{word-spacing:-11.344000pt;}
.ws14{word-spacing:-11.264000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.760000pt;}
.wsc{word-spacing:-9.693333pt;}
.wse{word-spacing:-9.433600pt;}
.wsb{word-spacing:-9.357867pt;}
.ws2{word-spacing:-8.869547pt;}
.wsd{word-spacing:-8.718933pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._7{width:3.840000pt;}
._8{width:5.136000pt;}
._15{width:6.340480pt;}
._14{width:7.584000pt;}
._5{width:8.646827pt;}
._1a{width:9.555840pt;}
._17{width:10.464000pt;}
._13{width:13.127680pt;}
._10{width:14.208000pt;}
._18{width:15.408000pt;}
._d{width:16.960000pt;}
._4{width:18.675840pt;}
._16{width:20.160000pt;}
._1f{width:21.075840pt;}
._11{width:22.032000pt;}
._12{width:23.359147pt;}
._19{width:24.944853pt;}
._1b{width:26.415147pt;}
._1e{width:27.818027pt;}
._26{width:28.891947pt;}
._a{width:29.848320pt;}
._9{width:30.768000pt;}
._1c{width:31.956480pt;}
._1d{width:33.046187pt;}
._6{width:34.368000pt;}
._b{width:35.316480pt;}
._c{width:36.240000pt;}
._21{width:37.188480pt;}
._22{width:38.459520pt;}
._25{width:39.696000pt;}
._24{width:40.621440pt;}
._20{width:42.048000pt;}
._31{width:43.099307pt;}
._2a{width:44.403840pt;}
._27{width:45.648000pt;}
._28{width:46.560000pt;}
._3a{width:48.060160pt;}
._2c{width:49.063680pt;}
._2b{width:50.256000pt;}
._30{width:51.408000pt;}
._23{width:52.320000pt;}
._e{width:53.808000pt;}
._29{width:55.968000pt;}
._2d{width:58.032000pt;}
._35{width:58.992000pt;}
._40{width:61.392000pt;}
._41{width:64.239360pt;}
._3e{width:65.712000pt;}
._32{width:71.616000pt;}
._43{width:78.384000pt;}
._38{width:115.952000pt;}
._3b{width:125.808000pt;}
._39{width:153.168000pt;}
._33{width:158.592000pt;}
._34{width:159.599147pt;}
._3d{width:166.944000pt;}
._2f{width:182.976000pt;}
._2e{width:184.128000pt;}
._3f{width:215.376000pt;}
._45{width:242.496000pt;}
._44{width:243.744000pt;}
._37{width:355.152000pt;}
._42{width:360.816000pt;}
._3{width:384.724053pt;}
._3c{width:596.768000pt;}
._36{width:802.128000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:4.960000pt;}
.y2a{bottom:6.880000pt;}
.y29{bottom:22.720000pt;}
.y1a{bottom:26.720000pt;}
.y19{bottom:48.640000pt;}
.y68{bottom:52.000000pt;}
.y27{bottom:64.640000pt;}
.y4{bottom:68.640000pt;}
.y18{bottom:72.160000pt;}
.y49{bottom:82.720000pt;}
.y157{bottom:86.720000pt;}
.y184{bottom:87.040000pt;}
.y104{bottom:87.200000pt;}
.y26{bottom:88.480000pt;}
.ya0{bottom:89.440000pt;}
.y18d{bottom:89.600000pt;}
.y6{bottom:93.440000pt;}
.y1bf{bottom:94.720000pt;}
.yd9{bottom:95.200000pt;}
.y17{bottom:96.320000pt;}
.y48{bottom:98.720000pt;}
.y183{bottom:102.880000pt;}
.y103{bottom:103.040000pt;}
.y25{bottom:104.320000pt;}
.y9f{bottom:105.280000pt;}
.y18c{bottom:105.440000pt;}
.y1a9{bottom:105.600000pt;}
.y66{bottom:109.280000pt;}
.y156{bottom:110.560000pt;}
.yd8{bottom:111.040000pt;}
.y16{bottom:112.160000pt;}
.y47{bottom:114.560000pt;}
.y1c4{bottom:118.560000pt;}
.y182{bottom:118.720000pt;}
.y110{bottom:118.880000pt;}
.y24{bottom:120.160000pt;}
.y18b{bottom:121.280000pt;}
.y1a8{bottom:121.440000pt;}
.y65{bottom:125.120000pt;}
.y102{bottom:126.560000pt;}
.yd7{bottom:126.880000pt;}
.y15{bottom:128.000000pt;}
.y9e{bottom:128.800000pt;}
.y46{bottom:130.400000pt;}
.y1be{bottom:134.400000pt;}
.y181{bottom:134.560000pt;}
.y10f{bottom:134.720000pt;}
.y23{bottom:136.000000pt;}
.y18a{bottom:137.120000pt;}
.y1a7{bottom:137.280000pt;}
.y64{bottom:141.120000pt;}
.y14{bottom:143.840000pt;}
.y45{bottom:146.240000pt;}
.yd6{bottom:150.400000pt;}
.y12f{bottom:150.560000pt;}
.y101{bottom:150.720000pt;}
.y22{bottom:151.880000pt;}
.y9d{bottom:153.120000pt;}
.y63{bottom:156.960000pt;}
.y10e{bottom:158.240000pt;}
.y13{bottom:159.880000pt;}
.y1a6{bottom:162.400000pt;}
.yd5{bottom:166.240000pt;}
.y12e{bottom:166.400000pt;}
.y100{bottom:166.560000pt;}
.y21{bottom:167.880000pt;}
.y9c{bottom:168.960000pt;}
.y44{bottom:169.760000pt;}
.y62{bottom:172.800000pt;}
.y180{bottom:174.400000pt;}
.y12{bottom:175.720000pt;}
.y1bd{bottom:182.080000pt;}
.yff{bottom:182.400000pt;}
.y20{bottom:183.720000pt;}
.y9b{bottom:184.826667pt;}
.y61{bottom:188.666667pt;}
.y17f{bottom:190.266667pt;}
.yd4{bottom:190.426667pt;}
.y11{bottom:191.560000pt;}
.y43{bottom:193.946667pt;}
.y1bc{bottom:197.946667pt;}
.y12d{bottom:198.266667pt;}
.yfe{bottom:198.426667pt;}
.y1f{bottom:199.560000pt;}
.y9a{bottom:200.666667pt;}
.y17e{bottom:206.106667pt;}
.y1a5{bottom:206.266667pt;}
.yd3{bottom:206.426667pt;}
.y10{bottom:207.400000pt;}
.y42{bottom:209.946667pt;}
.y60{bottom:212.506667pt;}
.y155{bottom:214.106667pt;}
.yfd{bottom:214.266667pt;}
.y1e{bottom:215.400000pt;}
.y99{bottom:216.506667pt;}
.y1bb{bottom:221.786667pt;}
.y17d{bottom:221.946667pt;}
.y12c{bottom:222.106667pt;}
.yd2{bottom:222.266667pt;}
.y41{bottom:225.786667pt;}
.y5f{bottom:228.506667pt;}
.y154{bottom:229.946667pt;}
.yfc{bottom:230.106667pt;}
.yf{bottom:230.920000pt;}
.y1d{bottom:231.240000pt;}
.y98{bottom:232.346667pt;}
.y17c{bottom:237.786667pt;}
.y12b{bottom:237.946667pt;}
.yd1{bottom:238.106667pt;}
.y40{bottom:241.626667pt;}
.y5e{bottom:244.346667pt;}
.y153{bottom:245.786667pt;}
.yfb{bottom:245.946667pt;}
.ye{bottom:246.920000pt;}
.y1c{bottom:247.240000pt;}
.y97{bottom:248.346667pt;}
.y1ba{bottom:253.626667pt;}
.y12a{bottom:253.786667pt;}
.yd0{bottom:253.946667pt;}
.y189{bottom:256.026667pt;}
.y3f{bottom:257.466667pt;}
.y5d{bottom:260.186667pt;}
.yfa{bottom:261.786667pt;}
.y1b9{bottom:269.466667pt;}
.y17b{bottom:269.626667pt;}
.ycf{bottom:269.786667pt;}
.y96{bottom:271.866667pt;}
.y3e{bottom:273.306667pt;}
.y5c{bottom:276.026667pt;}
.y152{bottom:277.626667pt;}
.yf9{bottom:277.786667pt;}
.y1b8{bottom:285.306667pt;}
.y17a{bottom:285.466667pt;}
.y129{bottom:285.626667pt;}
.yce{bottom:285.786667pt;}
.y3d{bottom:289.306667pt;}
.y5b{bottom:291.866667pt;}
.y151{bottom:293.466667pt;}
.yf8{bottom:293.626667pt;}
.y95{bottom:296.026667pt;}
.y188{bottom:297.306667pt;}
.y179{bottom:301.306667pt;}
.y128{bottom:301.466667pt;}
.ycd{bottom:301.626667pt;}
.y3c{bottom:305.146667pt;}
.y5a{bottom:307.706667pt;}
.y1b7{bottom:309.146667pt;}
.y150{bottom:309.306667pt;}
.yf7{bottom:309.466667pt;}
.y94{bottom:311.866667pt;}
.y127{bottom:317.306667pt;}
.ycc{bottom:317.466667pt;}
.y3b{bottom:320.986667pt;}
.y59{bottom:323.706667pt;}
.y178{bottom:324.826667pt;}
.y1b6{bottom:324.986667pt;}
.y14f{bottom:325.146667pt;}
.yf6{bottom:325.306667pt;}
.y93{bottom:327.706667pt;}
.y126{bottom:333.146667pt;}
.ycb{bottom:333.306667pt;}
.y58{bottom:339.546667pt;}
.y14e{bottom:340.986667pt;}
.yf5{bottom:341.146667pt;}
.y92{bottom:343.706667pt;}
.y3a{bottom:344.826667pt;}
.y125{bottom:348.986667pt;}
.yca{bottom:349.146667pt;}
.y57{bottom:355.386667pt;}
.y1b5{bottom:356.826667pt;}
.yf4{bottom:356.986667pt;}
.y91{bottom:359.546667pt;}
.y39{bottom:360.666667pt;}
.yc9{bottom:364.986667pt;}
.y1c3{bottom:372.666667pt;}
.y14d{bottom:372.826667pt;}
.yf3{bottom:372.986667pt;}
.y90{bottom:375.386667pt;}
.y38{bottom:376.506667pt;}
.y56{bottom:379.226667pt;}
.y1b4{bottom:380.666667pt;}
.y177{bottom:380.826667pt;}
.yc8{bottom:380.986667pt;}
.y124{bottom:388.506667pt;}
.y14c{bottom:388.666667pt;}
.yf2{bottom:388.826667pt;}
.y8f{bottom:391.226667pt;}
.y37{bottom:392.546667pt;}
.y55{bottom:395.106667pt;}
.y1b3{bottom:396.546667pt;}
.y176{bottom:396.706667pt;}
.yc7{bottom:396.866667pt;}
.y14b{bottom:404.546667pt;}
.y167{bottom:404.706667pt;}
.y8e{bottom:407.106667pt;}
.y36{bottom:408.386667pt;}
.y54{bottom:410.946667pt;}
.yf1{bottom:412.386667pt;}
.y175{bottom:412.546667pt;}
.yc6{bottom:412.706667pt;}
.y14a{bottom:420.386667pt;}
.y8d{bottom:422.946667pt;}
.y35{bottom:424.226667pt;}
.y53{bottom:426.946667pt;}
.y166{bottom:428.226667pt;}
.y174{bottom:428.386667pt;}
.y10d{bottom:428.546667pt;}
.yc5{bottom:436.226667pt;}
.y149{bottom:436.386667pt;}
.yf0{bottom:436.546667pt;}
.y8c{bottom:438.946667pt;}
.y34{bottom:440.066667pt;}
.y52{bottom:442.786667pt;}
.y1b2{bottom:444.226667pt;}
.y10c{bottom:444.386667pt;}
.y148{bottom:452.226667pt;}
.yef{bottom:452.386667pt;}
.y19d{bottom:454.786667pt;}
.y33{bottom:455.906667pt;}
.y51{bottom:458.626667pt;}
.y187{bottom:460.226667pt;}
.yc4{bottom:460.386667pt;}
.y8b{bottom:462.786667pt;}
.y1a4{bottom:467.906667pt;}
.y1b1{bottom:468.066667pt;}
.y173{bottom:468.226667pt;}
.yee{bottom:468.386667pt;}
.y19c{bottom:470.626667pt;}
.y32{bottom:471.906667pt;}
.y147{bottom:475.746667pt;}
.y186{bottom:476.066667pt;}
.y10b{bottom:476.226667pt;}
.yc3{bottom:476.386667pt;}
.y8a{bottom:478.626667pt;}
.y50{bottom:482.466667pt;}
.y1b0{bottom:483.906667pt;}
.y172{bottom:484.066667pt;}
.yed{bottom:484.226667pt;}
.y19b{bottom:486.466667pt;}
.y31{bottom:487.746667pt;}
.y10a{bottom:492.066667pt;}
.yc2{bottom:492.226667pt;}
.y89{bottom:494.466667pt;}
.y4f{bottom:498.306667pt;}
.y1af{bottom:499.746667pt;}
.y146{bottom:499.906667pt;}
.yec{bottom:500.066667pt;}
.y19a{bottom:502.306667pt;}
.y30{bottom:503.586667pt;}
.y109{bottom:507.906667pt;}
.yc1{bottom:508.066667pt;}
.y88{bottom:510.306667pt;}
.y4e{bottom:514.306667pt;}
.y1ae{bottom:515.586667pt;}
.y145{bottom:515.746667pt;}
.yeb{bottom:515.906667pt;}
.y199{bottom:518.306667pt;}
.y2f{bottom:519.426667pt;}
.y1a3{bottom:523.746667pt;}
.yc0{bottom:523.906667pt;}
.y87{bottom:526.306667pt;}
.y4d{bottom:530.146667pt;}
.y108{bottom:531.426667pt;}
.y144{bottom:531.586667pt;}
.yea{bottom:531.746667pt;}
.y198{bottom:534.146667pt;}
.y2e{bottom:535.266667pt;}
.y1a2{bottom:539.586667pt;}
.ybf{bottom:539.746667pt;}
.y86{bottom:542.146667pt;}
.y4c{bottom:545.986667pt;}
.y1c2{bottom:547.426667pt;}
.ye9{bottom:547.586667pt;}
.y2d{bottom:551.106667pt;}
.y1cc{bottom:555.266667pt;}
.y1ad{bottom:555.426667pt;}
.ybe{bottom:555.586667pt;}
.y197{bottom:557.666667pt;}
.y85{bottom:557.986667pt;}
.y4b{bottom:561.826667pt;}
.y143{bottom:563.426667pt;}
.ye8{bottom:563.586667pt;}
.y1cb{bottom:571.106667pt;}
.y1ac{bottom:571.266667pt;}
.y1a1{bottom:571.426667pt;}
.ybd{bottom:571.586667pt;}
.y84{bottom:573.826667pt;}
.y2c{bottom:574.786667pt;}
.y4a{bottom:577.666667pt;}
.y142{bottom:579.266667pt;}
.ye7{bottom:579.426667pt;}
.y196{bottom:581.826667pt;}
.y1ab{bottom:587.106667pt;}
.y1a0{bottom:587.266667pt;}
.ybc{bottom:587.426667pt;}
.y83{bottom:589.666667pt;}
.y2b{bottom:594.946667pt;}
.y141{bottom:595.106667pt;}
.ye6{bottom:595.266667pt;}
.y195{bottom:597.666667pt;}
.y1c1{bottom:602.973333pt;}
.y19f{bottom:603.133333pt;}
.ybb{bottom:603.293333pt;}
.y82{bottom:605.533333pt;}
.y1ca{bottom:610.813333pt;}
.y140{bottom:610.973333pt;}
.ye5{bottom:611.133333pt;}
.y194{bottom:613.533333pt;}
.y28{bottom:618.493333pt;}
.y171{bottom:618.973333pt;}
.yba{bottom:619.133333pt;}
.y13f{bottom:626.813333pt;}
.ye4{bottom:626.973333pt;}
.y81{bottom:629.533333pt;}
.y185{bottom:634.493333pt;}
.y170{bottom:634.813333pt;}
.yb9{bottom:634.973333pt;}
.y1c9{bottom:642.653333pt;}
.ye3{bottom:642.813333pt;}
.y80{bottom:645.373333pt;}
.yb8{bottom:650.813333pt;}
.y1aa{bottom:658.653333pt;}
.ye2{bottom:658.813333pt;}
.yd{bottom:660.733333pt;}
.y7f{bottom:661.213333pt;}
.y1c8{bottom:666.493333pt;}
.y13e{bottom:666.653333pt;}
.yb7{bottom:666.813333pt;}
.y1c0{bottom:674.493333pt;}
.y123{bottom:674.653333pt;}
.y7e{bottom:677.053333pt;}
.ye1{bottom:682.333333pt;}
.y13d{bottom:682.493333pt;}
.yb6{bottom:682.653333pt;}
.y193{bottom:684.733333pt;}
.y122{bottom:690.493333pt;}
.y7d{bottom:692.893333pt;}
.y13c{bottom:698.333333pt;}
.yb5{bottom:698.493333pt;}
.y18f{bottom:706.013333pt;}
.y1c7{bottom:706.173333pt;}
.y121{bottom:706.333333pt;}
.ye0{bottom:706.493333pt;}
.y7c{bottom:708.893333pt;}
.y192{bottom:710.173333pt;}
.y165{bottom:714.013333pt;}
.y13b{bottom:714.173333pt;}
.y107{bottom:714.333333pt;}
.yb4{bottom:722.013333pt;}
.y120{bottom:722.173333pt;}
.ydf{bottom:722.333333pt;}
.y7b{bottom:724.733333pt;}
.y106{bottom:730.173333pt;}
.y1c6{bottom:738.013333pt;}
.yde{bottom:738.173333pt;}
.y7a{bottom:740.573333pt;}
.y13a{bottom:746.013333pt;}
.yb3{bottom:746.173333pt;}
.y105{bottom:753.853333pt;}
.y11f{bottom:754.013333pt;}
.ydd{bottom:754.173333pt;}
.y139{bottom:761.853333pt;}
.y18e{bottom:762.013333pt;}
.yb2{bottom:762.173333pt;}
.y79{bottom:764.413333pt;}
.y19e{bottom:769.533333pt;}
.y16f{bottom:769.853333pt;}
.ydc{bottom:770.013333pt;}
.y138{bottom:777.693333pt;}
.y11e{bottom:777.853333pt;}
.yb1{bottom:778.013333pt;}
.y78{bottom:780.253333pt;}
.y16e{bottom:785.693333pt;}
.ydb{bottom:785.853333pt;}
.y137{bottom:793.533333pt;}
.y11d{bottom:793.693333pt;}
.yb0{bottom:793.853333pt;}
.y77{bottom:796.093333pt;}
.y16d{bottom:801.533333pt;}
.yda{bottom:801.693333pt;}
.y136{bottom:809.373333pt;}
.y11c{bottom:809.573333pt;}
.yaf{bottom:809.733333pt;}
.y16c{bottom:817.413333pt;}
.y164{bottom:817.573333pt;}
.y76{bottom:819.813333pt;}
.y11b{bottom:825.413333pt;}
.yae{bottom:825.573333pt;}
.y163{bottom:833.413333pt;}
.y135{bottom:841.253333pt;}
.yad{bottom:841.413333pt;}
.y75{bottom:843.973333pt;}
.y16b{bottom:849.253333pt;}
.y162{bottom:849.413333pt;}
.y134{bottom:857.093333pt;}
.y11a{bottom:857.253333pt;}
.yac{bottom:857.413333pt;}
.y74{bottom:859.813333pt;}
.y16a{bottom:865.093333pt;}
.y161{bottom:865.253333pt;}
.y133{bottom:872.933333pt;}
.y119{bottom:873.093333pt;}
.yab{bottom:873.253333pt;}
.y73{bottom:875.653333pt;}
.y191{bottom:880.933333pt;}
.y160{bottom:881.093333pt;}
.y132{bottom:888.773333pt;}
.y118{bottom:888.933333pt;}
.yaa{bottom:889.093333pt;}
.y72{bottom:891.493333pt;}
.y190{bottom:896.773333pt;}
.y15f{bottom:896.933333pt;}
.y117{bottom:904.773333pt;}
.ya9{bottom:904.933333pt;}
.y71{bottom:907.493333pt;}
.y131{bottom:912.453333pt;}
.y15e{bottom:912.773333pt;}
.ya8{bottom:920.773333pt;}
.y70{bottom:923.333333pt;}
.y15d{bottom:928.773333pt;}
.yc{bottom:932.453333pt;}
.y116{bottom:936.613333pt;}
.ya7{bottom:936.773333pt;}
.y6f{bottom:939.173333pt;}
.y15c{bottom:944.613333pt;}
.yb{bottom:948.293333pt;}
.y115{bottom:952.453333pt;}
.ya6{bottom:952.613333pt;}
.y169{bottom:960.133333pt;}
.y15b{bottom:960.453333pt;}
.y6e{bottom:964.293333pt;}
.y114{bottom:968.293333pt;}
.ya5{bottom:968.453333pt;}
.ya{bottom:971.813333pt;}
.y168{bottom:975.973333pt;}
.y15a{bottom:976.293333pt;}
.y113{bottom:984.133333pt;}
.ya4{bottom:984.293333pt;}
.y5{bottom:989.280000pt;}
.y6d{bottom:992.133333pt;}
.y9{bottom:998.533333pt;}
.y112{bottom:999.973333pt;}
.ya3{bottom:1000.133333pt;}
.y130{bottom:1007.653333pt;}
.y6c{bottom:1007.973333pt;}
.ya2{bottom:1015.973333pt;}
.y111{bottom:1023.680000pt;}
.y6b{bottom:1024.000000pt;}
.ya1{bottom:1032.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y159{bottom:1039.840000pt;}
.y6a{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y1c5{bottom:1055.680000pt;}
.y7{bottom:1058.880000pt;}
.y158{bottom:1063.360000pt;}
.y69{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y67{bottom:1088.480000pt;}
.h12{height:33.867188pt;}
.h11{height:36.305625pt;}
.he{height:41.600000pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h10{height:43.031250pt;}
.h14{height:47.085938pt;}
.hb{height:47.109375pt;}
.hd{height:48.375000pt;}
.h13{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.hf{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:266.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x10{left:49.280000pt;}
.x8{left:57.920000pt;}
.xa{left:61.761333pt;}
.x6{left:71.360000pt;}
.xd{left:84.672000pt;}
.x15{left:96.032000pt;}
.x9{left:178.426667pt;}
.xc{left:250.946667pt;}
.x7{left:338.146667pt;}
.x12{left:389.506667pt;}
.xe{left:420.893333pt;}
.x13{left:444.893333pt;}
.xf{left:457.533333pt;}
.x14{left:468.893333pt;}
.x11{left:604.933333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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