
    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_14a7e78c5b97c5570a253a21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d55ed808f6f64c8115b49443.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_f1ce3022c705905ece1b6282.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b27b886ccd337ec802dcd5c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_0c8d77f6d5619e85e4be550c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_51c1635302e2cef8264406f3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8151433f6008e98116dcfdb8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8745221b3835496c2f2473e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_2f229979a33d701808665a55.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-2.220000px;}
.lsc{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.298200px;}
.lse{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.127200px;}
.ls10{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.038160px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls13{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.367200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-4.840560px;}
._3{margin-left:-3.132960px;}
._2{margin-left:-2.106000px;}
._0{margin-left:-1.086000px;}
._1{width:1.002000px;}
._5{width:2.155440px;}
._d{width:3.824640px;}
._e{width:4.840560px;}
._10{width:6.647280px;}
._f{width:7.828560px;}
._8{width:9.754800px;}
._7{width:10.816560px;}
._9{width:11.888160px;}
._15{width:13.101360px;}
._19{width:16.222800px;}
._17{width:18.107280px;}
._18{width:19.133040px;}
._14{width:20.139120px;}
._16{width:21.320400px;}
._c{width:22.483680px;}
._11{width:24.453600px;}
._12{width:25.488720px;}
._1d{width:26.556000px;}
._13{width:27.967680px;}
._6{width:29.765280px;}
._1b{width:30.895920px;}
._1a{width:32.389920px;}
._1c{width:33.585120px;}
._b{width:38.126880px;}
._a{width:39.262320px;}
._20{width:80.496720px;}
._1e{width:169.061040px;}
._1f{width:194.279760px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y53{bottom:3.960000px;}
.ye{bottom:9.360000px;}
.y51{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.ya8{bottom:17.100000px;}
.ye2{bottom:17.145000px;}
.y9d{bottom:17.280000px;}
.ya0{bottom:17.310000px;}
.y101{bottom:17.325000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.yc2{bottom:20.340000px;}
.y98{bottom:20.514000px;}
.y4d{bottom:20.520000px;}
.y52{bottom:22.140000px;}
.y18{bottom:23.985000px;}
.y50{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y4c{bottom:37.800000px;}
.y17{bottom:40.365000px;}
.y5{bottom:41.940000px;}
.ya{bottom:46.620000px;}
.y16{bottom:53.145000px;}
.y4b{bottom:55.080000px;}
.y1{bottom:64.440000px;}
.y4a{bottom:72.180000px;}
.y15{bottom:73.305000px;}
.y9{bottom:73.470000px;}
.y14{bottom:86.445000px;}
.y49{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y13{bottom:104.805000px;}
.y48{bottom:106.785000px;}
.y9a{bottom:110.016000px;}
.y7{bottom:111.450000px;}
.y96{bottom:115.416000px;}
.y14c{bottom:118.476000px;}
.y12{bottom:123.705000px;}
.y47{bottom:124.065000px;}
.yda{bottom:126.036000px;}
.y57{bottom:127.476000px;}
.y99{bottom:128.016000px;}
.y12e{bottom:130.536000px;}
.y10c{bottom:131.976000px;}
.y95{bottom:132.696000px;}
.y14b{bottom:135.756000px;}
.y46{bottom:141.345000px;}
.yd9{bottom:143.316000px;}
.y56{bottom:144.756000px;}
.y97{bottom:146.016000px;}
.y12d{bottom:147.816000px;}
.y10b{bottom:149.256000px;}
.y11{bottom:149.445000px;}
.y94{bottom:149.976000px;}
.y14a{bottom:153.030000px;}
.y45{bottom:158.445000px;}
.yd8{bottom:160.410000px;}
.y55{bottom:162.030000px;}
.y12c{bottom:164.910000px;}
.y10a{bottom:166.530000px;}
.y93{bottom:167.250000px;}
.y149{bottom:170.310000px;}
.y10{bottom:173.925000px;}
.y44{bottom:175.725000px;}
.yd7{bottom:177.690000px;}
.y54{bottom:179.310000px;}
.y12b{bottom:182.190000px;}
.y109{bottom:183.810000px;}
.y92{bottom:184.530000px;}
.y148{bottom:187.410000px;}
.y43{bottom:193.005000px;}
.y4f{bottom:193.350000px;}
.yd6{bottom:194.970000px;}
.y12a{bottom:199.470000px;}
.y108{bottom:200.910000px;}
.y91{bottom:201.810000px;}
.y147{bottom:204.690000px;}
.y42{bottom:210.285000px;}
.yd5{bottom:212.250000px;}
.y129{bottom:216.750000px;}
.y107{bottom:218.190000px;}
.y90{bottom:218.910000px;}
.y146{bottom:221.970000px;}
.y41{bottom:227.565000px;}
.yd4{bottom:229.530000px;}
.y1b{bottom:229.890000px;}
.y128{bottom:234.030000px;}
.y106{bottom:235.470000px;}
.y8f{bottom:236.190000px;}
.y145{bottom:239.250000px;}
.y40{bottom:244.845000px;}
.yd3{bottom:246.810000px;}
.y127{bottom:251.310000px;}
.y105{bottom:252.750000px;}
.y8e{bottom:253.470000px;}
.y144{bottom:256.530000px;}
.y3f{bottom:261.945000px;}
.yd2{bottom:263.910000px;}
.y104{bottom:267.510000px;}
.y126{bottom:268.410000px;}
.y8d{bottom:270.750000px;}
.y143{bottom:273.810000px;}
.y3e{bottom:279.225000px;}
.yd1{bottom:281.190000px;}
.y125{bottom:283.170000px;}
.y103{bottom:285.510000px;}
.y8c{bottom:288.030000px;}
.y142{bottom:290.910000px;}
.y3d{bottom:296.505000px;}
.yd0{bottom:298.470000px;}
.y124{bottom:301.170000px;}
.y102{bottom:303.510000px;}
.y8b{bottom:305.310000px;}
.y141{bottom:308.190000px;}
.y3c{bottom:313.785000px;}
.ycf{bottom:315.750000px;}
.y123{bottom:319.170000px;}
.y100{bottom:321.510000px;}
.y8a{bottom:322.410000px;}
.y140{bottom:322.950000px;}
.y2b{bottom:323.325000px;}
.y3b{bottom:331.065000px;}
.yce{bottom:333.030000px;}
.y122{bottom:337.215000px;}
.y2a{bottom:338.445000px;}
.yff{bottom:339.555000px;}
.y89{bottom:339.735000px;}
.y13f{bottom:340.995000px;}
.ycd{bottom:347.835000px;}
.y3a{bottom:348.345000px;}
.y121{bottom:355.215000px;}
.y29{bottom:355.725000px;}
.y88{bottom:357.015000px;}
.yfe{bottom:357.555000px;}
.y13e{bottom:358.995000px;}
.y39{bottom:365.445000px;}
.ycc{bottom:365.835000px;}
.y28{bottom:373.185000px;}
.y120{bottom:373.215000px;}
.y87{bottom:374.295000px;}
.yfd{bottom:375.555000px;}
.y13d{bottom:376.995000px;}
.y38{bottom:382.755000px;}
.ycb{bottom:383.835000px;}
.y27{bottom:390.675000px;}
.y11f{bottom:391.215000px;}
.y86{bottom:391.575000px;}
.yfc{bottom:393.555000px;}
.y13c{bottom:394.995000px;}
.y37{bottom:400.035000px;}
.yca{bottom:401.835000px;}
.y26{bottom:407.955000px;}
.y85{bottom:408.675000px;}
.y11e{bottom:409.215000px;}
.yfb{bottom:411.555000px;}
.y13b{bottom:412.995000px;}
.y36{bottom:417.315000px;}
.yc9{bottom:419.835000px;}
.y25{bottom:425.415000px;}
.y84{bottom:425.955000px;}
.y11d{bottom:427.215000px;}
.yfa{bottom:429.555000px;}
.y13a{bottom:430.995000px;}
.y35{bottom:434.595000px;}
.yc8{bottom:437.835000px;}
.y24{bottom:442.695000px;}
.y83{bottom:443.235000px;}
.y11c{bottom:445.215000px;}
.y139{bottom:448.995000px;}
.y34{bottom:451.875000px;}
.yc7{bottom:455.835000px;}
.y23{bottom:460.155000px;}
.y82{bottom:460.515000px;}
.y11b{bottom:463.215000px;}
.y138{bottom:466.995000px;}
.yf9{bottom:468.075000px;}
.y33{bottom:468.975000px;}
.yc6{bottom:473.835000px;}
.y22{bottom:477.615000px;}
.y81{bottom:477.795000px;}
.y11a{bottom:481.215000px;}
.y137{bottom:484.995000px;}
.yf8{bottom:485.175000px;}
.y32{bottom:486.255000px;}
.yc5{bottom:491.835000px;}
.y21{bottom:494.895000px;}
.y80{bottom:495.075000px;}
.y119{bottom:499.215000px;}
.yf7{bottom:502.455000px;}
.y136{bottom:502.995000px;}
.y31{bottom:503.535000px;}
.yc4{bottom:509.835000px;}
.y7f{bottom:512.175000px;}
.y20{bottom:512.355000px;}
.y118{bottom:517.215000px;}
.yf6{bottom:519.735000px;}
.y30{bottom:520.815000px;}
.y135{bottom:520.995000px;}
.yc3{bottom:527.835000px;}
.y7e{bottom:529.455000px;}
.y1f{bottom:529.815000px;}
.y117{bottom:535.215000px;}
.yf5{bottom:537.015000px;}
.y2f{bottom:538.095000px;}
.y134{bottom:538.995000px;}
.yc1{bottom:545.835000px;}
.y7d{bottom:546.735000px;}
.y1e{bottom:547.275000px;}
.y116{bottom:553.215000px;}
.yf4{bottom:554.295000px;}
.y2e{bottom:555.195000px;}
.y133{bottom:556.995000px;}
.y7c{bottom:564.015000px;}
.y115{bottom:571.215000px;}
.yf3{bottom:571.575000px;}
.y2d{bottom:572.475000px;}
.y1d{bottom:574.815000px;}
.y132{bottom:574.995000px;}
.y7b{bottom:581.295000px;}
.yc0{bottom:584.175000px;}
.yf2{bottom:588.675000px;}
.y114{bottom:589.215000px;}
.y2c{bottom:589.755000px;}
.y1c{bottom:592.455000px;}
.y131{bottom:592.995000px;}
.y7a{bottom:598.575000px;}
.ybf{bottom:601.455000px;}
.yf1{bottom:605.985000px;}
.y113{bottom:607.245000px;}
.y130{bottom:611.025000px;}
.y79{bottom:615.705000px;}
.ybe{bottom:618.765000px;}
.yf0{bottom:623.265000px;}
.y112{bottom:625.245000px;}
.y12f{bottom:629.025000px;}
.y78{bottom:632.985000px;}
.ybd{bottom:636.045000px;}
.yef{bottom:640.545000px;}
.y111{bottom:643.245000px;}
.y77{bottom:650.265000px;}
.ybc{bottom:653.325000px;}
.yee{bottom:657.825000px;}
.y110{bottom:661.245000px;}
.y76{bottom:667.545000px;}
.ybb{bottom:670.425000px;}
.yed{bottom:674.925000px;}
.y10f{bottom:679.245000px;}
.y75{bottom:684.825000px;}
.yba{bottom:687.705000px;}
.yec{bottom:692.205000px;}
.y10e{bottom:697.245000px;}
.y74{bottom:701.925000px;}
.yb9{bottom:704.985000px;}
.yeb{bottom:709.485000px;}
.y10d{bottom:715.245000px;}
.y73{bottom:719.205000px;}
.yb8{bottom:722.265000px;}
.yea{bottom:726.765000px;}
.y72{bottom:736.485000px;}
.yb7{bottom:739.545000px;}
.ye9{bottom:744.045000px;}
.y71{bottom:753.765000px;}
.yb6{bottom:756.825000px;}
.ye8{bottom:761.325000px;}
.y70{bottom:771.045000px;}
.yb5{bottom:773.925000px;}
.ye7{bottom:776.085000px;}
.y6f{bottom:788.325000px;}
.yb4{bottom:791.205000px;}
.ye6{bottom:794.085000px;}
.y6e{bottom:805.425000px;}
.yb3{bottom:808.485000px;}
.ye5{bottom:812.085000px;}
.y6d{bottom:822.705000px;}
.yb2{bottom:825.765000px;}
.ye4{bottom:830.085000px;}
.y19{bottom:833.685000px;}
.y6c{bottom:839.985000px;}
.yb1{bottom:843.045000px;}
.ye3{bottom:848.085000px;}
.y6b{bottom:857.265000px;}
.yb0{bottom:860.325000px;}
.yf{bottom:863.205000px;}
.ye1{bottom:866.085000px;}
.y6a{bottom:874.590000px;}
.yaf{bottom:875.130000px;}
.ye0{bottom:884.130000px;}
.y69{bottom:891.870000px;}
.yae{bottom:893.130000px;}
.ydf{bottom:902.130000px;}
.y68{bottom:908.970000px;}
.yad{bottom:911.130000px;}
.yde{bottom:920.130000px;}
.y67{bottom:926.250000px;}
.yac{bottom:929.130000px;}
.y66{bottom:943.530000px;}
.yab{bottom:947.130000px;}
.ydd{bottom:955.230000px;}
.y65{bottom:960.810000px;}
.yaa{bottom:965.130000px;}
.ydc{bottom:973.230000px;}
.y64{bottom:978.090000px;}
.ya9{bottom:983.130000px;}
.ydb{bottom:991.230000px;}
.y63{bottom:995.370000px;}
.ya7{bottom:1001.130000px;}
.y62{bottom:1012.470000px;}
.ya6{bottom:1018.950000px;}
.y61{bottom:1029.750000px;}
.ya5{bottom:1036.950000px;}
.y60{bottom:1047.030000px;}
.yd{bottom:1052.250000px;}
.ya4{bottom:1054.950000px;}
.y5f{bottom:1064.310000px;}
.ya3{bottom:1072.950000px;}
.y6{bottom:1077.450000px;}
.y5e{bottom:1081.590000px;}
.ya2{bottom:1090.950000px;}
.y5d{bottom:1098.690000px;}
.ya1{bottom:1108.950000px;}
.y5c{bottom:1115.970000px;}
.y9f{bottom:1126.950000px;}
.y5b{bottom:1133.250000px;}
.y9e{bottom:1144.980000px;}
.y5a{bottom:1150.560000px;}
.y9c{bottom:1162.980000px;}
.y59{bottom:1167.840000px;}
.y9b{bottom:1180.980000px;}
.y58{bottom:1185.120000px;}
.h22{height:17.100000px;}
.h24{height:17.136000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h23{height:34.380000px;}
.h1f{height:34.560000px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h13{height:38.589961px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h12{height:43.453125px;}
.h25{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1e{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:189.030000px;}
.h16{height:603.795000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:56.880000px;}
.w1f{width:57.420000px;}
.w15{width:57.780000px;}
.w11{width:59.940000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w1a{width:172.290000px;}
.w13{width:180.570000px;}
.w17{width:190.290000px;}
.w14{width:192.090000px;}
.w1b{width:198.390000px;}
.wb{width:200.730000px;}
.w1d{width:202.350000px;}
.w18{width:203.430000px;}
.wf{width:211.890000px;}
.wc{width:214.050000px;}
.w1e{width:216.210000px;}
.w8{width:223.275000px;}
.w10{width:226.110000px;}
.we{width:246.495000px;}
.w1c{width:268.275000px;}
.wa{width:272.595000px;}
.w16{width:292.755000px;}
.w12{width:313.995000px;}
.w19{width:315.795000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xe{left:27.576000px;}
.xc{left:41.436000px;}
.x1{left:72.360000px;}
.x11{left:78.510000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x28{left:108.035987px;}
.x29{left:135.035987px;}
.xd{left:191.370000px;}
.x12{left:215.175000px;}
.x6{left:224.850000px;}
.x19{left:229.349987px;}
.x20{left:255.629987px;}
.x10{left:262.695000px;}
.x15{left:281.774987px;}
.x1d{left:283.574987px;}
.x9{left:288.435000px;}
.x13{left:296.175000px;}
.x26{left:308.774987px;}
.x1a{left:320.475000px;}
.x23{left:332.534987px;}
.xf{left:342.435000px;}
.x16{left:346.575000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1e{left:387.975000px;}
.x24{left:389.775000px;}
.xa{left:455.700000px;}
.x1b{left:533.085000px;}
.x27{left:545.505000px;}
.x17{left:548.205000px;}
.x22{left:557.925000px;}
.x25{left:562.965000px;}
.x1f{left:569.265000px;}
.x3{left:745.890000px;}
.x1c{left:759.930000px;}
.x18{left:762.990000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-1.973333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.265067pt;}
.lse{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls13{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws3{word-spacing:-18.993067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-4.302720pt;}
._3{margin-left:-2.784853pt;}
._2{margin-left:-1.872000pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.890667pt;}
._5{width:1.915947pt;}
._d{width:3.399680pt;}
._e{width:4.302720pt;}
._10{width:5.908693pt;}
._f{width:6.958720pt;}
._8{width:8.670933pt;}
._7{width:9.614720pt;}
._9{width:10.567253pt;}
._15{width:11.645653pt;}
._19{width:14.420267pt;}
._17{width:16.095360pt;}
._18{width:17.007147pt;}
._14{width:17.901440pt;}
._16{width:18.951467pt;}
._c{width:19.985493pt;}
._11{width:21.736533pt;}
._12{width:22.656640pt;}
._1d{width:23.605333pt;}
._13{width:24.860160pt;}
._6{width:26.458027pt;}
._1b{width:27.463040pt;}
._1a{width:28.791040pt;}
._1c{width:29.853440pt;}
._b{width:33.890560pt;}
._a{width:34.899840pt;}
._20{width:71.552640pt;}
._1e{width:150.276480pt;}
._1f{width:172.693120pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y53{bottom:3.520000pt;}
.ye{bottom:8.320000pt;}
.y51{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.ya8{bottom:15.200000pt;}
.ye2{bottom:15.240000pt;}
.y9d{bottom:15.360000pt;}
.ya0{bottom:15.386667pt;}
.y101{bottom:15.400000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.yc2{bottom:18.080000pt;}
.y98{bottom:18.234667pt;}
.y4d{bottom:18.240000pt;}
.y52{bottom:19.680000pt;}
.y18{bottom:21.320000pt;}
.y50{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y4c{bottom:33.600000pt;}
.y17{bottom:35.880000pt;}
.y5{bottom:37.280000pt;}
.ya{bottom:41.440000pt;}
.y16{bottom:47.240000pt;}
.y4b{bottom:48.960000pt;}
.y1{bottom:57.280000pt;}
.y4a{bottom:64.160000pt;}
.y15{bottom:65.160000pt;}
.y9{bottom:65.306667pt;}
.y14{bottom:76.840000pt;}
.y49{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:93.160000pt;}
.y48{bottom:94.920000pt;}
.y9a{bottom:97.792000pt;}
.y7{bottom:99.066667pt;}
.y96{bottom:102.592000pt;}
.y14c{bottom:105.312000pt;}
.y12{bottom:109.960000pt;}
.y47{bottom:110.280000pt;}
.yda{bottom:112.032000pt;}
.y57{bottom:113.312000pt;}
.y99{bottom:113.792000pt;}
.y12e{bottom:116.032000pt;}
.y10c{bottom:117.312000pt;}
.y95{bottom:117.952000pt;}
.y14b{bottom:120.672000pt;}
.y46{bottom:125.640000pt;}
.yd9{bottom:127.392000pt;}
.y56{bottom:128.672000pt;}
.y97{bottom:129.792000pt;}
.y12d{bottom:131.392000pt;}
.y10b{bottom:132.672000pt;}
.y11{bottom:132.840000pt;}
.y94{bottom:133.312000pt;}
.y14a{bottom:136.026667pt;}
.y45{bottom:140.840000pt;}
.yd8{bottom:142.586667pt;}
.y55{bottom:144.026667pt;}
.y12c{bottom:146.586667pt;}
.y10a{bottom:148.026667pt;}
.y93{bottom:148.666667pt;}
.y149{bottom:151.386667pt;}
.y10{bottom:154.600000pt;}
.y44{bottom:156.200000pt;}
.yd7{bottom:157.946667pt;}
.y54{bottom:159.386667pt;}
.y12b{bottom:161.946667pt;}
.y109{bottom:163.386667pt;}
.y92{bottom:164.026667pt;}
.y148{bottom:166.586667pt;}
.y43{bottom:171.560000pt;}
.y4f{bottom:171.866667pt;}
.yd6{bottom:173.306667pt;}
.y12a{bottom:177.306667pt;}
.y108{bottom:178.586667pt;}
.y91{bottom:179.386667pt;}
.y147{bottom:181.946667pt;}
.y42{bottom:186.920000pt;}
.yd5{bottom:188.666667pt;}
.y129{bottom:192.666667pt;}
.y107{bottom:193.946667pt;}
.y90{bottom:194.586667pt;}
.y146{bottom:197.306667pt;}
.y41{bottom:202.280000pt;}
.yd4{bottom:204.026667pt;}
.y1b{bottom:204.346667pt;}
.y128{bottom:208.026667pt;}
.y106{bottom:209.306667pt;}
.y8f{bottom:209.946667pt;}
.y145{bottom:212.666667pt;}
.y40{bottom:217.640000pt;}
.yd3{bottom:219.386667pt;}
.y127{bottom:223.386667pt;}
.y105{bottom:224.666667pt;}
.y8e{bottom:225.306667pt;}
.y144{bottom:228.026667pt;}
.y3f{bottom:232.840000pt;}
.yd2{bottom:234.586667pt;}
.y104{bottom:237.786667pt;}
.y126{bottom:238.586667pt;}
.y8d{bottom:240.666667pt;}
.y143{bottom:243.386667pt;}
.y3e{bottom:248.200000pt;}
.yd1{bottom:249.946667pt;}
.y125{bottom:251.706667pt;}
.y103{bottom:253.786667pt;}
.y8c{bottom:256.026667pt;}
.y142{bottom:258.586667pt;}
.y3d{bottom:263.560000pt;}
.yd0{bottom:265.306667pt;}
.y124{bottom:267.706667pt;}
.y102{bottom:269.786667pt;}
.y8b{bottom:271.386667pt;}
.y141{bottom:273.946667pt;}
.y3c{bottom:278.920000pt;}
.ycf{bottom:280.666667pt;}
.y123{bottom:283.706667pt;}
.y100{bottom:285.786667pt;}
.y8a{bottom:286.586667pt;}
.y140{bottom:287.066667pt;}
.y2b{bottom:287.400000pt;}
.y3b{bottom:294.280000pt;}
.yce{bottom:296.026667pt;}
.y122{bottom:299.746667pt;}
.y2a{bottom:300.840000pt;}
.yff{bottom:301.826667pt;}
.y89{bottom:301.986667pt;}
.y13f{bottom:303.106667pt;}
.ycd{bottom:309.186667pt;}
.y3a{bottom:309.640000pt;}
.y121{bottom:315.746667pt;}
.y29{bottom:316.200000pt;}
.y88{bottom:317.346667pt;}
.yfe{bottom:317.826667pt;}
.y13e{bottom:319.106667pt;}
.y39{bottom:324.840000pt;}
.ycc{bottom:325.186667pt;}
.y28{bottom:331.720000pt;}
.y120{bottom:331.746667pt;}
.y87{bottom:332.706667pt;}
.yfd{bottom:333.826667pt;}
.y13d{bottom:335.106667pt;}
.y38{bottom:340.226667pt;}
.ycb{bottom:341.186667pt;}
.y27{bottom:347.266667pt;}
.y11f{bottom:347.746667pt;}
.y86{bottom:348.066667pt;}
.yfc{bottom:349.826667pt;}
.y13c{bottom:351.106667pt;}
.y37{bottom:355.586667pt;}
.yca{bottom:357.186667pt;}
.y26{bottom:362.626667pt;}
.y85{bottom:363.266667pt;}
.y11e{bottom:363.746667pt;}
.yfb{bottom:365.826667pt;}
.y13b{bottom:367.106667pt;}
.y36{bottom:370.946667pt;}
.yc9{bottom:373.186667pt;}
.y25{bottom:378.146667pt;}
.y84{bottom:378.626667pt;}
.y11d{bottom:379.746667pt;}
.yfa{bottom:381.826667pt;}
.y13a{bottom:383.106667pt;}
.y35{bottom:386.306667pt;}
.yc8{bottom:389.186667pt;}
.y24{bottom:393.506667pt;}
.y83{bottom:393.986667pt;}
.y11c{bottom:395.746667pt;}
.y139{bottom:399.106667pt;}
.y34{bottom:401.666667pt;}
.yc7{bottom:405.186667pt;}
.y23{bottom:409.026667pt;}
.y82{bottom:409.346667pt;}
.y11b{bottom:411.746667pt;}
.y138{bottom:415.106667pt;}
.yf9{bottom:416.066667pt;}
.y33{bottom:416.866667pt;}
.yc6{bottom:421.186667pt;}
.y22{bottom:424.546667pt;}
.y81{bottom:424.706667pt;}
.y11a{bottom:427.746667pt;}
.y137{bottom:431.106667pt;}
.yf8{bottom:431.266667pt;}
.y32{bottom:432.226667pt;}
.yc5{bottom:437.186667pt;}
.y21{bottom:439.906667pt;}
.y80{bottom:440.066667pt;}
.y119{bottom:443.746667pt;}
.yf7{bottom:446.626667pt;}
.y136{bottom:447.106667pt;}
.y31{bottom:447.586667pt;}
.yc4{bottom:453.186667pt;}
.y7f{bottom:455.266667pt;}
.y20{bottom:455.426667pt;}
.y118{bottom:459.746667pt;}
.yf6{bottom:461.986667pt;}
.y30{bottom:462.946667pt;}
.y135{bottom:463.106667pt;}
.yc3{bottom:469.186667pt;}
.y7e{bottom:470.626667pt;}
.y1f{bottom:470.946667pt;}
.y117{bottom:475.746667pt;}
.yf5{bottom:477.346667pt;}
.y2f{bottom:478.306667pt;}
.y134{bottom:479.106667pt;}
.yc1{bottom:485.186667pt;}
.y7d{bottom:485.986667pt;}
.y1e{bottom:486.466667pt;}
.y116{bottom:491.746667pt;}
.yf4{bottom:492.706667pt;}
.y2e{bottom:493.506667pt;}
.y133{bottom:495.106667pt;}
.y7c{bottom:501.346667pt;}
.y115{bottom:507.746667pt;}
.yf3{bottom:508.066667pt;}
.y2d{bottom:508.866667pt;}
.y1d{bottom:510.946667pt;}
.y132{bottom:511.106667pt;}
.y7b{bottom:516.706667pt;}
.yc0{bottom:519.266667pt;}
.yf2{bottom:523.266667pt;}
.y114{bottom:523.746667pt;}
.y2c{bottom:524.226667pt;}
.y1c{bottom:526.626667pt;}
.y131{bottom:527.106667pt;}
.y7a{bottom:532.066667pt;}
.ybf{bottom:534.626667pt;}
.yf1{bottom:538.653333pt;}
.y113{bottom:539.773333pt;}
.y130{bottom:543.133333pt;}
.y79{bottom:547.293333pt;}
.ybe{bottom:550.013333pt;}
.yf0{bottom:554.013333pt;}
.y112{bottom:555.773333pt;}
.y12f{bottom:559.133333pt;}
.y78{bottom:562.653333pt;}
.ybd{bottom:565.373333pt;}
.yef{bottom:569.373333pt;}
.y111{bottom:571.773333pt;}
.y77{bottom:578.013333pt;}
.ybc{bottom:580.733333pt;}
.yee{bottom:584.733333pt;}
.y110{bottom:587.773333pt;}
.y76{bottom:593.373333pt;}
.ybb{bottom:595.933333pt;}
.yed{bottom:599.933333pt;}
.y10f{bottom:603.773333pt;}
.y75{bottom:608.733333pt;}
.yba{bottom:611.293333pt;}
.yec{bottom:615.293333pt;}
.y10e{bottom:619.773333pt;}
.y74{bottom:623.933333pt;}
.yb9{bottom:626.653333pt;}
.yeb{bottom:630.653333pt;}
.y10d{bottom:635.773333pt;}
.y73{bottom:639.293333pt;}
.yb8{bottom:642.013333pt;}
.yea{bottom:646.013333pt;}
.y72{bottom:654.653333pt;}
.yb7{bottom:657.373333pt;}
.ye9{bottom:661.373333pt;}
.y71{bottom:670.013333pt;}
.yb6{bottom:672.733333pt;}
.ye8{bottom:676.733333pt;}
.y70{bottom:685.373333pt;}
.yb5{bottom:687.933333pt;}
.ye7{bottom:689.853333pt;}
.y6f{bottom:700.733333pt;}
.yb4{bottom:703.293333pt;}
.ye6{bottom:705.853333pt;}
.y6e{bottom:715.933333pt;}
.yb3{bottom:718.653333pt;}
.ye5{bottom:721.853333pt;}
.y6d{bottom:731.293333pt;}
.yb2{bottom:734.013333pt;}
.ye4{bottom:737.853333pt;}
.y19{bottom:741.053333pt;}
.y6c{bottom:746.653333pt;}
.yb1{bottom:749.373333pt;}
.ye3{bottom:753.853333pt;}
.y6b{bottom:762.013333pt;}
.yb0{bottom:764.733333pt;}
.yf{bottom:767.293333pt;}
.ye1{bottom:769.853333pt;}
.y6a{bottom:777.413333pt;}
.yaf{bottom:777.893333pt;}
.ye0{bottom:785.893333pt;}
.y69{bottom:792.773333pt;}
.yae{bottom:793.893333pt;}
.ydf{bottom:801.893333pt;}
.y68{bottom:807.973333pt;}
.yad{bottom:809.893333pt;}
.yde{bottom:817.893333pt;}
.y67{bottom:823.333333pt;}
.yac{bottom:825.893333pt;}
.y66{bottom:838.693333pt;}
.yab{bottom:841.893333pt;}
.ydd{bottom:849.093333pt;}
.y65{bottom:854.053333pt;}
.yaa{bottom:857.893333pt;}
.ydc{bottom:865.093333pt;}
.y64{bottom:869.413333pt;}
.ya9{bottom:873.893333pt;}
.ydb{bottom:881.093333pt;}
.y63{bottom:884.773333pt;}
.ya7{bottom:889.893333pt;}
.y62{bottom:899.973333pt;}
.ya6{bottom:905.733333pt;}
.y61{bottom:915.333333pt;}
.ya5{bottom:921.733333pt;}
.y60{bottom:930.693333pt;}
.yd{bottom:935.333333pt;}
.ya4{bottom:937.733333pt;}
.y5f{bottom:946.053333pt;}
.ya3{bottom:953.733333pt;}
.y6{bottom:957.733333pt;}
.y5e{bottom:961.413333pt;}
.ya2{bottom:969.733333pt;}
.y5d{bottom:976.613333pt;}
.ya1{bottom:985.733333pt;}
.y5c{bottom:991.973333pt;}
.y9f{bottom:1001.733333pt;}
.y5b{bottom:1007.333333pt;}
.y9e{bottom:1017.760000pt;}
.y5a{bottom:1022.720000pt;}
.y9c{bottom:1033.760000pt;}
.y59{bottom:1038.080000pt;}
.y9b{bottom:1049.760000pt;}
.y58{bottom:1053.440000pt;}
.h22{height:15.200000pt;}
.h24{height:15.232000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h23{height:30.560000pt;}
.h1f{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h13{height:34.302188pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h12{height:38.625000pt;}
.h25{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:168.026667pt;}
.h16{height:536.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:50.560000pt;}
.w1f{width:51.040000pt;}
.w15{width:51.360000pt;}
.w11{width:53.280000pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w1a{width:153.146667pt;}
.w13{width:160.506667pt;}
.w17{width:169.146667pt;}
.w14{width:170.746667pt;}
.w1b{width:176.346667pt;}
.wb{width:178.426667pt;}
.w1d{width:179.866667pt;}
.w18{width:180.826667pt;}
.wf{width:188.346667pt;}
.wc{width:190.266667pt;}
.w1e{width:192.186667pt;}
.w8{width:198.466667pt;}
.w10{width:200.986667pt;}
.we{width:219.106667pt;}
.w1c{width:238.466667pt;}
.wa{width:242.306667pt;}
.w16{width:260.226667pt;}
.w12{width:279.106667pt;}
.w19{width:280.706667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xe{left:24.512000pt;}
.xc{left:36.832000pt;}
.x1{left:64.320000pt;}
.x11{left:69.786667pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x28{left:96.031988pt;}
.x29{left:120.031988pt;}
.xd{left:170.106667pt;}
.x12{left:191.266667pt;}
.x6{left:199.866667pt;}
.x19{left:203.866655pt;}
.x20{left:227.226655pt;}
.x10{left:233.506667pt;}
.x15{left:250.466655pt;}
.x1d{left:252.066655pt;}
.x9{left:256.386667pt;}
.x13{left:263.266667pt;}
.x26{left:274.466655pt;}
.x1a{left:284.866667pt;}
.x23{left:295.586655pt;}
.xf{left:304.386667pt;}
.x16{left:308.066667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1e{left:344.866667pt;}
.x24{left:346.466667pt;}
.xa{left:405.066667pt;}
.x1b{left:473.853333pt;}
.x27{left:484.893333pt;}
.x17{left:487.293333pt;}
.x22{left:495.933333pt;}
.x25{left:500.413333pt;}
.x1f{left:506.013333pt;}
.x3{left:663.013333pt;}
.x1c{left:675.493333pt;}
.x18{left:678.213333pt;}
}




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