
    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_7aac9d4549163e1e30ca7b45.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cad8f4e032c0a5c667a3ca0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e26c3ac47a38ea6493048974.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62bdb1886f9fe348beea50ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_772322d345ce3a39433a92a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_93ff53b26b6679d0c3c4f6d8.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_044e9d52934e6d9142de592c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_69d982773d76037e453f90b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_ca239dd20b86df197ad171b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3{letter-spacing:-1.548000px;}
.ls5{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.924000px;}
.ls16{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053400px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.053400px;}
.ls8{letter-spacing:0.106560px;}
.lsc{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.460200px;}
.ls18{letter-spacing:0.513600px;}
.lsa{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.828000px;}
.ls11{letter-spacing:0.900000px;}
.ls15{letter-spacing:0.924000px;}
.ls12{letter-spacing:8.820000px;}
.ls13{letter-spacing:10.260000px;}
.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;}
}
.wsf{word-spacing:-15.864000px;}
.ws12{word-spacing:-15.453600px;}
.ws14{word-spacing:-15.400200px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993400px;}
.ws0{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886600px;}
.ws9{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.ws1{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.274000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.420000px;}
.ws7{word-spacing:-0.756000px;}
.ws5{word-spacing:-0.336000px;}
.ws8{word-spacing:-0.210000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.252000px;}
._12{margin-left:-5.748000px;}
._1{margin-left:-2.817360px;}
._0{margin-left:-1.075680px;}
._2{width:1.443600px;}
._3{width:2.484000px;}
._4{width:3.510000px;}
._7{width:5.062800px;}
._a{width:6.156000px;}
._e{width:7.304160px;}
._8{width:8.964000px;}
._9{width:10.128000px;}
._5{width:11.772000px;}
._1e{width:13.266720px;}
._d{width:14.533680px;}
._6{width:16.002000px;}
._1d{width:17.758080px;}
._1c{width:18.824400px;}
._11{width:20.142000px;}
._10{width:22.096080px;}
._f{width:23.377680px;}
._18{width:24.698640px;}
._1f{width:25.829760px;}
._1b{width:26.833680px;}
._15{width:28.224000px;}
._16{width:29.376000px;}
._19{width:30.996000px;}
._1a{width:32.400000px;}
._22{width:34.091280px;}
._21{width:35.100000px;}
._c{width:36.126000px;}
._b{width:37.476000px;}
._26{width:39.441600px;}
._17{width:41.634000px;}
._20{width:42.728400px;}
._27{width:43.793280px;}
._25{width:45.656640px;}
._28{width:48.345840px;}
._2e{width:50.073120px;}
._2f{width:52.050960px;}
._29{width:53.117280px;}
._2a{width:54.501120px;}
._14{width:57.343680px;}
._13{width:58.428000px;}
._2b{width:62.150400px;}
._30{width:66.273840px;}
._23{width:69.381360px;}
._24{width:70.546080px;}
._2c{width:71.951040px;}
._2d{width:88.122720px;}
._33{width:95.197680px;}
._32{width:96.452640px;}
._31{width:126.511920px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ydb{bottom:3.899955px;}
.y3{bottom:6.120000px;}
.y7{bottom:6.150000px;}
.y5{bottom:6.300000px;}
.y2{bottom:25.920000px;}
.yda{bottom:39.426155px;}
.y65{bottom:57.636000px;}
.y9{bottom:69.696000px;}
.y8{bottom:83.556000px;}
.yd9{bottom:102.096000px;}
.y140{bottom:106.596000px;}
.ya2{bottom:108.036000px;}
.y15b{bottom:109.476000px;}
.y10b{bottom:111.816000px;}
.yf9{bottom:115.596000px;}
.y63{bottom:115.956000px;}
.yd8{bottom:119.376000px;}
.y13f{bottom:123.876000px;}
.y3c{bottom:124.596000px;}
.ya1{bottom:125.316000px;}
.y15a{bottom:126.756000px;}
.y10a{bottom:129.096000px;}
.yf8{bottom:132.876000px;}
.y62{bottom:133.236000px;}
.yd7{bottom:136.476000px;}
.y3b{bottom:140.256000px;}
.y13e{bottom:140.976000px;}
.ya0{bottom:142.596000px;}
.y159{bottom:144.036000px;}
.y109{bottom:146.376000px;}
.yf7{bottom:149.976000px;}
.y61{bottom:150.510000px;}
.yd6{bottom:153.750000px;}
.y3a{bottom:155.730000px;}
.y13d{bottom:158.250000px;}
.y9f{bottom:159.870000px;}
.y158{bottom:161.310000px;}
.y108{bottom:163.470000px;}
.yf6{bottom:167.250000px;}
.y60{bottom:167.790000px;}
.yd5{bottom:171.030000px;}
.y39{bottom:171.210000px;}
.y13c{bottom:175.530000px;}
.y9e{bottom:176.970000px;}
.y157{bottom:178.590000px;}
.y107{bottom:180.750000px;}
.yf5{bottom:184.530000px;}
.y5f{bottom:184.890000px;}
.y38{bottom:186.690000px;}
.yd4{bottom:188.310000px;}
.y13b{bottom:192.810000px;}
.y9d{bottom:194.250000px;}
.y156{bottom:195.870000px;}
.y106{bottom:198.030000px;}
.yf4{bottom:201.810000px;}
.y5e{bottom:202.170000px;}
.y37{bottom:202.350000px;}
.yd3{bottom:205.590000px;}
.y13a{bottom:210.090000px;}
.y9c{bottom:211.530000px;}
.y155{bottom:212.970000px;}
.y105{bottom:215.310000px;}
.y36{bottom:217.830000px;}
.yf3{bottom:219.090000px;}
.y5d{bottom:219.450000px;}
.yd2{bottom:222.690000px;}
.y139{bottom:227.190000px;}
.y9b{bottom:228.810000px;}
.y154{bottom:230.250000px;}
.y104{bottom:232.590000px;}
.y35{bottom:233.310000px;}
.yf2{bottom:236.190000px;}
.y5c{bottom:236.730000px;}
.yd1{bottom:244.110000px;}
.y138{bottom:244.470000px;}
.y9a{bottom:246.090000px;}
.y153{bottom:247.530000px;}
.y34{bottom:248.790000px;}
.y103{bottom:249.690000px;}
.yf1{bottom:253.470000px;}
.y5b{bottom:254.010000px;}
.y137{bottom:261.750000px;}
.y99{bottom:263.190000px;}
.y33{bottom:264.450000px;}
.y152{bottom:264.810000px;}
.y102{bottom:266.970000px;}
.yd0{bottom:270.750000px;}
.y5a{bottom:271.290000px;}
.y136{bottom:279.030000px;}
.y32{bottom:279.930000px;}
.y98{bottom:280.470000px;}
.y151{bottom:282.090000px;}
.y101{bottom:284.250000px;}
.ycf{bottom:288.030000px;}
.y59{bottom:288.390000px;}
.y31{bottom:295.410000px;}
.y135{bottom:296.310000px;}
.y97{bottom:297.750000px;}
.y150{bottom:299.190000px;}
.y100{bottom:301.530000px;}
.yce{bottom:305.310000px;}
.y58{bottom:305.670000px;}
.y30{bottom:310.890000px;}
.y134{bottom:313.590000px;}
.y96{bottom:315.075000px;}
.y14f{bottom:316.515000px;}
.yff{bottom:318.855000px;}
.ycd{bottom:322.635000px;}
.y57{bottom:322.995000px;}
.y2f{bottom:326.595000px;}
.y133{bottom:330.375000px;}
.y95{bottom:332.355000px;}
.y14e{bottom:333.795000px;}
.yfe{bottom:336.135000px;}
.ycc{bottom:339.735000px;}
.y56{bottom:340.275000px;}
.y2e{bottom:342.075000px;}
.y132{bottom:348.015000px;}
.y94{bottom:349.635000px;}
.y14d{bottom:351.075000px;}
.yfd{bottom:353.235000px;}
.ycb{bottom:357.015000px;}
.y2d{bottom:357.555000px;}
.y131{bottom:365.295000px;}
.y93{bottom:366.735000px;}
.y14c{bottom:368.355000px;}
.yfc{bottom:370.515000px;}
.y2c{bottom:373.035000px;}
.yca{bottom:374.295000px;}
.y55{bottom:374.835000px;}
.yf0{bottom:378.435000px;}
.y130{bottom:382.575000px;}
.y92{bottom:384.015000px;}
.y14b{bottom:385.635000px;}
.yfb{bottom:387.795000px;}
.y2b{bottom:388.695000px;}
.yc9{bottom:391.575000px;}
.y54{bottom:391.935000px;}
.y12f{bottom:399.855000px;}
.y91{bottom:401.295000px;}
.y14a{bottom:402.735000px;}
.yef{bottom:405.075000px;}
.y2a{bottom:405.795000px;}
.yc8{bottom:408.855000px;}
.y53{bottom:409.215000px;}
.y12e{bottom:417.135000px;}
.y90{bottom:418.575000px;}
.y149{bottom:420.015000px;}
.y29{bottom:421.455000px;}
.yee{bottom:422.355000px;}
.yc7{bottom:426.135000px;}
.y52{bottom:426.495000px;}
.y12d{bottom:434.235000px;}
.y8f{bottom:435.855000px;}
.y28{bottom:436.935000px;}
.y148{bottom:437.295000px;}
.yed{bottom:439.635000px;}
.yc6{bottom:443.235000px;}
.y51{bottom:443.775000px;}
.y142{bottom:447.375000px;}
.y12c{bottom:451.515000px;}
.y27{bottom:452.415000px;}
.y8e{bottom:453.135000px;}
.y147{bottom:454.575000px;}
.yec{bottom:456.735000px;}
.yc5{bottom:460.515000px;}
.y50{bottom:461.055000px;}
.y26{bottom:467.895000px;}
.y12b{bottom:468.795000px;}
.y8d{bottom:470.235000px;}
.y146{bottom:471.855000px;}
.yeb{bottom:474.015000px;}
.yc4{bottom:477.795000px;}
.y4f{bottom:478.335000px;}
.y25{bottom:483.555000px;}
.y12a{bottom:486.075000px;}
.y8c{bottom:487.515000px;}
.y145{bottom:489.135000px;}
.yea{bottom:491.295000px;}
.yc3{bottom:495.075000px;}
.y4e{bottom:495.435000px;}
.y24{bottom:499.035000px;}
.y129{bottom:503.355000px;}
.y8b{bottom:504.795000px;}
.y144{bottom:506.235000px;}
.ye9{bottom:508.575000px;}
.yc2{bottom:512.355000px;}
.y4d{bottom:512.715000px;}
.y23{bottom:514.515000px;}
.y128{bottom:520.635000px;}
.y8a{bottom:522.075000px;}
.ye8{bottom:525.855000px;}
.y143{bottom:527.655000px;}
.yc1{bottom:529.635000px;}
.y22{bottom:529.995000px;}
.y127{bottom:537.735000px;}
.y89{bottom:539.355000px;}
.ye7{bottom:543.135000px;}
.y21{bottom:545.655000px;}
.yc0{bottom:546.735000px;}
.y4c{bottom:547.275000px;}
.y126{bottom:555.015000px;}
.y88{bottom:556.635000px;}
.ye6{bottom:560.235000px;}
.y20{bottom:561.135000px;}
.ybf{bottom:564.015000px;}
.y4b{bottom:564.555000px;}
.y125{bottom:572.295000px;}
.y87{bottom:573.735000px;}
.y1f{bottom:576.615000px;}
.ye5{bottom:577.515000px;}
.ybe{bottom:581.295000px;}
.y4a{bottom:581.655000px;}
.y124{bottom:589.605000px;}
.y86{bottom:591.045000px;}
.y1e{bottom:592.125000px;}
.ye4{bottom:594.825000px;}
.ybd{bottom:598.605000px;}
.y49{bottom:598.965000px;}
.y123{bottom:606.885000px;}
.y1d{bottom:607.785000px;}
.y85{bottom:608.325000px;}
.ye3{bottom:612.105000px;}
.ybc{bottom:615.885000px;}
.y48{bottom:616.245000px;}
.y1c{bottom:623.265000px;}
.y122{bottom:623.985000px;}
.y84{bottom:625.605000px;}
.ye2{bottom:629.385000px;}
.ybb{bottom:632.985000px;}
.y47{bottom:637.665000px;}
.y1b{bottom:638.745000px;}
.y121{bottom:641.265000px;}
.y83{bottom:642.885000px;}
.ye1{bottom:646.485000px;}
.yba{bottom:650.265000px;}
.y1a{bottom:654.225000px;}
.y46{bottom:654.765000px;}
.y120{bottom:658.545000px;}
.y82{bottom:659.985000px;}
.ye0{bottom:663.765000px;}
.yb9{bottom:667.545000px;}
.y19{bottom:669.885000px;}
.y11f{bottom:675.825000px;}
.y81{bottom:677.265000px;}
.ydf{bottom:681.045000px;}
.yb8{bottom:684.825000px;}
.y18{bottom:685.365000px;}
.y45{bottom:686.985000px;}
.y11e{bottom:693.105000px;}
.y80{bottom:694.545000px;}
.yde{bottom:698.325000px;}
.y17{bottom:700.845000px;}
.y44{bottom:702.645000px;}
.yb7{bottom:706.245000px;}
.y11d{bottom:710.385000px;}
.y7f{bottom:711.825000px;}
.ydd{bottom:715.605000px;}
.y16{bottom:716.325000px;}
.y43{bottom:718.125000px;}
.y7e{bottom:729.105000px;}
.y11c{bottom:731.625000px;}
.y15{bottom:731.805000px;}
.yb6{bottom:732.885000px;}
.y42{bottom:733.605000px;}
.y7d{bottom:746.385000px;}
.y14{bottom:747.465000px;}
.y41{bottom:749.085000px;}
.yb5{bottom:749.985000px;}
.ydc{bottom:754.125000px;}
.y11b{bottom:758.265000px;}
.y13{bottom:762.945000px;}
.y7c{bottom:763.485000px;}
.y40{bottom:764.745000px;}
.yb4{bottom:767.265000px;}
.y11a{bottom:775.545000px;}
.y12{bottom:778.425000px;}
.y3f{bottom:780.225000px;}
.y7b{bottom:780.765000px;}
.yb3{bottom:784.545000px;}
.y119{bottom:792.825000px;}
.y11{bottom:793.905000px;}
.y3e{bottom:795.705000px;}
.y7a{bottom:798.045000px;}
.yb2{bottom:801.825000px;}
.y10{bottom:809.565000px;}
.y118{bottom:810.105000px;}
.y3d{bottom:811.185000px;}
.y79{bottom:815.325000px;}
.yb1{bottom:819.105000px;}
.y117{bottom:827.385000px;}
.y78{bottom:832.605000px;}
.yb0{bottom:836.385000px;}
.y116{bottom:844.485000px;}
.y77{bottom:849.885000px;}
.yaf{bottom:853.485000px;}
.y115{bottom:861.810000px;}
.yf{bottom:861.990000px;}
.y76{bottom:867.030000px;}
.yae{bottom:870.810000px;}
.ye{bottom:878.010000px;}
.y114{bottom:879.090000px;}
.y75{bottom:884.310000px;}
.yad{bottom:888.090000px;}
.y113{bottom:896.370000px;}
.y74{bottom:901.590000px;}
.yac{bottom:905.370000px;}
.yfa{bottom:909.510000px;}
.y112{bottom:913.650000px;}
.yd{bottom:917.374050px;}
.y73{bottom:918.870000px;}
.yab{bottom:922.650000px;}
.y111{bottom:930.930000px;}
.y72{bottom:936.150000px;}
.yaa{bottom:939.930000px;}
.y110{bottom:948.030000px;}
.y71{bottom:953.430000px;}
.yc{bottom:953.614500px;}
.ya9{bottom:957.030000px;}
.y141{bottom:961.170000px;}
.y10f{bottom:965.310000px;}
.y70{bottom:970.530000px;}
.ya8{bottom:974.310000px;}
.y10e{bottom:982.590000px;}
.y6f{bottom:987.810000px;}
.yb{bottom:989.854500px;}
.ya7{bottom:991.590000px;}
.y10d{bottom:1004.010000px;}
.y6e{bottom:1005.090000px;}
.ya6{bottom:1008.870000px;}
.y6d{bottom:1022.370000px;}
.ya{bottom:1026.094500px;}
.ya5{bottom:1026.150000px;}
.y10c{bottom:1030.290000px;}
.y6c{bottom:1039.650000px;}
.ya4{bottom:1047.390000px;}
.y6b{bottom:1056.750000px;}
.ya3{bottom:1064.670000px;}
.y6a{bottom:1074.030000px;}
.y69{bottom:1091.310000px;}
.y68{bottom:1108.590000px;}
.y67{bottom:1125.870000px;}
.y6{bottom:1130.370000px;}
.y66{bottom:1143.180000px;}
.y4{bottom:1150.200000px;}
.y1{bottom:1170.180000px;}
.y64{bottom:1198.980000px;}
.hf{height:15.971925px;}
.h7{height:19.836000px;}
.h5{height:19.980000px;}
.h10{height:34.945312px;}
.h2{height:39.600000px;}
.h8{height:47.344922px;}
.hd{height:50.229844px;}
.ha{height:52.998047px;}
.he{height:53.573906px;}
.hc{height:54.421875px;}
.h3{height:58.621992px;}
.h6{height:58.651172px;}
.hb{height:60.226875px;}
.h4{height:64.978594px;}
.h9{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:246.097500px;}
.w2{width:353.055000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.176000px;}
.xa{left:97.776000px;}
.x3{left:117.046500px;}
.x5{left:145.312500px;}
.x4{left:167.905500px;}
.xb{left:230.790000px;}
.x9{left:232.950000px;}
.x10{left:245.055000px;}
.x8{left:259.095000px;}
.x6{left:302.382900px;}
.xf{left:323.436768px;}
.x7{left:330.015000px;}
.xe{left:387.075000px;}
.x1{left:444.525000px;}
.xd{left:462.525000px;}
.xc{left:475.305000px;}
.x11{left:598.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.376000pt;}
.ls5{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.821333pt;}
.ls16{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.047467pt;}
.ls8{letter-spacing:0.094720pt;}
.lsc{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.409067pt;}
.ls18{letter-spacing:0.456533pt;}
.lsa{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.821333pt;}
.ls12{letter-spacing:7.840000pt;}
.ls13{letter-spacing:9.120000pt;}
.wsf{word-spacing:-14.101333pt;}
.ws12{word-spacing:-13.736533pt;}
.ws14{word-spacing:-13.689067pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327467pt;}
.ws0{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232533pt;}
.ws9{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.ws1{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.688000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws7{word-spacing:-0.672000pt;}
.ws5{word-spacing:-0.298667pt;}
.ws8{word-spacing:-0.186667pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.224000pt;}
._12{margin-left:-5.109333pt;}
._1{margin-left:-2.504320pt;}
._0{margin-left:-0.956160pt;}
._2{width:1.283200pt;}
._3{width:2.208000pt;}
._4{width:3.120000pt;}
._7{width:4.500267pt;}
._a{width:5.472000pt;}
._e{width:6.492587pt;}
._8{width:7.968000pt;}
._9{width:9.002667pt;}
._5{width:10.464000pt;}
._1e{width:11.792640pt;}
._d{width:12.918827pt;}
._6{width:14.224000pt;}
._1d{width:15.784960pt;}
._1c{width:16.732800pt;}
._11{width:17.904000pt;}
._10{width:19.640960pt;}
._f{width:20.780160pt;}
._18{width:21.954347pt;}
._1f{width:22.959787pt;}
._1b{width:23.852160pt;}
._15{width:25.088000pt;}
._16{width:26.112000pt;}
._19{width:27.552000pt;}
._1a{width:28.800000pt;}
._22{width:30.303360pt;}
._21{width:31.200000pt;}
._c{width:32.112000pt;}
._b{width:33.312000pt;}
._26{width:35.059200pt;}
._17{width:37.008000pt;}
._20{width:37.980800pt;}
._27{width:38.927360pt;}
._25{width:40.583680pt;}
._28{width:42.974080pt;}
._2e{width:44.509440pt;}
._2f{width:46.267520pt;}
._29{width:47.215360pt;}
._2a{width:48.445440pt;}
._14{width:50.972160pt;}
._13{width:51.936000pt;}
._2b{width:55.244800pt;}
._30{width:58.910080pt;}
._23{width:61.672320pt;}
._24{width:62.707627pt;}
._2c{width:63.956480pt;}
._2d{width:78.331307pt;}
._33{width:84.620160pt;}
._32{width:85.735680pt;}
._31{width:112.455040pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:3.466627pt;}
.y3{bottom:5.440000pt;}
.y7{bottom:5.466667pt;}
.y5{bottom:5.600000pt;}
.y2{bottom:23.040000pt;}
.yda{bottom:35.045471pt;}
.y65{bottom:51.232000pt;}
.y9{bottom:61.952000pt;}
.y8{bottom:74.272000pt;}
.yd9{bottom:90.752000pt;}
.y140{bottom:94.752000pt;}
.ya2{bottom:96.032000pt;}
.y15b{bottom:97.312000pt;}
.y10b{bottom:99.392000pt;}
.yf9{bottom:102.752000pt;}
.y63{bottom:103.072000pt;}
.yd8{bottom:106.112000pt;}
.y13f{bottom:110.112000pt;}
.y3c{bottom:110.752000pt;}
.ya1{bottom:111.392000pt;}
.y15a{bottom:112.672000pt;}
.y10a{bottom:114.752000pt;}
.yf8{bottom:118.112000pt;}
.y62{bottom:118.432000pt;}
.yd7{bottom:121.312000pt;}
.y3b{bottom:124.672000pt;}
.y13e{bottom:125.312000pt;}
.ya0{bottom:126.752000pt;}
.y159{bottom:128.032000pt;}
.y109{bottom:130.112000pt;}
.yf7{bottom:133.312000pt;}
.y61{bottom:133.786667pt;}
.yd6{bottom:136.666667pt;}
.y3a{bottom:138.426667pt;}
.y13d{bottom:140.666667pt;}
.y9f{bottom:142.106667pt;}
.y158{bottom:143.386667pt;}
.y108{bottom:145.306667pt;}
.yf6{bottom:148.666667pt;}
.y60{bottom:149.146667pt;}
.yd5{bottom:152.026667pt;}
.y39{bottom:152.186667pt;}
.y13c{bottom:156.026667pt;}
.y9e{bottom:157.306667pt;}
.y157{bottom:158.746667pt;}
.y107{bottom:160.666667pt;}
.yf5{bottom:164.026667pt;}
.y5f{bottom:164.346667pt;}
.y38{bottom:165.946667pt;}
.yd4{bottom:167.386667pt;}
.y13b{bottom:171.386667pt;}
.y9d{bottom:172.666667pt;}
.y156{bottom:174.106667pt;}
.y106{bottom:176.026667pt;}
.yf4{bottom:179.386667pt;}
.y5e{bottom:179.706667pt;}
.y37{bottom:179.866667pt;}
.yd3{bottom:182.746667pt;}
.y13a{bottom:186.746667pt;}
.y9c{bottom:188.026667pt;}
.y155{bottom:189.306667pt;}
.y105{bottom:191.386667pt;}
.y36{bottom:193.626667pt;}
.yf3{bottom:194.746667pt;}
.y5d{bottom:195.066667pt;}
.yd2{bottom:197.946667pt;}
.y139{bottom:201.946667pt;}
.y9b{bottom:203.386667pt;}
.y154{bottom:204.666667pt;}
.y104{bottom:206.746667pt;}
.y35{bottom:207.386667pt;}
.yf2{bottom:209.946667pt;}
.y5c{bottom:210.426667pt;}
.yd1{bottom:216.986667pt;}
.y138{bottom:217.306667pt;}
.y9a{bottom:218.746667pt;}
.y153{bottom:220.026667pt;}
.y34{bottom:221.146667pt;}
.y103{bottom:221.946667pt;}
.yf1{bottom:225.306667pt;}
.y5b{bottom:225.786667pt;}
.y137{bottom:232.666667pt;}
.y99{bottom:233.946667pt;}
.y33{bottom:235.066667pt;}
.y152{bottom:235.386667pt;}
.y102{bottom:237.306667pt;}
.yd0{bottom:240.666667pt;}
.y5a{bottom:241.146667pt;}
.y136{bottom:248.026667pt;}
.y32{bottom:248.826667pt;}
.y98{bottom:249.306667pt;}
.y151{bottom:250.746667pt;}
.y101{bottom:252.666667pt;}
.ycf{bottom:256.026667pt;}
.y59{bottom:256.346667pt;}
.y31{bottom:262.586667pt;}
.y135{bottom:263.386667pt;}
.y97{bottom:264.666667pt;}
.y150{bottom:265.946667pt;}
.y100{bottom:268.026667pt;}
.yce{bottom:271.386667pt;}
.y58{bottom:271.706667pt;}
.y30{bottom:276.346667pt;}
.y134{bottom:278.746667pt;}
.y96{bottom:280.066667pt;}
.y14f{bottom:281.346667pt;}
.yff{bottom:283.426667pt;}
.ycd{bottom:286.786667pt;}
.y57{bottom:287.106667pt;}
.y2f{bottom:290.306667pt;}
.y133{bottom:293.666667pt;}
.y95{bottom:295.426667pt;}
.y14e{bottom:296.706667pt;}
.yfe{bottom:298.786667pt;}
.ycc{bottom:301.986667pt;}
.y56{bottom:302.466667pt;}
.y2e{bottom:304.066667pt;}
.y132{bottom:309.346667pt;}
.y94{bottom:310.786667pt;}
.y14d{bottom:312.066667pt;}
.yfd{bottom:313.986667pt;}
.ycb{bottom:317.346667pt;}
.y2d{bottom:317.826667pt;}
.y131{bottom:324.706667pt;}
.y93{bottom:325.986667pt;}
.y14c{bottom:327.426667pt;}
.yfc{bottom:329.346667pt;}
.y2c{bottom:331.586667pt;}
.yca{bottom:332.706667pt;}
.y55{bottom:333.186667pt;}
.yf0{bottom:336.386667pt;}
.y130{bottom:340.066667pt;}
.y92{bottom:341.346667pt;}
.y14b{bottom:342.786667pt;}
.yfb{bottom:344.706667pt;}
.y2b{bottom:345.506667pt;}
.yc9{bottom:348.066667pt;}
.y54{bottom:348.386667pt;}
.y12f{bottom:355.426667pt;}
.y91{bottom:356.706667pt;}
.y14a{bottom:357.986667pt;}
.yef{bottom:360.066667pt;}
.y2a{bottom:360.706667pt;}
.yc8{bottom:363.426667pt;}
.y53{bottom:363.746667pt;}
.y12e{bottom:370.786667pt;}
.y90{bottom:372.066667pt;}
.y149{bottom:373.346667pt;}
.y29{bottom:374.626667pt;}
.yee{bottom:375.426667pt;}
.yc7{bottom:378.786667pt;}
.y52{bottom:379.106667pt;}
.y12d{bottom:385.986667pt;}
.y8f{bottom:387.426667pt;}
.y28{bottom:388.386667pt;}
.y148{bottom:388.706667pt;}
.yed{bottom:390.786667pt;}
.yc6{bottom:393.986667pt;}
.y51{bottom:394.466667pt;}
.y142{bottom:397.666667pt;}
.y12c{bottom:401.346667pt;}
.y27{bottom:402.146667pt;}
.y8e{bottom:402.786667pt;}
.y147{bottom:404.066667pt;}
.yec{bottom:405.986667pt;}
.yc5{bottom:409.346667pt;}
.y50{bottom:409.826667pt;}
.y26{bottom:415.906667pt;}
.y12b{bottom:416.706667pt;}
.y8d{bottom:417.986667pt;}
.y146{bottom:419.426667pt;}
.yeb{bottom:421.346667pt;}
.yc4{bottom:424.706667pt;}
.y4f{bottom:425.186667pt;}
.y25{bottom:429.826667pt;}
.y12a{bottom:432.066667pt;}
.y8c{bottom:433.346667pt;}
.y145{bottom:434.786667pt;}
.yea{bottom:436.706667pt;}
.yc3{bottom:440.066667pt;}
.y4e{bottom:440.386667pt;}
.y24{bottom:443.586667pt;}
.y129{bottom:447.426667pt;}
.y8b{bottom:448.706667pt;}
.y144{bottom:449.986667pt;}
.ye9{bottom:452.066667pt;}
.yc2{bottom:455.426667pt;}
.y4d{bottom:455.746667pt;}
.y23{bottom:457.346667pt;}
.y128{bottom:462.786667pt;}
.y8a{bottom:464.066667pt;}
.ye8{bottom:467.426667pt;}
.y143{bottom:469.026667pt;}
.yc1{bottom:470.786667pt;}
.y22{bottom:471.106667pt;}
.y127{bottom:477.986667pt;}
.y89{bottom:479.426667pt;}
.ye7{bottom:482.786667pt;}
.y21{bottom:485.026667pt;}
.yc0{bottom:485.986667pt;}
.y4c{bottom:486.466667pt;}
.y126{bottom:493.346667pt;}
.y88{bottom:494.786667pt;}
.ye6{bottom:497.986667pt;}
.y20{bottom:498.786667pt;}
.ybf{bottom:501.346667pt;}
.y4b{bottom:501.826667pt;}
.y125{bottom:508.706667pt;}
.y87{bottom:509.986667pt;}
.y1f{bottom:512.546667pt;}
.ye5{bottom:513.346667pt;}
.ybe{bottom:516.706667pt;}
.y4a{bottom:517.026667pt;}
.y124{bottom:524.093333pt;}
.y86{bottom:525.373333pt;}
.y1e{bottom:526.333333pt;}
.ye4{bottom:528.733333pt;}
.ybd{bottom:532.093333pt;}
.y49{bottom:532.413333pt;}
.y123{bottom:539.453333pt;}
.y1d{bottom:540.253333pt;}
.y85{bottom:540.733333pt;}
.ye3{bottom:544.093333pt;}
.ybc{bottom:547.453333pt;}
.y48{bottom:547.773333pt;}
.y1c{bottom:554.013333pt;}
.y122{bottom:554.653333pt;}
.y84{bottom:556.093333pt;}
.ye2{bottom:559.453333pt;}
.ybb{bottom:562.653333pt;}
.y47{bottom:566.813333pt;}
.y1b{bottom:567.773333pt;}
.y121{bottom:570.013333pt;}
.y83{bottom:571.453333pt;}
.ye1{bottom:574.653333pt;}
.yba{bottom:578.013333pt;}
.y1a{bottom:581.533333pt;}
.y46{bottom:582.013333pt;}
.y120{bottom:585.373333pt;}
.y82{bottom:586.653333pt;}
.ye0{bottom:590.013333pt;}
.yb9{bottom:593.373333pt;}
.y19{bottom:595.453333pt;}
.y11f{bottom:600.733333pt;}
.y81{bottom:602.013333pt;}
.ydf{bottom:605.373333pt;}
.yb8{bottom:608.733333pt;}
.y18{bottom:609.213333pt;}
.y45{bottom:610.653333pt;}
.y11e{bottom:616.093333pt;}
.y80{bottom:617.373333pt;}
.yde{bottom:620.733333pt;}
.y17{bottom:622.973333pt;}
.y44{bottom:624.573333pt;}
.yb7{bottom:627.773333pt;}
.y11d{bottom:631.453333pt;}
.y7f{bottom:632.733333pt;}
.ydd{bottom:636.093333pt;}
.y16{bottom:636.733333pt;}
.y43{bottom:638.333333pt;}
.y7e{bottom:648.093333pt;}
.y11c{bottom:650.333333pt;}
.y15{bottom:650.493333pt;}
.yb6{bottom:651.453333pt;}
.y42{bottom:652.093333pt;}
.y7d{bottom:663.453333pt;}
.y14{bottom:664.413333pt;}
.y41{bottom:665.853333pt;}
.yb5{bottom:666.653333pt;}
.ydc{bottom:670.333333pt;}
.y11b{bottom:674.013333pt;}
.y13{bottom:678.173333pt;}
.y7c{bottom:678.653333pt;}
.y40{bottom:679.773333pt;}
.yb4{bottom:682.013333pt;}
.y11a{bottom:689.373333pt;}
.y12{bottom:691.933333pt;}
.y3f{bottom:693.533333pt;}
.y7b{bottom:694.013333pt;}
.yb3{bottom:697.373333pt;}
.y119{bottom:704.733333pt;}
.y11{bottom:705.693333pt;}
.y3e{bottom:707.293333pt;}
.y7a{bottom:709.373333pt;}
.yb2{bottom:712.733333pt;}
.y10{bottom:719.613333pt;}
.y118{bottom:720.093333pt;}
.y3d{bottom:721.053333pt;}
.y79{bottom:724.733333pt;}
.yb1{bottom:728.093333pt;}
.y117{bottom:735.453333pt;}
.y78{bottom:740.093333pt;}
.yb0{bottom:743.453333pt;}
.y116{bottom:750.653333pt;}
.y77{bottom:755.453333pt;}
.yaf{bottom:758.653333pt;}
.y115{bottom:766.053333pt;}
.yf{bottom:766.213333pt;}
.y76{bottom:770.693333pt;}
.yae{bottom:774.053333pt;}
.ye{bottom:780.453333pt;}
.y114{bottom:781.413333pt;}
.y75{bottom:786.053333pt;}
.yad{bottom:789.413333pt;}
.y113{bottom:796.773333pt;}
.y74{bottom:801.413333pt;}
.yac{bottom:804.773333pt;}
.yfa{bottom:808.453333pt;}
.y112{bottom:812.133333pt;}
.yd{bottom:815.443600pt;}
.y73{bottom:816.773333pt;}
.yab{bottom:820.133333pt;}
.y111{bottom:827.493333pt;}
.y72{bottom:832.133333pt;}
.yaa{bottom:835.493333pt;}
.y110{bottom:842.693333pt;}
.y71{bottom:847.493333pt;}
.yc{bottom:847.657333pt;}
.ya9{bottom:850.693333pt;}
.y141{bottom:854.373333pt;}
.y10f{bottom:858.053333pt;}
.y70{bottom:862.693333pt;}
.ya8{bottom:866.053333pt;}
.y10e{bottom:873.413333pt;}
.y6f{bottom:878.053333pt;}
.yb{bottom:879.870667pt;}
.ya7{bottom:881.413333pt;}
.y10d{bottom:892.453333pt;}
.y6e{bottom:893.413333pt;}
.ya6{bottom:896.773333pt;}
.y6d{bottom:908.773333pt;}
.ya{bottom:912.084000pt;}
.ya5{bottom:912.133333pt;}
.y10c{bottom:915.813333pt;}
.y6c{bottom:924.133333pt;}
.ya4{bottom:931.013333pt;}
.y6b{bottom:939.333333pt;}
.ya3{bottom:946.373333pt;}
.y6a{bottom:954.693333pt;}
.y69{bottom:970.053333pt;}
.y68{bottom:985.413333pt;}
.y67{bottom:1000.773333pt;}
.y6{bottom:1004.773333pt;}
.y66{bottom:1016.160000pt;}
.y4{bottom:1022.400000pt;}
.y1{bottom:1040.160000pt;}
.y64{bottom:1065.760000pt;}
.hf{height:14.197267pt;}
.h7{height:17.632000pt;}
.h5{height:17.760000pt;}
.h10{height:31.062500pt;}
.h2{height:35.200000pt;}
.h8{height:42.084375pt;}
.hd{height:44.648750pt;}
.ha{height:47.109375pt;}
.he{height:47.621250pt;}
.hc{height:48.375000pt;}
.h3{height:52.108438pt;}
.h6{height:52.134375pt;}
.hb{height:53.535000pt;}
.h4{height:57.758750pt;}
.h9{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:218.753333pt;}
.w2{width:313.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.712000pt;}
.xa{left:86.912000pt;}
.x3{left:104.041333pt;}
.x5{left:129.166667pt;}
.x4{left:149.249333pt;}
.xb{left:205.146667pt;}
.x9{left:207.066667pt;}
.x10{left:217.826667pt;}
.x8{left:230.306667pt;}
.x6{left:268.784800pt;}
.xf{left:287.499349pt;}
.x7{left:293.346667pt;}
.xe{left:344.066667pt;}
.x1{left:395.133333pt;}
.xd{left:411.133333pt;}
.xc{left:422.493333pt;}
.x11{left:532.293333pt;}
}




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