
    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_3500d24d9d29ffb4a28b132d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_f7630bed9aeb653f3b56ba7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_48d05a2af18d0ac9fcf20f18.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_95a8fcb4284541d28e650669.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_e16e3bbeeefd0419f96a622e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9f320c110ec214c9ab5c9314.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_b82227441319aac5fb7074ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d16f40b505085d7ffe41e5e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_5bebc894eae2d7c66137d917.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_c561fadeb972531fe768baad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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);}
.v9{vertical-align:-33.840000px;}
.v5{vertical-align:-28.800000px;}
.v6{vertical-align:-25.200000px;}
.v1{vertical-align:-14.400000px;}
.vc{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.v8{vertical-align:12.960000px;}
.v2{vertical-align:14.400000px;}
.vb{vertical-align:17.280000px;}
.v7{vertical-align:27.360000px;}
.v4{vertical-align:46.080000px;}
.v3{vertical-align:59.760000px;}
.ls5{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.056880px;}
.ls27{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.840000px;}
.ls2d{letter-spacing:0.864000px;}
.ls12{letter-spacing:1.512000px;}
.ls24{letter-spacing:1.800000px;}
.ls25{letter-spacing:2.081520px;}
.ls11{letter-spacing:2.376000px;}
.ls23{letter-spacing:2.801520px;}
.lsb{letter-spacing:2.808000px;}
.ls18{letter-spacing:3.427200px;}
.ls1b{letter-spacing:3.521520px;}
.ls16{letter-spacing:4.088160px;}
.lsd{letter-spacing:4.147200px;}
.ls21{letter-spacing:4.327200px;}
.ls8{letter-spacing:4.376880px;}
.ls17{letter-spacing:4.824720px;}
.ls1d{letter-spacing:4.867200px;}
.ls13{letter-spacing:5.081040px;}
.ls15{letter-spacing:5.976000px;}
.ls0{letter-spacing:11.520000px;}
.ls22{letter-spacing:11.880000px;}
.ls26{letter-spacing:14.321520px;}
.ls1a{letter-spacing:18.641520px;}
.ls10{letter-spacing:19.987200px;}
.lsa{letter-spacing:20.216880px;}
.lsf{letter-spacing:20.707200px;}
.ls9{letter-spacing:20.936880px;}
.ls1e{letter-spacing:22.961520px;}
.ls19{letter-spacing:23.587200px;}
.lse{letter-spacing:24.307200px;}
.lsc{letter-spacing:24.536880px;}
.ls7{letter-spacing:25.256880px;}
.ls14{letter-spacing:45.364320px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws1a{word-spacing:-18.504000px;}
.ws16{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.928000px;}
.ws17{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws12{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.480000px;}
.ws0{word-spacing:-14.328000px;}
.wsd{word-spacing:-11.303280px;}
.ws10{word-spacing:-11.246400px;}
.ws14{word-spacing:-3.960000px;}
.ws15{word-spacing:-3.744000px;}
.wsf{word-spacing:-2.520000px;}
.wsa{word-spacing:-0.504000px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.216000px;}
.ws18{word-spacing:0.336000px;}
.ws8{word-spacing:0.396000px;}
.wsc{word-spacing:3.672000px;}
.ws7{word-spacing:3.816000px;}
.ws9{word-spacing:4.392000px;}
.ws11{word-spacing:4.536000px;}
.wse{word-spacing:12.904560px;}
._1d{margin-left:-8.388000px;}
._1c{margin-left:-7.140000px;}
._1f{margin-left:-5.672880px;}
._20{margin-left:-4.592880px;}
._1e{margin-left:-3.543120px;}
._1b{margin-left:-2.232000px;}
._0{margin-left:-1.080000px;}
._2{width:1.008000px;}
._1{width:2.136000px;}
._3{width:3.672000px;}
._4{width:5.112000px;}
._13{width:6.120000px;}
._11{width:8.064000px;}
._12{width:9.096000px;}
._d{width:10.200000px;}
._c{width:11.352000px;}
._f{width:12.816000px;}
._6{width:14.184000px;}
._5{width:15.192000px;}
._7{width:16.488000px;}
._8{width:19.872000px;}
._9{width:21.024000px;}
._e{width:22.968000px;}
._10{width:23.976000px;}
._14{width:25.272000px;}
._19{width:26.412000px;}
._1a{width:27.516000px;}
._21{width:29.160000px;}
._18{width:30.240000px;}
._17{width:31.392000px;}
._22{width:32.472000px;}
._15{width:33.624000px;}
._16{width:34.644000px;}
._29{width:36.108000px;}
._26{width:39.672000px;}
._23{width:40.824000px;}
._a{width:42.480000px;}
._b{width:43.560000px;}
._25{width:46.296000px;}
._27{width:53.208000px;}
._28{width:54.720000px;}
._2a{width:87.192000px;}
._24{width:124.056000px;}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y90{bottom:7.020000px;}
.ye3{bottom:7.050000px;}
.yd9{bottom:7.065000px;}
.ybd{bottom:7.200000px;}
.y95{bottom:18.900000px;}
.y92{bottom:18.945000px;}
.y98{bottom:19.080000px;}
.y9c{bottom:30.774000px;}
.y96{bottom:30.780000px;}
.y93{bottom:30.825000px;}
.y99{bottom:30.960000px;}
.yea{bottom:54.720000px;}
.y2{bottom:55.980000px;}
.y1{bottom:77.976000px;}
.y80{bottom:113.436000px;}
.ycd{bottom:115.416000px;}
.yf3{bottom:117.936000px;}
.y9b{bottom:124.056000px;}
.y4d{bottom:128.916000px;}
.ybb{bottom:137.736000px;}
.y29{bottom:140.076000px;}
.y105{bottom:142.416000px;}
.y7f{bottom:144.396000px;}
.yf2{bottom:149.076000px;}
.y5c{bottom:155.730000px;}
.y4c{bottom:159.870000px;}
.ycc{bottom:164.550000px;}
.y104{bottom:166.170000px;}
.yba{bottom:168.690000px;}
.y28{bottom:171.030000px;}
.y9a{bottom:172.470000px;}
.y7e{bottom:175.530000px;}
.yf1{bottom:180.030000px;}
.y5b{bottom:187.050000px;}
.ycb{bottom:189.210000px;}
.y103{bottom:189.930000px;}
.y4b{bottom:191.010000px;}
.y12a{bottom:194.070000px;}
.yb9{bottom:199.830000px;}
.y27{bottom:202.170000px;}
.y7d{bottom:206.490000px;}
.yf0{bottom:211.170000px;}
.yca{bottom:213.690000px;}
.y5a{bottom:215.130000px;}
.y129{bottom:217.830000px;}
.y59{bottom:218.730000px;}
.y97{bottom:220.710000px;}
.y4a{bottom:221.970000px;}
.yb8{bottom:230.790000px;}
.y26{bottom:233.130000px;}
.y7c{bottom:237.450000px;}
.y102{bottom:237.630000px;}
.y128{bottom:241.770000px;}
.yef{bottom:242.130000px;}
.y58{bottom:246.630000px;}
.y57{bottom:250.230000px;}
.yc9{bottom:252.570000px;}
.y49{bottom:253.110000px;}
.y25{bottom:256.890000px;}
.y101{bottom:261.390000px;}
.yb7{bottom:261.930000px;}
.y127{bottom:265.530000px;}
.y7b{bottom:268.590000px;}
.y94{bottom:269.130000px;}
.yee{bottom:273.270000px;}
.y24{bottom:280.830000px;}
.y56{bottom:281.730000px;}
.yc8{bottom:283.530000px;}
.y48{bottom:284.070000px;}
.y100{bottom:285.150000px;}
.y126{bottom:289.290000px;}
.yb6{bottom:292.890000px;}
.y7a{bottom:299.550000px;}
.yed{bottom:304.230000px;}
.y23{bottom:304.590000px;}
.yff{bottom:308.910000px;}
.y55{bottom:312.690000px;}
.y125{bottom:313.050000px;}
.yc7{bottom:314.670000px;}
.y47{bottom:315.210000px;}
.y91{bottom:317.550000px;}
.yb5{bottom:324.030000px;}
.y22{bottom:328.350000px;}
.y79{bottom:330.690000px;}
.yfe{bottom:332.850000px;}
.yec{bottom:335.370000px;}
.y124{bottom:337.035000px;}
.yc6{bottom:343.335000px;}
.y54{bottom:343.875000px;}
.y46{bottom:346.215000px;}
.y21{bottom:352.155000px;}
.yb4{bottom:355.035000px;}
.yfd{bottom:356.655000px;}
.y123{bottom:360.795000px;}
.y78{bottom:361.695000px;}
.y8f{bottom:365.835000px;}
.yeb{bottom:366.375000px;}
.yc5{bottom:369.075000px;}
.y53{bottom:375.195000px;}
.y20{bottom:376.095000px;}
.y45{bottom:377.355000px;}
.yfc{bottom:380.415000px;}
.yc4{bottom:383.835000px;}
.y122{bottom:384.555000px;}
.yb3{bottom:386.175000px;}
.y77{bottom:392.835000px;}
.y1f{bottom:399.855000px;}
.yfb{bottom:404.175000px;}
.y8e{bottom:404.715000px;}
.y52{bottom:406.515000px;}
.y44{bottom:408.315000px;}
.yc3{bottom:408.495000px;}
.yb2{bottom:417.135000px;}
.y1e{bottom:423.615000px;}
.y76{bottom:423.795000px;}
.yfa{bottom:428.115000px;}
.y121{bottom:432.255000px;}
.yc2{bottom:432.975000px;}
.y8d{bottom:435.855000px;}
.y51{bottom:437.835000px;}
.y43{bottom:439.455000px;}
.y1d{bottom:447.375000px;}
.yb1{bottom:448.275000px;}
.yf9{bottom:451.875000px;}
.y75{bottom:454.935000px;}
.ye9{bottom:456.015000px;}
.yc1{bottom:457.635000px;}
.y8c{bottom:466.815000px;}
.y50{bottom:469.335000px;}
.y42{bottom:470.415000px;}
.y1c{bottom:471.315000px;}
.yf8{bottom:475.635000px;}
.yb0{bottom:479.235000px;}
.y120{bottom:479.775000px;}
.ye8{bottom:480.675000px;}
.yc0{bottom:482.115000px;}
.y74{bottom:485.895000px;}
.y1b{bottom:495.075000px;}
.y8b{bottom:497.955000px;}
.yf7{bottom:499.395000px;}
.y4f{bottom:500.475000px;}
.y41{bottom:501.555000px;}
.y11f{bottom:503.535000px;}
.ye7{bottom:505.155000px;}
.ybf{bottom:506.595000px;}
.yaf{bottom:510.375000px;}
.y73{bottom:517.035000px;}
.y1a{bottom:518.835000px;}
.yf6{bottom:523.155000px;}
.y11e{bottom:527.295000px;}
.y8a{bottom:528.915000px;}
.ye6{bottom:529.635000px;}
.ybe{bottom:531.255000px;}
.y4e{bottom:532.155000px;}
.y40{bottom:532.515000px;}
.yae{bottom:541.335000px;}
.y19{bottom:542.595000px;}
.yf5{bottom:547.095000px;}
.y72{bottom:547.995000px;}
.y11d{bottom:551.235000px;}
.ye5{bottom:554.295000px;}
.ybc{bottom:555.735000px;}
.y89{bottom:560.055000px;}
.y3f{bottom:563.655000px;}
.y18{bottom:566.355000px;}
.yf4{bottom:570.855000px;}
.yad{bottom:572.475000px;}
.y11c{bottom:574.995000px;}
.ye4{bottom:578.775000px;}
.y71{bottom:579.135000px;}
.y88{bottom:591.015000px;}
.y3e{bottom:594.615000px;}
.y17{bottom:597.495000px;}
.y11b{bottom:598.755000px;}
.yac{bottom:603.435000px;}
.y70{bottom:610.125000px;}
.y87{bottom:622.365000px;}
.y11a{bottom:622.545000px;}
.y3d{bottom:625.785000px;}
.ye2{bottom:627.945000px;}
.y16{bottom:628.485000px;}
.yab{bottom:634.785000px;}
.y6f{bottom:641.265000px;}
.y119{bottom:646.485000px;}
.ye1{bottom:652.425000px;}
.y86{bottom:654.045000px;}
.y3c{bottom:656.745000px;}
.y15{bottom:659.625000px;}
.yaa{bottom:666.105000px;}
.y118{bottom:670.245000px;}
.y6e{bottom:672.585000px;}
.ye0{bottom:677.085000px;}
.y85{bottom:685.725000px;}
.y3b{bottom:687.885000px;}
.y14{bottom:690.585000px;}
.y117{bottom:694.005000px;}
.ya9{bottom:697.245000px;}
.ydf{bottom:701.565000px;}
.y6d{bottom:704.085000px;}
.y84{bottom:717.225000px;}
.y116{bottom:717.765000px;}
.y3a{bottom:718.845000px;}
.y13{bottom:721.725000px;}
.yde{bottom:726.225000px;}
.ya8{bottom:728.205000px;}
.y6c{bottom:735.585000px;}
.y115{bottom:741.705000px;}
.y83{bottom:748.905000px;}
.y39{bottom:749.985000px;}
.y12{bottom:752.685000px;}
.ya7{bottom:759.345000px;}
.ydd{bottom:764.925000px;}
.y114{bottom:765.465000px;}
.y6b{bottom:766.905000px;}
.y82{bottom:780.405000px;}
.y38{bottom:780.945000px;}
.y11{bottom:783.825000px;}
.y113{bottom:789.225000px;}
.ya6{bottom:790.305000px;}
.ydc{bottom:796.065000px;}
.y6a{bottom:798.225000px;}
.y81{bottom:811.725000px;}
.y37{bottom:812.085000px;}
.y112{bottom:812.985000px;}
.y10{bottom:814.785000px;}
.ya5{bottom:821.445000px;}
.ydb{bottom:827.025000px;}
.y69{bottom:829.365000px;}
.y111{bottom:836.925000px;}
.y36{bottom:843.045000px;}
.yda{bottom:844.665000px;}
.yf{bottom:845.925000px;}
.ya4{bottom:852.405000px;}
.y68{bottom:860.325000px;}
.y110{bottom:860.685000px;}
.yd8{bottom:869.145000px;}
.y35{bottom:874.230000px;}
.ye{bottom:876.930000px;}
.ya3{bottom:883.590000px;}
.y10f{bottom:884.490000px;}
.y67{bottom:891.690000px;}
.yd7{bottom:893.670000px;}
.y34{bottom:905.190000px;}
.yd{bottom:908.070000px;}
.y10e{bottom:908.250000px;}
.ya2{bottom:914.550000px;}
.yd6{bottom:918.330000px;}
.y66{bottom:921.930000px;}
.y65{bottom:925.530000px;}
.y10d{bottom:932.190000px;}
.y33{bottom:936.330000px;}
.yc{bottom:939.030000px;}
.yd5{bottom:942.810000px;}
.ya1{bottom:945.690000px;}
.y10c{bottom:955.950000px;}
.y62{bottom:961.710000px;}
.y32{bottom:967.290000px;}
.yd4{bottom:967.470000px;}
.yb{bottom:970.170000px;}
.y63{bottom:971.070000px;}
.ya0{bottom:976.650000px;}
.y60{bottom:977.910000px;}
.y10b{bottom:979.710000px;}
.y64{bottom:986.370000px;}
.y61{bottom:988.530000px;}
.yd3{bottom:991.950000px;}
.y9f{bottom:994.290000px;}
.y31{bottom:998.430000px;}
.ya{bottom:1001.130000px;}
.y10a{bottom:1003.470000px;}
.yd2{bottom:1016.430000px;}
.y5f{bottom:1025.970000px;}
.y109{bottom:1027.230000px;}
.y30{bottom:1029.390000px;}
.y9{bottom:1032.270000px;}
.yd1{bottom:1041.090000px;}
.y9e{bottom:1042.530000px;}
.y108{bottom:1051.170000px;}
.y5e{bottom:1057.290000px;}
.y2f{bottom:1060.350000px;}
.y8{bottom:1063.230000px;}
.yd0{bottom:1065.570000px;}
.y107{bottom:1074.930000px;}
.y7{bottom:1086.990000px;}
.ycf{bottom:1090.230000px;}
.y9d{bottom:1090.950000px;}
.y5d{bottom:1091.130000px;}
.y2e{bottom:1091.490000px;}
.y106{bottom:1098.690000px;}
.y6{bottom:1110.930000px;}
.yce{bottom:1114.710000px;}
.y2d{bottom:1122.450000px;}
.y5{bottom:1134.690000px;}
.y2c{bottom:1144.440000px;}
.y4{bottom:1158.480000px;}
.y2b{bottom:1168.380000px;}
.y3{bottom:1182.240000px;}
.y2a{bottom:1192.140000px;}
.he{height:23.760000px;}
.h14{height:23.796000px;}
.h12{height:23.940000px;}
.h13{height:41.726953px;}
.hc{height:43.082578px;}
.h10{height:47.520000px;}
.hf{height:47.556000px;}
.h11{height:47.700000px;}
.h5{height:50.273438px;}
.h3{height:50.800781px;}
.h6{height:54.246094px;}
.h4{height:54.773438px;}
.h7{height:60.679688px;}
.h2{height:62.402344px;}
.hd{height:63.559688px;}
.h15{height:71.460000px;}
.h8{height:75.079687px;}
.hb{height:88.039687px;}
.ha{height:89.162578px;}
.h9{height:120.439688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:91.260000px;}
.we{width:102.240000px;}
.w7{width:111.960000px;}
.wc{width:112.536000px;}
.w3{width:126.540000px;}
.w11{width:137.736000px;}
.w6{width:140.616000px;}
.w8{width:140.976000px;}
.wd{width:151.590000px;}
.w10{width:157.170000px;}
.w4{width:173.190000px;}
.w9{width:208.110000px;}
.wa{width:229.350000px;}
.w5{width:250.050000px;}
.wf{width:304.230000px;}
.wb{width:323.850000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.740000px;}
.x1e{left:100.296000px;}
.x2{left:108.035987px;}
.x9{left:147.455987px;}
.x23{left:148.715987px;}
.xa{left:160.949987px;}
.x2d{left:162.029987px;}
.x1d{left:164.369987px;}
.x8{left:165.629987px;}
.x1a{left:169.049987px;}
.x1c{left:171.569987px;}
.x11{left:179.129987px;}
.x16{left:182.729987px;}
.x14{left:183.809987px;}
.x13{left:191.009987px;}
.x24{left:212.970000px;}
.x1b{left:225.029987px;}
.x20{left:227.550000px;}
.x15{left:242.669987px;}
.x17{left:247.349987px;}
.x19{left:261.209987px;}
.x18{left:266.609987px;}
.xe{left:273.269987px;}
.x2c{left:309.854987px;}
.xd{left:321.374987px;}
.x3{left:332.354987px;}
.xc{left:335.054987px;}
.xf{left:339.014987px;}
.x12{left:346.934987px;}
.x25{left:354.675000px;}
.x10{left:365.474987px;}
.x21{left:401.475000px;}
.x2a{left:405.255000px;}
.x27{left:424.875000px;}
.x1{left:432.074987px;}
.xb{left:446.474987px;}
.x28{left:538.305000px;}
.x7{left:545.504987px;}
.x26{left:563.505000px;}
.x6{left:576.464987px;}
.x5{left:592.484987px;}
.x4{left:618.944987px;}
.x22{left:652.245000px;}
.x29{left:690.630000px;}
.x2b{left:701.610000px;}
@media print{
.v9{vertical-align:-30.080000pt;}
.v5{vertical-align:-25.600000pt;}
.v6{vertical-align:-22.400000pt;}
.v1{vertical-align:-12.800000pt;}
.vc{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.v8{vertical-align:11.520000pt;}
.v2{vertical-align:12.800000pt;}
.vb{vertical-align:15.360000pt;}
.v7{vertical-align:24.320000pt;}
.v4{vertical-align:40.960000pt;}
.v3{vertical-align:53.120000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.050560pt;}
.ls27{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls2d{letter-spacing:0.768000pt;}
.ls12{letter-spacing:1.344000pt;}
.ls24{letter-spacing:1.600000pt;}
.ls25{letter-spacing:1.850240pt;}
.ls11{letter-spacing:2.112000pt;}
.ls23{letter-spacing:2.490240pt;}
.lsb{letter-spacing:2.496000pt;}
.ls18{letter-spacing:3.046400pt;}
.ls1b{letter-spacing:3.130240pt;}
.ls16{letter-spacing:3.633920pt;}
.lsd{letter-spacing:3.686400pt;}
.ls21{letter-spacing:3.846400pt;}
.ls8{letter-spacing:3.890560pt;}
.ls17{letter-spacing:4.288640pt;}
.ls1d{letter-spacing:4.326400pt;}
.ls13{letter-spacing:4.516480pt;}
.ls15{letter-spacing:5.312000pt;}
.ls0{letter-spacing:10.240000pt;}
.ls22{letter-spacing:10.560000pt;}
.ls26{letter-spacing:12.730240pt;}
.ls1a{letter-spacing:16.570240pt;}
.ls10{letter-spacing:17.766400pt;}
.lsa{letter-spacing:17.970560pt;}
.lsf{letter-spacing:18.406400pt;}
.ls9{letter-spacing:18.610560pt;}
.ls1e{letter-spacing:20.410240pt;}
.ls19{letter-spacing:20.966400pt;}
.lse{letter-spacing:21.606400pt;}
.lsc{letter-spacing:21.810560pt;}
.ls7{letter-spacing:22.450560pt;}
.ls14{letter-spacing:40.323840pt;}
.ws1{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-16.448000pt;}
.ws16{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.936000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws12{word-spacing:-14.144000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.760000pt;}
.ws0{word-spacing:-12.736000pt;}
.wsd{word-spacing:-10.047360pt;}
.ws10{word-spacing:-9.996800pt;}
.ws14{word-spacing:-3.520000pt;}
.ws15{word-spacing:-3.328000pt;}
.wsf{word-spacing:-2.240000pt;}
.wsa{word-spacing:-0.448000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.192000pt;}
.ws18{word-spacing:0.298667pt;}
.ws8{word-spacing:0.352000pt;}
.wsc{word-spacing:3.264000pt;}
.ws7{word-spacing:3.392000pt;}
.ws9{word-spacing:3.904000pt;}
.ws11{word-spacing:4.032000pt;}
.wse{word-spacing:11.470720pt;}
._1d{margin-left:-7.456000pt;}
._1c{margin-left:-6.346667pt;}
._1f{margin-left:-5.042560pt;}
._20{margin-left:-4.082560pt;}
._1e{margin-left:-3.149440pt;}
._1b{margin-left:-1.984000pt;}
._0{margin-left:-0.960000pt;}
._2{width:0.896000pt;}
._1{width:1.898667pt;}
._3{width:3.264000pt;}
._4{width:4.544000pt;}
._13{width:5.440000pt;}
._11{width:7.168000pt;}
._12{width:8.085333pt;}
._d{width:9.066667pt;}
._c{width:10.090667pt;}
._f{width:11.392000pt;}
._6{width:12.608000pt;}
._5{width:13.504000pt;}
._7{width:14.656000pt;}
._8{width:17.664000pt;}
._9{width:18.688000pt;}
._e{width:20.416000pt;}
._10{width:21.312000pt;}
._14{width:22.464000pt;}
._19{width:23.477333pt;}
._1a{width:24.458667pt;}
._21{width:25.920000pt;}
._18{width:26.880000pt;}
._17{width:27.904000pt;}
._22{width:28.864000pt;}
._15{width:29.888000pt;}
._16{width:30.794667pt;}
._29{width:32.096000pt;}
._26{width:35.264000pt;}
._23{width:36.288000pt;}
._a{width:37.760000pt;}
._b{width:38.720000pt;}
._25{width:41.152000pt;}
._27{width:47.296000pt;}
._28{width:48.640000pt;}
._2a{width:77.504000pt;}
._24{width:110.272000pt;}
.fs1{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:6.240000pt;}
.ye3{bottom:6.266667pt;}
.yd9{bottom:6.280000pt;}
.ybd{bottom:6.400000pt;}
.y95{bottom:16.800000pt;}
.y92{bottom:16.840000pt;}
.y98{bottom:16.960000pt;}
.y9c{bottom:27.354667pt;}
.y96{bottom:27.360000pt;}
.y93{bottom:27.400000pt;}
.y99{bottom:27.520000pt;}
.yea{bottom:48.640000pt;}
.y2{bottom:49.760000pt;}
.y1{bottom:69.312000pt;}
.y80{bottom:100.832000pt;}
.ycd{bottom:102.592000pt;}
.yf3{bottom:104.832000pt;}
.y9b{bottom:110.272000pt;}
.y4d{bottom:114.592000pt;}
.ybb{bottom:122.432000pt;}
.y29{bottom:124.512000pt;}
.y105{bottom:126.592000pt;}
.y7f{bottom:128.352000pt;}
.yf2{bottom:132.512000pt;}
.y5c{bottom:138.426667pt;}
.y4c{bottom:142.106667pt;}
.ycc{bottom:146.266667pt;}
.y104{bottom:147.706667pt;}
.yba{bottom:149.946667pt;}
.y28{bottom:152.026667pt;}
.y9a{bottom:153.306667pt;}
.y7e{bottom:156.026667pt;}
.yf1{bottom:160.026667pt;}
.y5b{bottom:166.266667pt;}
.ycb{bottom:168.186667pt;}
.y103{bottom:168.826667pt;}
.y4b{bottom:169.786667pt;}
.y12a{bottom:172.506667pt;}
.yb9{bottom:177.626667pt;}
.y27{bottom:179.706667pt;}
.y7d{bottom:183.546667pt;}
.yf0{bottom:187.706667pt;}
.yca{bottom:189.946667pt;}
.y5a{bottom:191.226667pt;}
.y129{bottom:193.626667pt;}
.y59{bottom:194.426667pt;}
.y97{bottom:196.186667pt;}
.y4a{bottom:197.306667pt;}
.yb8{bottom:205.146667pt;}
.y26{bottom:207.226667pt;}
.y7c{bottom:211.066667pt;}
.y102{bottom:211.226667pt;}
.y128{bottom:214.906667pt;}
.yef{bottom:215.226667pt;}
.y58{bottom:219.226667pt;}
.y57{bottom:222.426667pt;}
.yc9{bottom:224.506667pt;}
.y49{bottom:224.986667pt;}
.y25{bottom:228.346667pt;}
.y101{bottom:232.346667pt;}
.yb7{bottom:232.826667pt;}
.y127{bottom:236.026667pt;}
.y7b{bottom:238.746667pt;}
.y94{bottom:239.226667pt;}
.yee{bottom:242.906667pt;}
.y24{bottom:249.626667pt;}
.y56{bottom:250.426667pt;}
.yc8{bottom:252.026667pt;}
.y48{bottom:252.506667pt;}
.y100{bottom:253.466667pt;}
.y126{bottom:257.146667pt;}
.yb6{bottom:260.346667pt;}
.y7a{bottom:266.266667pt;}
.yed{bottom:270.426667pt;}
.y23{bottom:270.746667pt;}
.yff{bottom:274.586667pt;}
.y55{bottom:277.946667pt;}
.y125{bottom:278.266667pt;}
.yc7{bottom:279.706667pt;}
.y47{bottom:280.186667pt;}
.y91{bottom:282.266667pt;}
.yb5{bottom:288.026667pt;}
.y22{bottom:291.866667pt;}
.y79{bottom:293.946667pt;}
.yfe{bottom:295.866667pt;}
.yec{bottom:298.106667pt;}
.y124{bottom:299.586667pt;}
.yc6{bottom:305.186667pt;}
.y54{bottom:305.666667pt;}
.y46{bottom:307.746667pt;}
.y21{bottom:313.026667pt;}
.yb4{bottom:315.586667pt;}
.yfd{bottom:317.026667pt;}
.y123{bottom:320.706667pt;}
.y78{bottom:321.506667pt;}
.y8f{bottom:325.186667pt;}
.yeb{bottom:325.666667pt;}
.yc5{bottom:328.066667pt;}
.y53{bottom:333.506667pt;}
.y20{bottom:334.306667pt;}
.y45{bottom:335.426667pt;}
.yfc{bottom:338.146667pt;}
.yc4{bottom:341.186667pt;}
.y122{bottom:341.826667pt;}
.yb3{bottom:343.266667pt;}
.y77{bottom:349.186667pt;}
.y1f{bottom:355.426667pt;}
.yfb{bottom:359.266667pt;}
.y8e{bottom:359.746667pt;}
.y52{bottom:361.346667pt;}
.y44{bottom:362.946667pt;}
.yc3{bottom:363.106667pt;}
.yb2{bottom:370.786667pt;}
.y1e{bottom:376.546667pt;}
.y76{bottom:376.706667pt;}
.yfa{bottom:380.546667pt;}
.y121{bottom:384.226667pt;}
.yc2{bottom:384.866667pt;}
.y8d{bottom:387.426667pt;}
.y51{bottom:389.186667pt;}
.y43{bottom:390.626667pt;}
.y1d{bottom:397.666667pt;}
.yb1{bottom:398.466667pt;}
.yf9{bottom:401.666667pt;}
.y75{bottom:404.386667pt;}
.ye9{bottom:405.346667pt;}
.yc1{bottom:406.786667pt;}
.y8c{bottom:414.946667pt;}
.y50{bottom:417.186667pt;}
.y42{bottom:418.146667pt;}
.y1c{bottom:418.946667pt;}
.yf8{bottom:422.786667pt;}
.yb0{bottom:425.986667pt;}
.y120{bottom:426.466667pt;}
.ye8{bottom:427.266667pt;}
.yc0{bottom:428.546667pt;}
.y74{bottom:431.906667pt;}
.y1b{bottom:440.066667pt;}
.y8b{bottom:442.626667pt;}
.yf7{bottom:443.906667pt;}
.y4f{bottom:444.866667pt;}
.y41{bottom:445.826667pt;}
.y11f{bottom:447.586667pt;}
.ye7{bottom:449.026667pt;}
.ybf{bottom:450.306667pt;}
.yaf{bottom:453.666667pt;}
.y73{bottom:459.586667pt;}
.y1a{bottom:461.186667pt;}
.yf6{bottom:465.026667pt;}
.y11e{bottom:468.706667pt;}
.y8a{bottom:470.146667pt;}
.ye6{bottom:470.786667pt;}
.ybe{bottom:472.226667pt;}
.y4e{bottom:473.026667pt;}
.y40{bottom:473.346667pt;}
.yae{bottom:481.186667pt;}
.y19{bottom:482.306667pt;}
.yf5{bottom:486.306667pt;}
.y72{bottom:487.106667pt;}
.y11d{bottom:489.986667pt;}
.ye5{bottom:492.706667pt;}
.ybc{bottom:493.986667pt;}
.y89{bottom:497.826667pt;}
.y3f{bottom:501.026667pt;}
.y18{bottom:503.426667pt;}
.yf4{bottom:507.426667pt;}
.yad{bottom:508.866667pt;}
.y11c{bottom:511.106667pt;}
.ye4{bottom:514.466667pt;}
.y71{bottom:514.786667pt;}
.y88{bottom:525.346667pt;}
.y3e{bottom:528.546667pt;}
.y17{bottom:531.106667pt;}
.y11b{bottom:532.226667pt;}
.yac{bottom:536.386667pt;}
.y70{bottom:542.333333pt;}
.y87{bottom:553.213333pt;}
.y11a{bottom:553.373333pt;}
.y3d{bottom:556.253333pt;}
.ye2{bottom:558.173333pt;}
.y16{bottom:558.653333pt;}
.yab{bottom:564.253333pt;}
.y6f{bottom:570.013333pt;}
.y119{bottom:574.653333pt;}
.ye1{bottom:579.933333pt;}
.y86{bottom:581.373333pt;}
.y3c{bottom:583.773333pt;}
.y15{bottom:586.333333pt;}
.yaa{bottom:592.093333pt;}
.y118{bottom:595.773333pt;}
.y6e{bottom:597.853333pt;}
.ye0{bottom:601.853333pt;}
.y85{bottom:609.533333pt;}
.y3b{bottom:611.453333pt;}
.y14{bottom:613.853333pt;}
.y117{bottom:616.893333pt;}
.ya9{bottom:619.773333pt;}
.ydf{bottom:623.613333pt;}
.y6d{bottom:625.853333pt;}
.y84{bottom:637.533333pt;}
.y116{bottom:638.013333pt;}
.y3a{bottom:638.973333pt;}
.y13{bottom:641.533333pt;}
.yde{bottom:645.533333pt;}
.ya8{bottom:647.293333pt;}
.y6c{bottom:653.853333pt;}
.y115{bottom:659.293333pt;}
.y83{bottom:665.693333pt;}
.y39{bottom:666.653333pt;}
.y12{bottom:669.053333pt;}
.ya7{bottom:674.973333pt;}
.ydd{bottom:679.933333pt;}
.y114{bottom:680.413333pt;}
.y6b{bottom:681.693333pt;}
.y82{bottom:693.693333pt;}
.y38{bottom:694.173333pt;}
.y11{bottom:696.733333pt;}
.y113{bottom:701.533333pt;}
.ya6{bottom:702.493333pt;}
.ydc{bottom:707.613333pt;}
.y6a{bottom:709.533333pt;}
.y81{bottom:721.533333pt;}
.y37{bottom:721.853333pt;}
.y112{bottom:722.653333pt;}
.y10{bottom:724.253333pt;}
.ya5{bottom:730.173333pt;}
.ydb{bottom:735.133333pt;}
.y69{bottom:737.213333pt;}
.y111{bottom:743.933333pt;}
.y36{bottom:749.373333pt;}
.yda{bottom:750.813333pt;}
.yf{bottom:751.933333pt;}
.ya4{bottom:757.693333pt;}
.y68{bottom:764.733333pt;}
.y110{bottom:765.053333pt;}
.yd8{bottom:772.573333pt;}
.y35{bottom:777.093333pt;}
.ye{bottom:779.493333pt;}
.ya3{bottom:785.413333pt;}
.y10f{bottom:786.213333pt;}
.y67{bottom:792.613333pt;}
.yd7{bottom:794.373333pt;}
.y34{bottom:804.613333pt;}
.yd{bottom:807.173333pt;}
.y10e{bottom:807.333333pt;}
.ya2{bottom:812.933333pt;}
.yd6{bottom:816.293333pt;}
.y66{bottom:819.493333pt;}
.y65{bottom:822.693333pt;}
.y10d{bottom:828.613333pt;}
.y33{bottom:832.293333pt;}
.yc{bottom:834.693333pt;}
.yd5{bottom:838.053333pt;}
.ya1{bottom:840.613333pt;}
.y10c{bottom:849.733333pt;}
.y62{bottom:854.853333pt;}
.y32{bottom:859.813333pt;}
.yd4{bottom:859.973333pt;}
.yb{bottom:862.373333pt;}
.y63{bottom:863.173333pt;}
.ya0{bottom:868.133333pt;}
.y60{bottom:869.253333pt;}
.y10b{bottom:870.853333pt;}
.y64{bottom:876.773333pt;}
.y61{bottom:878.693333pt;}
.yd3{bottom:881.733333pt;}
.y9f{bottom:883.813333pt;}
.y31{bottom:887.493333pt;}
.ya{bottom:889.893333pt;}
.y10a{bottom:891.973333pt;}
.yd2{bottom:903.493333pt;}
.y5f{bottom:911.973333pt;}
.y109{bottom:913.093333pt;}
.y30{bottom:915.013333pt;}
.y9{bottom:917.573333pt;}
.yd1{bottom:925.413333pt;}
.y9e{bottom:926.693333pt;}
.y108{bottom:934.373333pt;}
.y5e{bottom:939.813333pt;}
.y2f{bottom:942.533333pt;}
.y8{bottom:945.093333pt;}
.yd0{bottom:947.173333pt;}
.y107{bottom:955.493333pt;}
.y7{bottom:966.213333pt;}
.ycf{bottom:969.093333pt;}
.y9d{bottom:969.733333pt;}
.y5d{bottom:969.893333pt;}
.y2e{bottom:970.213333pt;}
.y106{bottom:976.613333pt;}
.y6{bottom:987.493333pt;}
.yce{bottom:990.853333pt;}
.y2d{bottom:997.733333pt;}
.y5{bottom:1008.613333pt;}
.y2c{bottom:1017.280000pt;}
.y4{bottom:1029.760000pt;}
.y2b{bottom:1038.560000pt;}
.y3{bottom:1050.880000pt;}
.y2a{bottom:1059.680000pt;}
.he{height:21.120000pt;}
.h14{height:21.152000pt;}
.h12{height:21.280000pt;}
.h13{height:37.090625pt;}
.hc{height:38.295625pt;}
.h10{height:42.240000pt;}
.hf{height:42.272000pt;}
.h11{height:42.400000pt;}
.h5{height:44.687500pt;}
.h3{height:45.156250pt;}
.h6{height:48.218750pt;}
.h4{height:48.687500pt;}
.h7{height:53.937500pt;}
.h2{height:55.468750pt;}
.hd{height:56.497500pt;}
.h15{height:63.520000pt;}
.h8{height:66.737500pt;}
.hb{height:78.257500pt;}
.ha{height:79.255625pt;}
.h9{height:107.057500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:81.120000pt;}
.we{width:90.880000pt;}
.w7{width:99.520000pt;}
.wc{width:100.032000pt;}
.w3{width:112.480000pt;}
.w11{width:122.432000pt;}
.w6{width:124.992000pt;}
.w8{width:125.312000pt;}
.wd{width:134.746667pt;}
.w10{width:139.706667pt;}
.w4{width:153.946667pt;}
.w9{width:184.986667pt;}
.wa{width:203.866667pt;}
.w5{width:222.266667pt;}
.wf{width:270.426667pt;}
.wb{width:287.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.880000pt;}
.x1e{left:89.152000pt;}
.x2{left:96.031988pt;}
.x9{left:131.071988pt;}
.x23{left:132.191988pt;}
.xa{left:143.066655pt;}
.x2d{left:144.026655pt;}
.x1d{left:146.106655pt;}
.x8{left:147.226655pt;}
.x1a{left:150.266655pt;}
.x1c{left:152.506655pt;}
.x11{left:159.226655pt;}
.x16{left:162.426655pt;}
.x14{left:163.386655pt;}
.x13{left:169.786655pt;}
.x24{left:189.306667pt;}
.x1b{left:200.026655pt;}
.x20{left:202.266667pt;}
.x15{left:215.706655pt;}
.x17{left:219.866655pt;}
.x19{left:232.186655pt;}
.x18{left:236.986655pt;}
.xe{left:242.906655pt;}
.x2c{left:275.426655pt;}
.xd{left:285.666655pt;}
.x3{left:295.426655pt;}
.xc{left:297.826655pt;}
.xf{left:301.346655pt;}
.x12{left:308.386655pt;}
.x25{left:315.266667pt;}
.x10{left:324.866655pt;}
.x21{left:356.866667pt;}
.x2a{left:360.226667pt;}
.x27{left:377.666667pt;}
.x1{left:384.066655pt;}
.xb{left:396.866655pt;}
.x28{left:478.493333pt;}
.x7{left:484.893322pt;}
.x26{left:500.893333pt;}
.x6{left:512.413322pt;}
.x5{left:526.653322pt;}
.x4{left:550.173322pt;}
.x22{left:579.773333pt;}
.x29{left:613.893333pt;}
.x2b{left:623.653333pt;}
}




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