
    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_529de660e0dc0b7dfc4281fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b6ffd6e0711287624c5fa895.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_6598f6a19173ff016533a0fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_10ce79cdb47f3414ea69e282.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.806152;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_b14cc750ca58b992641892e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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);}
.m6{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v5{vertical-align:-87.840000px;}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls21{letter-spacing:-1.008000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.327000px;}
.lsc{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.137400px;}
.ls1a{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.105000px;}
.ls18{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360165px;}
.ls12{letter-spacing:0.366600px;}
.ls1f{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.762000px;}
.ls17{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.440000px;}
.lsf{letter-spacing:4.320000px;}
.ls14{letter-spacing:5.760000px;}
.ls15{letter-spacing:6.480000px;}
.ls1d{letter-spacing:9.360000px;}
.ls1b{letter-spacing:12.960000px;}
.lsa{letter-spacing:13.680000px;}
.ls20{letter-spacing:14.400000px;}
.lsb{letter-spacing:15.840000px;}
.ls22{letter-spacing:23.040000px;}
.ls24{letter-spacing:70.560000px;}
.ls11{letter-spacing:917.580000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-36.000000px;}
.ws12{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.105000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.862600px;}
.ws1{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws10{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.ws9{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.900000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.673000px;}
.wsa{word-spacing:0.000000px;}
._24{margin-left:-3.684000px;}
._1{margin-left:-1.656000px;}
._0{width:1.152000px;}
._2{width:2.310000px;}
._5{width:3.528000px;}
._6{width:5.328000px;}
._e{width:6.552000px;}
._f{width:7.776000px;}
._c{width:9.192000px;}
._d{width:10.584000px;}
._4{width:11.640000px;}
._b{width:12.888000px;}
._3{width:13.944000px;}
._9{width:15.012000px;}
._13{width:16.968000px;}
._a{width:19.344000px;}
._15{width:21.096000px;}
._14{width:22.296000px;}
._18{width:23.304000px;}
._19{width:24.648000px;}
._7{width:26.496000px;}
._8{width:28.068000px;}
._12{width:29.100000px;}
._10{width:30.672000px;}
._17{width:31.764000px;}
._20{width:33.204000px;}
._11{width:34.560000px;}
._1b{width:41.184000px;}
._1c{width:42.264000px;}
._1e{width:46.512000px;}
._1f{width:47.808000px;}
._16{width:66.960000px;}
._21{width:69.768000px;}
._22{width:71.064000px;}
._25{width:119.592000px;}
._26{width:120.756000px;}
._1d{width:147.864000px;}
._1a{width:197.436000px;}
._23{width:241.536000px;}
.fc3{color:rgb(17,85,204);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:5.040000px;}
.yee{bottom:5.214000px;}
.ye0{bottom:5.220000px;}
.y102{bottom:7.200000px;}
.y100{bottom:7.380000px;}
.y104{bottom:11.205000px;}
.yed{bottom:15.834000px;}
.ye9{bottom:15.840000px;}
.ye4{bottom:15.885000px;}
.yde{bottom:16.200000px;}
.y10c{bottom:19.980000px;}
.y108{bottom:20.160000px;}
.y103{bottom:30.105000px;}
.yfe{bottom:33.705000px;}
.yf9{bottom:58.320000px;}
.y7{bottom:58.356000px;}
.y6{bottom:79.056000px;}
.y3a{bottom:109.836000px;}
.y13e{bottom:115.596000px;}
.y12d{bottom:116.676000px;}
.y153{bottom:120.096000px;}
.y95{bottom:121.896000px;}
.y39{bottom:127.116000px;}
.y69{bottom:130.716000px;}
.y13d{bottom:137.376000px;}
.y12c{bottom:138.456000px;}
.y152{bottom:141.876000px;}
.y94{bottom:143.676000px;}
.y38{bottom:145.116000px;}
.yec{bottom:145.656000px;}
.yc0{bottom:146.556000px;}
.y68{bottom:152.490000px;}
.y13c{bottom:159.150000px;}
.y12b{bottom:160.050000px;}
.y151{bottom:163.470000px;}
.y93{bottom:165.450000px;}
.yeb{bottom:167.070000px;}
.ybf{bottom:168.330000px;}
.y67{bottom:174.270000px;}
.y13b{bottom:180.930000px;}
.y12a{bottom:181.830000px;}
.y37{bottom:182.190000px;}
.y150{bottom:185.250000px;}
.yea{bottom:188.310000px;}
.y92{bottom:188.670000px;}
.ybe{bottom:189.930000px;}
.y66{bottom:196.050000px;}
.y13a{bottom:202.530000px;}
.y129{bottom:203.610000px;}
.y36{bottom:204.510000px;}
.y14f{bottom:208.650000px;}
.ye8{bottom:210.270000px;}
.ybd{bottom:211.710000px;}
.y91{bottom:212.070000px;}
.y65{bottom:217.650000px;}
.y139{bottom:224.310000px;}
.y35{bottom:226.830000px;}
.y14e{bottom:230.250000px;}
.ye7{bottom:231.690000px;}
.ybc{bottom:233.490000px;}
.y64{bottom:239.430000px;}
.y138{bottom:246.090000px;}
.y128{bottom:248.610000px;}
.y34{bottom:249.150000px;}
.y14d{bottom:252.030000px;}
.ye6{bottom:252.930000px;}
.ybb{bottom:255.090000px;}
.y63{bottom:261.210000px;}
.y90{bottom:262.110000px;}
.y137{bottom:267.690000px;}
.y127{bottom:270.390000px;}
.y33{bottom:271.470000px;}
.ye3{bottom:275.070000px;}
.y14c{bottom:275.250000px;}
.yba{bottom:276.870000px;}
.y62{bottom:283.035000px;}
.y136{bottom:289.515000px;}
.y126{bottom:292.035000px;}
.y112{bottom:292.530000px;}
.y32{bottom:293.835000px;}
.ye2{bottom:296.355000px;}
.y14b{bottom:297.075000px;}
.yb9{bottom:298.695000px;}
.y61{bottom:304.635000px;}
.y135{bottom:311.295000px;}
.y125{bottom:313.815000px;}
.y31{bottom:316.155000px;}
.ye1{bottom:317.595000px;}
.y14a{bottom:318.855000px;}
.yb8{bottom:320.475000px;}
.y60{bottom:326.415000px;}
.y134{bottom:333.075000px;}
.y111{bottom:333.975000px;}
.y8f{bottom:334.515000px;}
.y124{bottom:335.595000px;}
.ydd{bottom:339.735000px;}
.y30{bottom:340.275000px;}
.yb7{bottom:342.075000px;}
.y5f{bottom:348.195000px;}
.y133{bottom:354.675000px;}
.y8e{bottom:356.295000px;}
.y123{bottom:357.375000px;}
.ydf{bottom:361.695000px;}
.y2f{bottom:362.415000px;}
.yb6{bottom:363.855000px;}
.y5e{bottom:369.975000px;}
.y110{bottom:375.375000px;}
.y8d{bottom:378.075000px;}
.y122{bottom:378.975000px;}
.y2e{bottom:383.115000px;}
.yb5{bottom:385.635000px;}
.y5d{bottom:391.575000px;}
.y10f{bottom:393.735000px;}
.y8c{bottom:399.855000px;}
.ydc{bottom:403.815000px;}
.yb4{bottom:408.855000px;}
.y5c{bottom:414.975000px;}
.y10e{bottom:419.295000px;}
.y8b{bottom:421.455000px;}
.y121{bottom:421.635000px;}
.ydb{bottom:422.895000px;}
.y2d{bottom:424.875000px;}
.y149{bottom:430.635000px;}
.yb3{bottom:432.255000px;}
.y5b{bottom:436.575000px;}
.yda{bottom:441.435000px;}
.y8a{bottom:443.235000px;}
.y10d{bottom:444.855000px;}
.y2c{bottom:447.015000px;}
.y148{bottom:452.415000px;}
.yb2{bottom:455.115000px;}
.y5a{bottom:458.355000px;}
.yd9{bottom:461.235000px;}
.y120{bottom:463.035000px;}
.y89{bottom:465.015000px;}
.y2b{bottom:470.955000px;}
.y10b{bottom:471.345000px;}
.y147{bottom:475.635000px;}
.yb1{bottom:478.875000px;}
.y59{bottom:480.135000px;}
.yd8{bottom:483.015000px;}
.y11f{bottom:485.175000px;}
.y88{bottom:486.795000px;}
.y2a{bottom:493.275000px;}
.y10a{bottom:496.905000px;}
.y146{bottom:497.415000px;}
.yb0{bottom:500.655000px;}
.y58{bottom:501.915000px;}
.yd7{bottom:504.795000px;}
.y11e{bottom:506.955000px;}
.y87{bottom:508.395000px;}
.y29{bottom:515.595000px;}
.y145{bottom:519.195000px;}
.yaf{bottom:522.255000px;}
.y109{bottom:522.465000px;}
.y57{bottom:523.515000px;}
.yd6{bottom:526.395000px;}
.y11d{bottom:528.555000px;}
.y86{bottom:530.175000px;}
.y28{bottom:537.915000px;}
.y144{bottom:542.415000px;}
.yae{bottom:544.035000px;}
.y56{bottom:545.295000px;}
.y107{bottom:548.745000px;}
.y11c{bottom:550.335000px;}
.y85{bottom:551.955000px;}
.y27{bottom:560.235000px;}
.y143{bottom:564.225000px;}
.yad{bottom:565.845000px;}
.y55{bottom:567.105000px;}
.yd5{bottom:569.085000px;}
.y11b{bottom:572.145000px;}
.y132{bottom:573.765000px;}
.y106{bottom:574.305000px;}
.y84{bottom:575.205000px;}
.y26{bottom:582.765000px;}
.y142{bottom:586.005000px;}
.yac{bottom:587.625000px;}
.y54{bottom:588.885000px;}
.y11a{bottom:593.925000px;}
.y131{bottom:595.365000px;}
.y83{bottom:596.985000px;}
.y105{bottom:599.865000px;}
.y25{bottom:605.085000px;}
.yab{bottom:609.225000px;}
.y53{bottom:610.485000px;}
.y119{bottom:615.525000px;}
.y130{bottom:617.145000px;}
.y82{bottom:618.765000px;}
.yfd{bottom:626.145000px;}
.y24{bottom:627.405000px;}
.yaa{bottom:631.005000px;}
.y52{bottom:632.265000px;}
.yd4{bottom:632.625000px;}
.y118{bottom:637.305000px;}
.y12f{bottom:638.925000px;}
.y81{bottom:640.545000px;}
.y23{bottom:649.725000px;}
.y101{bottom:652.650000px;}
.ya9{bottom:652.785000px;}
.y51{bottom:654.045000px;}
.yd3{bottom:654.405000px;}
.y117{bottom:659.085000px;}
.y12e{bottom:660.705000px;}
.y80{bottom:662.145000px;}
.y22{bottom:672.045000px;}
.ya8{bottom:674.385000px;}
.yd2{bottom:676.005000px;}
.y50{bottom:677.265000px;}
.yff{bottom:678.930000px;}
.y116{bottom:682.305000px;}
.y7f{bottom:683.925000px;}
.y21{bottom:694.365000px;}
.ya7{bottom:697.785000px;}
.y4f{bottom:699.045000px;}
.y115{bottom:704.085000px;}
.y7e{bottom:705.705000px;}
.yfc{bottom:711.150000px;}
.y20{bottom:716.685000px;}
.yd1{bottom:719.565000px;}
.y4e{bottom:720.825000px;}
.ya6{bottom:721.005000px;}
.yf7{bottom:725.865000px;}
.y7d{bottom:727.485000px;}
.yfb{bottom:731.490000px;}
.y1f{bottom:739.005000px;}
.y141{bottom:741.165000px;}
.yd0{bottom:741.345000px;}
.y4d{bottom:742.605000px;}
.ya5{bottom:744.045000px;}
.yf6{bottom:747.645000px;}
.y7c{bottom:749.085000px;}
.yfa{bottom:750.030000px;}
.y1e{bottom:761.325000px;}
.ycf{bottom:762.945000px;}
.y4c{bottom:764.205000px;}
.y140{bottom:764.565000px;}
.ya4{bottom:767.805000px;}
.yf5{bottom:769.245000px;}
.y7b{bottom:770.865000px;}
.y1d{bottom:783.825000px;}
.yce{bottom:784.725000px;}
.y4b{bottom:785.985000px;}
.y15a{bottom:786.345000px;}
.y13f{bottom:787.425000px;}
.ya3{bottom:789.405000px;}
.yf4{bottom:791.025000px;}
.y7a{bottom:792.645000px;}
.y1c{bottom:805.065000px;}
.ycd{bottom:806.505000px;}
.y4a{bottom:807.765000px;}
.y159{bottom:807.945000px;}
.ya2{bottom:811.185000px;}
.yf3{bottom:812.805000px;}
.y79{bottom:814.245000px;}
.y1b{bottom:820.545000px;}
.yf8{bottom:825.480000px;}
.ycc{bottom:828.105000px;}
.y49{bottom:829.545000px;}
.y158{bottom:831.345000px;}
.ya1{bottom:832.965000px;}
.yf2{bottom:834.405000px;}
.y19{bottom:836.025000px;}
.y1a{bottom:841.965000px;}
.ycb{bottom:849.930000px;}
.y48{bottom:851.190000px;}
.y17{bottom:851.550000px;}
.y157{bottom:853.170000px;}
.ya0{bottom:854.610000px;}
.yf1{bottom:856.230000px;}
.y18{bottom:857.490000px;}
.y78{bottom:857.850000px;}
.y16{bottom:867.210000px;}
.yca{bottom:871.710000px;}
.y47{bottom:872.970000px;}
.y156{bottom:874.770000px;}
.y9f{bottom:876.390000px;}
.yf0{bottom:878.010000px;}
.y77{bottom:879.630000px;}
.y15{bottom:888.630000px;}
.yc9{bottom:893.490000px;}
.y46{bottom:894.750000px;}
.y14{bottom:898.170000px;}
.yef{bottom:899.790000px;}
.y76{bottom:901.230000px;}
.y13{bottom:913.650000px;}
.yc8{bottom:915.090000px;}
.y155{bottom:919.950000px;}
.y9e{bottom:921.390000px;}
.y75{bottom:923.010000px;}
.y12{bottom:929.310000px;}
.yc7{bottom:936.870000px;}
.y45{bottom:937.410000px;}
.y154{bottom:941.550000px;}
.y9d{bottom:943.170000px;}
.y11{bottom:944.790000px;}
.y44{bottom:958.290000px;}
.yc6{bottom:958.650000px;}
.y10{bottom:960.270000px;}
.y9c{bottom:964.950000px;}
.y74{bottom:966.570000px;}
.yc5{bottom:980.250000px;}
.y43{bottom:980.610000px;}
.yf{bottom:981.690000px;}
.y9b{bottom:986.730000px;}
.y73{bottom:988.170000px;}
.ye{bottom:992.490000px;}
.yc4{bottom:1003.650000px;}
.y42{bottom:1004.550000px;}
.y9a{bottom:1008.330000px;}
.y72{bottom:1009.950000px;}
.yc{bottom:1012.470000px;}
.yd{bottom:1019.310000px;}
.yc3{bottom:1026.870000px;}
.y41{bottom:1028.490000px;}
.yb{bottom:1029.750000px;}
.y99{bottom:1030.110000px;}
.y71{bottom:1031.730000px;}
.ya{bottom:1047.750000px;}
.yc2{bottom:1050.270000px;}
.y40{bottom:1050.810000px;}
.y98{bottom:1051.890000px;}
.y70{bottom:1053.510000px;}
.y9{bottom:1068.090000px;}
.y3f{bottom:1073.130000px;}
.yc1{bottom:1073.490000px;}
.y97{bottom:1073.670000px;}
.y6f{bottom:1075.110000px;}
.y8{bottom:1088.790000px;}
.y96{bottom:1095.270000px;}
.y3e{bottom:1095.450000px;}
.y6e{bottom:1096.890000px;}
.y5{bottom:1109.850000px;}
.y114{bottom:1117.050000px;}
.y3d{bottom:1117.770000px;}
.y6d{bottom:1118.670000px;}
.y4{bottom:1130.580000px;}
.y113{bottom:1138.860000px;}
.y3c{bottom:1140.300000px;}
.y6c{bottom:1140.480000px;}
.y3{bottom:1151.280000px;}
.y2{bottom:1171.980000px;}
.y6b{bottom:1178.100000px;}
.y3b{bottom:1192.320000px;}
.y1{bottom:1192.680000px;}
.y6a{bottom:1195.380000px;}
.hf{height:21.240000px;}
.h12{height:21.276000px;}
.he{height:21.420000px;}
.h17{height:25.560000px;}
.h19{height:25.596000px;}
.h7{height:35.332031px;}
.h6{height:38.158594px;}
.h11{height:42.516000px;}
.h13{height:42.660000px;}
.hd{height:43.380000px;}
.h1a{height:51.120000px;}
.h18{height:52.056000px;}
.h1b{height:52.066406px;}
.h9{height:52.998047px;}
.h5{height:58.651172px;}
.h8{height:59.092031px;}
.h10{height:64.978594px;}
.hc{height:65.010937px;}
.h4{height:65.518594px;}
.hb{height:66.757500px;}
.ha{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h16{height:78.336000px;}
.h14{height:892.980000px;}
.h15{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:22.320000px;}
.w6{width:22.860000px;}
.w3{width:23.040000px;}
.w19{width:55.440000px;}
.w1d{width:55.476000px;}
.w8{width:56.340000px;}
.wb{width:56.520000px;}
.w9{width:62.100000px;}
.wc{width:62.136000px;}
.w1b{width:69.480000px;}
.w1f{width:69.660000px;}
.w17{width:71.820000px;}
.w18{width:71.856000px;}
.wd{width:73.620000px;}
.wa{width:73.656000px;}
.w1e{width:76.320000px;}
.w1a{width:76.356000px;}
.w14{width:90.900000px;}
.w7{width:93.096000px;}
.w20{width:95.760000px;}
.w1c{width:95.940000px;}
.w15{width:131.796000px;}
.w16{width:165.420000px;}
.w10{width:170.670000px;}
.w2{width:174.315000px;}
.w4{width:192.090000px;}
.w5{width:192.270000px;}
.w12{width:369.030000px;}
.w13{width:369.075000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.we{width:1262.880000px;}
.wf{width:1263.000000px;}
.x0{left:0.000000px;}
.x35{left:8.136000px;}
.x42{left:11.520000px;}
.x4b{left:16.560000px;}
.x4c{left:18.180000px;}
.x5b{left:19.800000px;}
.x3d{left:20.880000px;}
.x3e{left:24.120000px;}
.x67{left:26.460000px;}
.x46{left:28.260000px;}
.x4a{left:29.376000px;}
.x47{left:30.960000px;}
.x41{left:32.610000px;}
.x65{left:34.740000px;}
.x48{left:36.750000px;}
.x64{left:38.160000px;}
.x60{left:41.220000px;}
.x45{left:42.300000px;}
.x5f{left:45.360000px;}
.x49{left:46.440000px;}
.x66{left:47.880000px;}
.x38{left:67.140000px;}
.x1e{left:85.140000px;}
.x53{left:98.100000px;}
.x1d{left:106.416000px;}
.x1{left:127.656000px;}
.x2{left:129.816000px;}
.x25{left:133.056000px;}
.x17{left:135.216000px;}
.x3{left:137.736000px;}
.xf{left:140.796000px;}
.xe{left:143.316000px;}
.x6{left:148.356000px;}
.x56{left:155.565000px;}
.x34{left:156.630000px;}
.x18{left:158.790000px;}
.xc{left:159.870000px;}
.xd{left:162.390000px;}
.x11{left:176.970000px;}
.x10{left:183.270000px;}
.x1c{left:202.530000px;}
.x7{left:208.830000px;}
.x2b{left:221.250000px;}
.x2e{left:231.330000px;}
.x4{left:238.890000px;}
.x6c{left:242.670000px;}
.x4d{left:253.290000px;}
.x6d{left:254.910000px;}
.x26{left:258.015000px;}
.x36{left:259.275000px;}
.x54{left:268.770000px;}
.x6e{left:272.055000px;}
.x37{left:282.315000px;}
.x23{left:285.015000px;}
.x55{left:291.090000px;}
.x16{left:337.215000px;}
.x3f{left:338.655000px;}
.x61{left:346.530000px;}
.x14{left:349.455000px;}
.x2c{left:352.695000px;}
.x24{left:378.255000px;}
.x32{left:379.515000px;}
.x6f{left:392.655000px;}
.x8{left:394.995000px;}
.x2f{left:396.435000px;}
.x40{left:400.755000px;}
.x30{left:405.435000px;}
.x27{left:410.115000px;}
.x69{left:416.235000px;}
.x2a{left:422.175000px;}
.x5{left:446.505000px;}
.x70{left:457.305000px;}
.x68{left:467.745000px;}
.xb{left:473.145000px;}
.x39{left:474.405000px;}
.x62{left:492.375000px;}
.x3a{left:497.445000px;}
.x1f{left:510.945000px;}
.x33{left:513.645000px;}
.x6a{left:519.225000px;}
.x51{left:520.995000px;}
.x28{left:523.725000px;}
.x9{left:527.325000px;}
.x12{left:530.025000px;}
.x15{left:543.705000px;}
.x43{left:553.965000px;}
.x13{left:585.645000px;}
.x5c{left:588.315000px;}
.x44{left:616.110000px;}
.x52{left:631.335000px;}
.x29{left:635.010000px;}
.xa{left:638.430000px;}
.x1a{left:658.410000px;}
.x57{left:660.135000px;}
.x31{left:677.130000px;}
.x58{left:682.455000px;}
.x3b{left:689.730000px;}
.x20{left:701.610000px;}
.x3c{left:712.590000px;}
.x2d{left:713.670000px;}
.x6b{left:720.870000px;}
.x21{left:730.050000px;}
.x19{left:734.370000px;}
.x22{left:738.510000px;}
.x1b{left:757.770000px;}
.x5d{left:814.245000px;}
.x63{left:883.905000px;}
.x4e{left:910.545000px;}
.x5e{left:979.665000px;}
.x4f{left:1023.990000px;}
.x59{left:1051.530000px;}
.x5a{left:1073.850000px;}
.x50{left:1135.410000px;}
@media print{
.v5{vertical-align:-78.080000pt;}
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.290667pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.122133pt;}
.ls1a{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.093333pt;}
.ls18{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320147pt;}
.ls12{letter-spacing:0.325867pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.677333pt;}
.ls17{letter-spacing:0.768000pt;}
.ls10{letter-spacing:1.280000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls14{letter-spacing:5.120000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:11.520000pt;}
.lsa{letter-spacing:12.160000pt;}
.ls20{letter-spacing:12.800000pt;}
.lsb{letter-spacing:14.080000pt;}
.ls22{letter-spacing:20.480000pt;}
.ls24{letter-spacing:62.720000pt;}
.ls11{letter-spacing:815.626667pt;}
.ws3{word-spacing:-32.000000pt;}
.ws12{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.093333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.877867pt;}
.ws1{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws10{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.ws9{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.800000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.709333pt;}
.wsa{word-spacing:0.000000pt;}
._24{margin-left:-3.274667pt;}
._1{margin-left:-1.472000pt;}
._0{width:1.024000pt;}
._2{width:2.053333pt;}
._5{width:3.136000pt;}
._6{width:4.736000pt;}
._e{width:5.824000pt;}
._f{width:6.912000pt;}
._c{width:8.170667pt;}
._d{width:9.408000pt;}
._4{width:10.346667pt;}
._b{width:11.456000pt;}
._3{width:12.394667pt;}
._9{width:13.344000pt;}
._13{width:15.082667pt;}
._a{width:17.194667pt;}
._15{width:18.752000pt;}
._14{width:19.818667pt;}
._18{width:20.714667pt;}
._19{width:21.909333pt;}
._7{width:23.552000pt;}
._8{width:24.949333pt;}
._12{width:25.866667pt;}
._10{width:27.264000pt;}
._17{width:28.234667pt;}
._20{width:29.514667pt;}
._11{width:30.720000pt;}
._1b{width:36.608000pt;}
._1c{width:37.568000pt;}
._1e{width:41.344000pt;}
._1f{width:42.496000pt;}
._16{width:59.520000pt;}
._21{width:62.016000pt;}
._22{width:63.168000pt;}
._25{width:106.304000pt;}
._26{width:107.338667pt;}
._1d{width:131.434667pt;}
._1a{width:175.498667pt;}
._23{width:214.698667pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:4.480000pt;}
.yee{bottom:4.634667pt;}
.ye0{bottom:4.640000pt;}
.y102{bottom:6.400000pt;}
.y100{bottom:6.560000pt;}
.y104{bottom:9.960000pt;}
.yed{bottom:14.074667pt;}
.ye9{bottom:14.080000pt;}
.ye4{bottom:14.120000pt;}
.yde{bottom:14.400000pt;}
.y10c{bottom:17.760000pt;}
.y108{bottom:17.920000pt;}
.y103{bottom:26.760000pt;}
.yfe{bottom:29.960000pt;}
.yf9{bottom:51.840000pt;}
.y7{bottom:51.872000pt;}
.y6{bottom:70.272000pt;}
.y3a{bottom:97.632000pt;}
.y13e{bottom:102.752000pt;}
.y12d{bottom:103.712000pt;}
.y153{bottom:106.752000pt;}
.y95{bottom:108.352000pt;}
.y39{bottom:112.992000pt;}
.y69{bottom:116.192000pt;}
.y13d{bottom:122.112000pt;}
.y12c{bottom:123.072000pt;}
.y152{bottom:126.112000pt;}
.y94{bottom:127.712000pt;}
.y38{bottom:128.992000pt;}
.yec{bottom:129.472000pt;}
.yc0{bottom:130.272000pt;}
.y68{bottom:135.546667pt;}
.y13c{bottom:141.466667pt;}
.y12b{bottom:142.266667pt;}
.y151{bottom:145.306667pt;}
.y93{bottom:147.066667pt;}
.yeb{bottom:148.506667pt;}
.ybf{bottom:149.626667pt;}
.y67{bottom:154.906667pt;}
.y13b{bottom:160.826667pt;}
.y12a{bottom:161.626667pt;}
.y37{bottom:161.946667pt;}
.y150{bottom:164.666667pt;}
.yea{bottom:167.386667pt;}
.y92{bottom:167.706667pt;}
.ybe{bottom:168.826667pt;}
.y66{bottom:174.266667pt;}
.y13a{bottom:180.026667pt;}
.y129{bottom:180.986667pt;}
.y36{bottom:181.786667pt;}
.y14f{bottom:185.466667pt;}
.ye8{bottom:186.906667pt;}
.ybd{bottom:188.186667pt;}
.y91{bottom:188.506667pt;}
.y65{bottom:193.466667pt;}
.y139{bottom:199.386667pt;}
.y35{bottom:201.626667pt;}
.y14e{bottom:204.666667pt;}
.ye7{bottom:205.946667pt;}
.ybc{bottom:207.546667pt;}
.y64{bottom:212.826667pt;}
.y138{bottom:218.746667pt;}
.y128{bottom:220.986667pt;}
.y34{bottom:221.466667pt;}
.y14d{bottom:224.026667pt;}
.ye6{bottom:224.826667pt;}
.ybb{bottom:226.746667pt;}
.y63{bottom:232.186667pt;}
.y90{bottom:232.986667pt;}
.y137{bottom:237.946667pt;}
.y127{bottom:240.346667pt;}
.y33{bottom:241.306667pt;}
.ye3{bottom:244.506667pt;}
.y14c{bottom:244.666667pt;}
.yba{bottom:246.106667pt;}
.y62{bottom:251.586667pt;}
.y136{bottom:257.346667pt;}
.y126{bottom:259.586667pt;}
.y112{bottom:260.026667pt;}
.y32{bottom:261.186667pt;}
.ye2{bottom:263.426667pt;}
.y14b{bottom:264.066667pt;}
.yb9{bottom:265.506667pt;}
.y61{bottom:270.786667pt;}
.y135{bottom:276.706667pt;}
.y125{bottom:278.946667pt;}
.y31{bottom:281.026667pt;}
.ye1{bottom:282.306667pt;}
.y14a{bottom:283.426667pt;}
.yb8{bottom:284.866667pt;}
.y60{bottom:290.146667pt;}
.y134{bottom:296.066667pt;}
.y111{bottom:296.866667pt;}
.y8f{bottom:297.346667pt;}
.y124{bottom:298.306667pt;}
.ydd{bottom:301.986667pt;}
.y30{bottom:302.466667pt;}
.yb7{bottom:304.066667pt;}
.y5f{bottom:309.506667pt;}
.y133{bottom:315.266667pt;}
.y8e{bottom:316.706667pt;}
.y123{bottom:317.666667pt;}
.ydf{bottom:321.506667pt;}
.y2f{bottom:322.146667pt;}
.yb6{bottom:323.426667pt;}
.y5e{bottom:328.866667pt;}
.y110{bottom:333.666667pt;}
.y8d{bottom:336.066667pt;}
.y122{bottom:336.866667pt;}
.y2e{bottom:340.546667pt;}
.yb5{bottom:342.786667pt;}
.y5d{bottom:348.066667pt;}
.y10f{bottom:349.986667pt;}
.y8c{bottom:355.426667pt;}
.ydc{bottom:358.946667pt;}
.yb4{bottom:363.426667pt;}
.y5c{bottom:368.866667pt;}
.y10e{bottom:372.706667pt;}
.y8b{bottom:374.626667pt;}
.y121{bottom:374.786667pt;}
.ydb{bottom:375.906667pt;}
.y2d{bottom:377.666667pt;}
.y149{bottom:382.786667pt;}
.yb3{bottom:384.226667pt;}
.y5b{bottom:388.066667pt;}
.yda{bottom:392.386667pt;}
.y8a{bottom:393.986667pt;}
.y10d{bottom:395.426667pt;}
.y2c{bottom:397.346667pt;}
.y148{bottom:402.146667pt;}
.yb2{bottom:404.546667pt;}
.y5a{bottom:407.426667pt;}
.yd9{bottom:409.986667pt;}
.y120{bottom:411.586667pt;}
.y89{bottom:413.346667pt;}
.y2b{bottom:418.626667pt;}
.y10b{bottom:418.973333pt;}
.y147{bottom:422.786667pt;}
.yb1{bottom:425.666667pt;}
.y59{bottom:426.786667pt;}
.yd8{bottom:429.346667pt;}
.y11f{bottom:431.266667pt;}
.y88{bottom:432.706667pt;}
.y2a{bottom:438.466667pt;}
.y10a{bottom:441.693333pt;}
.y146{bottom:442.146667pt;}
.yb0{bottom:445.026667pt;}
.y58{bottom:446.146667pt;}
.yd7{bottom:448.706667pt;}
.y11e{bottom:450.626667pt;}
.y87{bottom:451.906667pt;}
.y29{bottom:458.306667pt;}
.y145{bottom:461.506667pt;}
.yaf{bottom:464.226667pt;}
.y109{bottom:464.413333pt;}
.y57{bottom:465.346667pt;}
.yd6{bottom:467.906667pt;}
.y11d{bottom:469.826667pt;}
.y86{bottom:471.266667pt;}
.y28{bottom:478.146667pt;}
.y144{bottom:482.146667pt;}
.yae{bottom:483.586667pt;}
.y56{bottom:484.706667pt;}
.y107{bottom:487.773333pt;}
.y11c{bottom:489.186667pt;}
.y85{bottom:490.626667pt;}
.y27{bottom:497.986667pt;}
.y143{bottom:501.533333pt;}
.yad{bottom:502.973333pt;}
.y55{bottom:504.093333pt;}
.yd5{bottom:505.853333pt;}
.y11b{bottom:508.573333pt;}
.y132{bottom:510.013333pt;}
.y106{bottom:510.493333pt;}
.y84{bottom:511.293333pt;}
.y26{bottom:518.013333pt;}
.y142{bottom:520.893333pt;}
.yac{bottom:522.333333pt;}
.y54{bottom:523.453333pt;}
.y11a{bottom:527.933333pt;}
.y131{bottom:529.213333pt;}
.y83{bottom:530.653333pt;}
.y105{bottom:533.213333pt;}
.y25{bottom:537.853333pt;}
.yab{bottom:541.533333pt;}
.y53{bottom:542.653333pt;}
.y119{bottom:547.133333pt;}
.y130{bottom:548.573333pt;}
.y82{bottom:550.013333pt;}
.yfd{bottom:556.573333pt;}
.y24{bottom:557.693333pt;}
.yaa{bottom:560.893333pt;}
.y52{bottom:562.013333pt;}
.yd4{bottom:562.333333pt;}
.y118{bottom:566.493333pt;}
.y12f{bottom:567.933333pt;}
.y81{bottom:569.373333pt;}
.y23{bottom:577.533333pt;}
.y101{bottom:580.133333pt;}
.ya9{bottom:580.253333pt;}
.y51{bottom:581.373333pt;}
.yd3{bottom:581.693333pt;}
.y117{bottom:585.853333pt;}
.y12e{bottom:587.293333pt;}
.y80{bottom:588.573333pt;}
.y22{bottom:597.373333pt;}
.ya8{bottom:599.453333pt;}
.yd2{bottom:600.893333pt;}
.y50{bottom:602.013333pt;}
.yff{bottom:603.493333pt;}
.y116{bottom:606.493333pt;}
.y7f{bottom:607.933333pt;}
.y21{bottom:617.213333pt;}
.ya7{bottom:620.253333pt;}
.y4f{bottom:621.373333pt;}
.y115{bottom:625.853333pt;}
.y7e{bottom:627.293333pt;}
.yfc{bottom:632.133333pt;}
.y20{bottom:637.053333pt;}
.yd1{bottom:639.613333pt;}
.y4e{bottom:640.733333pt;}
.ya6{bottom:640.893333pt;}
.yf7{bottom:645.213333pt;}
.y7d{bottom:646.653333pt;}
.yfb{bottom:650.213333pt;}
.y1f{bottom:656.893333pt;}
.y141{bottom:658.813333pt;}
.yd0{bottom:658.973333pt;}
.y4d{bottom:660.093333pt;}
.ya5{bottom:661.373333pt;}
.yf6{bottom:664.573333pt;}
.y7c{bottom:665.853333pt;}
.yfa{bottom:666.693333pt;}
.y1e{bottom:676.733333pt;}
.ycf{bottom:678.173333pt;}
.y4c{bottom:679.293333pt;}
.y140{bottom:679.613333pt;}
.ya4{bottom:682.493333pt;}
.yf5{bottom:683.773333pt;}
.y7b{bottom:685.213333pt;}
.y1d{bottom:696.733333pt;}
.yce{bottom:697.533333pt;}
.y4b{bottom:698.653333pt;}
.y15a{bottom:698.973333pt;}
.y13f{bottom:699.933333pt;}
.ya3{bottom:701.693333pt;}
.yf4{bottom:703.133333pt;}
.y7a{bottom:704.573333pt;}
.y1c{bottom:715.613333pt;}
.ycd{bottom:716.893333pt;}
.y4a{bottom:718.013333pt;}
.y159{bottom:718.173333pt;}
.ya2{bottom:721.053333pt;}
.yf3{bottom:722.493333pt;}
.y79{bottom:723.773333pt;}
.y1b{bottom:729.373333pt;}
.yf8{bottom:733.760000pt;}
.ycc{bottom:736.093333pt;}
.y49{bottom:737.373333pt;}
.y158{bottom:738.973333pt;}
.ya1{bottom:740.413333pt;}
.yf2{bottom:741.693333pt;}
.y19{bottom:743.133333pt;}
.y1a{bottom:748.413333pt;}
.ycb{bottom:755.493333pt;}
.y48{bottom:756.613333pt;}
.y17{bottom:756.933333pt;}
.y157{bottom:758.373333pt;}
.ya0{bottom:759.653333pt;}
.yf1{bottom:761.093333pt;}
.y18{bottom:762.213333pt;}
.y78{bottom:762.533333pt;}
.y16{bottom:770.853333pt;}
.yca{bottom:774.853333pt;}
.y47{bottom:775.973333pt;}
.y156{bottom:777.573333pt;}
.y9f{bottom:779.013333pt;}
.yf0{bottom:780.453333pt;}
.y77{bottom:781.893333pt;}
.y15{bottom:789.893333pt;}
.yc9{bottom:794.213333pt;}
.y46{bottom:795.333333pt;}
.y14{bottom:798.373333pt;}
.yef{bottom:799.813333pt;}
.y76{bottom:801.093333pt;}
.y13{bottom:812.133333pt;}
.yc8{bottom:813.413333pt;}
.y155{bottom:817.733333pt;}
.y9e{bottom:819.013333pt;}
.y75{bottom:820.453333pt;}
.y12{bottom:826.053333pt;}
.yc7{bottom:832.773333pt;}
.y45{bottom:833.253333pt;}
.y154{bottom:836.933333pt;}
.y9d{bottom:838.373333pt;}
.y11{bottom:839.813333pt;}
.y44{bottom:851.813333pt;}
.yc6{bottom:852.133333pt;}
.y10{bottom:853.573333pt;}
.y9c{bottom:857.733333pt;}
.y74{bottom:859.173333pt;}
.yc5{bottom:871.333333pt;}
.y43{bottom:871.653333pt;}
.yf{bottom:872.613333pt;}
.y9b{bottom:877.093333pt;}
.y73{bottom:878.373333pt;}
.ye{bottom:882.213333pt;}
.yc4{bottom:892.133333pt;}
.y42{bottom:892.933333pt;}
.y9a{bottom:896.293333pt;}
.y72{bottom:897.733333pt;}
.yc{bottom:899.973333pt;}
.yd{bottom:906.053333pt;}
.yc3{bottom:912.773333pt;}
.y41{bottom:914.213333pt;}
.yb{bottom:915.333333pt;}
.y99{bottom:915.653333pt;}
.y71{bottom:917.093333pt;}
.ya{bottom:931.333333pt;}
.yc2{bottom:933.573333pt;}
.y40{bottom:934.053333pt;}
.y98{bottom:935.013333pt;}
.y70{bottom:936.453333pt;}
.y9{bottom:949.413333pt;}
.y3f{bottom:953.893333pt;}
.yc1{bottom:954.213333pt;}
.y97{bottom:954.373333pt;}
.y6f{bottom:955.653333pt;}
.y8{bottom:967.813333pt;}
.y96{bottom:973.573333pt;}
.y3e{bottom:973.733333pt;}
.y6e{bottom:975.013333pt;}
.y5{bottom:986.533333pt;}
.y114{bottom:992.933333pt;}
.y3d{bottom:993.573333pt;}
.y6d{bottom:994.373333pt;}
.y4{bottom:1004.960000pt;}
.y113{bottom:1012.320000pt;}
.y3c{bottom:1013.600000pt;}
.y6c{bottom:1013.760000pt;}
.y3{bottom:1023.360000pt;}
.y2{bottom:1041.760000pt;}
.y6b{bottom:1047.200000pt;}
.y3b{bottom:1059.840000pt;}
.y1{bottom:1060.160000pt;}
.y6a{bottom:1062.560000pt;}
.hf{height:18.880000pt;}
.h12{height:18.912000pt;}
.he{height:19.040000pt;}
.h17{height:22.720000pt;}
.h19{height:22.752000pt;}
.h7{height:31.406250pt;}
.h6{height:33.918750pt;}
.h11{height:37.792000pt;}
.h13{height:37.920000pt;}
.hd{height:38.560000pt;}
.h1a{height:45.440000pt;}
.h18{height:46.272000pt;}
.h1b{height:46.281250pt;}
.h9{height:47.109375pt;}
.h5{height:52.134375pt;}
.h8{height:52.526250pt;}
.h10{height:57.758750pt;}
.hc{height:57.787500pt;}
.h4{height:58.238750pt;}
.hb{height:59.340000pt;}
.ha{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h16{height:69.632000pt;}
.h14{height:793.760000pt;}
.h15{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:19.840000pt;}
.w6{width:20.320000pt;}
.w3{width:20.480000pt;}
.w19{width:49.280000pt;}
.w1d{width:49.312000pt;}
.w8{width:50.080000pt;}
.wb{width:50.240000pt;}
.w9{width:55.200000pt;}
.wc{width:55.232000pt;}
.w1b{width:61.760000pt;}
.w1f{width:61.920000pt;}
.w17{width:63.840000pt;}
.w18{width:63.872000pt;}
.wd{width:65.440000pt;}
.wa{width:65.472000pt;}
.w1e{width:67.840000pt;}
.w1a{width:67.872000pt;}
.w14{width:80.800000pt;}
.w7{width:82.752000pt;}
.w20{width:85.120000pt;}
.w1c{width:85.280000pt;}
.w15{width:117.152000pt;}
.w16{width:147.040000pt;}
.w10{width:151.706667pt;}
.w2{width:154.946667pt;}
.w4{width:170.746667pt;}
.w5{width:170.906667pt;}
.w12{width:328.026667pt;}
.w13{width:328.066667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.we{width:1122.560000pt;}
.wf{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x35{left:7.232000pt;}
.x42{left:10.240000pt;}
.x4b{left:14.720000pt;}
.x4c{left:16.160000pt;}
.x5b{left:17.600000pt;}
.x3d{left:18.560000pt;}
.x3e{left:21.440000pt;}
.x67{left:23.520000pt;}
.x46{left:25.120000pt;}
.x4a{left:26.112000pt;}
.x47{left:27.520000pt;}
.x41{left:28.986667pt;}
.x65{left:30.880000pt;}
.x48{left:32.666667pt;}
.x64{left:33.920000pt;}
.x60{left:36.640000pt;}
.x45{left:37.600000pt;}
.x5f{left:40.320000pt;}
.x49{left:41.280000pt;}
.x66{left:42.560000pt;}
.x38{left:59.680000pt;}
.x1e{left:75.680000pt;}
.x53{left:87.200000pt;}
.x1d{left:94.592000pt;}
.x1{left:113.472000pt;}
.x2{left:115.392000pt;}
.x25{left:118.272000pt;}
.x17{left:120.192000pt;}
.x3{left:122.432000pt;}
.xf{left:125.152000pt;}
.xe{left:127.392000pt;}
.x6{left:131.872000pt;}
.x56{left:138.280000pt;}
.x34{left:139.226667pt;}
.x18{left:141.146667pt;}
.xc{left:142.106667pt;}
.xd{left:144.346667pt;}
.x11{left:157.306667pt;}
.x10{left:162.906667pt;}
.x1c{left:180.026667pt;}
.x7{left:185.626667pt;}
.x2b{left:196.666667pt;}
.x2e{left:205.626667pt;}
.x4{left:212.346667pt;}
.x6c{left:215.706667pt;}
.x4d{left:225.146667pt;}
.x6d{left:226.586667pt;}
.x26{left:229.346667pt;}
.x36{left:230.466667pt;}
.x54{left:238.906667pt;}
.x6e{left:241.826667pt;}
.x37{left:250.946667pt;}
.x23{left:253.346667pt;}
.x55{left:258.746667pt;}
.x16{left:299.746667pt;}
.x3f{left:301.026667pt;}
.x61{left:308.026667pt;}
.x14{left:310.626667pt;}
.x2c{left:313.506667pt;}
.x24{left:336.226667pt;}
.x32{left:337.346667pt;}
.x6f{left:349.026667pt;}
.x8{left:351.106667pt;}
.x2f{left:352.386667pt;}
.x40{left:356.226667pt;}
.x30{left:360.386667pt;}
.x27{left:364.546667pt;}
.x69{left:369.986667pt;}
.x2a{left:375.266667pt;}
.x5{left:396.893333pt;}
.x70{left:406.493333pt;}
.x68{left:415.773333pt;}
.xb{left:420.573333pt;}
.x39{left:421.693333pt;}
.x62{left:437.666667pt;}
.x3a{left:442.173333pt;}
.x1f{left:454.173333pt;}
.x33{left:456.573333pt;}
.x6a{left:461.533333pt;}
.x51{left:463.106667pt;}
.x28{left:465.533333pt;}
.x9{left:468.733333pt;}
.x12{left:471.133333pt;}
.x15{left:483.293333pt;}
.x43{left:492.413333pt;}
.x13{left:520.573333pt;}
.x5c{left:522.946667pt;}
.x44{left:547.653333pt;}
.x52{left:561.186667pt;}
.x29{left:564.453333pt;}
.xa{left:567.493333pt;}
.x1a{left:585.253333pt;}
.x57{left:586.786667pt;}
.x31{left:601.893333pt;}
.x58{left:606.626667pt;}
.x3b{left:613.093333pt;}
.x20{left:623.653333pt;}
.x3c{left:633.413333pt;}
.x2d{left:634.373333pt;}
.x6b{left:640.773333pt;}
.x21{left:648.933333pt;}
.x19{left:652.773333pt;}
.x22{left:656.453333pt;}
.x1b{left:673.573333pt;}
.x5d{left:723.773333pt;}
.x63{left:785.693333pt;}
.x4e{left:809.373333pt;}
.x5e{left:870.813333pt;}
.x4f{left:910.213333pt;}
.x59{left:934.693333pt;}
.x5a{left:954.533333pt;}
.x50{left:1009.253333pt;}
}




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