
    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_d6c316c5e22896e1b9d5a16e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_f18f7b0938d3e62e590e96c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_e4aa6589e706d0dd067c5d8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_54c3b7cd6af6eeda8876303d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9b93e800903e7e1b7623197e.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_025a6eefab3075f1fa762955.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_67eea56ca2b85d2034fa50d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.716797;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_abdd5bbd2a938bb8e2aa0acb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_9b93e800903e7e1b7623197e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6528c1825d2397604b8d9dee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_240204a449d66126b608d155.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.239258;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_8e684d2e36eb6c6159e3e354.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.704102;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:ffe;src:url('chunks/assets/font_f79697a79e7b4575f70e0cf0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.v3{vertical-align:41.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.240000px;}
.ls2{letter-spacing:15.000000px;}
.ls1{letter-spacing:35.400000px;}
.ls5{letter-spacing:74.880000px;}
.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;}
}
.ws2{word-spacing:-48.600000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.000000px;}
.ws3{word-spacing:-10.500000px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:34.128000px;}
.ws7{word-spacing:36.000000px;}
.ws17{word-spacing:37.800000px;}
.ws15{word-spacing:41.976000px;}
.ws9{word-spacing:98.400000px;}
.ws8{word-spacing:115.152000px;}
.ws12{word-spacing:120.768000px;}
.ws11{word-spacing:129.768000px;}
.wsd{word-spacing:138.168000px;}
.wsc{word-spacing:139.800000px;}
.wse{word-spacing:151.800000px;}
.wsf{word-spacing:154.968000px;}
.wsa{word-spacing:156.168000px;}
.ws10{word-spacing:157.800000px;}
.wsb{word-spacing:186.768000px;}
.ws16{word-spacing:626.544000px;}
.ws14{word-spacing:663.144000px;}
.ws6{word-spacing:669.144000px;}
.ws4{word-spacing:742.344000px;}
._8{margin-left:-2.232000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._9{width:2.376000px;}
._5{width:3.384000px;}
._a{width:4.464000px;}
._6{width:5.832000px;}
._7{width:7.056000px;}
._3{width:8.280000px;}
._2{width:9.360000px;}
._4{width:10.368000px;}
._b{width:11.520000px;}
._c{width:13.104000px;}
._f{width:14.400000px;}
._10{width:15.408000px;}
._12{width:16.920000px;}
._1d{width:19.296000px;}
._e{width:20.304000px;}
._13{width:21.816000px;}
._11{width:23.640000px;}
._18{width:24.744000px;}
._17{width:25.848000px;}
._1b{width:27.000000px;}
._16{width:28.512000px;}
._2e{width:30.240000px;}
._1e{width:31.248000px;}
._15{width:35.136000px;}
._1c{width:38.592000px;}
._2b{width:46.080000px;}
._2d{width:47.088000px;}
._29{width:63.000000px;}
._d{width:66.672000px;}
._2c{width:93.192000px;}
._27{width:99.576000px;}
._22{width:103.176000px;}
._21{width:132.864000px;}
._23{width:135.600000px;}
._25{width:140.976000px;}
._1f{width:149.976000px;}
._19{width:185.400000px;}
._24{width:212.976000px;}
._26{width:266.976000px;}
._20{width:319.176000px;}
._14{width:646.440000px;}
._1a{width:693.072000px;}
._28{width:717.600000px;}
._2a{width:753.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.200000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.909000px;}
.y4e{bottom:78.750000px;}
.y4d{bottom:129.000000px;}
.yc9{bottom:130.500000px;}
.y7c{bottom:135.150000px;}
.yc4{bottom:142.350000px;}
.y151{bottom:145.500000px;}
.y11d{bottom:145.800000px;}
.yf0{bottom:146.100000px;}
.y1bc{bottom:147.900000px;}
.ya3{bottom:148.800000px;}
.y122{bottom:149.550000px;}
.y18a{bottom:151.050000px;}
.yc8{bottom:151.200000px;}
.y19c{bottom:152.100000px;}
.y4c{bottom:152.400000px;}
.y16b{bottom:153.750000px;}
.yc3{bottom:163.050000px;}
.y4b{bottom:164.250000px;}
.y1ab{bottom:165.300000px;}
.y150{bottom:166.200000px;}
.y11c{bottom:166.500000px;}
.yef{bottom:166.800000px;}
.y1bb{bottom:168.600000px;}
.ya2{bottom:169.500000px;}
.y121{bottom:171.450000px;}
.y189{bottom:171.750000px;}
.yc7{bottom:171.900000px;}
.y19b{bottom:172.800000px;}
.y16a{bottom:174.450000px;}
.y7b{bottom:175.200000px;}
.y4a{bottom:181.500000px;}
.yc2{bottom:183.750000px;}
.y1aa{bottom:186.000000px;}
.y14f{bottom:186.900000px;}
.y11b{bottom:187.200000px;}
.yee{bottom:187.500000px;}
.ya1{bottom:190.200000px;}
.y188{bottom:192.450000px;}
.y19a{bottom:193.500000px;}
.y120{bottom:193.800000px;}
.y169{bottom:195.150000px;}
.y7a{bottom:195.900000px;}
.yc1{bottom:204.600000px;}
.y49{bottom:204.900000px;}
.y1a9{bottom:206.700000px;}
.y14e{bottom:207.600000px;}
.y11a{bottom:207.900000px;}
.yed{bottom:208.350000px;}
.y1ba{bottom:211.650000px;}
.y187{bottom:213.150000px;}
.yc6{bottom:214.950000px;}
.y168{bottom:215.850000px;}
.y79{bottom:216.600000px;}
.y14d{bottom:217.950000px;}
.yc0{bottom:226.500000px;}
.y1a8{bottom:227.400000px;}
.y119{bottom:228.600000px;}
.yec{bottom:230.250000px;}
.ya0{bottom:231.600000px;}
.y1b9{bottom:232.350000px;}
.y186{bottom:233.850000px;}
.y48{bottom:235.650000px;}
.y167{bottom:236.550000px;}
.y78{bottom:237.300000px;}
.ybf{bottom:247.200000px;}
.y14c{bottom:249.000000px;}
.y118{bottom:249.300000px;}
.yeb{bottom:250.950000px;}
.y9f{bottom:252.300000px;}
.y1b8{bottom:253.050000px;}
.y185{bottom:254.550000px;}
.y47{bottom:256.350000px;}
.y166{bottom:257.250000px;}
.y77{bottom:258.000000px;}
.y14b{bottom:259.350000px;}
.ybe{bottom:268.050000px;}
.y117{bottom:270.000000px;}
.y1a7{bottom:270.450000px;}
.yea{bottom:271.650000px;}
.y9e{bottom:273.000000px;}
.y184{bottom:275.250000px;}
.y46{bottom:277.050000px;}
.y199{bottom:277.200000px;}
.y165{bottom:277.950000px;}
.y76{bottom:278.700000px;}
.ybd{bottom:289.950000px;}
.y14a{bottom:290.400000px;}
.y116{bottom:290.700000px;}
.y1a6{bottom:291.150000px;}
.ye9{bottom:292.350000px;}
.y9d{bottom:293.700000px;}
.y183{bottom:295.950000px;}
.y1b7{bottom:296.100000px;}
.y45{bottom:297.750000px;}
.y164{bottom:298.650000px;}
.y75{bottom:299.400000px;}
.ybc{bottom:310.650000px;}
.y149{bottom:311.100000px;}
.y115{bottom:311.400000px;}
.y1a5{bottom:311.850000px;}
.ye8{bottom:313.050000px;}
.y9c{bottom:314.400000px;}
.y182{bottom:316.650000px;}
.y1b6{bottom:316.800000px;}
.y44{bottom:318.450000px;}
.y163{bottom:319.350000px;}
.y74{bottom:320.100000px;}
.ybb{bottom:331.350000px;}
.y148{bottom:331.800000px;}
.y114{bottom:332.100000px;}
.y1a4{bottom:332.550000px;}
.ye7{bottom:333.750000px;}
.y9b{bottom:335.100000px;}
.y181{bottom:337.350000px;}
.y43{bottom:339.150000px;}
.y162{bottom:340.050000px;}
.y73{bottom:340.800000px;}
.y147{bottom:342.150000px;}
.yba{bottom:352.050000px;}
.y113{bottom:352.800000px;}
.ye6{bottom:354.450000px;}
.y9a{bottom:355.800000px;}
.y180{bottom:358.050000px;}
.y1b5{bottom:358.200000px;}
.y42{bottom:359.850000px;}
.y161{bottom:360.750000px;}
.y72{bottom:361.500000px;}
.yb9{bottom:372.750000px;}
.y146{bottom:373.200000px;}
.y112{bottom:373.500000px;}
.y1a3{bottom:375.600000px;}
.y99{bottom:376.500000px;}
.y17f{bottom:378.750000px;}
.y1b4{bottom:378.900000px;}
.y41{bottom:380.550000px;}
.y160{bottom:381.450000px;}
.y71{bottom:382.200000px;}
.y1c{bottom:391.200000px;}
.yb8{bottom:393.600000px;}
.y144{bottom:393.900000px;}
.y111{bottom:394.200000px;}
.y1a2{bottom:396.300000px;}
.y98{bottom:397.200000px;}
.ye5{bottom:397.500000px;}
.y1b3{bottom:399.600000px;}
.y40{bottom:401.250000px;}
.y15f{bottom:402.150000px;}
.y70{bottom:402.900000px;}
.y1b{bottom:411.900000px;}
.y145{bottom:414.600000px;}
.y110{bottom:414.900000px;}
.yb7{bottom:415.500000px;}
.y1a1{bottom:417.000000px;}
.y97{bottom:417.900000px;}
.y17e{bottom:421.050000px;}
.y3f{bottom:421.950000px;}
.y15e{bottom:422.850000px;}
.y6f{bottom:423.600000px;}
.y1a{bottom:432.600000px;}
.y143{bottom:435.300000px;}
.y10f{bottom:435.600000px;}
.yb6{bottom:436.200000px;}
.y1a0{bottom:437.700000px;}
.y96{bottom:438.600000px;}
.y1b2{bottom:441.000000px;}
.y3e{bottom:442.650000px;}
.y15d{bottom:443.550000px;}
.y6e{bottom:444.300000px;}
.y19{bottom:453.300000px;}
.y142{bottom:456.000000px;}
.y10e{bottom:456.300000px;}
.yb5{bottom:456.900000px;}
.y95{bottom:459.300000px;}
.ye4{bottom:459.600000px;}
.y1b1{bottom:461.700000px;}
.y17d{bottom:462.600000px;}
.y3d{bottom:463.350000px;}
.y15c{bottom:464.250000px;}
.y6d{bottom:465.000000px;}
.y18{bottom:474.000000px;}
.y141{bottom:476.700000px;}
.y10d{bottom:477.000000px;}
.yb4{bottom:477.600000px;}
.y19f{bottom:479.100000px;}
.ye3{bottom:480.300000px;}
.y3c{bottom:484.050000px;}
.y15b{bottom:484.950000px;}
.y11f{bottom:485.700000px;}
.y17{bottom:494.700000px;}
.y140{bottom:497.400000px;}
.y10c{bottom:497.700000px;}
.yb3{bottom:498.450000px;}
.y19e{bottom:499.800000px;}
.ye2{bottom:501.000000px;}
.y94{bottom:501.450000px;}
.y1b0{bottom:503.100000px;}
.y3b{bottom:504.750000px;}
.y15a{bottom:505.650000px;}
.y6c{bottom:506.400000px;}
.y13f{bottom:507.750000px;}
.y16{bottom:515.400000px;}
.y10b{bottom:518.400000px;}
.yb2{bottom:520.350000px;}
.ye1{bottom:521.850000px;}
.y93{bottom:522.150000px;}
.y1af{bottom:523.800000px;}
.y3a{bottom:525.450000px;}
.y159{bottom:526.350000px;}
.y6b{bottom:527.100000px;}
.y15{bottom:536.100000px;}
.y13e{bottom:538.800000px;}
.y10a{bottom:539.100000px;}
.yb1{bottom:541.050000px;}
.y92{bottom:542.850000px;}
.ye0{bottom:543.750000px;}
.y1ae{bottom:544.500000px;}
.y39{bottom:546.150000px;}
.y198{bottom:547.050000px;}
.y6a{bottom:547.800000px;}
.y13d{bottom:549.150000px;}
.y14{bottom:556.800000px;}
.y109{bottom:559.800000px;}
.yb0{bottom:561.750000px;}
.y91{bottom:563.550000px;}
.ydf{bottom:564.450000px;}
.y38{bottom:566.850000px;}
.y158{bottom:567.750000px;}
.y69{bottom:568.500000px;}
.y13{bottom:577.500000px;}
.y13c{bottom:580.200000px;}
.y108{bottom:580.500000px;}
.yaf{bottom:582.450000px;}
.y90{bottom:584.250000px;}
.yde{bottom:585.150000px;}
.y1ad{bottom:585.900000px;}
.y37{bottom:587.550000px;}
.y197{bottom:588.450000px;}
.y68{bottom:589.200000px;}
.y12{bottom:598.200000px;}
.y157{bottom:599.550000px;}
.y13b{bottom:600.900000px;}
.y107{bottom:601.200000px;}
.yae{bottom:603.300000px;}
.y8f{bottom:604.950000px;}
.ydd{bottom:605.850000px;}
.y36{bottom:608.250000px;}
.y196{bottom:609.150000px;}
.y67{bottom:609.900000px;}
.y11{bottom:618.900000px;}
.y106{bottom:621.900000px;}
.yad{bottom:625.200000px;}
.y8e{bottom:625.650000px;}
.ydc{bottom:626.550000px;}
.y35{bottom:628.950000px;}
.y195{bottom:629.850000px;}
.y66{bottom:630.600000px;}
.y105{bottom:642.600000px;}
.yac{bottom:645.900000px;}
.y8d{bottom:646.350000px;}
.ydb{bottom:647.250000px;}
.y34{bottom:649.650000px;}
.y194{bottom:650.550000px;}
.y65{bottom:651.300000px;}
.y10{bottom:660.300000px;}
.y13a{bottom:663.750000px;}
.yab{bottom:666.600000px;}
.y8c{bottom:667.050000px;}
.yda{bottom:667.950000px;}
.y33{bottom:670.350000px;}
.y193{bottom:671.250000px;}
.y64{bottom:672.000000px;}
.y139{bottom:684.450000px;}
.y104{bottom:685.650000px;}
.yaa{bottom:687.450000px;}
.y8b{bottom:687.750000px;}
.yd9{bottom:688.800000px;}
.y32{bottom:691.050000px;}
.y192{bottom:691.950000px;}
.y63{bottom:692.700000px;}
.y138{bottom:705.150000px;}
.y8a{bottom:708.450000px;}
.ya9{bottom:709.350000px;}
.yd8{bottom:710.700000px;}
.y31{bottom:711.750000px;}
.y191{bottom:712.650000px;}
.y62{bottom:713.400000px;}
.yf{bottom:722.400000px;}
.y137{bottom:725.850000px;}
.y89{bottom:729.150000px;}
.ya8{bottom:730.050000px;}
.yd7{bottom:731.400000px;}
.y30{bottom:732.450000px;}
.y190{bottom:733.350000px;}
.y61{bottom:734.100000px;}
.y136{bottom:746.550000px;}
.y103{bottom:749.400000px;}
.y88{bottom:749.850000px;}
.ya7{bottom:750.750000px;}
.yd6{bottom:752.100000px;}
.y2f{bottom:753.150000px;}
.y18f{bottom:754.050000px;}
.y60{bottom:754.800000px;}
.ye{bottom:763.800000px;}
.y135{bottom:767.250000px;}
.y102{bottom:770.100000px;}
.y87{bottom:770.550000px;}
.yd5{bottom:772.800000px;}
.y2e{bottom:773.850000px;}
.y18e{bottom:774.750000px;}
.y5f{bottom:775.500000px;}
.yd{bottom:784.500000px;}
.y134{bottom:787.950000px;}
.y101{bottom:790.950000px;}
.y86{bottom:791.250000px;}
.yd4{bottom:793.500000px;}
.ya6{bottom:793.800000px;}
.y2d{bottom:794.550000px;}
.y17c{bottom:795.300000px;}
.y18d{bottom:795.450000px;}
.y5e{bottom:796.200000px;}
.yc{bottom:805.200000px;}
.y156{bottom:806.550000px;}
.y133{bottom:808.650000px;}
.y85{bottom:811.950000px;}
.y100{bottom:812.850000px;}
.yd3{bottom:814.200000px;}
.y2c{bottom:815.250000px;}
.y17b{bottom:816.000000px;}
.y18c{bottom:816.150000px;}
.y5d{bottom:816.900000px;}
.yb{bottom:825.900000px;}
.y132{bottom:829.350000px;}
.y84{bottom:832.650000px;}
.yff{bottom:833.550000px;}
.yd2{bottom:834.900000px;}
.y2b{bottom:835.950000px;}
.y17a{bottom:836.700000px;}
.y5c{bottom:837.600000px;}
.ya{bottom:846.600000px;}
.y131{bottom:850.050000px;}
.y83{bottom:853.350000px;}
.yfe{bottom:854.250000px;}
.yd1{bottom:855.750000px;}
.y2a{bottom:856.650000px;}
.y179{bottom:857.400000px;}
.ya5{bottom:857.550000px;}
.y5b{bottom:858.300000px;}
.y9{bottom:867.300000px;}
.y130{bottom:870.750000px;}
.y82{bottom:874.050000px;}
.yfd{bottom:875.100000px;}
.y29{bottom:877.350000px;}
.yd0{bottom:877.650000px;}
.y178{bottom:878.100000px;}
.y5a{bottom:879.000000px;}
.y8{bottom:888.000000px;}
.y12f{bottom:891.450000px;}
.y81{bottom:894.750000px;}
.yfc{bottom:897.000000px;}
.y28{bottom:898.050000px;}
.ycf{bottom:898.350000px;}
.y177{bottom:898.800000px;}
.y59{bottom:899.700000px;}
.y7{bottom:908.700000px;}
.y12e{bottom:912.150000px;}
.y80{bottom:915.450000px;}
.y1c0{bottom:917.100000px;}
.yfb{bottom:917.700000px;}
.y27{bottom:918.750000px;}
.yce{bottom:919.050000px;}
.y176{bottom:919.500000px;}
.y58{bottom:920.400000px;}
.y6{bottom:929.400000px;}
.y12d{bottom:932.850000px;}
.y7f{bottom:936.150000px;}
.y1bf{bottom:937.800000px;}
.yfa{bottom:938.550000px;}
.y26{bottom:939.450000px;}
.ycd{bottom:939.750000px;}
.y175{bottom:940.200000px;}
.y57{bottom:941.100000px;}
.y5{bottom:950.100000px;}
.y12c{bottom:953.550000px;}
.y1be{bottom:958.500000px;}
.y25{bottom:960.150000px;}
.ycc{bottom:960.450000px;}
.y174{bottom:960.900000px;}
.y56{bottom:961.800000px;}
.y155{bottom:972.150000px;}
.y12b{bottom:974.250000px;}
.y7e{bottom:979.200000px;}
.y24{bottom:980.850000px;}
.yf9{bottom:981.150000px;}
.ycb{bottom:981.300000px;}
.y173{bottom:981.600000px;}
.y55{bottom:982.500000px;}
.y4{bottom:991.500000px;}
.y12a{bottom:996.150000px;}
.y23{bottom:1001.550000px;}
.yf8{bottom:1001.850000px;}
.y172{bottom:1002.300000px;}
.y54{bottom:1003.200000px;}
.y154{bottom:1013.550000px;}
.y129{bottom:1018.500000px;}
.y22{bottom:1022.250000px;}
.yf7{bottom:1022.550000px;}
.y171{bottom:1023.000000px;}
.y53{bottom:1023.900000px;}
.y128{bottom:1039.650000px;}
.y21{bottom:1042.950000px;}
.yf6{bottom:1043.250000px;}
.y170{bottom:1043.700000px;}
.y52{bottom:1044.600000px;}
.y3{bottom:1053.600000px;}
.y127{bottom:1061.550000px;}
.y20{bottom:1063.650000px;}
.yf5{bottom:1063.950000px;}
.y16f{bottom:1064.400000px;}
.y51{bottom:1065.300000px;}
.y2{bottom:1074.300000px;}
.y126{bottom:1083.900000px;}
.yf4{bottom:1084.650000px;}
.y16e{bottom:1085.100000px;}
.y50{bottom:1086.000000px;}
.y153{bottom:1096.350000px;}
.y125{bottom:1105.050000px;}
.yf3{bottom:1105.350000px;}
.y1f{bottom:1106.700000px;}
.y1{bottom:1115.700000px;}
.yf2{bottom:1126.200000px;}
.y124{bottom:1126.950000px;}
.y16d{bottom:1127.250000px;}
.y4f{bottom:1127.400000px;}
.y1e{bottom:1192.950000px;}
.y7d{bottom:1266.561000px;}
.yca{bottom:1266.618000px;}
.yc5{bottom:1278.468000px;}
.y152{bottom:1281.618000px;}
.y11e{bottom:1281.918000px;}
.yf1{bottom:1282.218000px;}
.y1bd{bottom:1284.018000px;}
.ya4{bottom:1284.918000px;}
.y123{bottom:1285.668000px;}
.y18b{bottom:1287.168000px;}
.y19d{bottom:1288.218000px;}
.y16c{bottom:1289.868000px;}
.y1ac{bottom:1301.418000px;}
.y1c1{bottom:1968.768000px;}
.h9{height:21.952734px;}
.h7{height:27.839063px;}
.ha{height:48.761719px;}
.h3{height:49.992188px;}
.h8{height:50.039062px;}
.h4{height:58.857422px;}
.h2{height:60.046875px;}
.h1{height:61.734375px;}
.h6{height:62.627344px;}
.hb{height:66.691406px;}
.h5{height:70.628906px;}
.hc{height:101.446875px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:127.800000px;}
.xd{left:133.350000px;}
.x1c{left:138.450000px;}
.x7{left:140.550000px;}
.x6{left:153.300000px;}
.x11{left:154.800000px;}
.x18{left:156.450000px;}
.x1a{left:157.950000px;}
.x32{left:167.400000px;}
.xa{left:170.250000px;}
.x13{left:180.300000px;}
.xb{left:181.800000px;}
.xe{left:203.100000px;}
.x14{left:207.300000px;}
.x23{left:212.250000px;}
.x1{left:215.700000px;}
.x2c{left:221.400000px;}
.x2a{left:222.900000px;}
.x29{left:231.750000px;}
.x20{left:234.150000px;}
.x1e{left:236.100000px;}
.x31{left:243.750000px;}
.x28{left:246.750000px;}
.x2b{left:248.850000px;}
.x1d{left:250.200000px;}
.x2f{left:267.750000px;}
.x2e{left:268.800000px;}
.x36{left:272.100000px;}
.x37{left:279.000000px;}
.x24{left:281.100000px;}
.x33{left:283.350000px;}
.x15{left:286.350000px;}
.xc{left:291.150000px;}
.x26{left:296.850000px;}
.x5{left:311.100000px;}
.x1b{left:313.350000px;}
.x21{left:321.900000px;}
.x3{left:322.950000px;}
.x2{left:333.600000px;}
.x25{left:337.200000px;}
.x22{left:339.300000px;}
.x8{left:342.150000px;}
.x38{left:363.900000px;}
.x2d{left:373.500000px;}
.x34{left:381.600000px;}
.x19{left:395.250000px;}
.xf{left:397.050000px;}
.x27{left:398.550000px;}
.x1f{left:427.050000px;}
.x16{left:432.900000px;}
.x9{left:446.850000px;}
.x30{left:456.750000px;}
.x17{left:505.050000px;}
.x39{left:570.300000px;}
.x35{left:579.600000px;}
.x10{left:585.750000px;}
.x12{left:765.600000px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.v3{vertical-align:36.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.213333pt;}
.ls2{letter-spacing:13.333333pt;}
.ls1{letter-spacing:31.466667pt;}
.ls5{letter-spacing:66.560000pt;}
.ws2{word-spacing:-43.200000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws3{word-spacing:-9.333333pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:30.336000pt;}
.ws7{word-spacing:32.000000pt;}
.ws17{word-spacing:33.600000pt;}
.ws15{word-spacing:37.312000pt;}
.ws9{word-spacing:87.466667pt;}
.ws8{word-spacing:102.357333pt;}
.ws12{word-spacing:107.349333pt;}
.ws11{word-spacing:115.349333pt;}
.wsd{word-spacing:122.816000pt;}
.wsc{word-spacing:124.266667pt;}
.wse{word-spacing:134.933333pt;}
.wsf{word-spacing:137.749333pt;}
.wsa{word-spacing:138.816000pt;}
.ws10{word-spacing:140.266667pt;}
.wsb{word-spacing:166.016000pt;}
.ws16{word-spacing:556.928000pt;}
.ws14{word-spacing:589.461333pt;}
.ws6{word-spacing:594.794667pt;}
.ws4{word-spacing:659.861333pt;}
._8{margin-left:-1.984000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._9{width:2.112000pt;}
._5{width:3.008000pt;}
._a{width:3.968000pt;}
._6{width:5.184000pt;}
._7{width:6.272000pt;}
._3{width:7.360000pt;}
._2{width:8.320000pt;}
._4{width:9.216000pt;}
._b{width:10.240000pt;}
._c{width:11.648000pt;}
._f{width:12.800000pt;}
._10{width:13.696000pt;}
._12{width:15.040000pt;}
._1d{width:17.152000pt;}
._e{width:18.048000pt;}
._13{width:19.392000pt;}
._11{width:21.013333pt;}
._18{width:21.994667pt;}
._17{width:22.976000pt;}
._1b{width:24.000000pt;}
._16{width:25.344000pt;}
._2e{width:26.880000pt;}
._1e{width:27.776000pt;}
._15{width:31.232000pt;}
._1c{width:34.304000pt;}
._2b{width:40.960000pt;}
._2d{width:41.856000pt;}
._29{width:56.000000pt;}
._d{width:59.264000pt;}
._2c{width:82.837333pt;}
._27{width:88.512000pt;}
._22{width:91.712000pt;}
._21{width:118.101333pt;}
._23{width:120.533333pt;}
._25{width:125.312000pt;}
._1f{width:133.312000pt;}
._19{width:164.800000pt;}
._24{width:189.312000pt;}
._26{width:237.312000pt;}
._20{width:283.712000pt;}
._14{width:574.613333pt;}
._1a{width:616.064000pt;}
._28{width:637.866667pt;}
._2a{width:669.333333pt;}
.fs3{font-size:27.733333pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.808000pt;}
.y4e{bottom:70.000000pt;}
.y4d{bottom:114.666667pt;}
.yc9{bottom:116.000000pt;}
.y7c{bottom:120.133333pt;}
.yc4{bottom:126.533333pt;}
.y151{bottom:129.333333pt;}
.y11d{bottom:129.600000pt;}
.yf0{bottom:129.866667pt;}
.y1bc{bottom:131.466667pt;}
.ya3{bottom:132.266667pt;}
.y122{bottom:132.933333pt;}
.y18a{bottom:134.266667pt;}
.yc8{bottom:134.400000pt;}
.y19c{bottom:135.200000pt;}
.y4c{bottom:135.466667pt;}
.y16b{bottom:136.666667pt;}
.yc3{bottom:144.933333pt;}
.y4b{bottom:146.000000pt;}
.y1ab{bottom:146.933333pt;}
.y150{bottom:147.733333pt;}
.y11c{bottom:148.000000pt;}
.yef{bottom:148.266667pt;}
.y1bb{bottom:149.866667pt;}
.ya2{bottom:150.666667pt;}
.y121{bottom:152.400000pt;}
.y189{bottom:152.666667pt;}
.yc7{bottom:152.800000pt;}
.y19b{bottom:153.600000pt;}
.y16a{bottom:155.066667pt;}
.y7b{bottom:155.733333pt;}
.y4a{bottom:161.333333pt;}
.yc2{bottom:163.333333pt;}
.y1aa{bottom:165.333333pt;}
.y14f{bottom:166.133333pt;}
.y11b{bottom:166.400000pt;}
.yee{bottom:166.666667pt;}
.ya1{bottom:169.066667pt;}
.y188{bottom:171.066667pt;}
.y19a{bottom:172.000000pt;}
.y120{bottom:172.266667pt;}
.y169{bottom:173.466667pt;}
.y7a{bottom:174.133333pt;}
.yc1{bottom:181.866667pt;}
.y49{bottom:182.133333pt;}
.y1a9{bottom:183.733333pt;}
.y14e{bottom:184.533333pt;}
.y11a{bottom:184.800000pt;}
.yed{bottom:185.200000pt;}
.y1ba{bottom:188.133333pt;}
.y187{bottom:189.466667pt;}
.yc6{bottom:191.066667pt;}
.y168{bottom:191.866667pt;}
.y79{bottom:192.533333pt;}
.y14d{bottom:193.733333pt;}
.yc0{bottom:201.333333pt;}
.y1a8{bottom:202.133333pt;}
.y119{bottom:203.200000pt;}
.yec{bottom:204.666667pt;}
.ya0{bottom:205.866667pt;}
.y1b9{bottom:206.533333pt;}
.y186{bottom:207.866667pt;}
.y48{bottom:209.466667pt;}
.y167{bottom:210.266667pt;}
.y78{bottom:210.933333pt;}
.ybf{bottom:219.733333pt;}
.y14c{bottom:221.333333pt;}
.y118{bottom:221.600000pt;}
.yeb{bottom:223.066667pt;}
.y9f{bottom:224.266667pt;}
.y1b8{bottom:224.933333pt;}
.y185{bottom:226.266667pt;}
.y47{bottom:227.866667pt;}
.y166{bottom:228.666667pt;}
.y77{bottom:229.333333pt;}
.y14b{bottom:230.533333pt;}
.ybe{bottom:238.266667pt;}
.y117{bottom:240.000000pt;}
.y1a7{bottom:240.400000pt;}
.yea{bottom:241.466667pt;}
.y9e{bottom:242.666667pt;}
.y184{bottom:244.666667pt;}
.y46{bottom:246.266667pt;}
.y199{bottom:246.400000pt;}
.y165{bottom:247.066667pt;}
.y76{bottom:247.733333pt;}
.ybd{bottom:257.733333pt;}
.y14a{bottom:258.133333pt;}
.y116{bottom:258.400000pt;}
.y1a6{bottom:258.800000pt;}
.ye9{bottom:259.866667pt;}
.y9d{bottom:261.066667pt;}
.y183{bottom:263.066667pt;}
.y1b7{bottom:263.200000pt;}
.y45{bottom:264.666667pt;}
.y164{bottom:265.466667pt;}
.y75{bottom:266.133333pt;}
.ybc{bottom:276.133333pt;}
.y149{bottom:276.533333pt;}
.y115{bottom:276.800000pt;}
.y1a5{bottom:277.200000pt;}
.ye8{bottom:278.266667pt;}
.y9c{bottom:279.466667pt;}
.y182{bottom:281.466667pt;}
.y1b6{bottom:281.600000pt;}
.y44{bottom:283.066667pt;}
.y163{bottom:283.866667pt;}
.y74{bottom:284.533333pt;}
.ybb{bottom:294.533333pt;}
.y148{bottom:294.933333pt;}
.y114{bottom:295.200000pt;}
.y1a4{bottom:295.600000pt;}
.ye7{bottom:296.666667pt;}
.y9b{bottom:297.866667pt;}
.y181{bottom:299.866667pt;}
.y43{bottom:301.466667pt;}
.y162{bottom:302.266667pt;}
.y73{bottom:302.933333pt;}
.y147{bottom:304.133333pt;}
.yba{bottom:312.933333pt;}
.y113{bottom:313.600000pt;}
.ye6{bottom:315.066667pt;}
.y9a{bottom:316.266667pt;}
.y180{bottom:318.266667pt;}
.y1b5{bottom:318.400000pt;}
.y42{bottom:319.866667pt;}
.y161{bottom:320.666667pt;}
.y72{bottom:321.333333pt;}
.yb9{bottom:331.333333pt;}
.y146{bottom:331.733333pt;}
.y112{bottom:332.000000pt;}
.y1a3{bottom:333.866667pt;}
.y99{bottom:334.666667pt;}
.y17f{bottom:336.666667pt;}
.y1b4{bottom:336.800000pt;}
.y41{bottom:338.266667pt;}
.y160{bottom:339.066667pt;}
.y71{bottom:339.733333pt;}
.y1c{bottom:347.733333pt;}
.yb8{bottom:349.866667pt;}
.y144{bottom:350.133333pt;}
.y111{bottom:350.400000pt;}
.y1a2{bottom:352.266667pt;}
.y98{bottom:353.066667pt;}
.ye5{bottom:353.333333pt;}
.y1b3{bottom:355.200000pt;}
.y40{bottom:356.666667pt;}
.y15f{bottom:357.466667pt;}
.y70{bottom:358.133333pt;}
.y1b{bottom:366.133333pt;}
.y145{bottom:368.533333pt;}
.y110{bottom:368.800000pt;}
.yb7{bottom:369.333333pt;}
.y1a1{bottom:370.666667pt;}
.y97{bottom:371.466667pt;}
.y17e{bottom:374.266667pt;}
.y3f{bottom:375.066667pt;}
.y15e{bottom:375.866667pt;}
.y6f{bottom:376.533333pt;}
.y1a{bottom:384.533333pt;}
.y143{bottom:386.933333pt;}
.y10f{bottom:387.200000pt;}
.yb6{bottom:387.733333pt;}
.y1a0{bottom:389.066667pt;}
.y96{bottom:389.866667pt;}
.y1b2{bottom:392.000000pt;}
.y3e{bottom:393.466667pt;}
.y15d{bottom:394.266667pt;}
.y6e{bottom:394.933333pt;}
.y19{bottom:402.933333pt;}
.y142{bottom:405.333333pt;}
.y10e{bottom:405.600000pt;}
.yb5{bottom:406.133333pt;}
.y95{bottom:408.266667pt;}
.ye4{bottom:408.533333pt;}
.y1b1{bottom:410.400000pt;}
.y17d{bottom:411.200000pt;}
.y3d{bottom:411.866667pt;}
.y15c{bottom:412.666667pt;}
.y6d{bottom:413.333333pt;}
.y18{bottom:421.333333pt;}
.y141{bottom:423.733333pt;}
.y10d{bottom:424.000000pt;}
.yb4{bottom:424.533333pt;}
.y19f{bottom:425.866667pt;}
.ye3{bottom:426.933333pt;}
.y3c{bottom:430.266667pt;}
.y15b{bottom:431.066667pt;}
.y11f{bottom:431.733333pt;}
.y17{bottom:439.733333pt;}
.y140{bottom:442.133333pt;}
.y10c{bottom:442.400000pt;}
.yb3{bottom:443.066667pt;}
.y19e{bottom:444.266667pt;}
.ye2{bottom:445.333333pt;}
.y94{bottom:445.733333pt;}
.y1b0{bottom:447.200000pt;}
.y3b{bottom:448.666667pt;}
.y15a{bottom:449.466667pt;}
.y6c{bottom:450.133333pt;}
.y13f{bottom:451.333333pt;}
.y16{bottom:458.133333pt;}
.y10b{bottom:460.800000pt;}
.yb2{bottom:462.533333pt;}
.ye1{bottom:463.866667pt;}
.y93{bottom:464.133333pt;}
.y1af{bottom:465.600000pt;}
.y3a{bottom:467.066667pt;}
.y159{bottom:467.866667pt;}
.y6b{bottom:468.533333pt;}
.y15{bottom:476.533333pt;}
.y13e{bottom:478.933333pt;}
.y10a{bottom:479.200000pt;}
.yb1{bottom:480.933333pt;}
.y92{bottom:482.533333pt;}
.ye0{bottom:483.333333pt;}
.y1ae{bottom:484.000000pt;}
.y39{bottom:485.466667pt;}
.y198{bottom:486.266667pt;}
.y6a{bottom:486.933333pt;}
.y13d{bottom:488.133333pt;}
.y14{bottom:494.933333pt;}
.y109{bottom:497.600000pt;}
.yb0{bottom:499.333333pt;}
.y91{bottom:500.933333pt;}
.ydf{bottom:501.733333pt;}
.y38{bottom:503.866667pt;}
.y158{bottom:504.666667pt;}
.y69{bottom:505.333333pt;}
.y13{bottom:513.333333pt;}
.y13c{bottom:515.733333pt;}
.y108{bottom:516.000000pt;}
.yaf{bottom:517.733333pt;}
.y90{bottom:519.333333pt;}
.yde{bottom:520.133333pt;}
.y1ad{bottom:520.800000pt;}
.y37{bottom:522.266667pt;}
.y197{bottom:523.066667pt;}
.y68{bottom:523.733333pt;}
.y12{bottom:531.733333pt;}
.y157{bottom:532.933333pt;}
.y13b{bottom:534.133333pt;}
.y107{bottom:534.400000pt;}
.yae{bottom:536.266667pt;}
.y8f{bottom:537.733333pt;}
.ydd{bottom:538.533333pt;}
.y36{bottom:540.666667pt;}
.y196{bottom:541.466667pt;}
.y67{bottom:542.133333pt;}
.y11{bottom:550.133333pt;}
.y106{bottom:552.800000pt;}
.yad{bottom:555.733333pt;}
.y8e{bottom:556.133333pt;}
.ydc{bottom:556.933333pt;}
.y35{bottom:559.066667pt;}
.y195{bottom:559.866667pt;}
.y66{bottom:560.533333pt;}
.y105{bottom:571.200000pt;}
.yac{bottom:574.133333pt;}
.y8d{bottom:574.533333pt;}
.ydb{bottom:575.333333pt;}
.y34{bottom:577.466667pt;}
.y194{bottom:578.266667pt;}
.y65{bottom:578.933333pt;}
.y10{bottom:586.933333pt;}
.y13a{bottom:590.000000pt;}
.yab{bottom:592.533333pt;}
.y8c{bottom:592.933333pt;}
.yda{bottom:593.733333pt;}
.y33{bottom:595.866667pt;}
.y193{bottom:596.666667pt;}
.y64{bottom:597.333333pt;}
.y139{bottom:608.400000pt;}
.y104{bottom:609.466667pt;}
.yaa{bottom:611.066667pt;}
.y8b{bottom:611.333333pt;}
.yd9{bottom:612.266667pt;}
.y32{bottom:614.266667pt;}
.y192{bottom:615.066667pt;}
.y63{bottom:615.733333pt;}
.y138{bottom:626.800000pt;}
.y8a{bottom:629.733333pt;}
.ya9{bottom:630.533333pt;}
.yd8{bottom:631.733333pt;}
.y31{bottom:632.666667pt;}
.y191{bottom:633.466667pt;}
.y62{bottom:634.133333pt;}
.yf{bottom:642.133333pt;}
.y137{bottom:645.200000pt;}
.y89{bottom:648.133333pt;}
.ya8{bottom:648.933333pt;}
.yd7{bottom:650.133333pt;}
.y30{bottom:651.066667pt;}
.y190{bottom:651.866667pt;}
.y61{bottom:652.533333pt;}
.y136{bottom:663.600000pt;}
.y103{bottom:666.133333pt;}
.y88{bottom:666.533333pt;}
.ya7{bottom:667.333333pt;}
.yd6{bottom:668.533333pt;}
.y2f{bottom:669.466667pt;}
.y18f{bottom:670.266667pt;}
.y60{bottom:670.933333pt;}
.ye{bottom:678.933333pt;}
.y135{bottom:682.000000pt;}
.y102{bottom:684.533333pt;}
.y87{bottom:684.933333pt;}
.yd5{bottom:686.933333pt;}
.y2e{bottom:687.866667pt;}
.y18e{bottom:688.666667pt;}
.y5f{bottom:689.333333pt;}
.yd{bottom:697.333333pt;}
.y134{bottom:700.400000pt;}
.y101{bottom:703.066667pt;}
.y86{bottom:703.333333pt;}
.yd4{bottom:705.333333pt;}
.ya6{bottom:705.600000pt;}
.y2d{bottom:706.266667pt;}
.y17c{bottom:706.933333pt;}
.y18d{bottom:707.066667pt;}
.y5e{bottom:707.733333pt;}
.yc{bottom:715.733333pt;}
.y156{bottom:716.933333pt;}
.y133{bottom:718.800000pt;}
.y85{bottom:721.733333pt;}
.y100{bottom:722.533333pt;}
.yd3{bottom:723.733333pt;}
.y2c{bottom:724.666667pt;}
.y17b{bottom:725.333333pt;}
.y18c{bottom:725.466667pt;}
.y5d{bottom:726.133333pt;}
.yb{bottom:734.133333pt;}
.y132{bottom:737.200000pt;}
.y84{bottom:740.133333pt;}
.yff{bottom:740.933333pt;}
.yd2{bottom:742.133333pt;}
.y2b{bottom:743.066667pt;}
.y17a{bottom:743.733333pt;}
.y5c{bottom:744.533333pt;}
.ya{bottom:752.533333pt;}
.y131{bottom:755.600000pt;}
.y83{bottom:758.533333pt;}
.yfe{bottom:759.333333pt;}
.yd1{bottom:760.666667pt;}
.y2a{bottom:761.466667pt;}
.y179{bottom:762.133333pt;}
.ya5{bottom:762.266667pt;}
.y5b{bottom:762.933333pt;}
.y9{bottom:770.933333pt;}
.y130{bottom:774.000000pt;}
.y82{bottom:776.933333pt;}
.yfd{bottom:777.866667pt;}
.y29{bottom:779.866667pt;}
.yd0{bottom:780.133333pt;}
.y178{bottom:780.533333pt;}
.y5a{bottom:781.333333pt;}
.y8{bottom:789.333333pt;}
.y12f{bottom:792.400000pt;}
.y81{bottom:795.333333pt;}
.yfc{bottom:797.333333pt;}
.y28{bottom:798.266667pt;}
.ycf{bottom:798.533333pt;}
.y177{bottom:798.933333pt;}
.y59{bottom:799.733333pt;}
.y7{bottom:807.733333pt;}
.y12e{bottom:810.800000pt;}
.y80{bottom:813.733333pt;}
.y1c0{bottom:815.200000pt;}
.yfb{bottom:815.733333pt;}
.y27{bottom:816.666667pt;}
.yce{bottom:816.933333pt;}
.y176{bottom:817.333333pt;}
.y58{bottom:818.133333pt;}
.y6{bottom:826.133333pt;}
.y12d{bottom:829.200000pt;}
.y7f{bottom:832.133333pt;}
.y1bf{bottom:833.600000pt;}
.yfa{bottom:834.266667pt;}
.y26{bottom:835.066667pt;}
.ycd{bottom:835.333333pt;}
.y175{bottom:835.733333pt;}
.y57{bottom:836.533333pt;}
.y5{bottom:844.533333pt;}
.y12c{bottom:847.600000pt;}
.y1be{bottom:852.000000pt;}
.y25{bottom:853.466667pt;}
.ycc{bottom:853.733333pt;}
.y174{bottom:854.133333pt;}
.y56{bottom:854.933333pt;}
.y155{bottom:864.133333pt;}
.y12b{bottom:866.000000pt;}
.y7e{bottom:870.400000pt;}
.y24{bottom:871.866667pt;}
.yf9{bottom:872.133333pt;}
.ycb{bottom:872.266667pt;}
.y173{bottom:872.533333pt;}
.y55{bottom:873.333333pt;}
.y4{bottom:881.333333pt;}
.y12a{bottom:885.466667pt;}
.y23{bottom:890.266667pt;}
.yf8{bottom:890.533333pt;}
.y172{bottom:890.933333pt;}
.y54{bottom:891.733333pt;}
.y154{bottom:900.933333pt;}
.y129{bottom:905.333333pt;}
.y22{bottom:908.666667pt;}
.yf7{bottom:908.933333pt;}
.y171{bottom:909.333333pt;}
.y53{bottom:910.133333pt;}
.y128{bottom:924.133333pt;}
.y21{bottom:927.066667pt;}
.yf6{bottom:927.333333pt;}
.y170{bottom:927.733333pt;}
.y52{bottom:928.533333pt;}
.y3{bottom:936.533333pt;}
.y127{bottom:943.600000pt;}
.y20{bottom:945.466667pt;}
.yf5{bottom:945.733333pt;}
.y16f{bottom:946.133333pt;}
.y51{bottom:946.933333pt;}
.y2{bottom:954.933333pt;}
.y126{bottom:963.466667pt;}
.yf4{bottom:964.133333pt;}
.y16e{bottom:964.533333pt;}
.y50{bottom:965.333333pt;}
.y153{bottom:974.533333pt;}
.y125{bottom:982.266667pt;}
.yf3{bottom:982.533333pt;}
.y1f{bottom:983.733333pt;}
.y1{bottom:991.733333pt;}
.yf2{bottom:1001.066667pt;}
.y124{bottom:1001.733333pt;}
.y16d{bottom:1002.000000pt;}
.y4f{bottom:1002.133333pt;}
.y1e{bottom:1060.400000pt;}
.y7d{bottom:1125.832000pt;}
.yca{bottom:1125.882667pt;}
.yc5{bottom:1136.416000pt;}
.y152{bottom:1139.216000pt;}
.y11e{bottom:1139.482667pt;}
.yf1{bottom:1139.749333pt;}
.y1bd{bottom:1141.349333pt;}
.ya4{bottom:1142.149333pt;}
.y123{bottom:1142.816000pt;}
.y18b{bottom:1144.149333pt;}
.y19d{bottom:1145.082667pt;}
.y16c{bottom:1146.549333pt;}
.y1ac{bottom:1156.816000pt;}
.y1c1{bottom:1750.016000pt;}
.h9{height:19.513542pt;}
.h7{height:24.745833pt;}
.ha{height:43.343750pt;}
.h3{height:44.437500pt;}
.h8{height:44.479167pt;}
.h4{height:52.317708pt;}
.h2{height:53.375000pt;}
.h1{height:54.875000pt;}
.h6{height:55.668750pt;}
.hb{height:59.281250pt;}
.h5{height:62.781250pt;}
.hc{height:90.175000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:113.600000pt;}
.xd{left:118.533333pt;}
.x1c{left:123.066667pt;}
.x7{left:124.933333pt;}
.x6{left:136.266667pt;}
.x11{left:137.600000pt;}
.x18{left:139.066667pt;}
.x1a{left:140.400000pt;}
.x32{left:148.800000pt;}
.xa{left:151.333333pt;}
.x13{left:160.266667pt;}
.xb{left:161.600000pt;}
.xe{left:180.533333pt;}
.x14{left:184.266667pt;}
.x23{left:188.666667pt;}
.x1{left:191.733333pt;}
.x2c{left:196.800000pt;}
.x2a{left:198.133333pt;}
.x29{left:206.000000pt;}
.x20{left:208.133333pt;}
.x1e{left:209.866667pt;}
.x31{left:216.666667pt;}
.x28{left:219.333333pt;}
.x2b{left:221.200000pt;}
.x1d{left:222.400000pt;}
.x2f{left:238.000000pt;}
.x2e{left:238.933333pt;}
.x36{left:241.866667pt;}
.x37{left:248.000000pt;}
.x24{left:249.866667pt;}
.x33{left:251.866667pt;}
.x15{left:254.533333pt;}
.xc{left:258.800000pt;}
.x26{left:263.866667pt;}
.x5{left:276.533333pt;}
.x1b{left:278.533333pt;}
.x21{left:286.133333pt;}
.x3{left:287.066667pt;}
.x2{left:296.533333pt;}
.x25{left:299.733333pt;}
.x22{left:301.600000pt;}
.x8{left:304.133333pt;}
.x38{left:323.466667pt;}
.x2d{left:332.000000pt;}
.x34{left:339.200000pt;}
.x19{left:351.333333pt;}
.xf{left:352.933333pt;}
.x27{left:354.266667pt;}
.x1f{left:379.600000pt;}
.x16{left:384.800000pt;}
.x9{left:397.200000pt;}
.x30{left:406.000000pt;}
.x17{left:448.933333pt;}
.x39{left:506.933333pt;}
.x35{left:515.200000pt;}
.x10{left:520.666667pt;}
.x12{left:680.533333pt;}
}




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