
    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_a1988cc24e8712e5d8467320.woff2')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_bdadde2fee2efe0b07bfe2d2.woff2')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_f5e004ceb6d45d98a03e84f6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2afae2465879a1bd3a913bd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8c3ac5c0fcac216a1c077c65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_6b05f4b84b7ee2843043132f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_1bf5e14ab4eb68a95d9c1296.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.768555;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;}
.ls7{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.282000px;}
.lsa{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.132000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.084000px;}
.ls5{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.288000px;}
.lsc{letter-spacing:1.122000px;}
.ls1{letter-spacing:93.084000px;}
.ls2{letter-spacing:517.884000px;}
.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;}
}
.ws0{word-spacing:-27.120000px;}
.ws3{word-spacing:-18.984000px;}
.ws4{word-spacing:-14.916000px;}
.ws5{word-spacing:-14.736000px;}
.ws6{word-spacing:-12.204000px;}
.ws7{word-spacing:-11.922000px;}
.ws2{word-spacing:-11.826000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-2.322000px;}
._2{margin-left:-1.080000px;}
._5{width:1.152000px;}
._3{width:2.190000px;}
._8{width:3.372000px;}
._a{width:360.708000px;}
._7{width:389.190000px;}
._1{width:441.300000px;}
._0{width:640.920000px;}
._9{width:848.058000px;}
._4{width:849.414000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.735000px;}
.y33{bottom:3.750000px;}
.ydc{bottom:3.780000px;}
.yb8{bottom:4.860000px;}
.y4d{bottom:4.875000px;}
.y42{bottom:4.890000px;}
.y102{bottom:4.905000px;}
.yca{bottom:5.235000px;}
.y38{bottom:5.250000px;}
.yc8{bottom:5.280000px;}
.yad{bottom:6.360000px;}
.y5d{bottom:6.375000px;}
.y73{bottom:6.390000px;}
.yd0{bottom:6.405000px;}
.y80{bottom:6.420000px;}
.y4{bottom:6.750000px;}
.y126{bottom:6.780000px;}
.y150{bottom:7.110000px;}
.y12a{bottom:7.125000px;}
.y14f{bottom:9.735000px;}
.y129{bottom:9.750000px;}
.y16d{bottom:9.765000px;}
.y133{bottom:9.780000px;}
.y183{bottom:9.795000px;}
.y166{bottom:10.110000px;}
.y46{bottom:10.125000px;}
.y55{bottom:10.500000px;}
.y137{bottom:17.250000px;}
.y13d{bottom:17.655000px;}
.yfa{bottom:18.375000px;}
.y5{bottom:18.750000px;}
.y71{bottom:19.860000px;}
.y12e{bottom:19.875000px;}
.y57{bottom:19.920000px;}
.y63{bottom:20.235000px;}
.y35{bottom:20.250000px;}
.yd5{bottom:20.265000px;}
.y4f{bottom:20.280000px;}
.ya8{bottom:20.295000px;}
.y4c{bottom:21.375000px;}
.y37{bottom:21.750000px;}
.yf1{bottom:22.485000px;}
.y8f{bottom:22.500000px;}
.yb7{bottom:22.530000px;}
.y81{bottom:22.545000px;}
.y114{bottom:22.860000px;}
.y10b{bottom:22.867500px;}
.y41{bottom:22.875000px;}
.y5c{bottom:22.905000px;}
.y7f{bottom:22.920000px;}
.y123{bottom:23.250000px;}
.y125{bottom:23.280000px;}
.y106{bottom:23.985000px;}
.yb4{bottom:24.000000px;}
.yc7{bottom:24.405000px;}
.y45{bottom:28.125000px;}
.y120{bottom:33.750000px;}
.y3{bottom:34.500000px;}
.y70{bottom:36.360000px;}
.y11f{bottom:36.375000px;}
.y62{bottom:36.750000px;}
.ydb{bottom:36.780000px;}
.y8d{bottom:36.795000px;}
.y20{bottom:38.250000px;}
.y7e{bottom:39.045000px;}
.y9a{bottom:39.375000px;}
.y105{bottom:40.485000px;}
.y40{bottom:40.500000px;}
.yb6{bottom:40.530000px;}
.yeb{bottom:40.545000px;}
.y54{bottom:40.875000px;}
.yc6{bottom:40.905000px;}
.y44{bottom:44.625000px;}
.yfe{bottom:50.625000px;}
.y6f{bottom:52.860000px;}
.ya4{bottom:52.875000px;}
.yab{bottom:52.905000px;}
.y61{bottom:53.250000px;}
.yda{bottom:53.280000px;}
.y8c{bottom:53.295000px;}
.y7d{bottom:55.545000px;}
.y99{bottom:55.875000px;}
.yea{bottom:58.170000px;}
.y3f{bottom:58.500000px;}
.y10f{bottom:58.530000px;}
.y43{bottom:61.125000px;}
.y10d{bottom:66.037500px;}
.yfd{bottom:68.250000px;}
.ya3{bottom:69.375000px;}
.y6e{bottom:69.405000px;}
.y60{bottom:69.750000px;}
.yd9{bottom:69.780000px;}
.y8b{bottom:69.795000px;}
.y7c{bottom:72.045000px;}
.y98{bottom:72.375000px;}
.y94{bottom:74.662500px;}
.y3e{bottom:76.170000px;}
.y53{bottom:76.500000px;}
.y52{bottom:77.625000px;}
.y3c{bottom:77.670000px;}
.y1f{bottom:78.412500px;}
.y170{bottom:82.912500px;}
.ya2{bottom:85.875000px;}
.y6d{bottom:85.905000px;}
.y147{bottom:85.912500px;}
.y5f{bottom:86.250000px;}
.yd8{bottom:86.280000px;}
.y8a{bottom:86.295000px;}
.y97{bottom:88.530000px;}
.y7b{bottom:88.545000px;}
.y3d{bottom:93.795000px;}
.y51{bottom:94.125000px;}
.y3b{bottom:94.170000px;}
.ya1{bottom:102.375000px;}
.y6c{bottom:102.405000px;}
.y10c{bottom:102.412500px;}
.y89{bottom:102.795000px;}
.y93{bottom:109.537500px;}
.y1e{bottom:112.162500px;}
.y16f{bottom:116.662500px;}
.y6b{bottom:118.905000px;}
.y88{bottom:119.280000px;}
.y146{bottom:121.162500px;}
.y10a{bottom:138.787500px;}
.y16e{bottom:139.912500px;}
.y92{bottom:144.787500px;}
.y1d{bottom:145.912500px;}
.y145{bottom:157.170000px;}
.y16c{bottom:163.155000px;}
.y109{bottom:176.700000px;}
.y1c{bottom:179.700000px;}
.y91{bottom:180.075000px;}
.y16b{bottom:186.450000px;}
.y144{bottom:192.825000px;}
.y90{bottom:196.575000px;}
.y16a{bottom:209.700000px;}
.y108{bottom:213.075000px;}
.y1b{bottom:213.450000px;}
.y143{bottom:228.450000px;}
.yf3{bottom:229.575000px;}
.y8e{bottom:230.325000px;}
.y65{bottom:230.700000px;}
.y169{bottom:243.450000px;}
.yf2{bottom:246.075000px;}
.y142{bottom:246.450000px;}
.y1a{bottom:247.200000px;}
.y87{bottom:266.325000px;}
.yb0{bottom:267.450000px;}
.y168{bottom:277.200000px;}
.y19{bottom:280.950000px;}
.y107{bottom:283.950000px;}
.y167{bottom:294.450000px;}
.y141{bottom:296.700000px;}
.yaf{bottom:301.200000px;}
.ycc{bottom:306.495000px;}
.y165{bottom:311.370000px;}
.y18{bottom:314.355000px;}
.y5e{bottom:317.370000px;}
.yae{bottom:317.745000px;}
.ycb{bottom:322.995000px;}
.yf0{bottom:329.370000px;}
.y140{bottom:330.495000px;}
.y164{bottom:334.620000px;}
.y104{bottom:337.995000px;}
.y17{bottom:348.105000px;}
.yac{bottom:351.495000px;}
.y163{bottom:353.370000px;}
.y13f{bottom:364.245000px;}
.yc9{bottom:376.995000px;}
.y16{bottom:381.855000px;}
.yef{bottom:383.370000px;}
.y13e{bottom:387.495000px;}
.yaa{bottom:387.870000px;}
.y162{bottom:389.370000px;}
.y103{bottom:391.995000px;}
.y86{bottom:399.120000px;}
.y161{bottom:407.370000px;}
.y15{bottom:415.620000px;}
.y5b{bottom:417.120000px;}
.y13c{bottom:420.870000px;}
.y30{bottom:427.245000px;}
.y101{bottom:428.370000px;}
.yc5{bottom:430.995000px;}
.y85{bottom:432.900000px;}
.y160{bottom:440.775000px;}
.y14{bottom:449.400000px;}
.yee{bottom:450.900000px;}
.y5a{bottom:453.525000px;}
.y13b{bottom:454.650000px;}
.y121{bottom:459.900000px;}
.y2f{bottom:462.525000px;}
.y100{bottom:466.275000px;}
.y84{bottom:468.150000px;}
.y15f{bottom:474.525000px;}
.y11e{bottom:476.400000px;}
.y13{bottom:483.150000px;}
.yc4{bottom:485.400000px;}
.yed{bottom:486.150000px;}
.y13a{bottom:488.400000px;}
.y59{bottom:488.775000px;}
.y2e{bottom:496.275000px;}
.y15e{bottom:497.775000px;}
.yff{bottom:501.900000px;}
.y83{bottom:503.400000px;}
.y12{bottom:516.900000px;}
.y82{bottom:519.900000px;}
.ya9{bottom:520.275000px;}
.yec{bottom:521.775000px;}
.y139{bottom:522.150000px;}
.y58{bottom:524.025000px;}
.y11d{bottom:526.275000px;}
.y2d{bottom:530.025000px;}
.y15d{bottom:531.525000px;}
.yc3{bottom:539.400000px;}
.ye9{bottom:539.775000px;}
.y56{bottom:540.525000px;}
.y184{bottom:541.650000px;}
.y138{bottom:545.400000px;}
.ye0{bottom:549.150000px;}
.y11{bottom:550.650000px;}
.y7a{bottom:553.650000px;}
.ya7{bottom:554.025000px;}
.y15c{bottom:554.775000px;}
.y182{bottom:558.150000px;}
.y11c{bottom:560.070000px;}
.y2c{bottom:563.820000px;}
.y50{bottom:573.945000px;}
.yc2{bottom:577.320000px;}
.y136{bottom:579.195000px;}
.y181{bottom:581.445000px;}
.ydf{bottom:584.820000px;}
.y15b{bottom:588.570000px;}
.ya6{bottom:589.320000px;}
.y10{bottom:589.695000px;}
.y11b{bottom:593.820000px;}
.y2b{bottom:597.570000px;}
.yde{bottom:602.820000px;}
.y180{bottom:604.695000px;}
.yc1{bottom:612.570000px;}
.y135{bottom:612.945000px;}
.yfc{bottom:619.695000px;}
.y15a{bottom:622.320000px;}
.ya5{bottom:624.570000px;}
.y17f{bottom:627.945000px;}
.yc0{bottom:629.070000px;}
.ye8{bottom:629.445000px;}
.y11a{bottom:630.195000px;}
.y2a{bottom:631.320000px;}
.ydd{bottom:636.570000px;}
.yf{bottom:641.070000px;}
.y159{bottom:645.570000px;}
.y134{bottom:646.695000px;}
.y17e{bottom:651.195000px;}
.y29{bottom:653.070000px;}
.y79{bottom:655.695000px;}
.y119{bottom:665.445000px;}
.y28{bottom:674.820000px;}
.y158{bottom:679.320000px;}
.y132{bottom:680.445000px;}
.y4e{bottom:681.570000px;}
.ybf{bottom:683.070000px;}
.ye7{bottom:683.445000px;}
.yd7{bottom:686.820000px;}
.y78{bottom:690.975000px;}
.ye{bottom:692.475000px;}
.y118{bottom:701.100000px;}
.y17d{bottom:701.475000px;}
.y157{bottom:702.600000px;}
.y131{bottom:703.725000px;}
.y27{bottom:708.225000px;}
.ya0{bottom:711.225000px;}
.y4b{bottom:715.350000px;}
.ye6{bottom:717.225000px;}
.yfb{bottom:719.100000px;}
.y17c{bottom:724.725000px;}
.y77{bottom:725.850000px;}
.y26{bottom:729.975000px;}
.y156{bottom:736.350000px;}
.ybe{bottom:737.100000px;}
.y130{bottom:737.475000px;}
.yd{bottom:744.225000px;}
.y17b{bottom:747.975000px;}
.y4a{bottom:750.225000px;}
.ye5{bottom:752.100000px;}
.yf9{bottom:754.350000px;}
.y12f{bottom:760.725000px;}
.y76{bottom:761.100000px;}
.y25{bottom:765.225000px;}
.y155{bottom:770.100000px;}
.y17a{bottom:771.225000px;}
.y117{bottom:773.100000px;}
.ybd{bottom:773.475000px;}
.y49{bottom:785.475000px;}
.yd6{bottom:786.600000px;}
.ye4{bottom:787.350000px;}
.yf8{bottom:789.225000px;}
.y154{bottom:793.350000px;}
.y12d{bottom:794.475000px;}
.yc{bottom:795.600000px;}
.y75{bottom:796.350000px;}
.y24{bottom:804.975000px;}
.ybc{bottom:809.850000px;}
.y74{bottom:812.850000px;}
.y179{bottom:817.755000px;}
.y48{bottom:820.755000px;}
.yd4{bottom:822.630000px;}
.ye3{bottom:823.005000px;}
.yf7{bottom:824.505000px;}
.y153{bottom:827.130000px;}
.y12c{bottom:827.880000px;}
.y47{bottom:837.255000px;}
.y23{bottom:838.770000px;}
.ye2{bottom:841.005000px;}
.y9f{bottom:843.630000px;}
.y116{bottom:845.130000px;}
.y72{bottom:846.630000px;}
.yb{bottom:847.380000px;}
.ybb{bottom:847.755000px;}
.y12b{bottom:851.130000px;}
.yd3{bottom:857.880000px;}
.yf6{bottom:860.130000px;}
.y152{bottom:860.505000px;}
.y178{bottom:864.255000px;}
.y3a{bottom:871.005000px;}
.y9e{bottom:877.380000px;}
.yf5{bottom:878.130000px;}
.y115{bottom:881.505000px;}
.yba{bottom:883.005000px;}
.y6a{bottom:883.020000px;}
.y128{bottom:884.880000px;}
.y177{bottom:887.505000px;}
.yd2{bottom:893.505000px;}
.y151{bottom:894.255000px;}
.ya{bottom:898.755000px;}
.yb9{bottom:899.505000px;}
.y127{bottom:908.130000px;}
.y176{bottom:910.755000px;}
.y9d{bottom:912.630000px;}
.y113{bottom:917.895000px;}
.ye1{bottom:924.270000px;}
.y14e{bottom:928.020000px;}
.yd1{bottom:928.755000px;}
.yb5{bottom:935.895000px;}
.y124{bottom:941.895000px;}
.y175{bottom:944.520000px;}
.ycf{bottom:945.270000px;}
.y9c{bottom:947.925000px;}
.y9{bottom:950.175000px;}
.y14d{bottom:951.300000px;}
.y112{bottom:955.800000px;}
.yf4{bottom:961.425000px;}
.y174{bottom:961.800000px;}
.y9b{bottom:964.425000px;}
.y39{bottom:978.300000px;}
.y122{bottom:978.675000px;}
.y173{bottom:979.050000px;}
.yce{bottom:981.675000px;}
.y14c{bottom:985.050000px;}
.yb3{bottom:989.925000px;}
.y111{bottom:991.425000px;}
.y172{bottom:996.300000px;}
.y96{bottom:998.175000px;}
.y8{bottom:1001.925000px;}
.y14b{bottom:1008.300000px;}
.y110{bottom:1009.425000px;}
.y36{bottom:1012.050000px;}
.y171{bottom:1013.550000px;}
.y69{bottom:1015.425000px;}
.y14a{bottom:1042.050000px;}
.yb2{bottom:1043.925000px;}
.y34{bottom:1047.300000px;}
.y68{bottom:1049.175000px;}
.y7{bottom:1053.300000px;}
.y10e{bottom:1063.425000px;}
.y22{bottom:1075.455000px;}
.y149{bottom:1078.455000px;}
.yb1{bottom:1080.330000px;}
.y32{bottom:1082.580000px;}
.ycd{bottom:1082.955000px;}
.y67{bottom:1084.455000px;}
.y95{bottom:1100.205000px;}
.y148{bottom:1101.705000px;}
.y6{bottom:1104.705000px;}
.y21{bottom:1115.205000px;}
.y31{bottom:1118.205000px;}
.y66{bottom:1119.705000px;}
.y2{bottom:1137.705000px;}
.y1{bottom:1153.455000px;}
.h32{height:16.162500px;}
.h9{height:16.500000px;}
.h33{height:16.522500px;}
.h2a{height:17.625000px;}
.h2f{height:22.500000px;}
.h30{height:22.522500px;}
.h2{height:22.537500px;}
.h31{height:32.625000px;}
.h11{height:32.662500px;}
.h1b{height:32.985000px;}
.hd{height:33.000000px;}
.hb{height:33.037500px;}
.hf{height:34.125000px;}
.hc{height:34.500000px;}
.h16{height:34.522500px;}
.h19{height:35.250000px;}
.h21{height:35.287500px;}
.h15{height:35.625000px;}
.h20{height:35.647500px;}
.h12{height:35.662500px;}
.h2d{height:36.000000px;}
.h2e{height:36.022500px;}
.h1f{height:41.000977px;}
.h2c{height:49.125000px;}
.h23{height:49.500000px;}
.h34{height:49.537500px;}
.h1c{height:53.250000px;}
.h1d{height:53.272500px;}
.h28{height:53.287500px;}
.h29{height:53.625000px;}
.h1e{height:53.662500px;}
.h5{height:53.709961px;}
.h7{height:54.430664px;}
.ha{height:55.291992px;}
.h8{height:59.378906px;}
.h1{height:65.645508px;}
.h2b{height:71.287500px;}
.h24{height:82.500000px;}
.h26{height:82.537500px;}
.h6{height:86.009766px;}
.h25{height:88.912500px;}
.h27{height:98.662500px;}
.h13{height:99.000000px;}
.h22{height:99.037500px;}
.h17{height:101.287500px;}
.he{height:106.537500px;}
.h10{height:106.875000px;}
.h3{height:119.355469px;}
.h4{height:122.871094px;}
.h14{height:131.647500px;}
.h1a{height:131.662500px;}
.h18{height:132.037500px;}
.h0{height:1263.000000px;}
.w17{width:27.750000px;}
.w6{width:28.500000px;}
.wf{width:31.125000px;}
.w14{width:64.537500px;}
.w1c{width:84.037500px;}
.w21{width:91.537500px;}
.w12{width:96.787500px;}
.w20{width:107.287500px;}
.w9{width:115.912500px;}
.w8{width:116.287500px;}
.w1a{width:124.200000px;}
.w16{width:132.037500px;}
.w11{width:135.412500px;}
.wc{width:137.662500px;}
.wd{width:139.950000px;}
.w1b{width:147.787500px;}
.w22{width:150.075000px;}
.wb{width:158.670000px;}
.w10{width:158.700000px;}
.w7{width:161.325000px;}
.w19{width:189.450000px;}
.wa{width:190.995000px;}
.w18{width:198.450000px;}
.w23{width:199.575000px;}
.w1f{width:205.200000px;}
.w15{width:217.620000px;}
.w13{width:240.120000px;}
.w4{width:269.355000px;}
.w3{width:269.370000px;}
.we{width:730.425000px;}
.w1d{width:746.925000px;}
.w5{width:775.425000px;}
.w1e{width:785.925000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.875000px;}
.x2{left:42.412487px;}
.x13{left:60.750000px;}
.xe{left:72.412500px;}
.x15{left:75.037500px;}
.x9{left:126.037487px;}
.x4{left:134.670000px;}
.x14{left:210.825000px;}
.xf{left:234.495000px;}
.xb{left:235.994987px;}
.x1{left:250.994987px;}
.x6{left:270.105000px;}
.x1c{left:278.370000px;}
.xa{left:307.274987px;}
.x3{left:311.775000px;}
.x10{left:351.525000px;}
.x16{left:370.650000px;}
.x8{left:378.524987px;}
.x1d{left:386.400000px;}
.x7{left:446.444987px;}
.x19{left:461.070000px;}
.x11{left:468.195000px;}
.x1e{left:478.695000px;}
.x5{left:581.145000px;}
.x1a{left:586.020000px;}
.x1f{left:629.520000px;}
.x12{left:659.925000px;}
.x18{left:686.550000px;}
.x17{left:709.050000px;}
.x1b{left:734.550000px;}
.xc{left:850.499987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.250667pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.074667pt;}
.ls5{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.997333pt;}
.ls1{letter-spacing:82.741333pt;}
.ls2{letter-spacing:460.341333pt;}
.ws0{word-spacing:-24.106667pt;}
.ws3{word-spacing:-16.874667pt;}
.ws4{word-spacing:-13.258667pt;}
.ws5{word-spacing:-13.098667pt;}
.ws6{word-spacing:-10.848000pt;}
.ws7{word-spacing:-10.597333pt;}
.ws2{word-spacing:-10.512000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-2.064000pt;}
._2{margin-left:-0.960000pt;}
._5{width:1.024000pt;}
._3{width:1.946667pt;}
._8{width:2.997333pt;}
._a{width:320.629333pt;}
._7{width:345.946667pt;}
._1{width:392.266667pt;}
._0{width:569.706667pt;}
._9{width:753.829333pt;}
._4{width:755.034667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:3.320000pt;}
.y33{bottom:3.333333pt;}
.ydc{bottom:3.360000pt;}
.yb8{bottom:4.320000pt;}
.y4d{bottom:4.333333pt;}
.y42{bottom:4.346667pt;}
.y102{bottom:4.360000pt;}
.yca{bottom:4.653333pt;}
.y38{bottom:4.666667pt;}
.yc8{bottom:4.693333pt;}
.yad{bottom:5.653333pt;}
.y5d{bottom:5.666667pt;}
.y73{bottom:5.680000pt;}
.yd0{bottom:5.693333pt;}
.y80{bottom:5.706667pt;}
.y4{bottom:6.000000pt;}
.y126{bottom:6.026667pt;}
.y150{bottom:6.320000pt;}
.y12a{bottom:6.333333pt;}
.y14f{bottom:8.653333pt;}
.y129{bottom:8.666667pt;}
.y16d{bottom:8.680000pt;}
.y133{bottom:8.693333pt;}
.y183{bottom:8.706667pt;}
.y166{bottom:8.986667pt;}
.y46{bottom:9.000000pt;}
.y55{bottom:9.333333pt;}
.y137{bottom:15.333333pt;}
.y13d{bottom:15.693333pt;}
.yfa{bottom:16.333333pt;}
.y5{bottom:16.666667pt;}
.y71{bottom:17.653333pt;}
.y12e{bottom:17.666667pt;}
.y57{bottom:17.706667pt;}
.y63{bottom:17.986667pt;}
.y35{bottom:18.000000pt;}
.yd5{bottom:18.013333pt;}
.y4f{bottom:18.026667pt;}
.ya8{bottom:18.040000pt;}
.y4c{bottom:19.000000pt;}
.y37{bottom:19.333333pt;}
.yf1{bottom:19.986667pt;}
.y8f{bottom:20.000000pt;}
.yb7{bottom:20.026667pt;}
.y81{bottom:20.040000pt;}
.y114{bottom:20.320000pt;}
.y10b{bottom:20.326667pt;}
.y41{bottom:20.333333pt;}
.y5c{bottom:20.360000pt;}
.y7f{bottom:20.373333pt;}
.y123{bottom:20.666667pt;}
.y125{bottom:20.693333pt;}
.y106{bottom:21.320000pt;}
.yb4{bottom:21.333333pt;}
.yc7{bottom:21.693333pt;}
.y45{bottom:25.000000pt;}
.y120{bottom:30.000000pt;}
.y3{bottom:30.666667pt;}
.y70{bottom:32.320000pt;}
.y11f{bottom:32.333333pt;}
.y62{bottom:32.666667pt;}
.ydb{bottom:32.693333pt;}
.y8d{bottom:32.706667pt;}
.y20{bottom:34.000000pt;}
.y7e{bottom:34.706667pt;}
.y9a{bottom:35.000000pt;}
.y105{bottom:35.986667pt;}
.y40{bottom:36.000000pt;}
.yb6{bottom:36.026667pt;}
.yeb{bottom:36.040000pt;}
.y54{bottom:36.333333pt;}
.yc6{bottom:36.360000pt;}
.y44{bottom:39.666667pt;}
.yfe{bottom:45.000000pt;}
.y6f{bottom:46.986667pt;}
.ya4{bottom:47.000000pt;}
.yab{bottom:47.026667pt;}
.y61{bottom:47.333333pt;}
.yda{bottom:47.360000pt;}
.y8c{bottom:47.373333pt;}
.y7d{bottom:49.373333pt;}
.y99{bottom:49.666667pt;}
.yea{bottom:51.706667pt;}
.y3f{bottom:52.000000pt;}
.y10f{bottom:52.026667pt;}
.y43{bottom:54.333333pt;}
.y10d{bottom:58.700000pt;}
.yfd{bottom:60.666667pt;}
.ya3{bottom:61.666667pt;}
.y6e{bottom:61.693333pt;}
.y60{bottom:62.000000pt;}
.yd9{bottom:62.026667pt;}
.y8b{bottom:62.040000pt;}
.y7c{bottom:64.040000pt;}
.y98{bottom:64.333333pt;}
.y94{bottom:66.366667pt;}
.y3e{bottom:67.706667pt;}
.y53{bottom:68.000000pt;}
.y52{bottom:69.000000pt;}
.y3c{bottom:69.040000pt;}
.y1f{bottom:69.700000pt;}
.y170{bottom:73.700000pt;}
.ya2{bottom:76.333333pt;}
.y6d{bottom:76.360000pt;}
.y147{bottom:76.366667pt;}
.y5f{bottom:76.666667pt;}
.yd8{bottom:76.693333pt;}
.y8a{bottom:76.706667pt;}
.y97{bottom:78.693333pt;}
.y7b{bottom:78.706667pt;}
.y3d{bottom:83.373333pt;}
.y51{bottom:83.666667pt;}
.y3b{bottom:83.706667pt;}
.ya1{bottom:91.000000pt;}
.y6c{bottom:91.026667pt;}
.y10c{bottom:91.033333pt;}
.y89{bottom:91.373333pt;}
.y93{bottom:97.366667pt;}
.y1e{bottom:99.700000pt;}
.y16f{bottom:103.700000pt;}
.y6b{bottom:105.693333pt;}
.y88{bottom:106.026667pt;}
.y146{bottom:107.700000pt;}
.y10a{bottom:123.366667pt;}
.y16e{bottom:124.366667pt;}
.y92{bottom:128.700000pt;}
.y1d{bottom:129.700000pt;}
.y145{bottom:139.706667pt;}
.y16c{bottom:145.026667pt;}
.y109{bottom:157.066667pt;}
.y1c{bottom:159.733333pt;}
.y91{bottom:160.066667pt;}
.y16b{bottom:165.733333pt;}
.y144{bottom:171.400000pt;}
.y90{bottom:174.733333pt;}
.y16a{bottom:186.400000pt;}
.y108{bottom:189.400000pt;}
.y1b{bottom:189.733333pt;}
.y143{bottom:203.066667pt;}
.yf3{bottom:204.066667pt;}
.y8e{bottom:204.733333pt;}
.y65{bottom:205.066667pt;}
.y169{bottom:216.400000pt;}
.yf2{bottom:218.733333pt;}
.y142{bottom:219.066667pt;}
.y1a{bottom:219.733333pt;}
.y87{bottom:236.733333pt;}
.yb0{bottom:237.733333pt;}
.y168{bottom:246.400000pt;}
.y19{bottom:249.733333pt;}
.y107{bottom:252.400000pt;}
.y167{bottom:261.733333pt;}
.y141{bottom:263.733333pt;}
.yaf{bottom:267.733333pt;}
.ycc{bottom:272.440000pt;}
.y165{bottom:276.773333pt;}
.y18{bottom:279.426667pt;}
.y5e{bottom:282.106667pt;}
.yae{bottom:282.440000pt;}
.ycb{bottom:287.106667pt;}
.yf0{bottom:292.773333pt;}
.y140{bottom:293.773333pt;}
.y164{bottom:297.440000pt;}
.y104{bottom:300.440000pt;}
.y17{bottom:309.426667pt;}
.yac{bottom:312.440000pt;}
.y163{bottom:314.106667pt;}
.y13f{bottom:323.773333pt;}
.yc9{bottom:335.106667pt;}
.y16{bottom:339.426667pt;}
.yef{bottom:340.773333pt;}
.y13e{bottom:344.440000pt;}
.yaa{bottom:344.773333pt;}
.y162{bottom:346.106667pt;}
.y103{bottom:348.440000pt;}
.y86{bottom:354.773333pt;}
.y161{bottom:362.106667pt;}
.y15{bottom:369.440000pt;}
.y5b{bottom:370.773333pt;}
.y13c{bottom:374.106667pt;}
.y30{bottom:379.773333pt;}
.y101{bottom:380.773333pt;}
.yc5{bottom:383.106667pt;}
.y85{bottom:384.800000pt;}
.y160{bottom:391.800000pt;}
.y14{bottom:399.466667pt;}
.yee{bottom:400.800000pt;}
.y5a{bottom:403.133333pt;}
.y13b{bottom:404.133333pt;}
.y121{bottom:408.800000pt;}
.y2f{bottom:411.133333pt;}
.y100{bottom:414.466667pt;}
.y84{bottom:416.133333pt;}
.y15f{bottom:421.800000pt;}
.y11e{bottom:423.466667pt;}
.y13{bottom:429.466667pt;}
.yc4{bottom:431.466667pt;}
.yed{bottom:432.133333pt;}
.y13a{bottom:434.133333pt;}
.y59{bottom:434.466667pt;}
.y2e{bottom:441.133333pt;}
.y15e{bottom:442.466667pt;}
.yff{bottom:446.133333pt;}
.y83{bottom:447.466667pt;}
.y12{bottom:459.466667pt;}
.y82{bottom:462.133333pt;}
.ya9{bottom:462.466667pt;}
.yec{bottom:463.800000pt;}
.y139{bottom:464.133333pt;}
.y58{bottom:465.800000pt;}
.y11d{bottom:467.800000pt;}
.y2d{bottom:471.133333pt;}
.y15d{bottom:472.466667pt;}
.yc3{bottom:479.466667pt;}
.ye9{bottom:479.800000pt;}
.y56{bottom:480.466667pt;}
.y184{bottom:481.466667pt;}
.y138{bottom:484.800000pt;}
.ye0{bottom:488.133333pt;}
.y11{bottom:489.466667pt;}
.y7a{bottom:492.133333pt;}
.ya7{bottom:492.466667pt;}
.y15c{bottom:493.133333pt;}
.y182{bottom:496.133333pt;}
.y11c{bottom:497.840000pt;}
.y2c{bottom:501.173333pt;}
.y50{bottom:510.173333pt;}
.yc2{bottom:513.173333pt;}
.y136{bottom:514.840000pt;}
.y181{bottom:516.840000pt;}
.ydf{bottom:519.840000pt;}
.y15b{bottom:523.173333pt;}
.ya6{bottom:523.840000pt;}
.y10{bottom:524.173333pt;}
.y11b{bottom:527.840000pt;}
.y2b{bottom:531.173333pt;}
.yde{bottom:535.840000pt;}
.y180{bottom:537.506667pt;}
.yc1{bottom:544.506667pt;}
.y135{bottom:544.840000pt;}
.yfc{bottom:550.840000pt;}
.y15a{bottom:553.173333pt;}
.ya5{bottom:555.173333pt;}
.y17f{bottom:558.173333pt;}
.yc0{bottom:559.173333pt;}
.ye8{bottom:559.506667pt;}
.y11a{bottom:560.173333pt;}
.y2a{bottom:561.173333pt;}
.ydd{bottom:565.840000pt;}
.yf{bottom:569.840000pt;}
.y159{bottom:573.840000pt;}
.y134{bottom:574.840000pt;}
.y17e{bottom:578.840000pt;}
.y29{bottom:580.506667pt;}
.y79{bottom:582.840000pt;}
.y119{bottom:591.506667pt;}
.y28{bottom:599.840000pt;}
.y158{bottom:603.840000pt;}
.y132{bottom:604.840000pt;}
.y4e{bottom:605.840000pt;}
.ybf{bottom:607.173333pt;}
.ye7{bottom:607.506667pt;}
.yd7{bottom:610.506667pt;}
.y78{bottom:614.200000pt;}
.ye{bottom:615.533333pt;}
.y118{bottom:623.200000pt;}
.y17d{bottom:623.533333pt;}
.y157{bottom:624.533333pt;}
.y131{bottom:625.533333pt;}
.y27{bottom:629.533333pt;}
.ya0{bottom:632.200000pt;}
.y4b{bottom:635.866667pt;}
.ye6{bottom:637.533333pt;}
.yfb{bottom:639.200000pt;}
.y17c{bottom:644.200000pt;}
.y77{bottom:645.200000pt;}
.y26{bottom:648.866667pt;}
.y156{bottom:654.533333pt;}
.ybe{bottom:655.200000pt;}
.y130{bottom:655.533333pt;}
.yd{bottom:661.533333pt;}
.y17b{bottom:664.866667pt;}
.y4a{bottom:666.866667pt;}
.ye5{bottom:668.533333pt;}
.yf9{bottom:670.533333pt;}
.y12f{bottom:676.200000pt;}
.y76{bottom:676.533333pt;}
.y25{bottom:680.200000pt;}
.y155{bottom:684.533333pt;}
.y17a{bottom:685.533333pt;}
.y117{bottom:687.200000pt;}
.ybd{bottom:687.533333pt;}
.y49{bottom:698.200000pt;}
.yd6{bottom:699.200000pt;}
.ye4{bottom:699.866667pt;}
.yf8{bottom:701.533333pt;}
.y154{bottom:705.200000pt;}
.y12d{bottom:706.200000pt;}
.yc{bottom:707.200000pt;}
.y75{bottom:707.866667pt;}
.y24{bottom:715.533333pt;}
.ybc{bottom:719.866667pt;}
.y74{bottom:722.533333pt;}
.y179{bottom:726.893333pt;}
.y48{bottom:729.560000pt;}
.yd4{bottom:731.226667pt;}
.ye3{bottom:731.560000pt;}
.yf7{bottom:732.893333pt;}
.y153{bottom:735.226667pt;}
.y12c{bottom:735.893333pt;}
.y47{bottom:744.226667pt;}
.y23{bottom:745.573333pt;}
.ye2{bottom:747.560000pt;}
.y9f{bottom:749.893333pt;}
.y116{bottom:751.226667pt;}
.y72{bottom:752.560000pt;}
.yb{bottom:753.226667pt;}
.ybb{bottom:753.560000pt;}
.y12b{bottom:756.560000pt;}
.yd3{bottom:762.560000pt;}
.yf6{bottom:764.560000pt;}
.y152{bottom:764.893333pt;}
.y178{bottom:768.226667pt;}
.y3a{bottom:774.226667pt;}
.y9e{bottom:779.893333pt;}
.yf5{bottom:780.560000pt;}
.y115{bottom:783.560000pt;}
.yba{bottom:784.893333pt;}
.y6a{bottom:784.906667pt;}
.y128{bottom:786.560000pt;}
.y177{bottom:788.893333pt;}
.yd2{bottom:794.226667pt;}
.y151{bottom:794.893333pt;}
.ya{bottom:798.893333pt;}
.yb9{bottom:799.560000pt;}
.y127{bottom:807.226667pt;}
.y176{bottom:809.560000pt;}
.y9d{bottom:811.226667pt;}
.y113{bottom:815.906667pt;}
.ye1{bottom:821.573333pt;}
.y14e{bottom:824.906667pt;}
.yd1{bottom:825.560000pt;}
.yb5{bottom:831.906667pt;}
.y124{bottom:837.240000pt;}
.y175{bottom:839.573333pt;}
.ycf{bottom:840.240000pt;}
.y9c{bottom:842.600000pt;}
.y9{bottom:844.600000pt;}
.y14d{bottom:845.600000pt;}
.y112{bottom:849.600000pt;}
.yf4{bottom:854.600000pt;}
.y174{bottom:854.933333pt;}
.y9b{bottom:857.266667pt;}
.y39{bottom:869.600000pt;}
.y122{bottom:869.933333pt;}
.y173{bottom:870.266667pt;}
.yce{bottom:872.600000pt;}
.y14c{bottom:875.600000pt;}
.yb3{bottom:879.933333pt;}
.y111{bottom:881.266667pt;}
.y172{bottom:885.600000pt;}
.y96{bottom:887.266667pt;}
.y8{bottom:890.600000pt;}
.y14b{bottom:896.266667pt;}
.y110{bottom:897.266667pt;}
.y36{bottom:899.600000pt;}
.y171{bottom:900.933333pt;}
.y69{bottom:902.600000pt;}
.y14a{bottom:926.266667pt;}
.yb2{bottom:927.933333pt;}
.y34{bottom:930.933333pt;}
.y68{bottom:932.600000pt;}
.y7{bottom:936.266667pt;}
.y10e{bottom:945.266667pt;}
.y22{bottom:955.960000pt;}
.y149{bottom:958.626667pt;}
.yb1{bottom:960.293333pt;}
.y32{bottom:962.293333pt;}
.ycd{bottom:962.626667pt;}
.y67{bottom:963.960000pt;}
.y95{bottom:977.960000pt;}
.y148{bottom:979.293333pt;}
.y6{bottom:981.960000pt;}
.y21{bottom:991.293333pt;}
.y31{bottom:993.960000pt;}
.y66{bottom:995.293333pt;}
.y2{bottom:1011.293333pt;}
.y1{bottom:1025.293333pt;}
.h32{height:14.366667pt;}
.h9{height:14.666667pt;}
.h33{height:14.686667pt;}
.h2a{height:15.666667pt;}
.h2f{height:20.000000pt;}
.h30{height:20.020000pt;}
.h2{height:20.033333pt;}
.h31{height:29.000000pt;}
.h11{height:29.033333pt;}
.h1b{height:29.320000pt;}
.hd{height:29.333333pt;}
.hb{height:29.366667pt;}
.hf{height:30.333333pt;}
.hc{height:30.666667pt;}
.h16{height:30.686667pt;}
.h19{height:31.333333pt;}
.h21{height:31.366667pt;}
.h15{height:31.666667pt;}
.h20{height:31.686667pt;}
.h12{height:31.700000pt;}
.h2d{height:32.000000pt;}
.h2e{height:32.020000pt;}
.h1f{height:36.445312pt;}
.h2c{height:43.666667pt;}
.h23{height:44.000000pt;}
.h34{height:44.033333pt;}
.h1c{height:47.333333pt;}
.h1d{height:47.353333pt;}
.h28{height:47.366667pt;}
.h29{height:47.666667pt;}
.h1e{height:47.700000pt;}
.h5{height:47.742188pt;}
.h7{height:48.382812pt;}
.ha{height:49.148438pt;}
.h8{height:52.781250pt;}
.h1{height:58.351562pt;}
.h2b{height:63.366667pt;}
.h24{height:73.333333pt;}
.h26{height:73.366667pt;}
.h6{height:76.453125pt;}
.h25{height:79.033333pt;}
.h27{height:87.700000pt;}
.h13{height:88.000000pt;}
.h22{height:88.033333pt;}
.h17{height:90.033333pt;}
.he{height:94.700000pt;}
.h10{height:95.000000pt;}
.h3{height:106.093750pt;}
.h4{height:109.218750pt;}
.h14{height:117.020000pt;}
.h1a{height:117.033333pt;}
.h18{height:117.366667pt;}
.h0{height:1122.666667pt;}
.w17{width:24.666667pt;}
.w6{width:25.333333pt;}
.wf{width:27.666667pt;}
.w14{width:57.366667pt;}
.w1c{width:74.700000pt;}
.w21{width:81.366667pt;}
.w12{width:86.033333pt;}
.w20{width:95.366667pt;}
.w9{width:103.033333pt;}
.w8{width:103.366667pt;}
.w1a{width:110.400000pt;}
.w16{width:117.366667pt;}
.w11{width:120.366667pt;}
.wc{width:122.366667pt;}
.wd{width:124.400000pt;}
.w1b{width:131.366667pt;}
.w22{width:133.400000pt;}
.wb{width:141.040000pt;}
.w10{width:141.066667pt;}
.w7{width:143.400000pt;}
.w19{width:168.400000pt;}
.wa{width:169.773333pt;}
.w18{width:176.400000pt;}
.w23{width:177.400000pt;}
.w1f{width:182.400000pt;}
.w15{width:193.440000pt;}
.w13{width:213.440000pt;}
.w4{width:239.426667pt;}
.w3{width:239.440000pt;}
.we{width:649.266667pt;}
.w1d{width:663.933333pt;}
.w5{width:689.266667pt;}
.w1e{width:698.600000pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.000000pt;}
.x2{left:37.699988pt;}
.x13{left:54.000000pt;}
.xe{left:64.366667pt;}
.x15{left:66.700000pt;}
.x9{left:112.033322pt;}
.x4{left:119.706667pt;}
.x14{left:187.400000pt;}
.xf{left:208.440000pt;}
.xb{left:209.773322pt;}
.x1{left:223.106655pt;}
.x6{left:240.093333pt;}
.x1c{left:247.440000pt;}
.xa{left:273.133322pt;}
.x3{left:277.133333pt;}
.x10{left:312.466667pt;}
.x16{left:329.466667pt;}
.x8{left:336.466655pt;}
.x1d{left:343.466667pt;}
.x7{left:396.839988pt;}
.x19{left:409.840000pt;}
.x11{left:416.173333pt;}
.x1e{left:425.506667pt;}
.x5{left:516.573333pt;}
.x1a{left:520.906667pt;}
.x1f{left:559.573333pt;}
.x12{left:586.600000pt;}
.x18{left:610.266667pt;}
.x17{left:630.266667pt;}
.x1b{left:652.933333pt;}
.xc{left:755.999988pt;}
}




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