
    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_3a8f2005a1ea85e65afb0461.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_40632767cbf594f5483b662e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_f435b5d2426e192b8d05ff8e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_481bc59ef4ef0bf79d948714.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_2e45836ad2cfa4c1405b200b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_f6c955b47ba8456d491f8aa4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_b57e2139b16d2efe944a22e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_4c7bb36c73603b11fcc20785.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.786000px;}
.ls7{letter-spacing:-0.618000px;}
.lsc{letter-spacing:-0.478200px;}
.ls22{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.270600px;}
.lsb{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.233400px;}
.ls5{letter-spacing:-0.150000px;}
.ls18{letter-spacing:-0.121200px;}
.ls11{letter-spacing:-0.103800px;}
.lsd{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.085200px;}
.ls17{letter-spacing:-0.075000px;}
.ls9{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.075000px;}
.lse{letter-spacing:0.100800px;}
.ls10{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.187200px;}
.ls14{letter-spacing:0.211680px;}
.ls16{letter-spacing:0.211800px;}
.ls20{letter-spacing:0.305280px;}
.ls21{letter-spacing:0.305400px;}
.ls1f{letter-spacing:0.308400px;}
.ls12{letter-spacing:0.311760px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.532800px;}
.ls1a{letter-spacing:62.921280px;}
.ls19{letter-spacing:66.521280px;}
.ls1e{letter-spacing:70.121280px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws17{word-spacing:-14.881200px;}
.ws18{word-spacing:-14.878200px;}
.ws14{word-spacing:-14.647800px;}
.wse{word-spacing:-14.595840px;}
.ws6{word-spacing:-14.572800px;}
.ws10{word-spacing:-14.469000px;}
.ws16{word-spacing:-14.339400px;}
.ws19{word-spacing:-14.158200px;}
.ws1{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.612800px;}
.ws0{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.359000px;}
.ws11{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws13{word-spacing:-13.026000px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.527600px;}
.wsc{word-spacing:-10.134600px;}
.ws3{word-spacing:-9.187200px;}
.wsd{word-spacing:-9.092400px;}
.ws4{word-spacing:-8.614200px;}
.wsa{word-spacing:-7.920000px;}
.ws9{word-spacing:-7.884000px;}
.wsb{word-spacing:0.000000px;}
._30{margin-left:-7.253280px;}
._26{margin-left:-5.166720px;}
._1a{margin-left:-4.084800px;}
._c{margin-left:-3.064080px;}
._1{margin-left:-1.644000px;}
._2{width:1.092000px;}
._4{width:3.020760px;}
._8{width:5.019840px;}
._a{width:6.405120px;}
._9{width:7.589520px;}
._12{width:8.768400px;}
._11{width:9.979920px;}
._14{width:11.218560px;}
._17{width:12.784320px;}
._1d{width:15.622560px;}
._1e{width:16.822560px;}
._1c{width:18.759120px;}
._7{width:19.780560px;}
._b{width:21.258240px;}
._10{width:22.741440px;}
._24{width:23.846400px;}
._25{width:25.218720px;}
._38{width:26.346480px;}
._d{width:27.429840px;}
._15{width:28.565280px;}
._37{width:29.580000px;}
._36{width:30.609120px;}
._1f{width:31.728960px;}
._1b{width:32.855040px;}
._20{width:34.267200px;}
._f{width:35.421360px;}
._e{width:36.632880px;}
._3a{width:37.843680px;}
._2a{width:39.095520px;}
._29{width:40.195680px;}
._39{width:41.826240px;}
._2b{width:42.857280px;}
._16{width:44.778240px;}
._13{width:46.493280px;}
._2e{width:47.598720px;}
._21{width:50.938560px;}
._23{width:52.002720px;}
._22{width:53.139840px;}
._18{width:58.360080px;}
._27{width:62.464320px;}
._28{width:63.558240px;}
._32{width:70.875360px;}
._34{width:72.010800px;}
._0{width:75.000000px;}
._35{width:76.139040px;}
._33{width:80.855280px;}
._3c{width:99.691200px;}
._3d{width:100.814400px;}
._31{width:103.205520px;}
._3b{width:108.699840px;}
._3e{width:140.892480px;}
._2c{width:142.349760px;}
._2d{width:143.355840px;}
._3{width:182.022000px;}
._5{width:198.825840px;}
._6{width:202.852800px;}
._19{width:1140.967200px;}
._2f{width:1240.323000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y53{bottom:-21.060000px;}
.y52{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.420000px;}
.y9a{bottom:5.040000px;}
.yb9{bottom:5.220000px;}
.y93{bottom:12.240000px;}
.y51{bottom:18.360000px;}
.ya3{bottom:19.260000px;}
.y9c{bottom:20.880000px;}
.yae{bottom:20.910000px;}
.y94{bottom:21.060000px;}
.ya5{bottom:22.500000px;}
.y99{bottom:22.680000px;}
.yaa{bottom:22.710000px;}
.y50{bottom:28.800000px;}
.yb4{bottom:36.720000px;}
.ya2{bottom:36.765000px;}
.y9d{bottom:38.340000px;}
.yad{bottom:38.370000px;}
.yb2{bottom:38.520000px;}
.yb0{bottom:38.550000px;}
.ya0{bottom:38.565000px;}
.y4f{bottom:39.420000px;}
.ybb{bottom:39.465000px;}
.y98{bottom:40.140000px;}
.ya9{bottom:40.170000px;}
.yb8{bottom:40.365000px;}
.y4e{bottom:49.860000px;}
.yb3{bottom:55.260000px;}
.ya1{bottom:55.305000px;}
.yaf{bottom:56.010000px;}
.yb1{bottom:56.160000px;}
.y9f{bottom:56.205000px;}
.y8{bottom:56.520000px;}
.y90{bottom:56.556000px;}
.y9b{bottom:56.880000px;}
.yac{bottom:56.910000px;}
.yba{bottom:56.925000px;}
.y97{bottom:57.780000px;}
.ya8{bottom:57.810000px;}
.yb7{bottom:58.005000px;}
.y4d{bottom:58.500000px;}
.y7{bottom:70.596000px;}
.yab{bottom:74.370000px;}
.ya7{bottom:75.450000px;}
.y6{bottom:84.636000px;}
.y4c{bottom:112.680000px;}
.y8b{bottom:113.796000px;}
.y3f{bottom:116.496000px;}
.y11f{bottom:119.736000px;}
.y140{bottom:120.456000px;}
.yf0{bottom:124.236000px;}
.yfc{bottom:128.736000px;}
.y4b{bottom:132.120000px;}
.y8a{bottom:133.236000px;}
.y3e{bottom:135.936000px;}
.y11e{bottom:138.996000px;}
.y13f{bottom:142.596000px;}
.yef{bottom:143.496000px;}
.y4a{bottom:146.160000px;}
.y120{bottom:147.816000px;}
.yfb{bottom:147.996000px;}
.y89{bottom:152.490000px;}
.y3d{bottom:155.190000px;}
.y11d{bottom:158.430000px;}
.y49{bottom:160.380000px;}
.yee{bottom:162.930000px;}
.y13e{bottom:164.910000px;}
.yfa{bottom:167.430000px;}
.y8d{bottom:169.950000px;}
.y88{bottom:171.930000px;}
.y48{bottom:174.465000px;}
.y3c{bottom:174.630000px;}
.y11c{bottom:177.690000px;}
.yed{bottom:182.190000px;}
.ybc{bottom:186.690000px;}
.y13d{bottom:187.230000px;}
.y47{bottom:189.765000px;}
.y87{bottom:191.190000px;}
.y3b{bottom:193.890000px;}
.y11b{bottom:197.130000px;}
.yec{bottom:201.630000px;}
.yb6{bottom:203.070000px;}
.yf9{bottom:206.130000px;}
.y46{bottom:209.205000px;}
.y13c{bottom:209.370000px;}
.y86{bottom:210.630000px;}
.y3a{bottom:213.330000px;}
.yeb{bottom:220.890000px;}
.y45{bottom:223.245000px;}
.yf8{bottom:225.390000px;}
.y85{bottom:229.890000px;}
.y13b{bottom:231.690000px;}
.y39{bottom:232.590000px;}
.y44{bottom:237.285000px;}
.yea{bottom:240.330000px;}
.yf7{bottom:244.830000px;}
.y84{bottom:249.330000px;}
.y43{bottom:251.325000px;}
.y38{bottom:252.030000px;}
.y13a{bottom:253.830000px;}
.ye9{bottom:259.590000px;}
.yf6{bottom:264.090000px;}
.y42{bottom:265.545000px;}
.y83{bottom:268.590000px;}
.y37{bottom:271.290000px;}
.yb5{bottom:276.015000px;}
.y139{bottom:276.150000px;}
.ye8{bottom:278.850000px;}
.y41{bottom:279.945000px;}
.yf5{bottom:283.350000px;}
.y82{bottom:287.850000px;}
.y36{bottom:290.730000px;}
.ye7{bottom:298.290000px;}
.y138{bottom:298.470000px;}
.yf4{bottom:302.790000px;}
.y81{bottom:307.290000px;}
.y35{bottom:309.990000px;}
.ye6{bottom:317.550000px;}
.y137{bottom:320.610000px;}
.yf3{bottom:322.050000px;}
.y80{bottom:326.550000px;}
.y34{bottom:329.430000px;}
.ye5{bottom:337.035000px;}
.yf2{bottom:341.535000px;}
.y136{bottom:342.975000px;}
.y7f{bottom:346.035000px;}
.y33{bottom:348.735000px;}
.ye4{bottom:356.295000px;}
.yf1{bottom:360.795000px;}
.y135{bottom:365.115000px;}
.y7e{bottom:365.295000px;}
.y32{bottom:368.175000px;}
.y11a{bottom:375.735000px;}
.ye3{bottom:380.235000px;}
.y7d{bottom:384.735000px;}
.y31{bottom:387.255000px;}
.y134{bottom:387.435000px;}
.y119{bottom:394.995000px;}
.ye2{bottom:399.495000px;}
.y7c{bottom:403.995000px;}
.y30{bottom:404.715000px;}
.y133{bottom:409.755000px;}
.y118{bottom:414.435000px;}
.ye1{bottom:418.935000px;}
.ya6{bottom:419.835000px;}
.y2f{bottom:422.355000px;}
.y7b{bottom:423.435000px;}
.y132{bottom:431.895000px;}
.y117{bottom:433.695000px;}
.ye0{bottom:438.195000px;}
.y2e{bottom:439.995000px;}
.y7a{bottom:442.695000px;}
.y116{bottom:453.135000px;}
.y131{bottom:454.215000px;}
.y2d{bottom:457.455000px;}
.ydf{bottom:457.635000px;}
.y79{bottom:462.135000px;}
.y115{bottom:472.395000px;}
.y2c{bottom:475.095000px;}
.y130{bottom:476.355000px;}
.yde{bottom:476.895000px;}
.y78{bottom:481.395000px;}
.y114{bottom:491.835000px;}
.y2b{bottom:492.735000px;}
.ydd{bottom:496.335000px;}
.y12f{bottom:498.675000px;}
.y77{bottom:500.835000px;}
.y2a{bottom:510.195000px;}
.ya4{bottom:510.225000px;}
.y113{bottom:511.095000px;}
.ydc{bottom:515.595000px;}
.y76{bottom:520.095000px;}
.y12e{bottom:520.815000px;}
.y29{bottom:527.835000px;}
.y112{bottom:530.535000px;}
.ydb{bottom:535.035000px;}
.y75{bottom:539.535000px;}
.y12d{bottom:543.135000px;}
.y28{bottom:545.475000px;}
.y111{bottom:549.795000px;}
.yda{bottom:554.295000px;}
.y74{bottom:558.795000px;}
.y27{bottom:563.115000px;}
.y12c{bottom:565.455000px;}
.y110{bottom:569.055000px;}
.yd9{bottom:573.555000px;}
.y73{bottom:578.055000px;}
.y26{bottom:580.575000px;}
.y9e{bottom:582.945000px;}
.y12b{bottom:587.595000px;}
.y10f{bottom:588.495000px;}
.yd8{bottom:592.995000px;}
.y72{bottom:597.495000px;}
.y25{bottom:598.215000px;}
.y10e{bottom:607.785000px;}
.y12a{bottom:609.945000px;}
.yd7{bottom:612.285000px;}
.y24{bottom:615.885000px;}
.y71{bottom:616.785000px;}
.y8c{bottom:627.045000px;}
.y10d{bottom:627.225000px;}
.yd6{bottom:631.725000px;}
.y129{bottom:632.085000px;}
.y23{bottom:635.505000px;}
.y70{bottom:636.225000px;}
.y10c{bottom:646.485000px;}
.yd5{bottom:650.985000px;}
.y22{bottom:653.145000px;}
.y96{bottom:654.090000px;}
.y128{bottom:654.405000px;}
.y6f{bottom:655.485000px;}
.y10b{bottom:665.925000px;}
.yd4{bottom:670.425000px;}
.y21{bottom:670.785000px;}
.y6e{bottom:674.925000px;}
.y127{bottom:676.725000px;}
.y10a{bottom:685.185000px;}
.y20{bottom:688.425000px;}
.yd3{bottom:689.685000px;}
.y6d{bottom:694.185000px;}
.y126{bottom:698.865000px;}
.y109{bottom:704.625000px;}
.y1f{bottom:706.065000px;}
.y40{bottom:706.965000px;}
.yd2{bottom:709.125000px;}
.y6c{bottom:713.625000px;}
.y125{bottom:721.185000px;}
.y1e{bottom:723.525000px;}
.y108{bottom:723.885000px;}
.y92{bottom:726.810000px;}
.yd1{bottom:728.385000px;}
.y6b{bottom:732.885000px;}
.y1d{bottom:741.165000px;}
.y107{bottom:743.325000px;}
.yd0{bottom:747.825000px;}
.y6a{bottom:752.325000px;}
.y1c{bottom:758.805000px;}
.y106{bottom:762.585000px;}
.y124{bottom:765.645000px;}
.ycf{bottom:767.085000px;}
.y91{bottom:769.110000px;}
.y69{bottom:771.585000px;}
.y1b{bottom:776.265000px;}
.y105{bottom:782.025000px;}
.yce{bottom:786.525000px;}
.y123{bottom:787.785000px;}
.y68{bottom:791.025000px;}
.y1a{bottom:793.905000px;}
.y104{bottom:801.285000px;}
.ycd{bottom:805.785000px;}
.y122{bottom:807.405000px;}
.y8f{bottom:808.200000px;}
.y67{bottom:810.285000px;}
.y19{bottom:811.545000px;}
.y103{bottom:820.725000px;}
.ycc{bottom:825.225000px;}
.y8e{bottom:827.640000px;}
.y18{bottom:829.005000px;}
.y121{bottom:829.545000px;}
.y66{bottom:829.725000px;}
.y102{bottom:839.985000px;}
.ycb{bottom:844.485000px;}
.y17{bottom:846.645000px;}
.y65{bottom:848.985000px;}
.y14e{bottom:849.705000px;}
.y101{bottom:859.245000px;}
.yca{bottom:863.745000px;}
.y16{bottom:864.285000px;}
.y64{bottom:868.245000px;}
.y14d{bottom:872.070000px;}
.y100{bottom:878.730000px;}
.y15{bottom:881.970000px;}
.yc9{bottom:883.230000px;}
.y63{bottom:887.730000px;}
.y14c{bottom:894.390000px;}
.yff{bottom:897.990000px;}
.y14{bottom:899.430000px;}
.yc8{bottom:902.490000px;}
.y62{bottom:906.990000px;}
.y14b{bottom:916.530000px;}
.y13{bottom:917.070000px;}
.yfe{bottom:917.430000px;}
.yc7{bottom:921.930000px;}
.y61{bottom:926.430000px;}
.y12{bottom:934.710000px;}
.yfd{bottom:936.690000px;}
.y14a{bottom:938.850000px;}
.yc6{bottom:941.190000px;}
.y60{bottom:945.690000px;}
.y11{bottom:952.170000px;}
.yc5{bottom:960.630000px;}
.y149{bottom:960.990000px;}
.y5f{bottom:965.130000px;}
.y10{bottom:969.810000px;}
.yc4{bottom:979.890000px;}
.y148{bottom:983.310000px;}
.y5e{bottom:984.390000px;}
.yf{bottom:987.450000px;}
.yc3{bottom:999.330000px;}
.y5d{bottom:1003.830000px;}
.ye{bottom:1005.270000px;}
.y147{bottom:1005.450000px;}
.yc2{bottom:1018.590000px;}
.y5c{bottom:1023.090000px;}
.y146{bottom:1027.770000px;}
.yd{bottom:1030.650000px;}
.yc1{bottom:1038.030000px;}
.y5b{bottom:1042.530000px;}
.yc{bottom:1047.570000px;}
.y145{bottom:1050.090000px;}
.yc0{bottom:1057.290000px;}
.y5a{bottom:1061.790000px;}
.yb{bottom:1066.830000px;}
.y144{bottom:1072.230000px;}
.ybf{bottom:1076.730000px;}
.y59{bottom:1081.230000px;}
.ya{bottom:1085.370000px;}
.y143{bottom:1094.550000px;}
.ybe{bottom:1095.990000px;}
.y58{bottom:1100.490000px;}
.y9{bottom:1108.230000px;}
.ybd{bottom:1115.430000px;}
.y142{bottom:1116.690000px;}
.y57{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y141{bottom:1139.040000px;}
.y56{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y55{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y54{bottom:1197.540000px;}
.hb{height:30.480469px;}
.hf{height:35.100000px;}
.h7{height:35.477578px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.h5{height:65.837812px;}
.h13{height:70.380000px;}
.h11{height:70.416000px;}
.h10{height:72.000000px;}
.h14{height:72.036000px;}
.h12{height:89.496000px;}
.h9{height:292.530000px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:37.836000px;}
.w8{width:103.680000px;}
.wa{width:125.640000px;}
.wb{width:140.616000px;}
.wc{width:180.930000px;}
.wd{width:191.700000px;}
.w3{width:208.110000px;}
.w9{width:260.670000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w6{width:1262.879981px;}
.w4{width:1262.880000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x20{left:13.140000px;}
.x21{left:17.640000px;}
.x14{left:23.394000px;}
.x17{left:24.660000px;}
.x13{left:26.094000px;}
.x1c{left:30.240000px;}
.x1a{left:32.970000px;}
.x18{left:37.080000px;}
.x1d{left:38.880000px;}
.x1f{left:43.200000px;}
.x1{left:108.035987px;}
.xa{left:112.536000px;}
.x2{left:116.135987px;}
.x22{left:129.275987px;}
.xb{left:134.994000px;}
.x3{left:138.815987px;}
.x25{left:140.075987px;}
.x12{left:147.276000px;}
.x9{left:162.029987px;}
.x24{left:171.929987px;}
.x23{left:182.549987px;}
.x6{left:204.689987px;}
.x7{left:222.689987px;}
.xd{left:227.369987px;}
.x15{left:251.670000px;}
.x8{left:335.414987px;}
.x4{left:355.574987px;}
.x10{left:356.789981px;}
.x5{left:446.474987px;}
.xc{left:472.424987px;}
.x16{left:513.075000px;}
.x19{left:639.615000px;}
.xe{left:697.649987px;}
.x1b{left:780.945000px;}
.xf{left:842.324981px;}
.x1e{left:962.610000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.698667pt;}
.ls7{letter-spacing:-0.549333pt;}
.lsc{letter-spacing:-0.425067pt;}
.ls22{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.240533pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.207467pt;}
.ls5{letter-spacing:-0.133333pt;}
.ls18{letter-spacing:-0.107733pt;}
.ls11{letter-spacing:-0.092267pt;}
.lsd{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls17{letter-spacing:-0.066667pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.066667pt;}
.lse{letter-spacing:0.089600pt;}
.ls10{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.166400pt;}
.ls14{letter-spacing:0.188160pt;}
.ls16{letter-spacing:0.188267pt;}
.ls20{letter-spacing:0.271360pt;}
.ls21{letter-spacing:0.271467pt;}
.ls1f{letter-spacing:0.274133pt;}
.ls12{letter-spacing:0.277120pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.473600pt;}
.ls1a{letter-spacing:55.930027pt;}
.ls19{letter-spacing:59.130027pt;}
.ls1e{letter-spacing:62.330027pt;}
.wsf{word-spacing:-58.880000pt;}
.ws17{word-spacing:-13.227733pt;}
.ws18{word-spacing:-13.225067pt;}
.ws14{word-spacing:-13.020267pt;}
.wse{word-spacing:-12.974080pt;}
.ws6{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.861333pt;}
.ws16{word-spacing:-12.746133pt;}
.ws19{word-spacing:-12.585067pt;}
.ws1{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.100267pt;}
.ws0{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.874667pt;}
.ws11{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.578667pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.357867pt;}
.wsc{word-spacing:-9.008533pt;}
.ws3{word-spacing:-8.166400pt;}
.wsd{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.657067pt;}
.wsa{word-spacing:-7.040000pt;}
.ws9{word-spacing:-7.008000pt;}
.wsb{word-spacing:0.000000pt;}
._30{margin-left:-6.447360pt;}
._26{margin-left:-4.592640pt;}
._1a{margin-left:-3.630933pt;}
._c{margin-left:-2.723627pt;}
._1{margin-left:-1.461333pt;}
._2{width:0.970667pt;}
._4{width:2.685120pt;}
._8{width:4.462080pt;}
._a{width:5.693440pt;}
._9{width:6.746240pt;}
._12{width:7.794133pt;}
._11{width:8.871040pt;}
._14{width:9.972053pt;}
._17{width:11.363840pt;}
._1d{width:13.886720pt;}
._1e{width:14.953387pt;}
._1c{width:16.674773pt;}
._7{width:17.582720pt;}
._b{width:18.896213pt;}
._10{width:20.214613pt;}
._24{width:21.196800pt;}
._25{width:22.416640pt;}
._38{width:23.419093pt;}
._d{width:24.382080pt;}
._15{width:25.391360pt;}
._37{width:26.293333pt;}
._36{width:27.208107pt;}
._1f{width:28.203520pt;}
._1b{width:29.204480pt;}
._20{width:30.459733pt;}
._f{width:31.485653pt;}
._e{width:32.562560pt;}
._3a{width:33.638827pt;}
._2a{width:34.751573pt;}
._29{width:35.729493pt;}
._39{width:37.178880pt;}
._2b{width:38.095360pt;}
._16{width:39.802880pt;}
._13{width:41.327360pt;}
._2e{width:42.309973pt;}
._21{width:45.278720pt;}
._23{width:46.224640pt;}
._22{width:47.235413pt;}
._18{width:51.875627pt;}
._27{width:55.523840pt;}
._28{width:56.496213pt;}
._32{width:63.000320pt;}
._34{width:64.009600pt;}
._0{width:66.666667pt;}
._35{width:67.679147pt;}
._33{width:71.871360pt;}
._3c{width:88.614400pt;}
._3d{width:89.612800pt;}
._31{width:91.738240pt;}
._3b{width:96.622080pt;}
._3e{width:125.237760pt;}
._2c{width:126.533120pt;}
._2d{width:127.427413pt;}
._3{width:161.797333pt;}
._5{width:176.734080pt;}
._6{width:180.313600pt;}
._19{width:1014.193067pt;}
._2f{width:1102.509333pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y53{bottom:-18.720000pt;}
.y52{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.040000pt;}
.y9a{bottom:4.480000pt;}
.yb9{bottom:4.640000pt;}
.y93{bottom:10.880000pt;}
.y51{bottom:16.320000pt;}
.ya3{bottom:17.120000pt;}
.y9c{bottom:18.560000pt;}
.yae{bottom:18.586667pt;}
.y94{bottom:18.720000pt;}
.ya5{bottom:20.000000pt;}
.y99{bottom:20.160000pt;}
.yaa{bottom:20.186667pt;}
.y50{bottom:25.600000pt;}
.yb4{bottom:32.640000pt;}
.ya2{bottom:32.680000pt;}
.y9d{bottom:34.080000pt;}
.yad{bottom:34.106667pt;}
.yb2{bottom:34.240000pt;}
.yb0{bottom:34.266667pt;}
.ya0{bottom:34.280000pt;}
.y4f{bottom:35.040000pt;}
.ybb{bottom:35.080000pt;}
.y98{bottom:35.680000pt;}
.ya9{bottom:35.706667pt;}
.yb8{bottom:35.880000pt;}
.y4e{bottom:44.320000pt;}
.yb3{bottom:49.120000pt;}
.ya1{bottom:49.160000pt;}
.yaf{bottom:49.786667pt;}
.yb1{bottom:49.920000pt;}
.y9f{bottom:49.960000pt;}
.y8{bottom:50.240000pt;}
.y90{bottom:50.272000pt;}
.y9b{bottom:50.560000pt;}
.yac{bottom:50.586667pt;}
.yba{bottom:50.600000pt;}
.y97{bottom:51.360000pt;}
.ya8{bottom:51.386667pt;}
.yb7{bottom:51.560000pt;}
.y4d{bottom:52.000000pt;}
.y7{bottom:62.752000pt;}
.yab{bottom:66.106667pt;}
.ya7{bottom:67.066667pt;}
.y6{bottom:75.232000pt;}
.y4c{bottom:100.160000pt;}
.y8b{bottom:101.152000pt;}
.y3f{bottom:103.552000pt;}
.y11f{bottom:106.432000pt;}
.y140{bottom:107.072000pt;}
.yf0{bottom:110.432000pt;}
.yfc{bottom:114.432000pt;}
.y4b{bottom:117.440000pt;}
.y8a{bottom:118.432000pt;}
.y3e{bottom:120.832000pt;}
.y11e{bottom:123.552000pt;}
.y13f{bottom:126.752000pt;}
.yef{bottom:127.552000pt;}
.y4a{bottom:129.920000pt;}
.y120{bottom:131.392000pt;}
.yfb{bottom:131.552000pt;}
.y89{bottom:135.546667pt;}
.y3d{bottom:137.946667pt;}
.y11d{bottom:140.826667pt;}
.y49{bottom:142.560000pt;}
.yee{bottom:144.826667pt;}
.y13e{bottom:146.586667pt;}
.yfa{bottom:148.826667pt;}
.y8d{bottom:151.066667pt;}
.y88{bottom:152.826667pt;}
.y48{bottom:155.080000pt;}
.y3c{bottom:155.226667pt;}
.y11c{bottom:157.946667pt;}
.yed{bottom:161.946667pt;}
.ybc{bottom:165.946667pt;}
.y13d{bottom:166.426667pt;}
.y47{bottom:168.680000pt;}
.y87{bottom:169.946667pt;}
.y3b{bottom:172.346667pt;}
.y11b{bottom:175.226667pt;}
.yec{bottom:179.226667pt;}
.yb6{bottom:180.506667pt;}
.yf9{bottom:183.226667pt;}
.y46{bottom:185.960000pt;}
.y13c{bottom:186.106667pt;}
.y86{bottom:187.226667pt;}
.y3a{bottom:189.626667pt;}
.yeb{bottom:196.346667pt;}
.y45{bottom:198.440000pt;}
.yf8{bottom:200.346667pt;}
.y85{bottom:204.346667pt;}
.y13b{bottom:205.946667pt;}
.y39{bottom:206.746667pt;}
.y44{bottom:210.920000pt;}
.yea{bottom:213.626667pt;}
.yf7{bottom:217.626667pt;}
.y84{bottom:221.626667pt;}
.y43{bottom:223.400000pt;}
.y38{bottom:224.026667pt;}
.y13a{bottom:225.626667pt;}
.ye9{bottom:230.746667pt;}
.yf6{bottom:234.746667pt;}
.y42{bottom:236.040000pt;}
.y83{bottom:238.746667pt;}
.y37{bottom:241.146667pt;}
.yb5{bottom:245.346667pt;}
.y139{bottom:245.466667pt;}
.ye8{bottom:247.866667pt;}
.y41{bottom:248.840000pt;}
.yf5{bottom:251.866667pt;}
.y82{bottom:255.866667pt;}
.y36{bottom:258.426667pt;}
.ye7{bottom:265.146667pt;}
.y138{bottom:265.306667pt;}
.yf4{bottom:269.146667pt;}
.y81{bottom:273.146667pt;}
.y35{bottom:275.546667pt;}
.ye6{bottom:282.266667pt;}
.y137{bottom:284.986667pt;}
.yf3{bottom:286.266667pt;}
.y80{bottom:290.266667pt;}
.y34{bottom:292.826667pt;}
.ye5{bottom:299.586667pt;}
.yf2{bottom:303.586667pt;}
.y136{bottom:304.866667pt;}
.y7f{bottom:307.586667pt;}
.y33{bottom:309.986667pt;}
.ye4{bottom:316.706667pt;}
.yf1{bottom:320.706667pt;}
.y135{bottom:324.546667pt;}
.y7e{bottom:324.706667pt;}
.y32{bottom:327.266667pt;}
.y11a{bottom:333.986667pt;}
.ye3{bottom:337.986667pt;}
.y7d{bottom:341.986667pt;}
.y31{bottom:344.226667pt;}
.y134{bottom:344.386667pt;}
.y119{bottom:351.106667pt;}
.ye2{bottom:355.106667pt;}
.y7c{bottom:359.106667pt;}
.y30{bottom:359.746667pt;}
.y133{bottom:364.226667pt;}
.y118{bottom:368.386667pt;}
.ye1{bottom:372.386667pt;}
.ya6{bottom:373.186667pt;}
.y2f{bottom:375.426667pt;}
.y7b{bottom:376.386667pt;}
.y132{bottom:383.906667pt;}
.y117{bottom:385.506667pt;}
.ye0{bottom:389.506667pt;}
.y2e{bottom:391.106667pt;}
.y7a{bottom:393.506667pt;}
.y116{bottom:402.786667pt;}
.y131{bottom:403.746667pt;}
.y2d{bottom:406.626667pt;}
.ydf{bottom:406.786667pt;}
.y79{bottom:410.786667pt;}
.y115{bottom:419.906667pt;}
.y2c{bottom:422.306667pt;}
.y130{bottom:423.426667pt;}
.yde{bottom:423.906667pt;}
.y78{bottom:427.906667pt;}
.y114{bottom:437.186667pt;}
.y2b{bottom:437.986667pt;}
.ydd{bottom:441.186667pt;}
.y12f{bottom:443.266667pt;}
.y77{bottom:445.186667pt;}
.y2a{bottom:453.506667pt;}
.ya4{bottom:453.533333pt;}
.y113{bottom:454.306667pt;}
.ydc{bottom:458.306667pt;}
.y76{bottom:462.306667pt;}
.y12e{bottom:462.946667pt;}
.y29{bottom:469.186667pt;}
.y112{bottom:471.586667pt;}
.ydb{bottom:475.586667pt;}
.y75{bottom:479.586667pt;}
.y12d{bottom:482.786667pt;}
.y28{bottom:484.866667pt;}
.y111{bottom:488.706667pt;}
.yda{bottom:492.706667pt;}
.y74{bottom:496.706667pt;}
.y27{bottom:500.546667pt;}
.y12c{bottom:502.626667pt;}
.y110{bottom:505.826667pt;}
.yd9{bottom:509.826667pt;}
.y73{bottom:513.826667pt;}
.y26{bottom:516.066667pt;}
.y9e{bottom:518.173333pt;}
.y12b{bottom:522.306667pt;}
.y10f{bottom:523.106667pt;}
.yd8{bottom:527.106667pt;}
.y72{bottom:531.106667pt;}
.y25{bottom:531.746667pt;}
.y10e{bottom:540.253333pt;}
.y12a{bottom:542.173333pt;}
.yd7{bottom:544.253333pt;}
.y24{bottom:547.453333pt;}
.y71{bottom:548.253333pt;}
.y8c{bottom:557.373333pt;}
.y10d{bottom:557.533333pt;}
.yd6{bottom:561.533333pt;}
.y129{bottom:561.853333pt;}
.y23{bottom:564.893333pt;}
.y70{bottom:565.533333pt;}
.y10c{bottom:574.653333pt;}
.yd5{bottom:578.653333pt;}
.y22{bottom:580.573333pt;}
.y96{bottom:581.413333pt;}
.y128{bottom:581.693333pt;}
.y6f{bottom:582.653333pt;}
.y10b{bottom:591.933333pt;}
.yd4{bottom:595.933333pt;}
.y21{bottom:596.253333pt;}
.y6e{bottom:599.933333pt;}
.y127{bottom:601.533333pt;}
.y10a{bottom:609.053333pt;}
.y20{bottom:611.933333pt;}
.yd3{bottom:613.053333pt;}
.y6d{bottom:617.053333pt;}
.y126{bottom:621.213333pt;}
.y109{bottom:626.333333pt;}
.y1f{bottom:627.613333pt;}
.y40{bottom:628.413333pt;}
.yd2{bottom:630.333333pt;}
.y6c{bottom:634.333333pt;}
.y125{bottom:641.053333pt;}
.y1e{bottom:643.133333pt;}
.y108{bottom:643.453333pt;}
.y92{bottom:646.053333pt;}
.yd1{bottom:647.453333pt;}
.y6b{bottom:651.453333pt;}
.y1d{bottom:658.813333pt;}
.y107{bottom:660.733333pt;}
.yd0{bottom:664.733333pt;}
.y6a{bottom:668.733333pt;}
.y1c{bottom:674.493333pt;}
.y106{bottom:677.853333pt;}
.y124{bottom:680.573333pt;}
.ycf{bottom:681.853333pt;}
.y91{bottom:683.653333pt;}
.y69{bottom:685.853333pt;}
.y1b{bottom:690.013333pt;}
.y105{bottom:695.133333pt;}
.yce{bottom:699.133333pt;}
.y123{bottom:700.253333pt;}
.y68{bottom:703.133333pt;}
.y1a{bottom:705.693333pt;}
.y104{bottom:712.253333pt;}
.ycd{bottom:716.253333pt;}
.y122{bottom:717.693333pt;}
.y8f{bottom:718.400000pt;}
.y67{bottom:720.253333pt;}
.y19{bottom:721.373333pt;}
.y103{bottom:729.533333pt;}
.ycc{bottom:733.533333pt;}
.y8e{bottom:735.680000pt;}
.y18{bottom:736.893333pt;}
.y121{bottom:737.373333pt;}
.y66{bottom:737.533333pt;}
.y102{bottom:746.653333pt;}
.ycb{bottom:750.653333pt;}
.y17{bottom:752.573333pt;}
.y65{bottom:754.653333pt;}
.y14e{bottom:755.293333pt;}
.y101{bottom:763.773333pt;}
.yca{bottom:767.773333pt;}
.y16{bottom:768.253333pt;}
.y64{bottom:771.773333pt;}
.y14d{bottom:775.173333pt;}
.y100{bottom:781.093333pt;}
.y15{bottom:783.973333pt;}
.yc9{bottom:785.093333pt;}
.y63{bottom:789.093333pt;}
.y14c{bottom:795.013333pt;}
.yff{bottom:798.213333pt;}
.y14{bottom:799.493333pt;}
.yc8{bottom:802.213333pt;}
.y62{bottom:806.213333pt;}
.y14b{bottom:814.693333pt;}
.y13{bottom:815.173333pt;}
.yfe{bottom:815.493333pt;}
.yc7{bottom:819.493333pt;}
.y61{bottom:823.493333pt;}
.y12{bottom:830.853333pt;}
.yfd{bottom:832.613333pt;}
.y14a{bottom:834.533333pt;}
.yc6{bottom:836.613333pt;}
.y60{bottom:840.613333pt;}
.y11{bottom:846.373333pt;}
.yc5{bottom:853.893333pt;}
.y149{bottom:854.213333pt;}
.y5f{bottom:857.893333pt;}
.y10{bottom:862.053333pt;}
.yc4{bottom:871.013333pt;}
.y148{bottom:874.053333pt;}
.y5e{bottom:875.013333pt;}
.yf{bottom:877.733333pt;}
.yc3{bottom:888.293333pt;}
.y5d{bottom:892.293333pt;}
.ye{bottom:893.573333pt;}
.y147{bottom:893.733333pt;}
.yc2{bottom:905.413333pt;}
.y5c{bottom:909.413333pt;}
.y146{bottom:913.573333pt;}
.yd{bottom:916.133333pt;}
.yc1{bottom:922.693333pt;}
.y5b{bottom:926.693333pt;}
.yc{bottom:931.173333pt;}
.y145{bottom:933.413333pt;}
.yc0{bottom:939.813333pt;}
.y5a{bottom:943.813333pt;}
.yb{bottom:948.293333pt;}
.y144{bottom:953.093333pt;}
.ybf{bottom:957.093333pt;}
.y59{bottom:961.093333pt;}
.ya{bottom:964.773333pt;}
.y143{bottom:972.933333pt;}
.ybe{bottom:974.213333pt;}
.y58{bottom:978.213333pt;}
.y9{bottom:985.093333pt;}
.ybd{bottom:991.493333pt;}
.y142{bottom:992.613333pt;}
.y57{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y141{bottom:1012.480000pt;}
.y56{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y55{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y54{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.hf{height:31.200000pt;}
.h7{height:31.535625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.h5{height:58.522500pt;}
.h13{height:62.560000pt;}
.h11{height:62.592000pt;}
.h10{height:64.000000pt;}
.h14{height:64.032000pt;}
.h12{height:79.552000pt;}
.h9{height:260.026667pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:33.632000pt;}
.w8{width:92.160000pt;}
.wa{width:111.680000pt;}
.wb{width:124.992000pt;}
.wc{width:160.826667pt;}
.wd{width:170.400000pt;}
.w3{width:184.986667pt;}
.w9{width:231.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w6{width:1122.559983pt;}
.w4{width:1122.560000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x20{left:11.680000pt;}
.x21{left:15.680000pt;}
.x14{left:20.794667pt;}
.x17{left:21.920000pt;}
.x13{left:23.194667pt;}
.x1c{left:26.880000pt;}
.x1a{left:29.306667pt;}
.x18{left:32.960000pt;}
.x1d{left:34.560000pt;}
.x1f{left:38.400000pt;}
.x1{left:96.031988pt;}
.xa{left:100.032000pt;}
.x2{left:103.231988pt;}
.x22{left:114.911988pt;}
.xb{left:119.994667pt;}
.x3{left:123.391988pt;}
.x25{left:124.511988pt;}
.x12{left:130.912000pt;}
.x9{left:144.026655pt;}
.x24{left:152.826655pt;}
.x23{left:162.266655pt;}
.x6{left:181.946655pt;}
.x7{left:197.946655pt;}
.xd{left:202.106655pt;}
.x15{left:223.706667pt;}
.x8{left:298.146655pt;}
.x4{left:316.066655pt;}
.x10{left:317.146650pt;}
.x5{left:396.866655pt;}
.xc{left:419.933322pt;}
.x16{left:456.066667pt;}
.x19{left:568.546667pt;}
.xe{left:620.133322pt;}
.x1b{left:694.173333pt;}
.xf{left:748.733317pt;}
.x1e{left:855.653333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  