
    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_beb2664c4ccac8999890156e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2cf118ea64aecc1a1957129.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fc2bd26eb90eed854e764bb7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3a4d5ff3214a3b6a618419b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_8bd65aea87da41e1667b9dc3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_d7a457cebdf6e5ec407d4d9f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c0a85598a6b23b5b7989543d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-75.600000px;}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-1.854000px;}
.ls2f{letter-spacing:-0.876000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.596400px;}
.ls58{letter-spacing:-0.593400px;}
.ls5f{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.518400px;}
.lse{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.305400px;}
.ls46{letter-spacing:-0.300000px;}
.ls42{letter-spacing:-0.291600px;}
.ls10{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.270600px;}
.lsc{letter-spacing:-0.269400px;}
.ls49{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.230400px;}
.ls27{letter-spacing:-0.169800px;}
.ls2a{letter-spacing:-0.158400px;}
.ls48{letter-spacing:-0.126600px;}
.ls5e{letter-spacing:-0.126000px;}
.ls5b{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.053280px;}
.ls5c{letter-spacing:-0.036000px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls43{letter-spacing:0.053280px;}
.ls5a{letter-spacing:0.090000px;}
.ls47{letter-spacing:0.106800px;}
.ls30{letter-spacing:0.109200px;}
.ls5d{letter-spacing:0.126000px;}
.ls53{letter-spacing:0.126600px;}
.ls4b{letter-spacing:0.153600px;}
.ls4a{letter-spacing:0.161400px;}
.ls4{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.183360px;}
.ls3c{letter-spacing:0.198600px;}
.ls0{letter-spacing:0.206400px;}
.ls41{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.269400px;}
.ls12{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.593400px;}
.ls5{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.620000px;}
.ls24{letter-spacing:2.160000px;}
.ls3f{letter-spacing:3.600000px;}
.ls32{letter-spacing:4.500000px;}
.ls18{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.760000px;}
.ls25{letter-spacing:7.200000px;}
.ls2d{letter-spacing:7.920000px;}
.ls33{letter-spacing:10.800000px;}
.ls4c{letter-spacing:13.680000px;}
.ls14{letter-spacing:15.120000px;}
.ls37{letter-spacing:15.840000px;}
.ls19{letter-spacing:18.000000px;}
.ls3e{letter-spacing:19.440000px;}
.ls39{letter-spacing:20.160000px;}
.ls3b{letter-spacing:23.760000px;}
.ls6{letter-spacing:24.120000px;}
.ls21{letter-spacing:24.480000px;}
.ls36{letter-spacing:26.616000px;}
.ls3a{letter-spacing:26.640000px;}
.ls31{letter-spacing:31.680000px;}
.ls17{letter-spacing:32.400000px;}
.ls13{letter-spacing:33.120000px;}
.ls16{letter-spacing:38.160000px;}
.ls8{letter-spacing:40.500000px;}
.ls38{letter-spacing:41.760000px;}
.ls4d{letter-spacing:42.480000px;}
.ls35{letter-spacing:44.640000px;}
.ls34{letter-spacing:44.760000px;}
.ls59{letter-spacing:44.820000px;}
.ls15{letter-spacing:47.520000px;}
.ls2c{letter-spacing:51.120000px;}
.ls22{letter-spacing:53.976000px;}
.ls4e{letter-spacing:54.720000px;}
.ls9{letter-spacing:59.040000px;}
.ls54{letter-spacing:59.940000px;}
.ls3d{letter-spacing:63.360000px;}
.ls51{letter-spacing:79.920000px;}
.ls55{letter-spacing:99.360000px;}
.ls57{letter-spacing:108.000000px;}
.ls50{letter-spacing:110.160000px;}
.ls23{letter-spacing:115.920000px;}
.ls52{letter-spacing:119.081280px;}
.ls56{letter-spacing:123.120000px;}
.ls45{letter-spacing:154.980000px;}
.ls40{letter-spacing:327.756000px;}
.ls4f{letter-spacing:584.760000px;}
.ls3{letter-spacing:777.756000px;}
.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;}
}
.ws23{word-spacing:-16.686600px;}
.ws17{word-spacing:-16.669200px;}
.wse{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.401600px;}
.ws12{word-spacing:-16.390200px;}
.ws11{word-spacing:-16.329600px;}
.ws14{word-spacing:-16.289400px;}
.ws13{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.041600px;}
.ws24{word-spacing:-15.966600px;}
.ws16{word-spacing:-15.963600px;}
.ws18{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.533400px;}
.ws2{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.120000px;}
.ws1e{word-spacing:-15.101400px;}
.ws21{word-spacing:-15.093600px;}
.ws1d{word-spacing:-15.046800px;}
.ws22{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.ws20{word-spacing:-14.813400px;}
.ws1f{word-spacing:-14.680200px;}
.ws19{word-spacing:-14.648400px;}
.ws1c{word-spacing:-14.640000px;}
.ws2c{word-spacing:-14.400000px;}
.wsa{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.788000px;}
.ws2b{word-spacing:-13.680000px;}
.ws29{word-spacing:-13.626000px;}
.ws25{word-spacing:-13.590000px;}
.wsd{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws28{word-spacing:-13.464000px;}
.wsb{word-spacing:-13.446000px;}
.ws8{word-spacing:-13.410000px;}
.ws26{word-spacing:-13.392000px;}
.ws2a{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.212000px;}
.ws27{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.790600px;}
.ws6{word-spacing:-11.700000px;}
.wsf{word-spacing:0.000000px;}
._18{margin-left:-2.583360px;}
._1{margin-left:-1.063920px;}
._0{width:1.180080px;}
._3{width:2.203920px;}
._4{width:3.564000px;}
._14{width:5.210400px;}
._34{width:6.643200px;}
._2c{width:8.598000px;}
._7{width:10.044000px;}
._2e{width:11.260800px;}
._16{width:12.320640px;}
._39{width:13.403040px;}
._1b{width:15.040560px;}
._28{width:17.605680px;}
._36{width:19.039200px;}
._3f{width:20.207280px;}
._f{width:21.816000px;}
._2{width:23.382000px;}
._33{width:24.499200px;}
._35{width:26.363520px;}
._3a{width:27.820800px;}
._b{width:29.268000px;}
._2b{width:30.850800px;}
._1d{width:31.955040px;}
._1c{width:33.026400px;}
._3e{width:34.183920px;}
._19{width:35.231040px;}
._1a{width:36.643920px;}
._1e{width:37.699200px;}
._e{width:38.820000px;}
._5{width:39.870000px;}
._6{width:40.935840px;}
._11{width:42.336000px;}
._10{width:43.614000px;}
._47{width:44.829840px;}
._22{width:45.838080px;}
._1f{width:46.964160px;}
._15{width:48.156480px;}
._37{width:50.289840px;}
._50{width:51.683520px;}
._8{width:52.866000px;}
._17{width:54.802800px;}
._4c{width:56.838000px;}
._13{width:57.854400px;}
._c{width:58.914000px;}
._d{width:60.102000px;}
._49{width:61.183440px;}
._4d{width:63.192960px;}
._26{width:65.934960px;}
._3d{width:67.034880px;}
._9{width:68.958000px;}
._25{width:70.287840px;}
._24{width:71.585520px;}
._29{width:73.062720px;}
._2a{width:74.526000px;}
._a{width:75.540000px;}
._2f{width:76.679520px;}
._32{width:79.094640px;}
._52{width:81.459840px;}
._53{width:83.153760px;}
._4e{width:84.375600px;}
._27{width:85.780800px;}
._44{width:87.635520px;}
._43{width:88.695360px;}
._40{width:90.616320px;}
._2d{width:93.398400px;}
._41{width:94.573680px;}
._23{width:96.184560px;}
._12{width:97.839840px;}
._30{width:99.095040px;}
._31{width:100.206480px;}
._4f{width:102.081600px;}
._48{width:106.447680px;}
._57{width:107.604480px;}
._54{width:110.492880px;}
._38{width:115.165920px;}
._4a{width:116.516160px;}
._4b{width:119.581680px;}
._55{width:121.348080px;}
._56{width:122.975760px;}
._3b{width:127.180800px;}
._3c{width:128.439360px;}
._20{width:141.024960px;}
._21{width:142.744320px;}
._45{width:144.072000px;}
._51{width:152.360880px;}
._46{width:163.454400px;}
._42{width:285.930480px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.240000px;}
.yaa{bottom:20.340000px;}
.ya3{bottom:20.520000px;}
.yd6{bottom:20.550000px;}
.yc5{bottom:20.556000px;}
.ya9{bottom:37.620000px;}
.ya2{bottom:37.800000px;}
.yd5{bottom:37.830000px;}
.yc4{bottom:37.836000px;}
.ya8{bottom:54.900000px;}
.ya1{bottom:55.074000px;}
.yce{bottom:55.080000px;}
.yd4{bottom:55.110000px;}
.yc3{bottom:55.116000px;}
.y2{bottom:56.880000px;}
.ya0{bottom:72.174000px;}
.ya7{bottom:72.180000px;}
.yb9{bottom:72.210000px;}
.ycd{bottom:72.360000px;}
.y2e{bottom:88.740000px;}
.ya6{bottom:89.460000px;}
.yb8{bottom:89.490000px;}
.ybb{bottom:90.180000px;}
.y55{bottom:90.360000px;}
.y74{bottom:91.800000px;}
.ye8{bottom:93.960000px;}
.y9f{bottom:98.856000px;}
.yee{bottom:101.376000px;}
.y9d{bottom:103.896000px;}
.yc7{bottom:106.740000px;}
.yb7{bottom:106.770000px;}
.y2d{bottom:107.676000px;}
.y73{bottom:108.936000px;}
.y54{bottom:109.476000px;}
.ye7{bottom:112.896000px;}
.yed{bottom:115.236000px;}
.y9c{bottom:120.996000px;}
.yb6{bottom:124.050000px;}
.y72{bottom:126.216000px;}
.y2c{bottom:126.756000px;}
.y53{bottom:128.376000px;}
.yec{bottom:128.916000px;}
.ye6{bottom:131.796000px;}
.y9b{bottom:138.276000px;}
.yb5{bottom:141.150000px;}
.yc2{bottom:141.330000px;}
.yeb{bottom:142.776000px;}
.y71{bottom:143.496000px;}
.y2b{bottom:145.656000px;}
.y52{bottom:147.456000px;}
.ye5{bottom:150.870000px;}
.y9a{bottom:155.550000px;}
.yea{bottom:156.630000px;}
.yb4{bottom:158.430000px;}
.yc1{bottom:158.610000px;}
.y70{bottom:160.770000px;}
.y2a{bottom:164.550000px;}
.y51{bottom:166.350000px;}
.ye4{bottom:169.770000px;}
.ye9{bottom:170.310000px;}
.y99{bottom:172.830000px;}
.yb3{bottom:175.710000px;}
.y6f{bottom:178.050000px;}
.y29{bottom:183.630000px;}
.y50{bottom:185.250000px;}
.y9e{bottom:188.850000px;}
.y98{bottom:190.110000px;}
.yb2{bottom:192.990000px;}
.yc0{bottom:193.035000px;}
.y6e{bottom:195.330000px;}
.y28{bottom:202.530000px;}
.y4f{bottom:204.330000px;}
.y97{bottom:207.390000px;}
.ye3{bottom:207.750000px;}
.yb1{bottom:210.270000px;}
.ybf{bottom:210.315000px;}
.y6d{bottom:212.430000px;}
.y27{bottom:221.610000px;}
.y4e{bottom:223.230000px;}
.y96{bottom:224.490000px;}
.ye2{bottom:226.650000px;}
.yb0{bottom:227.550000px;}
.ybe{bottom:227.595000px;}
.y6c{bottom:229.710000px;}
.y26{bottom:239.430000px;}
.y95{bottom:241.770000px;}
.y4d{bottom:242.310000px;}
.yaf{bottom:244.695000px;}
.ycc{bottom:244.830000px;}
.ybd{bottom:244.875000px;}
.ye1{bottom:245.730000px;}
.y6b{bottom:246.990000px;}
.y25{bottom:253.650000px;}
.y94{bottom:259.050000px;}
.y4c{bottom:261.210000px;}
.yae{bottom:261.975000px;}
.ycb{bottom:262.110000px;}
.ybc{bottom:262.155000px;}
.y6a{bottom:264.270000px;}
.ye0{bottom:264.630000px;}
.y24{bottom:269.130000px;}
.y93{bottom:276.375000px;}
.yad{bottom:279.255000px;}
.y4b{bottom:280.155000px;}
.y69{bottom:281.595000px;}
.ydf{bottom:283.755000px;}
.y23{bottom:284.655000px;}
.y92{bottom:293.655000px;}
.yca{bottom:296.535000px;}
.y68{bottom:298.695000px;}
.y4a{bottom:299.235000px;}
.y22{bottom:300.135000px;}
.yde{bottom:302.655000px;}
.y91{bottom:310.935000px;}
.yd3{bottom:313.815000px;}
.y21{bottom:315.795000px;}
.y67{bottom:315.975000px;}
.y49{bottom:318.135000px;}
.ydd{bottom:321.555000px;}
.y90{bottom:328.035000px;}
.yd2{bottom:331.095000px;}
.y20{bottom:331.275000px;}
.y66{bottom:333.255000px;}
.y48{bottom:337.215000px;}
.ydc{bottom:340.635000px;}
.y8f{bottom:345.315000px;}
.y1f{bottom:346.755000px;}
.yd1{bottom:348.375000px;}
.y65{bottom:350.535000px;}
.ycf{bottom:351.615000px;}
.y47{bottom:356.115000px;}
.ydb{bottom:359.535000px;}
.y1e{bottom:362.235000px;}
.y8e{bottom:362.595000px;}
.yc9{bottom:362.775000px;}
.y64{bottom:367.815000px;}
.y46{bottom:375.195000px;}
.y1d{bottom:377.895000px;}
.yda{bottom:378.615000px;}
.y8d{bottom:379.875000px;}
.y63{bottom:385.095000px;}
.yba{bottom:385.995000px;}
.y1c{bottom:393.375000px;}
.y45{bottom:394.095000px;}
.y8c{bottom:397.155000px;}
.yac{bottom:397.335000px;}
.yd9{bottom:397.515000px;}
.y62{bottom:402.195000px;}
.y108{bottom:406.695000px;}
.y1b{bottom:408.855000px;}
.y44{bottom:412.995000px;}
.y8b{bottom:414.435000px;}
.yd8{bottom:416.595000px;}
.y61{bottom:419.475000px;}
.y107{bottom:420.555000px;}
.y1a{bottom:424.335000px;}
.y8a{bottom:431.535000px;}
.y43{bottom:432.075000px;}
.yd7{bottom:434.415000px;}
.y106{bottom:435.135000px;}
.y60{bottom:436.755000px;}
.y19{bottom:439.995000px;}
.yd0{bottom:445.575000px;}
.y89{bottom:448.815000px;}
.y42{bottom:450.975000px;}
.y105{bottom:452.235000px;}
.y5f{bottom:454.065000px;}
.y18{bottom:455.505000px;}
.y88{bottom:466.125000px;}
.y104{bottom:469.185000px;}
.y41{bottom:470.085000px;}
.y17{bottom:470.985000px;}
.y5e{bottom:471.345000px;}
.y87{bottom:483.405000px;}
.y103{bottom:484.845000px;}
.y16{bottom:486.465000px;}
.y5d{bottom:488.625000px;}
.y40{bottom:488.985000px;}
.y102{bottom:500.325000px;}
.y86{bottom:500.685000px;}
.y15{bottom:501.945000px;}
.y5c{bottom:505.725000px;}
.y3f{bottom:507.885000px;}
.y101{bottom:515.805000px;}
.y14{bottom:517.605000px;}
.y85{bottom:517.785000px;}
.y5b{bottom:523.005000px;}
.y3e{bottom:526.965000px;}
.y100{bottom:531.285000px;}
.y13{bottom:533.085000px;}
.y84{bottom:535.065000px;}
.y5a{bottom:540.285000px;}
.y3d{bottom:545.865000px;}
.yff{bottom:546.945000px;}
.y12{bottom:548.565000px;}
.y83{bottom:552.345000px;}
.y59{bottom:557.565000px;}
.yfe{bottom:562.425000px;}
.y11{bottom:564.045000px;}
.y3c{bottom:564.945000px;}
.y82{bottom:569.625000px;}
.y58{bottom:574.845000px;}
.yfd{bottom:577.905000px;}
.y10{bottom:579.705000px;}
.y3b{bottom:583.845000px;}
.y81{bottom:586.905000px;}
.y57{bottom:592.125000px;}
.yfc{bottom:593.385000px;}
.yf{bottom:595.185000px;}
.y3a{bottom:602.745000px;}
.y80{bottom:604.185000px;}
.yfb{bottom:609.045000px;}
.ye{bottom:610.665000px;}
.y7f{bottom:621.285000px;}
.y39{bottom:621.825000px;}
.yfa{bottom:624.525000px;}
.y56{bottom:625.785000px;}
.yd{bottom:626.145000px;}
.y7e{bottom:638.610000px;}
.yf9{bottom:640.050000px;}
.y38{bottom:640.770000px;}
.yc{bottom:641.850000px;}
.yf8{bottom:655.530000px;}
.y7d{bottom:655.890000px;}
.yb{bottom:657.330000px;}
.y37{bottom:659.850000px;}
.yf7{bottom:671.190000px;}
.ya{bottom:672.810000px;}
.y7c{bottom:673.170000px;}
.yc8{bottom:675.870000px;}
.y36{bottom:678.750000px;}
.yf6{bottom:686.670000px;}
.yc6{bottom:687.210000px;}
.y9{bottom:688.290000px;}
.y7b{bottom:690.450000px;}
.yab{bottom:693.150000px;}
.y35{bottom:697.650000px;}
.yf5{bottom:702.150000px;}
.ya5{bottom:704.490000px;}
.y7a{bottom:707.730000px;}
.y34{bottom:716.730000px;}
.yf4{bottom:717.630000px;}
.y8{bottom:723.570000px;}
.y79{bottom:724.830000px;}
.yf3{bottom:733.290000px;}
.y33{bottom:735.630000px;}
.y78{bottom:742.110000px;}
.y7{bottom:742.650000px;}
.yf2{bottom:748.770000px;}
.y32{bottom:754.710000px;}
.y77{bottom:759.390000px;}
.y6{bottom:761.550000px;}
.yf1{bottom:764.250000px;}
.y31{bottom:773.610000px;}
.y76{bottom:776.670000px;}
.y5{bottom:777.570000px;}
.yf0{bottom:779.730000px;}
.y4{bottom:782.790000px;}
.y30{bottom:792.690000px;}
.y75{bottom:793.950000px;}
.yef{bottom:795.390000px;}
.y3{bottom:796.650000px;}
.y2f{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h5{height:12.335625px;}
.ha{height:39.049805px;}
.h10{height:43.215117px;}
.h4{height:47.344922px;}
.hc{height:47.901094px;}
.h8{height:52.998047px;}
.h9{height:54.421875px;}
.h17{height:58.621992px;}
.hd{height:58.651172px;}
.h6{height:58.833281px;}
.h2{height:60.226875px;}
.hb{height:65.010937px;}
.h7{height:66.757500px;}
.h16{height:68.084282px;}
.h3{height:70.664062px;}
.he{height:86.220000px;}
.hf{height:103.500000px;}
.h12{height:120.780000px;}
.h14{height:258.915000px;}
.h11{height:293.295000px;}
.h13{height:310.575000px;}
.h15{height:362.415000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:220.710000px;}
.w5{width:229.890000px;}
.w9{width:233.535000px;}
.w8{width:233.895000px;}
.wa{width:237.630000px;}
.wb{width:237.855000px;}
.w7{width:241.950000px;}
.w6{width:245.595000px;}
.w4{width:255.495000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x15{left:60.300000px;}
.xe{left:61.410000px;}
.xa{left:63.720000px;}
.x10{left:65.340000px;}
.x16{left:67.710000px;}
.x9{left:71.820000px;}
.x8{left:76.716000px;}
.x12{left:82.254000px;}
.x17{left:83.514000px;}
.x3{left:84.995991px;}
.x14{left:86.790000px;}
.xd{left:89.130000px;}
.x1{left:98.855991px;}
.x5{left:101.915991px;}
.x4{left:126.575991px;}
.x6{left:131.795991px;}
.x7{left:252.794991px;}
.x19{left:267.914991px;}
.xc{left:297.435000px;}
.x2{left:301.214991px;}
.x11{left:306.975000px;}
.x18{left:314.715000px;}
.x13{left:319.035000px;}
.xf{left:329.654991px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.648000pt;}
.ls2f{letter-spacing:-0.778667pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.530133pt;}
.ls58{letter-spacing:-0.527467pt;}
.ls5f{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.460800pt;}
.lse{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.271467pt;}
.ls46{letter-spacing:-0.266667pt;}
.ls42{letter-spacing:-0.259200pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.240533pt;}
.lsc{letter-spacing:-0.239467pt;}
.ls49{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.204800pt;}
.ls27{letter-spacing:-0.150933pt;}
.ls2a{letter-spacing:-0.140800pt;}
.ls48{letter-spacing:-0.112533pt;}
.ls5e{letter-spacing:-0.112000pt;}
.ls5b{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls5c{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls43{letter-spacing:0.047360pt;}
.ls5a{letter-spacing:0.080000pt;}
.ls47{letter-spacing:0.094933pt;}
.ls30{letter-spacing:0.097067pt;}
.ls5d{letter-spacing:0.112000pt;}
.ls53{letter-spacing:0.112533pt;}
.ls4b{letter-spacing:0.136533pt;}
.ls4a{letter-spacing:0.143467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.162987pt;}
.ls3c{letter-spacing:0.176533pt;}
.ls0{letter-spacing:0.183467pt;}
.ls41{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.239467pt;}
.ls12{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.527467pt;}
.ls5{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls3f{letter-spacing:3.200000pt;}
.ls32{letter-spacing:4.000000pt;}
.ls18{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:5.120000pt;}
.ls25{letter-spacing:6.400000pt;}
.ls2d{letter-spacing:7.040000pt;}
.ls33{letter-spacing:9.600000pt;}
.ls4c{letter-spacing:12.160000pt;}
.ls14{letter-spacing:13.440000pt;}
.ls37{letter-spacing:14.080000pt;}
.ls19{letter-spacing:16.000000pt;}
.ls3e{letter-spacing:17.280000pt;}
.ls39{letter-spacing:17.920000pt;}
.ls3b{letter-spacing:21.120000pt;}
.ls6{letter-spacing:21.440000pt;}
.ls21{letter-spacing:21.760000pt;}
.ls36{letter-spacing:23.658667pt;}
.ls3a{letter-spacing:23.680000pt;}
.ls31{letter-spacing:28.160000pt;}
.ls17{letter-spacing:28.800000pt;}
.ls13{letter-spacing:29.440000pt;}
.ls16{letter-spacing:33.920000pt;}
.ls8{letter-spacing:36.000000pt;}
.ls38{letter-spacing:37.120000pt;}
.ls4d{letter-spacing:37.760000pt;}
.ls35{letter-spacing:39.680000pt;}
.ls34{letter-spacing:39.786667pt;}
.ls59{letter-spacing:39.840000pt;}
.ls15{letter-spacing:42.240000pt;}
.ls2c{letter-spacing:45.440000pt;}
.ls22{letter-spacing:47.978667pt;}
.ls4e{letter-spacing:48.640000pt;}
.ls9{letter-spacing:52.480000pt;}
.ls54{letter-spacing:53.280000pt;}
.ls3d{letter-spacing:56.320000pt;}
.ls51{letter-spacing:71.040000pt;}
.ls55{letter-spacing:88.320000pt;}
.ls57{letter-spacing:96.000000pt;}
.ls50{letter-spacing:97.920000pt;}
.ls23{letter-spacing:103.040000pt;}
.ls52{letter-spacing:105.850027pt;}
.ls56{letter-spacing:109.440000pt;}
.ls45{letter-spacing:137.760000pt;}
.ls40{letter-spacing:291.338667pt;}
.ls4f{letter-spacing:519.786667pt;}
.ls3{letter-spacing:691.338667pt;}
.ws23{word-spacing:-14.832533pt;}
.ws17{word-spacing:-14.817067pt;}
.wse{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.579200pt;}
.ws12{word-spacing:-14.569067pt;}
.ws11{word-spacing:-14.515200pt;}
.ws14{word-spacing:-14.479467pt;}
.ws13{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.259200pt;}
.ws24{word-spacing:-14.192533pt;}
.ws16{word-spacing:-14.189867pt;}
.ws18{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.807467pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-13.423467pt;}
.ws21{word-spacing:-13.416533pt;}
.ws1d{word-spacing:-13.374933pt;}
.ws22{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.ws20{word-spacing:-13.167467pt;}
.ws1f{word-spacing:-13.049067pt;}
.ws19{word-spacing:-13.020800pt;}
.ws1c{word-spacing:-13.013333pt;}
.ws2c{word-spacing:-12.800000pt;}
.wsa{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.256000pt;}
.ws2b{word-spacing:-12.160000pt;}
.ws29{word-spacing:-12.112000pt;}
.ws25{word-spacing:-12.080000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws28{word-spacing:-11.968000pt;}
.wsb{word-spacing:-11.952000pt;}
.ws8{word-spacing:-11.920000pt;}
.ws26{word-spacing:-11.904000pt;}
.ws2a{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.744000pt;}
.ws27{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.480533pt;}
.ws6{word-spacing:-10.400000pt;}
.wsf{word-spacing:0.000000pt;}
._18{margin-left:-2.296320pt;}
._1{margin-left:-0.945707pt;}
._0{width:1.048960pt;}
._3{width:1.959040pt;}
._4{width:3.168000pt;}
._14{width:4.631467pt;}
._34{width:5.905067pt;}
._2c{width:7.642667pt;}
._7{width:8.928000pt;}
._2e{width:10.009600pt;}
._16{width:10.951680pt;}
._39{width:11.913813pt;}
._1b{width:13.369387pt;}
._28{width:15.649493pt;}
._36{width:16.923733pt;}
._3f{width:17.962027pt;}
._f{width:19.392000pt;}
._2{width:20.784000pt;}
._33{width:21.777067pt;}
._35{width:23.434240pt;}
._3a{width:24.729600pt;}
._b{width:26.016000pt;}
._2b{width:27.422933pt;}
._1d{width:28.404480pt;}
._1c{width:29.356800pt;}
._3e{width:30.385707pt;}
._19{width:31.316480pt;}
._1a{width:32.572373pt;}
._1e{width:33.510400pt;}
._e{width:34.506667pt;}
._5{width:35.440000pt;}
._6{width:36.387413pt;}
._11{width:37.632000pt;}
._10{width:38.768000pt;}
._47{width:39.848747pt;}
._22{width:40.744960pt;}
._1f{width:41.745920pt;}
._15{width:42.805760pt;}
._37{width:44.702080pt;}
._50{width:45.940907pt;}
._8{width:46.992000pt;}
._17{width:48.713600pt;}
._4c{width:50.522667pt;}
._13{width:51.426133pt;}
._c{width:52.368000pt;}
._d{width:53.424000pt;}
._49{width:54.385280pt;}
._4d{width:56.171520pt;}
._26{width:58.608853pt;}
._3d{width:59.586560pt;}
._9{width:61.296000pt;}
._25{width:62.478080pt;}
._24{width:63.631573pt;}
._29{width:64.944640pt;}
._2a{width:66.245333pt;}
._a{width:67.146667pt;}
._2f{width:68.159573pt;}
._32{width:70.306347pt;}
._52{width:72.408747pt;}
._53{width:73.914453pt;}
._4e{width:75.000533pt;}
._27{width:76.249600pt;}
._44{width:77.898240pt;}
._43{width:78.840320pt;}
._40{width:80.547840pt;}
._2d{width:83.020800pt;}
._41{width:84.065493pt;}
._23{width:85.497387pt;}
._12{width:86.968747pt;}
._30{width:88.084480pt;}
._31{width:89.072427pt;}
._4f{width:90.739200pt;}
._48{width:94.620160pt;}
._57{width:95.648427pt;}
._54{width:98.215893pt;}
._38{width:102.369707pt;}
._4a{width:103.569920pt;}
._4b{width:106.294827pt;}
._55{width:107.864960pt;}
._56{width:109.311787pt;}
._3b{width:113.049600pt;}
._3c{width:114.168320pt;}
._20{width:125.355520pt;}
._21{width:126.883840pt;}
._45{width:128.064000pt;}
._51{width:135.431893pt;}
._46{width:145.292800pt;}
._42{width:254.160427pt;}
.fs3{font-size:10.880000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.880000pt;}
.yaa{bottom:18.080000pt;}
.ya3{bottom:18.240000pt;}
.yd6{bottom:18.266667pt;}
.yc5{bottom:18.272000pt;}
.ya9{bottom:33.440000pt;}
.ya2{bottom:33.600000pt;}
.yd5{bottom:33.626667pt;}
.yc4{bottom:33.632000pt;}
.ya8{bottom:48.800000pt;}
.ya1{bottom:48.954667pt;}
.yce{bottom:48.960000pt;}
.yd4{bottom:48.986667pt;}
.yc3{bottom:48.992000pt;}
.y2{bottom:50.560000pt;}
.ya0{bottom:64.154667pt;}
.ya7{bottom:64.160000pt;}
.yb9{bottom:64.186667pt;}
.ycd{bottom:64.320000pt;}
.y2e{bottom:78.880000pt;}
.ya6{bottom:79.520000pt;}
.yb8{bottom:79.546667pt;}
.ybb{bottom:80.160000pt;}
.y55{bottom:80.320000pt;}
.y74{bottom:81.600000pt;}
.ye8{bottom:83.520000pt;}
.y9f{bottom:87.872000pt;}
.yee{bottom:90.112000pt;}
.y9d{bottom:92.352000pt;}
.yc7{bottom:94.880000pt;}
.yb7{bottom:94.906667pt;}
.y2d{bottom:95.712000pt;}
.y73{bottom:96.832000pt;}
.y54{bottom:97.312000pt;}
.ye7{bottom:100.352000pt;}
.yed{bottom:102.432000pt;}
.y9c{bottom:107.552000pt;}
.yb6{bottom:110.266667pt;}
.y72{bottom:112.192000pt;}
.y2c{bottom:112.672000pt;}
.y53{bottom:114.112000pt;}
.yec{bottom:114.592000pt;}
.ye6{bottom:117.152000pt;}
.y9b{bottom:122.912000pt;}
.yb5{bottom:125.466667pt;}
.yc2{bottom:125.626667pt;}
.yeb{bottom:126.912000pt;}
.y71{bottom:127.552000pt;}
.y2b{bottom:129.472000pt;}
.y52{bottom:131.072000pt;}
.ye5{bottom:134.106667pt;}
.y9a{bottom:138.266667pt;}
.yea{bottom:139.226667pt;}
.yb4{bottom:140.826667pt;}
.yc1{bottom:140.986667pt;}
.y70{bottom:142.906667pt;}
.y2a{bottom:146.266667pt;}
.y51{bottom:147.866667pt;}
.ye4{bottom:150.906667pt;}
.ye9{bottom:151.386667pt;}
.y99{bottom:153.626667pt;}
.yb3{bottom:156.186667pt;}
.y6f{bottom:158.266667pt;}
.y29{bottom:163.226667pt;}
.y50{bottom:164.666667pt;}
.y9e{bottom:167.866667pt;}
.y98{bottom:168.986667pt;}
.yb2{bottom:171.546667pt;}
.yc0{bottom:171.586667pt;}
.y6e{bottom:173.626667pt;}
.y28{bottom:180.026667pt;}
.y4f{bottom:181.626667pt;}
.y97{bottom:184.346667pt;}
.ye3{bottom:184.666667pt;}
.yb1{bottom:186.906667pt;}
.ybf{bottom:186.946667pt;}
.y6d{bottom:188.826667pt;}
.y27{bottom:196.986667pt;}
.y4e{bottom:198.426667pt;}
.y96{bottom:199.546667pt;}
.ye2{bottom:201.466667pt;}
.yb0{bottom:202.266667pt;}
.ybe{bottom:202.306667pt;}
.y6c{bottom:204.186667pt;}
.y26{bottom:212.826667pt;}
.y95{bottom:214.906667pt;}
.y4d{bottom:215.386667pt;}
.yaf{bottom:217.506667pt;}
.ycc{bottom:217.626667pt;}
.ybd{bottom:217.666667pt;}
.ye1{bottom:218.426667pt;}
.y6b{bottom:219.546667pt;}
.y25{bottom:225.466667pt;}
.y94{bottom:230.266667pt;}
.y4c{bottom:232.186667pt;}
.yae{bottom:232.866667pt;}
.ycb{bottom:232.986667pt;}
.ybc{bottom:233.026667pt;}
.y6a{bottom:234.906667pt;}
.ye0{bottom:235.226667pt;}
.y24{bottom:239.226667pt;}
.y93{bottom:245.666667pt;}
.yad{bottom:248.226667pt;}
.y4b{bottom:249.026667pt;}
.y69{bottom:250.306667pt;}
.ydf{bottom:252.226667pt;}
.y23{bottom:253.026667pt;}
.y92{bottom:261.026667pt;}
.yca{bottom:263.586667pt;}
.y68{bottom:265.506667pt;}
.y4a{bottom:265.986667pt;}
.y22{bottom:266.786667pt;}
.yde{bottom:269.026667pt;}
.y91{bottom:276.386667pt;}
.yd3{bottom:278.946667pt;}
.y21{bottom:280.706667pt;}
.y67{bottom:280.866667pt;}
.y49{bottom:282.786667pt;}
.ydd{bottom:285.826667pt;}
.y90{bottom:291.586667pt;}
.yd2{bottom:294.306667pt;}
.y20{bottom:294.466667pt;}
.y66{bottom:296.226667pt;}
.y48{bottom:299.746667pt;}
.ydc{bottom:302.786667pt;}
.y8f{bottom:306.946667pt;}
.y1f{bottom:308.226667pt;}
.yd1{bottom:309.666667pt;}
.y65{bottom:311.586667pt;}
.ycf{bottom:312.546667pt;}
.y47{bottom:316.546667pt;}
.ydb{bottom:319.586667pt;}
.y1e{bottom:321.986667pt;}
.y8e{bottom:322.306667pt;}
.yc9{bottom:322.466667pt;}
.y64{bottom:326.946667pt;}
.y46{bottom:333.506667pt;}
.y1d{bottom:335.906667pt;}
.yda{bottom:336.546667pt;}
.y8d{bottom:337.666667pt;}
.y63{bottom:342.306667pt;}
.yba{bottom:343.106667pt;}
.y1c{bottom:349.666667pt;}
.y45{bottom:350.306667pt;}
.y8c{bottom:353.026667pt;}
.yac{bottom:353.186667pt;}
.yd9{bottom:353.346667pt;}
.y62{bottom:357.506667pt;}
.y108{bottom:361.506667pt;}
.y1b{bottom:363.426667pt;}
.y44{bottom:367.106667pt;}
.y8b{bottom:368.386667pt;}
.yd8{bottom:370.306667pt;}
.y61{bottom:372.866667pt;}
.y107{bottom:373.826667pt;}
.y1a{bottom:377.186667pt;}
.y8a{bottom:383.586667pt;}
.y43{bottom:384.066667pt;}
.yd7{bottom:386.146667pt;}
.y106{bottom:386.786667pt;}
.y60{bottom:388.226667pt;}
.y19{bottom:391.106667pt;}
.yd0{bottom:396.066667pt;}
.y89{bottom:398.946667pt;}
.y42{bottom:400.866667pt;}
.y105{bottom:401.986667pt;}
.y5f{bottom:403.613333pt;}
.y18{bottom:404.893333pt;}
.y88{bottom:414.333333pt;}
.y104{bottom:417.053333pt;}
.y41{bottom:417.853333pt;}
.y17{bottom:418.653333pt;}
.y5e{bottom:418.973333pt;}
.y87{bottom:429.693333pt;}
.y103{bottom:430.973333pt;}
.y16{bottom:432.413333pt;}
.y5d{bottom:434.333333pt;}
.y40{bottom:434.653333pt;}
.y102{bottom:444.733333pt;}
.y86{bottom:445.053333pt;}
.y15{bottom:446.173333pt;}
.y5c{bottom:449.533333pt;}
.y3f{bottom:451.453333pt;}
.y101{bottom:458.493333pt;}
.y14{bottom:460.093333pt;}
.y85{bottom:460.253333pt;}
.y5b{bottom:464.893333pt;}
.y3e{bottom:468.413333pt;}
.y100{bottom:472.253333pt;}
.y13{bottom:473.853333pt;}
.y84{bottom:475.613333pt;}
.y5a{bottom:480.253333pt;}
.y3d{bottom:485.213333pt;}
.yff{bottom:486.173333pt;}
.y12{bottom:487.613333pt;}
.y83{bottom:490.973333pt;}
.y59{bottom:495.613333pt;}
.yfe{bottom:499.933333pt;}
.y11{bottom:501.373333pt;}
.y3c{bottom:502.173333pt;}
.y82{bottom:506.333333pt;}
.y58{bottom:510.973333pt;}
.yfd{bottom:513.693333pt;}
.y10{bottom:515.293333pt;}
.y3b{bottom:518.973333pt;}
.y81{bottom:521.693333pt;}
.y57{bottom:526.333333pt;}
.yfc{bottom:527.453333pt;}
.yf{bottom:529.053333pt;}
.y3a{bottom:535.773333pt;}
.y80{bottom:537.053333pt;}
.yfb{bottom:541.373333pt;}
.ye{bottom:542.813333pt;}
.y7f{bottom:552.253333pt;}
.y39{bottom:552.733333pt;}
.yfa{bottom:555.133333pt;}
.y56{bottom:556.253333pt;}
.yd{bottom:556.573333pt;}
.y7e{bottom:567.653333pt;}
.yf9{bottom:568.933333pt;}
.y38{bottom:569.573333pt;}
.yc{bottom:570.533333pt;}
.yf8{bottom:582.693333pt;}
.y7d{bottom:583.013333pt;}
.yb{bottom:584.293333pt;}
.y37{bottom:586.533333pt;}
.yf7{bottom:596.613333pt;}
.ya{bottom:598.053333pt;}
.y7c{bottom:598.373333pt;}
.yc8{bottom:600.773333pt;}
.y36{bottom:603.333333pt;}
.yf6{bottom:610.373333pt;}
.yc6{bottom:610.853333pt;}
.y9{bottom:611.813333pt;}
.y7b{bottom:613.733333pt;}
.yab{bottom:616.133333pt;}
.y35{bottom:620.133333pt;}
.yf5{bottom:624.133333pt;}
.ya5{bottom:626.213333pt;}
.y7a{bottom:629.093333pt;}
.y34{bottom:637.093333pt;}
.yf4{bottom:637.893333pt;}
.y8{bottom:643.173333pt;}
.y79{bottom:644.293333pt;}
.yf3{bottom:651.813333pt;}
.y33{bottom:653.893333pt;}
.y78{bottom:659.653333pt;}
.y7{bottom:660.133333pt;}
.yf2{bottom:665.573333pt;}
.y32{bottom:670.853333pt;}
.y77{bottom:675.013333pt;}
.y6{bottom:676.933333pt;}
.yf1{bottom:679.333333pt;}
.y31{bottom:687.653333pt;}
.y76{bottom:690.373333pt;}
.y5{bottom:691.173333pt;}
.yf0{bottom:693.093333pt;}
.y4{bottom:695.813333pt;}
.y30{bottom:704.613333pt;}
.y75{bottom:705.733333pt;}
.yef{bottom:707.013333pt;}
.y3{bottom:708.133333pt;}
.y2f{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h5{height:10.965000pt;}
.ha{height:34.710938pt;}
.h10{height:38.413438pt;}
.h4{height:42.084375pt;}
.hc{height:42.578750pt;}
.h8{height:47.109375pt;}
.h9{height:48.375000pt;}
.h17{height:52.108438pt;}
.hd{height:52.134375pt;}
.h6{height:52.296250pt;}
.h2{height:53.535000pt;}
.hb{height:57.787500pt;}
.h7{height:59.340000pt;}
.h16{height:60.519362pt;}
.h3{height:62.812500pt;}
.he{height:76.640000pt;}
.hf{height:92.000000pt;}
.h12{height:107.360000pt;}
.h14{height:230.146667pt;}
.h11{height:260.706667pt;}
.h13{height:276.066667pt;}
.h15{height:322.146667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:196.186667pt;}
.w5{width:204.346667pt;}
.w9{width:207.586667pt;}
.w8{width:207.906667pt;}
.wa{width:211.226667pt;}
.wb{width:211.426667pt;}
.w7{width:215.066667pt;}
.w6{width:218.306667pt;}
.w4{width:227.106667pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x15{left:53.600000pt;}
.xe{left:54.586667pt;}
.xa{left:56.640000pt;}
.x10{left:58.080000pt;}
.x16{left:60.186667pt;}
.x9{left:63.840000pt;}
.x8{left:68.192000pt;}
.x12{left:73.114667pt;}
.x17{left:74.234667pt;}
.x3{left:75.551992pt;}
.x14{left:77.146667pt;}
.xd{left:79.226667pt;}
.x1{left:87.871992pt;}
.x5{left:90.591992pt;}
.x4{left:112.511992pt;}
.x6{left:117.151992pt;}
.x7{left:224.706658pt;}
.x19{left:238.146658pt;}
.xc{left:264.386667pt;}
.x2{left:267.746658pt;}
.x11{left:272.866667pt;}
.x18{left:279.746667pt;}
.x13{left:283.586667pt;}
.xf{left:293.026658pt;}
}




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