
    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_9fa8860f2bf19df1d172d7a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145508;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_562f99bea47b6cc6a5571587.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734863;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_cf4a19a2d2fa3cc520572ac6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_0ad5bdb15c37851f4fbd34f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.799805;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_ce8918998be784152d2f157e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_27012029bf41ca4aa83be385.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_24dfc7266630c6b8d849dc53.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.145508;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_a9d3bf2df2a49543311d49e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.115234;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_26f3e3047983aa414695f997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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;}
.ls10{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.630000px;}
.ls8{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.078000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls14{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.024480px;}
.ls6{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.208080px;}
.lsb{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.295920px;}
.lsc{letter-spacing:0.306000px;}
.lse{letter-spacing:0.318000px;}
.ls7{letter-spacing:0.342000px;}
.lsd{letter-spacing:2.988000px;}
.ls2{letter-spacing:16.902000px;}
.ls4{letter-spacing:26.748000px;}
.ls15{letter-spacing:46.908000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws9{word-spacing:-16.470000px;}
.ws8{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.290000px;}
.ws0{word-spacing:-16.254000px;}
.ws7{word-spacing:-16.164000px;}
.wsa{word-spacing:-16.038000px;}
.ws6{word-spacing:-15.984000px;}
.wsd{word-spacing:-14.544720px;}
.wsc{word-spacing:-14.520240px;}
.wse{word-spacing:-14.442240px;}
.ws3{word-spacing:-0.540000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.162000px;}
.ws4{word-spacing:0.504000px;}
._b{margin-left:-3.916031px;}
._1{margin-left:-2.893969px;}
._2{margin-left:-1.168553px;}
._0{width:1.140000px;}
._4{width:2.248553px;}
._3{width:3.510000px;}
._5{width:5.292000px;}
._6{width:6.912000px;}
._7{width:8.290553px;}
._11{width:9.611789px;}
._e{width:10.800000px;}
._8{width:12.258000px;}
._9{width:13.932000px;}
._12{width:15.096211px;}
._c{width:19.728000px;}
._d{width:20.790000px;}
._f{width:22.572000px;}
._10{width:23.760000px;}
._14{width:24.762000px;}
._a{width:26.166000px;}
._13{width:47.358000px;}
._15{width:51.462000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:2.520000px;}
.y103{bottom:7.020000px;}
.y106{bottom:7.200000px;}
.y110{bottom:7.560000px;}
.yff{bottom:7.740000px;}
.yeb{bottom:11.520000px;}
.yed{bottom:11.565000px;}
.y6{bottom:12.060000px;}
.y8{bottom:12.105000px;}
.y101{bottom:13.320000px;}
.ye9{bottom:18.540000px;}
.y11b{bottom:19.470000px;}
.y10a{bottom:21.240000px;}
.ya{bottom:22.320000px;}
.y10f{bottom:23.220000px;}
.yfe{bottom:23.400000px;}
.yea{bottom:25.560000px;}
.yef{bottom:25.740000px;}
.y5{bottom:27.720000px;}
.yfa{bottom:32.430000px;}
.y3{bottom:32.760000px;}
.yf2{bottom:39.600000px;}
.yfc{bottom:39.630000px;}
.y2c{bottom:44.496000px;}
.yf4{bottom:53.280000px;}
.yf8{bottom:53.460000px;}
.yfb{bottom:53.490000px;}
.yf7{bottom:67.500000px;}
.y2d{bottom:67.896000px;}
.y2b{bottom:69.156000px;}
.yf6{bottom:81.360000px;}
.y29{bottom:84.456000px;}
.yc9{bottom:88.956000px;}
.ye7{bottom:91.836000px;}
.y98{bottom:93.456000px;}
.yf5{bottom:95.400000px;}
.y66{bottom:98.676000px;}
.y28{bottom:100.116000px;}
.yc8{bottom:104.616000px;}
.ye6{bottom:107.496000px;}
.y97{bottom:109.296000px;}
.y131{bottom:110.016000px;}
.y65{bottom:114.336000px;}
.y27{bottom:115.776000px;}
.yc7{bottom:120.276000px;}
.ye5{bottom:123.336000px;}
.y130{bottom:125.676000px;}
.y64{bottom:129.996000px;}
.y26{bottom:131.436000px;}
.y96{bottom:133.956000px;}
.ye4{bottom:138.996000px;}
.y12f{bottom:141.336000px;}
.yc6{bottom:144.936000px;}
.y63{bottom:145.656000px;}
.y25{bottom:147.276000px;}
.y95{bottom:158.610000px;}
.yc5{bottom:160.590000px;}
.y24{bottom:162.930000px;}
.ye3{bottom:163.650000px;}
.y12e{bottom:165.990000px;}
.y62{bottom:170.310000px;}
.yc4{bottom:176.250000px;}
.y15f{bottom:176.430000px;}
.y23{bottom:178.590000px;}
.y12d{bottom:181.650000px;}
.y94{bottom:183.270000px;}
.ye2{bottom:188.310000px;}
.yc3{bottom:191.910000px;}
.y15e{bottom:192.090000px;}
.y61{bottom:194.970000px;}
.y12c{bottom:197.310000px;}
.y22{bottom:203.250000px;}
.ye1{bottom:203.970000px;}
.y15d{bottom:207.750000px;}
.y93{bottom:207.930000px;}
.y60{bottom:210.630000px;}
.y12b{bottom:212.970000px;}
.yc2{bottom:216.570000px;}
.y21{bottom:218.910000px;}
.ye0{bottom:225.570000px;}
.y5f{bottom:226.290000px;}
.y12a{bottom:228.810000px;}
.yc1{bottom:232.230000px;}
.y15c{bottom:232.410000px;}
.y92{bottom:232.590000px;}
.y20{bottom:234.570000px;}
.y129{bottom:244.470000px;}
.yc0{bottom:247.890000px;}
.y15b{bottom:248.070000px;}
.y1f{bottom:250.230000px;}
.y5e{bottom:250.950000px;}
.y91{bottom:257.250000px;}
.y128{bottom:260.130000px;}
.ybf{bottom:263.730000px;}
.y15a{bottom:272.730000px;}
.y1e{bottom:274.890000px;}
.y5d{bottom:275.610000px;}
.ybe{bottom:279.390000px;}
.y90{bottom:281.955000px;}
.y127{bottom:284.835000px;}
.y159{bottom:288.615000px;}
.y1d{bottom:290.595000px;}
.y5c{bottom:291.315000px;}
.ybd{bottom:295.095000px;}
.y126{bottom:298.875000px;}
.y158{bottom:304.275000px;}
.y1c{bottom:306.255000px;}
.y8f{bottom:306.615000px;}
.y5b{bottom:306.975000px;}
.ybc{bottom:310.755000px;}
.y125{bottom:318.855000px;}
.y1b{bottom:321.915000px;}
.y5a{bottom:322.815000px;}
.y157{bottom:328.935000px;}
.y8e{bottom:331.275000px;}
.ybb{bottom:335.415000px;}
.y1a{bottom:337.575000px;}
.y59{bottom:338.475000px;}
.y124{bottom:338.835000px;}
.y156{bottom:344.595000px;}
.yba{bottom:351.075000px;}
.y19{bottom:353.415000px;}
.y58{bottom:354.135000px;}
.y8d{bottom:355.935000px;}
.y123{bottom:358.635000px;}
.y155{bottom:360.255000px;}
.y18{bottom:369.075000px;}
.y57{bottom:369.795000px;}
.yb9{bottom:375.735000px;}
.y8c{bottom:380.775000px;}
.y154{bottom:384.915000px;}
.y56{bottom:385.455000px;}
.yb8{bottom:391.395000px;}
.y17{bottom:393.735000px;}
.y153{bottom:400.575000px;}
.y8b{bottom:405.435000px;}
.yb7{bottom:407.055000px;}
.y122{bottom:407.415000px;}
.y16{bottom:409.395000px;}
.y55{bottom:410.115000px;}
.yb6{bottom:422.715000px;}
.y15{bottom:425.055000px;}
.y152{bottom:425.235000px;}
.y54{bottom:425.775000px;}
.y8a{bottom:430.095000px;}
.y121{bottom:432.075000px;}
.yb5{bottom:438.375000px;}
.y14{bottom:440.715000px;}
.y151{bottom:440.895000px;}
.y120{bottom:445.395000px;}
.y89{bottom:445.755000px;}
.y53{bottom:450.435000px;}
.y13{bottom:456.375000px;}
.y150{bottom:456.555000px;}
.y88{bottom:461.415000px;}
.yb4{bottom:463.035000px;}
.y11f{bottom:465.375000px;}
.y52{bottom:466.095000px;}
.y12{bottom:472.035000px;}
.y14f{bottom:472.215000px;}
.y87{bottom:477.075000px;}
.y11e{bottom:485.355000px;}
.y11{bottom:487.695000px;}
.yb3{bottom:487.875000px;}
.y51{bottom:490.755000px;}
.y14e{bottom:496.875000px;}
.y86{bottom:501.735000px;}
.y10{bottom:503.355000px;}
.y11d{bottom:505.155000px;}
.yb2{bottom:512.535000px;}
.y50{bottom:515.415000px;}
.yf{bottom:519.015000px;}
.ydf{bottom:521.535000px;}
.y14d{bottom:521.715000px;}
.y11c{bottom:525.135000px;}
.y85{bottom:526.395000px;}
.yb1{bottom:528.195000px;}
.yf9{bottom:538.275000px;}
.ye{bottom:539.175000px;}
.y4f{bottom:540.255000px;}
.y84{bottom:542.055000px;}
.y11a{bottom:545.115000px;}
.yde{bottom:546.195000px;}
.y14c{bottom:546.375000px;}
.yb0{bottom:552.855000px;}
.y83{bottom:557.715000px;}
.y14b{bottom:562.035000px;}
.y4e{bottom:564.945000px;}
.ydd{bottom:570.885000px;}
.y82{bottom:573.405000px;}
.y119{bottom:577.365000px;}
.yaf{bottom:577.545000px;}
.y14a{bottom:577.725000px;}
.y2a{bottom:586.365000px;}
.y81{bottom:589.065000px;}
.y4d{bottom:590.505000px;}
.y149{bottom:593.385000px;}
.ydc{bottom:595.545000px;}
.yae{bottom:602.205000px;}
.yf3{bottom:604.545000px;}
.y80{bottom:604.905000px;}
.y4c{bottom:616.065000px;}
.y148{bottom:618.045000px;}
.ydb{bottom:620.205000px;}
.y7f{bottom:620.565000px;}
.y118{bottom:625.965000px;}
.yad{bottom:626.865000px;}
.y7e{bottom:636.225000px;}
.y4b{bottom:641.625000px;}
.y147{bottom:642.705000px;}
.yda{bottom:644.865000px;}
.yac{bottom:651.525000px;}
.y7d{bottom:651.885000px;}
.y4a{bottom:657.285000px;}
.y117{bottom:661.785000px;}
.y146{bottom:667.365000px;}
.y7c{bottom:667.545000px;}
.yd9{bottom:669.525000px;}
.yd{bottom:670.963500px;}
.y116{bottom:675.285000px;}
.yab{bottom:676.185000px;}
.y49{bottom:682.845000px;}
.y145{bottom:692.025000px;}
.y7b{bottom:692.205000px;}
.yd8{bottom:694.185000px;}
.y115{bottom:695.085000px;}
.yc{bottom:695.623500px;}
.y48{bottom:698.505000px;}
.yaa{bottom:700.845000px;}
.yf1{bottom:712.545000px;}
.y47{bottom:714.165000px;}
.y114{bottom:715.065000px;}
.y144{bottom:716.685000px;}
.y7a{bottom:716.865000px;}
.yd7{bottom:718.845000px;}
.ya9{bottom:725.505000px;}
.yb{bottom:728.745000px;}
.y113{bottom:735.045000px;}
.y46{bottom:739.725000px;}
.y143{bottom:741.345000px;}
.y79{bottom:741.525000px;}
.yd6{bottom:743.505000px;}
.ya8{bottom:750.165000px;}
.y112{bottom:755.025000px;}
.y45{bottom:755.385000px;}
.y78{bottom:757.185000px;}
.yf0{bottom:764.925000px;}
.y142{bottom:766.005000px;}
.yd5{bottom:768.165000px;}
.y44{bottom:771.045000px;}
.y77{bottom:772.845000px;}
.y111{bottom:774.825000px;}
.ya7{bottom:775.005000px;}
.y9{bottom:779.685000px;}
.y43{bottom:786.705000px;}
.y76{bottom:788.505000px;}
.y141{bottom:790.845000px;}
.yd4{bottom:793.005000px;}
.ya6{bottom:799.665000px;}
.y42{bottom:802.365000px;}
.yee{bottom:803.265000px;}
.y75{bottom:804.165000px;}
.y10e{bottom:807.225000px;}
.y140{bottom:815.505000px;}
.yd3{bottom:817.665000px;}
.ya5{bottom:824.325000px;}
.y41{bottom:828.105000px;}
.y74{bottom:829.005000px;}
.y13f{bottom:831.165000px;}
.y7{bottom:839.985000px;}
.yec{bottom:841.605000px;}
.yd2{bottom:842.325000px;}
.y40{bottom:843.765000px;}
.y73{bottom:844.665000px;}
.y13e{bottom:846.825000px;}
.ya4{bottom:849.030000px;}
.y10d{bottom:855.870000px;}
.y13d{bottom:862.530000px;}
.ye8{bottom:866.130000px;}
.yd1{bottom:867.030000px;}
.y3f{bottom:869.370000px;}
.y10c{bottom:871.530000px;}
.ya3{bottom:873.690000px;}
.y13c{bottom:878.190000px;}
.y72{bottom:885.030000px;}
.y2{bottom:890.790000px;}
.yd0{bottom:891.690000px;}
.y3e{bottom:894.030000px;}
.y10b{bottom:896.190000px;}
.ya2{bottom:898.350000px;}
.y71{bottom:900.690000px;}
.y13b{bottom:903.750000px;}
.y3d{bottom:909.690000px;}
.y109{bottom:910.230000px;}
.y4{bottom:916.350000px;}
.y13a{bottom:919.410000px;}
.ya1{bottom:923.010000px;}
.y70{bottom:932.010000px;}
.y3c{bottom:934.350000px;}
.ycf{bottom:941.010000px;}
.y108{bottom:944.250000px;}
.y139{bottom:944.970000px;}
.y6f{bottom:947.670000px;}
.y3b{bottom:959.010000px;}
.y138{bottom:960.630000px;}
.y6e{bottom:963.330000px;}
.y107{bottom:964.050000px;}
.yce{bottom:965.670000px;}
.ya0{bottom:972.330000px;}
.y6d{bottom:978.990000px;}
.ycd{bottom:981.330000px;}
.y3a{bottom:983.670000px;}
.y105{bottom:984.030000px;}
.y137{bottom:986.190000px;}
.y9f{bottom:987.990000px;}
.y6c{bottom:994.650000px;}
.ycc{bottom:996.990000px;}
.y39{bottom:999.330000px;}
.y136{bottom:1001.850000px;}
.y9e{bottom:1003.650000px;}
.y104{bottom:1004.010000px;}
.y38{bottom:1014.990000px;}
.y135{bottom:1017.690000px;}
.y1{bottom:1018.770000px;}
.y6b{bottom:1019.310000px;}
.ycb{bottom:1021.650000px;}
.y102{bottom:1023.990000px;}
.y9d{bottom:1028.310000px;}
.y37{bottom:1030.650000px;}
.y134{bottom:1033.350000px;}
.yca{bottom:1037.310000px;}
.y100{bottom:1043.790000px;}
.y6a{bottom:1044.150000px;}
.y36{bottom:1046.310000px;}
.y9c{bottom:1053.150000px;}
.y133{bottom:1058.910000px;}
.y35{bottom:1062.150000px;}
.y69{bottom:1068.810000px;}
.y132{bottom:1074.570000px;}
.yfd{bottom:1076.010000px;}
.y34{bottom:1077.810000px;}
.y68{bottom:1084.470000px;}
.y33{bottom:1093.470000px;}
.y9b{bottom:1100.130000px;}
.y32{bottom:1109.130000px;}
.y9a{bottom:1115.790000px;}
.y31{bottom:1124.790000px;}
.y67{bottom:1133.820000px;}
.y99{bottom:1140.480000px;}
.y30{bottom:1149.480000px;}
.y2f{bottom:1165.140000px;}
.h9{height:13.680000px;}
.h16{height:18.360000px;}
.h17{height:18.540000px;}
.he{height:22.896000px;}
.h5{height:24.660000px;}
.h6{height:24.696000px;}
.h15{height:30.780000px;}
.h1a{height:30.816000px;}
.h18{height:32.400000px;}
.h19{height:35.820000px;}
.h14{height:36.000000px;}
.hc{height:36.720000px;}
.h10{height:36.900000px;}
.h4{height:40.320000px;}
.hd{height:43.905937px;}
.hf{height:45.177891px;}
.h8{height:49.148438px;}
.ha{height:49.583118px;}
.h2{height:50.572266px;}
.h11{height:50.760000px;}
.hb{height:55.503491px;}
.h7{height:59.580000px;}
.h13{height:64.656000px;}
.h3{height:65.880000px;}
.h12{height:106.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:6.480000px;}
.we{width:136.836000px;}
.w10{width:137.196000px;}
.wb{width:211.170000px;}
.w9{width:211.530000px;}
.w3{width:212.430000px;}
.w14{width:232.770000px;}
.w16{width:233.130000px;}
.w15{width:239.250000px;}
.w17{width:239.610000px;}
.wf{width:275.430000px;}
.w11{width:275.790000px;}
.wc{width:349.815000px;}
.wa{width:350.175000px;}
.w12{width:412.995000px;}
.wd{width:413.715000px;}
.w13{width:473.475000px;}
.w2{width:510.225000px;}
.w19{width:540.825000px;}
.w18{width:541.725000px;}
.w6{width:711.285000px;}
.w5{width:722.310000px;}
.w4{width:723.390000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x3{left:8.640000px;}
.x19{left:15.840000px;}
.x15{left:25.200000px;}
.x11{left:33.840000px;}
.x10{left:37.260000px;}
.x12{left:64.980000px;}
.x2{left:83.700000px;}
.x5{left:85.500000px;}
.x1{left:95.796000px;}
.x7{left:103.767000px;}
.x1c{left:106.770000px;}
.x1b{left:109.830000px;}
.x1a{left:113.070000px;}
.x14{left:127.980000px;}
.x13{left:131.070000px;}
.x8{left:148.896000px;}
.xa{left:153.749987px;}
.xb{left:170.309987px;}
.x16{left:187.785000px;}
.x17{left:202.530000px;}
.xf{left:223.770000px;}
.xe{left:361.515000px;}
.x18{left:436.395000px;}
.x4{left:594.645000px;}
.xc{left:723.389987px;}
.xd{left:742.289987px;}
.x9{left:759.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.560000pt;}
.ls8{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.069333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls14{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.021760pt;}
.ls6{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.184960pt;}
.lsb{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.263040pt;}
.lsc{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.282667pt;}
.ls7{letter-spacing:0.304000pt;}
.lsd{letter-spacing:2.656000pt;}
.ls2{letter-spacing:15.024000pt;}
.ls4{letter-spacing:23.776000pt;}
.ls15{letter-spacing:41.696000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws9{word-spacing:-14.640000pt;}
.ws8{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.480000pt;}
.ws0{word-spacing:-14.448000pt;}
.ws7{word-spacing:-14.368000pt;}
.wsa{word-spacing:-14.256000pt;}
.ws6{word-spacing:-14.208000pt;}
.wsd{word-spacing:-12.928640pt;}
.wsc{word-spacing:-12.906880pt;}
.wse{word-spacing:-12.837547pt;}
.ws3{word-spacing:-0.480000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.144000pt;}
.ws4{word-spacing:0.448000pt;}
._b{margin-left:-3.480916pt;}
._1{margin-left:-2.572417pt;}
._2{margin-left:-1.038714pt;}
._0{width:1.013333pt;}
._4{width:1.998714pt;}
._3{width:3.120000pt;}
._5{width:4.704000pt;}
._6{width:6.144000pt;}
._7{width:7.369380pt;}
._11{width:8.543812pt;}
._e{width:9.600000pt;}
._8{width:10.896000pt;}
._9{width:12.384000pt;}
._12{width:13.418854pt;}
._c{width:17.536000pt;}
._d{width:18.480000pt;}
._f{width:20.064000pt;}
._10{width:21.120000pt;}
._14{width:22.010667pt;}
._a{width:23.258667pt;}
._13{width:42.096000pt;}
._15{width:45.744000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:2.240000pt;}
.y103{bottom:6.240000pt;}
.y106{bottom:6.400000pt;}
.y110{bottom:6.720000pt;}
.yff{bottom:6.880000pt;}
.yeb{bottom:10.240000pt;}
.yed{bottom:10.280000pt;}
.y6{bottom:10.720000pt;}
.y8{bottom:10.760000pt;}
.y101{bottom:11.840000pt;}
.ye9{bottom:16.480000pt;}
.y11b{bottom:17.306667pt;}
.y10a{bottom:18.880000pt;}
.ya{bottom:19.840000pt;}
.y10f{bottom:20.640000pt;}
.yfe{bottom:20.800000pt;}
.yea{bottom:22.720000pt;}
.yef{bottom:22.880000pt;}
.y5{bottom:24.640000pt;}
.yfa{bottom:28.826667pt;}
.y3{bottom:29.120000pt;}
.yf2{bottom:35.200000pt;}
.yfc{bottom:35.226667pt;}
.y2c{bottom:39.552000pt;}
.yf4{bottom:47.360000pt;}
.yf8{bottom:47.520000pt;}
.yfb{bottom:47.546667pt;}
.yf7{bottom:60.000000pt;}
.y2d{bottom:60.352000pt;}
.y2b{bottom:61.472000pt;}
.yf6{bottom:72.320000pt;}
.y29{bottom:75.072000pt;}
.yc9{bottom:79.072000pt;}
.ye7{bottom:81.632000pt;}
.y98{bottom:83.072000pt;}
.yf5{bottom:84.800000pt;}
.y66{bottom:87.712000pt;}
.y28{bottom:88.992000pt;}
.yc8{bottom:92.992000pt;}
.ye6{bottom:95.552000pt;}
.y97{bottom:97.152000pt;}
.y131{bottom:97.792000pt;}
.y65{bottom:101.632000pt;}
.y27{bottom:102.912000pt;}
.yc7{bottom:106.912000pt;}
.ye5{bottom:109.632000pt;}
.y130{bottom:111.712000pt;}
.y64{bottom:115.552000pt;}
.y26{bottom:116.832000pt;}
.y96{bottom:119.072000pt;}
.ye4{bottom:123.552000pt;}
.y12f{bottom:125.632000pt;}
.yc6{bottom:128.832000pt;}
.y63{bottom:129.472000pt;}
.y25{bottom:130.912000pt;}
.y95{bottom:140.986667pt;}
.yc5{bottom:142.746667pt;}
.y24{bottom:144.826667pt;}
.ye3{bottom:145.466667pt;}
.y12e{bottom:147.546667pt;}
.y62{bottom:151.386667pt;}
.yc4{bottom:156.666667pt;}
.y15f{bottom:156.826667pt;}
.y23{bottom:158.746667pt;}
.y12d{bottom:161.466667pt;}
.y94{bottom:162.906667pt;}
.ye2{bottom:167.386667pt;}
.yc3{bottom:170.586667pt;}
.y15e{bottom:170.746667pt;}
.y61{bottom:173.306667pt;}
.y12c{bottom:175.386667pt;}
.y22{bottom:180.666667pt;}
.ye1{bottom:181.306667pt;}
.y15d{bottom:184.666667pt;}
.y93{bottom:184.826667pt;}
.y60{bottom:187.226667pt;}
.y12b{bottom:189.306667pt;}
.yc2{bottom:192.506667pt;}
.y21{bottom:194.586667pt;}
.ye0{bottom:200.506667pt;}
.y5f{bottom:201.146667pt;}
.y12a{bottom:203.386667pt;}
.yc1{bottom:206.426667pt;}
.y15c{bottom:206.586667pt;}
.y92{bottom:206.746667pt;}
.y20{bottom:208.506667pt;}
.y129{bottom:217.306667pt;}
.yc0{bottom:220.346667pt;}
.y15b{bottom:220.506667pt;}
.y1f{bottom:222.426667pt;}
.y5e{bottom:223.066667pt;}
.y91{bottom:228.666667pt;}
.y128{bottom:231.226667pt;}
.ybf{bottom:234.426667pt;}
.y15a{bottom:242.426667pt;}
.y1e{bottom:244.346667pt;}
.y5d{bottom:244.986667pt;}
.ybe{bottom:248.346667pt;}
.y90{bottom:250.626667pt;}
.y127{bottom:253.186667pt;}
.y159{bottom:256.546667pt;}
.y1d{bottom:258.306667pt;}
.y5c{bottom:258.946667pt;}
.ybd{bottom:262.306667pt;}
.y126{bottom:265.666667pt;}
.y158{bottom:270.466667pt;}
.y1c{bottom:272.226667pt;}
.y8f{bottom:272.546667pt;}
.y5b{bottom:272.866667pt;}
.ybc{bottom:276.226667pt;}
.y125{bottom:283.426667pt;}
.y1b{bottom:286.146667pt;}
.y5a{bottom:286.946667pt;}
.y157{bottom:292.386667pt;}
.y8e{bottom:294.466667pt;}
.ybb{bottom:298.146667pt;}
.y1a{bottom:300.066667pt;}
.y59{bottom:300.866667pt;}
.y124{bottom:301.186667pt;}
.y156{bottom:306.306667pt;}
.yba{bottom:312.066667pt;}
.y19{bottom:314.146667pt;}
.y58{bottom:314.786667pt;}
.y8d{bottom:316.386667pt;}
.y123{bottom:318.786667pt;}
.y155{bottom:320.226667pt;}
.y18{bottom:328.066667pt;}
.y57{bottom:328.706667pt;}
.yb9{bottom:333.986667pt;}
.y8c{bottom:338.466667pt;}
.y154{bottom:342.146667pt;}
.y56{bottom:342.626667pt;}
.yb8{bottom:347.906667pt;}
.y17{bottom:349.986667pt;}
.y153{bottom:356.066667pt;}
.y8b{bottom:360.386667pt;}
.yb7{bottom:361.826667pt;}
.y122{bottom:362.146667pt;}
.y16{bottom:363.906667pt;}
.y55{bottom:364.546667pt;}
.yb6{bottom:375.746667pt;}
.y15{bottom:377.826667pt;}
.y152{bottom:377.986667pt;}
.y54{bottom:378.466667pt;}
.y8a{bottom:382.306667pt;}
.y121{bottom:384.066667pt;}
.yb5{bottom:389.666667pt;}
.y14{bottom:391.746667pt;}
.y151{bottom:391.906667pt;}
.y120{bottom:395.906667pt;}
.y89{bottom:396.226667pt;}
.y53{bottom:400.386667pt;}
.y13{bottom:405.666667pt;}
.y150{bottom:405.826667pt;}
.y88{bottom:410.146667pt;}
.yb4{bottom:411.586667pt;}
.y11f{bottom:413.666667pt;}
.y52{bottom:414.306667pt;}
.y12{bottom:419.586667pt;}
.y14f{bottom:419.746667pt;}
.y87{bottom:424.066667pt;}
.y11e{bottom:431.426667pt;}
.y11{bottom:433.506667pt;}
.yb3{bottom:433.666667pt;}
.y51{bottom:436.226667pt;}
.y14e{bottom:441.666667pt;}
.y86{bottom:445.986667pt;}
.y10{bottom:447.426667pt;}
.y11d{bottom:449.026667pt;}
.yb2{bottom:455.586667pt;}
.y50{bottom:458.146667pt;}
.yf{bottom:461.346667pt;}
.ydf{bottom:463.586667pt;}
.y14d{bottom:463.746667pt;}
.y11c{bottom:466.786667pt;}
.y85{bottom:467.906667pt;}
.yb1{bottom:469.506667pt;}
.yf9{bottom:478.466667pt;}
.ye{bottom:479.266667pt;}
.y4f{bottom:480.226667pt;}
.y84{bottom:481.826667pt;}
.y11a{bottom:484.546667pt;}
.yde{bottom:485.506667pt;}
.y14c{bottom:485.666667pt;}
.yb0{bottom:491.426667pt;}
.y83{bottom:495.746667pt;}
.y14b{bottom:499.586667pt;}
.y4e{bottom:502.173333pt;}
.ydd{bottom:507.453333pt;}
.y82{bottom:509.693333pt;}
.y119{bottom:513.213333pt;}
.yaf{bottom:513.373333pt;}
.y14a{bottom:513.533333pt;}
.y2a{bottom:521.213333pt;}
.y81{bottom:523.613333pt;}
.y4d{bottom:524.893333pt;}
.y149{bottom:527.453333pt;}
.ydc{bottom:529.373333pt;}
.yae{bottom:535.293333pt;}
.yf3{bottom:537.373333pt;}
.y80{bottom:537.693333pt;}
.y4c{bottom:547.613333pt;}
.y148{bottom:549.373333pt;}
.ydb{bottom:551.293333pt;}
.y7f{bottom:551.613333pt;}
.y118{bottom:556.413333pt;}
.yad{bottom:557.213333pt;}
.y7e{bottom:565.533333pt;}
.y4b{bottom:570.333333pt;}
.y147{bottom:571.293333pt;}
.yda{bottom:573.213333pt;}
.yac{bottom:579.133333pt;}
.y7d{bottom:579.453333pt;}
.y4a{bottom:584.253333pt;}
.y117{bottom:588.253333pt;}
.y146{bottom:593.213333pt;}
.y7c{bottom:593.373333pt;}
.yd9{bottom:595.133333pt;}
.yd{bottom:596.412000pt;}
.y116{bottom:600.253333pt;}
.yab{bottom:601.053333pt;}
.y49{bottom:606.973333pt;}
.y145{bottom:615.133333pt;}
.y7b{bottom:615.293333pt;}
.yd8{bottom:617.053333pt;}
.y115{bottom:617.853333pt;}
.yc{bottom:618.332000pt;}
.y48{bottom:620.893333pt;}
.yaa{bottom:622.973333pt;}
.yf1{bottom:633.373333pt;}
.y47{bottom:634.813333pt;}
.y114{bottom:635.613333pt;}
.y144{bottom:637.053333pt;}
.y7a{bottom:637.213333pt;}
.yd7{bottom:638.973333pt;}
.ya9{bottom:644.893333pt;}
.yb{bottom:647.773333pt;}
.y113{bottom:653.373333pt;}
.y46{bottom:657.533333pt;}
.y143{bottom:658.973333pt;}
.y79{bottom:659.133333pt;}
.yd6{bottom:660.893333pt;}
.ya8{bottom:666.813333pt;}
.y112{bottom:671.133333pt;}
.y45{bottom:671.453333pt;}
.y78{bottom:673.053333pt;}
.yf0{bottom:679.933333pt;}
.y142{bottom:680.893333pt;}
.yd5{bottom:682.813333pt;}
.y44{bottom:685.373333pt;}
.y77{bottom:686.973333pt;}
.y111{bottom:688.733333pt;}
.ya7{bottom:688.893333pt;}
.y9{bottom:693.053333pt;}
.y43{bottom:699.293333pt;}
.y76{bottom:700.893333pt;}
.y141{bottom:702.973333pt;}
.yd4{bottom:704.893333pt;}
.ya6{bottom:710.813333pt;}
.y42{bottom:713.213333pt;}
.yee{bottom:714.013333pt;}
.y75{bottom:714.813333pt;}
.y10e{bottom:717.533333pt;}
.y140{bottom:724.893333pt;}
.yd3{bottom:726.813333pt;}
.ya5{bottom:732.733333pt;}
.y41{bottom:736.093333pt;}
.y74{bottom:736.893333pt;}
.y13f{bottom:738.813333pt;}
.y7{bottom:746.653333pt;}
.yec{bottom:748.093333pt;}
.yd2{bottom:748.733333pt;}
.y40{bottom:750.013333pt;}
.y73{bottom:750.813333pt;}
.y13e{bottom:752.733333pt;}
.ya4{bottom:754.693333pt;}
.y10d{bottom:760.773333pt;}
.y13d{bottom:766.693333pt;}
.ye8{bottom:769.893333pt;}
.yd1{bottom:770.693333pt;}
.y3f{bottom:772.773333pt;}
.y10c{bottom:774.693333pt;}
.ya3{bottom:776.613333pt;}
.y13c{bottom:780.613333pt;}
.y72{bottom:786.693333pt;}
.y2{bottom:791.813333pt;}
.yd0{bottom:792.613333pt;}
.y3e{bottom:794.693333pt;}
.y10b{bottom:796.613333pt;}
.ya2{bottom:798.533333pt;}
.y71{bottom:800.613333pt;}
.y13b{bottom:803.333333pt;}
.y3d{bottom:808.613333pt;}
.y109{bottom:809.093333pt;}
.y4{bottom:814.533333pt;}
.y13a{bottom:817.253333pt;}
.ya1{bottom:820.453333pt;}
.y70{bottom:828.453333pt;}
.y3c{bottom:830.533333pt;}
.ycf{bottom:836.453333pt;}
.y108{bottom:839.333333pt;}
.y139{bottom:839.973333pt;}
.y6f{bottom:842.373333pt;}
.y3b{bottom:852.453333pt;}
.y138{bottom:853.893333pt;}
.y6e{bottom:856.293333pt;}
.y107{bottom:856.933333pt;}
.yce{bottom:858.373333pt;}
.ya0{bottom:864.293333pt;}
.y6d{bottom:870.213333pt;}
.ycd{bottom:872.293333pt;}
.y3a{bottom:874.373333pt;}
.y105{bottom:874.693333pt;}
.y137{bottom:876.613333pt;}
.y9f{bottom:878.213333pt;}
.y6c{bottom:884.133333pt;}
.ycc{bottom:886.213333pt;}
.y39{bottom:888.293333pt;}
.y136{bottom:890.533333pt;}
.y9e{bottom:892.133333pt;}
.y104{bottom:892.453333pt;}
.y38{bottom:902.213333pt;}
.y135{bottom:904.613333pt;}
.y1{bottom:905.573333pt;}
.y6b{bottom:906.053333pt;}
.ycb{bottom:908.133333pt;}
.y102{bottom:910.213333pt;}
.y9d{bottom:914.053333pt;}
.y37{bottom:916.133333pt;}
.y134{bottom:918.533333pt;}
.yca{bottom:922.053333pt;}
.y100{bottom:927.813333pt;}
.y6a{bottom:928.133333pt;}
.y36{bottom:930.053333pt;}
.y9c{bottom:936.133333pt;}
.y133{bottom:941.253333pt;}
.y35{bottom:944.133333pt;}
.y69{bottom:950.053333pt;}
.y132{bottom:955.173333pt;}
.yfd{bottom:956.453333pt;}
.y34{bottom:958.053333pt;}
.y68{bottom:963.973333pt;}
.y33{bottom:971.973333pt;}
.y9b{bottom:977.893333pt;}
.y32{bottom:985.893333pt;}
.y9a{bottom:991.813333pt;}
.y31{bottom:999.813333pt;}
.y67{bottom:1007.840000pt;}
.y99{bottom:1013.760000pt;}
.y30{bottom:1021.760000pt;}
.y2f{bottom:1035.680000pt;}
.h9{height:12.160000pt;}
.h16{height:16.320000pt;}
.h17{height:16.480000pt;}
.he{height:20.352000pt;}
.h5{height:21.920000pt;}
.h6{height:21.952000pt;}
.h15{height:27.360000pt;}
.h1a{height:27.392000pt;}
.h18{height:28.800000pt;}
.h19{height:31.840000pt;}
.h14{height:32.000000pt;}
.hc{height:32.640000pt;}
.h10{height:32.800000pt;}
.h4{height:35.840000pt;}
.hd{height:39.027500pt;}
.hf{height:40.158125pt;}
.h8{height:43.687500pt;}
.ha{height:44.073883pt;}
.h2{height:44.953125pt;}
.h11{height:45.120000pt;}
.hb{height:49.336436pt;}
.h7{height:52.960000pt;}
.h13{height:57.472000pt;}
.h3{height:58.560000pt;}
.h12{height:94.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:5.760000pt;}
.we{width:121.632000pt;}
.w10{width:121.952000pt;}
.wb{width:187.706667pt;}
.w9{width:188.026667pt;}
.w3{width:188.826667pt;}
.w14{width:206.906667pt;}
.w16{width:207.226667pt;}
.w15{width:212.666667pt;}
.w17{width:212.986667pt;}
.wf{width:244.826667pt;}
.w11{width:245.146667pt;}
.wc{width:310.946667pt;}
.wa{width:311.266667pt;}
.w12{width:367.106667pt;}
.wd{width:367.746667pt;}
.w13{width:420.866667pt;}
.w2{width:453.533333pt;}
.w19{width:480.733333pt;}
.w18{width:481.533333pt;}
.w6{width:632.253333pt;}
.w5{width:642.053333pt;}
.w4{width:643.013333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x3{left:7.680000pt;}
.x19{left:14.080000pt;}
.x15{left:22.400000pt;}
.x11{left:30.080000pt;}
.x10{left:33.120000pt;}
.x12{left:57.760000pt;}
.x2{left:74.400000pt;}
.x5{left:76.000000pt;}
.x1{left:85.152000pt;}
.x7{left:92.237333pt;}
.x1c{left:94.906667pt;}
.x1b{left:97.626667pt;}
.x1a{left:100.506667pt;}
.x14{left:113.760000pt;}
.x13{left:116.506667pt;}
.x8{left:132.352000pt;}
.xa{left:136.666655pt;}
.xb{left:151.386655pt;}
.x16{left:166.920000pt;}
.x17{left:180.026667pt;}
.xf{left:198.906667pt;}
.xe{left:321.346667pt;}
.x18{left:387.906667pt;}
.x4{left:528.573333pt;}
.xc{left:643.013322pt;}
.xd{left:659.813322pt;}
.x9{left:674.693333pt;}
}




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