
    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_d5b6097ed17f257d019313f4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e0822b360e8b2af97ae8429e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_3313a030f8e07a1a2fd9683e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_31f919ea4e6a9ec7c0454891.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_35dd9483b0c24271444ebfeb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_23b0637c73c33bf11bf2b085.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f8728aebefa220e8236426dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4a2a6fd6ebbec44543696637.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.606934;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_ef2a73e79576ffc52e28d5c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243647,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);}
.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);}
.v1{vertical-align:-82.800000px;}
.vc{vertical-align:-72.000000px;}
.vd{vertical-align:-36.000000px;}
.v2{vertical-align:-14.400000px;}
.v6{vertical-align:-11.520000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v3{vertical-align:14.400000px;}
.v8{vertical-align:17.280000px;}
.ve{vertical-align:36.000000px;}
.v5{vertical-align:47.700000px;}
.vb{vertical-align:50.400000px;}
.va{vertical-align:61.920000px;}
.v9{vertical-align:64.080000px;}
.lsa{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.087120px;}
.lse{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.273600px;}
.ls2a{letter-spacing:0.320400px;}
.ls18{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.663840px;}
.lsc{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls1f{letter-spacing:1.899360px;}
.ls28{letter-spacing:2.232000px;}
.ls1d{letter-spacing:2.340000px;}
.ls25{letter-spacing:2.619360px;}
.ls16{letter-spacing:4.352400px;}
.ls21{letter-spacing:4.376880px;}
.ls19{letter-spacing:4.496880px;}
.ls11{letter-spacing:4.824720px;}
.ls17{letter-spacing:5.072400px;}
.ls10{letter-spacing:5.096880px;}
.ls14{letter-spacing:5.544720px;}
.ls7{letter-spacing:5.904000px;}
.ls6{letter-spacing:9.504000px;}
.ls29{letter-spacing:16.200000px;}
.ls8{letter-spacing:17.424000px;}
.ls1a{letter-spacing:19.800000px;}
.ls1b{letter-spacing:20.376000px;}
.ls2d{letter-spacing:57.024000px;}
.ls2c{letter-spacing:60.624000px;}
.ls15{letter-spacing:80.395920px;}
.ls23{letter-spacing:80.515920px;}
.ls22{letter-spacing:81.115920px;}
.ls1c{letter-spacing:84.715920px;}
.ls27{letter-spacing:97.968000px;}
.ls13{letter-spacing:97.992000px;}
.ls26{letter-spacing:117.802800px;}
.ls20{letter-spacing:130.983120px;}
.ls1{letter-spacing:834.636000px;}
.ls0{letter-spacing:897.996000px;}
.ls2{letter-spacing:1184.556000px;}
.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:-66.240000px;}
.ws6{word-spacing:-49.320000px;}
.wsa{word-spacing:-35.017200px;}
.ws11{word-spacing:-34.776600px;}
.wsb{word-spacing:-28.785600px;}
.wsd{word-spacing:-28.605600px;}
.ws1{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.979158px;}
.ws3{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-13.680000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:28.656000px;}
.ws9{word-spacing:29.556000px;}
.wsf{word-spacing:61.747200px;}
.wsc{word-spacing:62.467200px;}
.ws8{word-spacing:697.324320px;}
.ws10{word-spacing:791.644320px;}
._1a{margin-left:-149.030640px;}
._20{margin-left:-131.505721px;}
._21{margin-left:-129.166100px;}
._1e{margin-left:-123.613953px;}
._1f{margin-left:-52.765882px;}
._1c{margin-left:-10.029120px;}
._18{margin-left:-7.008000px;}
._11{margin-left:-5.304480px;}
._c{margin-left:-4.161600px;}
._a{margin-left:-3.047040px;}
._0{margin-left:-1.192320px;}
._1{width:1.384320px;}
._4{width:3.096000px;}
._5{width:4.104000px;}
._7{width:5.904000px;}
._2{width:6.984000px;}
._3{width:8.236320px;}
._6{width:9.242400px;}
._b{width:10.335360px;}
._d{width:11.585280px;}
._e{width:13.045440px;}
._10{width:14.071680px;}
._13{width:15.237120px;}
._9{width:16.524960px;}
._19{width:19.056000px;}
._16{width:20.088000px;}
._1b{width:21.600000px;}
._14{width:22.608000px;}
._15{width:23.832000px;}
._f{width:25.848000px;}
._12{width:27.000000px;}
._1d{width:28.032000px;}
._17{width:32.544000px;}
._8{width:34.488000px;}
._22{width:100.776000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs5{font-size:51.120000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:71.916632px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y10e{bottom:-6.300000px;}
.y111{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:3.240000px;}
.y11a{bottom:4.068655px;}
.y120{bottom:8.393985px;}
.ybe{bottom:9.000000px;}
.y117{bottom:9.346906px;}
.yc2{bottom:11.880000px;}
.yb9{bottom:11.925000px;}
.ybc{bottom:17.640000px;}
.yc7{bottom:20.514000px;}
.y118{bottom:25.144990px;}
.ybd{bottom:26.280000px;}
.yc4{bottom:29.160000px;}
.y2{bottom:29.700000px;}
.y121{bottom:35.481781px;}
.yc6{bottom:37.614000px;}
.yc1{bottom:37.800000px;}
.y119{bottom:42.445718px;}
.ybb{bottom:43.560000px;}
.yc3{bottom:46.440000px;}
.y11e{bottom:59.710816px;}
.y122{bottom:62.532910px;}
.yc0{bottom:63.720000px;}
.y11b{bottom:73.236380px;}
.y11c{bottom:80.786706px;}
.y123{bottom:89.621152px;}
.yb7{bottom:89.676000px;}
.y31{bottom:92.196000px;}
.y74{bottom:93.816000px;}
.yf8{bottom:96.516000px;}
.y11d{bottom:98.051805px;}
.y58{bottom:104.256000px;}
.y9d{bottom:106.596000px;}
.ydc{bottom:107.496000px;}
.y30{bottom:112.896000px;}
.yb4{bottom:113.256000px;}
.y11f{bottom:115.352532px;}
.y124{bottom:116.672280px;}
.yb6{bottom:118.296000px;}
.ya1{bottom:118.656000px;}
.y13f{bottom:119.556000px;}
.y73{bottom:124.956000px;}
.yf7{bottom:127.476000px;}
.yc5{bottom:133.056000px;}
.y2f{bottom:133.596000px;}
.y57{bottom:135.216000px;}
.y9c{bottom:137.736000px;}
.ydb{bottom:138.636000px;}
.yb3{bottom:144.216000px;}
.y14b{bottom:145.656000px;}
.ya0{bottom:147.276000px;}
.y13e{bottom:150.510000px;}
.y2e{bottom:154.290000px;}
.y72{bottom:155.910000px;}
.yf6{bottom:158.610000px;}
.y10a{bottom:159.330000px;}
.y93{bottom:163.650000px;}
.y56{bottom:166.350000px;}
.y9b{bottom:168.690000px;}
.yda{bottom:169.590000px;}
.y9f{bottom:171.570000px;}
.y2d{bottom:174.990000px;}
.yb2{bottom:175.350000px;}
.y13d{bottom:181.650000px;}
.ybf{bottom:185.430000px;}
.y71{bottom:187.050000px;}
.yf5{bottom:189.570000px;}
.y109{bottom:190.290000px;}
.y92{bottom:194.610000px;}
.y2c{bottom:195.690000px;}
.y55{bottom:197.310000px;}
.y9a{bottom:199.830000px;}
.yd9{bottom:200.730000px;}
.yb1{bottom:206.310000px;}
.y14a{bottom:207.750000px;}
.y13c{bottom:212.610000px;}
.y2b{bottom:216.390000px;}
.y70{bottom:218.010000px;}
.yf4{bottom:218.190000px;}
.y108{bottom:221.430000px;}
.y91{bottom:225.570000px;}
.y54{bottom:228.450000px;}
.y99{bottom:230.790000px;}
.yd8{bottom:231.690000px;}
.y2a{bottom:237.090000px;}
.yb0{bottom:237.270000px;}
.y13b{bottom:243.750000px;}
.yf3{bottom:244.110000px;}
.y6f{bottom:249.150000px;}
.y107{bottom:249.870000px;}
.y90{bottom:256.710000px;}
.y29{bottom:257.790000px;}
.y53{bottom:259.410000px;}
.y98{bottom:261.930000px;}
.yd7{bottom:262.830000px;}
.yba{bottom:263.910000px;}
.yaf{bottom:268.410000px;}
.y149{bottom:269.850000px;}
.y106{bottom:274.170000px;}
.y13a{bottom:274.710000px;}
.y28{bottom:278.490000px;}
.y6e{bottom:280.110000px;}
.y8f{bottom:287.670000px;}
.y52{bottom:290.550000px;}
.y97{bottom:292.890000px;}
.yd6{bottom:293.790000px;}
.y27{bottom:299.190000px;}
.yae{bottom:299.370000px;}
.y139{bottom:305.850000px;}
.y6d{bottom:311.250000px;}
.y8e{bottom:318.810000px;}
.y26{bottom:319.890000px;}
.y51{bottom:321.510000px;}
.yb8{bottom:322.230000px;}
.yd5{bottom:324.930000px;}
.yad{bottom:330.555000px;}
.y148{bottom:331.995000px;}
.y80{bottom:335.415000px;}
.y138{bottom:336.855000px;}
.y25{bottom:340.635000px;}
.y6c{bottom:342.255000px;}
.y96{bottom:347.475000px;}
.y8d{bottom:349.815000px;}
.y50{bottom:352.695000px;}
.yd4{bottom:355.935000px;}
.y24{bottom:361.335000px;}
.yac{bottom:361.515000px;}
.y7f{bottom:366.555000px;}
.y137{bottom:367.635000px;}
.y95{bottom:371.775000px;}
.y6b{bottom:373.395000px;}
.yb5{bottom:376.095000px;}
.y8c{bottom:380.955000px;}
.y23{bottom:382.035000px;}
.y4f{bottom:383.655000px;}
.yd3{bottom:387.075000px;}
.yab{bottom:392.655000px;}
.y147{bottom:394.095000px;}
.y7e{bottom:397.515000px;}
.y136{bottom:398.955000px;}
.y22{bottom:402.735000px;}
.y6a{bottom:404.355000px;}
.y8b{bottom:411.915000px;}
.y4e{bottom:414.795000px;}
.yd2{bottom:418.035000px;}
.yaa{bottom:423.615000px;}
.y7d{bottom:428.655000px;}
.y135{bottom:429.735000px;}
.y69{bottom:435.495000px;}
.y8a{bottom:443.055000px;}
.y21{bottom:443.955000px;}
.y4d{bottom:445.755000px;}
.yd1{bottom:449.175000px;}
.ya9{bottom:454.755000px;}
.y105{bottom:454.935000px;}
.yf2{bottom:455.835000px;}
.y146{bottom:456.195000px;}
.y7c{bottom:459.615000px;}
.y134{bottom:461.055000px;}
.y20{bottom:464.655000px;}
.y68{bottom:466.455000px;}
.y89{bottom:474.015000px;}
.y4c{bottom:476.895000px;}
.yd0{bottom:480.135000px;}
.yf1{bottom:482.835000px;}
.y104{bottom:483.375000px;}
.y1f{bottom:485.355000px;}
.ya8{bottom:485.715000px;}
.y7b{bottom:490.755000px;}
.y133{bottom:492.015000px;}
.y67{bottom:497.595000px;}
.y88{bottom:505.155000px;}
.y1e{bottom:505.875000px;}
.y4b{bottom:507.855000px;}
.ycf{bottom:511.275000px;}
.yf0{bottom:512.535000px;}
.y103{bottom:514.335000px;}
.ya7{bottom:516.855000px;}
.y145{bottom:518.295000px;}
.y7a{bottom:521.715000px;}
.y132{bottom:523.155000px;}
.y1d{bottom:525.135000px;}
.y66{bottom:528.555000px;}
.y87{bottom:536.115000px;}
.y4a{bottom:538.995000px;}
.yce{bottom:542.235000px;}
.yef{bottom:542.415000px;}
.y102{bottom:545.475000px;}
.y1c{bottom:545.835000px;}
.yee{bottom:546.735000px;}
.ya6{bottom:547.815000px;}
.y79{bottom:552.855000px;}
.y131{bottom:554.115000px;}
.y65{bottom:559.695000px;}
.y1b{bottom:566.535000px;}
.y86{bottom:567.255000px;}
.y49{bottom:569.955000px;}
.ycd{bottom:573.375000px;}
.y101{bottom:573.915000px;}
.ya5{bottom:578.955000px;}
.y144{bottom:580.395000px;}
.yed{bottom:581.295000px;}
.y78{bottom:583.815000px;}
.y130{bottom:585.255000px;}
.y1a{bottom:587.235000px;}
.y64{bottom:590.655000px;}
.y9e{bottom:593.355000px;}
.y85{bottom:598.245000px;}
.y100{bottom:599.865000px;}
.y48{bottom:600.945000px;}
.y143{bottom:601.125000px;}
.ycc{bottom:604.365000px;}
.y19{bottom:607.965000px;}
.ya4{bottom:609.945000px;}
.y77{bottom:612.465000px;}
.y12f{bottom:616.245000px;}
.yec{bottom:619.665000px;}
.y63{bottom:621.645000px;}
.y94{bottom:624.345000px;}
.y18{bottom:628.665000px;}
.y84{bottom:629.385000px;}
.y47{bottom:632.085000px;}
.ycb{bottom:632.985000px;}
.y76{bottom:636.765000px;}
.ya3{bottom:638.565000px;}
.y142{bottom:642.345000px;}
.y12e{bottom:647.385000px;}
.y17{bottom:649.365000px;}
.y62{bottom:652.785000px;}
.yca{bottom:658.905000px;}
.yeb{bottom:660.165000px;}
.y83{bottom:660.345000px;}
.y46{bottom:663.045000px;}
.y16{bottom:670.065000px;}
.y12d{bottom:678.345000px;}
.yc9{bottom:683.205000px;}
.y61{bottom:683.745000px;}
.y82{bottom:688.965000px;}
.y15{bottom:690.765000px;}
.yea{bottom:693.465000px;}
.y45{bottom:694.185000px;}
.ye9{bottom:701.925000px;}
.y141{bottom:704.445000px;}
.y12c{bottom:709.485000px;}
.y60{bottom:714.885000px;}
.y44{bottom:725.145000px;}
.y12b{bottom:730.005000px;}
.y14{bottom:732.165000px;}
.ye8{bottom:738.825000px;}
.y5f{bottom:745.845000px;}
.y13{bottom:752.865000px;}
.y43{bottom:756.285000px;}
.y12a{bottom:758.805000px;}
.y140{bottom:766.545000px;}
.ye7{bottom:770.145000px;}
.yff{bottom:771.045000px;}
.y12{bottom:773.565000px;}
.y5e{bottom:776.985000px;}
.y129{bottom:783.105000px;}
.y42{bottom:787.245000px;}
.y11{bottom:794.265000px;}
.yfe{bottom:796.965000px;}
.ye5{bottom:806.865000px;}
.y41{bottom:807.945000px;}
.y10{bottom:814.965000px;}
.ye6{bottom:815.865000px;}
.yfd{bottom:825.405000px;}
.y40{bottom:828.645000px;}
.yf{bottom:835.665000px;}
.y5d{bottom:839.085000px;}
.ye4{bottom:848.805000px;}
.y3f{bottom:849.345000px;}
.ye{bottom:856.365000px;}
.ye3{bottom:857.265000px;}
.y3e{bottom:870.090000px;}
.y128{bottom:882.690000px;}
.yfc{bottom:887.550000px;}
.y3d{bottom:890.790000px;}
.ye2{bottom:892.590000px;}
.yd{bottom:897.810000px;}
.y5c{bottom:901.230000px;}
.y127{bottom:911.130000px;}
.y3c{bottom:911.490000px;}
.yfb{bottom:915.990000px;}
.yc{bottom:918.510000px;}
.ye1{bottom:922.290000px;}
.ye0{bottom:925.890000px;}
.y3b{bottom:932.190000px;}
.yb{bottom:939.210000px;}
.yfa{bottom:940.470000px;}
.y126{bottom:942.090000px;}
.y3a{bottom:952.890000px;}
.ydf{bottom:959.010000px;}
.ya{bottom:959.910000px;}
.y5b{bottom:963.330000px;}
.y75{bottom:966.030000px;}
.y125{bottom:973.230000px;}
.y39{bottom:973.590000px;}
.y9{bottom:980.610000px;}
.yde{bottom:989.970000px;}
.y38{bottom:994.290000px;}
.y116{bottom:1000.140000px;}
.y8{bottom:1001.310000px;}
.y37{bottom:1014.990000px;}
.y7{bottom:1022.010000px;}
.ydd{bottom:1023.450000px;}
.y5a{bottom:1025.430000px;}
.ya2{bottom:1028.130000px;}
.y10c{bottom:1033.350000px;}
.y115{bottom:1033.530000px;}
.y36{bottom:1035.690000px;}
.y6{bottom:1043.250000px;}
.y10d{bottom:1049.190000px;}
.y35{bottom:1056.390000px;}
.y10f{bottom:1058.550000px;}
.yf9{bottom:1059.090000px;}
.y10b{bottom:1063.230000px;}
.y114{bottom:1063.410000px;}
.y5{bottom:1067.370000px;}
.y34{bottom:1077.090000px;}
.y110{bottom:1081.410000px;}
.y59{bottom:1087.530000px;}
.y112{bottom:1090.950000px;}
.y4{bottom:1091.490000px;}
.y113{bottom:1093.290000px;}
.y33{bottom:1097.790000px;}
.y3{bottom:1115.610000px;}
.y32{bottom:1118.490000px;}
.y81{bottom:1121.190000px;}
.y1{bottom:1231.740000px;}
.h17{height:9.360000px;}
.h19{height:9.540000px;}
.h18{height:22.860000px;}
.hd{height:25.956000px;}
.h10{height:51.660000px;}
.h3{height:53.464219px;}
.he{height:57.600000px;}
.hb{height:58.651172px;}
.ha{height:60.226875px;}
.h9{height:64.546875px;}
.h8{height:65.010937px;}
.h1c{height:66.614185px;}
.h1d{height:70.582241px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.hc{height:74.004654px;}
.h2{height:76.317188px;}
.hf{height:77.760000px;}
.h4{height:84.898125px;}
.h13{height:116.991914px;}
.h15{height:128.777344px;}
.h1b{height:135.000303px;}
.h11{height:164.777344px;}
.h12{height:167.657344px;}
.h1a{height:171.930000px;}
.h14{height:198.617344px;}
.h16{height:1049.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.001090px;}
.w4{width:340.995000px;}
.w3{width:341.130000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:2.635354px;}
.x2a{left:7.770000px;}
.x3f{left:23.185038px;}
.x40{left:24.288949px;}
.x3d{left:50.820445px;}
.xc{left:127.655987px;}
.x3{left:138.275987px;}
.x28{left:139.350000px;}
.x30{left:140.435987px;}
.x26{left:145.434000px;}
.x9{left:155.549987px;}
.x5{left:158.249987px;}
.x4{left:164.549987px;}
.xa{left:167.249987px;}
.x29{left:170.499000px;}
.x1a{left:180.749987px;}
.xb{left:207.029987px;}
.x44{left:212.609987px;}
.x6{left:231.869987px;}
.x2{left:241.769987px;}
.x1d{left:254.369987px;}
.x34{left:262.469987px;}
.xe{left:293.114987px;}
.x2d{left:294.734987px;}
.x46{left:297.794987px;}
.x25{left:303.914987px;}
.x36{left:305.534987px;}
.x13{left:312.374987px;}
.x1b{left:315.974987px;}
.x7{left:318.674987px;}
.x1e{left:319.934987px;}
.x37{left:330.554973px;}
.xd{left:331.814987px;}
.x16{left:334.694987px;}
.x20{left:336.314987px;}
.x38{left:339.194987px;}
.x39{left:342.074987px;}
.xf{left:343.694987px;}
.x14{left:346.394987px;}
.x42{left:347.474987px;}
.x2b{left:357.734987px;}
.x12{left:365.294987px;}
.x11{left:370.334987px;}
.x1f{left:378.074987px;}
.x18{left:380.234987px;}
.x22{left:389.954987px;}
.x17{left:399.854987px;}
.x15{left:401.114987px;}
.x45{left:403.274987px;}
.x10{left:406.874987px;}
.x24{left:408.314987px;}
.x19{left:421.814987px;}
.x8{left:467.894987px;}
.x27{left:470.235000px;}
.x2f{left:478.724987px;}
.x23{left:494.384987px;}
.x3a{left:513.284973px;}
.x2e{left:515.444987px;}
.x3b{left:524.084987px;}
.x2c{left:563.144987px;}
.x3c{left:567.240000px;}
.x41{left:630.284987px;}
.x43{left:699.629987px;}
.x33{left:706.469987px;}
.x21{left:726.089987px;}
.x32{left:742.469987px;}
.x31{left:749.129987px;}
.x1{left:788.729987px;}
.x1c{left:791.249987px;}
.x35{left:803.129987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.vc{vertical-align:-64.000000pt;}
.vd{vertical-align:-32.000000pt;}
.v2{vertical-align:-12.800000pt;}
.v6{vertical-align:-10.240000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v3{vertical-align:12.800000pt;}
.v8{vertical-align:15.360000pt;}
.ve{vertical-align:32.000000pt;}
.v5{vertical-align:42.400000pt;}
.vb{vertical-align:44.800000pt;}
.va{vertical-align:55.040000pt;}
.v9{vertical-align:56.960000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.077440pt;}
.lse{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.243200pt;}
.ls2a{letter-spacing:0.284800pt;}
.ls18{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.590080pt;}
.lsc{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:1.688320pt;}
.ls28{letter-spacing:1.984000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls25{letter-spacing:2.328320pt;}
.ls16{letter-spacing:3.868800pt;}
.ls21{letter-spacing:3.890560pt;}
.ls19{letter-spacing:3.997227pt;}
.ls11{letter-spacing:4.288640pt;}
.ls17{letter-spacing:4.508800pt;}
.ls10{letter-spacing:4.530560pt;}
.ls14{letter-spacing:4.928640pt;}
.ls7{letter-spacing:5.248000pt;}
.ls6{letter-spacing:8.448000pt;}
.ls29{letter-spacing:14.400000pt;}
.ls8{letter-spacing:15.488000pt;}
.ls1a{letter-spacing:17.600000pt;}
.ls1b{letter-spacing:18.112000pt;}
.ls2d{letter-spacing:50.688000pt;}
.ls2c{letter-spacing:53.888000pt;}
.ls15{letter-spacing:71.463040pt;}
.ls23{letter-spacing:71.569707pt;}
.ls22{letter-spacing:72.103040pt;}
.ls1c{letter-spacing:75.303040pt;}
.ls27{letter-spacing:87.082667pt;}
.ls13{letter-spacing:87.104000pt;}
.ls26{letter-spacing:104.713600pt;}
.ls20{letter-spacing:116.429440pt;}
.ls1{letter-spacing:741.898667pt;}
.ls0{letter-spacing:798.218667pt;}
.ls2{letter-spacing:1052.938667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws6{word-spacing:-43.840000pt;}
.wsa{word-spacing:-31.126400pt;}
.ws11{word-spacing:-30.912533pt;}
.wsb{word-spacing:-25.587200pt;}
.wsd{word-spacing:-25.427200pt;}
.ws1{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.981474pt;}
.ws3{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:25.472000pt;}
.ws9{word-spacing:26.272000pt;}
.wsf{word-spacing:54.886400pt;}
.wsc{word-spacing:55.526400pt;}
.ws8{word-spacing:619.843840pt;}
.ws10{word-spacing:703.683840pt;}
._1a{margin-left:-132.471680pt;}
._20{margin-left:-116.893974pt;}
._21{margin-left:-114.814311pt;}
._1e{margin-left:-109.879069pt;}
._1f{margin-left:-46.903006pt;}
._1c{margin-left:-8.914773pt;}
._18{margin-left:-6.229333pt;}
._11{margin-left:-4.715093pt;}
._c{margin-left:-3.699200pt;}
._a{margin-left:-2.708480pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.230507pt;}
._4{width:2.752000pt;}
._5{width:3.648000pt;}
._7{width:5.248000pt;}
._2{width:6.208000pt;}
._3{width:7.321173pt;}
._6{width:8.215467pt;}
._b{width:9.186987pt;}
._d{width:10.298027pt;}
._e{width:11.595947pt;}
._10{width:12.508160pt;}
._13{width:13.544107pt;}
._9{width:14.688853pt;}
._19{width:16.938667pt;}
._16{width:17.856000pt;}
._1b{width:19.200000pt;}
._14{width:20.096000pt;}
._15{width:21.184000pt;}
._f{width:22.976000pt;}
._12{width:24.000000pt;}
._1d{width:24.917333pt;}
._17{width:28.928000pt;}
._8{width:30.656000pt;}
._22{width:89.578667pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:45.440000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:63.925895pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y10e{bottom:-5.600000pt;}
.y111{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:2.880000pt;}
.y11a{bottom:3.616582pt;}
.y120{bottom:7.461320pt;}
.ybe{bottom:8.000000pt;}
.y117{bottom:8.308361pt;}
.yc2{bottom:10.560000pt;}
.yb9{bottom:10.600000pt;}
.ybc{bottom:15.680000pt;}
.yc7{bottom:18.234667pt;}
.y118{bottom:22.351102pt;}
.ybd{bottom:23.360000pt;}
.yc4{bottom:25.920000pt;}
.y2{bottom:26.400000pt;}
.y121{bottom:31.539361pt;}
.yc6{bottom:33.434667pt;}
.yc1{bottom:33.600000pt;}
.y119{bottom:37.729527pt;}
.ybb{bottom:38.720000pt;}
.yc3{bottom:41.280000pt;}
.y11e{bottom:53.076281pt;}
.y122{bottom:55.584809pt;}
.yc0{bottom:56.640000pt;}
.y11b{bottom:65.099005pt;}
.y11c{bottom:71.810405pt;}
.y123{bottom:79.663246pt;}
.yb7{bottom:79.712000pt;}
.y31{bottom:81.952000pt;}
.y74{bottom:83.392000pt;}
.yf8{bottom:85.792000pt;}
.y11d{bottom:87.157160pt;}
.y58{bottom:92.672000pt;}
.y9d{bottom:94.752000pt;}
.ydc{bottom:95.552000pt;}
.y30{bottom:100.352000pt;}
.yb4{bottom:100.672000pt;}
.y11f{bottom:102.535584pt;}
.y124{bottom:103.708693pt;}
.yb6{bottom:105.152000pt;}
.ya1{bottom:105.472000pt;}
.y13f{bottom:106.272000pt;}
.y73{bottom:111.072000pt;}
.yf7{bottom:113.312000pt;}
.yc5{bottom:118.272000pt;}
.y2f{bottom:118.752000pt;}
.y57{bottom:120.192000pt;}
.y9c{bottom:122.432000pt;}
.ydb{bottom:123.232000pt;}
.yb3{bottom:128.192000pt;}
.y14b{bottom:129.472000pt;}
.ya0{bottom:130.912000pt;}
.y13e{bottom:133.786667pt;}
.y2e{bottom:137.146667pt;}
.y72{bottom:138.586667pt;}
.yf6{bottom:140.986667pt;}
.y10a{bottom:141.626667pt;}
.y93{bottom:145.466667pt;}
.y56{bottom:147.866667pt;}
.y9b{bottom:149.946667pt;}
.yda{bottom:150.746667pt;}
.y9f{bottom:152.506667pt;}
.y2d{bottom:155.546667pt;}
.yb2{bottom:155.866667pt;}
.y13d{bottom:161.466667pt;}
.ybf{bottom:164.826667pt;}
.y71{bottom:166.266667pt;}
.yf5{bottom:168.506667pt;}
.y109{bottom:169.146667pt;}
.y92{bottom:172.986667pt;}
.y2c{bottom:173.946667pt;}
.y55{bottom:175.386667pt;}
.y9a{bottom:177.626667pt;}
.yd9{bottom:178.426667pt;}
.yb1{bottom:183.386667pt;}
.y14a{bottom:184.666667pt;}
.y13c{bottom:188.986667pt;}
.y2b{bottom:192.346667pt;}
.y70{bottom:193.786667pt;}
.yf4{bottom:193.946667pt;}
.y108{bottom:196.826667pt;}
.y91{bottom:200.506667pt;}
.y54{bottom:203.066667pt;}
.y99{bottom:205.146667pt;}
.yd8{bottom:205.946667pt;}
.y2a{bottom:210.746667pt;}
.yb0{bottom:210.906667pt;}
.y13b{bottom:216.666667pt;}
.yf3{bottom:216.986667pt;}
.y6f{bottom:221.466667pt;}
.y107{bottom:222.106667pt;}
.y90{bottom:228.186667pt;}
.y29{bottom:229.146667pt;}
.y53{bottom:230.586667pt;}
.y98{bottom:232.826667pt;}
.yd7{bottom:233.626667pt;}
.yba{bottom:234.586667pt;}
.yaf{bottom:238.586667pt;}
.y149{bottom:239.866667pt;}
.y106{bottom:243.706667pt;}
.y13a{bottom:244.186667pt;}
.y28{bottom:247.546667pt;}
.y6e{bottom:248.986667pt;}
.y8f{bottom:255.706667pt;}
.y52{bottom:258.266667pt;}
.y97{bottom:260.346667pt;}
.yd6{bottom:261.146667pt;}
.y27{bottom:265.946667pt;}
.yae{bottom:266.106667pt;}
.y139{bottom:271.866667pt;}
.y6d{bottom:276.666667pt;}
.y8e{bottom:283.386667pt;}
.y26{bottom:284.346667pt;}
.y51{bottom:285.786667pt;}
.yb8{bottom:286.426667pt;}
.yd5{bottom:288.826667pt;}
.yad{bottom:293.826667pt;}
.y148{bottom:295.106667pt;}
.y80{bottom:298.146667pt;}
.y138{bottom:299.426667pt;}
.y25{bottom:302.786667pt;}
.y6c{bottom:304.226667pt;}
.y96{bottom:308.866667pt;}
.y8d{bottom:310.946667pt;}
.y50{bottom:313.506667pt;}
.yd4{bottom:316.386667pt;}
.y24{bottom:321.186667pt;}
.yac{bottom:321.346667pt;}
.y7f{bottom:325.826667pt;}
.y137{bottom:326.786667pt;}
.y95{bottom:330.466667pt;}
.y6b{bottom:331.906667pt;}
.yb5{bottom:334.306667pt;}
.y8c{bottom:338.626667pt;}
.y23{bottom:339.586667pt;}
.y4f{bottom:341.026667pt;}
.yd3{bottom:344.066667pt;}
.yab{bottom:349.026667pt;}
.y147{bottom:350.306667pt;}
.y7e{bottom:353.346667pt;}
.y136{bottom:354.626667pt;}
.y22{bottom:357.986667pt;}
.y6a{bottom:359.426667pt;}
.y8b{bottom:366.146667pt;}
.y4e{bottom:368.706667pt;}
.yd2{bottom:371.586667pt;}
.yaa{bottom:376.546667pt;}
.y7d{bottom:381.026667pt;}
.y135{bottom:381.986667pt;}
.y69{bottom:387.106667pt;}
.y8a{bottom:393.826667pt;}
.y21{bottom:394.626667pt;}
.y4d{bottom:396.226667pt;}
.yd1{bottom:399.266667pt;}
.ya9{bottom:404.226667pt;}
.y105{bottom:404.386667pt;}
.yf2{bottom:405.186667pt;}
.y146{bottom:405.506667pt;}
.y7c{bottom:408.546667pt;}
.y134{bottom:409.826667pt;}
.y20{bottom:413.026667pt;}
.y68{bottom:414.626667pt;}
.y89{bottom:421.346667pt;}
.y4c{bottom:423.906667pt;}
.yd0{bottom:426.786667pt;}
.yf1{bottom:429.186667pt;}
.y104{bottom:429.666667pt;}
.y1f{bottom:431.426667pt;}
.ya8{bottom:431.746667pt;}
.y7b{bottom:436.226667pt;}
.y133{bottom:437.346667pt;}
.y67{bottom:442.306667pt;}
.y88{bottom:449.026667pt;}
.y1e{bottom:449.666667pt;}
.y4b{bottom:451.426667pt;}
.ycf{bottom:454.466667pt;}
.yf0{bottom:455.586667pt;}
.y103{bottom:457.186667pt;}
.ya7{bottom:459.426667pt;}
.y145{bottom:460.706667pt;}
.y7a{bottom:463.746667pt;}
.y132{bottom:465.026667pt;}
.y1d{bottom:466.786667pt;}
.y66{bottom:469.826667pt;}
.y87{bottom:476.546667pt;}
.y4a{bottom:479.106667pt;}
.yce{bottom:481.986667pt;}
.yef{bottom:482.146667pt;}
.y102{bottom:484.866667pt;}
.y1c{bottom:485.186667pt;}
.yee{bottom:485.986667pt;}
.ya6{bottom:486.946667pt;}
.y79{bottom:491.426667pt;}
.y131{bottom:492.546667pt;}
.y65{bottom:497.506667pt;}
.y1b{bottom:503.586667pt;}
.y86{bottom:504.226667pt;}
.y49{bottom:506.626667pt;}
.ycd{bottom:509.666667pt;}
.y101{bottom:510.146667pt;}
.ya5{bottom:514.626667pt;}
.y144{bottom:515.906667pt;}
.yed{bottom:516.706667pt;}
.y78{bottom:518.946667pt;}
.y130{bottom:520.226667pt;}
.y1a{bottom:521.986667pt;}
.y64{bottom:525.026667pt;}
.y9e{bottom:527.426667pt;}
.y85{bottom:531.773333pt;}
.y100{bottom:533.213333pt;}
.y48{bottom:534.173333pt;}
.y143{bottom:534.333333pt;}
.ycc{bottom:537.213333pt;}
.y19{bottom:540.413333pt;}
.ya4{bottom:542.173333pt;}
.y77{bottom:544.413333pt;}
.y12f{bottom:547.773333pt;}
.yec{bottom:550.813333pt;}
.y63{bottom:552.573333pt;}
.y94{bottom:554.973333pt;}
.y18{bottom:558.813333pt;}
.y84{bottom:559.453333pt;}
.y47{bottom:561.853333pt;}
.ycb{bottom:562.653333pt;}
.y76{bottom:566.013333pt;}
.ya3{bottom:567.613333pt;}
.y142{bottom:570.973333pt;}
.y12e{bottom:575.453333pt;}
.y17{bottom:577.213333pt;}
.y62{bottom:580.253333pt;}
.yca{bottom:585.693333pt;}
.yeb{bottom:586.813333pt;}
.y83{bottom:586.973333pt;}
.y46{bottom:589.373333pt;}
.y16{bottom:595.613333pt;}
.y12d{bottom:602.973333pt;}
.yc9{bottom:607.293333pt;}
.y61{bottom:607.773333pt;}
.y82{bottom:612.413333pt;}
.y15{bottom:614.013333pt;}
.yea{bottom:616.413333pt;}
.y45{bottom:617.053333pt;}
.ye9{bottom:623.933333pt;}
.y141{bottom:626.173333pt;}
.y12c{bottom:630.653333pt;}
.y60{bottom:635.453333pt;}
.y44{bottom:644.573333pt;}
.y12b{bottom:648.893333pt;}
.y14{bottom:650.813333pt;}
.ye8{bottom:656.733333pt;}
.y5f{bottom:662.973333pt;}
.y13{bottom:669.213333pt;}
.y43{bottom:672.253333pt;}
.y12a{bottom:674.493333pt;}
.y140{bottom:681.373333pt;}
.ye7{bottom:684.573333pt;}
.yff{bottom:685.373333pt;}
.y12{bottom:687.613333pt;}
.y5e{bottom:690.653333pt;}
.y129{bottom:696.093333pt;}
.y42{bottom:699.773333pt;}
.y11{bottom:706.013333pt;}
.yfe{bottom:708.413333pt;}
.ye5{bottom:717.213333pt;}
.y41{bottom:718.173333pt;}
.y10{bottom:724.413333pt;}
.ye6{bottom:725.213333pt;}
.yfd{bottom:733.693333pt;}
.y40{bottom:736.573333pt;}
.yf{bottom:742.813333pt;}
.y5d{bottom:745.853333pt;}
.ye4{bottom:754.493333pt;}
.y3f{bottom:754.973333pt;}
.ye{bottom:761.213333pt;}
.ye3{bottom:762.013333pt;}
.y3e{bottom:773.413333pt;}
.y128{bottom:784.613333pt;}
.yfc{bottom:788.933333pt;}
.y3d{bottom:791.813333pt;}
.ye2{bottom:793.413333pt;}
.yd{bottom:798.053333pt;}
.y5c{bottom:801.093333pt;}
.y127{bottom:809.893333pt;}
.y3c{bottom:810.213333pt;}
.yfb{bottom:814.213333pt;}
.yc{bottom:816.453333pt;}
.ye1{bottom:819.813333pt;}
.ye0{bottom:823.013333pt;}
.y3b{bottom:828.613333pt;}
.yb{bottom:834.853333pt;}
.yfa{bottom:835.973333pt;}
.y126{bottom:837.413333pt;}
.y3a{bottom:847.013333pt;}
.ydf{bottom:852.453333pt;}
.ya{bottom:853.253333pt;}
.y5b{bottom:856.293333pt;}
.y75{bottom:858.693333pt;}
.y125{bottom:865.093333pt;}
.y39{bottom:865.413333pt;}
.y9{bottom:871.653333pt;}
.yde{bottom:879.973333pt;}
.y38{bottom:883.813333pt;}
.y116{bottom:889.013333pt;}
.y8{bottom:890.053333pt;}
.y37{bottom:902.213333pt;}
.y7{bottom:908.453333pt;}
.ydd{bottom:909.733333pt;}
.y5a{bottom:911.493333pt;}
.ya2{bottom:913.893333pt;}
.y10c{bottom:918.533333pt;}
.y115{bottom:918.693333pt;}
.y36{bottom:920.613333pt;}
.y6{bottom:927.333333pt;}
.y10d{bottom:932.613333pt;}
.y35{bottom:939.013333pt;}
.y10f{bottom:940.933333pt;}
.yf9{bottom:941.413333pt;}
.y10b{bottom:945.093333pt;}
.y114{bottom:945.253333pt;}
.y5{bottom:948.773333pt;}
.y34{bottom:957.413333pt;}
.y110{bottom:961.253333pt;}
.y59{bottom:966.693333pt;}
.y112{bottom:969.733333pt;}
.y4{bottom:970.213333pt;}
.y113{bottom:971.813333pt;}
.y33{bottom:975.813333pt;}
.y3{bottom:991.653333pt;}
.y32{bottom:994.213333pt;}
.y81{bottom:996.613333pt;}
.y1{bottom:1094.880000pt;}
.h17{height:8.320000pt;}
.h19{height:8.480000pt;}
.h18{height:20.320000pt;}
.hd{height:23.072000pt;}
.h10{height:45.920000pt;}
.h3{height:47.523750pt;}
.he{height:51.200000pt;}
.hb{height:52.134375pt;}
.ha{height:53.535000pt;}
.h9{height:57.375000pt;}
.h8{height:57.787500pt;}
.h1c{height:59.212609pt;}
.h1d{height:62.739770pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.hc{height:65.781915pt;}
.h2{height:67.837500pt;}
.hf{height:69.120000pt;}
.h4{height:75.465000pt;}
.h13{height:103.992812pt;}
.h15{height:114.468750pt;}
.h1b{height:120.000269pt;}
.h11{height:146.468750pt;}
.h12{height:149.028750pt;}
.h1a{height:152.826667pt;}
.h14{height:176.548750pt;}
.h16{height:932.613333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.000969pt;}
.w4{width:303.106667pt;}
.w3{width:303.226667pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:2.342537pt;}
.x2a{left:6.906667pt;}
.x3f{left:20.608923pt;}
.x40{left:21.590177pt;}
.x3d{left:45.173729pt;}
.xc{left:113.471988pt;}
.x3{left:122.911988pt;}
.x28{left:123.866667pt;}
.x30{left:124.831988pt;}
.x26{left:129.274667pt;}
.x9{left:138.266655pt;}
.x5{left:140.666655pt;}
.x4{left:146.266655pt;}
.xa{left:148.666655pt;}
.x29{left:151.554667pt;}
.x1a{left:160.666655pt;}
.xb{left:184.026655pt;}
.x44{left:188.986655pt;}
.x6{left:206.106655pt;}
.x2{left:214.906655pt;}
.x1d{left:226.106655pt;}
.x34{left:233.306655pt;}
.xe{left:260.546655pt;}
.x2d{left:261.986655pt;}
.x46{left:264.706655pt;}
.x25{left:270.146655pt;}
.x36{left:271.586655pt;}
.x13{left:277.666655pt;}
.x1b{left:280.866655pt;}
.x7{left:283.266655pt;}
.x1e{left:284.386655pt;}
.x37{left:293.826643pt;}
.xd{left:294.946655pt;}
.x16{left:297.506655pt;}
.x20{left:298.946655pt;}
.x38{left:301.506655pt;}
.x39{left:304.066655pt;}
.xf{left:305.506655pt;}
.x14{left:307.906655pt;}
.x42{left:308.866655pt;}
.x2b{left:317.986655pt;}
.x12{left:324.706655pt;}
.x11{left:329.186655pt;}
.x1f{left:336.066655pt;}
.x18{left:337.986655pt;}
.x22{left:346.626655pt;}
.x17{left:355.426655pt;}
.x15{left:356.546655pt;}
.x45{left:358.466655pt;}
.x10{left:361.666655pt;}
.x24{left:362.946655pt;}
.x19{left:374.946655pt;}
.x8{left:415.906655pt;}
.x27{left:417.986667pt;}
.x2f{left:425.533322pt;}
.x23{left:439.453322pt;}
.x3a{left:456.253310pt;}
.x2e{left:458.173322pt;}
.x3b{left:465.853322pt;}
.x2c{left:500.573322pt;}
.x3c{left:504.213333pt;}
.x41{left:560.253322pt;}
.x43{left:621.893322pt;}
.x33{left:627.973322pt;}
.x21{left:645.413322pt;}
.x32{left:659.973322pt;}
.x31{left:665.893322pt;}
.x1{left:701.093322pt;}
.x1c{left:703.333322pt;}
.x35{left:713.893322pt;}
}




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