
    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_241e4ca36788790fc09ac673.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e1611769549104f0633d440.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_c5d43409dda8c04652d720a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068848;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_d975f5986f836f00a31f8ef8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_335d770e3121eacd9597e098.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_9fe88bdc8c22f652a467c470.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.749512;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_2e0f8db8e082885c18ce9ff2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_d7ba8aeb5dc29382bc00a035.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959473;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_8b12311a973ecadaee0974dc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_68a3871a10a8196412ef5b95.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959473;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:ffb;src:url('chunks/assets/font_85af626138842bf9d8f49921.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952637;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:ffc;src:url('chunks/assets/font_958ae9d03a0994b76c4d8430.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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:ffd;src:url('chunks/assets/font_77358db77830f7b8cdb7cb17.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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:ffe;src:url('chunks/assets/font_7cbd2d9176c2f1ef654e817a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9ddde2c8fe545431c0d79e5c.woff2')format("woff");}.fff{font-family:fff;line-height:0.946777;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:ff10;src:url('chunks/assets/font_db82970f02cac209cbecff7b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.952637;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.360000px;}
.lsc{letter-spacing:24.624000px;}
.ls6{letter-spacing:51.264000px;}
.ls8{letter-spacing:58.464000px;}
.ls1{letter-spacing:738.900000px;}
.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:-72.000000px;}
.wsa{word-spacing:-48.024000px;}
.ws6{word-spacing:-18.973476px;}
.ws2{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws0{word-spacing:-0.063360px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-4.680000px;}
._1c{margin-left:-3.528000px;}
._3{margin-left:-2.520000px;}
._0{margin-left:-1.152000px;}
._1{width:1.188000px;}
._2{width:2.843040px;}
._7{width:4.824000px;}
._1b{width:5.832000px;}
._1a{width:7.560000px;}
._12{width:8.568000px;}
._11{width:9.648000px;}
._19{width:10.944000px;}
._13{width:12.744000px;}
._9{width:14.472000px;}
._8{width:15.984000px;}
._20{width:19.008000px;}
._1f{width:20.016000px;}
._e{width:21.240000px;}
._f{width:23.112000px;}
._d{width:24.696000px;}
._4{width:25.704000px;}
._10{width:26.928000px;}
._15{width:28.152000px;}
._1e{width:30.168000px;}
._17{width:33.696000px;}
._16{width:34.752000px;}
._b{width:36.144000px;}
._a{width:37.152000px;}
._14{width:45.000000px;}
._c{width:47.448000px;}
._6{width:51.696000px;}
._5{width:53.208000px;}
._18{width:2954.160000px;}
.fc3{color:transparent;}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(118,146,60);}
.fs2{font-size:5.760000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs9{font-size:81.360000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.yfb{bottom:4.674000px;}
.y30{bottom:4.680000px;}
.yef{bottom:5.400000px;}
.y15{bottom:7.560000px;}
.y3d{bottom:8.100000px;}
.y13{bottom:8.460000px;}
.y14{bottom:8.820000px;}
.yd5{bottom:10.080000px;}
.yd3{bottom:10.260000px;}
.y2f{bottom:24.876000px;}
.y4{bottom:33.840000px;}
.y3c{bottom:34.920000px;}
.y2e{bottom:45.216000px;}
.y3{bottom:53.820000px;}
.y3b{bottom:56.520000px;}
.y2d{bottom:65.376000px;}
.y16{bottom:65.880000px;}
.y49{bottom:66.240000px;}
.y48{bottom:85.536000px;}
.y2c{bottom:85.710000px;}
.ya7{bottom:103.716000px;}
.y2b{bottom:105.870000px;}
.yfc{bottom:121.356000px;}
.y77{bottom:122.256000px;}
.y146{bottom:123.336000px;}
.ya6{bottom:123.876000px;}
.ycf{bottom:124.236000px;}
.y2a{bottom:126.210000px;}
.y123{bottom:142.056000px;}
.y76{bottom:142.596000px;}
.y145{bottom:143.676000px;}
.ya5{bottom:144.216000px;}
.y29{bottom:146.370000px;}
.yfa{bottom:146.736000px;}
.yce{bottom:153.390000px;}
.y122{bottom:162.390000px;}
.ya4{bottom:164.370000px;}
.y28{bottom:166.710000px;}
.yf9{bottom:167.610000px;}
.y75{bottom:171.750000px;}
.y144{bottom:172.830000px;}
.ycd{bottom:182.730000px;}
.y27{bottom:186.870000px;}
.yf8{bottom:188.670000px;}
.y121{bottom:191.550000px;}
.y74{bottom:192.090000px;}
.y143{bottom:193.170000px;}
.ya3{bottom:194.250000px;}
.ycc{bottom:203.070000px;}
.y45{bottom:205.425000px;}
.y26{bottom:207.210000px;}
.yf7{bottom:209.730000px;}
.y120{bottom:211.890000px;}
.y73{bottom:212.250000px;}
.ya2{bottom:214.590000px;}
.y142{bottom:222.330000px;}
.y25{bottom:227.370000px;}
.yf6{bottom:230.610000px;}
.ycb{bottom:232.230000px;}
.ya1{bottom:234.750000px;}
.y44{bottom:239.265000px;}
.y11f{bottom:241.050000px;}
.y72{bottom:241.410000px;}
.y24{bottom:247.710000px;}
.y141{bottom:251.490000px;}
.yf5{bottom:251.670000px;}
.yca{bottom:252.570000px;}
.ya0{bottom:255.090000px;}
.y71{bottom:261.750000px;}
.y23{bottom:267.870000px;}
.y11e{bottom:270.390000px;}
.y43{bottom:271.665000px;}
.yc9{bottom:272.730000px;}
.y9f{bottom:275.250000px;}
.y140{bottom:280.830000px;}
.y70{bottom:282.090000px;}
.yf4{bottom:286.230000px;}
.y22{bottom:288.255000px;}
.y42{bottom:291.825000px;}
.yc8{bottom:293.070000px;}
.y9e{bottom:295.590000px;}
.y11d{bottom:299.550000px;}
.y6f{bottom:302.250000px;}
.y38{bottom:304.815000px;}
.y21{bottom:308.415000px;}
.y13f{bottom:309.990000px;}
.y41{bottom:312.165000px;}
.yc7{bottom:313.230000px;}
.yf3{bottom:315.570000px;}
.y9d{bottom:315.930000px;}
.y11c{bottom:319.890000px;}
.y6e{bottom:322.590000px;}
.y37{bottom:324.975000px;}
.y20{bottom:328.755000px;}
.y40{bottom:332.325000px;}
.yc6{bottom:333.570000px;}
.yf2{bottom:335.910000px;}
.y13e{bottom:339.375000px;}
.y11b{bottom:340.275000px;}
.y36{bottom:345.315000px;}
.y9c{bottom:345.675000px;}
.y1f{bottom:348.915000px;}
.y6d{bottom:351.795000px;}
.y3f{bottom:352.695000px;}
.yc5{bottom:353.775000px;}
.yf1{bottom:356.115000px;}
.y35{bottom:365.475000px;}
.y9b{bottom:366.015000px;}
.y13d{bottom:368.535000px;}
.y1e{bottom:369.255000px;}
.y11a{bottom:369.435000px;}
.y6c{bottom:372.135000px;}
.yc4{bottom:374.115000px;}
.yf0{bottom:385.275000px;}
.y34{bottom:385.815000px;}
.y9a{bottom:386.355000px;}
.y13c{bottom:388.875000px;}
.y1d{bottom:389.415000px;}
.y119{bottom:389.775000px;}
.y6b{bottom:392.295000px;}
.yc3{bottom:403.275000px;}
.y33{bottom:405.975000px;}
.y99{bottom:406.515000px;}
.y1c{bottom:409.755000px;}
.y118{bottom:409.935000px;}
.yee{bottom:410.655000px;}
.y6a{bottom:412.635000px;}
.y13b{bottom:418.035000px;}
.y98{bottom:426.855000px;}
.y32{bottom:429.015000px;}
.y1b{bottom:429.915000px;}
.yc2{bottom:432.435000px;}
.yed{bottom:432.975000px;}
.y69{bottom:434.055000px;}
.y13a{bottom:438.375000px;}
.y117{bottom:439.095000px;}
.y97{bottom:447.015000px;}
.y31{bottom:450.075000px;}
.y1a{bottom:450.255000px;}
.yc1{bottom:452.775000px;}
.yec{bottom:454.035000px;}
.y68{bottom:454.395000px;}
.y116{bottom:459.435000px;}
.y96{bottom:467.355000px;}
.y139{bottom:467.535000px;}
.y19{bottom:470.415000px;}
.yeb{bottom:475.095000px;}
.y67{bottom:475.815000px;}
.y115{bottom:479.775000px;}
.yc0{bottom:481.935000px;}
.y95{bottom:487.515000px;}
.y138{bottom:487.875000px;}
.y18{bottom:490.755000px;}
.yea{bottom:495.975000px;}
.y66{bottom:504.975000px;}
.y114{bottom:508.935000px;}
.y39{bottom:509.835000px;}
.y17{bottom:510.915000px;}
.ybf{bottom:511.275000px;}
.ye9{bottom:517.035000px;}
.y94{bottom:517.395000px;}
.y113{bottom:529.275000px;}
.ybe{bottom:531.615000px;}
.y65{bottom:534.315000px;}
.y93{bottom:537.735000px;}
.y137{bottom:546.375000px;}
.y112{bottom:549.435000px;}
.ye8{bottom:551.595000px;}
.y64{bottom:554.655000px;}
.y92{bottom:557.895000px;}
.ybd{bottom:560.775000px;}
.y63{bottom:574.815000px;}
.y136{bottom:575.535000px;}
.y91{bottom:578.235000px;}
.y111{bottom:578.595000px;}
.ye7{bottom:580.935000px;}
.ybc{bottom:581.115000px;}
.y12{bottom:594.615000px;}
.y62{bottom:595.155000px;}
.y90{bottom:598.395000px;}
.y110{bottom:598.935000px;}
.ye6{bottom:601.275000px;}
.y135{bottom:604.905000px;}
.ybb{bottom:610.305000px;}
.y61{bottom:615.345000px;}
.y8f{bottom:618.765000px;}
.y10f{bottom:619.305000px;}
.ye5{bottom:621.465000px;}
.y134{bottom:625.245000px;}
.y11{bottom:626.145000px;}
.y8e{bottom:638.925000px;}
.yba{bottom:639.465000px;}
.y60{bottom:644.505000px;}
.y133{bottom:645.405000px;}
.y10{bottom:647.565000px;}
.y10e{bottom:648.465000px;}
.ye4{bottom:650.625000px;}
.y8d{bottom:659.265000px;}
.yb9{bottom:659.805000px;}
.y5f{bottom:664.845000px;}
.y132{bottom:665.745000px;}
.yf{bottom:665.925000px;}
.y10d{bottom:668.805000px;}
.ye3{bottom:676.005000px;}
.yb8{bottom:680.145000px;}
.ye{bottom:684.285000px;}
.y5e{bottom:685.185000px;}
.y131{bottom:685.905000px;}
.y8c{bottom:688.965000px;}
.ye2{bottom:697.065000px;}
.yb7{bottom:700.305000px;}
.yd{bottom:703.905000px;}
.y5d{bottom:705.345000px;}
.y130{bottom:706.245000px;}
.y8b{bottom:709.305000px;}
.ye1{bottom:718.125000px;}
.yb6{bottom:720.645000px;}
.y5c{bottom:725.685000px;}
.y12f{bottom:726.405000px;}
.y8a{bottom:729.645000px;}
.ye0{bottom:739.005000px;}
.yc{bottom:743.325000px;}
.y5b{bottom:745.845000px;}
.y12e{bottom:746.745000px;}
.y10c{bottom:747.465000px;}
.y89{bottom:749.805000px;}
.ydf{bottom:760.065000px;}
.y12d{bottom:766.905000px;}
.y10b{bottom:767.805000px;}
.y88{bottom:770.145000px;}
.yb{bottom:770.325000px;}
.y5a{bottom:775.005000px;}
.yb5{bottom:778.965000px;}
.yde{bottom:781.125000px;}
.y10a{bottom:787.965000px;}
.y3e{bottom:789.585000px;}
.y87{bottom:790.305000px;}
.y59{bottom:795.345000px;}
.y12c{bottom:796.065000px;}
.ya{bottom:797.325000px;}
.yb4{bottom:799.305000px;}
.y86{bottom:810.645000px;}
.y58{bottom:815.685000px;}
.y151{bottom:816.405000px;}
.y109{bottom:817.125000px;}
.yb3{bottom:819.645000px;}
.y12b{bottom:825.405000px;}
.y85{bottom:830.985000px;}
.y57{bottom:835.845000px;}
.yb2{bottom:839.805000px;}
.y9{bottom:840.525000px;}
.y108{bottom:842.505000px;}
.ydd{bottom:844.845000px;}
.y150{bottom:845.565000px;}
.y12a{bottom:845.745000px;}
.y56{bottom:856.185000px;}
.yb1{bottom:860.145000px;}
.y84{bottom:860.685000px;}
.y107{bottom:863.565000px;}
.ydc{bottom:865.185000px;}
.y14f{bottom:865.905000px;}
.y8{bottom:866.445000px;}
.y129{bottom:874.950000px;}
.y55{bottom:876.390000px;}
.yb0{bottom:880.350000px;}
.y83{bottom:881.070000px;}
.y106{bottom:884.670000px;}
.ydb{bottom:894.390000px;}
.y14e{bottom:895.110000px;}
.y128{bottom:895.290000px;}
.y54{bottom:896.730000px;}
.yaf{bottom:900.690000px;}
.y82{bottom:901.410000px;}
.y3a{bottom:902.490000px;}
.y105{bottom:905.550000px;}
.y14d{bottom:915.450000px;}
.y53{bottom:916.890000px;}
.yda{bottom:919.770000px;}
.y81{bottom:921.570000px;}
.y127{bottom:924.450000px;}
.y104{bottom:926.610000px;}
.yae{bottom:930.570000px;}
.yd9{bottom:940.830000px;}
.y80{bottom:941.910000px;}
.y14c{bottom:944.610000px;}
.y126{bottom:944.790000px;}
.y52{bottom:946.050000px;}
.y103{bottom:947.670000px;}
.yad{bottom:950.910000px;}
.yd8{bottom:961.890000px;}
.y7f{bottom:962.070000px;}
.y14b{bottom:964.950000px;}
.y51{bottom:966.390000px;}
.y102{bottom:968.550000px;}
.yac{bottom:971.070000px;}
.y125{bottom:973.950000px;}
.y7e{bottom:982.410000px;}
.yd7{bottom:982.770000px;}
.y50{bottom:986.730000px;}
.yab{bottom:991.410000px;}
.y14a{bottom:994.110000px;}
.y7d{bottom:1002.570000px;}
.y101{bottom:1003.110000px;}
.yd6{bottom:1003.830000px;}
.y4f{bottom:1006.890000px;}
.yaa{bottom:1011.570000px;}
.y149{bottom:1014.450000px;}
.y7c{bottom:1022.910000px;}
.y124{bottom:1023.450000px;}
.yd4{bottom:1024.890000px;}
.y4e{bottom:1027.230000px;}
.ya9{bottom:1031.910000px;}
.y100{bottom:1032.450000px;}
.y148{bottom:1043.610000px;}
.yd2{bottom:1045.770000px;}
.y4d{bottom:1047.390000px;}
.ya8{bottom:1052.070000px;}
.y7b{bottom:1052.610000px;}
.yff{bottom:1052.790000px;}
.yd1{bottom:1066.830000px;}
.y4c{bottom:1067.730000px;}
.yfe{bottom:1072.950000px;}
.y7a{bottom:1081.950000px;}
.yd0{bottom:1087.890000px;}
.y147{bottom:1093.290000px;}
.y4b{bottom:1096.890000px;}
.yfd{bottom:1102.110000px;}
.y79{bottom:1102.290000px;}
.y4a{bottom:1117.950000px;}
.y78{bottom:1122.450000px;}
.y7{bottom:1124.250000px;}
.y47{bottom:1143.000000px;}
.y6{bottom:1144.440000px;}
.y2{bottom:1164.960000px;}
.y46{bottom:1167.480000px;}
.y1{bottom:1189.440000px;}
.h3{height:5.729063px;}
.h13{height:20.016000px;}
.h4{height:20.160000px;}
.h17{height:20.196000px;}
.h15{height:20.340000px;}
.h16{height:21.600000px;}
.hc{height:24.336000px;}
.ha{height:50.132812px;}
.hf{height:52.844096px;}
.h7{height:52.980469px;}
.h9{height:56.437031px;}
.h2{height:58.710938px;}
.h12{height:59.439023px;}
.h5{height:65.884219px;}
.h8{height:66.676641px;}
.hb{height:71.613281px;}
.h6{height:71.982422px;}
.hd{height:74.004654px;}
.h14{height:80.923008px;}
.h10{height:196.380000px;}
.h11{height:368.175000px;}
.he{height:526.575000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:9.720000px;}
.w6{width:23.760000px;}
.w8{width:28.800000px;}
.w13{width:38.736000px;}
.w3{width:42.696000px;}
.w17{width:57.060000px;}
.w12{width:59.040000px;}
.w10{width:63.540000px;}
.w1a{width:66.996000px;}
.w19{width:68.220000px;}
.w1b{width:68.760000px;}
.wf{width:77.976000px;}
.w15{width:94.896000px;}
.wc{width:96.336000px;}
.w14{width:158.790000px;}
.w16{width:168.870000px;}
.wd{width:196.950000px;}
.wb{width:214.230000px;}
.wa{width:241.995000px;}
.w7{width:247.575000px;}
.w11{width:283.170000px;}
.we{width:327.135000px;}
.w18{width:327.315000px;}
.w5{width:462.315000px;}
.w9{width:825.300000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4d{left:7.560000px;}
.x15{left:8.640000px;}
.xe{left:11.340000px;}
.x12{left:13.500000px;}
.x4b{left:14.760000px;}
.x54{left:16.920000px;}
.x38{left:18.000000px;}
.x4c{left:19.080000px;}
.x42{left:20.160000px;}
.x45{left:21.780000px;}
.x44{left:24.300000px;}
.x3a{left:30.060000px;}
.x5f{left:33.525000px;}
.x3{left:34.559987px;}
.x16{left:36.000000px;}
.x43{left:37.080000px;}
.x34{left:39.780000px;}
.x57{left:41.760000px;}
.x55{left:43.740000px;}
.x5d{left:47.700000px;}
.x46{left:50.085000px;}
.x4a{left:53.460000px;}
.x3b{left:56.880000px;}
.x39{left:63.216000px;}
.x56{left:69.660000px;}
.x5a{left:70.740000px;}
.x31{left:72.720000px;}
.x1b{left:75.059987px;}
.x2e{left:77.220000px;}
.x36{left:83.700000px;}
.x35{left:86.790000px;}
.x2f{left:89.130000px;}
.x3c{left:98.100000px;}
.xf{left:104.934000px;}
.x1e{left:107.135987px;}
.xd{left:108.576000px;}
.x40{left:111.465000px;}
.x5e{left:113.445000px;}
.x37{left:120.810000px;}
.x22{left:152.849987px;}
.x13{left:179.505000px;}
.x1{left:180.749987px;}
.x58{left:184.349987px;}
.xa{left:187.229987px;}
.x6{left:191.729987px;}
.x60{left:199.469987px;}
.x7{left:210.449987px;}
.x50{left:212.250000px;}
.x4f{left:214.589987px;}
.x8{left:217.109987px;}
.x47{left:230.249987px;}
.x19{left:233.849987px;}
.x59{left:240.509987px;}
.x18{left:250.815000px;}
.x61{left:255.629987px;}
.x48{left:261.975000px;}
.x1f{left:268.814987px;}
.x2d{left:274.574987px;}
.x3d{left:281.954987px;}
.x4e{left:283.934987px;}
.x25{left:295.274987px;}
.x2{left:306.074987px;}
.x30{left:319.935000px;}
.xb{left:324.794987px;}
.x3e{left:338.114987px;}
.x29{left:340.094987px;}
.x17{left:352.335000px;}
.x2b{left:353.774987px;}
.x51{left:371.775000px;}
.x9{left:378.614987px;}
.x1a{left:396.974987px;}
.x4{left:431.355000px;}
.xc{left:446.684987px;}
.x52{left:467.385000px;}
.x27{left:469.904987px;}
.x23{left:514.364987px;}
.x32{left:534.885000px;}
.x1c{left:536.144987px;}
.x41{left:545.865000px;}
.x21{left:548.924987px;}
.x10{left:570.885000px;}
.x5b{left:583.485000px;}
.x11{left:594.645000px;}
.x49{left:605.625000px;}
.x26{left:607.424987px;}
.x3f{left:624.209987px;}
.x20{left:629.609987px;}
.x33{left:632.130000px;}
.x53{left:636.990000px;}
.x5c{left:651.210000px;}
.x28{left:663.269987px;}
.x2a{left:667.589987px;}
.x1d{left:747.329987px;}
.x24{left:796.499987px;}
.x2c{left:831.239987px;}
.x14{left:842.220000px;}
.x5{left:861.300000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsc{letter-spacing:21.888000pt;}
.ls6{letter-spacing:45.568000pt;}
.ls8{letter-spacing:51.968000pt;}
.ls1{letter-spacing:656.800000pt;}
.ws5{word-spacing:-64.000000pt;}
.wsa{word-spacing:-42.688000pt;}
.ws6{word-spacing:-16.865312pt;}
.ws2{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws0{word-spacing:-0.056320pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-4.160000pt;}
._1c{margin-left:-3.136000pt;}
._3{margin-left:-2.240000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.056000pt;}
._2{width:2.527147pt;}
._7{width:4.288000pt;}
._1b{width:5.184000pt;}
._1a{width:6.720000pt;}
._12{width:7.616000pt;}
._11{width:8.576000pt;}
._19{width:9.728000pt;}
._13{width:11.328000pt;}
._9{width:12.864000pt;}
._8{width:14.208000pt;}
._20{width:16.896000pt;}
._1f{width:17.792000pt;}
._e{width:18.880000pt;}
._f{width:20.544000pt;}
._d{width:21.952000pt;}
._4{width:22.848000pt;}
._10{width:23.936000pt;}
._15{width:25.024000pt;}
._1e{width:26.816000pt;}
._17{width:29.952000pt;}
._16{width:30.890667pt;}
._b{width:32.128000pt;}
._a{width:33.024000pt;}
._14{width:40.000000pt;}
._c{width:42.176000pt;}
._6{width:45.952000pt;}
._5{width:47.296000pt;}
._18{width:2625.920000pt;}
.fs2{font-size:5.120000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs9{font-size:72.320000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.yfb{bottom:4.154667pt;}
.y30{bottom:4.160000pt;}
.yef{bottom:4.800000pt;}
.y15{bottom:6.720000pt;}
.y3d{bottom:7.200000pt;}
.y13{bottom:7.520000pt;}
.y14{bottom:7.840000pt;}
.yd5{bottom:8.960000pt;}
.yd3{bottom:9.120000pt;}
.y2f{bottom:22.112000pt;}
.y4{bottom:30.080000pt;}
.y3c{bottom:31.040000pt;}
.y2e{bottom:40.192000pt;}
.y3{bottom:47.840000pt;}
.y3b{bottom:50.240000pt;}
.y2d{bottom:58.112000pt;}
.y16{bottom:58.560000pt;}
.y49{bottom:58.880000pt;}
.y48{bottom:76.032000pt;}
.y2c{bottom:76.186667pt;}
.ya7{bottom:92.192000pt;}
.y2b{bottom:94.106667pt;}
.yfc{bottom:107.872000pt;}
.y77{bottom:108.672000pt;}
.y146{bottom:109.632000pt;}
.ya6{bottom:110.112000pt;}
.ycf{bottom:110.432000pt;}
.y2a{bottom:112.186667pt;}
.y123{bottom:126.272000pt;}
.y76{bottom:126.752000pt;}
.y145{bottom:127.712000pt;}
.ya5{bottom:128.192000pt;}
.y29{bottom:130.106667pt;}
.yfa{bottom:130.432000pt;}
.yce{bottom:136.346667pt;}
.y122{bottom:144.346667pt;}
.ya4{bottom:146.106667pt;}
.y28{bottom:148.186667pt;}
.yf9{bottom:148.986667pt;}
.y75{bottom:152.666667pt;}
.y144{bottom:153.626667pt;}
.ycd{bottom:162.426667pt;}
.y27{bottom:166.106667pt;}
.yf8{bottom:167.706667pt;}
.y121{bottom:170.266667pt;}
.y74{bottom:170.746667pt;}
.y143{bottom:171.706667pt;}
.ya3{bottom:172.666667pt;}
.ycc{bottom:180.506667pt;}
.y45{bottom:182.600000pt;}
.y26{bottom:184.186667pt;}
.yf7{bottom:186.426667pt;}
.y120{bottom:188.346667pt;}
.y73{bottom:188.666667pt;}
.ya2{bottom:190.746667pt;}
.y142{bottom:197.626667pt;}
.y25{bottom:202.106667pt;}
.yf6{bottom:204.986667pt;}
.ycb{bottom:206.426667pt;}
.ya1{bottom:208.666667pt;}
.y44{bottom:212.680000pt;}
.y11f{bottom:214.266667pt;}
.y72{bottom:214.586667pt;}
.y24{bottom:220.186667pt;}
.y141{bottom:223.546667pt;}
.yf5{bottom:223.706667pt;}
.yca{bottom:224.506667pt;}
.ya0{bottom:226.746667pt;}
.y71{bottom:232.666667pt;}
.y23{bottom:238.106667pt;}
.y11e{bottom:240.346667pt;}
.y43{bottom:241.480000pt;}
.yc9{bottom:242.426667pt;}
.y9f{bottom:244.666667pt;}
.y140{bottom:249.626667pt;}
.y70{bottom:250.746667pt;}
.yf4{bottom:254.426667pt;}
.y22{bottom:256.226667pt;}
.y42{bottom:259.400000pt;}
.yc8{bottom:260.506667pt;}
.y9e{bottom:262.746667pt;}
.y11d{bottom:266.266667pt;}
.y6f{bottom:268.666667pt;}
.y38{bottom:270.946667pt;}
.y21{bottom:274.146667pt;}
.y13f{bottom:275.546667pt;}
.y41{bottom:277.480000pt;}
.yc7{bottom:278.426667pt;}
.yf3{bottom:280.506667pt;}
.y9d{bottom:280.826667pt;}
.y11c{bottom:284.346667pt;}
.y6e{bottom:286.746667pt;}
.y37{bottom:288.866667pt;}
.y20{bottom:292.226667pt;}
.y40{bottom:295.400000pt;}
.yc6{bottom:296.506667pt;}
.yf2{bottom:298.586667pt;}
.y13e{bottom:301.666667pt;}
.y11b{bottom:302.466667pt;}
.y36{bottom:306.946667pt;}
.y9c{bottom:307.266667pt;}
.y1f{bottom:310.146667pt;}
.y6d{bottom:312.706667pt;}
.y3f{bottom:313.506667pt;}
.yc5{bottom:314.466667pt;}
.yf1{bottom:316.546667pt;}
.y35{bottom:324.866667pt;}
.y9b{bottom:325.346667pt;}
.y13d{bottom:327.586667pt;}
.y1e{bottom:328.226667pt;}
.y11a{bottom:328.386667pt;}
.y6c{bottom:330.786667pt;}
.yc4{bottom:332.546667pt;}
.yf0{bottom:342.466667pt;}
.y34{bottom:342.946667pt;}
.y9a{bottom:343.426667pt;}
.y13c{bottom:345.666667pt;}
.y1d{bottom:346.146667pt;}
.y119{bottom:346.466667pt;}
.y6b{bottom:348.706667pt;}
.yc3{bottom:358.466667pt;}
.y33{bottom:360.866667pt;}
.y99{bottom:361.346667pt;}
.y1c{bottom:364.226667pt;}
.y118{bottom:364.386667pt;}
.yee{bottom:365.026667pt;}
.y6a{bottom:366.786667pt;}
.y13b{bottom:371.586667pt;}
.y98{bottom:379.426667pt;}
.y32{bottom:381.346667pt;}
.y1b{bottom:382.146667pt;}
.yc2{bottom:384.386667pt;}
.yed{bottom:384.866667pt;}
.y69{bottom:385.826667pt;}
.y13a{bottom:389.666667pt;}
.y117{bottom:390.306667pt;}
.y97{bottom:397.346667pt;}
.y31{bottom:400.066667pt;}
.y1a{bottom:400.226667pt;}
.yc1{bottom:402.466667pt;}
.yec{bottom:403.586667pt;}
.y68{bottom:403.906667pt;}
.y116{bottom:408.386667pt;}
.y96{bottom:415.426667pt;}
.y139{bottom:415.586667pt;}
.y19{bottom:418.146667pt;}
.yeb{bottom:422.306667pt;}
.y67{bottom:422.946667pt;}
.y115{bottom:426.466667pt;}
.yc0{bottom:428.386667pt;}
.y95{bottom:433.346667pt;}
.y138{bottom:433.666667pt;}
.y18{bottom:436.226667pt;}
.yea{bottom:440.866667pt;}
.y66{bottom:448.866667pt;}
.y114{bottom:452.386667pt;}
.y39{bottom:453.186667pt;}
.y17{bottom:454.146667pt;}
.ybf{bottom:454.466667pt;}
.ye9{bottom:459.586667pt;}
.y94{bottom:459.906667pt;}
.y113{bottom:470.466667pt;}
.ybe{bottom:472.546667pt;}
.y65{bottom:474.946667pt;}
.y93{bottom:477.986667pt;}
.y137{bottom:485.666667pt;}
.y112{bottom:488.386667pt;}
.ye8{bottom:490.306667pt;}
.y64{bottom:493.026667pt;}
.y92{bottom:495.906667pt;}
.ybd{bottom:498.466667pt;}
.y63{bottom:510.946667pt;}
.y136{bottom:511.586667pt;}
.y91{bottom:513.986667pt;}
.y111{bottom:514.306667pt;}
.ye7{bottom:516.386667pt;}
.ybc{bottom:516.546667pt;}
.y12{bottom:528.546667pt;}
.y62{bottom:529.026667pt;}
.y90{bottom:531.906667pt;}
.y110{bottom:532.386667pt;}
.ye6{bottom:534.466667pt;}
.y135{bottom:537.693333pt;}
.ybb{bottom:542.493333pt;}
.y61{bottom:546.973333pt;}
.y8f{bottom:550.013333pt;}
.y10f{bottom:550.493333pt;}
.ye5{bottom:552.413333pt;}
.y134{bottom:555.773333pt;}
.y11{bottom:556.573333pt;}
.y8e{bottom:567.933333pt;}
.yba{bottom:568.413333pt;}
.y60{bottom:572.893333pt;}
.y133{bottom:573.693333pt;}
.y10{bottom:575.613333pt;}
.y10e{bottom:576.413333pt;}
.ye4{bottom:578.333333pt;}
.y8d{bottom:586.013333pt;}
.yb9{bottom:586.493333pt;}
.y5f{bottom:590.973333pt;}
.y132{bottom:591.773333pt;}
.yf{bottom:591.933333pt;}
.y10d{bottom:594.493333pt;}
.ye3{bottom:600.893333pt;}
.yb8{bottom:604.573333pt;}
.ye{bottom:608.253333pt;}
.y5e{bottom:609.053333pt;}
.y131{bottom:609.693333pt;}
.y8c{bottom:612.413333pt;}
.ye2{bottom:619.613333pt;}
.yb7{bottom:622.493333pt;}
.yd{bottom:625.693333pt;}
.y5d{bottom:626.973333pt;}
.y130{bottom:627.773333pt;}
.y8b{bottom:630.493333pt;}
.ye1{bottom:638.333333pt;}
.yb6{bottom:640.573333pt;}
.y5c{bottom:645.053333pt;}
.y12f{bottom:645.693333pt;}
.y8a{bottom:648.573333pt;}
.ye0{bottom:656.893333pt;}
.yc{bottom:660.733333pt;}
.y5b{bottom:662.973333pt;}
.y12e{bottom:663.773333pt;}
.y10c{bottom:664.413333pt;}
.y89{bottom:666.493333pt;}
.ydf{bottom:675.613333pt;}
.y12d{bottom:681.693333pt;}
.y10b{bottom:682.493333pt;}
.y88{bottom:684.573333pt;}
.yb{bottom:684.733333pt;}
.y5a{bottom:688.893333pt;}
.yb5{bottom:692.413333pt;}
.yde{bottom:694.333333pt;}
.y10a{bottom:700.413333pt;}
.y3e{bottom:701.853333pt;}
.y87{bottom:702.493333pt;}
.y59{bottom:706.973333pt;}
.y12c{bottom:707.613333pt;}
.ya{bottom:708.733333pt;}
.yb4{bottom:710.493333pt;}
.y86{bottom:720.573333pt;}
.y58{bottom:725.053333pt;}
.y151{bottom:725.693333pt;}
.y109{bottom:726.333333pt;}
.yb3{bottom:728.573333pt;}
.y12b{bottom:733.693333pt;}
.y85{bottom:738.653333pt;}
.y57{bottom:742.973333pt;}
.yb2{bottom:746.493333pt;}
.y9{bottom:747.133333pt;}
.y108{bottom:748.893333pt;}
.ydd{bottom:750.973333pt;}
.y150{bottom:751.613333pt;}
.y12a{bottom:751.773333pt;}
.y56{bottom:761.053333pt;}
.yb1{bottom:764.573333pt;}
.y84{bottom:765.053333pt;}
.y107{bottom:767.613333pt;}
.ydc{bottom:769.053333pt;}
.y14f{bottom:769.693333pt;}
.y8{bottom:770.173333pt;}
.y129{bottom:777.733333pt;}
.y55{bottom:779.013333pt;}
.yb0{bottom:782.533333pt;}
.y83{bottom:783.173333pt;}
.y106{bottom:786.373333pt;}
.ydb{bottom:795.013333pt;}
.y14e{bottom:795.653333pt;}
.y128{bottom:795.813333pt;}
.y54{bottom:797.093333pt;}
.yaf{bottom:800.613333pt;}
.y82{bottom:801.253333pt;}
.y3a{bottom:802.213333pt;}
.y105{bottom:804.933333pt;}
.y14d{bottom:813.733333pt;}
.y53{bottom:815.013333pt;}
.yda{bottom:817.573333pt;}
.y81{bottom:819.173333pt;}
.y127{bottom:821.733333pt;}
.y104{bottom:823.653333pt;}
.yae{bottom:827.173333pt;}
.yd9{bottom:836.293333pt;}
.y80{bottom:837.253333pt;}
.y14c{bottom:839.653333pt;}
.y126{bottom:839.813333pt;}
.y52{bottom:840.933333pt;}
.y103{bottom:842.373333pt;}
.yad{bottom:845.253333pt;}
.yd8{bottom:855.013333pt;}
.y7f{bottom:855.173333pt;}
.y14b{bottom:857.733333pt;}
.y51{bottom:859.013333pt;}
.y102{bottom:860.933333pt;}
.yac{bottom:863.173333pt;}
.y125{bottom:865.733333pt;}
.y7e{bottom:873.253333pt;}
.yd7{bottom:873.573333pt;}
.y50{bottom:877.093333pt;}
.yab{bottom:881.253333pt;}
.y14a{bottom:883.653333pt;}
.y7d{bottom:891.173333pt;}
.y101{bottom:891.653333pt;}
.yd6{bottom:892.293333pt;}
.y4f{bottom:895.013333pt;}
.yaa{bottom:899.173333pt;}
.y149{bottom:901.733333pt;}
.y7c{bottom:909.253333pt;}
.y124{bottom:909.733333pt;}
.yd4{bottom:911.013333pt;}
.y4e{bottom:913.093333pt;}
.ya9{bottom:917.253333pt;}
.y100{bottom:917.733333pt;}
.y148{bottom:927.653333pt;}
.yd2{bottom:929.573333pt;}
.y4d{bottom:931.013333pt;}
.ya8{bottom:935.173333pt;}
.y7b{bottom:935.653333pt;}
.yff{bottom:935.813333pt;}
.yd1{bottom:948.293333pt;}
.y4c{bottom:949.093333pt;}
.yfe{bottom:953.733333pt;}
.y7a{bottom:961.733333pt;}
.yd0{bottom:967.013333pt;}
.y147{bottom:971.813333pt;}
.y4b{bottom:975.013333pt;}
.yfd{bottom:979.653333pt;}
.y79{bottom:979.813333pt;}
.y4a{bottom:993.733333pt;}
.y78{bottom:997.733333pt;}
.y7{bottom:999.333333pt;}
.y47{bottom:1016.000000pt;}
.y6{bottom:1017.280000pt;}
.y2{bottom:1035.520000pt;}
.y46{bottom:1037.760000pt;}
.y1{bottom:1057.280000pt;}
.h3{height:5.092500pt;}
.h13{height:17.792000pt;}
.h4{height:17.920000pt;}
.h17{height:17.952000pt;}
.h15{height:18.080000pt;}
.h16{height:19.200000pt;}
.hc{height:21.632000pt;}
.ha{height:44.562500pt;}
.hf{height:46.972530pt;}
.h7{height:47.093750pt;}
.h9{height:50.166250pt;}
.h2{height:52.187500pt;}
.h12{height:52.834688pt;}
.h5{height:58.563750pt;}
.h8{height:59.268125pt;}
.hb{height:63.656250pt;}
.h6{height:63.984375pt;}
.hd{height:65.781915pt;}
.h14{height:71.931562pt;}
.h10{height:174.560000pt;}
.h11{height:327.266667pt;}
.he{height:468.066667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:8.640000pt;}
.w6{width:21.120000pt;}
.w8{width:25.600000pt;}
.w13{width:34.432000pt;}
.w3{width:37.952000pt;}
.w17{width:50.720000pt;}
.w12{width:52.480000pt;}
.w10{width:56.480000pt;}
.w1a{width:59.552000pt;}
.w19{width:60.640000pt;}
.w1b{width:61.120000pt;}
.wf{width:69.312000pt;}
.w15{width:84.352000pt;}
.wc{width:85.632000pt;}
.w14{width:141.146667pt;}
.w16{width:150.106667pt;}
.wd{width:175.066667pt;}
.wb{width:190.426667pt;}
.wa{width:215.106667pt;}
.w7{width:220.066667pt;}
.w11{width:251.706667pt;}
.we{width:290.786667pt;}
.w18{width:290.946667pt;}
.w5{width:410.946667pt;}
.w9{width:733.600000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4d{left:6.720000pt;}
.x15{left:7.680000pt;}
.xe{left:10.080000pt;}
.x12{left:12.000000pt;}
.x4b{left:13.120000pt;}
.x54{left:15.040000pt;}
.x38{left:16.000000pt;}
.x4c{left:16.960000pt;}
.x42{left:17.920000pt;}
.x45{left:19.360000pt;}
.x44{left:21.600000pt;}
.x3a{left:26.720000pt;}
.x5f{left:29.800000pt;}
.x3{left:30.719988pt;}
.x16{left:32.000000pt;}
.x43{left:32.960000pt;}
.x34{left:35.360000pt;}
.x57{left:37.120000pt;}
.x55{left:38.880000pt;}
.x5d{left:42.400000pt;}
.x46{left:44.520000pt;}
.x4a{left:47.520000pt;}
.x3b{left:50.560000pt;}
.x39{left:56.192000pt;}
.x56{left:61.920000pt;}
.x5a{left:62.880000pt;}
.x31{left:64.640000pt;}
.x1b{left:66.719988pt;}
.x2e{left:68.640000pt;}
.x36{left:74.400000pt;}
.x35{left:77.146667pt;}
.x2f{left:79.226667pt;}
.x3c{left:87.200000pt;}
.xf{left:93.274667pt;}
.x1e{left:95.231988pt;}
.xd{left:96.512000pt;}
.x40{left:99.080000pt;}
.x5e{left:100.840000pt;}
.x37{left:107.386667pt;}
.x22{left:135.866655pt;}
.x13{left:159.560000pt;}
.x1{left:160.666655pt;}
.x58{left:163.866655pt;}
.xa{left:166.426655pt;}
.x6{left:170.426655pt;}
.x60{left:177.306655pt;}
.x7{left:187.066655pt;}
.x50{left:188.666667pt;}
.x4f{left:190.746655pt;}
.x8{left:192.986655pt;}
.x47{left:204.666655pt;}
.x19{left:207.866655pt;}
.x59{left:213.786655pt;}
.x18{left:222.946667pt;}
.x61{left:227.226655pt;}
.x48{left:232.866667pt;}
.x1f{left:238.946655pt;}
.x2d{left:244.066655pt;}
.x3d{left:250.626655pt;}
.x4e{left:252.386655pt;}
.x25{left:262.466655pt;}
.x2{left:272.066655pt;}
.x30{left:284.386667pt;}
.xb{left:288.706655pt;}
.x3e{left:300.546655pt;}
.x29{left:302.306655pt;}
.x17{left:313.186667pt;}
.x2b{left:314.466655pt;}
.x51{left:330.466667pt;}
.x9{left:336.546655pt;}
.x1a{left:352.866655pt;}
.x4{left:383.426667pt;}
.xc{left:397.053321pt;}
.x52{left:415.453333pt;}
.x27{left:417.693321pt;}
.x23{left:457.213322pt;}
.x32{left:475.453333pt;}
.x1c{left:476.573322pt;}
.x41{left:485.213333pt;}
.x21{left:487.933321pt;}
.x10{left:507.453333pt;}
.x5b{left:518.653333pt;}
.x11{left:528.573333pt;}
.x49{left:538.333333pt;}
.x26{left:539.933321pt;}
.x3f{left:554.853321pt;}
.x20{left:559.653322pt;}
.x33{left:561.893333pt;}
.x53{left:566.213333pt;}
.x5c{left:578.853333pt;}
.x28{left:589.573322pt;}
.x2a{left:593.413322pt;}
.x1d{left:664.293321pt;}
.x24{left:707.999988pt;}
.x2c{left:738.879988pt;}
.x14{left:748.640000pt;}
.x5{left:765.600000pt;}
}




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