
    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_46dbd7a3528b4f493f953b1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_116e44513ab5564f9f914929.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1b7e7349ec1992ba310c2ac1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_35905eaf8e19287034f2f1dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6d3a16559cbbabaf2439a118.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c2a3c5d5e202f6fe753c9ee3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2547fd3f5ef057033500a449.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_03174f93d948141e53735e28.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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_0ffc32f2d1ff39ce3ddc83a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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);}
.v3{vertical-align:-84.960000px;}
.v1{vertical-align:-83.520000px;}
.v2{vertical-align:-80.100000px;}
.v8{vertical-align:-76.320000px;}
.v7{vertical-align:-69.120000px;}
.v4{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:61.920000px;}
.v6{vertical-align:69.300000px;}
.ls2f{letter-spacing:-2.214000px;}
.ls26{letter-spacing:-2.052000px;}
.ls22{letter-spacing:-1.800000px;}
.ls20{letter-spacing:-1.656000px;}
.ls13{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.416000px;}
.lsc{letter-spacing:-1.260000px;}
.ls2e{letter-spacing:-1.182000px;}
.ls23{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-1.008000px;}
.ls30{letter-spacing:-0.972000px;}
.ls16{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.576000px;}
.ls3f{letter-spacing:-0.414600px;}
.ls32{letter-spacing:-0.413400px;}
.ls24{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.255000px;}
.ls21{letter-spacing:-0.216000px;}
.ls3a{letter-spacing:-0.152400px;}
.lsf{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.072000px;}
.ls31{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.022320px;}
.ls2c{letter-spacing:0.106560px;}
.ls27{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.109200px;}
.ls36{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.177000px;}
.lsa{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.298800px;}
.ls3b{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.414600px;}
.ls2d{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.504000px;}
.ls43{letter-spacing:0.567600px;}
.ls33{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.870000px;}
.ls11{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.340000px;}
.ls2a{letter-spacing:9.540000px;}
.ls35{letter-spacing:13.860000px;}
.ls28{letter-spacing:17.460000px;}
.ls1b{letter-spacing:23.940000px;}
.ls1a{letter-spacing:36.900000px;}
.ls18{letter-spacing:37.620000px;}
.ls2b{letter-spacing:48.420000px;}
.ls1c{letter-spacing:100.260000px;}
.ls0{letter-spacing:200.957760px;}
.ls1{letter-spacing:413.976000px;}
.ls3e{letter-spacing:415.416000px;}
.ls3{letter-spacing:417.036000px;}
.ls19{letter-spacing:453.036000px;}
.ls14{letter-spacing:521.976000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws11{word-spacing:-19.440000px;}
.ws27{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.wse{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.712000px;}
.ws35{word-spacing:-17.430000px;}
.ws14{word-spacing:-17.424000px;}
.ws10{word-spacing:-17.280000px;}
.ws37{word-spacing:-17.127600px;}
.ws13{word-spacing:-17.064000px;}
.ws28{word-spacing:-16.992000px;}
.ws36{word-spacing:-16.974600px;}
.ws2f{word-spacing:-16.865400px;}
.ws34{word-spacing:-16.712400px;}
.ws31{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.613280px;}
.ws2a{word-spacing:-16.560000px;}
.ws2c{word-spacing:-16.450800px;}
.ws2d{word-spacing:-16.407600px;}
.ws30{word-spacing:-16.297800px;}
.ws29{word-spacing:-16.254600px;}
.ws33{word-spacing:-16.145400px;}
.ws2e{word-spacing:-15.948000px;}
.ws2b{word-spacing:-15.840000px;}
.ws26{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws32{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.940000px;}
.ws25{word-spacing:-14.886720px;}
.ws24{word-spacing:-13.968000px;}
.ws16{word-spacing:-13.860000px;}
.ws22{word-spacing:-13.788240px;}
.ws1f{word-spacing:-13.608000px;}
.ws19{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.284000px;}
.ws1c{word-spacing:-13.140000px;}
.ws21{word-spacing:-12.924000px;}
.ws1d{word-spacing:-12.906000px;}
.ws20{word-spacing:-12.888000px;}
.ws23{word-spacing:-12.726000px;}
.ws1b{word-spacing:-12.420000px;}
.ws17{word-spacing:-11.844000px;}
.ws1a{word-spacing:-11.700000px;}
.ws1e{word-spacing:-11.448000px;}
.ws1{word-spacing:-10.924560px;}
.ws0{word-spacing:-10.647240px;}
.ws2{word-spacing:-9.486240px;}
.ws9{word-spacing:-9.037320px;}
.wsa{word-spacing:-7.600320px;}
.wsb{word-spacing:0.000000px;}
._36{margin-left:-7.527120px;}
._2a{margin-left:-5.220000px;}
._4{margin-left:-4.068000px;}
._0{margin-left:-3.024720px;}
._3{margin-left:-2.023440px;}
._1{margin-left:-1.013040px;}
._2{width:1.245840px;}
._7{width:2.274000px;}
._10{width:3.286800px;}
._5{width:4.550880px;}
._6{width:6.205920px;}
._8{width:7.249200px;}
._c{width:8.297520px;}
._d{width:9.932400px;}
._11{width:11.162880px;}
._14{width:12.178800px;}
._a{width:13.804560px;}
._15{width:14.995440px;}
._18{width:16.531920px;}
._3f{width:18.238560px;}
._9{width:19.362240px;}
._b{width:20.934240px;}
._1b{width:21.936480px;}
._12{width:22.968000px;}
._13{width:24.624000px;}
._1a{width:26.136000px;}
._19{width:27.293040px;}
._23{width:28.440000px;}
._1c{width:30.096000px;}
._1d{width:31.931760px;}
._20{width:33.192000px;}
._28{width:34.272000px;}
._29{width:35.863440px;}
._4a{width:37.293840px;}
._e{width:38.306160px;}
._f{width:39.561120px;}
._1e{width:40.752000px;}
._1f{width:42.094080px;}
._24{width:45.000000px;}
._25{width:46.440000px;}
._16{width:48.528000px;}
._17{width:49.824000px;}
._54{width:50.830560px;}
._21{width:52.632000px;}
._22{width:53.762160px;}
._26{width:54.864000px;}
._27{width:56.009520px;}
._57{width:63.090720px;}
._38{width:67.406880px;}
._39{width:70.164000px;}
._51{width:72.792000px;}
._3d{width:73.822320px;}
._41{width:79.258320px;}
._56{width:80.700960px;}
._3e{width:82.296000px;}
._32{width:86.490720px;}
._52{width:90.072000px;}
._3b{width:95.220000px;}
._55{width:97.339680px;}
._3a{width:99.277440px;}
._33{width:102.668880px;}
._30{width:104.288880px;}
._50{width:107.448480px;}
._37{width:108.900000px;}
._31{width:114.046320px;}
._35{width:115.358880px;}
._53{width:116.614560px;}
._2f{width:119.246880px;}
._43{width:134.098320px;}
._47{width:145.075920px;}
._2b{width:149.270880px;}
._42{width:158.288880px;}
._46{width:164.960880px;}
._48{width:177.056880px;}
._4e{width:183.812880px;}
._4b{width:188.482560px;}
._49{width:198.219360px;}
._2e{width:215.204880px;}
._34{width:227.290320px;}
._3c{width:294.124320px;}
._2c{width:341.086320px;}
._40{width:432.862320px;}
._4f{width:436.085280px;}
._4c{width:522.664320px;}
._44{width:686.146320px;}
._2d{width:797.516880px;}
._45{width:932.876880px;}
._4d{width:993.040080px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.420000px;}
.y37{bottom:4.140000px;}
.y35{bottom:4.680000px;}
.y2f{bottom:62.790000px;}
.y2e{bottom:82.230000px;}
.y2d{bottom:97.710000px;}
.y2c{bottom:113.220000px;}
.y64{bottom:258.330000px;}
.y6c{bottom:278.850000px;}
.y5e{bottom:279.030000px;}
.y101{bottom:279.930000px;}
.y2a{bottom:281.190000px;}
.yc8{bottom:282.090000px;}
.ydf{bottom:282.630000px;}
.y11f{bottom:283.710000px;}
.y148{bottom:288.930000px;}
.yc7{bottom:298.470000px;}
.y6b{bottom:299.550000px;}
.y5d{bottom:299.730000px;}
.y100{bottom:300.630000px;}
.y11e{bottom:302.610000px;}
.yc6{bottom:302.970000px;}
.yde{bottom:303.330000px;}
.y147{bottom:307.875000px;}
.yc4{bottom:318.135000px;}
.yc5{bottom:318.315000px;}
.y6a{bottom:320.295000px;}
.y5c{bottom:320.475000px;}
.yff{bottom:321.375000px;}
.y11d{bottom:321.735000px;}
.y29{bottom:321.915000px;}
.ydd{bottom:324.075000px;}
.y146{bottom:326.955000px;}
.yc3{bottom:333.795000px;}
.y11c{bottom:340.635000px;}
.y7d{bottom:340.995000px;}
.y5b{bottom:341.175000px;}
.yfe{bottom:342.075000px;}
.y28{bottom:342.435000px;}
.y145{bottom:345.855000px;}
.yc1{bottom:349.275000px;}
.y27{bottom:359.715000px;}
.y7c{bottom:361.695000px;}
.y5a{bottom:361.875000px;}
.yfd{bottom:362.775000px;}
.yc2{bottom:364.395000px;}
.yc0{bottom:364.575000px;}
.y144{bottom:364.755000px;}
.ydc{bottom:365.475000px;}
.y26{bottom:376.815000px;}
.y11b{bottom:378.615000px;}
.ybf{bottom:379.875000px;}
.y7b{bottom:382.395000px;}
.y59{bottom:382.575000px;}
.yfc{bottom:383.475000px;}
.y143{bottom:383.835000px;}
.ydb{bottom:385.995000px;}
.y25{bottom:394.095000px;}
.yb2{bottom:395.175000px;}
.yb9{bottom:396.255000px;}
.y11a{bottom:397.515000px;}
.y142{bottom:402.735000px;}
.y58{bottom:403.275000px;}
.yfb{bottom:404.175000px;}
.yd6{bottom:406.875000px;}
.yd3{bottom:407.055000px;}
.yb1{bottom:410.835000px;}
.y24{bottom:411.375000px;}
.y119{bottom:416.595000px;}
.yd2{bottom:421.455000px;}
.y141{bottom:421.815000px;}
.y106{bottom:423.795000px;}
.y57{bottom:423.975000px;}
.yfa{bottom:424.875000px;}
.ya6{bottom:426.135000px;}
.yb0{bottom:426.315000px;}
.yb8{bottom:426.675000px;}
.y23{bottom:428.655000px;}
.y118{bottom:435.495000px;}
.yda{bottom:436.755000px;}
.yd5{bottom:437.295000px;}
.yd1{bottom:437.655000px;}
.y140{bottom:440.715000px;}
.yb7{bottom:441.795000px;}
.yaf{bottom:441.975000px;}
.y56{bottom:444.675000px;}
.y105{bottom:444.855000px;}
.yf9{bottom:445.575000px;}
.y22{bottom:445.935000px;}
.yd4{bottom:452.235000px;}
.yd9{bottom:452.415000px;}
.yd0{bottom:452.775000px;}
.y117{bottom:454.575000px;}
.yb6{bottom:456.915000px;}
.ya5{bottom:457.275000px;}
.yae{bottom:457.815000px;}
.y13f{bottom:459.615000px;}
.y21{bottom:463.215000px;}
.y55{bottom:465.375000px;}
.y104{bottom:465.555000px;}
.yf8{bottom:466.095000px;}
.ycf{bottom:467.715000px;}
.yb5{bottom:472.395000px;}
.yad{bottom:473.115000px;}
.y116{bottom:473.475000px;}
.y13e{bottom:478.695000px;}
.y20{bottom:480.315000px;}
.yd8{bottom:483.375000px;}
.yce{bottom:483.555000px;}
.y54{bottom:486.075000px;}
.y103{bottom:486.255000px;}
.ya4{bottom:487.875000px;}
.yb4{bottom:488.055000px;}
.ybe{bottom:488.235000px;}
.yac{bottom:488.415000px;}
.y115{bottom:492.555000px;}
.y1f{bottom:497.595000px;}
.ycd{bottom:499.035000px;}
.ya3{bottom:503.535000px;}
.yab{bottom:503.715000px;}
.ybd{bottom:503.895000px;}
.y75{bottom:506.595000px;}
.y53{bottom:506.775000px;}
.y102{bottom:506.955000px;}
.yf7{bottom:507.495000px;}
.y114{bottom:511.455000px;}
.yd7{bottom:514.155000px;}
.ycc{bottom:514.335000px;}
.y1e{bottom:514.875000px;}
.y13d{bottom:516.675000px;}
.ya2{bottom:519.015000px;}
.yaa{bottom:519.195000px;}
.ybc{bottom:519.375000px;}
.y52{bottom:527.475000px;}
.y74{bottom:527.655000px;}
.yf6{bottom:528.555000px;}
.y113{bottom:530.535000px;}
.ycb{bottom:531.615000px;}
.y1d{bottom:532.155000px;}
.ya9{bottom:534.495000px;}
.y13c{bottom:535.575000px;}
.yef{bottom:545.475000px;}
.y51{bottom:548.175000px;}
.y73{bottom:548.355000px;}
.y1c{bottom:549.435000px;}
.ya1{bottom:550.155000px;}
.ybb{bottom:550.335000px;}
.y13b{bottom:554.475000px;}
.yee{bottom:562.605000px;}
.yf5{bottom:562.785000px;}
.ya0{bottom:565.845000px;}
.yba{bottom:566.025000px;}
.yb3{bottom:566.385000px;}
.y1b{bottom:566.745000px;}
.y112{bottom:568.365000px;}
.y50{bottom:568.905000px;}
.y72{bottom:569.085000px;}
.y13a{bottom:573.585000px;}
.yf3{bottom:579.885000px;}
.y9f{bottom:581.325000px;}
.ya8{bottom:581.505000px;}
.y1a{bottom:583.845000px;}
.y111{bottom:587.445000px;}
.y4f{bottom:589.605000px;}
.y71{bottom:589.785000px;}
.y139{bottom:592.485000px;}
.y9e{bottom:596.985000px;}
.ya7{bottom:597.165000px;}
.yf4{bottom:597.885000px;}
.yf2{bottom:598.605000px;}
.y19{bottom:601.125000px;}
.y110{bottom:606.525000px;}
.y4e{bottom:610.305000px;}
.y70{bottom:610.485000px;}
.y138{bottom:611.565000px;}
.y9a{bottom:612.465000px;}
.yed{bottom:615.345000px;}
.yf1{bottom:615.885000px;}
.y18{bottom:618.405000px;}
.y10f{bottom:625.425000px;}
.y91{bottom:627.945000px;}
.y137{bottom:630.465000px;}
.y4d{bottom:631.005000px;}
.y6f{bottom:631.185000px;}
.yec{bottom:632.625000px;}
.yf0{bottom:633.165000px;}
.y17{bottom:635.685000px;}
.y90{bottom:643.425000px;}
.y10e{bottom:644.505000px;}
.y136{bottom:649.365000px;}
.y4c{bottom:651.705000px;}
.y6e{bottom:651.885000px;}
.y16{bottom:652.965000px;}
.yeb{bottom:655.305000px;}
.y8f{bottom:658.725000px;}
.y99{bottom:659.085000px;}
.y10d{bottom:663.225000px;}
.yea{bottom:666.645000px;}
.y135{bottom:668.265000px;}
.y15{bottom:670.065000px;}
.y4b{bottom:672.225000px;}
.y63{bottom:672.405000px;}
.y6d{bottom:672.585000px;}
.y98{bottom:674.565000px;}
.y9d{bottom:674.745000px;}
.y10c{bottom:682.305000px;}
.ye9{bottom:683.925000px;}
.y14{bottom:687.345000px;}
.y134{bottom:687.525000px;}
.y8e{bottom:689.865000px;}
.y97{bottom:690.045000px;}
.y9c{bottom:690.225000px;}
.y62{bottom:693.105000px;}
.y4a{bottom:693.285000px;}
.ye8{bottom:701.205000px;}
.y13{bottom:704.625000px;}
.y8d{bottom:705.525000px;}
.y14a{bottom:706.425000px;}
.y133{bottom:706.605000px;}
.y107{bottom:713.445000px;}
.y61{bottom:713.625000px;}
.y69{bottom:713.805000px;}
.y49{bottom:713.985000px;}
.ye7{bottom:718.125000px;}
.y10b{bottom:720.285000px;}
.y96{bottom:721.185000px;}
.y9b{bottom:721.365000px;}
.y8c{bottom:721.725000px;}
.y12{bottom:721.905000px;}
.y132{bottom:725.505000px;}
.y68{bottom:734.505000px;}
.y48{bottom:734.685000px;}
.ye6{bottom:735.585000px;}
.y8b{bottom:736.845000px;}
.y95{bottom:737.025000px;}
.y11{bottom:739.185000px;}
.y131{bottom:744.405000px;}
.y8a{bottom:752.325000px;}
.y94{bottom:752.505000px;}
.ye5{bottom:752.685000px;}
.y67{bottom:755.205000px;}
.y47{bottom:755.385000px;}
.y10{bottom:756.825000px;}
.y10a{bottom:758.265000px;}
.y149{bottom:763.305000px;}
.y130{bottom:763.485000px;}
.y89{bottom:767.805000px;}
.y93{bottom:767.985000px;}
.ye4{bottom:770.325000px;}
.y66{bottom:775.905000px;}
.y46{bottom:776.085000px;}
.y109{bottom:777.165000px;}
.y12f{bottom:782.385000px;}
.y88{bottom:783.285000px;}
.y92{bottom:783.465000px;}
.ye3{bottom:787.605000px;}
.y7a{bottom:796.605000px;}
.y45{bottom:796.785000px;}
.yf{bottom:798.225000px;}
.y87{bottom:800.385000px;}
.y12e{bottom:801.465000px;}
.ye2{bottom:804.885000px;}
.y65{bottom:816.990000px;}
.y79{bottom:817.350000px;}
.y44{bottom:817.530000px;}
.ye{bottom:819.690000px;}
.y12d{bottom:820.410000px;}
.ye1{bottom:822.210000px;}
.y108{bottom:837.510000px;}
.y78{bottom:838.050000px;}
.y43{bottom:838.230000px;}
.y12c{bottom:839.310000px;}
.yd{bottom:840.390000px;}
.ye0{bottom:840.750000px;}
.y12b{bottom:858.390000px;}
.y77{bottom:858.750000px;}
.y42{bottom:858.930000px;}
.yc{bottom:860.550000px;}
.y12a{bottom:877.290000px;}
.y86{bottom:879.450000px;}
.y41{bottom:879.630000px;}
.y129{bottom:896.370000px;}
.y76{bottom:899.790000px;}
.y85{bottom:900.150000px;}
.y40{bottom:900.330000px;}
.yb{bottom:902.130000px;}
.y128{bottom:915.270000px;}
.y84{bottom:920.850000px;}
.y3f{bottom:921.030000px;}
.ya{bottom:923.010000px;}
.y127{bottom:934.170000px;}
.y83{bottom:941.550000px;}
.y3e{bottom:941.730000px;}
.y9{bottom:943.710000px;}
.y126{bottom:953.250000px;}
.y2b{bottom:957.240000px;}
.y82{bottom:962.250000px;}
.y3d{bottom:962.430000px;}
.y8{bottom:964.410000px;}
.y33{bottom:969.450000px;}
.y125{bottom:972.150000px;}
.y32{bottom:980.250000px;}
.y81{bottom:982.950000px;}
.y3c{bottom:983.130000px;}
.y7{bottom:984.750000px;}
.y31{bottom:990.690000px;}
.y124{bottom:991.230000px;}
.y80{bottom:1003.650000px;}
.y3b{bottom:1003.830000px;}
.y30{bottom:1004.010000px;}
.y123{bottom:1010.130000px;}
.y7f{bottom:1024.350000px;}
.y3a{bottom:1024.530000px;}
.y6{bottom:1025.970000px;}
.y122{bottom:1029.030000px;}
.y7e{bottom:1045.050000px;}
.y60{bottom:1045.230000px;}
.y5{bottom:1046.670000px;}
.y121{bottom:1048.110000px;}
.yca{bottom:1065.780000px;}
.y4{bottom:1067.400000px;}
.y120{bottom:1086.120000px;}
.y39{bottom:1086.300000px;}
.y5f{bottom:1086.660000px;}
.yc9{bottom:1098.360000px;}
.y3{bottom:1102.320000px;}
.y34{bottom:1111.860000px;}
.y36{bottom:1113.480000px;}
.y1{bottom:1117.260000px;}
.y38{bottom:1129.140000px;}
.h13{height:5.653125px;}
.hd{height:15.120000px;}
.h1{height:16.560000px;}
.hc{height:19.440000px;}
.hb{height:22.975313px;}
.ha{height:27.351562px;}
.h17{height:29.678906px;}
.h10{height:37.705078px;}
.he{height:38.818125px;}
.h16{height:41.726953px;}
.h9{height:43.400391px;}
.hf{height:50.273438px;}
.h8{height:52.998047px;}
.h2{height:53.302500px;}
.h3{height:58.651172px;}
.h18{height:65.010937px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h15{height:111.026953px;}
.h11{height:114.918047px;}
.h12{height:115.638047px;}
.h7{height:125.460000px;}
.h14{height:127.951172px;}
.h0{height:1188.000000px;}
.w3{width:23.040000px;}
.w2{width:102.420000px;}
.w4{width:418.200000px;}
.w1{width:471.510000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:1.425000px;}
.xc{left:4.515000px;}
.x4{left:108.036000px;}
.x17{left:123.876000px;}
.x18{left:210.990000px;}
.x3{left:216.030000px;}
.x21{left:220.710000px;}
.x23{left:222.330000px;}
.x10{left:224.670000px;}
.x1c{left:230.970000px;}
.xd{left:234.405000px;}
.x5{left:236.370000px;}
.x22{left:237.630000px;}
.xf{left:243.030000px;}
.x1{left:244.305000px;}
.x11{left:304.095000px;}
.x1d{left:433.875000px;}
.x13{left:441.435000px;}
.x19{left:447.555000px;}
.x12{left:454.215000px;}
.x1f{left:487.905000px;}
.x6{left:604.080000px;}
.x9{left:616.965000px;}
.x8{left:622.365000px;}
.xa{left:624.705000px;}
.x7{left:629.205000px;}
.x15{left:691.350000px;}
.xb{left:694.395000px;}
.x14{left:704.130000px;}
.x20{left:721.950000px;}
.x1b{left:723.210000px;}
.x1a{left:730.950000px;}
.x2{left:735.810000px;}
.x1e{left:737.790000px;}
.x16{left:777.210000px;}
@media print{
.v3{vertical-align:-75.520000pt;}
.v1{vertical-align:-74.240000pt;}
.v2{vertical-align:-71.200000pt;}
.v8{vertical-align:-67.840000pt;}
.v7{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:55.040000pt;}
.v6{vertical-align:61.600000pt;}
.ls2f{letter-spacing:-1.968000pt;}
.ls26{letter-spacing:-1.824000pt;}
.ls22{letter-spacing:-1.600000pt;}
.ls20{letter-spacing:-1.472000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.258667pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls2e{letter-spacing:-1.050667pt;}
.ls23{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.896000pt;}
.ls30{letter-spacing:-0.864000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls3f{letter-spacing:-0.368533pt;}
.ls32{letter-spacing:-0.367467pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.226667pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls3a{letter-spacing:-0.135467pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls31{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.019840pt;}
.ls2c{letter-spacing:0.094720pt;}
.ls27{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.097067pt;}
.ls36{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.157333pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls3b{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.368533pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.448000pt;}
.ls43{letter-spacing:0.504533pt;}
.ls33{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.773333pt;}
.ls11{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls2a{letter-spacing:8.480000pt;}
.ls35{letter-spacing:12.320000pt;}
.ls28{letter-spacing:15.520000pt;}
.ls1b{letter-spacing:21.280000pt;}
.ls1a{letter-spacing:32.800000pt;}
.ls18{letter-spacing:33.440000pt;}
.ls2b{letter-spacing:43.040000pt;}
.ls1c{letter-spacing:89.120000pt;}
.ls0{letter-spacing:178.629120pt;}
.ls1{letter-spacing:367.978667pt;}
.ls3e{letter-spacing:369.258667pt;}
.ls3{letter-spacing:370.698667pt;}
.ls19{letter-spacing:402.698667pt;}
.ls14{letter-spacing:463.978667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws11{word-spacing:-17.280000pt;}
.ws27{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws35{word-spacing:-15.493333pt;}
.ws14{word-spacing:-15.488000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws37{word-spacing:-15.224533pt;}
.ws13{word-spacing:-15.168000pt;}
.ws28{word-spacing:-15.104000pt;}
.ws36{word-spacing:-15.088533pt;}
.ws2f{word-spacing:-14.991467pt;}
.ws34{word-spacing:-14.855467pt;}
.ws31{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.767360pt;}
.ws2a{word-spacing:-14.720000pt;}
.ws2c{word-spacing:-14.622933pt;}
.ws2d{word-spacing:-14.584533pt;}
.ws30{word-spacing:-14.486933pt;}
.ws29{word-spacing:-14.448533pt;}
.ws33{word-spacing:-14.351467pt;}
.ws2e{word-spacing:-14.176000pt;}
.ws2b{word-spacing:-14.080000pt;}
.ws26{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws32{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws25{word-spacing:-13.232640pt;}
.ws24{word-spacing:-12.416000pt;}
.ws16{word-spacing:-12.320000pt;}
.ws22{word-spacing:-12.256213pt;}
.ws1f{word-spacing:-12.096000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.808000pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws21{word-spacing:-11.488000pt;}
.ws1d{word-spacing:-11.472000pt;}
.ws20{word-spacing:-11.456000pt;}
.ws23{word-spacing:-11.312000pt;}
.ws1b{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.528000pt;}
.ws1a{word-spacing:-10.400000pt;}
.ws1e{word-spacing:-10.176000pt;}
.ws1{word-spacing:-9.710720pt;}
.ws0{word-spacing:-9.464213pt;}
.ws2{word-spacing:-8.432213pt;}
.ws9{word-spacing:-8.033173pt;}
.wsa{word-spacing:-6.755840pt;}
.wsb{word-spacing:0.000000pt;}
._36{margin-left:-6.690773pt;}
._2a{margin-left:-4.640000pt;}
._4{margin-left:-3.616000pt;}
._0{margin-left:-2.688640pt;}
._3{margin-left:-1.798613pt;}
._1{margin-left:-0.900480pt;}
._2{width:1.107413pt;}
._7{width:2.021333pt;}
._10{width:2.921600pt;}
._5{width:4.045227pt;}
._6{width:5.516373pt;}
._8{width:6.443733pt;}
._c{width:7.375573pt;}
._d{width:8.828800pt;}
._11{width:9.922560pt;}
._14{width:10.825600pt;}
._a{width:12.270720pt;}
._15{width:13.329280pt;}
._18{width:14.695040pt;}
._3f{width:16.212053pt;}
._9{width:17.210880pt;}
._b{width:18.608213pt;}
._1b{width:19.499093pt;}
._12{width:20.416000pt;}
._13{width:21.888000pt;}
._1a{width:23.232000pt;}
._19{width:24.260480pt;}
._23{width:25.280000pt;}
._1c{width:26.752000pt;}
._1d{width:28.383787pt;}
._20{width:29.504000pt;}
._28{width:30.464000pt;}
._29{width:31.878613pt;}
._4a{width:33.150080pt;}
._e{width:34.049920pt;}
._f{width:35.165440pt;}
._1e{width:36.224000pt;}
._1f{width:37.416960pt;}
._24{width:40.000000pt;}
._25{width:41.280000pt;}
._16{width:43.136000pt;}
._17{width:44.288000pt;}
._54{width:45.182720pt;}
._21{width:46.784000pt;}
._22{width:47.788587pt;}
._26{width:48.768000pt;}
._27{width:49.786240pt;}
._57{width:56.080640pt;}
._38{width:59.917227pt;}
._39{width:62.368000pt;}
._51{width:64.704000pt;}
._3d{width:65.619840pt;}
._41{width:70.451840pt;}
._56{width:71.734187pt;}
._3e{width:73.152000pt;}
._32{width:76.880640pt;}
._52{width:80.064000pt;}
._3b{width:84.640000pt;}
._55{width:86.524160pt;}
._3a{width:88.246613pt;}
._33{width:91.261227pt;}
._30{width:92.701227pt;}
._50{width:95.509760pt;}
._37{width:96.800000pt;}
._31{width:101.374507pt;}
._35{width:102.541227pt;}
._53{width:103.657387pt;}
._2f{width:105.997227pt;}
._43{width:119.198507pt;}
._47{width:128.956373pt;}
._2b{width:132.685227pt;}
._42{width:140.701227pt;}
._46{width:146.631893pt;}
._48{width:157.383893pt;}
._4e{width:163.389227pt;}
._4b{width:167.540053pt;}
._49{width:176.194987pt;}
._2e{width:191.293227pt;}
._34{width:202.035840pt;}
._3c{width:261.443840pt;}
._2c{width:303.187840pt;}
._40{width:384.766507pt;}
._4f{width:387.631360pt;}
._4c{width:464.590507pt;}
._44{width:609.907840pt;}
._2d{width:708.903893pt;}
._45{width:829.223893pt;}
._4d{width:882.702293pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.040000pt;}
.y37{bottom:3.680000pt;}
.y35{bottom:4.160000pt;}
.y2f{bottom:55.813333pt;}
.y2e{bottom:73.093333pt;}
.y2d{bottom:86.853333pt;}
.y2c{bottom:100.640000pt;}
.y64{bottom:229.626667pt;}
.y6c{bottom:247.866667pt;}
.y5e{bottom:248.026667pt;}
.y101{bottom:248.826667pt;}
.y2a{bottom:249.946667pt;}
.yc8{bottom:250.746667pt;}
.ydf{bottom:251.226667pt;}
.y11f{bottom:252.186667pt;}
.y148{bottom:256.826667pt;}
.yc7{bottom:265.306667pt;}
.y6b{bottom:266.266667pt;}
.y5d{bottom:266.426667pt;}
.y100{bottom:267.226667pt;}
.y11e{bottom:268.986667pt;}
.yc6{bottom:269.306667pt;}
.yde{bottom:269.626667pt;}
.y147{bottom:273.666667pt;}
.yc4{bottom:282.786667pt;}
.yc5{bottom:282.946667pt;}
.y6a{bottom:284.706667pt;}
.y5c{bottom:284.866667pt;}
.yff{bottom:285.666667pt;}
.y11d{bottom:285.986667pt;}
.y29{bottom:286.146667pt;}
.ydd{bottom:288.066667pt;}
.y146{bottom:290.626667pt;}
.yc3{bottom:296.706667pt;}
.y11c{bottom:302.786667pt;}
.y7d{bottom:303.106667pt;}
.y5b{bottom:303.266667pt;}
.yfe{bottom:304.066667pt;}
.y28{bottom:304.386667pt;}
.y145{bottom:307.426667pt;}
.yc1{bottom:310.466667pt;}
.y27{bottom:319.746667pt;}
.y7c{bottom:321.506667pt;}
.y5a{bottom:321.666667pt;}
.yfd{bottom:322.466667pt;}
.yc2{bottom:323.906667pt;}
.yc0{bottom:324.066667pt;}
.y144{bottom:324.226667pt;}
.ydc{bottom:324.866667pt;}
.y26{bottom:334.946667pt;}
.y11b{bottom:336.546667pt;}
.ybf{bottom:337.666667pt;}
.y7b{bottom:339.906667pt;}
.y59{bottom:340.066667pt;}
.yfc{bottom:340.866667pt;}
.y143{bottom:341.186667pt;}
.ydb{bottom:343.106667pt;}
.y25{bottom:350.306667pt;}
.yb2{bottom:351.266667pt;}
.yb9{bottom:352.226667pt;}
.y11a{bottom:353.346667pt;}
.y142{bottom:357.986667pt;}
.y58{bottom:358.466667pt;}
.yfb{bottom:359.266667pt;}
.yd6{bottom:361.666667pt;}
.yd3{bottom:361.826667pt;}
.yb1{bottom:365.186667pt;}
.y24{bottom:365.666667pt;}
.y119{bottom:370.306667pt;}
.yd2{bottom:374.626667pt;}
.y141{bottom:374.946667pt;}
.y106{bottom:376.706667pt;}
.y57{bottom:376.866667pt;}
.yfa{bottom:377.666667pt;}
.ya6{bottom:378.786667pt;}
.yb0{bottom:378.946667pt;}
.yb8{bottom:379.266667pt;}
.y23{bottom:381.026667pt;}
.y118{bottom:387.106667pt;}
.yda{bottom:388.226667pt;}
.yd5{bottom:388.706667pt;}
.yd1{bottom:389.026667pt;}
.y140{bottom:391.746667pt;}
.yb7{bottom:392.706667pt;}
.yaf{bottom:392.866667pt;}
.y56{bottom:395.266667pt;}
.y105{bottom:395.426667pt;}
.yf9{bottom:396.066667pt;}
.y22{bottom:396.386667pt;}
.yd4{bottom:401.986667pt;}
.yd9{bottom:402.146667pt;}
.yd0{bottom:402.466667pt;}
.y117{bottom:404.066667pt;}
.yb6{bottom:406.146667pt;}
.ya5{bottom:406.466667pt;}
.yae{bottom:406.946667pt;}
.y13f{bottom:408.546667pt;}
.y21{bottom:411.746667pt;}
.y55{bottom:413.666667pt;}
.y104{bottom:413.826667pt;}
.yf8{bottom:414.306667pt;}
.ycf{bottom:415.746667pt;}
.yb5{bottom:419.906667pt;}
.yad{bottom:420.546667pt;}
.y116{bottom:420.866667pt;}
.y13e{bottom:425.506667pt;}
.y20{bottom:426.946667pt;}
.yd8{bottom:429.666667pt;}
.yce{bottom:429.826667pt;}
.y54{bottom:432.066667pt;}
.y103{bottom:432.226667pt;}
.ya4{bottom:433.666667pt;}
.yb4{bottom:433.826667pt;}
.ybe{bottom:433.986667pt;}
.yac{bottom:434.146667pt;}
.y115{bottom:437.826667pt;}
.y1f{bottom:442.306667pt;}
.ycd{bottom:443.586667pt;}
.ya3{bottom:447.586667pt;}
.yab{bottom:447.746667pt;}
.ybd{bottom:447.906667pt;}
.y75{bottom:450.306667pt;}
.y53{bottom:450.466667pt;}
.y102{bottom:450.626667pt;}
.yf7{bottom:451.106667pt;}
.y114{bottom:454.626667pt;}
.yd7{bottom:457.026667pt;}
.ycc{bottom:457.186667pt;}
.y1e{bottom:457.666667pt;}
.y13d{bottom:459.266667pt;}
.ya2{bottom:461.346667pt;}
.yaa{bottom:461.506667pt;}
.ybc{bottom:461.666667pt;}
.y52{bottom:468.866667pt;}
.y74{bottom:469.026667pt;}
.yf6{bottom:469.826667pt;}
.y113{bottom:471.586667pt;}
.ycb{bottom:472.546667pt;}
.y1d{bottom:473.026667pt;}
.ya9{bottom:475.106667pt;}
.y13c{bottom:476.066667pt;}
.yef{bottom:484.866667pt;}
.y51{bottom:487.266667pt;}
.y73{bottom:487.426667pt;}
.y1c{bottom:488.386667pt;}
.ya1{bottom:489.026667pt;}
.ybb{bottom:489.186667pt;}
.y13b{bottom:492.866667pt;}
.yee{bottom:500.093333pt;}
.yf5{bottom:500.253333pt;}
.ya0{bottom:502.973333pt;}
.yba{bottom:503.133333pt;}
.yb3{bottom:503.453333pt;}
.y1b{bottom:503.773333pt;}
.y112{bottom:505.213333pt;}
.y50{bottom:505.693333pt;}
.y72{bottom:505.853333pt;}
.y13a{bottom:509.853333pt;}
.yf3{bottom:515.453333pt;}
.y9f{bottom:516.733333pt;}
.ya8{bottom:516.893333pt;}
.y1a{bottom:518.973333pt;}
.y111{bottom:522.173333pt;}
.y4f{bottom:524.093333pt;}
.y71{bottom:524.253333pt;}
.y139{bottom:526.653333pt;}
.y9e{bottom:530.653333pt;}
.ya7{bottom:530.813333pt;}
.yf4{bottom:531.453333pt;}
.yf2{bottom:532.093333pt;}
.y19{bottom:534.333333pt;}
.y110{bottom:539.133333pt;}
.y4e{bottom:542.493333pt;}
.y70{bottom:542.653333pt;}
.y138{bottom:543.613333pt;}
.y9a{bottom:544.413333pt;}
.yed{bottom:546.973333pt;}
.yf1{bottom:547.453333pt;}
.y18{bottom:549.693333pt;}
.y10f{bottom:555.933333pt;}
.y91{bottom:558.173333pt;}
.y137{bottom:560.413333pt;}
.y4d{bottom:560.893333pt;}
.y6f{bottom:561.053333pt;}
.yec{bottom:562.333333pt;}
.yf0{bottom:562.813333pt;}
.y17{bottom:565.053333pt;}
.y90{bottom:571.933333pt;}
.y10e{bottom:572.893333pt;}
.y136{bottom:577.213333pt;}
.y4c{bottom:579.293333pt;}
.y6e{bottom:579.453333pt;}
.y16{bottom:580.413333pt;}
.yeb{bottom:582.493333pt;}
.y8f{bottom:585.533333pt;}
.y99{bottom:585.853333pt;}
.y10d{bottom:589.533333pt;}
.yea{bottom:592.573333pt;}
.y135{bottom:594.013333pt;}
.y15{bottom:595.613333pt;}
.y4b{bottom:597.533333pt;}
.y63{bottom:597.693333pt;}
.y6d{bottom:597.853333pt;}
.y98{bottom:599.613333pt;}
.y9d{bottom:599.773333pt;}
.y10c{bottom:606.493333pt;}
.ye9{bottom:607.933333pt;}
.y14{bottom:610.973333pt;}
.y134{bottom:611.133333pt;}
.y8e{bottom:613.213333pt;}
.y97{bottom:613.373333pt;}
.y9c{bottom:613.533333pt;}
.y62{bottom:616.093333pt;}
.y4a{bottom:616.253333pt;}
.ye8{bottom:623.293333pt;}
.y13{bottom:626.333333pt;}
.y8d{bottom:627.133333pt;}
.y14a{bottom:627.933333pt;}
.y133{bottom:628.093333pt;}
.y107{bottom:634.173333pt;}
.y61{bottom:634.333333pt;}
.y69{bottom:634.493333pt;}
.y49{bottom:634.653333pt;}
.ye7{bottom:638.333333pt;}
.y10b{bottom:640.253333pt;}
.y96{bottom:641.053333pt;}
.y9b{bottom:641.213333pt;}
.y8c{bottom:641.533333pt;}
.y12{bottom:641.693333pt;}
.y132{bottom:644.893333pt;}
.y68{bottom:652.893333pt;}
.y48{bottom:653.053333pt;}
.ye6{bottom:653.853333pt;}
.y8b{bottom:654.973333pt;}
.y95{bottom:655.133333pt;}
.y11{bottom:657.053333pt;}
.y131{bottom:661.693333pt;}
.y8a{bottom:668.733333pt;}
.y94{bottom:668.893333pt;}
.ye5{bottom:669.053333pt;}
.y67{bottom:671.293333pt;}
.y47{bottom:671.453333pt;}
.y10{bottom:672.733333pt;}
.y10a{bottom:674.013333pt;}
.y149{bottom:678.493333pt;}
.y130{bottom:678.653333pt;}
.y89{bottom:682.493333pt;}
.y93{bottom:682.653333pt;}
.ye4{bottom:684.733333pt;}
.y66{bottom:689.693333pt;}
.y46{bottom:689.853333pt;}
.y109{bottom:690.813333pt;}
.y12f{bottom:695.453333pt;}
.y88{bottom:696.253333pt;}
.y92{bottom:696.413333pt;}
.ye3{bottom:700.093333pt;}
.y7a{bottom:708.093333pt;}
.y45{bottom:708.253333pt;}
.yf{bottom:709.533333pt;}
.y87{bottom:711.453333pt;}
.y12e{bottom:712.413333pt;}
.ye2{bottom:715.453333pt;}
.y65{bottom:726.213333pt;}
.y79{bottom:726.533333pt;}
.y44{bottom:726.693333pt;}
.ye{bottom:728.613333pt;}
.y12d{bottom:729.253333pt;}
.ye1{bottom:730.853333pt;}
.y108{bottom:744.453333pt;}
.y78{bottom:744.933333pt;}
.y43{bottom:745.093333pt;}
.y12c{bottom:746.053333pt;}
.yd{bottom:747.013333pt;}
.ye0{bottom:747.333333pt;}
.y12b{bottom:763.013333pt;}
.y77{bottom:763.333333pt;}
.y42{bottom:763.493333pt;}
.yc{bottom:764.933333pt;}
.y12a{bottom:779.813333pt;}
.y86{bottom:781.733333pt;}
.y41{bottom:781.893333pt;}
.y129{bottom:796.773333pt;}
.y76{bottom:799.813333pt;}
.y85{bottom:800.133333pt;}
.y40{bottom:800.293333pt;}
.yb{bottom:801.893333pt;}
.y128{bottom:813.573333pt;}
.y84{bottom:818.533333pt;}
.y3f{bottom:818.693333pt;}
.ya{bottom:820.453333pt;}
.y127{bottom:830.373333pt;}
.y83{bottom:836.933333pt;}
.y3e{bottom:837.093333pt;}
.y9{bottom:838.853333pt;}
.y126{bottom:847.333333pt;}
.y2b{bottom:850.880000pt;}
.y82{bottom:855.333333pt;}
.y3d{bottom:855.493333pt;}
.y8{bottom:857.253333pt;}
.y33{bottom:861.733333pt;}
.y125{bottom:864.133333pt;}
.y32{bottom:871.333333pt;}
.y81{bottom:873.733333pt;}
.y3c{bottom:873.893333pt;}
.y7{bottom:875.333333pt;}
.y31{bottom:880.613333pt;}
.y124{bottom:881.093333pt;}
.y80{bottom:892.133333pt;}
.y3b{bottom:892.293333pt;}
.y30{bottom:892.453333pt;}
.y123{bottom:897.893333pt;}
.y7f{bottom:910.533333pt;}
.y3a{bottom:910.693333pt;}
.y6{bottom:911.973333pt;}
.y122{bottom:914.693333pt;}
.y7e{bottom:928.933333pt;}
.y60{bottom:929.093333pt;}
.y5{bottom:930.373333pt;}
.y121{bottom:931.653333pt;}
.yca{bottom:947.360000pt;}
.y4{bottom:948.800000pt;}
.y120{bottom:965.440000pt;}
.y39{bottom:965.600000pt;}
.y5f{bottom:965.920000pt;}
.yc9{bottom:976.320000pt;}
.y3{bottom:979.840000pt;}
.y34{bottom:988.320000pt;}
.y36{bottom:989.760000pt;}
.y1{bottom:993.120000pt;}
.y38{bottom:1003.680000pt;}
.h13{height:5.025000pt;}
.hd{height:13.440000pt;}
.h1{height:14.720000pt;}
.hc{height:17.280000pt;}
.hb{height:20.422500pt;}
.ha{height:24.312500pt;}
.h17{height:26.381250pt;}
.h10{height:33.515625pt;}
.he{height:34.505000pt;}
.h16{height:37.090625pt;}
.h9{height:38.578125pt;}
.hf{height:44.687500pt;}
.h8{height:47.109375pt;}
.h2{height:47.380000pt;}
.h3{height:52.134375pt;}
.h18{height:57.787500pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h15{height:98.690625pt;}
.h11{height:102.149375pt;}
.h12{height:102.789375pt;}
.h7{height:111.520000pt;}
.h14{height:113.734375pt;}
.h0{height:1056.000000pt;}
.w3{width:20.480000pt;}
.w2{width:91.040000pt;}
.w4{width:371.733333pt;}
.w1{width:419.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.266667pt;}
.xc{left:4.013333pt;}
.x4{left:96.032000pt;}
.x17{left:110.112000pt;}
.x18{left:187.546667pt;}
.x3{left:192.026667pt;}
.x21{left:196.186667pt;}
.x23{left:197.626667pt;}
.x10{left:199.706667pt;}
.x1c{left:205.306667pt;}
.xd{left:208.360000pt;}
.x5{left:210.106667pt;}
.x22{left:211.226667pt;}
.xf{left:216.026667pt;}
.x1{left:217.160000pt;}
.x11{left:270.306667pt;}
.x1d{left:385.666667pt;}
.x13{left:392.386667pt;}
.x19{left:397.826667pt;}
.x12{left:403.746667pt;}
.x1f{left:433.693333pt;}
.x6{left:536.960000pt;}
.x9{left:548.413333pt;}
.x8{left:553.213333pt;}
.xa{left:555.293333pt;}
.x7{left:559.293333pt;}
.x15{left:614.533333pt;}
.xb{left:617.240000pt;}
.x14{left:625.893333pt;}
.x20{left:641.733333pt;}
.x1b{left:642.853333pt;}
.x1a{left:649.733333pt;}
.x2{left:654.053333pt;}
.x1e{left:655.813333pt;}
.x16{left:690.853333pt;}
}




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