
    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_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_8805ffd51e1b3c43df7bd28d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b05f5c2201c8fc0ebb48da27.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_95a263eaf8488038539a4bdb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_769b74745320d9cf9cda0518.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_326d7ec791e5614c2b6a6d8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.863770;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_7ea09edec0310bcf6be0aff8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69b86154a3ed86613a8abd2b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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;}
.m1{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:74.880000px;}
.ls7{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.119520px;}
.ls16{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.504000px;}
.lse{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.ls21{letter-spacing:1.080000px;}
.ls11{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.880000px;}
.lsd{letter-spacing:3.600000px;}
.ls15{letter-spacing:6.480000px;}
.ls1{letter-spacing:12.240000px;}
.ls9{letter-spacing:197.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;}
}
.ws0{word-spacing:-32.940000px;}
.ws6{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.064000px;}
.ws17{word-spacing:-16.020000px;}
.ws15{word-spacing:-15.406800px;}
.wsd{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.226440px;}
.ws16{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.680200px;}
.wsb{word-spacing:-11.544341px;}
.wse{word-spacing:-10.892963px;}
.wsf{word-spacing:-10.890449px;}
.ws14{word-spacing:-9.711360px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:13.891114px;}
.wsc{word-spacing:21.687188px;}
._4{margin-left:-14.856000px;}
._5{margin-left:-12.768000px;}
._3{margin-left:-11.760000px;}
._8{margin-left:-10.680000px;}
._7{margin-left:-8.846640px;}
._2{margin-left:-6.792000px;}
._6{margin-left:-4.596000px;}
._18{margin-left:-2.192880px;}
._1{margin-left:-1.095120px;}
._0{width:1.313760px;}
._10{width:2.492640px;}
._d{width:4.224000px;}
._9{width:5.256000px;}
._a{width:6.678240px;}
._11{width:8.568000px;}
._17{width:10.005360px;}
._b{width:11.448000px;}
._c{width:12.456000px;}
._f{width:13.656000px;}
._e{width:14.688000px;}
._12{width:15.984000px;}
._23{width:16.992000px;}
._1d{width:19.020480px;}
._13{width:20.136000px;}
._14{width:21.168000px;}
._15{width:22.860000px;}
._1b{width:24.408000px;}
._1c{width:25.704000px;}
._1f{width:27.360000px;}
._20{width:28.383120px;}
._24{width:29.736000px;}
._19{width:31.104000px;}
._26{width:32.378142px;}
._2a{width:33.624000px;}
._21{width:35.640000px;}
._22{width:36.966240px;}
._25{width:39.838761px;}
._1e{width:43.848000px;}
._27{width:48.133558px;}
._28{width:64.538267px;}
._1a{width:179.976000px;}
._16{width:197.976000px;}
._29{width:742.374720px;}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(91,155,213);}
.fse{font-size:12.240000px;}
.fsc{font-size:38.880000px;}
.fsb{font-size:48.187829px;}
.fsa{font-size:48.198951px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:48.240534px;}
.fs7{font-size:51.081156px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.fs2{font-size:540.144000px;}
.y0{bottom:0.000000px;}
.ye7{bottom:5.036170px;}
.y134{bottom:6.293187px;}
.y12d{bottom:6.294639px;}
.y149{bottom:11.880000px;}
.y115{bottom:12.045000px;}
.y11d{bottom:12.240000px;}
.y116{bottom:12.405000px;}
.y118{bottom:12.420000px;}
.y14e{bottom:12.450000px;}
.ydb{bottom:19.836370px;}
.ye4{bottom:20.000641px;}
.y133{bottom:21.972212px;}
.y12c{bottom:23.056364px;}
.ye6{bottom:25.720441px;}
.yd4{bottom:33.876525px;}
.ydd{bottom:34.929289px;}
.y132{bottom:37.435470px;}
.y151{bottom:38.160000px;}
.y120{bottom:38.190000px;}
.y11a{bottom:38.340000px;}
.y12b{bottom:39.961966px;}
.y131{bottom:53.114495px;}
.y12a{bottom:56.723690px;}
.y130{bottom:68.577754px;}
.yd5{bottom:69.732922px;}
.yde{bottom:69.858727px;}
.y17{bottom:72.000000px;}
.y129{bottom:73.449446px;}
.y12f{bottom:84.256779px;}
.y128{bottom:90.175201px;}
.ydf{bottom:104.932056px;}
.yd6{bottom:105.733321px;}
.y16{bottom:105.840000px;}
.yfb{bottom:127.440000px;}
.y15c{bottom:128.880000px;}
.y15{bottom:129.780000px;}
.y6d{bottom:137.736000px;}
.y112{bottom:137.916000px;}
.ye0{bottom:139.861495px;}
.yd7{bottom:141.769720px;}
.yba{bottom:141.876000px;}
.y180{bottom:142.416000px;}
.y16c{bottom:146.916000px;}
.y9c{bottom:154.830000px;}
.yfa{bottom:158.610000px;}
.y19e{bottom:159.150000px;}
.y4f{bottom:163.470000px;}
.yb3{bottom:163.830000px;}
.y17f{bottom:168.330000px;}
.y6c{bottom:168.870000px;}
.y147{bottom:171.750000px;}
.yb9{bottom:172.830000px;}
.ye1{bottom:174.936323px;}
.y137{bottom:176.250000px;}
.yd8{bottom:177.767119px;}
.y8c{bottom:177.870000px;}
.y15e{bottom:181.830000px;}
.y19d{bottom:185.070000px;}
.y9b{bottom:185.970000px;}
.y14{bottom:187.230000px;}
.yb2{bottom:194.970000px;}
.yf9{bottom:198.570000px;}
.y6b{bottom:199.830000px;}
.y146{bottom:202.710000px;}
.y17e{bottom:203.250000px;}
.y4e{bottom:203.430000px;}
.yb8{bottom:203.970000px;}
.y8b{bottom:208.830000px;}
.y136{bottom:209.190000px;}
.ye2{bottom:209.859766px;}
.y15d{bottom:212.970000px;}
.yd9{bottom:213.812518px;}
.y13{bottom:214.770000px;}
.y33{bottom:216.210000px;}
.y9a{bottom:216.930000px;}
.y19c{bottom:219.990000px;}
.yb1{bottom:225.930000px;}
.y17d{bottom:229.170000px;}
.yf8{bottom:229.710000px;}
.y6a{bottom:230.970000px;}
.y145{bottom:233.850000px;}
.yc4{bottom:234.930000px;}
.y135{bottom:237.090000px;}
.y8a{bottom:239.970000px;}
.y12{bottom:241.590000px;}
.y4d{bottom:243.570000px;}
.yb7{bottom:243.930000px;}
.ye3{bottom:244.933095px;}
.y19b{bottom:245.730000px;}
.y32{bottom:247.170000px;}
.y99{bottom:248.070000px;}
.yda{bottom:249.812917px;}
.y10a{bottom:252.930000px;}
.ycc{bottom:256.710000px;}
.yb0{bottom:257.070000px;}
.yf7{bottom:260.670000px;}
.y69{bottom:261.930000px;}
.y17c{bottom:263.910000px;}
.y144{bottom:264.810000px;}
.y11{bottom:265.710000px;}
.yc3{bottom:266.070000px;}
.y127{bottom:268.841996px;}
.y89{bottom:270.930000px;}
.y12e{bottom:274.398157px;}
.y4c{bottom:274.530000px;}
.y165{bottom:275.070000px;}
.y31{bottom:278.310000px;}
.y98{bottom:279.030000px;}
.y19a{bottom:280.650000px;}
.yb6{bottom:284.070000px;}
.yaf{bottom:288.030000px;}
.y17b{bottom:289.830000px;}
.y10{bottom:290.010000px;}
.yf6{bottom:291.810000px;}
.y68{bottom:293.070000px;}
.y143{bottom:295.950000px;}
.ycb{bottom:297.030000px;}
.y88{bottom:302.070000px;}
.yc2{bottom:306.030000px;}
.y199{bottom:306.570000px;}
.y30{bottom:309.270000px;}
.y97{bottom:309.990000px;}
.yf{bottom:314.130000px;}
.y4b{bottom:314.670000px;}
.y109{bottom:315.030000px;}
.yae{bottom:318.990000px;}
.yf5{bottom:322.770000px;}
.y67{bottom:324.030000px;}
.y17a{bottom:324.750000px;}
.y142{bottom:326.910000px;}
.y87{bottom:333.030000px;}
.yc1{bottom:336.990000px;}
.y159{bottom:337.170000px;}
.ye{bottom:338.250000px;}
.y2f{bottom:340.410000px;}
.y198{bottom:341.490000px;}
.y16b{bottom:342.030000px;}
.y4a{bottom:345.630000px;}
.y108{bottom:346.170000px;}
.y96{bottom:350.130000px;}
.y179{bottom:350.670000px;}
.yf4{bottom:353.910000px;}
.y66{bottom:354.990000px;}
.y111{bottom:355.170000px;}
.y141{bottom:358.050000px;}
.yd{bottom:362.370000px;}
.y86{bottom:363.990000px;}
.y160{bottom:364.170000px;}
.y197{bottom:367.275000px;}
.yc0{bottom:368.175000px;}
.y2e{bottom:371.415000px;}
.y16a{bottom:373.215000px;}
.y49{bottom:376.815000px;}
.y107{bottom:377.175000px;}
.y95{bottom:381.135000px;}
.y178{bottom:385.455000px;}
.y65{bottom:386.175000px;}
.yc{bottom:386.535000px;}
.y140{bottom:389.055000px;}
.yf3{bottom:393.915000px;}
.yd2{bottom:395.175000px;}
.yca{bottom:399.135000px;}
.y164{bottom:399.315000px;}
.y2d{bottom:402.375000px;}
.y85{bottom:404.175000px;}
.y48{bottom:407.775000px;}
.ybf{bottom:408.135000px;}
.y196{bottom:409.035000px;}
.yb{bottom:410.655000px;}
.y177{bottom:411.375000px;}
.y94{bottom:412.275000px;}
.y64{bottom:417.135000px;}
.y106{bottom:417.315000px;}
.yd1{bottom:421.275000px;}
.y126{bottom:423.615000px;}
.yf2{bottom:424.875000px;}
.y71{bottom:426.135000px;}
.y15b{bottom:426.315000px;}
.y13f{bottom:429.195000px;}
.yc9{bottom:430.275000px;}
.y2c{bottom:433.515000px;}
.ya{bottom:434.775000px;}
.y84{bottom:435.135000px;}
.y169{bottom:435.315000px;}
.y47{bottom:438.915000px;}
.ybe{bottom:439.275000px;}
.y1ae{bottom:442.875000px;}
.y176{bottom:446.295000px;}
.y63{bottom:448.275000px;}
.y125{bottom:450.255000px;}
.y93{bottom:451.875000px;}
.yad{bottom:452.235000px;}
.yf1{bottom:456.015000px;}
.y70{bottom:457.275000px;}
.y9{bottom:459.075000px;}
.y13e{bottom:460.155000px;}
.y2b{bottom:464.475000px;}
.y83{bottom:466.275000px;}
.y195{bottom:469.695000px;}
.y46{bottom:469.875000px;}
.ybd{bottom:470.235000px;}
.y163{bottom:470.415000px;}
.y124{bottom:476.715000px;}
.y62{bottom:479.235000px;}
.y105{bottom:479.415000px;}
.y1ad{bottom:480.855000px;}
.y175{bottom:483.015000px;}
.y8{bottom:483.195000px;}
.yd0{bottom:483.375000px;}
.yf0{bottom:486.975000px;}
.y6f{bottom:488.235000px;}
.y110{bottom:488.415000px;}
.y13d{bottom:491.295000px;}
.y92{bottom:492.015000px;}
.yac{bottom:492.375000px;}
.y194{bottom:495.615000px;}
.y2a{bottom:495.975000px;}
.y82{bottom:497.235000px;}
.y168{bottom:497.415000px;}
.y45{bottom:501.015000px;}
.yc8{bottom:501.375000px;}
.y123{bottom:503.355000px;}
.y1ac{bottom:506.775000px;}
.y7{bottom:507.315000px;}
.yb5{bottom:510.375000px;}
.yef{bottom:518.115000px;}
.y61{bottom:519.375000px;}
.ycf{bottom:522.975000px;}
.y174{bottom:523.515000px;}
.y29{bottom:526.575000px;}
.y81{bottom:528.375000px;}
.y122{bottom:529.995000px;}
.y193{bottom:530.535000px;}
.y13c{bottom:530.895000px;}
.y6{bottom:531.435000px;}
.y91{bottom:532.335000px;}
.y44{bottom:540.975000px;}
.y162{bottom:541.155000px;}
.yb4{bottom:541.335000px;}
.y104{bottom:541.515000px;}
.y1ab{bottom:541.695000px;}
.yee{bottom:549.075000px;}
.y60{bottom:550.335000px;}
.y5{bottom:550.515000px;}
.y192{bottom:556.275000px;}
.y121{bottom:556.635000px;}
.y28{bottom:558.075000px;}
.y80{bottom:559.335000px;}
.y167{bottom:559.515000px;}
.yab{bottom:563.475000px;}
.y1aa{bottom:567.435000px;}
.y90{bottom:572.475000px;}
.y13b{bottom:572.835000px;}
.yed{bottom:580.215000px;}
.y43{bottom:581.115000px;}
.y5f{bottom:581.475000px;}
.y191{bottom:582.195000px;}
.y11f{bottom:583.275000px;}
.y27{bottom:588.675000px;}
.y157{bottom:589.755000px;}
.y7f{bottom:590.475000px;}
.yaa{bottom:594.435000px;}
.y173{bottom:594.615000px;}
.y8f{bottom:603.465000px;}
.y103{bottom:603.645000px;}
.y1a9{bottom:609.045000px;}
.yec{bottom:611.205000px;}
.y42{bottom:612.105000px;}
.y5e{bottom:612.465000px;}
.y10f{bottom:612.645000px;}
.y156{bottom:616.425000px;}
.y190{bottom:617.145000px;}
.y26{bottom:620.205000px;}
.y7e{bottom:621.465000px;}
.y161{bottom:621.645000px;}
.ya9{bottom:625.605000px;}
.y8e{bottom:634.605000px;}
.y11e{bottom:635.865000px;}
.yeb{bottom:642.345000px;}
.y18f{bottom:642.885000px;}
.y155{bottom:643.080000px;}
.y5d{bottom:643.605000px;}
.y25{bottom:650.805000px;}
.y41{bottom:652.245000px;}
.y7d{bottom:652.605000px;}
.ya8{bottom:656.565000px;}
.y172{bottom:656.745000px;}
.y11c{bottom:662.505000px;}
.ybc{bottom:665.565000px;}
.y102{bottom:665.745000px;}
.y154{bottom:669.705000px;}
.y5c{bottom:674.565000px;}
.y10e{bottom:674.745000px;}
.y1a8{bottom:676.545000px;}
.y18e{bottom:677.805000px;}
.y24{bottom:682.305000px;}
.y40{bottom:683.205000px;}
.y7c{bottom:683.565000px;}
.y15f{bottom:683.745000px;}
.ya7{bottom:687.705000px;}
.y11b{bottom:688.965000px;}
.y153{bottom:696.345000px;}
.ybb{bottom:696.705000px;}
.y18d{bottom:703.725000px;}
.y5b{bottom:705.705000px;}
.y23{bottom:712.905000px;}
.y3f{bottom:714.345000px;}
.y7b{bottom:714.705000px;}
.y119{bottom:715.605000px;}
.y1a7{bottom:718.305000px;}
.ya6{bottom:718.665000px;}
.y152{bottom:723.000000px;}
.yce{bottom:727.665000px;}
.y171{bottom:727.845000px;}
.yea{bottom:728.385000px;}
.y8d{bottom:736.665000px;}
.y101{bottom:736.845000px;}
.y18c{bottom:738.465000px;}
.y22{bottom:744.045000px;}
.y1a6{bottom:744.225000px;}
.y3e{bottom:745.305000px;}
.y5a{bottom:745.665000px;}
.y15a{bottom:745.845000px;}
.y150{bottom:749.625000px;}
.ya5{bottom:749.805000px;}
.y7a{bottom:754.665000px;}
.y170{bottom:758.805000px;}
.ye9{bottom:761.505000px;}
.y18b{bottom:764.385000px;}
.yc7{bottom:767.805000px;}
.y117{bottom:768.165000px;}
.y21{bottom:775.005000px;}
.y3d{bottom:776.445000px;}
.y59{bottom:776.805000px;}
.y1a5{bottom:778.965000px;}
.ye8{bottom:780.225000px;}
.ya4{bottom:780.765000px;}
.y79{bottom:785.805000px;}
.y16f{bottom:789.945000px;}
.y18a{bottom:790.305000px;}
.y114{bottom:794.820000px;}
.yc6{bottom:798.765000px;}
.y158{bottom:798.945000px;}
.yd3{bottom:799.829914px;}
.ydc{bottom:799.851265px;}
.y14f{bottom:802.005000px;}
.y1a4{bottom:804.885000px;}
.y20{bottom:806.145000px;}
.y3c{bottom:807.405000px;}
.y58{bottom:807.765000px;}
.y100{bottom:807.945000px;}
.y4{bottom:811.185000px;}
.y78{bottom:816.765000px;}
.y166{bottom:816.945000px;}
.ya3{bottom:820.905000px;}
.y189{bottom:825.225000px;}
.y14d{bottom:828.660000px;}
.yc5{bottom:829.905000px;}
.y1f{bottom:837.510000px;}
.y113{bottom:838.230000px;}
.y3b{bottom:838.590000px;}
.y57{bottom:838.950000px;}
.y1a3{bottom:839.850000px;}
.y77{bottom:847.950000px;}
.y3{bottom:849.390000px;}
.y188{bottom:851.010000px;}
.ya2{bottom:851.910000px;}
.y16e{bottom:852.090000px;}
.y14c{bottom:855.330000px;}
.ycd{bottom:860.910000px;}
.y1a2{bottom:865.590000px;}
.y1e{bottom:868.290000px;}
.y3a{bottom:869.550000px;}
.y56{bottom:869.910000px;}
.y10d{bottom:870.090000px;}
.y76{bottom:878.910000px;}
.yff{bottom:879.090000px;}
.y14b{bottom:881.970000px;}
.ya1{bottom:883.050000px;}
.y187{bottom:885.930000px;}
.y2{bottom:887.190000px;}
.y1d{bottom:899.610000px;}
.y39{bottom:900.690000px;}
.y55{bottom:901.050000px;}
.y1a1{bottom:907.350000px;}
.y75{bottom:910.050000px;}
.y186{bottom:911.850000px;}
.ya0{bottom:914.010000px;}
.y16d{bottom:923.190000px;}
.y1c{bottom:930.390000px;}
.y38{bottom:931.650000px;}
.y54{bottom:932.010000px;}
.y10c{bottom:932.190000px;}
.y1a0{bottom:933.090000px;}
.y14a{bottom:934.530000px;}
.y74{bottom:941.010000px;}
.yfe{bottom:941.190000px;}
.y9f{bottom:945.150000px;}
.y185{bottom:946.770000px;}
.y1{bottom:950.550000px;}
.y148{bottom:961.170000px;}
.y1b{bottom:961.710000px;}
.y53{bottom:963.150000px;}
.y37{bottom:971.430000px;}
.y73{bottom:972.150000px;}
.y19f{bottom:974.850000px;}
.y184{bottom:981.510000px;}
.y9e{bottom:985.110000px;}
.y1a{bottom:992.850000px;}
.y52{bottom:994.110000px;}
.y10b{bottom:994.290000px;}
.y13a{bottom:1000.590000px;}
.y72{bottom:1003.110000px;}
.yfd{bottom:1003.290000px;}
.y183{bottom:1007.430000px;}
.ye5{bottom:1007.552672px;}
.y36{bottom:1013.910000px;}
.y9d{bottom:1024.890000px;}
.y51{bottom:1025.250000px;}
.y19{bottom:1029.030000px;}
.y139{bottom:1033.530000px;}
.y6e{bottom:1034.250000px;}
.y35{bottom:1038.030000px;}
.y182{bottom:1042.350000px;}
.y34{bottom:1062.150000px;}
.y50{bottom:1064.850000px;}
.y18{bottom:1065.210000px;}
.yfc{bottom:1065.390000px;}
.y138{bottom:1065.570000px;}
.y181{bottom:1068.270000px;}
.h19{height:25.725000px;}
.h17{height:25.740000px;}
.h13{height:25.905000px;}
.h15{height:25.920000px;}
.h20{height:25.941000px;}
.h22{height:25.950000px;}
.h1d{height:33.035016px;}
.h1b{height:33.042640px;}
.hc{height:33.071148px;}
.he{height:35.018527px;}
.hf{height:39.929636px;}
.h1e{height:40.968281px;}
.h1{height:45.184219px;}
.h21{height:51.660000px;}
.h18{height:51.690000px;}
.h1f{height:51.825000px;}
.h16{height:51.840000px;}
.h24{height:53.573906px;}
.h14{height:58.621992px;}
.h23{height:58.651172px;}
.h25{height:59.038594px;}
.h10{height:60.226875px;}
.ha{height:64.546875px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.h12{height:74.704922px;}
.h4{height:82.676953px;}
.h9{height:84.898125px;}
.h5{height:93.983203px;}
.h1c{height:96.123931px;}
.h1a{height:102.081061px;}
.h2{height:132.789375px;}
.h11{height:135.106875px;}
.hd{height:272.133061px;}
.hb{height:276.123058px;}
.h3{height:530.121797px;}
.h27{height:894.000000px;}
.h0{height:1188.000000px;}
.h26{height:1263.000000px;}
.wa{width:79.579840px;}
.w3{width:81.739053px;}
.w9{width:84.049238px;}
.w8{width:114.690000px;}
.w7{width:127.821000px;}
.w6{width:129.996000px;}
.w5{width:139.320000px;}
.w4{width:167.235000px;}
.w1{width:304.921271px;}
.w2{width:329.871606px;}
.wb{width:894.000000px;}
.w0{width:918.000000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x20{left:8.091000px;}
.x19{left:15.116866px;}
.x26{left:16.196711px;}
.x16{left:17.816306px;}
.x13{left:19.080080px;}
.x15{left:27.534291px;}
.x14{left:36.576152px;}
.x17{left:47.006254px;}
.x9{left:106.416000px;}
.x12{left:112.200024px;}
.x2{left:114.876000px;}
.x1f{left:119.565000px;}
.xc{left:124.776000px;}
.x1a{left:127.656000px;}
.xa{left:133.236000px;}
.x28{left:157.530000px;}
.x10{left:160.410000px;}
.x3{left:167.970000px;}
.x1e{left:178.590000px;}
.x1c{left:181.650000px;}
.x6{left:280.335000px;}
.x7{left:283.395000px;}
.x21{left:286.815000px;}
.x24{left:320.562721px;}
.xd{left:348.555000px;}
.x4{left:399.495000px;}
.xe{left:423.615000px;}
.xb{left:426.495000px;}
.xf{left:428.475000px;}
.x1{left:459.105000px;}
.x1b{left:486.105000px;}
.x22{left:556.140000px;}
.x5{left:571.785000px;}
.x25{left:649.303486px;}
.x18{left:669.818813px;}
.x23{left:683.970000px;}
.x27{left:741.030000px;}
.x1d{left:773.790000px;}
.x11{left:795.060000px;}
.x8{left:803.520000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:66.560000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.106240pt;}
.ls16{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls1{letter-spacing:10.880000pt;}
.ls9{letter-spacing:175.978667pt;}
.ws0{word-spacing:-29.280000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.168000pt;}
.ws17{word-spacing:-14.240000pt;}
.ws15{word-spacing:-13.694933pt;}
.wsd{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws16{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.049067pt;}
.wsb{word-spacing:-10.261637pt;}
.wse{word-spacing:-9.682634pt;}
.wsf{word-spacing:-9.680399pt;}
.ws14{word-spacing:-8.632320pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:12.347657pt;}
.wsc{word-spacing:19.277501pt;}
._4{margin-left:-13.205333pt;}
._5{margin-left:-11.349333pt;}
._3{margin-left:-10.453333pt;}
._8{margin-left:-9.493333pt;}
._7{margin-left:-7.863680pt;}
._2{margin-left:-6.037333pt;}
._6{margin-left:-4.085333pt;}
._18{margin-left:-1.949227pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.167787pt;}
._10{width:2.215680pt;}
._d{width:3.754667pt;}
._9{width:4.672000pt;}
._a{width:5.936213pt;}
._11{width:7.616000pt;}
._17{width:8.893653pt;}
._b{width:10.176000pt;}
._c{width:11.072000pt;}
._f{width:12.138667pt;}
._e{width:13.056000pt;}
._12{width:14.208000pt;}
._23{width:15.104000pt;}
._1d{width:16.907093pt;}
._13{width:17.898667pt;}
._14{width:18.816000pt;}
._15{width:20.320000pt;}
._1b{width:21.696000pt;}
._1c{width:22.848000pt;}
._1f{width:24.320000pt;}
._20{width:25.229440pt;}
._24{width:26.432000pt;}
._19{width:27.648000pt;}
._26{width:28.780571pt;}
._2a{width:29.888000pt;}
._21{width:31.680000pt;}
._22{width:32.858880pt;}
._25{width:35.412232pt;}
._1e{width:38.976000pt;}
._27{width:42.785385pt;}
._28{width:57.367348pt;}
._1a{width:159.978667pt;}
._16{width:175.978667pt;}
._29{width:659.888640pt;}
.fse{font-size:10.880000pt;}
.fsc{font-size:34.560000pt;}
.fsb{font-size:42.833626pt;}
.fsa{font-size:42.843512pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:42.880475pt;}
.fs7{font-size:45.405472pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.fs2{font-size:480.128000pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:4.476596pt;}
.y134{bottom:5.593944pt;}
.y12d{bottom:5.595235pt;}
.y149{bottom:10.560000pt;}
.y115{bottom:10.706667pt;}
.y11d{bottom:10.880000pt;}
.y116{bottom:11.026667pt;}
.y118{bottom:11.040000pt;}
.y14e{bottom:11.066667pt;}
.ydb{bottom:17.632329pt;}
.ye4{bottom:17.778347pt;}
.y133{bottom:19.530855pt;}
.y12c{bottom:20.494545pt;}
.ye6{bottom:22.862614pt;}
.yd4{bottom:30.112467pt;}
.ydd{bottom:31.048257pt;}
.y132{bottom:33.275974pt;}
.y151{bottom:33.920000pt;}
.y120{bottom:33.946667pt;}
.y11a{bottom:34.080000pt;}
.y12b{bottom:35.521747pt;}
.y131{bottom:47.212885pt;}
.y12a{bottom:50.421058pt;}
.y130{bottom:60.958003pt;}
.yd5{bottom:61.984820pt;}
.yde{bottom:62.096646pt;}
.y17{bottom:64.000000pt;}
.y129{bottom:65.288396pt;}
.y12f{bottom:74.894915pt;}
.y128{bottom:80.155734pt;}
.ydf{bottom:93.272939pt;}
.yd6{bottom:93.985174pt;}
.y16{bottom:94.080000pt;}
.yfb{bottom:113.280000pt;}
.y15c{bottom:114.560000pt;}
.y15{bottom:115.360000pt;}
.y6d{bottom:122.432000pt;}
.y112{bottom:122.592000pt;}
.ye0{bottom:124.321329pt;}
.yd7{bottom:126.017529pt;}
.yba{bottom:126.112000pt;}
.y180{bottom:126.592000pt;}
.y16c{bottom:130.592000pt;}
.y9c{bottom:137.626667pt;}
.yfa{bottom:140.986667pt;}
.y19e{bottom:141.466667pt;}
.y4f{bottom:145.306667pt;}
.yb3{bottom:145.626667pt;}
.y17f{bottom:149.626667pt;}
.y6c{bottom:150.106667pt;}
.y147{bottom:152.666667pt;}
.yb9{bottom:153.626667pt;}
.ye1{bottom:155.498953pt;}
.y137{bottom:156.666667pt;}
.yd8{bottom:158.015217pt;}
.y8c{bottom:158.106667pt;}
.y15e{bottom:161.626667pt;}
.y19d{bottom:164.506667pt;}
.y9b{bottom:165.306667pt;}
.y14{bottom:166.426667pt;}
.yb2{bottom:173.306667pt;}
.yf9{bottom:176.506667pt;}
.y6b{bottom:177.626667pt;}
.y146{bottom:180.186667pt;}
.y17e{bottom:180.666667pt;}
.y4e{bottom:180.826667pt;}
.yb8{bottom:181.306667pt;}
.y8b{bottom:185.626667pt;}
.y136{bottom:185.946667pt;}
.ye2{bottom:186.542014pt;}
.y15d{bottom:189.306667pt;}
.yd9{bottom:190.055572pt;}
.y13{bottom:190.906667pt;}
.y33{bottom:192.186667pt;}
.y9a{bottom:192.826667pt;}
.y19c{bottom:195.546667pt;}
.yb1{bottom:200.826667pt;}
.y17d{bottom:203.706667pt;}
.yf8{bottom:204.186667pt;}
.y6a{bottom:205.306667pt;}
.y145{bottom:207.866667pt;}
.yc4{bottom:208.826667pt;}
.y135{bottom:210.746667pt;}
.y8a{bottom:213.306667pt;}
.y12{bottom:214.746667pt;}
.y4d{bottom:216.506667pt;}
.yb7{bottom:216.826667pt;}
.ye3{bottom:217.718306pt;}
.y19b{bottom:218.426667pt;}
.y32{bottom:219.706667pt;}
.y99{bottom:220.506667pt;}
.yda{bottom:222.055926pt;}
.y10a{bottom:224.826667pt;}
.ycc{bottom:228.186667pt;}
.yb0{bottom:228.506667pt;}
.yf7{bottom:231.706667pt;}
.y69{bottom:232.826667pt;}
.y17c{bottom:234.586667pt;}
.y144{bottom:235.386667pt;}
.y11{bottom:236.186667pt;}
.yc3{bottom:236.506667pt;}
.y127{bottom:238.970663pt;}
.y89{bottom:240.826667pt;}
.y12e{bottom:243.909473pt;}
.y4c{bottom:244.026667pt;}
.y165{bottom:244.506667pt;}
.y31{bottom:247.386667pt;}
.y98{bottom:248.026667pt;}
.y19a{bottom:249.466667pt;}
.yb6{bottom:252.506667pt;}
.yaf{bottom:256.026667pt;}
.y17b{bottom:257.626667pt;}
.y10{bottom:257.786667pt;}
.yf6{bottom:259.386667pt;}
.y68{bottom:260.506667pt;}
.y143{bottom:263.066667pt;}
.ycb{bottom:264.026667pt;}
.y88{bottom:268.506667pt;}
.yc2{bottom:272.026667pt;}
.y199{bottom:272.506667pt;}
.y30{bottom:274.906667pt;}
.y97{bottom:275.546667pt;}
.yf{bottom:279.226667pt;}
.y4b{bottom:279.706667pt;}
.y109{bottom:280.026667pt;}
.yae{bottom:283.546667pt;}
.yf5{bottom:286.906667pt;}
.y67{bottom:288.026667pt;}
.y17a{bottom:288.666667pt;}
.y142{bottom:290.586667pt;}
.y87{bottom:296.026667pt;}
.yc1{bottom:299.546667pt;}
.y159{bottom:299.706667pt;}
.ye{bottom:300.666667pt;}
.y2f{bottom:302.586667pt;}
.y198{bottom:303.546667pt;}
.y16b{bottom:304.026667pt;}
.y4a{bottom:307.226667pt;}
.y108{bottom:307.706667pt;}
.y96{bottom:311.226667pt;}
.y179{bottom:311.706667pt;}
.yf4{bottom:314.586667pt;}
.y66{bottom:315.546667pt;}
.y111{bottom:315.706667pt;}
.y141{bottom:318.266667pt;}
.yd{bottom:322.106667pt;}
.y86{bottom:323.546667pt;}
.y160{bottom:323.706667pt;}
.y197{bottom:326.466667pt;}
.yc0{bottom:327.266667pt;}
.y2e{bottom:330.146667pt;}
.y16a{bottom:331.746667pt;}
.y49{bottom:334.946667pt;}
.y107{bottom:335.266667pt;}
.y95{bottom:338.786667pt;}
.y178{bottom:342.626667pt;}
.y65{bottom:343.266667pt;}
.yc{bottom:343.586667pt;}
.y140{bottom:345.826667pt;}
.yf3{bottom:350.146667pt;}
.yd2{bottom:351.266667pt;}
.yca{bottom:354.786667pt;}
.y164{bottom:354.946667pt;}
.y2d{bottom:357.666667pt;}
.y85{bottom:359.266667pt;}
.y48{bottom:362.466667pt;}
.ybf{bottom:362.786667pt;}
.y196{bottom:363.586667pt;}
.yb{bottom:365.026667pt;}
.y177{bottom:365.666667pt;}
.y94{bottom:366.466667pt;}
.y64{bottom:370.786667pt;}
.y106{bottom:370.946667pt;}
.yd1{bottom:374.466667pt;}
.y126{bottom:376.546667pt;}
.yf2{bottom:377.666667pt;}
.y71{bottom:378.786667pt;}
.y15b{bottom:378.946667pt;}
.y13f{bottom:381.506667pt;}
.yc9{bottom:382.466667pt;}
.y2c{bottom:385.346667pt;}
.ya{bottom:386.466667pt;}
.y84{bottom:386.786667pt;}
.y169{bottom:386.946667pt;}
.y47{bottom:390.146667pt;}
.ybe{bottom:390.466667pt;}
.y1ae{bottom:393.666667pt;}
.y176{bottom:396.706667pt;}
.y63{bottom:398.466667pt;}
.y125{bottom:400.226667pt;}
.y93{bottom:401.666667pt;}
.yad{bottom:401.986667pt;}
.yf1{bottom:405.346667pt;}
.y70{bottom:406.466667pt;}
.y9{bottom:408.066667pt;}
.y13e{bottom:409.026667pt;}
.y2b{bottom:412.866667pt;}
.y83{bottom:414.466667pt;}
.y195{bottom:417.506667pt;}
.y46{bottom:417.666667pt;}
.ybd{bottom:417.986667pt;}
.y163{bottom:418.146667pt;}
.y124{bottom:423.746667pt;}
.y62{bottom:425.986667pt;}
.y105{bottom:426.146667pt;}
.y1ad{bottom:427.426667pt;}
.y175{bottom:429.346667pt;}
.y8{bottom:429.506667pt;}
.yd0{bottom:429.666667pt;}
.yf0{bottom:432.866667pt;}
.y6f{bottom:433.986667pt;}
.y110{bottom:434.146667pt;}
.y13d{bottom:436.706667pt;}
.y92{bottom:437.346667pt;}
.yac{bottom:437.666667pt;}
.y194{bottom:440.546667pt;}
.y2a{bottom:440.866667pt;}
.y82{bottom:441.986667pt;}
.y168{bottom:442.146667pt;}
.y45{bottom:445.346667pt;}
.yc8{bottom:445.666667pt;}
.y123{bottom:447.426667pt;}
.y1ac{bottom:450.466667pt;}
.y7{bottom:450.946667pt;}
.yb5{bottom:453.666667pt;}
.yef{bottom:460.546667pt;}
.y61{bottom:461.666667pt;}
.ycf{bottom:464.866667pt;}
.y174{bottom:465.346667pt;}
.y29{bottom:468.066667pt;}
.y81{bottom:469.666667pt;}
.y122{bottom:471.106667pt;}
.y193{bottom:471.586667pt;}
.y13c{bottom:471.906667pt;}
.y6{bottom:472.386667pt;}
.y91{bottom:473.186667pt;}
.y44{bottom:480.866667pt;}
.y162{bottom:481.026667pt;}
.yb4{bottom:481.186667pt;}
.y104{bottom:481.346667pt;}
.y1ab{bottom:481.506667pt;}
.yee{bottom:488.066667pt;}
.y60{bottom:489.186667pt;}
.y5{bottom:489.346667pt;}
.y192{bottom:494.466667pt;}
.y121{bottom:494.786667pt;}
.y28{bottom:496.066667pt;}
.y80{bottom:497.186667pt;}
.y167{bottom:497.346667pt;}
.yab{bottom:500.866667pt;}
.y1aa{bottom:504.386667pt;}
.y90{bottom:508.866667pt;}
.y13b{bottom:509.186667pt;}
.yed{bottom:515.746667pt;}
.y43{bottom:516.546667pt;}
.y5f{bottom:516.866667pt;}
.y191{bottom:517.506667pt;}
.y11f{bottom:518.466667pt;}
.y27{bottom:523.266667pt;}
.y157{bottom:524.226667pt;}
.y7f{bottom:524.866667pt;}
.yaa{bottom:528.386667pt;}
.y173{bottom:528.546667pt;}
.y8f{bottom:536.413333pt;}
.y103{bottom:536.573333pt;}
.y1a9{bottom:541.373333pt;}
.yec{bottom:543.293333pt;}
.y42{bottom:544.093333pt;}
.y5e{bottom:544.413333pt;}
.y10f{bottom:544.573333pt;}
.y156{bottom:547.933333pt;}
.y190{bottom:548.573333pt;}
.y26{bottom:551.293333pt;}
.y7e{bottom:552.413333pt;}
.y161{bottom:552.573333pt;}
.ya9{bottom:556.093333pt;}
.y8e{bottom:564.093333pt;}
.y11e{bottom:565.213333pt;}
.yeb{bottom:570.973333pt;}
.y18f{bottom:571.453333pt;}
.y155{bottom:571.626667pt;}
.y5d{bottom:572.093333pt;}
.y25{bottom:578.493333pt;}
.y41{bottom:579.773333pt;}
.y7d{bottom:580.093333pt;}
.ya8{bottom:583.613333pt;}
.y172{bottom:583.773333pt;}
.y11c{bottom:588.893333pt;}
.ybc{bottom:591.613333pt;}
.y102{bottom:591.773333pt;}
.y154{bottom:595.293333pt;}
.y5c{bottom:599.613333pt;}
.y10e{bottom:599.773333pt;}
.y1a8{bottom:601.373333pt;}
.y18e{bottom:602.493333pt;}
.y24{bottom:606.493333pt;}
.y40{bottom:607.293333pt;}
.y7c{bottom:607.613333pt;}
.y15f{bottom:607.773333pt;}
.ya7{bottom:611.293333pt;}
.y11b{bottom:612.413333pt;}
.y153{bottom:618.973333pt;}
.ybb{bottom:619.293333pt;}
.y18d{bottom:625.533333pt;}
.y5b{bottom:627.293333pt;}
.y23{bottom:633.693333pt;}
.y3f{bottom:634.973333pt;}
.y7b{bottom:635.293333pt;}
.y119{bottom:636.093333pt;}
.y1a7{bottom:638.493333pt;}
.ya6{bottom:638.813333pt;}
.y152{bottom:642.666667pt;}
.yce{bottom:646.813333pt;}
.y171{bottom:646.973333pt;}
.yea{bottom:647.453333pt;}
.y8d{bottom:654.813333pt;}
.y101{bottom:654.973333pt;}
.y18c{bottom:656.413333pt;}
.y22{bottom:661.373333pt;}
.y1a6{bottom:661.533333pt;}
.y3e{bottom:662.493333pt;}
.y5a{bottom:662.813333pt;}
.y15a{bottom:662.973333pt;}
.y150{bottom:666.333333pt;}
.ya5{bottom:666.493333pt;}
.y7a{bottom:670.813333pt;}
.y170{bottom:674.493333pt;}
.ye9{bottom:676.893333pt;}
.y18b{bottom:679.453333pt;}
.yc7{bottom:682.493333pt;}
.y117{bottom:682.813333pt;}
.y21{bottom:688.893333pt;}
.y3d{bottom:690.173333pt;}
.y59{bottom:690.493333pt;}
.y1a5{bottom:692.413333pt;}
.ye8{bottom:693.533333pt;}
.ya4{bottom:694.013333pt;}
.y79{bottom:698.493333pt;}
.y16f{bottom:702.173333pt;}
.y18a{bottom:702.493333pt;}
.y114{bottom:706.506667pt;}
.yc6{bottom:710.013333pt;}
.y158{bottom:710.173333pt;}
.yd3{bottom:710.959924pt;}
.ydc{bottom:710.978902pt;}
.y14f{bottom:712.893333pt;}
.y1a4{bottom:715.453333pt;}
.y20{bottom:716.573333pt;}
.y3c{bottom:717.693333pt;}
.y58{bottom:718.013333pt;}
.y100{bottom:718.173333pt;}
.y4{bottom:721.053333pt;}
.y78{bottom:726.013333pt;}
.y166{bottom:726.173333pt;}
.ya3{bottom:729.693333pt;}
.y189{bottom:733.533333pt;}
.y14d{bottom:736.586667pt;}
.yc5{bottom:737.693333pt;}
.y1f{bottom:744.453333pt;}
.y113{bottom:745.093333pt;}
.y3b{bottom:745.413333pt;}
.y57{bottom:745.733333pt;}
.y1a3{bottom:746.533333pt;}
.y77{bottom:753.733333pt;}
.y3{bottom:755.013333pt;}
.y188{bottom:756.453333pt;}
.ya2{bottom:757.253333pt;}
.y16e{bottom:757.413333pt;}
.y14c{bottom:760.293333pt;}
.ycd{bottom:765.253333pt;}
.y1a2{bottom:769.413333pt;}
.y1e{bottom:771.813333pt;}
.y3a{bottom:772.933333pt;}
.y56{bottom:773.253333pt;}
.y10d{bottom:773.413333pt;}
.y76{bottom:781.253333pt;}
.yff{bottom:781.413333pt;}
.y14b{bottom:783.973333pt;}
.ya1{bottom:784.933333pt;}
.y187{bottom:787.493333pt;}
.y2{bottom:788.613333pt;}
.y1d{bottom:799.653333pt;}
.y39{bottom:800.613333pt;}
.y55{bottom:800.933333pt;}
.y1a1{bottom:806.533333pt;}
.y75{bottom:808.933333pt;}
.y186{bottom:810.533333pt;}
.ya0{bottom:812.453333pt;}
.y16d{bottom:820.613333pt;}
.y1c{bottom:827.013333pt;}
.y38{bottom:828.133333pt;}
.y54{bottom:828.453333pt;}
.y10c{bottom:828.613333pt;}
.y1a0{bottom:829.413333pt;}
.y14a{bottom:830.693333pt;}
.y74{bottom:836.453333pt;}
.yfe{bottom:836.613333pt;}
.y9f{bottom:840.133333pt;}
.y185{bottom:841.573333pt;}
.y1{bottom:844.933333pt;}
.y148{bottom:854.373333pt;}
.y1b{bottom:854.853333pt;}
.y53{bottom:856.133333pt;}
.y37{bottom:863.493333pt;}
.y73{bottom:864.133333pt;}
.y19f{bottom:866.533333pt;}
.y184{bottom:872.453333pt;}
.y9e{bottom:875.653333pt;}
.y1a{bottom:882.533333pt;}
.y52{bottom:883.653333pt;}
.y10b{bottom:883.813333pt;}
.y13a{bottom:889.413333pt;}
.y72{bottom:891.653333pt;}
.yfd{bottom:891.813333pt;}
.y183{bottom:895.493333pt;}
.ye5{bottom:895.602375pt;}
.y36{bottom:901.253333pt;}
.y9d{bottom:911.013333pt;}
.y51{bottom:911.333333pt;}
.y19{bottom:914.693333pt;}
.y139{bottom:918.693333pt;}
.y6e{bottom:919.333333pt;}
.y35{bottom:922.693333pt;}
.y182{bottom:926.533333pt;}
.y34{bottom:944.133333pt;}
.y50{bottom:946.533333pt;}
.y18{bottom:946.853333pt;}
.yfc{bottom:947.013333pt;}
.y138{bottom:947.173333pt;}
.y181{bottom:949.573333pt;}
.h19{height:22.866667pt;}
.h17{height:22.880000pt;}
.h13{height:23.026667pt;}
.h15{height:23.040000pt;}
.h20{height:23.058667pt;}
.h22{height:23.066667pt;}
.h1d{height:29.364458pt;}
.h1b{height:29.371235pt;}
.hc{height:29.396576pt;}
.he{height:31.127580pt;}
.hf{height:35.493010pt;}
.h1e{height:36.416250pt;}
.h1{height:40.163750pt;}
.h21{height:45.920000pt;}
.h18{height:45.946667pt;}
.h1f{height:46.066667pt;}
.h16{height:46.080000pt;}
.h24{height:47.621250pt;}
.h14{height:52.108438pt;}
.h23{height:52.134375pt;}
.h25{height:52.478750pt;}
.h10{height:53.535000pt;}
.ha{height:57.375000pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.h12{height:66.404375pt;}
.h4{height:73.490625pt;}
.h9{height:75.465000pt;}
.h5{height:83.540625pt;}
.h1c{height:85.443494pt;}
.h1a{height:90.738721pt;}
.h2{height:118.035000pt;}
.h11{height:120.095000pt;}
.hd{height:241.896054pt;}
.hb{height:245.442718pt;}
.h3{height:471.219375pt;}
.h27{height:794.666667pt;}
.h0{height:1056.000000pt;}
.h26{height:1122.666667pt;}
.wa{width:70.737636pt;}
.w3{width:72.656936pt;}
.w9{width:74.710434pt;}
.w8{width:101.946667pt;}
.w7{width:113.618667pt;}
.w6{width:115.552000pt;}
.w5{width:123.840000pt;}
.w4{width:148.653333pt;}
.w1{width:271.041130pt;}
.w2{width:293.219205pt;}
.wb{width:794.666667pt;}
.w0{width:816.000000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x20{left:7.192000pt;}
.x19{left:13.437214pt;}
.x26{left:14.397077pt;}
.x16{left:15.836716pt;}
.x13{left:16.960071pt;}
.x15{left:24.474925pt;}
.x14{left:32.512136pt;}
.x17{left:41.783337pt;}
.x9{left:94.592000pt;}
.x12{left:99.733355pt;}
.x2{left:102.112000pt;}
.x1f{left:106.280000pt;}
.xc{left:110.912000pt;}
.x1a{left:113.472000pt;}
.xa{left:118.432000pt;}
.x28{left:140.026667pt;}
.x10{left:142.586667pt;}
.x3{left:149.306667pt;}
.x1e{left:158.746667pt;}
.x1c{left:161.466667pt;}
.x6{left:249.186667pt;}
.x7{left:251.906667pt;}
.x21{left:254.946667pt;}
.x24{left:284.944641pt;}
.xd{left:309.826667pt;}
.x4{left:355.106667pt;}
.xe{left:376.546667pt;}
.xb{left:379.106667pt;}
.xf{left:380.866667pt;}
.x1{left:408.093333pt;}
.x1b{left:432.093333pt;}
.x22{left:494.346667pt;}
.x5{left:508.253333pt;}
.x25{left:577.158654pt;}
.x18{left:595.394501pt;}
.x23{left:607.973333pt;}
.x27{left:658.693333pt;}
.x1d{left:687.813333pt;}
.x11{left:706.720000pt;}
.x8{left:714.240000pt;}
}




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