
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_a5215b4f5c30dedc1863b8bc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cd65f1263ac8d772ef3127fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_850970f7f952b92bb5b63b23.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_075cdc6a2a46552295f0ded7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.751953;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.ls12{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.702000px;}
.ls15{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.269400px;}
.ls19{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.161760px;}
.ls4{letter-spacing:0.169920px;}
.ls18{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.185760px;}
.ls13{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:37.386720px;}
.ls1{letter-spacing:41.868000px;}
.lsf{letter-spacing:46.026720px;}
.ls17{letter-spacing:64.170720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws8{word-spacing:-54.000000px;}
.ws3{word-spacing:-27.036000px;}
.ws4{word-spacing:-26.712000px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.166000px;}
.wsc{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.798000px;}
.ws13{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.878800px;}
.ws1{word-spacing:-11.790600px;}
.ws14{word-spacing:-11.700000px;}
.ws10{word-spacing:-9.732960px;}
.ws11{word-spacing:-9.720000px;}
.wsf{word-spacing:0.000000px;}
._4{margin-left:-1.022400px;}
._1{width:1.135440px;}
._5{width:2.559360px;}
._10{width:3.643680px;}
._f{width:4.664640px;}
._1c{width:5.677200px;}
._e{width:6.812640px;}
._b{width:8.665200px;}
._d{width:9.708480px;}
._c{width:10.739280px;}
._a{width:12.191040px;}
._9{width:13.311120px;}
._12{width:15.084000px;}
._11{width:16.344000px;}
._22{width:18.031440px;}
._8{width:19.078320px;}
._7{width:20.191440px;}
._1f{width:21.792720px;}
._1e{width:23.067360px;}
._1d{width:24.209280px;}
._1a{width:25.278480px;}
._2c{width:26.294400px;}
._18{width:27.370080px;}
._2d{width:28.386000px;}
._25{width:29.521440px;}
._19{width:30.955680px;}
._20{width:32.449680px;}
._2a{width:33.764400px;}
._21{width:35.497440px;}
._23{width:37.648800px;}
._2e{width:38.664720px;}
._24{width:40.517280px;}
._16{width:42.011280px;}
._1b{width:45.895680px;}
._26{width:48.720240px;}
._17{width:49.780080px;}
._2b{width:51.154560px;}
._27{width:52.588800px;}
._28{width:53.604720px;}
._29{width:54.636960px;}
._13{width:83.430000px;}
._30{width:94.420800px;}
._3{width:131.442960px;}
._14{width:158.868000px;}
._2{width:342.981120px;}
._2f{width:1054.465200px;}
._6{width:1063.904640px;}
._15{width:1659.360000px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y4b{bottom:2.556000px;}
.y3e{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y37{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y49{bottom:8.496000px;}
.y10a{bottom:9.540000px;}
.yc{bottom:14.040000px;}
.y124{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y130{bottom:16.374000px;}
.y109{bottom:16.380000px;}
.y4a{bottom:16.416000px;}
.yc1{bottom:17.100000px;}
.y3d{bottom:18.360000px;}
.y12b{bottom:18.720000px;}
.y35{bottom:19.440000px;}
.yb6{bottom:24.480000px;}
.y123{bottom:30.060000px;}
.y12f{bottom:30.234000px;}
.ybb{bottom:31.680000px;}
.y3c{bottom:34.020000px;}
.y2c{bottom:34.740000px;}
.ya{bottom:35.460000px;}
.y34{bottom:35.820000px;}
.y12a{bottom:36.000000px;}
.yaf{bottom:38.880000px;}
.y4c{bottom:41.400000px;}
.y12e{bottom:43.914000px;}
.y122{bottom:43.920000px;}
.yc5{bottom:46.080000px;}
.y3b{bottom:49.500000px;}
.y2b{bottom:50.580000px;}
.y33{bottom:51.300000px;}
.y129{bottom:53.280000px;}
.y121{bottom:57.600000px;}
.y12d{bottom:57.774000px;}
.y6{bottom:58.140000px;}
.y48{bottom:64.080000px;}
.y3a{bottom:64.980000px;}
.y32{bottom:66.780000px;}
.y2a{bottom:67.725000px;}
.y128{bottom:70.380000px;}
.y39{bottom:80.460000px;}
.y31{bottom:82.440000px;}
.y29{bottom:85.005000px;}
.y127{bottom:87.660000px;}
.y30{bottom:97.950000px;}
.y28{bottom:102.285000px;}
.y126{bottom:104.985000px;}
.y3f{bottom:106.245000px;}
.ye0{bottom:111.456000px;}
.y2f{bottom:113.430000px;}
.ya9{bottom:114.156000px;}
.y115{bottom:116.136000px;}
.y7b{bottom:116.856000px;}
.y27{bottom:119.565000px;}
.y47{bottom:125.136000px;}
.y2e{bottom:128.910000px;}
.ya8{bottom:134.136000px;}
.y11e{bottom:134.496000px;}
.y114{bottom:135.936000px;}
.y7a{bottom:136.656000px;}
.y26{bottom:136.845000px;}
.ydf{bottom:138.996000px;}
.y46{bottom:141.696000px;}
.y12c{bottom:145.656000px;}
.yde{bottom:152.850000px;}
.ya7{bottom:153.930000px;}
.y25{bottom:154.125000px;}
.y113{bottom:155.730000px;}
.y45{bottom:155.910000px;}
.y79{bottom:156.450000px;}
.ydd{bottom:166.530000px;}
.y24{bottom:171.225000px;}
.y44{bottom:171.390000px;}
.ya6{bottom:173.730000px;}
.y112{bottom:175.530000px;}
.y78{bottom:176.250000px;}
.ydc{bottom:181.110000px;}
.y43{bottom:186.870000px;}
.y23{bottom:188.505000px;}
.ya5{bottom:193.530000px;}
.y111{bottom:195.330000px;}
.y77{bottom:196.230000px;}
.ydb{bottom:198.390000px;}
.y42{bottom:202.530000px;}
.y22{bottom:205.785000px;}
.ya4{bottom:213.330000px;}
.y110{bottom:215.310000px;}
.y125{bottom:215.490000px;}
.yda{bottom:215.670000px;}
.y76{bottom:216.030000px;}
.y41{bottom:218.910000px;}
.y21{bottom:223.065000px;}
.yd9{bottom:232.770000px;}
.ya3{bottom:233.310000px;}
.y10f{bottom:235.110000px;}
.y75{bottom:235.830000px;}
.y40{bottom:237.990000px;}
.y20{bottom:240.345000px;}
.yd8{bottom:250.050000px;}
.y18{bottom:251.310000px;}
.ya2{bottom:253.110000px;}
.y10e{bottom:254.910000px;}
.y74{bottom:255.630000px;}
.y1f{bottom:257.625000px;}
.yd7{bottom:267.330000px;}
.ya1{bottom:272.910000px;}
.y10d{bottom:274.710000px;}
.y1e{bottom:274.725000px;}
.y73{bottom:275.430000px;}
.yd6{bottom:284.610000px;}
.y1d{bottom:292.005000px;}
.ya0{bottom:292.710000px;}
.y10c{bottom:294.510000px;}
.y72{bottom:295.410000px;}
.yd5{bottom:301.890000px;}
.y1c{bottom:309.285000px;}
.y10b{bottom:311.790000px;}
.y9f{bottom:312.510000px;}
.y71{bottom:315.210000px;}
.yd4{bottom:319.215000px;}
.y1b{bottom:326.595000px;}
.y9e{bottom:332.535000px;}
.y70{bottom:335.055000px;}
.yd3{bottom:336.315000px;}
.y11d{bottom:343.335000px;}
.y1a{bottom:343.875000px;}
.y9d{bottom:352.335000px;}
.yd2{bottom:353.595000px;}
.y6f{bottom:354.855000px;}
.y108{bottom:355.035000px;}
.y19{bottom:361.155000px;}
.y11c{bottom:363.315000px;}
.y107{bottom:369.615000px;}
.y38{bottom:370.875000px;}
.y9c{bottom:372.135000px;}
.y6e{bottom:374.655000px;}
.y11b{bottom:383.115000px;}
.y106{bottom:384.195000px;}
.yd1{bottom:388.155000px;}
.y9b{bottom:391.935000px;}
.y6d{bottom:394.635000px;}
.y105{bottom:398.595000px;}
.y11a{bottom:402.555000px;}
.yd0{bottom:405.435000px;}
.y9a{bottom:411.735000px;}
.y104{bottom:413.175000px;}
.y6c{bottom:414.435000px;}
.y119{bottom:419.835000px;}
.ycf{bottom:422.715000px;}
.y103{bottom:427.755000px;}
.y99{bottom:431.715000px;}
.y6b{bottom:434.235000px;}
.y118{bottom:437.115000px;}
.yce{bottom:439.815000px;}
.y102{bottom:442.335000px;}
.y98{bottom:451.515000px;}
.y6a{bottom:454.035000px;}
.y117{bottom:454.395000px;}
.y101{bottom:456.915000px;}
.ycd{bottom:457.095000px;}
.y36{bottom:464.835000px;}
.y97{bottom:471.315000px;}
.y116{bottom:471.675000px;}
.y69{bottom:473.835000px;}
.ycc{bottom:474.375000px;}
.y2d{bottom:485.535000px;}
.y100{bottom:485.895000px;}
.y120{bottom:486.435000px;}
.yc4{bottom:489.135000px;}
.y96{bottom:491.115000px;}
.y68{bottom:493.815000px;}
.yff{bottom:502.095000px;}
.ycb{bottom:503.715000px;}
.y95{bottom:510.915000px;}
.yfe{bottom:511.635000px;}
.y67{bottom:513.615000px;}
.yca{bottom:518.295000px;}
.yfd{bottom:526.215000px;}
.y94{bottom:530.895000px;}
.yc9{bottom:532.695000px;}
.y66{bottom:533.415000px;}
.yfc{bottom:546.015000px;}
.yc8{bottom:547.275000px;}
.y93{bottom:550.695000px;}
.y65{bottom:553.215000px;}
.y11f{bottom:556.095000px;}
.yc7{bottom:561.855000px;}
.yfb{bottom:565.815000px;}
.y92{bottom:570.525000px;}
.y64{bottom:573.045000px;}
.yc6{bottom:576.465000px;}
.yfa{bottom:585.645000px;}
.y91{bottom:590.325000px;}
.yc0{bottom:591.045000px;}
.y63{bottom:593.025000px;}
.yf9{bottom:605.445000px;}
.yc3{bottom:605.625000px;}
.y90{bottom:610.125000px;}
.y62{bottom:612.825000px;}
.yc2{bottom:620.025000px;}
.yf8{bottom:625.425000px;}
.y16{bottom:627.765000px;}
.y8f{bottom:630.105000px;}
.y61{bottom:632.625000px;}
.yba{bottom:634.605000px;}
.yf7{bottom:645.225000px;}
.ybf{bottom:649.185000px;}
.y8e{bottom:649.905000px;}
.y60{bottom:652.425000px;}
.y15{bottom:662.325000px;}
.ybe{bottom:663.765000px;}
.yf6{bottom:665.025000px;}
.y8d{bottom:669.705000px;}
.y5f{bottom:672.225000px;}
.ybd{bottom:678.345000px;}
.y14{bottom:682.305000px;}
.yf5{bottom:684.825000px;}
.y8c{bottom:689.505000px;}
.y5e{bottom:692.205000px;}
.ybc{bottom:692.925000px;}
.yf4{bottom:704.625000px;}
.yb5{bottom:707.325000px;}
.y8b{bottom:709.305000px;}
.y13{bottom:710.745000px;}
.y5d{bottom:712.005000px;}
.yb9{bottom:721.905000px;}
.yf3{bottom:724.605000px;}
.y12{bottom:728.385000px;}
.y8a{bottom:729.285000px;}
.y5c{bottom:731.805000px;}
.yb8{bottom:736.485000px;}
.yf2{bottom:744.405000px;}
.y89{bottom:749.085000px;}
.y11{bottom:749.625000px;}
.yb7{bottom:751.065000px;}
.y5b{bottom:751.605000px;}
.yf1{bottom:764.205000px;}
.yae{bottom:765.645000px;}
.y88{bottom:768.885000px;}
.y5a{bottom:771.405000px;}
.yb4{bottom:780.225000px;}
.y10{bottom:780.585000px;}
.yf0{bottom:784.005000px;}
.y87{bottom:788.685000px;}
.y59{bottom:791.385000px;}
.yb3{bottom:794.625000px;}
.yef{bottom:803.805000px;}
.y86{bottom:808.485000px;}
.yb2{bottom:809.205000px;}
.y58{bottom:811.185000px;}
.yf{bottom:811.725000px;}
.yb1{bottom:823.830000px;}
.y85{bottom:828.510000px;}
.y57{bottom:831.030000px;}
.yb0{bottom:838.410000px;}
.ye{bottom:842.730000px;}
.yee{bottom:843.630000px;}
.y84{bottom:848.310000px;}
.y56{bottom:850.830000px;}
.yad{bottom:852.990000px;}
.yed{bottom:858.390000px;}
.y83{bottom:868.110000px;}
.yac{bottom:869.190000px;}
.y55{bottom:870.630000px;}
.yd{bottom:871.710000px;}
.yec{bottom:872.970000px;}
.yab{bottom:878.550000px;}
.yb{bottom:887.010000px;}
.yeb{bottom:887.550000px;}
.y82{bottom:887.910000px;}
.y54{bottom:890.610000px;}
.yaa{bottom:893.130000px;}
.yea{bottom:901.950000px;}
.y81{bottom:907.710000px;}
.y53{bottom:910.410000px;}
.ye9{bottom:916.530000px;}
.y80{bottom:927.690000px;}
.y52{bottom:930.210000px;}
.ye8{bottom:931.110000px;}
.ye7{bottom:945.690000px;}
.y7f{bottom:947.490000px;}
.y51{bottom:950.010000px;}
.ye6{bottom:960.270000px;}
.y7e{bottom:967.290000px;}
.y50{bottom:969.810000px;}
.ye5{bottom:974.670000px;}
.y7d{bottom:987.090000px;}
.ye4{bottom:989.250000px;}
.y4f{bottom:989.790000px;}
.ye3{bottom:1003.830000px;}
.y7c{bottom:1006.890000px;}
.y4e{bottom:1009.590000px;}
.ye2{bottom:1020.030000px;}
.y4d{bottom:1026.870000px;}
.ye1{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h1e{height:13.680000px;}
.h21{height:13.860000px;}
.h27{height:13.860150px;}
.h22{height:13.896000px;}
.hf{height:17.280000px;}
.h16{height:19.980000px;}
.h1d{height:21.114844px;}
.h4{height:27.576000px;}
.h28{height:27.720000px;}
.h6{height:33.683203px;}
.h1f{height:34.036523px;}
.h12{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.336328px;}
.h11{height:39.972656px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h25{height:42.840000px;}
.h1b{height:43.506914px;}
.h1a{height:44.236406px;}
.h15{height:44.265586px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h1c{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h23{height:57.600000px;}
.h1{height:58.429688px;}
.h29{height:68.940000px;}
.h2b{height:69.120000px;}
.h24{height:72.000000px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h20{height:86.616000px;}
.h17{height:93.060000px;}
.h26{height:101.196000px;}
.h19{height:118.836000px;}
.h2a{height:119.016000px;}
.h13{height:141.516000px;}
.h8{height:153.900000px;}
.h10{height:375.735000px;}
.h0{height:1188.000000px;}
.we{width:31.140000px;}
.wd{width:31.176000px;}
.w14{width:31.356000px;}
.w10{width:35.820000px;}
.w11{width:39.240000px;}
.w13{width:41.760000px;}
.w2{width:45.036000px;}
.w17{width:46.980000px;}
.w16{width:52.380000px;}
.w15{width:63.000000px;}
.wf{width:68.400000px;}
.w9{width:111.780000px;}
.w8{width:154.830000px;}
.w6{width:201.270000px;}
.wb{width:236.550000px;}
.wa{width:292.215000px;}
.w18{width:344.010000px;}
.w7{width:529.485000px;}
.w12{width:557.205000px;}
.wc{width:591.225000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w19{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x46{left:1.440000px;}
.x38{left:4.140000px;}
.x13{left:6.660000px;}
.x5{left:8.640000px;}
.x4a{left:10.260000px;}
.x4f{left:11.340000px;}
.x4b{left:12.600000px;}
.x16{left:18.045000px;}
.x12{left:20.205000px;}
.x3c{left:23.580000px;}
.x14{left:24.705000px;}
.x15{left:26.505000px;}
.x4e{left:27.900000px;}
.x2b{left:30.600000px;}
.x1f{left:36.180000px;}
.x40{left:42.156000px;}
.x8{left:45.540000px;}
.x4c{left:46.836000px;}
.x2c{left:48.420000px;}
.x1d{left:50.040000px;}
.x2d{left:51.300000px;}
.x2e{left:52.920000px;}
.x4{left:53.999986px;}
.x33{left:58.680000px;}
.x3{left:60.659986px;}
.x41{left:63.756000px;}
.x17{left:65.519986px;}
.x22{left:67.320000px;}
.xb{left:71.999986px;}
.x4d{left:73.296000px;}
.x23{left:74.520000px;}
.x49{left:75.636000px;}
.x26{left:78.120000px;}
.x29{left:85.860000px;}
.x52{left:87.474000px;}
.x20{left:90.750000px;}
.x2a{left:91.830000px;}
.x31{left:92.880000px;}
.x2f{left:94.140000px;}
.x30{left:95.220000px;}
.x27{left:96.690000px;}
.x25{left:98.460000px;}
.x6{left:100.836000px;}
.x24{left:102.240000px;}
.x28{left:104.220000px;}
.x7{left:108.035986px;}
.x3f{left:111.090000px;}
.x3e{left:120.450000px;}
.x3d{left:143.490000px;}
.x3b{left:146.370000px;}
.x1{left:150.509986px;}
.xc{left:163.829986px;}
.x1b{left:176.970000px;}
.x2{left:220.709986px;}
.x34{left:226.875000px;}
.x43{left:232.995000px;}
.x50{left:235.875000px;}
.x32{left:274.889986px;}
.xf{left:292.034986px;}
.x53{left:295.635000px;}
.x42{left:313.814986px;}
.x19{left:347.474986px;}
.x21{left:353.055000px;}
.xe{left:409.034986px;}
.xa{left:459.074986px;}
.x1a{left:461.954986px;}
.xd{left:464.294986px;}
.x10{left:465.374986px;}
.x18{left:478.334986px;}
.x51{left:505.364986px;}
.x1c{left:590.505000px;}
.x44{left:618.765000px;}
.x35{left:650.805000px;}
.x11{left:661.245000px;}
.x36{left:682.710000px;}
.x45{left:693.330000px;}
.x37{left:714.570000px;}
.x1e{left:746.250000px;}
.x47{left:757.050000px;}
.x39{left:783.690000px;}
.x48{left:810.150000px;}
.x9{left:812.490000px;}
.x3a{left:820.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.624000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.239467pt;}
.ls19{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.143787pt;}
.ls4{letter-spacing:0.151040pt;}
.ls18{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.165120pt;}
.ls13{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:33.232640pt;}
.ls1{letter-spacing:37.216000pt;}
.lsf{letter-spacing:40.912640pt;}
.ls17{letter-spacing:57.040640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws3{word-spacing:-24.032000pt;}
.ws4{word-spacing:-23.744000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws12{word-spacing:-12.592000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.376000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.558933pt;}
.ws1{word-spacing:-10.480533pt;}
.ws14{word-spacing:-10.400000pt;}
.ws10{word-spacing:-8.651520pt;}
.ws11{word-spacing:-8.640000pt;}
.wsf{word-spacing:0.000000pt;}
._4{margin-left:-0.908800pt;}
._1{width:1.009280pt;}
._5{width:2.274987pt;}
._10{width:3.238827pt;}
._f{width:4.146347pt;}
._1c{width:5.046400pt;}
._e{width:6.055680pt;}
._b{width:7.702400pt;}
._d{width:8.629760pt;}
._c{width:9.546027pt;}
._a{width:10.836480pt;}
._9{width:11.832107pt;}
._12{width:13.408000pt;}
._11{width:14.528000pt;}
._22{width:16.027947pt;}
._8{width:16.958507pt;}
._7{width:17.947947pt;}
._1f{width:19.371307pt;}
._1e{width:20.504320pt;}
._1d{width:21.519360pt;}
._1a{width:22.469760pt;}
._2c{width:23.372800pt;}
._18{width:24.328960pt;}
._2d{width:25.232000pt;}
._25{width:26.241280pt;}
._19{width:27.516160pt;}
._20{width:28.844160pt;}
._2a{width:30.012800pt;}
._21{width:31.553280pt;}
._23{width:33.465600pt;}
._2e{width:34.368640pt;}
._24{width:36.015360pt;}
._16{width:37.343360pt;}
._1b{width:40.796160pt;}
._26{width:43.306880pt;}
._17{width:44.248960pt;}
._2b{width:45.470720pt;}
._27{width:46.745600pt;}
._28{width:47.648640pt;}
._29{width:48.566187pt;}
._13{width:74.160000pt;}
._30{width:83.929600pt;}
._3{width:116.838187pt;}
._14{width:141.216000pt;}
._2{width:304.872107pt;}
._2f{width:937.302400pt;}
._6{width:945.693013pt;}
._15{width:1474.986667pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y4b{bottom:2.272000pt;}
.y3e{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y37{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y49{bottom:7.552000pt;}
.y10a{bottom:8.480000pt;}
.yc{bottom:12.480000pt;}
.y124{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y130{bottom:14.554667pt;}
.y109{bottom:14.560000pt;}
.y4a{bottom:14.592000pt;}
.yc1{bottom:15.200000pt;}
.y3d{bottom:16.320000pt;}
.y12b{bottom:16.640000pt;}
.y35{bottom:17.280000pt;}
.yb6{bottom:21.760000pt;}
.y123{bottom:26.720000pt;}
.y12f{bottom:26.874667pt;}
.ybb{bottom:28.160000pt;}
.y3c{bottom:30.240000pt;}
.y2c{bottom:30.880000pt;}
.ya{bottom:31.520000pt;}
.y34{bottom:31.840000pt;}
.y12a{bottom:32.000000pt;}
.yaf{bottom:34.560000pt;}
.y4c{bottom:36.800000pt;}
.y12e{bottom:39.034667pt;}
.y122{bottom:39.040000pt;}
.yc5{bottom:40.960000pt;}
.y3b{bottom:44.000000pt;}
.y2b{bottom:44.960000pt;}
.y33{bottom:45.600000pt;}
.y129{bottom:47.360000pt;}
.y121{bottom:51.200000pt;}
.y12d{bottom:51.354667pt;}
.y6{bottom:51.680000pt;}
.y48{bottom:56.960000pt;}
.y3a{bottom:57.760000pt;}
.y32{bottom:59.360000pt;}
.y2a{bottom:60.200000pt;}
.y128{bottom:62.560000pt;}
.y39{bottom:71.520000pt;}
.y31{bottom:73.280000pt;}
.y29{bottom:75.560000pt;}
.y127{bottom:77.920000pt;}
.y30{bottom:87.066667pt;}
.y28{bottom:90.920000pt;}
.y126{bottom:93.320000pt;}
.y3f{bottom:94.440000pt;}
.ye0{bottom:99.072000pt;}
.y2f{bottom:100.826667pt;}
.ya9{bottom:101.472000pt;}
.y115{bottom:103.232000pt;}
.y7b{bottom:103.872000pt;}
.y27{bottom:106.280000pt;}
.y47{bottom:111.232000pt;}
.y2e{bottom:114.586667pt;}
.ya8{bottom:119.232000pt;}
.y11e{bottom:119.552000pt;}
.y114{bottom:120.832000pt;}
.y7a{bottom:121.472000pt;}
.y26{bottom:121.640000pt;}
.ydf{bottom:123.552000pt;}
.y46{bottom:125.952000pt;}
.y12c{bottom:129.472000pt;}
.yde{bottom:135.866667pt;}
.ya7{bottom:136.826667pt;}
.y25{bottom:137.000000pt;}
.y113{bottom:138.426667pt;}
.y45{bottom:138.586667pt;}
.y79{bottom:139.066667pt;}
.ydd{bottom:148.026667pt;}
.y24{bottom:152.200000pt;}
.y44{bottom:152.346667pt;}
.ya6{bottom:154.426667pt;}
.y112{bottom:156.026667pt;}
.y78{bottom:156.666667pt;}
.ydc{bottom:160.986667pt;}
.y43{bottom:166.106667pt;}
.y23{bottom:167.560000pt;}
.ya5{bottom:172.026667pt;}
.y111{bottom:173.626667pt;}
.y77{bottom:174.426667pt;}
.ydb{bottom:176.346667pt;}
.y42{bottom:180.026667pt;}
.y22{bottom:182.920000pt;}
.ya4{bottom:189.626667pt;}
.y110{bottom:191.386667pt;}
.y125{bottom:191.546667pt;}
.yda{bottom:191.706667pt;}
.y76{bottom:192.026667pt;}
.y41{bottom:194.586667pt;}
.y21{bottom:198.280000pt;}
.yd9{bottom:206.906667pt;}
.ya3{bottom:207.386667pt;}
.y10f{bottom:208.986667pt;}
.y75{bottom:209.626667pt;}
.y40{bottom:211.546667pt;}
.y20{bottom:213.640000pt;}
.yd8{bottom:222.266667pt;}
.y18{bottom:223.386667pt;}
.ya2{bottom:224.986667pt;}
.y10e{bottom:226.586667pt;}
.y74{bottom:227.226667pt;}
.y1f{bottom:229.000000pt;}
.yd7{bottom:237.626667pt;}
.ya1{bottom:242.586667pt;}
.y10d{bottom:244.186667pt;}
.y1e{bottom:244.200000pt;}
.y73{bottom:244.826667pt;}
.yd6{bottom:252.986667pt;}
.y1d{bottom:259.560000pt;}
.ya0{bottom:260.186667pt;}
.y10c{bottom:261.786667pt;}
.y72{bottom:262.586667pt;}
.yd5{bottom:268.346667pt;}
.y1c{bottom:274.920000pt;}
.y10b{bottom:277.146667pt;}
.y9f{bottom:277.786667pt;}
.y71{bottom:280.186667pt;}
.yd4{bottom:283.746667pt;}
.y1b{bottom:290.306667pt;}
.y9e{bottom:295.586667pt;}
.y70{bottom:297.826667pt;}
.yd3{bottom:298.946667pt;}
.y11d{bottom:305.186667pt;}
.y1a{bottom:305.666667pt;}
.y9d{bottom:313.186667pt;}
.yd2{bottom:314.306667pt;}
.y6f{bottom:315.426667pt;}
.y108{bottom:315.586667pt;}
.y19{bottom:321.026667pt;}
.y11c{bottom:322.946667pt;}
.y107{bottom:328.546667pt;}
.y38{bottom:329.666667pt;}
.y9c{bottom:330.786667pt;}
.y6e{bottom:333.026667pt;}
.y11b{bottom:340.546667pt;}
.y106{bottom:341.506667pt;}
.yd1{bottom:345.026667pt;}
.y9b{bottom:348.386667pt;}
.y6d{bottom:350.786667pt;}
.y105{bottom:354.306667pt;}
.y11a{bottom:357.826667pt;}
.yd0{bottom:360.386667pt;}
.y9a{bottom:365.986667pt;}
.y104{bottom:367.266667pt;}
.y6c{bottom:368.386667pt;}
.y119{bottom:373.186667pt;}
.ycf{bottom:375.746667pt;}
.y103{bottom:380.226667pt;}
.y99{bottom:383.746667pt;}
.y6b{bottom:385.986667pt;}
.y118{bottom:388.546667pt;}
.yce{bottom:390.946667pt;}
.y102{bottom:393.186667pt;}
.y98{bottom:401.346667pt;}
.y6a{bottom:403.586667pt;}
.y117{bottom:403.906667pt;}
.y101{bottom:406.146667pt;}
.ycd{bottom:406.306667pt;}
.y36{bottom:413.186667pt;}
.y97{bottom:418.946667pt;}
.y116{bottom:419.266667pt;}
.y69{bottom:421.186667pt;}
.ycc{bottom:421.666667pt;}
.y2d{bottom:431.586667pt;}
.y100{bottom:431.906667pt;}
.y120{bottom:432.386667pt;}
.yc4{bottom:434.786667pt;}
.y96{bottom:436.546667pt;}
.y68{bottom:438.946667pt;}
.yff{bottom:446.306667pt;}
.ycb{bottom:447.746667pt;}
.y95{bottom:454.146667pt;}
.yfe{bottom:454.786667pt;}
.y67{bottom:456.546667pt;}
.yca{bottom:460.706667pt;}
.yfd{bottom:467.746667pt;}
.y94{bottom:471.906667pt;}
.yc9{bottom:473.506667pt;}
.y66{bottom:474.146667pt;}
.yfc{bottom:485.346667pt;}
.yc8{bottom:486.466667pt;}
.y93{bottom:489.506667pt;}
.y65{bottom:491.746667pt;}
.y11f{bottom:494.306667pt;}
.yc7{bottom:499.426667pt;}
.yfb{bottom:502.946667pt;}
.y92{bottom:507.133333pt;}
.y64{bottom:509.373333pt;}
.yc6{bottom:512.413333pt;}
.yfa{bottom:520.573333pt;}
.y91{bottom:524.733333pt;}
.yc0{bottom:525.373333pt;}
.y63{bottom:527.133333pt;}
.yf9{bottom:538.173333pt;}
.yc3{bottom:538.333333pt;}
.y90{bottom:542.333333pt;}
.y62{bottom:544.733333pt;}
.yc2{bottom:551.133333pt;}
.yf8{bottom:555.933333pt;}
.y16{bottom:558.013333pt;}
.y8f{bottom:560.093333pt;}
.y61{bottom:562.333333pt;}
.yba{bottom:564.093333pt;}
.yf7{bottom:573.533333pt;}
.ybf{bottom:577.053333pt;}
.y8e{bottom:577.693333pt;}
.y60{bottom:579.933333pt;}
.y15{bottom:588.733333pt;}
.ybe{bottom:590.013333pt;}
.yf6{bottom:591.133333pt;}
.y8d{bottom:595.293333pt;}
.y5f{bottom:597.533333pt;}
.ybd{bottom:602.973333pt;}
.y14{bottom:606.493333pt;}
.yf5{bottom:608.733333pt;}
.y8c{bottom:612.893333pt;}
.y5e{bottom:615.293333pt;}
.ybc{bottom:615.933333pt;}
.yf4{bottom:626.333333pt;}
.yb5{bottom:628.733333pt;}
.y8b{bottom:630.493333pt;}
.y13{bottom:631.773333pt;}
.y5d{bottom:632.893333pt;}
.yb9{bottom:641.693333pt;}
.yf3{bottom:644.093333pt;}
.y12{bottom:647.453333pt;}
.y8a{bottom:648.253333pt;}
.y5c{bottom:650.493333pt;}
.yb8{bottom:654.653333pt;}
.yf2{bottom:661.693333pt;}
.y89{bottom:665.853333pt;}
.y11{bottom:666.333333pt;}
.yb7{bottom:667.613333pt;}
.y5b{bottom:668.093333pt;}
.yf1{bottom:679.293333pt;}
.yae{bottom:680.573333pt;}
.y88{bottom:683.453333pt;}
.y5a{bottom:685.693333pt;}
.yb4{bottom:693.533333pt;}
.y10{bottom:693.853333pt;}
.yf0{bottom:696.893333pt;}
.y87{bottom:701.053333pt;}
.y59{bottom:703.453333pt;}
.yb3{bottom:706.333333pt;}
.yef{bottom:714.493333pt;}
.y86{bottom:718.653333pt;}
.yb2{bottom:719.293333pt;}
.y58{bottom:721.053333pt;}
.yf{bottom:721.533333pt;}
.yb1{bottom:732.293333pt;}
.y85{bottom:736.453333pt;}
.y57{bottom:738.693333pt;}
.yb0{bottom:745.253333pt;}
.ye{bottom:749.093333pt;}
.yee{bottom:749.893333pt;}
.y84{bottom:754.053333pt;}
.y56{bottom:756.293333pt;}
.yad{bottom:758.213333pt;}
.yed{bottom:763.013333pt;}
.y83{bottom:771.653333pt;}
.yac{bottom:772.613333pt;}
.y55{bottom:773.893333pt;}
.yd{bottom:774.853333pt;}
.yec{bottom:775.973333pt;}
.yab{bottom:780.933333pt;}
.yb{bottom:788.453333pt;}
.yeb{bottom:788.933333pt;}
.y82{bottom:789.253333pt;}
.y54{bottom:791.653333pt;}
.yaa{bottom:793.893333pt;}
.yea{bottom:801.733333pt;}
.y81{bottom:806.853333pt;}
.y53{bottom:809.253333pt;}
.ye9{bottom:814.693333pt;}
.y80{bottom:824.613333pt;}
.y52{bottom:826.853333pt;}
.ye8{bottom:827.653333pt;}
.ye7{bottom:840.613333pt;}
.y7f{bottom:842.213333pt;}
.y51{bottom:844.453333pt;}
.ye6{bottom:853.573333pt;}
.y7e{bottom:859.813333pt;}
.y50{bottom:862.053333pt;}
.ye5{bottom:866.373333pt;}
.y7d{bottom:877.413333pt;}
.ye4{bottom:879.333333pt;}
.y4f{bottom:879.813333pt;}
.ye3{bottom:892.293333pt;}
.y7c{bottom:895.013333pt;}
.y4e{bottom:897.413333pt;}
.ye2{bottom:906.693333pt;}
.y4d{bottom:912.773333pt;}
.ye1{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h1e{height:12.160000pt;}
.h21{height:12.320000pt;}
.h27{height:12.320133pt;}
.h22{height:12.352000pt;}
.hf{height:15.360000pt;}
.h16{height:17.760000pt;}
.h1d{height:18.768750pt;}
.h4{height:24.512000pt;}
.h28{height:24.640000pt;}
.h6{height:29.940625pt;}
.h1f{height:30.254687pt;}
.h12{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.965625pt;}
.h11{height:35.531250pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h25{height:38.080000pt;}
.h1b{height:38.672812pt;}
.h1a{height:39.321250pt;}
.h15{height:39.347188pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h1c{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h23{height:51.200000pt;}
.h1{height:51.937500pt;}
.h29{height:61.280000pt;}
.h2b{height:61.440000pt;}
.h24{height:64.000000pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h20{height:76.992000pt;}
.h17{height:82.720000pt;}
.h26{height:89.952000pt;}
.h19{height:105.632000pt;}
.h2a{height:105.792000pt;}
.h13{height:125.792000pt;}
.h8{height:136.800000pt;}
.h10{height:333.986667pt;}
.h0{height:1056.000000pt;}
.we{width:27.680000pt;}
.wd{width:27.712000pt;}
.w14{width:27.872000pt;}
.w10{width:31.840000pt;}
.w11{width:34.880000pt;}
.w13{width:37.120000pt;}
.w2{width:40.032000pt;}
.w17{width:41.760000pt;}
.w16{width:46.560000pt;}
.w15{width:56.000000pt;}
.wf{width:60.800000pt;}
.w9{width:99.360000pt;}
.w8{width:137.626667pt;}
.w6{width:178.906667pt;}
.wb{width:210.266667pt;}
.wa{width:259.746667pt;}
.w18{width:305.786667pt;}
.w7{width:470.653333pt;}
.w12{width:495.293333pt;}
.wc{width:525.533333pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w19{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.280000pt;}
.x38{left:3.680000pt;}
.x13{left:5.920000pt;}
.x5{left:7.680000pt;}
.x4a{left:9.120000pt;}
.x4f{left:10.080000pt;}
.x4b{left:11.200000pt;}
.x16{left:16.040000pt;}
.x12{left:17.960000pt;}
.x3c{left:20.960000pt;}
.x14{left:21.960000pt;}
.x15{left:23.560000pt;}
.x4e{left:24.800000pt;}
.x2b{left:27.200000pt;}
.x1f{left:32.160000pt;}
.x40{left:37.472000pt;}
.x8{left:40.480000pt;}
.x4c{left:41.632000pt;}
.x2c{left:43.040000pt;}
.x1d{left:44.480000pt;}
.x2d{left:45.600000pt;}
.x2e{left:47.040000pt;}
.x4{left:47.999988pt;}
.x33{left:52.160000pt;}
.x3{left:53.919988pt;}
.x41{left:56.672000pt;}
.x17{left:58.239988pt;}
.x22{left:59.840000pt;}
.xb{left:63.999988pt;}
.x4d{left:65.152000pt;}
.x23{left:66.240000pt;}
.x49{left:67.232000pt;}
.x26{left:69.440000pt;}
.x29{left:76.320000pt;}
.x52{left:77.754667pt;}
.x20{left:80.666667pt;}
.x2a{left:81.626667pt;}
.x31{left:82.560000pt;}
.x2f{left:83.680000pt;}
.x30{left:84.640000pt;}
.x27{left:85.946667pt;}
.x25{left:87.520000pt;}
.x6{left:89.632000pt;}
.x24{left:90.880000pt;}
.x28{left:92.640000pt;}
.x7{left:96.031988pt;}
.x3f{left:98.746667pt;}
.x3e{left:107.066667pt;}
.x3d{left:127.546667pt;}
.x3b{left:130.106667pt;}
.x1{left:133.786655pt;}
.xc{left:145.626655pt;}
.x1b{left:157.306667pt;}
.x2{left:196.186655pt;}
.x34{left:201.666667pt;}
.x43{left:207.106667pt;}
.x50{left:209.666667pt;}
.x32{left:244.346655pt;}
.xf{left:259.586655pt;}
.x53{left:262.786667pt;}
.x42{left:278.946655pt;}
.x19{left:308.866655pt;}
.x21{left:313.826667pt;}
.xe{left:363.586655pt;}
.xa{left:408.066655pt;}
.x1a{left:410.626655pt;}
.xd{left:412.706655pt;}
.x10{left:413.666655pt;}
.x18{left:425.186655pt;}
.x51{left:449.213321pt;}
.x1c{left:524.893333pt;}
.x44{left:550.013333pt;}
.x35{left:578.493333pt;}
.x11{left:587.773333pt;}
.x36{left:606.853333pt;}
.x45{left:616.293333pt;}
.x37{left:635.173333pt;}
.x1e{left:663.333333pt;}
.x47{left:672.933333pt;}
.x39{left:696.613333pt;}
.x48{left:720.133333pt;}
.x9{left:722.213333pt;}
.x3a{left:729.093333pt;}
}




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