
    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_383d501dc7bfdf6813e941bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e5ebf5a667306f08c897dead.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ba4c26798f6f92869604798e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6413a533ebf1203b7b93c977.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_0a5ba87d52b6516828bee497.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093750;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_af71e62b5f0bae033024c743.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_583305fbb5bb0a3aa2091678.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v7{vertical-align:-13.680000px;}
.v5{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.800000px;}
.v4{vertical-align:18.000000px;}
.v8{vertical-align:19.440000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.450600px;}
.ls3{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.181200px;}
.ls21{letter-spacing:-0.172800px;}
.ls2{letter-spacing:-0.152400px;}
.ls16{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.017280px;}
.ls27{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.018720px;}
.ls19{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.195600px;}
.lsc{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.252000px;}
.ls28{letter-spacing:0.269280px;}
.ls2b{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.541200px;}
.ls0{letter-spacing:0.541440px;}
.ls22{letter-spacing:1.968480px;}
.ls1e{letter-spacing:1.998000px;}
.lsd{letter-spacing:2.126880px;}
.ls1c{letter-spacing:2.610000px;}
.ls1b{letter-spacing:2.707200px;}
.ls1d{letter-spacing:2.718720px;}
.ls24{letter-spacing:2.782080px;}
.lsf{letter-spacing:2.846880px;}
.ls1a{letter-spacing:3.075840px;}
.ls18{letter-spacing:3.168000px;}
.ls11{letter-spacing:3.247200px;}
.lse{letter-spacing:3.312000px;}
.ls1f{letter-spacing:3.502080px;}
.ls26{letter-spacing:8.945280px;}
.ls25{letter-spacing:9.089280px;}
.ls10{letter-spacing:20.268000px;}
.lsa{letter-spacing:64.782720px;}
.ls9{letter-spacing:64.926720px;}
.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;}
}
.wsa{word-spacing:-54.000000px;}
.ws19{word-spacing:-21.634560px;}
.ws9{word-spacing:-21.600000px;}
.ws2{word-spacing:-18.262320px;}
.ws18{word-spacing:-15.264000px;}
.wsc{word-spacing:-15.228000px;}
.ws17{word-spacing:-15.030000px;}
.ws11{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.508000px;}
.ws1a{word-spacing:-13.680120px;}
.ws1{word-spacing:-13.410720px;}
.ws6{word-spacing:-13.229520px;}
.ws7{word-spacing:-12.960120px;}
.wse{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.150480px;}
.wsd{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.609280px;}
.wsf{word-spacing:-11.484000px;}
.ws14{word-spacing:-10.612800px;}
.ws13{word-spacing:-8.749200px;}
.ws5{word-spacing:-8.406720px;}
.ws16{word-spacing:-8.380800px;}
.ws3{word-spacing:-7.606080px;}
.ws15{word-spacing:-7.286400px;}
.wsb{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._27{margin-left:-6.904800px;}
._14{margin-left:-3.376800px;}
._a{margin-left:-1.736640px;}
._0{width:1.127520px;}
._c{width:2.245200px;}
._d{width:3.275040px;}
._e{width:4.389840px;}
._1e{width:5.870160px;}
._f{width:7.573680px;}
._11{width:8.583840px;}
._10{width:9.599760px;}
._12{width:10.757520px;}
._13{width:12.219840px;}
._1f{width:13.878000px;}
._15{width:14.954400px;}
._19{width:16.223760px;}
._18{width:17.496000px;}
._1b{width:19.329120px;}
._1a{width:20.754000px;}
._2b{width:21.769440px;}
._1c{width:22.788000px;}
._1d{width:23.922000px;}
._28{width:26.892000px;}
._22{width:28.242000px;}
._17{width:31.212000px;}
._16{width:32.616000px;}
._2c{width:35.316000px;}
._2d{width:40.104000px;}
._26{width:41.148000px;}
._25{width:42.282000px;}
._24{width:51.138000px;}
._23{width:52.272000px;}
._2a{width:54.288000px;}
._8{width:58.141920px;}
._21{width:60.564000px;}
._20{width:68.292000px;}
._29{width:97.044480px;}
._b{width:176.739600px;}
._3{width:195.228000px;}
._6{width:198.630720px;}
._9{width:200.790720px;}
._1{width:415.928640px;}
._4{width:625.311840px;}
._7{width:1094.610720px;}
._2{width:1260.408000px;}
._5{width:1263.810720px;}
.fc5{color:rgb(46,67,92);}
.fc4{color:rgb(48,117,186);}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(10,129,174);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:27.360000px;}
.fs7{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:2.880000px;}
.y10{bottom:3.060000px;}
.yc5{bottom:3.600000px;}
.yca{bottom:3.780000px;}
.yc8{bottom:4.680000px;}
.ycb{bottom:4.860000px;}
.y1a{bottom:5.400000px;}
.yc4{bottom:6.120000px;}
.yc6{bottom:8.280000px;}
.yc0{bottom:8.820000px;}
.y109{bottom:9.000000px;}
.y10f{bottom:10.620000px;}
.y112{bottom:10.800000px;}
.yd4{bottom:11.340000px;}
.ycd{bottom:11.385000px;}
.y52{bottom:11.520000px;}
.y2d{bottom:11.700000px;}
.ycf{bottom:11.745000px;}
.yc2{bottom:11.880000px;}
.yd6{bottom:12.240000px;}
.ye{bottom:12.960000px;}
.yd5{bottom:15.840000px;}
.yce{bottom:15.885000px;}
.yd1{bottom:16.020000px;}
.y19{bottom:17.460000px;}
.y10d{bottom:18.360000px;}
.y111{bottom:18.540000px;}
.y3e{bottom:20.520000px;}
.y7{bottom:23.940000px;}
.y34{bottom:26.820000px;}
.y10b{bottom:27.540000px;}
.y38{bottom:31.860000px;}
.y11{bottom:31.905000px;}
.y18{bottom:32.400000px;}
.y4e{bottom:34.374000px;}
.y2c{bottom:34.380000px;}
.y3d{bottom:35.460000px;}
.y6{bottom:38.880000px;}
.yd{bottom:40.500000px;}
.y33{bottom:41.940000px;}
.y17{bottom:44.640000px;}
.y35{bottom:46.620000px;}
.y4d{bottom:48.234000px;}
.y2b{bottom:48.240000px;}
.y4{bottom:48.420000px;}
.y3c{bottom:50.625000px;}
.y32{bottom:57.060000px;}
.y54{bottom:57.960000px;}
.y16{bottom:59.580000px;}
.y3{bottom:60.516000px;}
.y4c{bottom:62.094000px;}
.y2a{bottom:62.130000px;}
.y3b{bottom:65.745000px;}
.y31{bottom:69.120000px;}
.y15{bottom:71.640000px;}
.y2{bottom:72.576000px;}
.y3a{bottom:80.865000px;}
.y30{bottom:81.180000px;}
.y4b{bottom:84.774000px;}
.y29{bottom:84.810000px;}
.y14{bottom:86.760000px;}
.y2f{bottom:96.300000px;}
.y4a{bottom:98.634000px;}
.y28{bottom:98.670000px;}
.yfc{bottom:101.556000px;}
.y13{bottom:101.880000px;}
.y80{bottom:112.176000px;}
.y126{bottom:112.896000px;}
.y3f{bottom:116.496000px;}
.yb7{bottom:120.996000px;}
.y49{bottom:121.494000px;}
.y27{bottom:121.530000px;}
.y7f{bottom:128.916000px;}
.y125{bottom:134.316000px;}
.y48{bottom:135.354000px;}
.y26{bottom:135.390000px;}
.yb6{bottom:137.736000px;}
.yfb{bottom:138.276000px;}
.y168{bottom:141.156000px;}
.y7e{bottom:145.656000px;}
.y4f{bottom:146.874000px;}
.y149{bottom:147.456000px;}
.y47{bottom:149.034000px;}
.y25{bottom:149.070000px;}
.yb5{bottom:154.470000px;}
.y167{bottom:157.890000px;}
.y7d{bottom:162.390000px;}
.y46{bottom:162.894000px;}
.y24{bottom:162.930000px;}
.y148{bottom:164.190000px;}
.y166{bottom:174.810000px;}
.y45{bottom:176.754000px;}
.y23{bottom:176.790000px;}
.y7c{bottom:179.130000px;}
.yb4{bottom:180.390000px;}
.y147{bottom:180.930000px;}
.y22{bottom:190.470000px;}
.y165{bottom:191.550000px;}
.y13c{bottom:193.890000px;}
.y7b{bottom:195.870000px;}
.yb3{bottom:197.310000px;}
.y44{bottom:199.434000px;}
.y146{bottom:207.750000px;}
.y164{bottom:208.290000px;}
.y13b{bottom:210.630000px;}
.y7a{bottom:212.610000px;}
.y21{bottom:213.330000px;}
.y43{bottom:213.339000px;}
.yb2{bottom:214.050000px;}
.y163{bottom:225.930000px;}
.y20{bottom:227.190000px;}
.y42{bottom:227.199000px;}
.y79{bottom:229.350000px;}
.ye7{bottom:230.070000px;}
.yb1{bottom:230.970000px;}
.y13a{bottom:236.370000px;}
.y1f{bottom:240.870000px;}
.y41{bottom:240.879000px;}
.y145{bottom:241.770000px;}
.y162{bottom:242.670000px;}
.y78{bottom:246.090000px;}
.yb0{bottom:247.890000px;}
.y139{bottom:253.110000px;}
.y1e{bottom:254.730000px;}
.y40{bottom:254.739000px;}
.ye6{bottom:255.810000px;}
.y161{bottom:259.410000px;}
.y77{bottom:262.830000px;}
.yaf{bottom:264.810000px;}
.y144{bottom:265.710000px;}
.y1d{bottom:268.590000px;}
.y138{bottom:269.850000px;}
.ye5{bottom:272.550000px;}
.y160{bottom:277.050000px;}
.y76{bottom:279.570000px;}
.yae{bottom:281.730000px;}
.y1c{bottom:282.270000px;}
.y39{bottom:282.810000px;}
.y143{bottom:286.950000px;}
.ye4{bottom:289.290000px;}
.y15f{bottom:293.790000px;}
.y137{bottom:295.590000px;}
.y75{bottom:297.390000px;}
.ye3{bottom:306.030000px;}
.yad{bottom:307.650000px;}
.y15e{bottom:310.530000px;}
.y136{bottom:312.510000px;}
.y74{bottom:315.030000px;}
.yac{bottom:324.390000px;}
.y15d{bottom:328.215000px;}
.y135{bottom:329.295000px;}
.ye2{bottom:331.815000px;}
.y73{bottom:332.715000px;}
.y15c{bottom:344.955000px;}
.ye1{bottom:348.735000px;}
.y72{bottom:349.455000px;}
.yab{bottom:350.175000px;}
.y134{bottom:356.115000px;}
.y124{bottom:361.155000px;}
.y15b{bottom:361.695000px;}
.ye0{bottom:365.655000px;}
.y71{bottom:366.195000px;}
.yaa{bottom:366.915000px;}
.yfa{bottom:370.155000px;}
.y123{bottom:377.895000px;}
.y15a{bottom:378.615000px;}
.ydf{bottom:382.575000px;}
.y70{bottom:382.935000px;}
.ya9{bottom:383.655000px;}
.y133{bottom:389.955000px;}
.y37{bottom:392.115000px;}
.yf9{bottom:394.095000px;}
.y122{bottom:394.635000px;}
.yde{bottom:399.315000px;}
.y6f{bottom:399.675000px;}
.ya8{bottom:402.195000px;}
.y159{bottom:405.255000px;}
.yf8{bottom:409.215000px;}
.y121{bottom:411.375000px;}
.y132{bottom:414.075000px;}
.ya7{bottom:419.115000px;}
.y158{bottom:421.995000px;}
.ydd{bottom:424.695000px;}
.y6e{bottom:426.315000px;}
.yf7{bottom:430.815000px;}
.y131{bottom:435.495000px;}
.ya6{bottom:435.855000px;}
.y120{bottom:438.195000px;}
.y157{bottom:438.735000px;}
.y6d{bottom:443.055000px;}
.ydc{bottom:445.935000px;}
.y36{bottom:447.015000px;}
.ya5{bottom:452.775000px;}
.ya4{bottom:469.695000px;}
.y156{bottom:470.955000px;}
.y11f{bottom:472.575000px;}
.y6c{bottom:475.455000px;}
.y11e{bottom:489.315000px;}
.ya3{bottom:495.435000px;}
.y11d{bottom:506.055000px;}
.ya2{bottom:512.175000px;}
.y155{bottom:520.095000px;}
.y11c{bottom:522.795000px;}
.y6b{bottom:524.595000px;}
.ya1{bottom:528.915000px;}
.y1b{bottom:533.775000px;}
.y154{bottom:536.835000px;}
.y6a{bottom:541.335000px;}
.ya0{bottom:545.655000px;}
.y11b{bottom:549.795000px;}
.y69{bottom:558.075000px;}
.y9f{bottom:562.395000px;}
.y153{bottom:562.575000px;}
.y9e{bottom:579.315000px;}
.y68{bottom:583.635000px;}
.y11a{bottom:586.155000px;}
.y152{bottom:588.135000px;}
.y9d{bottom:596.085000px;}
.y2e{bottom:599.865000px;}
.y67{bottom:604.725000px;}
.y151{bottom:609.405000px;}
.y142{bottom:615.165000px;}
.y9c{bottom:621.825000px;}
.y119{bottom:635.325000px;}
.y9b{bottom:638.565000px;}
.ydb{bottom:639.105000px;}
.y141{bottom:640.725000px;}
.y118{bottom:652.065000px;}
.y9a{bottom:655.305000px;}
.yda{bottom:655.845000px;}
.y140{bottom:661.965000px;}
.yf6{bottom:664.305000px;}
.y117{bottom:668.805000px;}
.y99{bottom:672.045000px;}
.yd9{bottom:672.585000px;}
.y116{bottom:685.545000px;}
.yf5{bottom:690.045000px;}
.y98{bottom:697.785000px;}
.yd8{bottom:704.985000px;}
.y12{bottom:706.605000px;}
.yf4{bottom:706.785000px;}
.y115{bottom:711.285000px;}
.y97{bottom:714.525000px;}
.yf3{bottom:723.525000px;}
.y130{bottom:725.325000px;}
.yd7{bottom:729.105000px;}
.y96{bottom:731.265000px;}
.y114{bottom:735.225000px;}
.yf2{bottom:740.445000px;}
.y12f{bottom:742.065000px;}
.y95{bottom:748.005000px;}
.yf1{bottom:757.185000px;}
.y12e{bottom:758.805000px;}
.y113{bottom:759.705000px;}
.y94{bottom:764.745000px;}
.yf0{bottom:773.925000px;}
.y12d{bottom:775.545000px;}
.yd3{bottom:776.445000px;}
.y93{bottom:781.485000px;}
.y110{bottom:784.185000px;}
.yef{bottom:799.665000px;}
.y12c{bottom:802.365000px;}
.y66{bottom:802.545000px;}
.yd2{bottom:803.445000px;}
.y150{bottom:805.965000px;}
.y92{bottom:807.225000px;}
.yee{bottom:816.405000px;}
.y65{bottom:819.285000px;}
.y14f{bottom:822.705000px;}
.y91{bottom:823.965000px;}
.y10c{bottom:824.325000px;}
.yd0{bottom:830.625000px;}
.yed{bottom:834.045000px;}
.y64{bottom:836.025000px;}
.y12b{bottom:836.385000px;}
.yf{bottom:836.925000px;}
.y14e{bottom:839.445000px;}
.y90{bottom:841.785000px;}
.y17b{bottom:842.505000px;}
.y13f{bottom:846.105000px;}
.yec{bottom:850.785000px;}
.y63{bottom:852.765000px;}
.y14d{bottom:856.185000px;}
.y17a{bottom:856.365000px;}
.ycc{bottom:857.805000px;}
.y8f{bottom:859.425000px;}
.y12a{bottom:860.325000px;}
.y10a{bottom:865.050000px;}
.y62{bottom:869.550000px;}
.y179{bottom:870.090000px;}
.y13e{bottom:871.710000px;}
.yeb{bottom:877.470000px;}
.y129{bottom:881.610000px;}
.y14c{bottom:881.970000px;}
.y178{bottom:883.950000px;}
.yc9{bottom:884.850000px;}
.y8e{bottom:886.110000px;}
.y61{bottom:886.290000px;}
.yc{bottom:891.870000px;}
.y13d{bottom:892.770000px;}
.yea{bottom:894.210000px;}
.y177{bottom:897.810000px;}
.y8d{bottom:902.850000px;}
.yc7{bottom:904.290000px;}
.y14b{bottom:907.710000px;}
.y176{bottom:911.490000px;}
.y60{bottom:912.030000px;}
.y108{bottom:916.350000px;}
.y8c{bottom:919.590000px;}
.ye9{bottom:919.770000px;}
.yc3{bottom:920.130000px;}
.y175{bottom:925.350000px;}
.y5f{bottom:928.770000px;}
.y14a{bottom:930.570000px;}
.y8b{bottom:936.330000px;}
.y174{bottom:939.210000px;}
.ye8{bottom:941.370000px;}
.y5e{bottom:945.510000px;}
.yc1{bottom:946.230000px;}
.y173{bottom:952.890000px;}
.y8a{bottom:953.070000px;}
.y107{bottom:955.410000px;}
.y5d{bottom:962.250000px;}
.y172{bottom:966.750000px;}
.y106{bottom:972.150000px;}
.y89{bottom:978.810000px;}
.y171{bottom:980.610000px;}
.yb{bottom:981.870000px;}
.ybf{bottom:982.050000px;}
.y5c{bottom:987.990000px;}
.y170{bottom:994.290000px;}
.y88{bottom:995.550000px;}
.y105{bottom:997.890000px;}
.ya{bottom:998.790000px;}
.y5b{bottom:1004.730000px;}
.y16f{bottom:1008.150000px;}
.y87{bottom:1012.290000px;}
.y9{bottom:1014.270000px;}
.y104{bottom:1014.630000px;}
.ybe{bottom:1020.930000px;}
.y5a{bottom:1021.470000px;}
.y16e{bottom:1022.010000px;}
.y86{bottom:1029.030000px;}
.y103{bottom:1031.370000px;}
.y8{bottom:1034.610000px;}
.y16d{bottom:1035.690000px;}
.y59{bottom:1038.210000px;}
.y85{bottom:1045.770000px;}
.ybd{bottom:1046.670000px;}
.y102{bottom:1048.110000px;}
.y16c{bottom:1049.550000px;}
.y58{bottom:1055.130000px;}
.y84{bottom:1062.690000px;}
.ybc{bottom:1063.410000px;}
.y1{bottom:1067.910000px;}
.y57{bottom:1071.870000px;}
.y5{bottom:1073.670000px;}
.y101{bottom:1073.850000px;}
.y16b{bottom:1077.090000px;}
.y83{bottom:1079.430000px;}
.ybb{bottom:1080.150000px;}
.y56{bottom:1088.610000px;}
.y100{bottom:1090.590000px;}
.y128{bottom:1090.950000px;}
.y16a{bottom:1104.810000px;}
.yba{bottom:1105.890000px;}
.yff{bottom:1107.510000px;}
.y127{bottom:1107.690000px;}
.y82{bottom:1111.650000px;}
.y169{bottom:1118.490000px;}
.y55{bottom:1120.650000px;}
.yb9{bottom:1122.630000px;}
.yfe{bottom:1124.430000px;}
.y81{bottom:1135.800000px;}
.yb8{bottom:1140.300000px;}
.yfd{bottom:1141.200000px;}
.y53{bottom:1167.120000px;}
.y51{bottom:1188.720000px;}
.y50{bottom:1232.100000px;}
.h1b{height:15.840000px;}
.h1c{height:19.440000px;}
.h25{height:24.480000px;}
.h18{height:25.380000px;}
.h16{height:25.740000px;}
.h21{height:25.920000px;}
.h20{height:27.000000px;}
.h1d{height:27.036000px;}
.h1f{height:27.180000px;}
.h7{height:28.535625px;}
.h14{height:31.680000px;}
.h17{height:33.480000px;}
.h23{height:39.996000px;}
.h24{height:40.140000px;}
.h19{height:41.974453px;}
.h3{height:43.554375px;}
.h22{height:49.140000px;}
.h4{height:50.040000px;}
.h5{height:50.312812px;}
.h1e{height:53.270156px;}
.h10{height:54.900000px;}
.ha{height:54.936000px;}
.h2{height:56.320312px;}
.h1a{height:60.392813px;}
.hb{height:62.327813px;}
.hf{height:65.376000px;}
.h6{height:69.086250px;}
.h15{height:81.101250px;}
.h8{height:86.760000px;}
.h9{height:99.874688px;}
.he{height:106.020000px;}
.h11{height:108.576000px;}
.hc{height:129.600000px;}
.h13{height:165.600000px;}
.h12{height:274.890000px;}
.hd{height:302.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:48.060000px;}
.w12{width:63.936000px;}
.wf{width:70.560000px;}
.w11{width:72.000000px;}
.wd{width:73.656000px;}
.w10{width:78.156000px;}
.we{width:92.916000px;}
.wc{width:95.580000px;}
.wb{width:95.976000px;}
.wa{width:112.356000px;}
.w5{width:178.635000px;}
.w9{width:377.565000px;}
.w3{width:530.070000px;}
.w6{width:582.585000px;}
.w7{width:724.320000px;}
.w4{width:761.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1{left:-106.416013px;}
.x10{left:-74.520013px;}
.x0{left:0.000000px;}
.x9{left:8.280000px;}
.x3b{left:9.714000px;}
.x4{left:10.800000px;}
.x3f{left:13.140000px;}
.x3d{left:16.020000px;}
.xe{left:17.136000px;}
.x41{left:18.354000px;}
.xd{left:20.880000px;}
.x2c{left:22.320000px;}
.x2a{left:25.020000px;}
.x2d{left:26.820000px;}
.x29{left:28.440000px;}
.x30{left:30.060000px;}
.x2e{left:31.176000px;}
.x24{left:32.220000px;}
.x42{left:35.145000px;}
.x2b{left:36.180000px;}
.x14{left:38.700000px;}
.x28{left:41.220000px;}
.x22{left:44.856000px;}
.x2f{left:47.016000px;}
.x15{left:53.099987px;}
.x11{left:60.300000px;}
.x27{left:62.676000px;}
.x2{left:63.719987px;}
.x56{left:69.839987px;}
.x57{left:70.919987px;}
.x55{left:73.079987px;}
.x43{left:75.959987px;}
.xb{left:77.256000px;}
.x19{left:80.099987px;}
.x31{left:85.535987px;}
.x1a{left:107.135987px;}
.x4e{left:109.295987px;}
.x50{left:126.035987px;}
.x4c{left:131.255987px;}
.x1b{left:134.135987px;}
.x33{left:135.395987px;}
.x7{left:139.895987px;}
.x18{left:146.375987px;}
.x1c{left:161.129987px;}
.x23{left:165.450000px;}
.x45{left:174.629987px;}
.x12{left:195.915000px;}
.x3c{left:216.570000px;}
.x3{left:221.430000px;}
.xa{left:224.535000px;}
.x5{left:228.449987px;}
.xc{left:242.175000px;}
.x16{left:257.834987px;}
.x25{left:261.435000px;}
.xf{left:263.235000px;}
.x3e{left:294.735000px;}
.x4b{left:346.394987px;}
.x26{left:357.015000px;}
.x40{left:366.735000px;}
.x6{left:380.054987px;}
.x4f{left:382.394987px;}
.x4d{left:392.834987px;}
.x44{left:394.814987px;}
.x32{left:415.364987px;}
.x17{left:427.604987px;}
.x8{left:457.124987px;}
.x1f{left:462.524987px;}
.x36{left:467.564987px;}
.x1d{left:473.324987px;}
.x47{left:478.724987px;}
.x39{left:483.944987px;}
.x48{left:485.384987px;}
.x20{left:489.524987px;}
.x1e{left:494.924987px;}
.x21{left:516.524987px;}
.x52{left:539.384987px;}
.x35{left:548.024987px;}
.x3a{left:553.244987px;}
.x37{left:558.644987px;}
.x54{left:559.724987px;}
.x4a{left:606.569987px;}
.x38{left:651.209987px;}
.x49{left:754.739987px;}
.x53{left:766.439987px;}
.x13{left:784.620000px;}
.x46{left:800.819987px;}
.x34{left:828.539987px;}
.x51{left:841.679987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v7{vertical-align:-12.160000pt;}
.v5{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.600000pt;}
.v4{vertical-align:16.000000pt;}
.v8{vertical-align:17.280000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.400533pt;}
.ls3{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls21{letter-spacing:-0.153600pt;}
.ls2{letter-spacing:-0.135467pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.015360pt;}
.ls27{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.016640pt;}
.ls19{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.173867pt;}
.lsc{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.224000pt;}
.ls28{letter-spacing:0.239360pt;}
.ls2b{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.481067pt;}
.ls0{letter-spacing:0.481280pt;}
.ls22{letter-spacing:1.749760pt;}
.ls1e{letter-spacing:1.776000pt;}
.lsd{letter-spacing:1.890560pt;}
.ls1c{letter-spacing:2.320000pt;}
.ls1b{letter-spacing:2.406400pt;}
.ls1d{letter-spacing:2.416640pt;}
.ls24{letter-spacing:2.472960pt;}
.lsf{letter-spacing:2.530560pt;}
.ls1a{letter-spacing:2.734080pt;}
.ls18{letter-spacing:2.816000pt;}
.ls11{letter-spacing:2.886400pt;}
.lse{letter-spacing:2.944000pt;}
.ls1f{letter-spacing:3.112960pt;}
.ls26{letter-spacing:7.951360pt;}
.ls25{letter-spacing:8.079360pt;}
.ls10{letter-spacing:18.016000pt;}
.lsa{letter-spacing:57.584640pt;}
.ls9{letter-spacing:57.712640pt;}
.wsa{word-spacing:-48.000000pt;}
.ws19{word-spacing:-19.230720pt;}
.ws9{word-spacing:-19.200000pt;}
.ws2{word-spacing:-16.233173pt;}
.ws18{word-spacing:-13.568000pt;}
.wsc{word-spacing:-13.536000pt;}
.ws17{word-spacing:-13.360000pt;}
.ws11{word-spacing:-13.344000pt;}
.ws10{word-spacing:-13.248000pt;}
.ws12{word-spacing:-12.896000pt;}
.ws1a{word-spacing:-12.160107pt;}
.ws1{word-spacing:-11.920640pt;}
.ws6{word-spacing:-11.759573pt;}
.ws7{word-spacing:-11.520107pt;}
.wse{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.800427pt;}
.wsd{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.319360pt;}
.wsf{word-spacing:-10.208000pt;}
.ws14{word-spacing:-9.433600pt;}
.ws13{word-spacing:-7.777067pt;}
.ws5{word-spacing:-7.472640pt;}
.ws16{word-spacing:-7.449600pt;}
.ws3{word-spacing:-6.760960pt;}
.ws15{word-spacing:-6.476800pt;}
.wsb{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._27{margin-left:-6.137600pt;}
._14{margin-left:-3.001600pt;}
._a{margin-left:-1.543680pt;}
._0{width:1.002240pt;}
._c{width:1.995733pt;}
._d{width:2.911147pt;}
._e{width:3.902080pt;}
._1e{width:5.217920pt;}
._f{width:6.732160pt;}
._11{width:7.630080pt;}
._10{width:8.533120pt;}
._12{width:9.562240pt;}
._13{width:10.862080pt;}
._1f{width:12.336000pt;}
._15{width:13.292800pt;}
._19{width:14.421120pt;}
._18{width:15.552000pt;}
._1b{width:17.181440pt;}
._1a{width:18.448000pt;}
._2b{width:19.350613pt;}
._1c{width:20.256000pt;}
._1d{width:21.264000pt;}
._28{width:23.904000pt;}
._22{width:25.104000pt;}
._17{width:27.744000pt;}
._16{width:28.992000pt;}
._2c{width:31.392000pt;}
._2d{width:35.648000pt;}
._26{width:36.576000pt;}
._25{width:37.584000pt;}
._24{width:45.456000pt;}
._23{width:46.464000pt;}
._2a{width:48.256000pt;}
._8{width:51.681707pt;}
._21{width:53.834667pt;}
._20{width:60.704000pt;}
._29{width:86.261760pt;}
._b{width:157.101867pt;}
._3{width:173.536000pt;}
._6{width:176.560640pt;}
._9{width:178.480640pt;}
._1{width:369.714347pt;}
._4{width:555.832747pt;}
._7{width:972.987307pt;}
._2{width:1120.362667pt;}
._5{width:1123.387307pt;}
.fs4{font-size:24.320000pt;}
.fs7{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:2.560000pt;}
.y10{bottom:2.720000pt;}
.yc5{bottom:3.200000pt;}
.yca{bottom:3.360000pt;}
.yc8{bottom:4.160000pt;}
.ycb{bottom:4.320000pt;}
.y1a{bottom:4.800000pt;}
.yc4{bottom:5.440000pt;}
.yc6{bottom:7.360000pt;}
.yc0{bottom:7.840000pt;}
.y109{bottom:8.000000pt;}
.y10f{bottom:9.440000pt;}
.y112{bottom:9.600000pt;}
.yd4{bottom:10.080000pt;}
.ycd{bottom:10.120000pt;}
.y52{bottom:10.240000pt;}
.y2d{bottom:10.400000pt;}
.ycf{bottom:10.440000pt;}
.yc2{bottom:10.560000pt;}
.yd6{bottom:10.880000pt;}
.ye{bottom:11.520000pt;}
.yd5{bottom:14.080000pt;}
.yce{bottom:14.120000pt;}
.yd1{bottom:14.240000pt;}
.y19{bottom:15.520000pt;}
.y10d{bottom:16.320000pt;}
.y111{bottom:16.480000pt;}
.y3e{bottom:18.240000pt;}
.y7{bottom:21.280000pt;}
.y34{bottom:23.840000pt;}
.y10b{bottom:24.480000pt;}
.y38{bottom:28.320000pt;}
.y11{bottom:28.360000pt;}
.y18{bottom:28.800000pt;}
.y4e{bottom:30.554667pt;}
.y2c{bottom:30.560000pt;}
.y3d{bottom:31.520000pt;}
.y6{bottom:34.560000pt;}
.yd{bottom:36.000000pt;}
.y33{bottom:37.280000pt;}
.y17{bottom:39.680000pt;}
.y35{bottom:41.440000pt;}
.y4d{bottom:42.874667pt;}
.y2b{bottom:42.880000pt;}
.y4{bottom:43.040000pt;}
.y3c{bottom:45.000000pt;}
.y32{bottom:50.720000pt;}
.y54{bottom:51.520000pt;}
.y16{bottom:52.960000pt;}
.y3{bottom:53.792000pt;}
.y4c{bottom:55.194667pt;}
.y2a{bottom:55.226667pt;}
.y3b{bottom:58.440000pt;}
.y31{bottom:61.440000pt;}
.y15{bottom:63.680000pt;}
.y2{bottom:64.512000pt;}
.y3a{bottom:71.880000pt;}
.y30{bottom:72.160000pt;}
.y4b{bottom:75.354667pt;}
.y29{bottom:75.386667pt;}
.y14{bottom:77.120000pt;}
.y2f{bottom:85.600000pt;}
.y4a{bottom:87.674667pt;}
.y28{bottom:87.706667pt;}
.yfc{bottom:90.272000pt;}
.y13{bottom:90.560000pt;}
.y80{bottom:99.712000pt;}
.y126{bottom:100.352000pt;}
.y3f{bottom:103.552000pt;}
.yb7{bottom:107.552000pt;}
.y49{bottom:107.994667pt;}
.y27{bottom:108.026667pt;}
.y7f{bottom:114.592000pt;}
.y125{bottom:119.392000pt;}
.y48{bottom:120.314667pt;}
.y26{bottom:120.346667pt;}
.yb6{bottom:122.432000pt;}
.yfb{bottom:122.912000pt;}
.y168{bottom:125.472000pt;}
.y7e{bottom:129.472000pt;}
.y4f{bottom:130.554667pt;}
.y149{bottom:131.072000pt;}
.y47{bottom:132.474667pt;}
.y25{bottom:132.506667pt;}
.yb5{bottom:137.306667pt;}
.y167{bottom:140.346667pt;}
.y7d{bottom:144.346667pt;}
.y46{bottom:144.794667pt;}
.y24{bottom:144.826667pt;}
.y148{bottom:145.946667pt;}
.y166{bottom:155.386667pt;}
.y45{bottom:157.114667pt;}
.y23{bottom:157.146667pt;}
.y7c{bottom:159.226667pt;}
.yb4{bottom:160.346667pt;}
.y147{bottom:160.826667pt;}
.y22{bottom:169.306667pt;}
.y165{bottom:170.266667pt;}
.y13c{bottom:172.346667pt;}
.y7b{bottom:174.106667pt;}
.yb3{bottom:175.386667pt;}
.y44{bottom:177.274667pt;}
.y146{bottom:184.666667pt;}
.y164{bottom:185.146667pt;}
.y13b{bottom:187.226667pt;}
.y7a{bottom:188.986667pt;}
.y21{bottom:189.626667pt;}
.y43{bottom:189.634667pt;}
.yb2{bottom:190.266667pt;}
.y163{bottom:200.826667pt;}
.y20{bottom:201.946667pt;}
.y42{bottom:201.954667pt;}
.y79{bottom:203.866667pt;}
.ye7{bottom:204.506667pt;}
.yb1{bottom:205.306667pt;}
.y13a{bottom:210.106667pt;}
.y1f{bottom:214.106667pt;}
.y41{bottom:214.114667pt;}
.y145{bottom:214.906667pt;}
.y162{bottom:215.706667pt;}
.y78{bottom:218.746667pt;}
.yb0{bottom:220.346667pt;}
.y139{bottom:224.986667pt;}
.y1e{bottom:226.426667pt;}
.y40{bottom:226.434667pt;}
.ye6{bottom:227.386667pt;}
.y161{bottom:230.586667pt;}
.y77{bottom:233.626667pt;}
.yaf{bottom:235.386667pt;}
.y144{bottom:236.186667pt;}
.y1d{bottom:238.746667pt;}
.y138{bottom:239.866667pt;}
.ye5{bottom:242.266667pt;}
.y160{bottom:246.266667pt;}
.y76{bottom:248.506667pt;}
.yae{bottom:250.426667pt;}
.y1c{bottom:250.906667pt;}
.y39{bottom:251.386667pt;}
.y143{bottom:255.066667pt;}
.ye4{bottom:257.146667pt;}
.y15f{bottom:261.146667pt;}
.y137{bottom:262.746667pt;}
.y75{bottom:264.346667pt;}
.ye3{bottom:272.026667pt;}
.yad{bottom:273.466667pt;}
.y15e{bottom:276.026667pt;}
.y136{bottom:277.786667pt;}
.y74{bottom:280.026667pt;}
.yac{bottom:288.346667pt;}
.y15d{bottom:291.746667pt;}
.y135{bottom:292.706667pt;}
.ye2{bottom:294.946667pt;}
.y73{bottom:295.746667pt;}
.y15c{bottom:306.626667pt;}
.ye1{bottom:309.986667pt;}
.y72{bottom:310.626667pt;}
.yab{bottom:311.266667pt;}
.y134{bottom:316.546667pt;}
.y124{bottom:321.026667pt;}
.y15b{bottom:321.506667pt;}
.ye0{bottom:325.026667pt;}
.y71{bottom:325.506667pt;}
.yaa{bottom:326.146667pt;}
.yfa{bottom:329.026667pt;}
.y123{bottom:335.906667pt;}
.y15a{bottom:336.546667pt;}
.ydf{bottom:340.066667pt;}
.y70{bottom:340.386667pt;}
.ya9{bottom:341.026667pt;}
.y133{bottom:346.626667pt;}
.y37{bottom:348.546667pt;}
.yf9{bottom:350.306667pt;}
.y122{bottom:350.786667pt;}
.yde{bottom:354.946667pt;}
.y6f{bottom:355.266667pt;}
.ya8{bottom:357.506667pt;}
.y159{bottom:360.226667pt;}
.yf8{bottom:363.746667pt;}
.y121{bottom:365.666667pt;}
.y132{bottom:368.066667pt;}
.ya7{bottom:372.546667pt;}
.y158{bottom:375.106667pt;}
.ydd{bottom:377.506667pt;}
.y6e{bottom:378.946667pt;}
.yf7{bottom:382.946667pt;}
.y131{bottom:387.106667pt;}
.ya6{bottom:387.426667pt;}
.y120{bottom:389.506667pt;}
.y157{bottom:389.986667pt;}
.y6d{bottom:393.826667pt;}
.ydc{bottom:396.386667pt;}
.y36{bottom:397.346667pt;}
.ya5{bottom:402.466667pt;}
.ya4{bottom:417.506667pt;}
.y156{bottom:418.626667pt;}
.y11f{bottom:420.066667pt;}
.y6c{bottom:422.626667pt;}
.y11e{bottom:434.946667pt;}
.ya3{bottom:440.386667pt;}
.y11d{bottom:449.826667pt;}
.ya2{bottom:455.266667pt;}
.y155{bottom:462.306667pt;}
.y11c{bottom:464.706667pt;}
.y6b{bottom:466.306667pt;}
.ya1{bottom:470.146667pt;}
.y1b{bottom:474.466667pt;}
.y154{bottom:477.186667pt;}
.y6a{bottom:481.186667pt;}
.ya0{bottom:485.026667pt;}
.y11b{bottom:488.706667pt;}
.y69{bottom:496.066667pt;}
.y9f{bottom:499.906667pt;}
.y153{bottom:500.066667pt;}
.y9e{bottom:514.946667pt;}
.y68{bottom:518.786667pt;}
.y11a{bottom:521.026667pt;}
.y152{bottom:522.786667pt;}
.y9d{bottom:529.853333pt;}
.y2e{bottom:533.213333pt;}
.y67{bottom:537.533333pt;}
.y151{bottom:541.693333pt;}
.y142{bottom:546.813333pt;}
.y9c{bottom:552.733333pt;}
.y119{bottom:564.733333pt;}
.y9b{bottom:567.613333pt;}
.ydb{bottom:568.093333pt;}
.y141{bottom:569.533333pt;}
.y118{bottom:579.613333pt;}
.y9a{bottom:582.493333pt;}
.yda{bottom:582.973333pt;}
.y140{bottom:588.413333pt;}
.yf6{bottom:590.493333pt;}
.y117{bottom:594.493333pt;}
.y99{bottom:597.373333pt;}
.yd9{bottom:597.853333pt;}
.y116{bottom:609.373333pt;}
.yf5{bottom:613.373333pt;}
.y98{bottom:620.253333pt;}
.yd8{bottom:626.653333pt;}
.y12{bottom:628.093333pt;}
.yf4{bottom:628.253333pt;}
.y115{bottom:632.253333pt;}
.y97{bottom:635.133333pt;}
.yf3{bottom:643.133333pt;}
.y130{bottom:644.733333pt;}
.yd7{bottom:648.093333pt;}
.y96{bottom:650.013333pt;}
.y114{bottom:653.533333pt;}
.yf2{bottom:658.173333pt;}
.y12f{bottom:659.613333pt;}
.y95{bottom:664.893333pt;}
.yf1{bottom:673.053333pt;}
.y12e{bottom:674.493333pt;}
.y113{bottom:675.293333pt;}
.y94{bottom:679.773333pt;}
.yf0{bottom:687.933333pt;}
.y12d{bottom:689.373333pt;}
.yd3{bottom:690.173333pt;}
.y93{bottom:694.653333pt;}
.y110{bottom:697.053333pt;}
.yef{bottom:710.813333pt;}
.y12c{bottom:713.213333pt;}
.y66{bottom:713.373333pt;}
.yd2{bottom:714.173333pt;}
.y150{bottom:716.413333pt;}
.y92{bottom:717.533333pt;}
.yee{bottom:725.693333pt;}
.y65{bottom:728.253333pt;}
.y14f{bottom:731.293333pt;}
.y91{bottom:732.413333pt;}
.y10c{bottom:732.733333pt;}
.yd0{bottom:738.333333pt;}
.yed{bottom:741.373333pt;}
.y64{bottom:743.133333pt;}
.y12b{bottom:743.453333pt;}
.yf{bottom:743.933333pt;}
.y14e{bottom:746.173333pt;}
.y90{bottom:748.253333pt;}
.y17b{bottom:748.893333pt;}
.y13f{bottom:752.093333pt;}
.yec{bottom:756.253333pt;}
.y63{bottom:758.013333pt;}
.y14d{bottom:761.053333pt;}
.y17a{bottom:761.213333pt;}
.ycc{bottom:762.493333pt;}
.y8f{bottom:763.933333pt;}
.y12a{bottom:764.733333pt;}
.y10a{bottom:768.933333pt;}
.y62{bottom:772.933333pt;}
.y179{bottom:773.413333pt;}
.y13e{bottom:774.853333pt;}
.yeb{bottom:779.973333pt;}
.y129{bottom:783.653333pt;}
.y14c{bottom:783.973333pt;}
.y178{bottom:785.733333pt;}
.yc9{bottom:786.533333pt;}
.y8e{bottom:787.653333pt;}
.y61{bottom:787.813333pt;}
.yc{bottom:792.773333pt;}
.y13d{bottom:793.573333pt;}
.yea{bottom:794.853333pt;}
.y177{bottom:798.053333pt;}
.y8d{bottom:802.533333pt;}
.yc7{bottom:803.813333pt;}
.y14b{bottom:806.853333pt;}
.y176{bottom:810.213333pt;}
.y60{bottom:810.693333pt;}
.y108{bottom:814.533333pt;}
.y8c{bottom:817.413333pt;}
.ye9{bottom:817.573333pt;}
.yc3{bottom:817.893333pt;}
.y175{bottom:822.533333pt;}
.y5f{bottom:825.573333pt;}
.y14a{bottom:827.173333pt;}
.y8b{bottom:832.293333pt;}
.y174{bottom:834.853333pt;}
.ye8{bottom:836.773333pt;}
.y5e{bottom:840.453333pt;}
.yc1{bottom:841.093333pt;}
.y173{bottom:847.013333pt;}
.y8a{bottom:847.173333pt;}
.y107{bottom:849.253333pt;}
.y5d{bottom:855.333333pt;}
.y172{bottom:859.333333pt;}
.y106{bottom:864.133333pt;}
.y89{bottom:870.053333pt;}
.y171{bottom:871.653333pt;}
.yb{bottom:872.773333pt;}
.ybf{bottom:872.933333pt;}
.y5c{bottom:878.213333pt;}
.y170{bottom:883.813333pt;}
.y88{bottom:884.933333pt;}
.y105{bottom:887.013333pt;}
.ya{bottom:887.813333pt;}
.y5b{bottom:893.093333pt;}
.y16f{bottom:896.133333pt;}
.y87{bottom:899.813333pt;}
.y9{bottom:901.573333pt;}
.y104{bottom:901.893333pt;}
.ybe{bottom:907.493333pt;}
.y5a{bottom:907.973333pt;}
.y16e{bottom:908.453333pt;}
.y86{bottom:914.693333pt;}
.y103{bottom:916.773333pt;}
.y8{bottom:919.653333pt;}
.y16d{bottom:920.613333pt;}
.y59{bottom:922.853333pt;}
.y85{bottom:929.573333pt;}
.ybd{bottom:930.373333pt;}
.y102{bottom:931.653333pt;}
.y16c{bottom:932.933333pt;}
.y58{bottom:937.893333pt;}
.y84{bottom:944.613333pt;}
.ybc{bottom:945.253333pt;}
.y1{bottom:949.253333pt;}
.y57{bottom:952.773333pt;}
.y5{bottom:954.373333pt;}
.y101{bottom:954.533333pt;}
.y16b{bottom:957.413333pt;}
.y83{bottom:959.493333pt;}
.ybb{bottom:960.133333pt;}
.y56{bottom:967.653333pt;}
.y100{bottom:969.413333pt;}
.y128{bottom:969.733333pt;}
.y16a{bottom:982.053333pt;}
.yba{bottom:983.013333pt;}
.yff{bottom:984.453333pt;}
.y127{bottom:984.613333pt;}
.y82{bottom:988.133333pt;}
.y169{bottom:994.213333pt;}
.y55{bottom:996.133333pt;}
.yb9{bottom:997.893333pt;}
.yfe{bottom:999.493333pt;}
.y81{bottom:1009.600000pt;}
.yb8{bottom:1013.600000pt;}
.yfd{bottom:1014.400000pt;}
.y53{bottom:1037.440000pt;}
.y51{bottom:1056.640000pt;}
.y50{bottom:1095.200000pt;}
.h1b{height:14.080000pt;}
.h1c{height:17.280000pt;}
.h25{height:21.760000pt;}
.h18{height:22.560000pt;}
.h16{height:22.880000pt;}
.h21{height:23.040000pt;}
.h20{height:24.000000pt;}
.h1d{height:24.032000pt;}
.h1f{height:24.160000pt;}
.h7{height:25.365000pt;}
.h14{height:28.160000pt;}
.h17{height:29.760000pt;}
.h23{height:35.552000pt;}
.h24{height:35.680000pt;}
.h19{height:37.310625pt;}
.h3{height:38.715000pt;}
.h22{height:43.680000pt;}
.h4{height:44.480000pt;}
.h5{height:44.722500pt;}
.h1e{height:47.351250pt;}
.h10{height:48.800000pt;}
.ha{height:48.832000pt;}
.h2{height:50.062500pt;}
.h1a{height:53.682500pt;}
.hb{height:55.402500pt;}
.hf{height:58.112000pt;}
.h6{height:61.410000pt;}
.h15{height:72.090000pt;}
.h8{height:77.120000pt;}
.h9{height:88.777500pt;}
.he{height:94.240000pt;}
.h11{height:96.512000pt;}
.hc{height:115.200000pt;}
.h13{height:147.200000pt;}
.h12{height:244.346667pt;}
.hd{height:268.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:42.720000pt;}
.w12{width:56.832000pt;}
.wf{width:62.720000pt;}
.w11{width:64.000000pt;}
.wd{width:65.472000pt;}
.w10{width:69.472000pt;}
.we{width:82.592000pt;}
.wc{width:84.960000pt;}
.wb{width:85.312000pt;}
.wa{width:99.872000pt;}
.w5{width:158.786667pt;}
.w9{width:335.613333pt;}
.w3{width:471.173333pt;}
.w6{width:517.853333pt;}
.w7{width:643.840000pt;}
.w4{width:676.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1{left:-94.592012pt;}
.x10{left:-66.240012pt;}
.x0{left:0.000000pt;}
.x9{left:7.360000pt;}
.x3b{left:8.634667pt;}
.x4{left:9.600000pt;}
.x3f{left:11.680000pt;}
.x3d{left:14.240000pt;}
.xe{left:15.232000pt;}
.x41{left:16.314667pt;}
.xd{left:18.560000pt;}
.x2c{left:19.840000pt;}
.x2a{left:22.240000pt;}
.x2d{left:23.840000pt;}
.x29{left:25.280000pt;}
.x30{left:26.720000pt;}
.x2e{left:27.712000pt;}
.x24{left:28.640000pt;}
.x42{left:31.240000pt;}
.x2b{left:32.160000pt;}
.x14{left:34.400000pt;}
.x28{left:36.640000pt;}
.x22{left:39.872000pt;}
.x2f{left:41.792000pt;}
.x15{left:47.199988pt;}
.x11{left:53.600000pt;}
.x27{left:55.712000pt;}
.x2{left:56.639988pt;}
.x56{left:62.079988pt;}
.x57{left:63.039988pt;}
.x55{left:64.959988pt;}
.x43{left:67.519988pt;}
.xb{left:68.672000pt;}
.x19{left:71.199988pt;}
.x31{left:76.031988pt;}
.x1a{left:95.231988pt;}
.x4e{left:97.151988pt;}
.x50{left:112.031988pt;}
.x4c{left:116.671988pt;}
.x1b{left:119.231988pt;}
.x33{left:120.351988pt;}
.x7{left:124.351988pt;}
.x18{left:130.111988pt;}
.x1c{left:143.226655pt;}
.x23{left:147.066667pt;}
.x45{left:155.226655pt;}
.x12{left:174.146667pt;}
.x3c{left:192.506667pt;}
.x3{left:196.826667pt;}
.xa{left:199.586667pt;}
.x5{left:203.066655pt;}
.xc{left:215.266667pt;}
.x16{left:229.186655pt;}
.x25{left:232.386667pt;}
.xf{left:233.986667pt;}
.x3e{left:261.986667pt;}
.x4b{left:307.906655pt;}
.x26{left:317.346667pt;}
.x40{left:325.986667pt;}
.x6{left:337.826655pt;}
.x4f{left:339.906655pt;}
.x4d{left:349.186655pt;}
.x44{left:350.946655pt;}
.x32{left:369.213322pt;}
.x17{left:380.093322pt;}
.x8{left:406.333322pt;}
.x1f{left:411.133322pt;}
.x36{left:415.613322pt;}
.x1d{left:420.733322pt;}
.x47{left:425.533322pt;}
.x39{left:430.173322pt;}
.x48{left:431.453322pt;}
.x20{left:435.133322pt;}
.x1e{left:439.933322pt;}
.x21{left:459.133322pt;}
.x52{left:479.453322pt;}
.x35{left:487.133322pt;}
.x3a{left:491.773322pt;}
.x37{left:496.573322pt;}
.x54{left:497.533322pt;}
.x4a{left:539.173322pt;}
.x38{left:578.853322pt;}
.x49{left:670.879988pt;}
.x53{left:681.279988pt;}
.x13{left:697.440000pt;}
.x46{left:711.839988pt;}
.x34{left:736.479988pt;}
.x51{left:748.159988pt;}
}




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