
    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_fcce37f4b85936be8b213fbb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5c6ee7a3d92542d79c01c82c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7392393a8c9e31f6d083f3e0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f6a1b530dbfa6aab5cb7bbe8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_88580453f43fc6e4385037a7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_c1c693b58ac22665174bda63.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_de3538f2c4ee6c9ada6555b0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.039551;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.382800px;}
.ls8{letter-spacing:-0.305400px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.264960px;}
.lsb{letter-spacing:0.457800px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.ls10{letter-spacing:5.040000px;}
.lse{letter-spacing:7.505280px;}
.lsa{letter-spacing:7.649280px;}
.lsd{letter-spacing:16.560000px;}
.ls7{letter-spacing:18.000000px;}
.ls6{letter-spacing:33.276000px;}
.lsf{letter-spacing:65.225280px;}
.ls12{letter-spacing:83.825280px;}
.ls11{letter-spacing:116.945280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.017800px;}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.254600px;}
.ws4{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.680000px;}
.ws1{word-spacing:-11.983920px;}
.ws0{word-spacing:-10.739520px;}
.ws9{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-4.968000px;}
._b{margin-left:-3.744000px;}
._7{margin-left:-2.053440px;}
._3{margin-left:-1.022400px;}
._2{width:1.425600px;}
._4{width:3.182880px;}
._5{width:4.677600px;}
._c{width:5.949120px;}
._10{width:7.920000px;}
._f{width:9.040320px;}
._d{width:10.068480px;}
._e{width:11.194560px;}
._6{width:12.366960px;}
._12{width:13.544640px;}
._8{width:15.500160px;}
._9{width:18.006240px;}
._a{width:19.342080px;}
._13{width:20.865600px;}
._11{width:22.288320px;}
._17{width:23.515200px;}
._15{width:24.843360px;}
._14{width:26.231040px;}
._19{width:27.373440px;}
._1a{width:28.382400px;}
._1b{width:30.072960px;}
._1c{width:31.363200px;}
._1e{width:37.425600px;}
._1d{width:39.015360px;}
._1f{width:42.557760px;}
._21{width:49.564800px;}
._22{width:51.586560px;}
._1{width:395.333280px;}
._18{width:847.896000px;}
._20{width:1092.430080px;}
._0{width:1101.485760px;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:119.520000px;}
.y3{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.240000px;}
.y3a{bottom:3.600000px;}
.yd{bottom:4.320000px;}
.y8{bottom:17.316000px;}
.y6{bottom:17.676000px;}
.yc{bottom:24.480000px;}
.y9{bottom:30.600000px;}
.y5{bottom:32.436000px;}
.yb{bottom:44.670000px;}
.y4{bottom:57.240000px;}
.y39{bottom:84.636000px;}
.y2{bottom:111.996000px;}
.y16f{bottom:115.236000px;}
.y113{bottom:123.156000px;}
.ydf{bottom:124.596000px;}
.y177{bottom:125.316000px;}
.y95{bottom:128.556000px;}
.y188{bottom:130.356000px;}
.y1ac{bottom:131.436000px;}
.y12d{bottom:132.516000px;}
.yf8{bottom:133.956000px;}
.y16e{bottom:136.836000px;}
.y68{bottom:143.316000px;}
.y112{bottom:145.116000px;}
.y35{bottom:145.476000px;}
.yde{bottom:146.556000px;}
.yc7{bottom:146.916000px;}
.y1ab{bottom:149.436000px;}
.y187{bottom:152.310000px;}
.y12c{bottom:154.110000px;}
.yf7{bottom:155.910000px;}
.y94{bottom:156.990000px;}
.y16d{bottom:158.790000px;}
.y111{bottom:163.110000px;}
.y67{bottom:165.270000px;}
.y143{bottom:166.710000px;}
.ydd{bottom:168.150000px;}
.yc6{bottom:168.870000px;}
.y1aa{bottom:169.950000px;}
.y34{bottom:173.910000px;}
.y12b{bottom:176.070000px;}
.yf6{bottom:177.870000px;}
.y16c{bottom:180.390000px;}
.y93{bottom:185.430000px;}
.y66{bottom:186.870000px;}
.y1a9{bottom:187.950000px;}
.y142{bottom:188.670000px;}
.ydc{bottom:190.110000px;}
.yc5{bottom:190.470000px;}
.y176{bottom:190.830000px;}
.y186{bottom:195.870000px;}
.y12a{bottom:198.075000px;}
.yf5{bottom:199.515000px;}
.y33{bottom:202.395000px;}
.yb3{bottom:204.915000px;}
.y1a8{bottom:208.515000px;}
.y65{bottom:208.875000px;}
.y141{bottom:210.675000px;}
.ydb{bottom:212.115000px;}
.yc4{bottom:212.475000px;}
.y92{bottom:213.915000px;}
.y185{bottom:217.875000px;}
.yf4{bottom:221.475000px;}
.y16b{bottom:224.355000px;}
.y32{bottom:227.595000px;}
.y129{bottom:228.675000px;}
.y1a7{bottom:229.035000px;}
.y64{bottom:230.475000px;}
.y140{bottom:232.275000px;}
.yb2{bottom:233.715000px;}
.yc3{bottom:234.075000px;}
.y91{bottom:235.875000px;}
.y184{bottom:239.475000px;}
.yf3{bottom:243.075000px;}
.y175{bottom:243.435000px;}
.y16a{bottom:245.955000px;}
.y1a6{bottom:247.035000px;}
.y63{bottom:252.435000px;}
.y13f{bottom:254.235000px;}
.yda{bottom:255.675000px;}
.yc2{bottom:256.035000px;}
.y90{bottom:257.475000px;}
.y31{bottom:258.915000px;}
.y128{bottom:259.635000px;}
.y183{bottom:261.435000px;}
.yb1{bottom:262.155000px;}
.yf2{bottom:265.035000px;}
.y1a5{bottom:267.555000px;}
.y169{bottom:267.915000px;}
.y62{bottom:274.395000px;}
.yd9{bottom:277.635000px;}
.yc1{bottom:277.995000px;}
.y8f{bottom:279.435000px;}
.y30{bottom:280.875000px;}
.y127{bottom:281.235000px;}
.y182{bottom:283.395000px;}
.y13e{bottom:284.835000px;}
.y1a4{bottom:285.555000px;}
.yf1{bottom:286.995000px;}
.yb0{bottom:290.595000px;}
.y61{bottom:295.995000px;}
.y168{bottom:298.515000px;}
.yd8{bottom:299.235000px;}
.y8e{bottom:301.395000px;}
.y2f{bottom:302.475000px;}
.y181{bottom:304.995000px;}
.y1a3{bottom:306.075000px;}
.y155{bottom:307.155000px;}
.yc0{bottom:308.595000px;}
.y126{bottom:312.195000px;}
.y13d{bottom:315.795000px;}
.y60{bottom:317.955000px;}
.yaf{bottom:319.035000px;}
.yd7{bottom:321.195000px;}
.y8d{bottom:322.995000px;}
.y1a2{bottom:324.105000px;}
.y2e{bottom:324.465000px;}
.y180{bottom:326.985000px;}
.y154{bottom:328.785000px;}
.y167{bottom:329.505000px;}
.yf0{bottom:330.585000px;}
.y125{bottom:334.185000px;}
.y13c{bottom:337.785000px;}
.y5f{bottom:339.585000px;}
.yd6{bottom:342.825000px;}
.y8c{bottom:344.985000px;}
.y2d{bottom:346.065000px;}
.yae{bottom:347.505000px;}
.y17f{bottom:348.585000px;}
.y153{bottom:350.745000px;}
.y166{bottom:351.465000px;}
.yef{bottom:352.185000px;}
.y124{bottom:355.785000px;}
.y13b{bottom:359.385000px;}
.ybf{bottom:361.185000px;}
.y5e{bottom:361.545000px;}
.yd5{bottom:364.785000px;}
.y1a1{bottom:365.505000px;}
.y8b{bottom:366.585000px;}
.y2c{bottom:368.025000px;}
.y17e{bottom:370.545000px;}
.y152{bottom:372.345000px;}
.y165{bottom:373.065000px;}
.yee{bottom:374.145000px;}
.yad{bottom:375.945000px;}
.y123{bottom:377.745000px;}
.y13a{bottom:381.345000px;}
.ybe{bottom:383.145000px;}
.y5d{bottom:383.505000px;}
.y1a0{bottom:386.025000px;}
.yd4{bottom:386.745000px;}
.y8a{bottom:388.545000px;}
.y2b{bottom:389.985000px;}
.y17d{bottom:392.505000px;}
.y151{bottom:394.305000px;}
.y164{bottom:395.025000px;}
.yed{bottom:396.105000px;}
.y122{bottom:399.345000px;}
.y139{bottom:402.945000px;}
.y19f{bottom:404.025000px;}
.yac{bottom:404.385000px;}
.y5c{bottom:405.105000px;}
.yd3{bottom:408.345000px;}
.y89{bottom:410.505000px;}
.y2a{bottom:411.585000px;}
.y17c{bottom:414.105000px;}
.y150{bottom:416.265000px;}
.y163{bottom:416.985000px;}
.yec{bottom:417.705000px;}
.y121{bottom:421.305000px;}
.y19e{bottom:424.545000px;}
.y138{bottom:424.905000px;}
.ybd{bottom:426.705000px;}
.y5b{bottom:427.065000px;}
.yd2{bottom:430.305000px;}
.y88{bottom:432.105000px;}
.yab{bottom:432.825000px;}
.y29{bottom:433.545000px;}
.y17b{bottom:436.065000px;}
.y14f{bottom:437.865000px;}
.y162{bottom:438.585000px;}
.yeb{bottom:439.665000px;}
.y19d{bottom:442.545000px;}
.y120{bottom:443.265000px;}
.y137{bottom:446.865000px;}
.y5a{bottom:448.665000px;}
.yd1{bottom:451.950000px;}
.y87{bottom:454.110000px;}
.y28{bottom:455.190000px;}
.y17a{bottom:457.710000px;}
.y161{bottom:460.590000px;}
.yaa{bottom:461.310000px;}
.y19c{bottom:463.110000px;}
.y11f{bottom:464.910000px;}
.y136{bottom:468.510000px;}
.y14e{bottom:468.870000px;}
.ybc{bottom:470.310000px;}
.y59{bottom:470.670000px;}
.yd0{bottom:473.910000px;}
.y86{bottom:475.710000px;}
.y27{bottom:477.150000px;}
.yea{bottom:479.670000px;}
.y19b{bottom:481.110000px;}
.y160{bottom:482.190000px;}
.y11e{bottom:486.870000px;}
.ya9{bottom:489.750000px;}
.y135{bottom:490.470000px;}
.ybb{bottom:492.270000px;}
.y58{bottom:492.630000px;}
.ycf{bottom:495.870000px;}
.y85{bottom:497.670000px;}
.y110{bottom:498.390000px;}
.y26{bottom:499.110000px;}
.y14d{bottom:499.830000px;}
.y19a{bottom:501.630000px;}
.y15f{bottom:504.150000px;}
.y11d{bottom:508.830000px;}
.y179{bottom:510.990000px;}
.y134{bottom:512.070000px;}
.y57{bottom:514.230000px;}
.yce{bottom:517.470000px;}
.y84{bottom:519.630000px;}
.y10f{bottom:519.990000px;}
.y25{bottom:520.710000px;}
.y15e{bottom:526.110000px;}
.ya8{bottom:527.190000px;}
.y11c{bottom:530.430000px;}
.y133{bottom:534.030000px;}
.yba{bottom:535.830000px;}
.y56{bottom:536.190000px;}
.ycd{bottom:539.430000px;}
.y199{bottom:540.150000px;}
.y83{bottom:541.230000px;}
.y10e{bottom:541.950000px;}
.y24{bottom:542.670000px;}
.y15d{bottom:547.710000px;}
.y11b{bottom:552.390000px;}
.y132{bottom:555.990000px;}
.yb9{bottom:557.790000px;}
.y55{bottom:558.150000px;}
.y198{bottom:560.670000px;}
.ycc{bottom:561.030000px;}
.y82{bottom:563.190000px;}
.y10d{bottom:563.910000px;}
.y23{bottom:564.270000px;}
.ya7{bottom:564.630000px;}
.y15c{bottom:569.670000px;}
.y11a{bottom:573.990000px;}
.y131{bottom:577.620000px;}
.y197{bottom:578.700000px;}
.yb8{bottom:579.420000px;}
.y54{bottom:579.780000px;}
.ycb{bottom:583.020000px;}
.y81{bottom:584.820000px;}
.y10c{bottom:585.540000px;}
.y22{bottom:586.260000px;}
.y174{bottom:588.780000px;}
.y15b{bottom:591.300000px;}
.y119{bottom:595.980000px;}
.y196{bottom:599.220000px;}
.y130{bottom:599.580000px;}
.yb7{bottom:601.380000px;}
.y53{bottom:601.740000px;}
.ya6{bottom:603.180000px;}
.yca{bottom:604.980000px;}
.y80{bottom:606.780000px;}
.y10b{bottom:607.500000px;}
.y21{bottom:608.220000px;}
.y15a{bottom:613.260000px;}
.y195{bottom:617.220000px;}
.y118{bottom:617.940000px;}
.y173{bottom:620.100000px;}
.y12f{bottom:621.540000px;}
.y52{bottom:623.340000px;}
.y7f{bottom:628.740000px;}
.y10a{bottom:629.100000px;}
.ya5{bottom:634.500000px;}
.y159{bottom:635.220000px;}
.y194{bottom:637.740000px;}
.y117{bottom:639.540000px;}
.y20{bottom:640.620000px;}
.y12e{bottom:643.140000px;}
.yb6{bottom:644.940000px;}
.y51{bottom:645.300000px;}
.y7e{bottom:650.340000px;}
.y109{bottom:651.060000px;}
.y193{bottom:655.740000px;}
.y158{bottom:656.820000px;}
.y116{bottom:661.500000px;}
.y1f{bottom:665.100000px;}
.yb5{bottom:666.900000px;}
.y50{bottom:667.260000px;}
.y7d{bottom:672.300000px;}
.y192{bottom:676.260000px;}
.y157{bottom:678.780000px;}
.y108{bottom:682.020000px;}
.ya4{bottom:682.380000px;}
.y115{bottom:683.100000px;}
.y4f{bottom:688.860000px;}
.y1e{bottom:689.580000px;}
.y7c{bottom:694.260000px;}
.y156{bottom:697.140000px;}
.y14c{bottom:705.090000px;}
.yb4{bottom:706.890000px;}
.y4e{bottom:710.850000px;}
.y107{bottom:712.650000px;}
.y1d{bottom:714.090000px;}
.y191{bottom:715.170000px;}
.y7b{bottom:715.890000px;}
.y14b{bottom:727.050000px;}
.y4d{bottom:732.450000px;}
.y1c{bottom:733.170000px;}
.y190{bottom:735.690000px;}
.y7a{bottom:737.850000px;}
.ya3{bottom:739.290000px;}
.y106{bottom:744.690000px;}
.y114{bottom:745.050000px;}
.y14a{bottom:748.650000px;}
.y4c{bottom:754.410000px;}
.y1b{bottom:754.770000px;}
.y18f{bottom:755.850000px;}
.y79{bottom:759.450000px;}
.y105{bottom:766.650000px;}
.ya2{bottom:767.730000px;}
.y149{bottom:770.610000px;}
.y18e{bottom:774.210000px;}
.y4b{bottom:776.370000px;}
.y1a{bottom:776.730000px;}
.y78{bottom:781.410000px;}
.y104{bottom:788.610000px;}
.y148{bottom:792.210000px;}
.y18d{bottom:794.370000px;}
.ya1{bottom:796.170000px;}
.y4a{bottom:797.970000px;}
.y19{bottom:798.330000px;}
.y77{bottom:803.370000px;}
.y103{bottom:810.210000px;}
.y18c{bottom:812.730000px;}
.y147{bottom:814.170000px;}
.y49{bottom:819.930000px;}
.y18{bottom:820.290000px;}
.ya0{bottom:824.610000px;}
.y76{bottom:824.970000px;}
.y102{bottom:832.215000px;}
.y18b{bottom:833.295000px;}
.y146{bottom:836.175000px;}
.y48{bottom:841.575000px;}
.y17{bottom:842.295000px;}
.y1bb{bottom:844.815000px;}
.y75{bottom:846.975000px;}
.y9f{bottom:853.095000px;}
.y101{bottom:854.175000px;}
.y145{bottom:857.775000px;}
.y1ba{bottom:862.455000px;}
.y47{bottom:863.535000px;}
.y16{bottom:863.895000px;}
.y74{bottom:868.575000px;}
.y18a{bottom:874.335000px;}
.y100{bottom:875.775000px;}
.y144{bottom:879.735000px;}
.y9e{bottom:881.535000px;}
.y1b9{bottom:882.975000px;}
.y46{bottom:885.495000px;}
.y15{bottom:885.855000px;}
.y178{bottom:888.735000px;}
.y73{bottom:890.535000px;}
.y189{bottom:892.695000px;}
.yff{bottom:897.735000px;}
.y1b8{bottom:900.975000px;}
.y172{bottom:901.695000px;}
.y45{bottom:907.095000px;}
.y14{bottom:907.455000px;}
.y9d{bottom:909.975000px;}
.ye9{bottom:910.695000px;}
.y72{bottom:912.495000px;}
.yfe{bottom:919.695000px;}
.y1b7{bottom:921.495000px;}
.y171{bottom:923.295000px;}
.y44{bottom:929.055000px;}
.y13{bottom:929.415000px;}
.ye8{bottom:932.295000px;}
.y71{bottom:934.095000px;}
.y9c{bottom:938.415000px;}
.y1b6{bottom:939.495000px;}
.yfd{bottom:941.295000px;}
.y170{bottom:945.255000px;}
.y43{bottom:950.655000px;}
.ye7{bottom:954.285000px;}
.y70{bottom:956.085000px;}
.y12{bottom:956.445000px;}
.y1b5{bottom:960.045000px;}
.yfc{bottom:963.285000px;}
.y9b{bottom:966.885000px;}
.y42{bottom:972.645000px;}
.ye6{bottom:975.885000px;}
.y6f{bottom:977.685000px;}
.y1b4{bottom:978.045000px;}
.yfb{bottom:984.885000px;}
.y41{bottom:994.605000px;}
.y9a{bottom:995.325000px;}
.y11{bottom:996.045000px;}
.ye5{bottom:997.845000px;}
.y1b3{bottom:998.925000px;}
.y6e{bottom:999.645000px;}
.yfa{bottom:1006.845000px;}
.y40{bottom:1016.205000px;}
.y1b2{bottom:1019.445000px;}
.ye4{bottom:1019.805000px;}
.y6d{bottom:1021.605000px;}
.y99{bottom:1023.765000px;}
.yf9{bottom:1028.805000px;}
.y10{bottom:1036.005000px;}
.y3f{bottom:1038.165000px;}
.y1b1{bottom:1039.965000px;}
.ye3{bottom:1041.405000px;}
.yc9{bottom:1050.405000px;}
.y98{bottom:1052.205000px;}
.y6c{bottom:1052.925000px;}
.y3e{bottom:1060.125000px;}
.y1b0{bottom:1060.485000px;}
.ye2{bottom:1063.365000px;}
.yc8{bottom:1072.365000px;}
.yf{bottom:1075.605000px;}
.y1af{bottom:1078.530000px;}
.y97{bottom:1080.690000px;}
.y3d{bottom:1081.770000px;}
.ye1{bottom:1085.010000px;}
.y6b{bottom:1094.010000px;}
.y1ae{bottom:1099.410000px;}
.y3c{bottom:1104.450000px;}
.ye0{bottom:1106.970000px;}
.y96{bottom:1109.490000px;}
.ye{bottom:1115.250000px;}
.y6a{bottom:1115.970000px;}
.y1ad{bottom:1119.570000px;}
.y3b{bottom:1136.490000px;}
.y69{bottom:1137.930000px;}
.y1{bottom:1147.650000px;}
.y38{bottom:1157.730000px;}
.ya{bottom:1168.890000px;}
.y37{bottom:1173.570000px;}
.y36{bottom:1193.730000px;}
.h3{height:8.639850px;}
.hd{height:8.640000px;}
.he{height:16.596000px;}
.h5{height:43.956000px;}
.h6{height:47.264766px;}
.h11{height:48.013594px;}
.hc{height:48.601406px;}
.h10{height:50.035781px;}
.h4{height:54.426094px;}
.hb{height:58.121719px;}
.ha{height:58.833281px;}
.h7{height:60.516000px;}
.hf{height:63.949219px;}
.h2{height:65.884219px;}
.h8{height:67.824844px;}
.h9{height:106.155703px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:118.836000px;}
.w7{width:334.230000px;}
.w6{width:346.470000px;}
.w3{width:618.735000px;}
.w5{width:680.325000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x2{left:77.796000px;}
.x6{left:89.685000px;}
.x1{left:106.235987px;}
.x7{left:107.679000px;}
.xb{left:109.475987px;}
.x15{left:119.915987px;}
.x19{left:133.271987px;}
.x1f{left:138.671987px;}
.x5{left:144.429000px;}
.x16{left:154.154987px;}
.x1a{left:160.274987px;}
.x20{left:169.994987px;}
.x9{left:171.429000px;}
.xa{left:177.194987px;}
.x1b{left:180.794987px;}
.xc{left:191.234987px;}
.x10{left:242.744987px;}
.x8{left:287.034000px;}
.x18{left:305.070000px;}
.x11{left:323.069987px;}
.x13{left:332.069987px;}
.x12{left:357.269987px;}
.xe{left:367.349987px;}
.xf{left:373.109987px;}
.x14{left:399.779987px;}
.xd{left:446.579987px;}
.x17{left:452.700000px;}
.x4{left:696.525000px;}
.x1c{left:700.484987px;}
.x1e{left:706.964987px;}
.x1d{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.340267pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.235520pt;}
.lsb{letter-spacing:0.406933pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.ls10{letter-spacing:4.480000pt;}
.lse{letter-spacing:6.671360pt;}
.lsa{letter-spacing:6.799360pt;}
.lsd{letter-spacing:14.720000pt;}
.ls7{letter-spacing:16.000000pt;}
.ls6{letter-spacing:29.578667pt;}
.lsf{letter-spacing:57.978027pt;}
.ls12{letter-spacing:74.511360pt;}
.ls11{letter-spacing:103.951360pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.126933pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.160000pt;}
.ws1{word-spacing:-10.652373pt;}
.ws0{word-spacing:-9.546240pt;}
.ws9{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-4.416000pt;}
._b{margin-left:-3.328000pt;}
._7{margin-left:-1.825280pt;}
._3{margin-left:-0.908800pt;}
._2{width:1.267200pt;}
._4{width:2.829227pt;}
._5{width:4.157867pt;}
._c{width:5.288107pt;}
._10{width:7.040000pt;}
._f{width:8.035840pt;}
._d{width:8.949760pt;}
._e{width:9.950720pt;}
._6{width:10.992853pt;}
._12{width:12.039680pt;}
._8{width:13.777920pt;}
._9{width:16.005547pt;}
._a{width:17.192960pt;}
._13{width:18.547200pt;}
._11{width:19.811840pt;}
._17{width:20.902400pt;}
._15{width:22.082987pt;}
._14{width:23.316480pt;}
._19{width:24.331947pt;}
._1a{width:25.228800pt;}
._1b{width:26.731520pt;}
._1c{width:27.878400pt;}
._1e{width:33.267200pt;}
._1d{width:34.680320pt;}
._1f{width:37.829120pt;}
._21{width:44.057600pt;}
._22{width:45.854720pt;}
._1{width:351.407360pt;}
._18{width:753.685333pt;}
._20{width:971.048960pt;}
._0{width:979.098453pt;}
.fs2{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:106.240000pt;}
.y3{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.880000pt;}
.y3a{bottom:3.200000pt;}
.yd{bottom:3.840000pt;}
.y8{bottom:15.392000pt;}
.y6{bottom:15.712000pt;}
.yc{bottom:21.760000pt;}
.y9{bottom:27.200000pt;}
.y5{bottom:28.832000pt;}
.yb{bottom:39.706667pt;}
.y4{bottom:50.880000pt;}
.y39{bottom:75.232000pt;}
.y2{bottom:99.552000pt;}
.y16f{bottom:102.432000pt;}
.y113{bottom:109.472000pt;}
.ydf{bottom:110.752000pt;}
.y177{bottom:111.392000pt;}
.y95{bottom:114.272000pt;}
.y188{bottom:115.872000pt;}
.y1ac{bottom:116.832000pt;}
.y12d{bottom:117.792000pt;}
.yf8{bottom:119.072000pt;}
.y16e{bottom:121.632000pt;}
.y68{bottom:127.392000pt;}
.y112{bottom:128.992000pt;}
.y35{bottom:129.312000pt;}
.yde{bottom:130.272000pt;}
.yc7{bottom:130.592000pt;}
.y1ab{bottom:132.832000pt;}
.y187{bottom:135.386667pt;}
.y12c{bottom:136.986667pt;}
.yf7{bottom:138.586667pt;}
.y94{bottom:139.546667pt;}
.y16d{bottom:141.146667pt;}
.y111{bottom:144.986667pt;}
.y67{bottom:146.906667pt;}
.y143{bottom:148.186667pt;}
.ydd{bottom:149.466667pt;}
.yc6{bottom:150.106667pt;}
.y1aa{bottom:151.066667pt;}
.y34{bottom:154.586667pt;}
.y12b{bottom:156.506667pt;}
.yf6{bottom:158.106667pt;}
.y16c{bottom:160.346667pt;}
.y93{bottom:164.826667pt;}
.y66{bottom:166.106667pt;}
.y1a9{bottom:167.066667pt;}
.y142{bottom:167.706667pt;}
.ydc{bottom:168.986667pt;}
.yc5{bottom:169.306667pt;}
.y176{bottom:169.626667pt;}
.y186{bottom:174.106667pt;}
.y12a{bottom:176.066667pt;}
.yf5{bottom:177.346667pt;}
.y33{bottom:179.906667pt;}
.yb3{bottom:182.146667pt;}
.y1a8{bottom:185.346667pt;}
.y65{bottom:185.666667pt;}
.y141{bottom:187.266667pt;}
.ydb{bottom:188.546667pt;}
.yc4{bottom:188.866667pt;}
.y92{bottom:190.146667pt;}
.y185{bottom:193.666667pt;}
.yf4{bottom:196.866667pt;}
.y16b{bottom:199.426667pt;}
.y32{bottom:202.306667pt;}
.y129{bottom:203.266667pt;}
.y1a7{bottom:203.586667pt;}
.y64{bottom:204.866667pt;}
.y140{bottom:206.466667pt;}
.yb2{bottom:207.746667pt;}
.yc3{bottom:208.066667pt;}
.y91{bottom:209.666667pt;}
.y184{bottom:212.866667pt;}
.yf3{bottom:216.066667pt;}
.y175{bottom:216.386667pt;}
.y16a{bottom:218.626667pt;}
.y1a6{bottom:219.586667pt;}
.y63{bottom:224.386667pt;}
.y13f{bottom:225.986667pt;}
.yda{bottom:227.266667pt;}
.yc2{bottom:227.586667pt;}
.y90{bottom:228.866667pt;}
.y31{bottom:230.146667pt;}
.y128{bottom:230.786667pt;}
.y183{bottom:232.386667pt;}
.yb1{bottom:233.026667pt;}
.yf2{bottom:235.586667pt;}
.y1a5{bottom:237.826667pt;}
.y169{bottom:238.146667pt;}
.y62{bottom:243.906667pt;}
.yd9{bottom:246.786667pt;}
.yc1{bottom:247.106667pt;}
.y8f{bottom:248.386667pt;}
.y30{bottom:249.666667pt;}
.y127{bottom:249.986667pt;}
.y182{bottom:251.906667pt;}
.y13e{bottom:253.186667pt;}
.y1a4{bottom:253.826667pt;}
.yf1{bottom:255.106667pt;}
.yb0{bottom:258.306667pt;}
.y61{bottom:263.106667pt;}
.y168{bottom:265.346667pt;}
.yd8{bottom:265.986667pt;}
.y8e{bottom:267.906667pt;}
.y2f{bottom:268.866667pt;}
.y181{bottom:271.106667pt;}
.y1a3{bottom:272.066667pt;}
.y155{bottom:273.026667pt;}
.yc0{bottom:274.306667pt;}
.y126{bottom:277.506667pt;}
.y13d{bottom:280.706667pt;}
.y60{bottom:282.626667pt;}
.yaf{bottom:283.586667pt;}
.yd7{bottom:285.506667pt;}
.y8d{bottom:287.106667pt;}
.y1a2{bottom:288.093333pt;}
.y2e{bottom:288.413333pt;}
.y180{bottom:290.653333pt;}
.y154{bottom:292.253333pt;}
.y167{bottom:292.893333pt;}
.yf0{bottom:293.853333pt;}
.y125{bottom:297.053333pt;}
.y13c{bottom:300.253333pt;}
.y5f{bottom:301.853333pt;}
.yd6{bottom:304.733333pt;}
.y8c{bottom:306.653333pt;}
.y2d{bottom:307.613333pt;}
.yae{bottom:308.893333pt;}
.y17f{bottom:309.853333pt;}
.y153{bottom:311.773333pt;}
.y166{bottom:312.413333pt;}
.yef{bottom:313.053333pt;}
.y124{bottom:316.253333pt;}
.y13b{bottom:319.453333pt;}
.ybf{bottom:321.053333pt;}
.y5e{bottom:321.373333pt;}
.yd5{bottom:324.253333pt;}
.y1a1{bottom:324.893333pt;}
.y8b{bottom:325.853333pt;}
.y2c{bottom:327.133333pt;}
.y17e{bottom:329.373333pt;}
.y152{bottom:330.973333pt;}
.y165{bottom:331.613333pt;}
.yee{bottom:332.573333pt;}
.yad{bottom:334.173333pt;}
.y123{bottom:335.773333pt;}
.y13a{bottom:338.973333pt;}
.ybe{bottom:340.573333pt;}
.y5d{bottom:340.893333pt;}
.y1a0{bottom:343.133333pt;}
.yd4{bottom:343.773333pt;}
.y8a{bottom:345.373333pt;}
.y2b{bottom:346.653333pt;}
.y17d{bottom:348.893333pt;}
.y151{bottom:350.493333pt;}
.y164{bottom:351.133333pt;}
.yed{bottom:352.093333pt;}
.y122{bottom:354.973333pt;}
.y139{bottom:358.173333pt;}
.y19f{bottom:359.133333pt;}
.yac{bottom:359.453333pt;}
.y5c{bottom:360.093333pt;}
.yd3{bottom:362.973333pt;}
.y89{bottom:364.893333pt;}
.y2a{bottom:365.853333pt;}
.y17c{bottom:368.093333pt;}
.y150{bottom:370.013333pt;}
.y163{bottom:370.653333pt;}
.yec{bottom:371.293333pt;}
.y121{bottom:374.493333pt;}
.y19e{bottom:377.373333pt;}
.y138{bottom:377.693333pt;}
.ybd{bottom:379.293333pt;}
.y5b{bottom:379.613333pt;}
.yd2{bottom:382.493333pt;}
.y88{bottom:384.093333pt;}
.yab{bottom:384.733333pt;}
.y29{bottom:385.373333pt;}
.y17b{bottom:387.613333pt;}
.y14f{bottom:389.213333pt;}
.y162{bottom:389.853333pt;}
.yeb{bottom:390.813333pt;}
.y19d{bottom:393.373333pt;}
.y120{bottom:394.013333pt;}
.y137{bottom:397.213333pt;}
.y5a{bottom:398.813333pt;}
.yd1{bottom:401.733333pt;}
.y87{bottom:403.653333pt;}
.y28{bottom:404.613333pt;}
.y17a{bottom:406.853333pt;}
.y161{bottom:409.413333pt;}
.yaa{bottom:410.053333pt;}
.y19c{bottom:411.653333pt;}
.y11f{bottom:413.253333pt;}
.y136{bottom:416.453333pt;}
.y14e{bottom:416.773333pt;}
.ybc{bottom:418.053333pt;}
.y59{bottom:418.373333pt;}
.yd0{bottom:421.253333pt;}
.y86{bottom:422.853333pt;}
.y27{bottom:424.133333pt;}
.yea{bottom:426.373333pt;}
.y19b{bottom:427.653333pt;}
.y160{bottom:428.613333pt;}
.y11e{bottom:432.773333pt;}
.ya9{bottom:435.333333pt;}
.y135{bottom:435.973333pt;}
.ybb{bottom:437.573333pt;}
.y58{bottom:437.893333pt;}
.ycf{bottom:440.773333pt;}
.y85{bottom:442.373333pt;}
.y110{bottom:443.013333pt;}
.y26{bottom:443.653333pt;}
.y14d{bottom:444.293333pt;}
.y19a{bottom:445.893333pt;}
.y15f{bottom:448.133333pt;}
.y11d{bottom:452.293333pt;}
.y179{bottom:454.213333pt;}
.y134{bottom:455.173333pt;}
.y57{bottom:457.093333pt;}
.yce{bottom:459.973333pt;}
.y84{bottom:461.893333pt;}
.y10f{bottom:462.213333pt;}
.y25{bottom:462.853333pt;}
.y15e{bottom:467.653333pt;}
.ya8{bottom:468.613333pt;}
.y11c{bottom:471.493333pt;}
.y133{bottom:474.693333pt;}
.yba{bottom:476.293333pt;}
.y56{bottom:476.613333pt;}
.ycd{bottom:479.493333pt;}
.y199{bottom:480.133333pt;}
.y83{bottom:481.093333pt;}
.y10e{bottom:481.733333pt;}
.y24{bottom:482.373333pt;}
.y15d{bottom:486.853333pt;}
.y11b{bottom:491.013333pt;}
.y132{bottom:494.213333pt;}
.yb9{bottom:495.813333pt;}
.y55{bottom:496.133333pt;}
.y198{bottom:498.373333pt;}
.ycc{bottom:498.693333pt;}
.y82{bottom:500.613333pt;}
.y10d{bottom:501.253333pt;}
.y23{bottom:501.573333pt;}
.ya7{bottom:501.893333pt;}
.y15c{bottom:506.373333pt;}
.y11a{bottom:510.213333pt;}
.y131{bottom:513.440000pt;}
.y197{bottom:514.400000pt;}
.yb8{bottom:515.040000pt;}
.y54{bottom:515.360000pt;}
.ycb{bottom:518.240000pt;}
.y81{bottom:519.840000pt;}
.y10c{bottom:520.480000pt;}
.y22{bottom:521.120000pt;}
.y174{bottom:523.360000pt;}
.y15b{bottom:525.600000pt;}
.y119{bottom:529.760000pt;}
.y196{bottom:532.640000pt;}
.y130{bottom:532.960000pt;}
.yb7{bottom:534.560000pt;}
.y53{bottom:534.880000pt;}
.ya6{bottom:536.160000pt;}
.yca{bottom:537.760000pt;}
.y80{bottom:539.360000pt;}
.y10b{bottom:540.000000pt;}
.y21{bottom:540.640000pt;}
.y15a{bottom:545.120000pt;}
.y195{bottom:548.640000pt;}
.y118{bottom:549.280000pt;}
.y173{bottom:551.200000pt;}
.y12f{bottom:552.480000pt;}
.y52{bottom:554.080000pt;}
.y7f{bottom:558.880000pt;}
.y10a{bottom:559.200000pt;}
.ya5{bottom:564.000000pt;}
.y159{bottom:564.640000pt;}
.y194{bottom:566.880000pt;}
.y117{bottom:568.480000pt;}
.y20{bottom:569.440000pt;}
.y12e{bottom:571.680000pt;}
.yb6{bottom:573.280000pt;}
.y51{bottom:573.600000pt;}
.y7e{bottom:578.080000pt;}
.y109{bottom:578.720000pt;}
.y193{bottom:582.880000pt;}
.y158{bottom:583.840000pt;}
.y116{bottom:588.000000pt;}
.y1f{bottom:591.200000pt;}
.yb5{bottom:592.800000pt;}
.y50{bottom:593.120000pt;}
.y7d{bottom:597.600000pt;}
.y192{bottom:601.120000pt;}
.y157{bottom:603.360000pt;}
.y108{bottom:606.240000pt;}
.ya4{bottom:606.560000pt;}
.y115{bottom:607.200000pt;}
.y4f{bottom:612.320000pt;}
.y1e{bottom:612.960000pt;}
.y7c{bottom:617.120000pt;}
.y156{bottom:619.680000pt;}
.y14c{bottom:626.746667pt;}
.yb4{bottom:628.346667pt;}
.y4e{bottom:631.866667pt;}
.y107{bottom:633.466667pt;}
.y1d{bottom:634.746667pt;}
.y191{bottom:635.706667pt;}
.y7b{bottom:636.346667pt;}
.y14b{bottom:646.266667pt;}
.y4d{bottom:651.066667pt;}
.y1c{bottom:651.706667pt;}
.y190{bottom:653.946667pt;}
.y7a{bottom:655.866667pt;}
.ya3{bottom:657.146667pt;}
.y106{bottom:661.946667pt;}
.y114{bottom:662.266667pt;}
.y14a{bottom:665.466667pt;}
.y4c{bottom:670.586667pt;}
.y1b{bottom:670.906667pt;}
.y18f{bottom:671.866667pt;}
.y79{bottom:675.066667pt;}
.y105{bottom:681.466667pt;}
.ya2{bottom:682.426667pt;}
.y149{bottom:684.986667pt;}
.y18e{bottom:688.186667pt;}
.y4b{bottom:690.106667pt;}
.y1a{bottom:690.426667pt;}
.y78{bottom:694.586667pt;}
.y104{bottom:700.986667pt;}
.y148{bottom:704.186667pt;}
.y18d{bottom:706.106667pt;}
.ya1{bottom:707.706667pt;}
.y4a{bottom:709.306667pt;}
.y19{bottom:709.626667pt;}
.y77{bottom:714.106667pt;}
.y103{bottom:720.186667pt;}
.y18c{bottom:722.426667pt;}
.y147{bottom:723.706667pt;}
.y49{bottom:728.826667pt;}
.y18{bottom:729.146667pt;}
.ya0{bottom:732.986667pt;}
.y76{bottom:733.306667pt;}
.y102{bottom:739.746667pt;}
.y18b{bottom:740.706667pt;}
.y146{bottom:743.266667pt;}
.y48{bottom:748.066667pt;}
.y17{bottom:748.706667pt;}
.y1bb{bottom:750.946667pt;}
.y75{bottom:752.866667pt;}
.y9f{bottom:758.306667pt;}
.y101{bottom:759.266667pt;}
.y145{bottom:762.466667pt;}
.y1ba{bottom:766.626667pt;}
.y47{bottom:767.586667pt;}
.y16{bottom:767.906667pt;}
.y74{bottom:772.066667pt;}
.y18a{bottom:777.186667pt;}
.y100{bottom:778.466667pt;}
.y144{bottom:781.986667pt;}
.y9e{bottom:783.586667pt;}
.y1b9{bottom:784.866667pt;}
.y46{bottom:787.106667pt;}
.y15{bottom:787.426667pt;}
.y178{bottom:789.986667pt;}
.y73{bottom:791.586667pt;}
.y189{bottom:793.506667pt;}
.yff{bottom:797.986667pt;}
.y1b8{bottom:800.866667pt;}
.y172{bottom:801.506667pt;}
.y45{bottom:806.306667pt;}
.y14{bottom:806.626667pt;}
.y9d{bottom:808.866667pt;}
.ye9{bottom:809.506667pt;}
.y72{bottom:811.106667pt;}
.yfe{bottom:817.506667pt;}
.y1b7{bottom:819.106667pt;}
.y171{bottom:820.706667pt;}
.y44{bottom:825.826667pt;}
.y13{bottom:826.146667pt;}
.ye8{bottom:828.706667pt;}
.y71{bottom:830.306667pt;}
.y9c{bottom:834.146667pt;}
.y1b6{bottom:835.106667pt;}
.yfd{bottom:836.706667pt;}
.y170{bottom:840.226667pt;}
.y43{bottom:845.026667pt;}
.ye7{bottom:848.253333pt;}
.y70{bottom:849.853333pt;}
.y12{bottom:850.173333pt;}
.y1b5{bottom:853.373333pt;}
.yfc{bottom:856.253333pt;}
.y9b{bottom:859.453333pt;}
.y42{bottom:864.573333pt;}
.ye6{bottom:867.453333pt;}
.y6f{bottom:869.053333pt;}
.y1b4{bottom:869.373333pt;}
.yfb{bottom:875.453333pt;}
.y41{bottom:884.093333pt;}
.y9a{bottom:884.733333pt;}
.y11{bottom:885.373333pt;}
.ye5{bottom:886.973333pt;}
.y1b3{bottom:887.933333pt;}
.y6e{bottom:888.573333pt;}
.yfa{bottom:894.973333pt;}
.y40{bottom:903.293333pt;}
.y1b2{bottom:906.173333pt;}
.ye4{bottom:906.493333pt;}
.y6d{bottom:908.093333pt;}
.y99{bottom:910.013333pt;}
.yf9{bottom:914.493333pt;}
.y10{bottom:920.893333pt;}
.y3f{bottom:922.813333pt;}
.y1b1{bottom:924.413333pt;}
.ye3{bottom:925.693333pt;}
.yc9{bottom:933.693333pt;}
.y98{bottom:935.293333pt;}
.y6c{bottom:935.933333pt;}
.y3e{bottom:942.333333pt;}
.y1b0{bottom:942.653333pt;}
.ye2{bottom:945.213333pt;}
.yc8{bottom:953.213333pt;}
.yf{bottom:956.093333pt;}
.y1af{bottom:958.693333pt;}
.y97{bottom:960.613333pt;}
.y3d{bottom:961.573333pt;}
.ye1{bottom:964.453333pt;}
.y6b{bottom:972.453333pt;}
.y1ae{bottom:977.253333pt;}
.y3c{bottom:981.733333pt;}
.ye0{bottom:983.973333pt;}
.y96{bottom:986.213333pt;}
.ye{bottom:991.333333pt;}
.y6a{bottom:991.973333pt;}
.y1ad{bottom:995.173333pt;}
.y3b{bottom:1010.213333pt;}
.y69{bottom:1011.493333pt;}
.y1{bottom:1020.133333pt;}
.y38{bottom:1029.093333pt;}
.ya{bottom:1039.013333pt;}
.y37{bottom:1043.173333pt;}
.y36{bottom:1061.093333pt;}
.h3{height:7.679867pt;}
.hd{height:7.680000pt;}
.he{height:14.752000pt;}
.h5{height:39.072000pt;}
.h6{height:42.013125pt;}
.h11{height:42.678750pt;}
.hc{height:43.201250pt;}
.h10{height:44.476250pt;}
.h4{height:48.378750pt;}
.hb{height:51.663750pt;}
.ha{height:52.296250pt;}
.h7{height:53.792000pt;}
.hf{height:56.843750pt;}
.h2{height:58.563750pt;}
.h8{height:60.288750pt;}
.h9{height:94.360625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:105.632000pt;}
.w7{width:297.093333pt;}
.w6{width:307.973333pt;}
.w3{width:549.986667pt;}
.w5{width:604.733333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x2{left:69.152000pt;}
.x6{left:79.720000pt;}
.x1{left:94.431988pt;}
.x7{left:95.714667pt;}
.xb{left:97.311988pt;}
.x15{left:106.591988pt;}
.x19{left:118.463988pt;}
.x1f{left:123.263988pt;}
.x5{left:128.381333pt;}
.x16{left:137.026655pt;}
.x1a{left:142.466655pt;}
.x20{left:151.106655pt;}
.x9{left:152.381333pt;}
.xa{left:157.506655pt;}
.x1b{left:160.706655pt;}
.xc{left:169.986655pt;}
.x10{left:215.773322pt;}
.x8{left:255.141333pt;}
.x18{left:271.173333pt;}
.x11{left:287.173322pt;}
.x13{left:295.173322pt;}
.x12{left:317.573322pt;}
.xe{left:326.533322pt;}
.xf{left:331.653322pt;}
.x14{left:355.359988pt;}
.xd{left:396.959988pt;}
.x17{left:402.400000pt;}
.x4{left:619.133333pt;}
.x1c{left:622.653322pt;}
.x1e{left:628.413322pt;}
.x1d{left:699.493322pt;}
}




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