
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_1e9c688a1b19e99fb1498dc5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b439d8b9ad04fc89ef635862.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4aa13c6dcd15478bc386bd31.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_dfa5af9d04977a3dc8869c5d.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_8bacd6f66d4da0e39efa0ef3.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;}
.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:23.760000px;}
.lsb{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.457800px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.lse{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.ls8{letter-spacing:46.026720px;}
.ls9{letter-spacing:64.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-1.653120px;}
._0{width:1.135440px;}
._7{width:2.390400px;}
._a{width:3.824640px;}
._b{width:4.840560px;}
._11{width:6.454080px;}
._10{width:7.709040px;}
._f{width:9.322560px;}
._e{width:10.517760px;}
._1a{width:11.952000px;}
._1d{width:13.386240px;}
._2e{width:15.050880px;}
._14{width:16.075440px;}
._6{width:17.270640px;}
._9{width:18.385920px;}
._8{width:19.541520px;}
._12{width:20.715120px;}
._19{width:21.991680px;}
._26{width:23.306400px;}
._28{width:24.552480px;}
._d{width:26.276160px;}
._c{width:27.668880px;}
._13{width:29.401920px;}
._1c{width:30.579600px;}
._1b{width:32.449680px;}
._2b{width:33.525360px;}
._2c{width:35.330160px;}
._20{width:36.393840px;}
._21{width:37.595520px;}
._15{width:38.718000px;}
._22{width:40.218480px;}
._24{width:41.712480px;}
._23{width:42.728400px;}
._18{width:45.414000px;}
._17{width:46.656000px;}
._2a{width:49.899600px;}
._1f{width:51.333840px;}
._29{width:54.044640px;}
._1e{width:55.236240px;}
._16{width:56.754000px;}
._4{width:62.293440px;}
._27{width:63.703440px;}
._25{width:64.959120px;}
._2d{width:94.480560px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._5{width:919.740000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y16d{bottom:1.260000px;}
.y6{bottom:2.520000px;}
.y3d{bottom:2.880000px;}
.y15{bottom:3.240000px;}
.y36{bottom:6.120000px;}
.y3f{bottom:6.660000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.236000px;}
.y16a{bottom:16.380000px;}
.y3c{bottom:18.360000px;}
.y34{bottom:19.260000px;}
.y2b{bottom:20.520000px;}
.y169{bottom:30.060000px;}
.y171{bottom:30.240000px;}
.y3b{bottom:34.020000px;}
.y7{bottom:35.460000px;}
.y33{bottom:35.820000px;}
.y2a{bottom:37.800000px;}
.y168{bottom:43.920000px;}
.y3a{bottom:49.500000px;}
.y32{bottom:51.300000px;}
.y29{bottom:54.945000px;}
.y170{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.y39{bottom:64.980000px;}
.y31{bottom:66.810000px;}
.y16f{bottom:71.640000px;}
.y28{bottom:72.225000px;}
.y38{bottom:80.460000px;}
.y30{bottom:82.290000px;}
.y16e{bottom:85.365000px;}
.y27{bottom:89.505000px;}
.y2f{bottom:97.950000px;}
.y26{bottom:106.785000px;}
.y3e{bottom:110.025000px;}
.y2e{bottom:113.430000px;}
.y159{bottom:115.236000px;}
.y127{bottom:116.316000px;}
.y81{bottom:119.016000px;}
.y25{bottom:124.065000px;}
.yb8{bottom:125.496000px;}
.y48{bottom:125.676000px;}
.y2d{bottom:128.910000px;}
.yef{bottom:129.276000px;}
.y158{bottom:132.516000px;}
.y126{bottom:133.596000px;}
.y80{bottom:137.376000px;}
.y47{bottom:141.156000px;}
.y24{bottom:141.345000px;}
.yb7{bottom:143.856000px;}
.yee{bottom:146.556000px;}
.y157{bottom:149.796000px;}
.y125{bottom:150.870000px;}
.y7f{bottom:155.730000px;}
.y46{bottom:156.630000px;}
.y23{bottom:158.445000px;}
.yb6{bottom:162.210000px;}
.yed{bottom:163.830000px;}
.y156{bottom:167.070000px;}
.y124{bottom:168.150000px;}
.y45{bottom:172.110000px;}
.y7e{bottom:172.830000px;}
.y22{bottom:175.725000px;}
.yb5{bottom:180.390000px;}
.yec{bottom:181.110000px;}
.y155{bottom:184.350000px;}
.y123{bottom:185.430000px;}
.y44{bottom:187.770000px;}
.y7d{bottom:190.110000px;}
.y21{bottom:193.005000px;}
.yeb{bottom:198.390000px;}
.yb4{bottom:198.750000px;}
.y154{bottom:201.630000px;}
.y122{bottom:202.710000px;}
.y43{bottom:203.250000px;}
.y7c{bottom:207.390000px;}
.y20{bottom:210.285000px;}
.yea{bottom:215.490000px;}
.yb3{bottom:216.030000px;}
.y153{bottom:218.730000px;}
.y42{bottom:219.090000px;}
.y121{bottom:219.810000px;}
.y7b{bottom:224.670000px;}
.y1f{bottom:227.565000px;}
.y166{bottom:230.070000px;}
.yb2{bottom:233.310000px;}
.ye9{bottom:233.850000px;}
.y152{bottom:236.010000px;}
.y41{bottom:236.370000px;}
.y120{bottom:237.090000px;}
.y7a{bottom:241.950000px;}
.y1e{bottom:244.665000px;}
.y16c{bottom:244.830000px;}
.yb1{bottom:250.590000px;}
.ye8{bottom:251.130000px;}
.y40{bottom:253.290000px;}
.y11f{bottom:254.370000px;}
.y79{bottom:259.050000px;}
.y1d{bottom:261.945000px;}
.y16{bottom:266.610000px;}
.yb0{bottom:267.690000px;}
.ye7{bottom:269.490000px;}
.y151{bottom:270.570000px;}
.y11e{bottom:271.650000px;}
.y78{bottom:276.330000px;}
.y1c{bottom:279.225000px;}
.yaf{bottom:284.970000px;}
.ye6{bottom:286.770000px;}
.y150{bottom:287.850000px;}
.y11d{bottom:288.930000px;}
.y77{bottom:293.610000px;}
.y1b{bottom:296.505000px;}
.yae{bottom:302.250000px;}
.ye5{bottom:304.050000px;}
.y14f{bottom:305.130000px;}
.y11c{bottom:306.030000px;}
.y76{bottom:310.890000px;}
.y1a{bottom:313.815000px;}
.yad{bottom:319.575000px;}
.ye4{bottom:321.195000px;}
.y14e{bottom:322.275000px;}
.y11b{bottom:323.355000px;}
.y75{bottom:328.215000px;}
.y19{bottom:331.095000px;}
.yac{bottom:336.855000px;}
.ye3{bottom:338.475000px;}
.y14d{bottom:339.555000px;}
.y11a{bottom:340.635000px;}
.y16b{bottom:342.255000px;}
.y74{bottom:345.495000px;}
.y18{bottom:348.195000px;}
.yab{bottom:354.135000px;}
.ye2{bottom:355.755000px;}
.y14c{bottom:356.835000px;}
.y119{bottom:357.915000px;}
.y73{bottom:362.595000px;}
.y17{bottom:365.475000px;}
.yaa{bottom:371.235000px;}
.ye1{bottom:373.035000px;}
.y14b{bottom:374.115000px;}
.y118{bottom:375.195000px;}
.y72{bottom:379.875000px;}
.ya9{bottom:388.515000px;}
.y37{bottom:389.955000px;}
.ye0{bottom:390.315000px;}
.y14a{bottom:391.395000px;}
.y117{bottom:392.475000px;}
.y71{bottom:397.155000px;}
.ya8{bottom:405.795000px;}
.ydf{bottom:407.415000px;}
.y149{bottom:408.495000px;}
.y116{bottom:409.575000px;}
.y167{bottom:412.815000px;}
.y70{bottom:414.435000px;}
.ya7{bottom:423.075000px;}
.yde{bottom:424.695000px;}
.y115{bottom:426.855000px;}
.y6f{bottom:431.715000px;}
.y165{bottom:434.415000px;}
.ya6{bottom:440.355000px;}
.ydd{bottom:441.975000px;}
.y114{bottom:444.135000px;}
.y148{bottom:445.215000px;}
.y6e{bottom:448.995000px;}
.y164{bottom:451.695000px;}
.ya5{bottom:457.635000px;}
.ydc{bottom:459.255000px;}
.y113{bottom:461.415000px;}
.y147{bottom:462.495000px;}
.y6d{bottom:466.095000px;}
.y163{bottom:468.975000px;}
.ya4{bottom:474.735000px;}
.ydb{bottom:476.535000px;}
.y112{bottom:478.695000px;}
.y146{bottom:480.855000px;}
.y6c{bottom:483.375000px;}
.y35{bottom:483.735000px;}
.y162{bottom:486.255000px;}
.ya3{bottom:492.015000px;}
.yda{bottom:493.815000px;}
.y111{bottom:495.975000px;}
.y145{bottom:498.135000px;}
.y6b{bottom:500.655000px;}
.y161{bottom:503.355000px;}
.y2c{bottom:504.615000px;}
.ya2{bottom:509.295000px;}
.yd9{bottom:510.915000px;}
.y110{bottom:513.075000px;}
.y144{bottom:516.315000px;}
.y6a{bottom:517.935000px;}
.y160{bottom:520.635000px;}
.ya1{bottom:526.575000px;}
.yd8{bottom:528.195000px;}
.y10f{bottom:530.355000px;}
.y143{bottom:533.595000px;}
.y69{bottom:535.215000px;}
.y15f{bottom:537.915000px;}
.ya0{bottom:543.855000px;}
.yd7{bottom:545.475000px;}
.y10e{bottom:547.635000px;}
.y142{bottom:551.955000px;}
.y68{bottom:552.495000px;}
.y15e{bottom:555.195000px;}
.y9f{bottom:560.955000px;}
.yd6{bottom:562.755000px;}
.y10d{bottom:564.915000px;}
.y141{bottom:569.265000px;}
.y67{bottom:569.625000px;}
.y15d{bottom:572.505000px;}
.y9e{bottom:578.265000px;}
.yd5{bottom:580.065000px;}
.y10c{bottom:582.225000px;}
.y66{bottom:586.905000px;}
.y140{bottom:587.625000px;}
.y15c{bottom:589.785000px;}
.y9d{bottom:595.545000px;}
.yd4{bottom:597.345000px;}
.y10b{bottom:599.505000px;}
.y65{bottom:604.185000px;}
.y13f{bottom:605.805000px;}
.y15b{bottom:606.885000px;}
.y9c{bottom:612.825000px;}
.yd3{bottom:614.445000px;}
.y10a{bottom:616.605000px;}
.y64{bottom:621.465000px;}
.y13e{bottom:623.085000px;}
.y15a{bottom:624.165000px;}
.y9b{bottom:630.105000px;}
.yd2{bottom:631.725000px;}
.y109{bottom:633.885000px;}
.y63{bottom:638.745000px;}
.y13d{bottom:641.445000px;}
.y14{bottom:646.845000px;}
.y9a{bottom:647.385000px;}
.yd1{bottom:649.005000px;}
.y108{bottom:651.165000px;}
.y62{bottom:655.845000px;}
.y13c{bottom:658.725000px;}
.y99{bottom:664.485000px;}
.yd0{bottom:666.285000px;}
.y107{bottom:668.445000px;}
.y61{bottom:673.125000px;}
.y13b{bottom:676.005000px;}
.y13{bottom:681.405000px;}
.y98{bottom:681.765000px;}
.ycf{bottom:683.565000px;}
.y106{bottom:685.725000px;}
.y60{bottom:690.405000px;}
.y13a{bottom:693.285000px;}
.y97{bottom:699.045000px;}
.yce{bottom:700.845000px;}
.y105{bottom:702.825000px;}
.y12{bottom:705.525000px;}
.y5f{bottom:707.685000px;}
.y139{bottom:710.385000px;}
.y96{bottom:716.325000px;}
.ycd{bottom:717.945000px;}
.y104{bottom:720.105000px;}
.y5e{bottom:724.965000px;}
.y138{bottom:727.665000px;}
.y95{bottom:733.605000px;}
.y11{bottom:734.505000px;}
.ycc{bottom:735.225000px;}
.y103{bottom:738.465000px;}
.y5d{bottom:742.245000px;}
.y137{bottom:744.945000px;}
.y94{bottom:750.885000px;}
.ycb{bottom:752.505000px;}
.y10{bottom:753.405000px;}
.y102{bottom:756.825000px;}
.y5c{bottom:759.345000px;}
.y136{bottom:762.225000px;}
.y93{bottom:767.985000px;}
.yca{bottom:769.785000px;}
.y101{bottom:775.185000px;}
.y5b{bottom:776.625000px;}
.yf{bottom:777.165000px;}
.y135{bottom:779.505000px;}
.y92{bottom:785.265000px;}
.yc9{bottom:787.065000px;}
.y100{bottom:793.545000px;}
.y5a{bottom:793.905000px;}
.y134{bottom:796.605000px;}
.y91{bottom:802.545000px;}
.yc8{bottom:804.165000px;}
.ye{bottom:808.125000px;}
.y59{bottom:811.185000px;}
.yff{bottom:811.725000px;}
.y133{bottom:813.885000px;}
.y90{bottom:819.870000px;}
.yc7{bottom:821.490000px;}
.y58{bottom:828.510000px;}
.yfe{bottom:829.050000px;}
.y132{bottom:831.210000px;}
.y8f{bottom:837.150000px;}
.yc6{bottom:838.770000px;}
.yd{bottom:839.310000px;}
.y57{bottom:845.790000px;}
.yfd{bottom:846.330000px;}
.y131{bottom:848.490000px;}
.y8e{bottom:854.430000px;}
.yc5{bottom:856.050000px;}
.y56{bottom:862.890000px;}
.yfc{bottom:863.610000px;}
.y130{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.y8d{bottom:871.530000px;}
.yc4{bottom:874.410000px;}
.y55{bottom:880.170000px;}
.yfb{bottom:880.890000px;}
.y12f{bottom:883.050000px;}
.y8c{bottom:888.810000px;}
.yc3{bottom:892.770000px;}
.y54{bottom:897.450000px;}
.yfa{bottom:897.990000px;}
.y12e{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y8b{bottom:906.090000px;}
.yc2{bottom:910.950000px;}
.y53{bottom:914.730000px;}
.yf9{bottom:915.270000px;}
.y12d{bottom:917.430000px;}
.y8a{bottom:924.450000px;}
.yc1{bottom:929.310000px;}
.ya{bottom:930.210000px;}
.y52{bottom:932.010000px;}
.yf8{bottom:932.550000px;}
.y12c{bottom:934.710000px;}
.y89{bottom:942.810000px;}
.y8{bottom:945.510000px;}
.yc0{bottom:947.670000px;}
.y51{bottom:949.290000px;}
.yf7{bottom:949.830000px;}
.y12b{bottom:951.990000px;}
.y88{bottom:960.990000px;}
.ybf{bottom:966.030000px;}
.y50{bottom:966.390000px;}
.yf6{bottom:967.110000px;}
.y12a{bottom:969.270000px;}
.y87{bottom:979.350000px;}
.ybe{bottom:983.310000px;}
.y4f{bottom:983.670000px;}
.yf5{bottom:985.470000px;}
.y129{bottom:986.550000px;}
.y86{bottom:997.710000px;}
.ybd{bottom:1000.410000px;}
.y4e{bottom:1000.950000px;}
.yf4{bottom:1002.570000px;}
.y128{bottom:1003.650000px;}
.y85{bottom:1014.990000px;}
.ybc{bottom:1017.690000px;}
.y4d{bottom:1018.230000px;}
.yf3{bottom:1020.930000px;}
.y84{bottom:1032.270000px;}
.ybb{bottom:1034.970000px;}
.y4c{bottom:1035.510000px;}
.yf2{bottom:1038.210000px;}
.y83{bottom:1050.450000px;}
.y4b{bottom:1052.610000px;}
.yba{bottom:1053.330000px;}
.yf1{bottom:1055.490000px;}
.y82{bottom:1068.810000px;}
.y4a{bottom:1069.890000px;}
.yb9{bottom:1071.720000px;}
.yf0{bottom:1072.800000px;}
.y49{bottom:1086.840000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h19{height:13.680000px;}
.h1c{height:13.860150px;}
.he{height:17.280000px;}
.h13{height:20.160000px;}
.h3{height:27.576000px;}
.h5{height:33.683203px;}
.h1a{height:34.036523px;}
.h15{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:39.336328px;}
.h11{height:39.999023px;}
.h4{height:41.726953px;}
.hd{height:42.164648px;}
.h18{height:43.506914px;}
.h12{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h1b{height:55.080000px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h14{height:93.060000px;}
.h1d{height:96.696000px;}
.h17{height:122.616000px;}
.h10{height:141.516000px;}
.h7{height:153.930000px;}
.hf{height:379.515000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w8{width:71.100000px;}
.w6{width:220.170000px;}
.w9{width:307.695000px;}
.w7{width:379.515000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.480000px;}
.x3{left:8.460000px;}
.x10{left:19.980000px;}
.x14{left:27.360000px;}
.x12{left:34.065000px;}
.x13{left:35.865000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x15{left:65.519986px;}
.x1f{left:71.820000px;}
.x18{left:88.199986px;}
.x9{left:93.275986px;}
.x4{left:100.836000px;}
.x1e{left:103.320000px;}
.x1d{left:104.940000px;}
.x5{left:108.035986px;}
.xd{left:180.569986px;}
.xa{left:406.514986px;}
.xc{left:410.654986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x17{left:478.334986px;}
.x16{left:479.804986px;}
.x1c{left:496.545000px;}
.x1a{left:505.364986px;}
.x19{left:506.804986px;}
.x1b{left:526.604986px;}
.x20{left:568.365000px;}
.xf{left:642.345000px;}
.x7{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.ls8{letter-spacing:40.912640pt;}
.ls9{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.313067pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-1.469440pt;}
._0{width:1.009280pt;}
._7{width:2.124800pt;}
._a{width:3.399680pt;}
._b{width:4.302720pt;}
._11{width:5.736960pt;}
._10{width:6.852480pt;}
._f{width:8.286720pt;}
._e{width:9.349120pt;}
._1a{width:10.624000pt;}
._1d{width:11.898880pt;}
._2e{width:13.378560pt;}
._14{width:14.289280pt;}
._6{width:15.351680pt;}
._9{width:16.343040pt;}
._8{width:17.370240pt;}
._12{width:18.413440pt;}
._19{width:19.548160pt;}
._26{width:20.716800pt;}
._28{width:21.824427pt;}
._d{width:23.356587pt;}
._c{width:24.594560pt;}
._13{width:26.135040pt;}
._1c{width:27.181867pt;}
._1b{width:28.844160pt;}
._2b{width:29.800320pt;}
._2c{width:31.404587pt;}
._20{width:32.350080pt;}
._21{width:33.418240pt;}
._15{width:34.416000pt;}
._22{width:35.749760pt;}
._24{width:37.077760pt;}
._23{width:37.980800pt;}
._18{width:40.368000pt;}
._17{width:41.472000pt;}
._2a{width:44.355200pt;}
._1f{width:45.630080pt;}
._29{width:48.039680pt;}
._1e{width:49.098880pt;}
._16{width:50.448000pt;}
._4{width:55.371947pt;}
._27{width:56.625280pt;}
._25{width:57.741440pt;}
._2d{width:83.982720pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._5{width:817.546667pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y16d{bottom:1.120000pt;}
.y6{bottom:2.240000pt;}
.y3d{bottom:2.560000pt;}
.y15{bottom:2.880000pt;}
.y36{bottom:5.440000pt;}
.y3f{bottom:5.920000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.432000pt;}
.y16a{bottom:14.560000pt;}
.y3c{bottom:16.320000pt;}
.y34{bottom:17.120000pt;}
.y2b{bottom:18.240000pt;}
.y169{bottom:26.720000pt;}
.y171{bottom:26.880000pt;}
.y3b{bottom:30.240000pt;}
.y7{bottom:31.520000pt;}
.y33{bottom:31.840000pt;}
.y2a{bottom:33.600000pt;}
.y168{bottom:39.040000pt;}
.y3a{bottom:44.000000pt;}
.y32{bottom:45.600000pt;}
.y29{bottom:48.840000pt;}
.y170{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.y39{bottom:57.760000pt;}
.y31{bottom:59.386667pt;}
.y16f{bottom:63.680000pt;}
.y28{bottom:64.200000pt;}
.y38{bottom:71.520000pt;}
.y30{bottom:73.146667pt;}
.y16e{bottom:75.880000pt;}
.y27{bottom:79.560000pt;}
.y2f{bottom:87.066667pt;}
.y26{bottom:94.920000pt;}
.y3e{bottom:97.800000pt;}
.y2e{bottom:100.826667pt;}
.y159{bottom:102.432000pt;}
.y127{bottom:103.392000pt;}
.y81{bottom:105.792000pt;}
.y25{bottom:110.280000pt;}
.yb8{bottom:111.552000pt;}
.y48{bottom:111.712000pt;}
.y2d{bottom:114.586667pt;}
.yef{bottom:114.912000pt;}
.y158{bottom:117.792000pt;}
.y126{bottom:118.752000pt;}
.y80{bottom:122.112000pt;}
.y47{bottom:125.472000pt;}
.y24{bottom:125.640000pt;}
.yb7{bottom:127.872000pt;}
.yee{bottom:130.272000pt;}
.y157{bottom:133.152000pt;}
.y125{bottom:134.106667pt;}
.y7f{bottom:138.426667pt;}
.y46{bottom:139.226667pt;}
.y23{bottom:140.840000pt;}
.yb6{bottom:144.186667pt;}
.yed{bottom:145.626667pt;}
.y156{bottom:148.506667pt;}
.y124{bottom:149.466667pt;}
.y45{bottom:152.986667pt;}
.y7e{bottom:153.626667pt;}
.y22{bottom:156.200000pt;}
.yb5{bottom:160.346667pt;}
.yec{bottom:160.986667pt;}
.y155{bottom:163.866667pt;}
.y123{bottom:164.826667pt;}
.y44{bottom:166.906667pt;}
.y7d{bottom:168.986667pt;}
.y21{bottom:171.560000pt;}
.yeb{bottom:176.346667pt;}
.yb4{bottom:176.666667pt;}
.y154{bottom:179.226667pt;}
.y122{bottom:180.186667pt;}
.y43{bottom:180.666667pt;}
.y7c{bottom:184.346667pt;}
.y20{bottom:186.920000pt;}
.yea{bottom:191.546667pt;}
.yb3{bottom:192.026667pt;}
.y153{bottom:194.426667pt;}
.y42{bottom:194.746667pt;}
.y121{bottom:195.386667pt;}
.y7b{bottom:199.706667pt;}
.y1f{bottom:202.280000pt;}
.y166{bottom:204.506667pt;}
.yb2{bottom:207.386667pt;}
.ye9{bottom:207.866667pt;}
.y152{bottom:209.786667pt;}
.y41{bottom:210.106667pt;}
.y120{bottom:210.746667pt;}
.y7a{bottom:215.066667pt;}
.y1e{bottom:217.480000pt;}
.y16c{bottom:217.626667pt;}
.yb1{bottom:222.746667pt;}
.ye8{bottom:223.226667pt;}
.y40{bottom:225.146667pt;}
.y11f{bottom:226.106667pt;}
.y79{bottom:230.266667pt;}
.y1d{bottom:232.840000pt;}
.y16{bottom:236.986667pt;}
.yb0{bottom:237.946667pt;}
.ye7{bottom:239.546667pt;}
.y151{bottom:240.506667pt;}
.y11e{bottom:241.466667pt;}
.y78{bottom:245.626667pt;}
.y1c{bottom:248.200000pt;}
.yaf{bottom:253.306667pt;}
.ye6{bottom:254.906667pt;}
.y150{bottom:255.866667pt;}
.y11d{bottom:256.826667pt;}
.y77{bottom:260.986667pt;}
.y1b{bottom:263.560000pt;}
.yae{bottom:268.666667pt;}
.ye5{bottom:270.266667pt;}
.y14f{bottom:271.226667pt;}
.y11c{bottom:272.026667pt;}
.y76{bottom:276.346667pt;}
.y1a{bottom:278.946667pt;}
.yad{bottom:284.066667pt;}
.ye4{bottom:285.506667pt;}
.y14e{bottom:286.466667pt;}
.y11b{bottom:287.426667pt;}
.y75{bottom:291.746667pt;}
.y19{bottom:294.306667pt;}
.yac{bottom:299.426667pt;}
.ye3{bottom:300.866667pt;}
.y14d{bottom:301.826667pt;}
.y11a{bottom:302.786667pt;}
.y16b{bottom:304.226667pt;}
.y74{bottom:307.106667pt;}
.y18{bottom:309.506667pt;}
.yab{bottom:314.786667pt;}
.ye2{bottom:316.226667pt;}
.y14c{bottom:317.186667pt;}
.y119{bottom:318.146667pt;}
.y73{bottom:322.306667pt;}
.y17{bottom:324.866667pt;}
.yaa{bottom:329.986667pt;}
.ye1{bottom:331.586667pt;}
.y14b{bottom:332.546667pt;}
.y118{bottom:333.506667pt;}
.y72{bottom:337.666667pt;}
.ya9{bottom:345.346667pt;}
.y37{bottom:346.626667pt;}
.ye0{bottom:346.946667pt;}
.y14a{bottom:347.906667pt;}
.y117{bottom:348.866667pt;}
.y71{bottom:353.026667pt;}
.ya8{bottom:360.706667pt;}
.ydf{bottom:362.146667pt;}
.y149{bottom:363.106667pt;}
.y116{bottom:364.066667pt;}
.y167{bottom:366.946667pt;}
.y70{bottom:368.386667pt;}
.ya7{bottom:376.066667pt;}
.yde{bottom:377.506667pt;}
.y115{bottom:379.426667pt;}
.y6f{bottom:383.746667pt;}
.y165{bottom:386.146667pt;}
.ya6{bottom:391.426667pt;}
.ydd{bottom:392.866667pt;}
.y114{bottom:394.786667pt;}
.y148{bottom:395.746667pt;}
.y6e{bottom:399.106667pt;}
.y164{bottom:401.506667pt;}
.ya5{bottom:406.786667pt;}
.ydc{bottom:408.226667pt;}
.y113{bottom:410.146667pt;}
.y147{bottom:411.106667pt;}
.y6d{bottom:414.306667pt;}
.y163{bottom:416.866667pt;}
.ya4{bottom:421.986667pt;}
.ydb{bottom:423.586667pt;}
.y112{bottom:425.506667pt;}
.y146{bottom:427.426667pt;}
.y6c{bottom:429.666667pt;}
.y35{bottom:429.986667pt;}
.y162{bottom:432.226667pt;}
.ya3{bottom:437.346667pt;}
.yda{bottom:438.946667pt;}
.y111{bottom:440.866667pt;}
.y145{bottom:442.786667pt;}
.y6b{bottom:445.026667pt;}
.y161{bottom:447.426667pt;}
.y2c{bottom:448.546667pt;}
.ya2{bottom:452.706667pt;}
.yd9{bottom:454.146667pt;}
.y110{bottom:456.066667pt;}
.y144{bottom:458.946667pt;}
.y6a{bottom:460.386667pt;}
.y160{bottom:462.786667pt;}
.ya1{bottom:468.066667pt;}
.yd8{bottom:469.506667pt;}
.y10f{bottom:471.426667pt;}
.y143{bottom:474.306667pt;}
.y69{bottom:475.746667pt;}
.y15f{bottom:478.146667pt;}
.ya0{bottom:483.426667pt;}
.yd7{bottom:484.866667pt;}
.y10e{bottom:486.786667pt;}
.y142{bottom:490.626667pt;}
.y68{bottom:491.106667pt;}
.y15e{bottom:493.506667pt;}
.y9f{bottom:498.626667pt;}
.yd6{bottom:500.226667pt;}
.y10d{bottom:502.146667pt;}
.y141{bottom:506.013333pt;}
.y67{bottom:506.333333pt;}
.y15d{bottom:508.893333pt;}
.y9e{bottom:514.013333pt;}
.yd5{bottom:515.613333pt;}
.y10c{bottom:517.533333pt;}
.y66{bottom:521.693333pt;}
.y140{bottom:522.333333pt;}
.y15c{bottom:524.253333pt;}
.y9d{bottom:529.373333pt;}
.yd4{bottom:530.973333pt;}
.y10b{bottom:532.893333pt;}
.y65{bottom:537.053333pt;}
.y13f{bottom:538.493333pt;}
.y15b{bottom:539.453333pt;}
.y9c{bottom:544.733333pt;}
.yd3{bottom:546.173333pt;}
.y10a{bottom:548.093333pt;}
.y64{bottom:552.413333pt;}
.y13e{bottom:553.853333pt;}
.y15a{bottom:554.813333pt;}
.y9b{bottom:560.093333pt;}
.yd2{bottom:561.533333pt;}
.y109{bottom:563.453333pt;}
.y63{bottom:567.773333pt;}
.y13d{bottom:570.173333pt;}
.y14{bottom:574.973333pt;}
.y9a{bottom:575.453333pt;}
.yd1{bottom:576.893333pt;}
.y108{bottom:578.813333pt;}
.y62{bottom:582.973333pt;}
.y13c{bottom:585.533333pt;}
.y99{bottom:590.653333pt;}
.yd0{bottom:592.253333pt;}
.y107{bottom:594.173333pt;}
.y61{bottom:598.333333pt;}
.y13b{bottom:600.893333pt;}
.y13{bottom:605.693333pt;}
.y98{bottom:606.013333pt;}
.ycf{bottom:607.613333pt;}
.y106{bottom:609.533333pt;}
.y60{bottom:613.693333pt;}
.y13a{bottom:616.253333pt;}
.y97{bottom:621.373333pt;}
.yce{bottom:622.973333pt;}
.y105{bottom:624.733333pt;}
.y12{bottom:627.133333pt;}
.y5f{bottom:629.053333pt;}
.y139{bottom:631.453333pt;}
.y96{bottom:636.733333pt;}
.ycd{bottom:638.173333pt;}
.y104{bottom:640.093333pt;}
.y5e{bottom:644.413333pt;}
.y138{bottom:646.813333pt;}
.y95{bottom:652.093333pt;}
.y11{bottom:652.893333pt;}
.ycc{bottom:653.533333pt;}
.y103{bottom:656.413333pt;}
.y5d{bottom:659.773333pt;}
.y137{bottom:662.173333pt;}
.y94{bottom:667.453333pt;}
.ycb{bottom:668.893333pt;}
.y10{bottom:669.693333pt;}
.y102{bottom:672.733333pt;}
.y5c{bottom:674.973333pt;}
.y136{bottom:677.533333pt;}
.y93{bottom:682.653333pt;}
.yca{bottom:684.253333pt;}
.y101{bottom:689.053333pt;}
.y5b{bottom:690.333333pt;}
.yf{bottom:690.813333pt;}
.y135{bottom:692.893333pt;}
.y92{bottom:698.013333pt;}
.yc9{bottom:699.613333pt;}
.y100{bottom:705.373333pt;}
.y5a{bottom:705.693333pt;}
.y134{bottom:708.093333pt;}
.y91{bottom:713.373333pt;}
.yc8{bottom:714.813333pt;}
.ye{bottom:718.333333pt;}
.y59{bottom:721.053333pt;}
.yff{bottom:721.533333pt;}
.y133{bottom:723.453333pt;}
.y90{bottom:728.773333pt;}
.yc7{bottom:730.213333pt;}
.y58{bottom:736.453333pt;}
.yfe{bottom:736.933333pt;}
.y132{bottom:738.853333pt;}
.y8f{bottom:744.133333pt;}
.yc6{bottom:745.573333pt;}
.yd{bottom:746.053333pt;}
.y57{bottom:751.813333pt;}
.yfd{bottom:752.293333pt;}
.y131{bottom:754.213333pt;}
.y8e{bottom:759.493333pt;}
.yc5{bottom:760.933333pt;}
.y56{bottom:767.013333pt;}
.yfc{bottom:767.653333pt;}
.y130{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.y8d{bottom:774.693333pt;}
.yc4{bottom:777.253333pt;}
.y55{bottom:782.373333pt;}
.yfb{bottom:783.013333pt;}
.y12f{bottom:784.933333pt;}
.y8c{bottom:790.053333pt;}
.yc3{bottom:793.573333pt;}
.y54{bottom:797.733333pt;}
.yfa{bottom:798.213333pt;}
.y12e{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y8b{bottom:805.413333pt;}
.yc2{bottom:809.733333pt;}
.y53{bottom:813.093333pt;}
.yf9{bottom:813.573333pt;}
.y12d{bottom:815.493333pt;}
.y8a{bottom:821.733333pt;}
.yc1{bottom:826.053333pt;}
.ya{bottom:826.853333pt;}
.y52{bottom:828.453333pt;}
.yf8{bottom:828.933333pt;}
.y12c{bottom:830.853333pt;}
.y89{bottom:838.053333pt;}
.y8{bottom:840.453333pt;}
.yc0{bottom:842.373333pt;}
.y51{bottom:843.813333pt;}
.yf7{bottom:844.293333pt;}
.y12b{bottom:846.213333pt;}
.y88{bottom:854.213333pt;}
.ybf{bottom:858.693333pt;}
.y50{bottom:859.013333pt;}
.yf6{bottom:859.653333pt;}
.y12a{bottom:861.573333pt;}
.y87{bottom:870.533333pt;}
.ybe{bottom:874.053333pt;}
.y4f{bottom:874.373333pt;}
.yf5{bottom:875.973333pt;}
.y129{bottom:876.933333pt;}
.y86{bottom:886.853333pt;}
.ybd{bottom:889.253333pt;}
.y4e{bottom:889.733333pt;}
.yf4{bottom:891.173333pt;}
.y128{bottom:892.133333pt;}
.y85{bottom:902.213333pt;}
.ybc{bottom:904.613333pt;}
.y4d{bottom:905.093333pt;}
.yf3{bottom:907.493333pt;}
.y84{bottom:917.573333pt;}
.ybb{bottom:919.973333pt;}
.y4c{bottom:920.453333pt;}
.yf2{bottom:922.853333pt;}
.y83{bottom:933.733333pt;}
.y4b{bottom:935.653333pt;}
.yba{bottom:936.293333pt;}
.yf1{bottom:938.213333pt;}
.y82{bottom:950.053333pt;}
.y4a{bottom:951.013333pt;}
.yb9{bottom:952.640000pt;}
.yf0{bottom:953.600000pt;}
.y49{bottom:966.080000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h19{height:12.160000pt;}
.h1c{height:12.320133pt;}
.he{height:15.360000pt;}
.h13{height:17.920000pt;}
.h3{height:24.512000pt;}
.h5{height:29.940625pt;}
.h1a{height:30.254687pt;}
.h15{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:34.965625pt;}
.h11{height:35.554688pt;}
.h4{height:37.090625pt;}
.hd{height:37.479688pt;}
.h18{height:38.672812pt;}
.h12{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h1b{height:48.960000pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h14{height:82.720000pt;}
.h1d{height:85.952000pt;}
.h17{height:108.992000pt;}
.h10{height:125.792000pt;}
.h7{height:136.826667pt;}
.hf{height:337.346667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w8{width:63.200000pt;}
.w6{width:195.706667pt;}
.w9{width:273.506667pt;}
.w7{width:337.346667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.760000pt;}
.x3{left:7.520000pt;}
.x10{left:17.760000pt;}
.x14{left:24.320000pt;}
.x12{left:30.280000pt;}
.x13{left:31.880000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x15{left:58.239988pt;}
.x1f{left:63.840000pt;}
.x18{left:78.399988pt;}
.x9{left:82.911988pt;}
.x4{left:89.632000pt;}
.x1e{left:91.840000pt;}
.x1d{left:93.280000pt;}
.x5{left:96.031988pt;}
.xd{left:160.506655pt;}
.xa{left:361.346655pt;}
.xc{left:365.026655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x17{left:425.186655pt;}
.x16{left:426.493321pt;}
.x1c{left:441.373333pt;}
.x1a{left:449.213321pt;}
.x19{left:450.493321pt;}
.x1b{left:468.093321pt;}
.x20{left:505.213333pt;}
.xf{left:570.973333pt;}
.x7{left:722.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; }
  