
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_90b72cf6cfaf2daa752295b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_e6d48d6e181fefa52f241257.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ace578573d5af75eeeaea2ed.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a361a886c38d67a2069aef21.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_30be4a4205162aad328869b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_050d75036c94d37c4bdc375f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e2d030173000ce961dbe0593.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_39b9b38c57aea9ce464a7c81.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.909180;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:ffc;src:url('chunks/assets/font_b0b90952d757faff4b63949d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.909180;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:ffd;src:url('chunks/assets/font_d805d60f9ca6bc903fbdfa97.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v5{vertical-align:-85.680000px;}
.v7{vertical-align:-28.800000px;}
.v6{vertical-align:-17.280000px;}
.v1{vertical-align:-14.400000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:3.600000px;}
.vd{vertical-align:14.400000px;}
.v4{vertical-align:26.640000px;}
.va{vertical-align:48.240000px;}
.v9{vertical-align:54.720000px;}
.ve{vertical-align:62.640000px;}
.vc{vertical-align:64.080000px;}
.v3{vertical-align:77.760000px;}
.v2{vertical-align:92.160000px;}
.ls4{letter-spacing:-0.754143px;}
.ls2b{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls17{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.357829px;}
.ls13{letter-spacing:2.088000px;}
.ls28{letter-spacing:2.499120px;}
.ls29{letter-spacing:2.741760px;}
.ls10{letter-spacing:2.823120px;}
.lsd{letter-spacing:2.877120px;}
.ls27{letter-spacing:14.981760px;}
.ls1a{letter-spacing:15.552000px;}
.ls16{letter-spacing:15.641280px;}
.ls21{letter-spacing:15.696000px;}
.ls23{letter-spacing:15.816000px;}
.ls19{letter-spacing:16.056000px;}
.ls25{letter-spacing:16.176000px;}
.ls1c{letter-spacing:16.272000px;}
.ls26{letter-spacing:18.339120px;}
.lsf{letter-spacing:19.656000px;}
.ls14{letter-spacing:23.037120px;}
.lse{letter-spacing:23.757120px;}
.ls15{letter-spacing:67.244400px;}
.ls1f{letter-spacing:102.456000px;}
.ls1d{letter-spacing:103.296000px;}
.ls20{letter-spacing:106.056000px;}
.ls1b{letter-spacing:106.176000px;}
.lsc{letter-spacing:124.557120px;}
.ls18{letter-spacing:189.576000px;}
.ls22{letter-spacing:414.216000px;}
.ls11{letter-spacing:682.716000px;}
.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;}
}
.ws13{word-spacing:-72.216000px;}
.wsa{word-spacing:-72.000000px;}
.wsc{word-spacing:-71.928000px;}
.ws12{word-spacing:-71.784000px;}
.wsf{word-spacing:-71.712000px;}
.wse{word-spacing:-51.120000px;}
.wsb{word-spacing:-49.680000px;}
.ws19{word-spacing:-39.744000px;}
.ws9{word-spacing:-28.606320px;}
.ws1e{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.576000px;}
.wsd{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws1d{word-spacing:-17.496000px;}
.ws2{word-spacing:-15.984000px;}
.ws1b{word-spacing:-1.896000px;}
.ws1a{word-spacing:-1.176000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:0.704878px;}
.ws16{word-spacing:0.720000px;}
.ws14{word-spacing:1.800000px;}
.ws1c{word-spacing:1.908000px;}
.ws17{word-spacing:2.160000px;}
.ws15{word-spacing:2.304000px;}
.ws11{word-spacing:2.952000px;}
.ws18{word-spacing:3.024000px;}
.ws0{word-spacing:420.975840px;}
._28{margin-left:-32.328000px;}
._27{margin-left:-15.384000px;}
._2b{margin-left:-9.648000px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._2d{margin-left:-4.150080px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._e{width:2.520000px;}
._1b{width:3.744000px;}
._1e{width:4.829760px;}
._1c{width:6.350400px;}
._b{width:7.405200px;}
._6{width:8.640000px;}
._7{width:9.797760px;}
._10{width:11.352000px;}
._11{width:12.426960px;}
._1f{width:13.464000px;}
._c{width:14.472000px;}
._d{width:15.719520px;}
._16{width:16.992000px;}
._14{width:19.416000px;}
._a{width:21.168000px;}
._1d{width:22.525200px;}
._f{width:23.616000px;}
._12{width:24.696000px;}
._13{width:26.069760px;}
._8{width:27.552000px;}
._9{width:29.040000px;}
._21{width:30.253920px;}
._15{width:31.392000px;}
._20{width:32.520000px;}
._2a{width:34.255440px;}
._26{width:35.352000px;}
._17{width:36.504000px;}
._18{width:37.639440px;}
._2c{width:39.240000px;}
._19{width:41.544000px;}
._1a{width:42.912000px;}
._23{width:44.208000px;}
._22{width:45.371520px;}
._2e{width:47.143440px;}
._2f{width:48.312000px;}
._24{width:50.184000px;}
._25{width:51.197760px;}
._29{width:53.136000px;}
._31{width:54.155520px;}
._30{width:75.384000px;}
._5{width:431.756880px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs6{font-size:49.264682px;}
.fs8{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y10{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.330266px;}
.y13f{bottom:4.485000px;}
.y7d{bottom:4.500000px;}
.y140{bottom:14.745000px;}
.y11a{bottom:14.760000px;}
.y134{bottom:14.790000px;}
.y114{bottom:14.940000px;}
.y14{bottom:15.840000px;}
.yf{bottom:17.100000px;}
.y45{bottom:18.720000px;}
.y111{bottom:25.200000px;}
.y136{bottom:25.230000px;}
.y119{bottom:35.460000px;}
.y132{bottom:35.490000px;}
.y10f{bottom:35.640000px;}
.y110{bottom:45.900000px;}
.y135{bottom:45.930000px;}
.ye{bottom:46.800000px;}
.y15{bottom:53.460000px;}
.y133{bottom:56.190000px;}
.y113{bottom:56.340000px;}
.yc{bottom:56.700000px;}
.y117{bottom:66.600000px;}
.y112{bottom:66.630000px;}
.y13a{bottom:78.480000px;}
.y139{bottom:99.180000px;}
.y72{bottom:114.480000px;}
.y163{bottom:115.200000px;}
.y78{bottom:115.380000px;}
.ye6{bottom:117.000000px;}
.y115{bottom:118.800000px;}
.y138{bottom:119.880000px;}
.y9e{bottom:121.140000px;}
.y12f{bottom:122.940000px;}
.y14e{bottom:129.960000px;}
.ybd{bottom:130.140000px;}
.y43{bottom:131.580000px;}
.y71{bottom:135.180000px;}
.y162{bottom:135.900000px;}
.ye5{bottom:138.060000px;}
.y10e{bottom:140.220000px;}
.y9d{bottom:141.840000px;}
.y12e{bottom:143.640000px;}
.y14d{bottom:150.660000px;}
.ybc{bottom:150.840000px;}
.y42{bottom:152.280000px;}
.y70{bottom:155.880000px;}
.y161{bottom:156.600000px;}
.ye4{bottom:158.760000px;}
.y9c{bottom:162.540000px;}
.y12d{bottom:164.340000px;}
.y14c{bottom:171.360000px;}
.ybb{bottom:171.540000px;}
.y41{bottom:172.980000px;}
.y6f{bottom:176.580000px;}
.y160{bottom:177.300000px;}
.ye3{bottom:179.460000px;}
.y12c{bottom:180.540000px;}
.y9b{bottom:183.240000px;}
.y14b{bottom:192.060000px;}
.yba{bottom:192.600000px;}
.y40{bottom:193.680000px;}
.ye2{bottom:196.380000px;}
.y167{bottom:196.920000px;}
.y6e{bottom:197.280000px;}
.y15f{bottom:197.640000px;}
.y9a{bottom:203.580000px;}
.ye1{bottom:208.470000px;}
.y14a{bottom:212.790000px;}
.yb9{bottom:213.330000px;}
.y3f{bottom:214.770000px;}
.y6d{bottom:218.010000px;}
.y15e{bottom:218.730000px;}
.y99{bottom:224.310000px;}
.y10d{bottom:227.370000px;}
.y149{bottom:233.490000px;}
.yb8{bottom:234.030000px;}
.y3e{bottom:235.470000px;}
.y6c{bottom:238.710000px;}
.y15d{bottom:239.430000px;}
.ye0{bottom:241.050000px;}
.y98{bottom:245.370000px;}
.y10c{bottom:248.250000px;}
.y148{bottom:254.190000px;}
.yb7{bottom:254.730000px;}
.y3d{bottom:256.170000px;}
.y6b{bottom:259.410000px;}
.y15c{bottom:260.130000px;}
.ydf{bottom:261.750000px;}
.y97{bottom:266.070000px;}
.y10b{bottom:268.950000px;}
.y147{bottom:274.890000px;}
.yb6{bottom:275.430000px;}
.y3c{bottom:276.510000px;}
.y6a{bottom:280.110000px;}
.y15b{bottom:280.830000px;}
.yde{bottom:282.090000px;}
.y96{bottom:286.770000px;}
.y10a{bottom:289.650000px;}
.y146{bottom:295.590000px;}
.yb5{bottom:296.130000px;}
.y3b{bottom:297.570000px;}
.y69{bottom:300.810000px;}
.y15a{bottom:301.530000px;}
.ydd{bottom:303.150000px;}
.y109{bottom:310.350000px;}
.y145{bottom:316.290000px;}
.yb4{bottom:316.830000px;}
.y3a{bottom:318.270000px;}
.y68{bottom:321.510000px;}
.y159{bottom:322.230000px;}
.ydc{bottom:323.850000px;}
.y95{bottom:328.710000px;}
.y108{bottom:331.050000px;}
.y144{bottom:336.990000px;}
.yb3{bottom:337.710000px;}
.y39{bottom:338.970000px;}
.y67{bottom:342.210000px;}
.y158{bottom:342.930000px;}
.ydb{bottom:344.550000px;}
.y94{bottom:349.050000px;}
.y107{bottom:351.750000px;}
.y143{bottom:357.690000px;}
.yb2{bottom:358.410000px;}
.y38{bottom:359.670000px;}
.yda{bottom:361.470000px;}
.y66{bottom:362.910000px;}
.y157{bottom:363.630000px;}
.y93{bottom:369.750000px;}
.y106{bottom:372.450000px;}
.yd9{bottom:373.530000px;}
.y142{bottom:378.390000px;}
.yb1{bottom:379.470000px;}
.y37{bottom:380.370000px;}
.y65{bottom:383.610000px;}
.y156{bottom:384.330000px;}
.y92{bottom:390.450000px;}
.y105{bottom:393.150000px;}
.y141{bottom:399.090000px;}
.yb0{bottom:400.170000px;}
.y36{bottom:401.070000px;}
.y64{bottom:404.310000px;}
.y155{bottom:405.030000px;}
.yd8{bottom:406.110000px;}
.y91{bottom:411.510000px;}
.y104{bottom:413.850000px;}
.y13e{bottom:416.025000px;}
.yaf{bottom:420.870000px;}
.y35{bottom:421.770000px;}
.y63{bottom:425.010000px;}
.y154{bottom:425.730000px;}
.yd7{bottom:426.810000px;}
.y90{bottom:432.210000px;}
.y103{bottom:434.550000px;}
.yae{bottom:441.615000px;}
.y34{bottom:442.515000px;}
.y62{bottom:445.755000px;}
.y153{bottom:446.475000px;}
.yd6{bottom:447.015000px;}
.y8f{bottom:452.595000px;}
.y102{bottom:455.295000px;}
.y137{bottom:458.175000px;}
.yad{bottom:462.315000px;}
.y33{bottom:463.215000px;}
.y75{bottom:466.095000px;}
.y61{bottom:466.455000px;}
.y152{bottom:467.175000px;}
.yd5{bottom:468.075000px;}
.y8e{bottom:473.295000px;}
.y101{bottom:475.995000px;}
.yac{bottom:483.015000px;}
.y32{bottom:483.915000px;}
.y74{bottom:486.795000px;}
.y60{bottom:487.155000px;}
.y151{bottom:487.875000px;}
.yd4{bottom:488.775000px;}
.y8d{bottom:494.175000px;}
.y100{bottom:496.695000px;}
.y13d{bottom:500.295000px;}
.yab{bottom:503.715000px;}
.y31{bottom:504.615000px;}
.y166{bottom:507.495000px;}
.y5f{bottom:507.855000px;}
.y150{bottom:508.395000px;}
.yd3{bottom:509.475000px;}
.y8c{bottom:511.455000px;}
.yff{bottom:517.395000px;}
.yaa{bottom:524.415000px;}
.y14f{bottom:524.775000px;}
.y30{bottom:525.315000px;}
.y165{bottom:528.015000px;}
.y5e{bottom:528.375000px;}
.yd2{bottom:530.175000px;}
.y8b{bottom:534.495000px;}
.yfe{bottom:537.735000px;}
.y13c{bottom:542.415000px;}
.ya9{bottom:545.115000px;}
.y2f{bottom:546.015000px;}
.yd1{bottom:547.095000px;}
.y5d{bottom:549.075000px;}
.yfd{bottom:558.435000px;}
.yd0{bottom:559.155000px;}
.y8a{bottom:563.835000px;}
.ya8{bottom:565.815000px;}
.y2e{bottom:566.715000px;}
.y12b{bottom:567.615000px;}
.y5c{bottom:569.775000px;}
.yfc{bottom:579.495000px;}
.y89{bottom:584.535000px;}
.ya7{bottom:586.155000px;}
.y2d{bottom:587.415000px;}
.y12a{bottom:588.315000px;}
.y5b{bottom:590.475000px;}
.ycf{bottom:591.735000px;}
.yfb{bottom:600.195000px;}
.y88{bottom:605.235000px;}
.ya6{bottom:606.855000px;}
.y2c{bottom:608.115000px;}
.y129{bottom:609.015000px;}
.y5a{bottom:611.175000px;}
.yce{bottom:612.435000px;}
.yfa{bottom:620.715000px;}
.y87{bottom:625.575000px;}
.y13b{bottom:626.655000px;}
.ya5{bottom:627.915000px;}
.y2b{bottom:628.815000px;}
.y128{bottom:629.715000px;}
.y77{bottom:631.515000px;}
.y59{bottom:631.875000px;}
.ycd{bottom:633.135000px;}
.yf9{bottom:641.955000px;}
.y86{bottom:646.635000px;}
.y2a{bottom:649.515000px;}
.ya3{bottom:649.875000px;}
.y127{bottom:650.415000px;}
.y76{bottom:652.215000px;}
.y58{bottom:652.575000px;}
.ycc{bottom:653.835000px;}
.ya4{bottom:657.075000px;}
.yf8{bottom:662.115000px;}
.y85{bottom:667.335000px;}
.y131{bottom:668.955000px;}
.y29{bottom:670.215000px;}
.y126{bottom:671.115000px;}
.ya2{bottom:672.555000px;}
.y57{bottom:673.275000px;}
.yf7{bottom:674.175000px;}
.ycb{bottom:674.535000px;}
.y84{bottom:684.285000px;}
.y28{bottom:690.945000px;}
.y125{bottom:691.845000px;}
.y44{bottom:694.005000px;}
.yca{bottom:695.265000px;}
.y83{bottom:705.885000px;}
.yf6{bottom:706.785000px;}
.y27{bottom:711.645000px;}
.yc9{bottom:712.185000px;}
.y124{bottom:712.545000px;}
.y56{bottom:714.705000px;}
.yc8{bottom:724.245000px;}
.y82{bottom:727.305000px;}
.yf5{bottom:727.485000px;}
.y26{bottom:732.345000px;}
.y123{bottom:733.245000px;}
.y55{bottom:735.405000px;}
.yf4{bottom:747.825000px;}
.y81{bottom:748.725000px;}
.y25{bottom:753.045000px;}
.y122{bottom:753.945000px;}
.ya1{bottom:755.745000px;}
.y130{bottom:755.925000px;}
.y54{bottom:756.105000px;}
.yc7{bottom:756.465000px;}
.yf3{bottom:768.885000px;}
.y80{bottom:770.145000px;}
.y24{bottom:773.745000px;}
.y121{bottom:774.645000px;}
.y164{bottom:776.445000px;}
.y53{bottom:776.805000px;}
.yc6{bottom:777.525000px;}
.yf2{bottom:789.585000px;}
.y7f{bottom:791.565000px;}
.y23{bottom:794.445000px;}
.y120{bottom:795.345000px;}
.y52{bottom:797.505000px;}
.yc5{bottom:798.225000px;}
.yf1{bottom:810.285000px;}
.y7e{bottom:812.985000px;}
.y22{bottom:814.785000px;}
.y11f{bottom:816.045000px;}
.y51{bottom:818.205000px;}
.yc4{bottom:818.565000px;}
.yf0{bottom:831.705000px;}
.y7c{bottom:834.585000px;}
.y21{bottom:835.845000px;}
.y11e{bottom:836.745000px;}
.ya0{bottom:838.545000px;}
.y50{bottom:838.905000px;}
.yc3{bottom:839.625000px;}
.yef{bottom:847.905000px;}
.y20{bottom:856.545000px;}
.y11d{bottom:857.445000px;}
.y7b{bottom:859.425000px;}
.y4f{bottom:859.605000px;}
.yc2{bottom:860.325000px;}
.y1f{bottom:877.245000px;}
.y11c{bottom:878.145000px;}
.y4e{bottom:880.305000px;}
.yee{bottom:880.485000px;}
.yc1{bottom:881.025000px;}
.y1e{bottom:897.585000px;}
.y11b{bottom:898.845000px;}
.y9f{bottom:900.645000px;}
.y4d{bottom:901.005000px;}
.yed{bottom:901.185000px;}
.yc0{bottom:901.725000px;}
.y118{bottom:915.810000px;}
.ybf{bottom:918.510000px;}
.y1d{bottom:918.690000px;}
.yec{bottom:921.570000px;}
.y4c{bottom:921.750000px;}
.ybe{bottom:930.570000px;}
.y1c{bottom:939.390000px;}
.y4b{bottom:942.450000px;}
.yeb{bottom:942.630000px;}
.y1b{bottom:960.090000px;}
.y7a{bottom:962.790000px;}
.y4a{bottom:963.150000px;}
.yea{bottom:963.330000px;}
.y116{bottom:978.630000px;}
.y1a{bottom:980.430000px;}
.y79{bottom:983.490000px;}
.y49{bottom:983.850000px;}
.ye9{bottom:984.030000px;}
.ye8{bottom:1000.770000px;}
.y19{bottom:1000.950000px;}
.y48{bottom:1004.550000px;}
.ye7{bottom:1012.830000px;}
.y18{bottom:1018.590000px;}
.y47{bottom:1025.250000px;}
.y17{bottom:1042.710000px;}
.y46{bottom:1045.590000px;}
.y73{bottom:1045.950000px;}
.yd{bottom:1056.750000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.635319px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.790000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.648467px;}
.hc{height:16.198500px;}
.h20{height:20.698500px;}
.h14{height:20.700000px;}
.hb{height:29.685000px;}
.h7{height:31.952109px;}
.h6{height:39.247031px;}
.he{height:40.472227px;}
.h4{height:41.027344px;}
.h25{height:41.385000px;}
.h26{height:41.421000px;}
.h2{height:42.602344px;}
.h11{height:49.680000px;}
.h13{height:50.273438px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.ha{height:51.381523px;}
.h5{height:58.845000px;}
.h22{height:62.085000px;}
.h19{height:63.400781px;}
.h12{height:66.757500px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h21{height:82.785000px;}
.h23{height:82.830000px;}
.h1f{height:82.836000px;}
.hd{height:84.898125px;}
.h15{height:89.296875px;}
.h17{height:90.040781px;}
.h18{height:90.160781px;}
.h1b{height:137.536875px;}
.h1c{height:137.656875px;}
.h1a{height:144.016875px;}
.h1e{height:144.136875px;}
.h1d{height:154.096875px;}
.h16{height:181.456875px;}
.h24{height:209.865000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:41.745000px;}
.wf{width:44.085000px;}
.w11{width:47.325000px;}
.w10{width:48.081000px;}
.w18{width:52.005000px;}
.w1a{width:52.185000px;}
.w19{width:52.221000px;}
.w1b{width:59.925000px;}
.w5{width:63.036000px;}
.w12{width:63.165000px;}
.w13{width:64.969500px;}
.w15{width:66.600000px;}
.wa{width:68.781000px;}
.wb{width:70.380000px;}
.w16{width:72.360000px;}
.w17{width:73.296000px;}
.wc{width:76.680000px;}
.wd{width:77.436000px;}
.w14{width:85.881000px;}
.w9{width:94.129500px;}
.w7{width:95.749500px;}
.w3{width:103.946873px;}
.w6{width:199.830000px;}
.w2{width:330.733500px;}
.w4{width:403.980000px;}
.w8{width:542.070000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.729500px;}
.x5{left:10.798500px;}
.x9{left:15.105000px;}
.xe{left:47.880000px;}
.x4{left:59.221500px;}
.xf{left:61.560000px;}
.x6{left:74.514189px;}
.x10{left:84.960000px;}
.x11{left:97.770000px;}
.x12{left:111.450000px;}
.x13{left:125.310000px;}
.x17{left:127.306500px;}
.x3{left:135.036000px;}
.x14{left:139.170000px;}
.xb{left:150.330000px;}
.x15{left:152.130000px;}
.x3a{left:189.030000px;}
.x31{left:193.005000px;}
.x7{left:199.168689px;}
.x1{left:204.150000px;}
.x29{left:222.165000px;}
.x19{left:223.785000px;}
.x26{left:249.690000px;}
.xc{left:270.615000px;}
.x1c{left:276.915000px;}
.x32{left:279.615000px;}
.x2a{left:291.675000px;}
.x1d{left:299.955000px;}
.x27{left:313.275000px;}
.x1f{left:338.835000px;}
.xd{left:345.315000px;}
.x24{left:346.575000px;}
.x23{left:358.275000px;}
.x21{left:361.875000px;}
.x1a{left:379.875000px;}
.x1e{left:392.475000px;}
.x28{left:403.455000px;}
.x25{left:412.095000px;}
.xa{left:414.975000px;}
.x22{left:418.215000px;}
.x33{left:420.375000px;}
.x20{left:439.275000px;}
.x1b{left:467.745000px;}
.x2{left:475.305000px;}
.x8{left:487.380000px;}
.x34{left:494.400000px;}
.x2b{left:518.520000px;}
.x35{left:547.320000px;}
.x2c{left:561.000000px;}
.x36{left:600.060000px;}
.x2d{left:605.820000px;}
.x37{left:653.010000px;}
.x2e{left:654.630000px;}
.x2f{left:702.690000px;}
.x38{left:705.930000px;}
.x39{left:707.550000px;}
.x30{left:752.730000px;}
.x16{left:767.310000px;}
@media print{
.v5{vertical-align:-76.160000pt;}
.v7{vertical-align:-25.600000pt;}
.v6{vertical-align:-15.360000pt;}
.v1{vertical-align:-12.800000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.200000pt;}
.vd{vertical-align:12.800000pt;}
.v4{vertical-align:23.680000pt;}
.va{vertical-align:42.880000pt;}
.v9{vertical-align:48.640000pt;}
.ve{vertical-align:55.680000pt;}
.vc{vertical-align:56.960000pt;}
.v3{vertical-align:69.120000pt;}
.v2{vertical-align:81.920000pt;}
.ls4{letter-spacing:-0.670349pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls17{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.206959pt;}
.ls13{letter-spacing:1.856000pt;}
.ls28{letter-spacing:2.221440pt;}
.ls29{letter-spacing:2.437120pt;}
.ls10{letter-spacing:2.509440pt;}
.lsd{letter-spacing:2.557440pt;}
.ls27{letter-spacing:13.317120pt;}
.ls1a{letter-spacing:13.824000pt;}
.ls16{letter-spacing:13.903360pt;}
.ls21{letter-spacing:13.952000pt;}
.ls23{letter-spacing:14.058667pt;}
.ls19{letter-spacing:14.272000pt;}
.ls25{letter-spacing:14.378667pt;}
.ls1c{letter-spacing:14.464000pt;}
.ls26{letter-spacing:16.301440pt;}
.lsf{letter-spacing:17.472000pt;}
.ls14{letter-spacing:20.477440pt;}
.lse{letter-spacing:21.117440pt;}
.ls15{letter-spacing:59.772800pt;}
.ls1f{letter-spacing:91.072000pt;}
.ls1d{letter-spacing:91.818667pt;}
.ls20{letter-spacing:94.272000pt;}
.ls1b{letter-spacing:94.378667pt;}
.lsc{letter-spacing:110.717440pt;}
.ls18{letter-spacing:168.512000pt;}
.ls22{letter-spacing:368.192000pt;}
.ls11{letter-spacing:606.858667pt;}
.ws13{word-spacing:-64.192000pt;}
.wsa{word-spacing:-64.000000pt;}
.wsc{word-spacing:-63.936000pt;}
.ws12{word-spacing:-63.808000pt;}
.wsf{word-spacing:-63.744000pt;}
.wse{word-spacing:-45.440000pt;}
.wsb{word-spacing:-44.160000pt;}
.ws19{word-spacing:-35.328000pt;}
.ws9{word-spacing:-25.427840pt;}
.ws1e{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.512000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-15.552000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1b{word-spacing:-1.685333pt;}
.ws1a{word-spacing:-1.045333pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:0.626559pt;}
.ws16{word-spacing:0.640000pt;}
.ws14{word-spacing:1.600000pt;}
.ws1c{word-spacing:1.696000pt;}
.ws17{word-spacing:1.920000pt;}
.ws15{word-spacing:2.048000pt;}
.ws11{word-spacing:2.624000pt;}
.ws18{word-spacing:2.688000pt;}
.ws0{word-spacing:374.200747pt;}
._28{margin-left:-28.736000pt;}
._27{margin-left:-13.674667pt;}
._2b{margin-left:-8.576000pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._2d{margin-left:-3.688960pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._e{width:2.240000pt;}
._1b{width:3.328000pt;}
._1e{width:4.293120pt;}
._1c{width:5.644800pt;}
._b{width:6.582400pt;}
._6{width:7.680000pt;}
._7{width:8.709120pt;}
._10{width:10.090667pt;}
._11{width:11.046187pt;}
._1f{width:11.968000pt;}
._c{width:12.864000pt;}
._d{width:13.972907pt;}
._16{width:15.104000pt;}
._14{width:17.258667pt;}
._a{width:18.816000pt;}
._1d{width:20.022400pt;}
._f{width:20.992000pt;}
._12{width:21.952000pt;}
._13{width:23.173120pt;}
._8{width:24.490667pt;}
._9{width:25.813333pt;}
._21{width:26.892373pt;}
._15{width:27.904000pt;}
._20{width:28.906667pt;}
._2a{width:30.449280pt;}
._26{width:31.424000pt;}
._17{width:32.448000pt;}
._18{width:33.457280pt;}
._2c{width:34.880000pt;}
._19{width:36.928000pt;}
._1a{width:38.144000pt;}
._23{width:39.296000pt;}
._22{width:40.330240pt;}
._2e{width:41.905280pt;}
._2f{width:42.944000pt;}
._24{width:44.608000pt;}
._25{width:45.509120pt;}
._29{width:47.232000pt;}
._31{width:48.138240pt;}
._30{width:67.008000pt;}
._5{width:383.783893pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs6{font-size:43.790828pt;}
.fs8{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y10{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:2.960237pt;}
.y13f{bottom:3.986667pt;}
.y7d{bottom:4.000000pt;}
.y140{bottom:13.106667pt;}
.y11a{bottom:13.120000pt;}
.y134{bottom:13.146667pt;}
.y114{bottom:13.280000pt;}
.y14{bottom:14.080000pt;}
.yf{bottom:15.200000pt;}
.y45{bottom:16.640000pt;}
.y111{bottom:22.400000pt;}
.y136{bottom:22.426667pt;}
.y119{bottom:31.520000pt;}
.y132{bottom:31.546667pt;}
.y10f{bottom:31.680000pt;}
.y110{bottom:40.800000pt;}
.y135{bottom:40.826667pt;}
.ye{bottom:41.600000pt;}
.y15{bottom:47.520000pt;}
.y133{bottom:49.946667pt;}
.y113{bottom:50.080000pt;}
.yc{bottom:50.400000pt;}
.y117{bottom:59.200000pt;}
.y112{bottom:59.226667pt;}
.y13a{bottom:69.760000pt;}
.y139{bottom:88.160000pt;}
.y72{bottom:101.760000pt;}
.y163{bottom:102.400000pt;}
.y78{bottom:102.560000pt;}
.ye6{bottom:104.000000pt;}
.y115{bottom:105.600000pt;}
.y138{bottom:106.560000pt;}
.y9e{bottom:107.680000pt;}
.y12f{bottom:109.280000pt;}
.y14e{bottom:115.520000pt;}
.ybd{bottom:115.680000pt;}
.y43{bottom:116.960000pt;}
.y71{bottom:120.160000pt;}
.y162{bottom:120.800000pt;}
.ye5{bottom:122.720000pt;}
.y10e{bottom:124.640000pt;}
.y9d{bottom:126.080000pt;}
.y12e{bottom:127.680000pt;}
.y14d{bottom:133.920000pt;}
.ybc{bottom:134.080000pt;}
.y42{bottom:135.360000pt;}
.y70{bottom:138.560000pt;}
.y161{bottom:139.200000pt;}
.ye4{bottom:141.120000pt;}
.y9c{bottom:144.480000pt;}
.y12d{bottom:146.080000pt;}
.y14c{bottom:152.320000pt;}
.ybb{bottom:152.480000pt;}
.y41{bottom:153.760000pt;}
.y6f{bottom:156.960000pt;}
.y160{bottom:157.600000pt;}
.ye3{bottom:159.520000pt;}
.y12c{bottom:160.480000pt;}
.y9b{bottom:162.880000pt;}
.y14b{bottom:170.720000pt;}
.yba{bottom:171.200000pt;}
.y40{bottom:172.160000pt;}
.ye2{bottom:174.560000pt;}
.y167{bottom:175.040000pt;}
.y6e{bottom:175.360000pt;}
.y15f{bottom:175.680000pt;}
.y9a{bottom:180.960000pt;}
.ye1{bottom:185.306667pt;}
.y14a{bottom:189.146667pt;}
.yb9{bottom:189.626667pt;}
.y3f{bottom:190.906667pt;}
.y6d{bottom:193.786667pt;}
.y15e{bottom:194.426667pt;}
.y99{bottom:199.386667pt;}
.y10d{bottom:202.106667pt;}
.y149{bottom:207.546667pt;}
.yb8{bottom:208.026667pt;}
.y3e{bottom:209.306667pt;}
.y6c{bottom:212.186667pt;}
.y15d{bottom:212.826667pt;}
.ye0{bottom:214.266667pt;}
.y98{bottom:218.106667pt;}
.y10c{bottom:220.666667pt;}
.y148{bottom:225.946667pt;}
.yb7{bottom:226.426667pt;}
.y3d{bottom:227.706667pt;}
.y6b{bottom:230.586667pt;}
.y15c{bottom:231.226667pt;}
.ydf{bottom:232.666667pt;}
.y97{bottom:236.506667pt;}
.y10b{bottom:239.066667pt;}
.y147{bottom:244.346667pt;}
.yb6{bottom:244.826667pt;}
.y3c{bottom:245.786667pt;}
.y6a{bottom:248.986667pt;}
.y15b{bottom:249.626667pt;}
.yde{bottom:250.746667pt;}
.y96{bottom:254.906667pt;}
.y10a{bottom:257.466667pt;}
.y146{bottom:262.746667pt;}
.yb5{bottom:263.226667pt;}
.y3b{bottom:264.506667pt;}
.y69{bottom:267.386667pt;}
.y15a{bottom:268.026667pt;}
.ydd{bottom:269.466667pt;}
.y109{bottom:275.866667pt;}
.y145{bottom:281.146667pt;}
.yb4{bottom:281.626667pt;}
.y3a{bottom:282.906667pt;}
.y68{bottom:285.786667pt;}
.y159{bottom:286.426667pt;}
.ydc{bottom:287.866667pt;}
.y95{bottom:292.186667pt;}
.y108{bottom:294.266667pt;}
.y144{bottom:299.546667pt;}
.yb3{bottom:300.186667pt;}
.y39{bottom:301.306667pt;}
.y67{bottom:304.186667pt;}
.y158{bottom:304.826667pt;}
.ydb{bottom:306.266667pt;}
.y94{bottom:310.266667pt;}
.y107{bottom:312.666667pt;}
.y143{bottom:317.946667pt;}
.yb2{bottom:318.586667pt;}
.y38{bottom:319.706667pt;}
.yda{bottom:321.306667pt;}
.y66{bottom:322.586667pt;}
.y157{bottom:323.226667pt;}
.y93{bottom:328.666667pt;}
.y106{bottom:331.066667pt;}
.yd9{bottom:332.026667pt;}
.y142{bottom:336.346667pt;}
.yb1{bottom:337.306667pt;}
.y37{bottom:338.106667pt;}
.y65{bottom:340.986667pt;}
.y156{bottom:341.626667pt;}
.y92{bottom:347.066667pt;}
.y105{bottom:349.466667pt;}
.y141{bottom:354.746667pt;}
.yb0{bottom:355.706667pt;}
.y36{bottom:356.506667pt;}
.y64{bottom:359.386667pt;}
.y155{bottom:360.026667pt;}
.yd8{bottom:360.986667pt;}
.y91{bottom:365.786667pt;}
.y104{bottom:367.866667pt;}
.y13e{bottom:369.800000pt;}
.yaf{bottom:374.106667pt;}
.y35{bottom:374.906667pt;}
.y63{bottom:377.786667pt;}
.y154{bottom:378.426667pt;}
.yd7{bottom:379.386667pt;}
.y90{bottom:384.186667pt;}
.y103{bottom:386.266667pt;}
.yae{bottom:392.546667pt;}
.y34{bottom:393.346667pt;}
.y62{bottom:396.226667pt;}
.y153{bottom:396.866667pt;}
.yd6{bottom:397.346667pt;}
.y8f{bottom:402.306667pt;}
.y102{bottom:404.706667pt;}
.y137{bottom:407.266667pt;}
.yad{bottom:410.946667pt;}
.y33{bottom:411.746667pt;}
.y75{bottom:414.306667pt;}
.y61{bottom:414.626667pt;}
.y152{bottom:415.266667pt;}
.yd5{bottom:416.066667pt;}
.y8e{bottom:420.706667pt;}
.y101{bottom:423.106667pt;}
.yac{bottom:429.346667pt;}
.y32{bottom:430.146667pt;}
.y74{bottom:432.706667pt;}
.y60{bottom:433.026667pt;}
.y151{bottom:433.666667pt;}
.yd4{bottom:434.466667pt;}
.y8d{bottom:439.266667pt;}
.y100{bottom:441.506667pt;}
.y13d{bottom:444.706667pt;}
.yab{bottom:447.746667pt;}
.y31{bottom:448.546667pt;}
.y166{bottom:451.106667pt;}
.y5f{bottom:451.426667pt;}
.y150{bottom:451.906667pt;}
.yd3{bottom:452.866667pt;}
.y8c{bottom:454.626667pt;}
.yff{bottom:459.906667pt;}
.yaa{bottom:466.146667pt;}
.y14f{bottom:466.466667pt;}
.y30{bottom:466.946667pt;}
.y165{bottom:469.346667pt;}
.y5e{bottom:469.666667pt;}
.yd2{bottom:471.266667pt;}
.y8b{bottom:475.106667pt;}
.yfe{bottom:477.986667pt;}
.y13c{bottom:482.146667pt;}
.ya9{bottom:484.546667pt;}
.y2f{bottom:485.346667pt;}
.yd1{bottom:486.306667pt;}
.y5d{bottom:488.066667pt;}
.yfd{bottom:496.386667pt;}
.yd0{bottom:497.026667pt;}
.y8a{bottom:501.186667pt;}
.ya8{bottom:502.946667pt;}
.y2e{bottom:503.746667pt;}
.y12b{bottom:504.546667pt;}
.y5c{bottom:506.466667pt;}
.yfc{bottom:515.106667pt;}
.y89{bottom:519.586667pt;}
.ya7{bottom:521.026667pt;}
.y2d{bottom:522.146667pt;}
.y12a{bottom:522.946667pt;}
.y5b{bottom:524.866667pt;}
.ycf{bottom:525.986667pt;}
.yfb{bottom:533.506667pt;}
.y88{bottom:537.986667pt;}
.ya6{bottom:539.426667pt;}
.y2c{bottom:540.546667pt;}
.y129{bottom:541.346667pt;}
.y5a{bottom:543.266667pt;}
.yce{bottom:544.386667pt;}
.yfa{bottom:551.746667pt;}
.y87{bottom:556.066667pt;}
.y13b{bottom:557.026667pt;}
.ya5{bottom:558.146667pt;}
.y2b{bottom:558.946667pt;}
.y128{bottom:559.746667pt;}
.y77{bottom:561.346667pt;}
.y59{bottom:561.666667pt;}
.ycd{bottom:562.786667pt;}
.yf9{bottom:570.626667pt;}
.y86{bottom:574.786667pt;}
.y2a{bottom:577.346667pt;}
.ya3{bottom:577.666667pt;}
.y127{bottom:578.146667pt;}
.y76{bottom:579.746667pt;}
.y58{bottom:580.066667pt;}
.ycc{bottom:581.186667pt;}
.ya4{bottom:584.066667pt;}
.yf8{bottom:588.546667pt;}
.y85{bottom:593.186667pt;}
.y131{bottom:594.626667pt;}
.y29{bottom:595.746667pt;}
.y126{bottom:596.546667pt;}
.ya2{bottom:597.826667pt;}
.y57{bottom:598.466667pt;}
.yf7{bottom:599.266667pt;}
.ycb{bottom:599.586667pt;}
.y84{bottom:608.253333pt;}
.y28{bottom:614.173333pt;}
.y125{bottom:614.973333pt;}
.y44{bottom:616.893333pt;}
.yca{bottom:618.013333pt;}
.y83{bottom:627.453333pt;}
.yf6{bottom:628.253333pt;}
.y27{bottom:632.573333pt;}
.yc9{bottom:633.053333pt;}
.y124{bottom:633.373333pt;}
.y56{bottom:635.293333pt;}
.yc8{bottom:643.773333pt;}
.y82{bottom:646.493333pt;}
.yf5{bottom:646.653333pt;}
.y26{bottom:650.973333pt;}
.y123{bottom:651.773333pt;}
.y55{bottom:653.693333pt;}
.yf4{bottom:664.733333pt;}
.y81{bottom:665.533333pt;}
.y25{bottom:669.373333pt;}
.y122{bottom:670.173333pt;}
.ya1{bottom:671.773333pt;}
.y130{bottom:671.933333pt;}
.y54{bottom:672.093333pt;}
.yc7{bottom:672.413333pt;}
.yf3{bottom:683.453333pt;}
.y80{bottom:684.573333pt;}
.y24{bottom:687.773333pt;}
.y121{bottom:688.573333pt;}
.y164{bottom:690.173333pt;}
.y53{bottom:690.493333pt;}
.yc6{bottom:691.133333pt;}
.yf2{bottom:701.853333pt;}
.y7f{bottom:703.613333pt;}
.y23{bottom:706.173333pt;}
.y120{bottom:706.973333pt;}
.y52{bottom:708.893333pt;}
.yc5{bottom:709.533333pt;}
.yf1{bottom:720.253333pt;}
.y7e{bottom:722.653333pt;}
.y22{bottom:724.253333pt;}
.y11f{bottom:725.373333pt;}
.y51{bottom:727.293333pt;}
.yc4{bottom:727.613333pt;}
.yf0{bottom:739.293333pt;}
.y7c{bottom:741.853333pt;}
.y21{bottom:742.973333pt;}
.y11e{bottom:743.773333pt;}
.ya0{bottom:745.373333pt;}
.y50{bottom:745.693333pt;}
.yc3{bottom:746.333333pt;}
.yef{bottom:753.693333pt;}
.y20{bottom:761.373333pt;}
.y11d{bottom:762.173333pt;}
.y7b{bottom:763.933333pt;}
.y4f{bottom:764.093333pt;}
.yc2{bottom:764.733333pt;}
.y1f{bottom:779.773333pt;}
.y11c{bottom:780.573333pt;}
.y4e{bottom:782.493333pt;}
.yee{bottom:782.653333pt;}
.yc1{bottom:783.133333pt;}
.y1e{bottom:797.853333pt;}
.y11b{bottom:798.973333pt;}
.y9f{bottom:800.573333pt;}
.y4d{bottom:800.893333pt;}
.yed{bottom:801.053333pt;}
.yc0{bottom:801.533333pt;}
.y118{bottom:814.053333pt;}
.ybf{bottom:816.453333pt;}
.y1d{bottom:816.613333pt;}
.yec{bottom:819.173333pt;}
.y4c{bottom:819.333333pt;}
.ybe{bottom:827.173333pt;}
.y1c{bottom:835.013333pt;}
.y4b{bottom:837.733333pt;}
.yeb{bottom:837.893333pt;}
.y1b{bottom:853.413333pt;}
.y7a{bottom:855.813333pt;}
.y4a{bottom:856.133333pt;}
.yea{bottom:856.293333pt;}
.y116{bottom:869.893333pt;}
.y1a{bottom:871.493333pt;}
.y79{bottom:874.213333pt;}
.y49{bottom:874.533333pt;}
.ye9{bottom:874.693333pt;}
.ye8{bottom:889.573333pt;}
.y19{bottom:889.733333pt;}
.y48{bottom:892.933333pt;}
.ye7{bottom:900.293333pt;}
.y18{bottom:905.413333pt;}
.y47{bottom:911.333333pt;}
.y17{bottom:926.853333pt;}
.y46{bottom:929.413333pt;}
.y73{bottom:929.733333pt;}
.yd{bottom:939.333333pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.564728pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.813333pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:13.909749pt;}
.hc{height:14.398667pt;}
.h20{height:18.398667pt;}
.h14{height:18.400000pt;}
.hb{height:26.386667pt;}
.h7{height:28.401875pt;}
.h6{height:34.886250pt;}
.he{height:35.975313pt;}
.h4{height:36.468750pt;}
.h25{height:36.786667pt;}
.h26{height:36.818667pt;}
.h2{height:37.868750pt;}
.h11{height:44.160000pt;}
.h13{height:44.687500pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.ha{height:45.672465pt;}
.h5{height:52.306667pt;}
.h22{height:55.186667pt;}
.h19{height:56.356250pt;}
.h12{height:59.340000pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h21{height:73.586667pt;}
.h23{height:73.626667pt;}
.h1f{height:73.632000pt;}
.hd{height:75.465000pt;}
.h15{height:79.375000pt;}
.h17{height:80.036250pt;}
.h18{height:80.142917pt;}
.h1b{height:122.255000pt;}
.h1c{height:122.361667pt;}
.h1a{height:128.015000pt;}
.h1e{height:128.121667pt;}
.h1d{height:136.975000pt;}
.h16{height:161.295000pt;}
.h24{height:186.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:37.106667pt;}
.wf{width:39.186667pt;}
.w11{width:42.066667pt;}
.w10{width:42.738667pt;}
.w18{width:46.226667pt;}
.w1a{width:46.386667pt;}
.w19{width:46.418667pt;}
.w1b{width:53.266667pt;}
.w5{width:56.032000pt;}
.w12{width:56.146667pt;}
.w13{width:57.750667pt;}
.w15{width:59.200000pt;}
.wa{width:61.138667pt;}
.wb{width:62.560000pt;}
.w16{width:64.320000pt;}
.w17{width:65.152000pt;}
.wc{width:68.160000pt;}
.wd{width:68.832000pt;}
.w14{width:76.338667pt;}
.w9{width:83.670667pt;}
.w7{width:85.110667pt;}
.w3{width:92.397221pt;}
.w6{width:177.626667pt;}
.w2{width:293.985333pt;}
.w4{width:359.093333pt;}
.w8{width:481.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.870667pt;}
.x5{left:9.598667pt;}
.x9{left:13.426667pt;}
.xe{left:42.560000pt;}
.x4{left:52.641333pt;}
.xf{left:54.720000pt;}
.x6{left:66.234834pt;}
.x10{left:75.520000pt;}
.x11{left:86.906667pt;}
.x12{left:99.066667pt;}
.x13{left:111.386667pt;}
.x17{left:113.161333pt;}
.x3{left:120.032000pt;}
.x14{left:123.706667pt;}
.xb{left:133.626667pt;}
.x15{left:135.226667pt;}
.x3a{left:168.026667pt;}
.x31{left:171.560000pt;}
.x7{left:177.038834pt;}
.x1{left:181.466667pt;}
.x29{left:197.480000pt;}
.x19{left:198.920000pt;}
.x26{left:221.946667pt;}
.xc{left:240.546667pt;}
.x1c{left:246.146667pt;}
.x32{left:248.546667pt;}
.x2a{left:259.266667pt;}
.x1d{left:266.626667pt;}
.x27{left:278.466667pt;}
.x1f{left:301.186667pt;}
.xd{left:306.946667pt;}
.x24{left:308.066667pt;}
.x23{left:318.466667pt;}
.x21{left:321.666667pt;}
.x1a{left:337.666667pt;}
.x1e{left:348.866667pt;}
.x28{left:358.626667pt;}
.x25{left:366.306667pt;}
.xa{left:368.866667pt;}
.x22{left:371.746667pt;}
.x33{left:373.666667pt;}
.x20{left:390.466667pt;}
.x1b{left:415.773333pt;}
.x2{left:422.493333pt;}
.x8{left:433.226667pt;}
.x34{left:439.466667pt;}
.x2b{left:460.906667pt;}
.x35{left:486.506667pt;}
.x2c{left:498.666667pt;}
.x36{left:533.386667pt;}
.x2d{left:538.506667pt;}
.x37{left:580.453333pt;}
.x2e{left:581.893333pt;}
.x2f{left:624.613333pt;}
.x38{left:627.493333pt;}
.x39{left:628.933333pt;}
.x30{left:669.093333pt;}
.x16{left:682.053333pt;}
}




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