
    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_e381a437880d51fb7bd9ba2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_bb8d09b5b21a10382b9c6741.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_71427ae051783d33f5d9a81e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e92057492477ded9e9af0ef3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c6c5785c1b8ac7f0b9db079a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_5c87bc9d9676ed9ae69d09b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_573c4140a6041ea7d225024f.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_036ccd4261e8169d2411b2f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_299fdaf52e9b29e9ff9e3f17.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-89.640000px;}
.v4{vertical-align:-82.800000px;}
.v6{vertical-align:-77.040000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.000000px;}
.v1{vertical-align:29.880000px;}
.ls6{letter-spacing:-1.872000px;}
.lsd{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.074640px;}
.ls7{letter-spacing:0.078600px;}
.lsf{letter-spacing:0.120000px;}
.lse{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.192000px;}
.ls9{letter-spacing:0.262800px;}
.lsb{letter-spacing:7.020000px;}
.lsc{letter-spacing:10.620000px;}
.ls11{letter-spacing:21.744000px;}
.ls10{letter-spacing:26.064000px;}
.ls12{letter-spacing:33.984000px;}
.ls14{letter-spacing:66.024000px;}
.ls8{letter-spacing:109.560000px;}
.lsa{letter-spacing:198.231120px;}
.ls15{letter-spacing:774.840000px;}
.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;}
}
.wsd{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.650000px;}
.wsb{word-spacing:-16.470000px;}
.wsf{word-spacing:-16.272000px;}
.ws3{word-spacing:-15.210000px;}
.ws2{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.967480px;}
.ws4{word-spacing:-14.850000px;}
.ws0{word-spacing:-14.238000px;}
.ws1{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-5.276880px;}
._b{margin-left:-3.363120px;}
._4{margin-left:-2.306880px;}
._3{margin-left:-1.153440px;}
._9{width:1.038000px;}
._6{width:2.870040px;}
._5{width:4.569120px;}
._8{width:5.982000px;}
._7{width:7.194000px;}
._a{width:8.790000px;}
._14{width:10.056000px;}
._13{width:11.280000px;}
._19{width:12.312000px;}
._28{width:13.321440px;}
._1a{width:14.328000px;}
._15{width:15.624000px;}
._16{width:16.704000px;}
._27{width:17.985240px;}
._11{width:19.008000px;}
._1e{width:20.376000px;}
._f{width:22.248000px;}
._e{width:23.400000px;}
._10{width:24.408000px;}
._1f{width:25.852800px;}
._2{width:26.913600px;}
._24{width:28.454400px;}
._23{width:30.168000px;}
._18{width:31.320000px;}
._17{width:32.616000px;}
._20{width:33.696000px;}
._2f{width:35.160000px;}
._22{width:36.720000px;}
._29{width:37.986000px;}
._2e{width:39.600000px;}
._2d{width:40.824000px;}
._26{width:42.192000px;}
._25{width:43.200000px;}
._1b{width:45.000000px;}
._1c{width:46.056000px;}
._32{width:47.631240px;}
._2a{width:50.040000px;}
._2c{width:53.496000px;}
._2b{width:54.864000px;}
._31{width:56.525040px;}
._c{width:243.156000px;}
._30{width:411.881760px;}
._0{width:805.260000px;}
._21{width:1017.956760px;}
._d{width:1440.111840px;}
._1{width:1748.340000px;}
._1d{width:1773.900720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2f{bottom:96.689908px;}
.y17c{bottom:98.039908px;}
.y13d{bottom:99.299908px;}
.y10a{bottom:99.659908px;}
.yf9{bottom:99.839908px;}
.yf7{bottom:101.549908px;}
.y11e{bottom:103.259908px;}
.y15a{bottom:104.969908px;}
.y18a{bottom:109.379908px;}
.y106{bottom:111.179908px;}
.y1a8{bottom:113.609908px;}
.y2e{bottom:113.969908px;}
.y109{bottom:118.559908px;}
.y15b{bottom:118.739908px;}
.y9e{bottom:119.189908px;}
.y13c{bottom:119.999908px;}
.y7b{bottom:120.539908px;}
.yf6{bottom:122.249908px;}
.y11d{bottom:123.959908px;}
.y159{bottom:125.669908px;}
.y56{bottom:131.159908px;}
.y189{bottom:131.249908px;}
.y9d{bottom:131.609908px;}
.y105{bottom:131.879908px;}
.y1a7{bottom:135.479908px;}
.y2d{bottom:136.379908px;}
.y17b{bottom:137.099908px;}
.y108{bottom:139.439908px;}
.y13b{bottom:140.699908px;}
.y7a{bottom:141.239908px;}
.yf5{bottom:142.949908px;}
.y11c{bottom:144.659908px;}
.y158{bottom:146.279908px;}
.y55{bottom:148.439908px;}
.y2c{bottom:148.799908px;}
.y188{bottom:153.029908px;}
.y86{bottom:153.659908px;}
.y1a6{bottom:157.259908px;}
.y17a{bottom:157.799908px;}
.y107{bottom:160.139908px;}
.y13a{bottom:161.309908px;}
.y79{bottom:161.939908px;}
.yf4{bottom:163.649908px;}
.y11b{bottom:165.359908px;}
.y54{bottom:165.719908px;}
.y85{bottom:166.079908px;}
.y104{bottom:166.169908px;}
.y157{bottom:166.979908px;}
.y53{bottom:170.939908px;}
.y2b{bottom:171.029908px;}
.y187{bottom:174.809908px;}
.y179{bottom:178.499908px;}
.y1a5{bottom:179.129908px;}
.y9c{bottom:180.839908px;}
.y139{bottom:182.009908px;}
.y78{bottom:182.639908px;}
.y9a{bottom:182.909908px;}
.y52{bottom:183.359908px;}
.yf3{bottom:184.349908px;}
.y11a{bottom:186.059908px;}
.y156{bottom:187.679908px;}
.y92{bottom:187.949908px;}
.y99{bottom:188.129908px;}
.y103{bottom:188.579908px;}
.y93{bottom:194.699908px;}
.y2a{bottom:197.489908px;}
.y178{bottom:199.199908px;}
.y98{bottom:200.189908px;}
.ybe{bottom:200.549908px;}
.y84{bottom:201.539908px;}
.y138{bottom:202.709908px;}
.y77{bottom:203.249908px;}
.yd1{bottom:205.049908px;}
.y119{bottom:206.759908px;}
.y155{bottom:208.379908px;}
.y90{bottom:208.649908px;}
.y102{bottom:210.899908px;}
.y1a4{bottom:212.879908px;}
.y29{bottom:213.959908px;}
.y91{bottom:215.399908px;}
.y97{bottom:217.469908px;}
.y177{bottom:219.899908px;}
.y51{bottom:220.619908px;}
.y83{bottom:222.239908px;}
.y137{bottom:223.409908px;}
.y76{bottom:223.949908px;}
.yd0{bottom:225.749908px;}
.y118{bottom:227.459908px;}
.y154{bottom:229.079908px;}
.y8f{bottom:229.349908px;}
.y28{bottom:230.429908px;}
.y186{bottom:230.519908px;}
.y101{bottom:233.219908px;}
.yc8{bottom:234.659908px;}
.y1a3{bottom:234.749908px;}
.y96{bottom:235.019908px;}
.y176{bottom:240.599908px;}
.y50{bottom:241.319908px;}
.y82{bottom:242.939908px;}
.y136{bottom:244.109908px;}
.y75{bottom:244.649908px;}
.yce{bottom:246.449908px;}
.y27{bottom:246.989908px;}
.y117{bottom:248.159908px;}
.y153{bottom:249.779908px;}
.y8e{bottom:250.049908px;}
.yc7{bottom:251.939908px;}
.y185{bottom:252.299908px;}
.ycf{bottom:253.199908px;}
.y100{bottom:255.539908px;}
.yc6{bottom:257.159908px;}
.y175{bottom:261.299908px;}
.y4f{bottom:262.019908px;}
.y26{bottom:263.459908px;}
.y81{bottom:263.639908px;}
.y135{bottom:264.809908px;}
.y74{bottom:265.349908px;}
.ycd{bottom:267.149908px;}
.y1a2{bottom:268.589908px;}
.y116{bottom:268.859908px;}
.yc5{bottom:269.219908px;}
.yf0{bottom:269.579908px;}
.y152{bottom:270.479908px;}
.y8d{bottom:270.749908px;}
.y184{bottom:274.169908px;}
.yff{bottom:277.859908px;}
.y25{bottom:279.929908px;}
.y174{bottom:281.999908px;}
.y4e{bottom:282.719908px;}
.y80{bottom:284.339908px;}
.y134{bottom:285.509908px;}
.y73{bottom:286.049908px;}
.yc4{bottom:286.409908px;}
.yf2{bottom:287.579908px;}
.ybd{bottom:287.849908px;}
.y115{bottom:289.559908px;}
.y1a1{bottom:290.369908px;}
.y151{bottom:291.179908px;}
.y8c{bottom:291.449908px;}
.y183{bottom:295.949908px;}
.y24{bottom:296.399908px;}
.yfe{bottom:300.269908px;}
.y173{bottom:302.699908px;}
.y4d{bottom:303.419908px;}
.yc3{bottom:303.689908px;}
.y7f{bottom:305.039908px;}
.y133{bottom:306.209908px;}
.yef{bottom:306.749908px;}
.ybb{bottom:308.549908px;}
.yc2{bottom:308.909908px;}
.y114{bottom:310.259908px;}
.y8b{bottom:312.149908px;}
.y1a0{bottom:312.239908px;}
.y23{bottom:312.869908px;}
.ybc{bottom:315.299908px;}
.yc1{bottom:321.329908px;}
.yfd{bottom:322.589908px;}
.y172{bottom:323.399908px;}
.y4c{bottom:324.119908px;}
.y7e{bottom:325.739908px;}
.y132{bottom:326.909908px;}
.y72{bottom:327.449908px;}
.yba{bottom:329.249908px;}
.y22{bottom:329.339908px;}
.y182{bottom:329.789908px;}
.y113{bottom:330.959908px;}
.y8a{bottom:332.849908px;}
.y19f{bottom:334.019908px;}
.yee{bottom:334.199908px;}
.y171{bottom:344.099908px;}
.y4b{bottom:344.819908px;}
.yfc{bottom:344.909908px;}
.y21{bottom:345.809908px;}
.y7d{bottom:346.439908px;}
.y131{bottom:347.609908px;}
.y71{bottom:347.879908px;}
.yed{bottom:348.149908px;}
.yb9{bottom:349.949908px;}
.y181{bottom:351.569908px;}
.y112{bottom:351.659908px;}
.y150{bottom:356.159908px;}
.y20{bottom:362.279908px;}
.y170{bottom:364.799908px;}
.y4a{bottom:365.519908px;}
.y70{bottom:367.139908px;}
.yfb{bottom:367.229908px;}
.y19e{bottom:367.859908px;}
.y130{bottom:368.309908px;}
.yec{bottom:368.849908px;}
.yb8{bottom:370.649908px;}
.y111{bottom:372.359908px;}
.y180{bottom:373.439908px;}
.y89{bottom:374.249908px;}
.y1f{bottom:378.749908px;}
.y16f{bottom:385.499908px;}
.y49{bottom:386.219908px;}
.y6f{bottom:387.839908px;}
.y12f{bottom:389.009908px;}
.y14f{bottom:389.099908px;}
.yeb{bottom:389.549908px;}
.y19d{bottom:389.639908px;}
.y13f{bottom:390.989908px;}
.yb7{bottom:391.259908px;}
.y110{bottom:393.059908px;}
.y88{bottom:394.949908px;}
.y1e{bottom:395.219908px;}
.y16e{bottom:406.559908px;}
.y48{bottom:406.919908px;}
.y6e{bottom:408.539908px;}
.y12e{bottom:409.709908px;}
.yea{bottom:410.249908px;}
.y14e{bottom:411.419908px;}
.y19c{bottom:411.509908px;}
.y1d{bottom:411.779908px;}
.yb6{bottom:411.959908px;}
.y10f{bottom:413.759908px;}
.yc9{bottom:415.289908px;}
.y87{bottom:415.649908px;}
.y16d{bottom:427.259908px;}
.y47{bottom:427.619908px;}
.y1c{bottom:428.249908px;}
.y17f{bottom:429.059908px;}
.y6d{bottom:429.239908px;}
.y12d{bottom:430.409908px;}
.yfa{bottom:430.679908px;}
.ye9{bottom:430.949908px;}
.yb5{bottom:432.659908px;}
.y19b{bottom:433.289908px;}
.y14d{bottom:433.739908px;}
.y1b{bottom:444.719908px;}
.y46{bottom:448.319908px;}
.y6c{bottom:449.969908px;}
.y17e{bottom:450.869908px;}
.ye8{bottom:451.679908px;}
.yb4{bottom:453.389908px;}
.y10e{bottom:455.189908px;}
.y14c{bottom:456.089908px;}
.y1a{bottom:461.219908px;}
.y19a{bottom:467.159908px;}
.y45{bottom:469.049908px;}
.y6b{bottom:470.669908px;}
.y12c{bottom:471.839908px;}
.y11f{bottom:472.109908px;}
.ye7{bottom:472.379908px;}
.y17d{bottom:472.739908px;}
.yb3{bottom:474.089908px;}
.y10d{bottom:475.619908px;}
.y19{bottom:477.689908px;}
.y14b{bottom:478.409908px;}
.y199{bottom:488.939908px;}
.y44{bottom:489.749908px;}
.y6a{bottom:491.369908px;}
.y12b{bottom:492.269908px;}
.ye6{bottom:493.079908px;}
.y18{bottom:493.169908px;}
.y10c{bottom:494.519908px;}
.yb2{bottom:494.789908px;}
.y14a{bottom:500.729908px;}
.y17{bottom:507.569908px;}
.y16c{bottom:510.359908px;}
.y43{bottom:510.449908px;}
.y198{bottom:510.809908px;}
.y69{bottom:512.069908px;}
.y10b{bottom:513.509908px;}
.ye5{bottom:513.779908px;}
.yb1{bottom:515.489908px;}
.y149{bottom:523.139908px;}
.y16{bottom:524.849908px;}
.y12a{bottom:525.209908px;}
.y16b{bottom:531.059908px;}
.y42{bottom:531.149908px;}
.y197{bottom:532.589908px;}
.y68{bottom:532.769908px;}
.ye4{bottom:534.479908px;}
.yb0{bottom:536.189908px;}
.y15{bottom:542.129908px;}
.y148{bottom:545.459908px;}
.y41{bottom:551.849908px;}
.y16a{bottom:552.119908px;}
.y67{bottom:553.469908px;}
.ye3{bottom:555.179908px;}
.ycc{bottom:556.619908px;}
.yaf{bottom:556.889908px;}
.y14{bottom:559.319908px;}
.y129{bottom:559.499908px;}
.y196{bottom:566.429908px;}
.y147{bottom:567.779908px;}
.y40{bottom:572.549908px;}
.y169{bottom:572.819908px;}
.y66{bottom:574.169908px;}
.ycb{bottom:575.609908px;}
.ye2{bottom:575.879908px;}
.y13{bottom:576.599908px;}
.yae{bottom:577.589908px;}
.y128{bottom:581.819908px;}
.y195{bottom:588.209908px;}
.y146{bottom:590.099908px;}
.y3f{bottom:593.249908px;}
.y168{bottom:593.519908px;}
.y12{bottom:593.879908px;}
.y65{bottom:594.869908px;}
.ye1{bottom:596.579908px;}
.yad{bottom:598.289908px;}
.yd3{bottom:601.619908px;}
.y127{bottom:604.139908px;}
.y194{bottom:610.079908px;}
.y11{bottom:611.069908px;}
.y145{bottom:612.419908px;}
.y3e{bottom:613.949908px;}
.y167{bottom:614.579908px;}
.y64{bottom:615.569908px;}
.y13e{bottom:617.009908px;}
.ye0{bottom:617.279908px;}
.yac{bottom:618.989908px;}
.yc0{bottom:622.319908px;}
.y126{bottom:626.549908px;}
.y10{bottom:628.349908px;}
.y3d{bottom:634.649908px;}
.y144{bottom:634.829908px;}
.y166{bottom:635.279908px;}
.y63{bottom:636.269908px;}
.ydf{bottom:637.979908px;}
.yab{bottom:639.689908px;}
.y9b{bottom:643.019908px;}
.y193{bottom:643.919908px;}
.yf{bottom:645.629908px;}
.y125{bottom:648.869908px;}
.y3c{bottom:655.349908px;}
.y165{bottom:655.979908px;}
.y62{bottom:656.969908px;}
.y143{bottom:657.149908px;}
.yf8{bottom:658.409908px;}
.yde{bottom:658.679908px;}
.yaa{bottom:660.389908px;}
.ye{bottom:662.819908px;}
.y192{bottom:665.699908px;}
.y124{bottom:671.189908px;}
.y3b{bottom:676.049908px;}
.y164{bottom:676.679908px;}
.y61{bottom:677.669908px;}
.ydd{bottom:679.379908px;}
.y142{bottom:679.469908px;}
.yd{bottom:680.729908px;}
.ya9{bottom:681.089908px;}
.y95{bottom:684.419908px;}
.y191{bottom:687.479908px;}
.y123{bottom:693.509908px;}
.y3a{bottom:696.749908px;}
.y163{bottom:697.649908px;}
.y60{bottom:698.369908px;}
.ydc{bottom:700.079908px;}
.ya8{bottom:701.789908px;}
.yc{bottom:715.019908px;}
.y122{bottom:715.829908px;}
.y38{bottom:717.449908px;}
.y162{bottom:718.349908px;}
.y5f{bottom:719.069908px;}
.ydb{bottom:720.779908px;}
.y190{bottom:721.319908px;}
.ya7{bottom:722.489908px;}
.y39{bottom:724.199908px;}
.y94{bottom:725.819908px;}
.yb{bottom:735.809908px;}
.y37{bottom:738.149908px;}
.y121{bottom:738.239908px;}
.y161{bottom:739.049908px;}
.y5e{bottom:739.769908px;}
.yda{bottom:741.479908px;}
.y141{bottom:742.919908px;}
.ya6{bottom:743.189908px;}
.yd2{bottom:746.519908px;}
.y36{bottom:758.849908px;}
.y160{bottom:759.749908px;}
.y5d{bottom:760.469908px;}
.y120{bottom:760.559908px;}
.y140{bottom:761.909908px;}
.yd9{bottom:762.179908px;}
.ya5{bottom:763.889908px;}
.y18f{bottom:764.969908px;}
.ya{bottom:765.149908px;}
.yca{bottom:767.219908px;}
.y35{bottom:779.549908px;}
.y15f{bottom:780.449908px;}
.y5c{bottom:781.169908px;}
.yd8{bottom:782.879908px;}
.ya4{bottom:784.589908px;}
.y18e{bottom:786.839908px;}
.y9{bottom:793.589908px;}
.y34{bottom:800.249908px;}
.y15e{bottom:801.509908px;}
.y5b{bottom:801.869908px;}
.yd7{bottom:803.579908px;}
.ya2{bottom:805.289908px;}
.y18d{bottom:808.619908px;}
.ya3{bottom:812.039908px;}
.y8{bottom:820.049908px;}
.y33{bottom:820.949908px;}
.y15d{bottom:822.209908px;}
.y5a{bottom:822.569908px;}
.yf1{bottom:824.009908px;}
.yd6{bottom:824.279908px;}
.y32{bottom:841.679908px;}
.y18c{bottom:842.489908px;}
.y15c{bottom:842.939908px;}
.y59{bottom:843.299908px;}
.yd5{bottom:845.009908px;}
.ya1{bottom:846.719908px;}
.y7{bottom:849.419908px;}
.y58{bottom:863.999908px;}
.y18b{bottom:864.269908px;}
.yd4{bottom:865.709908px;}
.ya0{bottom:867.149908px;}
.ybf{bottom:870.749908px;}
.y6{bottom:878.669908px;}
.y31{bottom:884.699908px;}
.y9f{bottom:886.139908px;}
.y7c{bottom:891.449908px;}
.y30{bottom:916.739908px;}
.y57{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.he{height:38.158594px;}
.ha{height:46.991602px;}
.h4{height:52.998047px;}
.hc{height:53.709961px;}
.h13{height:53.896641px;}
.hb{height:55.291992px;}
.h11{height:58.975137px;}
.h9{height:59.004492px;}
.h17{height:59.060391px;}
.h7{height:59.797090px;}
.h16{height:64.546875px;}
.h18{height:64.625449px;}
.hf{height:64.657617px;}
.h3{height:65.526152px;}
.h10{height:66.394687px;}
.h14{height:70.628906px;}
.h8{height:70.664062px;}
.hd{height:72.562500px;}
.h12{height:73.991602px;}
.h15{height:74.004654px;}
.h6{height:83.429473px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.x5{left:100.529989px;}
.x1c{left:105.419989px;}
.x20{left:124.229978px;}
.x4{left:127.559989px;}
.x21{left:136.289989px;}
.x2a{left:148.889989px;}
.xe{left:151.679978px;}
.xf{left:157.709989px;}
.x2b{left:174.359989px;}
.x2c{left:175.889989px;}
.x16{left:249.509978px;}
.x17{left:261.569989px;}
.x1a{left:275.069978px;}
.x1b{left:287.129989px;}
.x8{left:365.639978px;}
.x1f{left:368.249978px;}
.x9{left:371.669989px;}
.x2d{left:377.429989px;}
.x2{left:379.499978px;}
.x3{left:385.529989px;}
.x12{left:399.659978px;}
.x13{left:405.689989px;}
.x14{left:408.119978px;}
.x15{left:414.149989px;}
.x10{left:448.349978px;}
.x22{left:451.949978px;}
.x11{left:454.379989px;}
.x23{left:464.009989px;}
.x18{left:511.079978px;}
.x1d{left:519.179978px;}
.x19{left:523.139989px;}
.x1e{left:531.269989px;}
.xa{left:541.079978px;}
.xb{left:547.109989px;}
.x26{left:575.819978px;}
.x28{left:584.729978px;}
.x24{left:585.809978px;}
.x27{left:587.879989px;}
.x6{left:593.819978px;}
.x29{left:596.789989px;}
.x25{left:597.869989px;}
.x7{left:599.849989px;}
.xc{left:616.769978px;}
.xd{left:622.799989px;}
@media print{
.v3{vertical-align:-79.680000pt;}
.v4{vertical-align:-73.600000pt;}
.v6{vertical-align:-68.480000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls6{letter-spacing:-1.664000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.066347pt;}
.ls7{letter-spacing:0.069867pt;}
.lsf{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls9{letter-spacing:0.233600pt;}
.lsb{letter-spacing:6.240000pt;}
.lsc{letter-spacing:9.440000pt;}
.ls11{letter-spacing:19.328000pt;}
.ls10{letter-spacing:23.168000pt;}
.ls12{letter-spacing:30.208000pt;}
.ls14{letter-spacing:58.688000pt;}
.ls8{letter-spacing:97.386667pt;}
.lsa{letter-spacing:176.205440pt;}
.ls15{letter-spacing:688.746667pt;}
.wsd{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.800000pt;}
.wsb{word-spacing:-14.640000pt;}
.wsf{word-spacing:-14.464000pt;}
.ws3{word-spacing:-13.520000pt;}
.ws2{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.304427pt;}
.ws4{word-spacing:-13.200000pt;}
.ws0{word-spacing:-12.656000pt;}
.ws1{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-4.690560pt;}
._b{margin-left:-2.989440pt;}
._4{margin-left:-2.050560pt;}
._3{margin-left:-1.025280pt;}
._9{width:0.922667pt;}
._6{width:2.551147pt;}
._5{width:4.061440pt;}
._8{width:5.317333pt;}
._7{width:6.394667pt;}
._a{width:7.813333pt;}
._14{width:8.938667pt;}
._13{width:10.026667pt;}
._19{width:10.944000pt;}
._28{width:11.841280pt;}
._1a{width:12.736000pt;}
._15{width:13.888000pt;}
._16{width:14.848000pt;}
._27{width:15.986880pt;}
._11{width:16.896000pt;}
._1e{width:18.112000pt;}
._f{width:19.776000pt;}
._e{width:20.800000pt;}
._10{width:21.696000pt;}
._1f{width:22.980267pt;}
._2{width:23.923200pt;}
._24{width:25.292800pt;}
._23{width:26.816000pt;}
._18{width:27.840000pt;}
._17{width:28.992000pt;}
._20{width:29.952000pt;}
._2f{width:31.253333pt;}
._22{width:32.640000pt;}
._29{width:33.765333pt;}
._2e{width:35.200000pt;}
._2d{width:36.288000pt;}
._26{width:37.504000pt;}
._25{width:38.400000pt;}
._1b{width:40.000000pt;}
._1c{width:40.938667pt;}
._32{width:42.338880pt;}
._2a{width:44.480000pt;}
._2c{width:47.552000pt;}
._2b{width:48.768000pt;}
._31{width:50.244480pt;}
._c{width:216.138667pt;}
._30{width:366.117120pt;}
._0{width:715.786667pt;}
._21{width:904.850453pt;}
._d{width:1280.099413pt;}
._1{width:1554.080000pt;}
._1d{width:1576.800640pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2f{bottom:85.946585pt;}
.y17c{bottom:87.146585pt;}
.y13d{bottom:88.266585pt;}
.y10a{bottom:88.586585pt;}
.yf9{bottom:88.746585pt;}
.yf7{bottom:90.266585pt;}
.y11e{bottom:91.786585pt;}
.y15a{bottom:93.306585pt;}
.y18a{bottom:97.226585pt;}
.y106{bottom:98.826585pt;}
.y1a8{bottom:100.986585pt;}
.y2e{bottom:101.306585pt;}
.y109{bottom:105.386585pt;}
.y15b{bottom:105.546585pt;}
.y9e{bottom:105.946585pt;}
.y13c{bottom:106.666585pt;}
.y7b{bottom:107.146585pt;}
.yf6{bottom:108.666585pt;}
.y11d{bottom:110.186585pt;}
.y159{bottom:111.706585pt;}
.y56{bottom:116.586585pt;}
.y189{bottom:116.666585pt;}
.y9d{bottom:116.986585pt;}
.y105{bottom:117.226585pt;}
.y1a7{bottom:120.426585pt;}
.y2d{bottom:121.226585pt;}
.y17b{bottom:121.866585pt;}
.y108{bottom:123.946585pt;}
.y13b{bottom:125.066585pt;}
.y7a{bottom:125.546585pt;}
.yf5{bottom:127.066585pt;}
.y11c{bottom:128.586585pt;}
.y158{bottom:130.026585pt;}
.y55{bottom:131.946585pt;}
.y2c{bottom:132.266585pt;}
.y188{bottom:136.026585pt;}
.y86{bottom:136.586585pt;}
.y1a6{bottom:139.786585pt;}
.y17a{bottom:140.266585pt;}
.y107{bottom:142.346585pt;}
.y13a{bottom:143.386585pt;}
.y79{bottom:143.946585pt;}
.yf4{bottom:145.466585pt;}
.y11b{bottom:146.986585pt;}
.y54{bottom:147.306585pt;}
.y85{bottom:147.626585pt;}
.y104{bottom:147.706585pt;}
.y157{bottom:148.426585pt;}
.y53{bottom:151.946585pt;}
.y2b{bottom:152.026585pt;}
.y187{bottom:155.386585pt;}
.y179{bottom:158.666585pt;}
.y1a5{bottom:159.226585pt;}
.y9c{bottom:160.746585pt;}
.y139{bottom:161.786585pt;}
.y78{bottom:162.346585pt;}
.y9a{bottom:162.586585pt;}
.y52{bottom:162.986585pt;}
.yf3{bottom:163.866585pt;}
.y11a{bottom:165.386585pt;}
.y156{bottom:166.826585pt;}
.y92{bottom:167.066585pt;}
.y99{bottom:167.226585pt;}
.y103{bottom:167.626585pt;}
.y93{bottom:173.066585pt;}
.y2a{bottom:175.546585pt;}
.y178{bottom:177.066585pt;}
.y98{bottom:177.946585pt;}
.ybe{bottom:178.266585pt;}
.y84{bottom:179.146585pt;}
.y138{bottom:180.186585pt;}
.y77{bottom:180.666585pt;}
.yd1{bottom:182.266585pt;}
.y119{bottom:183.786585pt;}
.y155{bottom:185.226585pt;}
.y90{bottom:185.466585pt;}
.y102{bottom:187.466585pt;}
.y1a4{bottom:189.226585pt;}
.y29{bottom:190.186585pt;}
.y91{bottom:191.466585pt;}
.y97{bottom:193.306585pt;}
.y177{bottom:195.466585pt;}
.y51{bottom:196.106585pt;}
.y83{bottom:197.546585pt;}
.y137{bottom:198.586585pt;}
.y76{bottom:199.066585pt;}
.yd0{bottom:200.666585pt;}
.y118{bottom:202.186585pt;}
.y154{bottom:203.626585pt;}
.y8f{bottom:203.866585pt;}
.y28{bottom:204.826585pt;}
.y186{bottom:204.906585pt;}
.y101{bottom:207.306585pt;}
.yc8{bottom:208.586585pt;}
.y1a3{bottom:208.666585pt;}
.y96{bottom:208.906585pt;}
.y176{bottom:213.866585pt;}
.y50{bottom:214.506585pt;}
.y82{bottom:215.946585pt;}
.y136{bottom:216.986585pt;}
.y75{bottom:217.466585pt;}
.yce{bottom:219.066585pt;}
.y27{bottom:219.546585pt;}
.y117{bottom:220.586585pt;}
.y153{bottom:222.026585pt;}
.y8e{bottom:222.266585pt;}
.yc7{bottom:223.946585pt;}
.y185{bottom:224.266585pt;}
.ycf{bottom:225.066585pt;}
.y100{bottom:227.146585pt;}
.yc6{bottom:228.586585pt;}
.y175{bottom:232.266585pt;}
.y4f{bottom:232.906585pt;}
.y26{bottom:234.186585pt;}
.y81{bottom:234.346585pt;}
.y135{bottom:235.386585pt;}
.y74{bottom:235.866585pt;}
.ycd{bottom:237.466585pt;}
.y1a2{bottom:238.746585pt;}
.y116{bottom:238.986585pt;}
.yc5{bottom:239.306585pt;}
.yf0{bottom:239.626585pt;}
.y152{bottom:240.426585pt;}
.y8d{bottom:240.666585pt;}
.y184{bottom:243.706585pt;}
.yff{bottom:246.986585pt;}
.y25{bottom:248.826585pt;}
.y174{bottom:250.666585pt;}
.y4e{bottom:251.306585pt;}
.y80{bottom:252.746585pt;}
.y134{bottom:253.786585pt;}
.y73{bottom:254.266585pt;}
.yc4{bottom:254.586585pt;}
.yf2{bottom:255.626585pt;}
.ybd{bottom:255.866585pt;}
.y115{bottom:257.386585pt;}
.y1a1{bottom:258.106585pt;}
.y151{bottom:258.826585pt;}
.y8c{bottom:259.066585pt;}
.y183{bottom:263.066585pt;}
.y24{bottom:263.466585pt;}
.yfe{bottom:266.906585pt;}
.y173{bottom:269.066585pt;}
.y4d{bottom:269.706585pt;}
.yc3{bottom:269.946585pt;}
.y7f{bottom:271.146585pt;}
.y133{bottom:272.186585pt;}
.yef{bottom:272.666585pt;}
.ybb{bottom:274.266585pt;}
.yc2{bottom:274.586585pt;}
.y114{bottom:275.786585pt;}
.y8b{bottom:277.466585pt;}
.y1a0{bottom:277.546585pt;}
.y23{bottom:278.106585pt;}
.ybc{bottom:280.266585pt;}
.yc1{bottom:285.626585pt;}
.yfd{bottom:286.746585pt;}
.y172{bottom:287.466585pt;}
.y4c{bottom:288.106585pt;}
.y7e{bottom:289.546585pt;}
.y132{bottom:290.586585pt;}
.y72{bottom:291.066585pt;}
.yba{bottom:292.666585pt;}
.y22{bottom:292.746585pt;}
.y182{bottom:293.146585pt;}
.y113{bottom:294.186585pt;}
.y8a{bottom:295.866585pt;}
.y19f{bottom:296.906585pt;}
.yee{bottom:297.066585pt;}
.y171{bottom:305.866585pt;}
.y4b{bottom:306.506585pt;}
.yfc{bottom:306.586585pt;}
.y21{bottom:307.386585pt;}
.y7d{bottom:307.946585pt;}
.y131{bottom:308.986585pt;}
.y71{bottom:309.226585pt;}
.yed{bottom:309.466585pt;}
.yb9{bottom:311.066585pt;}
.y181{bottom:312.506585pt;}
.y112{bottom:312.586585pt;}
.y150{bottom:316.586585pt;}
.y20{bottom:322.026585pt;}
.y170{bottom:324.266585pt;}
.y4a{bottom:324.906585pt;}
.y70{bottom:326.346585pt;}
.yfb{bottom:326.426585pt;}
.y19e{bottom:326.986585pt;}
.y130{bottom:327.386585pt;}
.yec{bottom:327.866585pt;}
.yb8{bottom:329.466585pt;}
.y111{bottom:330.986585pt;}
.y180{bottom:331.946585pt;}
.y89{bottom:332.666585pt;}
.y1f{bottom:336.666585pt;}
.y16f{bottom:342.666585pt;}
.y49{bottom:343.306585pt;}
.y6f{bottom:344.746585pt;}
.y12f{bottom:345.786585pt;}
.y14f{bottom:345.866585pt;}
.yeb{bottom:346.266585pt;}
.y19d{bottom:346.346585pt;}
.y13f{bottom:347.546585pt;}
.yb7{bottom:347.786585pt;}
.y110{bottom:349.386585pt;}
.y88{bottom:351.066585pt;}
.y1e{bottom:351.306585pt;}
.y16e{bottom:361.386585pt;}
.y48{bottom:361.706585pt;}
.y6e{bottom:363.146585pt;}
.y12e{bottom:364.186585pt;}
.yea{bottom:364.666585pt;}
.y14e{bottom:365.706585pt;}
.y19c{bottom:365.786585pt;}
.y1d{bottom:366.026585pt;}
.yb6{bottom:366.186585pt;}
.y10f{bottom:367.786585pt;}
.yc9{bottom:369.146585pt;}
.y87{bottom:369.466585pt;}
.y16d{bottom:379.786585pt;}
.y47{bottom:380.106585pt;}
.y1c{bottom:380.666585pt;}
.y17f{bottom:381.386585pt;}
.y6d{bottom:381.546585pt;}
.y12d{bottom:382.586585pt;}
.yfa{bottom:382.826585pt;}
.ye9{bottom:383.066585pt;}
.yb5{bottom:384.586585pt;}
.y19b{bottom:385.146585pt;}
.y14d{bottom:385.546585pt;}
.y1b{bottom:395.306585pt;}
.y46{bottom:398.506585pt;}
.y6c{bottom:399.973252pt;}
.y17e{bottom:400.773252pt;}
.ye8{bottom:401.493252pt;}
.yb4{bottom:403.013252pt;}
.y10e{bottom:404.613252pt;}
.y14c{bottom:405.413252pt;}
.y1a{bottom:409.973252pt;}
.y19a{bottom:415.253252pt;}
.y45{bottom:416.933252pt;}
.y6b{bottom:418.373252pt;}
.y12c{bottom:419.413252pt;}
.y11f{bottom:419.653252pt;}
.ye7{bottom:419.893252pt;}
.y17d{bottom:420.213252pt;}
.yb3{bottom:421.413252pt;}
.y10d{bottom:422.773252pt;}
.y19{bottom:424.613252pt;}
.y14b{bottom:425.253252pt;}
.y199{bottom:434.613252pt;}
.y44{bottom:435.333252pt;}
.y6a{bottom:436.773252pt;}
.y12b{bottom:437.573252pt;}
.ye6{bottom:438.293252pt;}
.y18{bottom:438.373252pt;}
.y10c{bottom:439.573252pt;}
.yb2{bottom:439.813252pt;}
.y14a{bottom:445.093252pt;}
.y17{bottom:451.173252pt;}
.y16c{bottom:453.653252pt;}
.y43{bottom:453.733252pt;}
.y198{bottom:454.053252pt;}
.y69{bottom:455.173252pt;}
.y10b{bottom:456.453252pt;}
.ye5{bottom:456.693252pt;}
.yb1{bottom:458.213252pt;}
.y149{bottom:465.013252pt;}
.y16{bottom:466.533252pt;}
.y12a{bottom:466.853252pt;}
.y16b{bottom:472.053252pt;}
.y42{bottom:472.133252pt;}
.y197{bottom:473.413252pt;}
.y68{bottom:473.573252pt;}
.ye4{bottom:475.093252pt;}
.yb0{bottom:476.613252pt;}
.y15{bottom:481.893252pt;}
.y148{bottom:484.853252pt;}
.y41{bottom:490.533252pt;}
.y16a{bottom:490.773252pt;}
.y67{bottom:491.973252pt;}
.ye3{bottom:493.493252pt;}
.ycc{bottom:494.773252pt;}
.yaf{bottom:495.013252pt;}
.y14{bottom:497.173252pt;}
.y129{bottom:497.333252pt;}
.y196{bottom:503.493252pt;}
.y147{bottom:504.693252pt;}
.y40{bottom:508.933252pt;}
.y169{bottom:509.173252pt;}
.y66{bottom:510.373252pt;}
.ycb{bottom:511.653252pt;}
.ye2{bottom:511.893252pt;}
.y13{bottom:512.533252pt;}
.yae{bottom:513.413252pt;}
.y128{bottom:517.173252pt;}
.y195{bottom:522.853252pt;}
.y146{bottom:524.533252pt;}
.y3f{bottom:527.333252pt;}
.y168{bottom:527.573252pt;}
.y12{bottom:527.893252pt;}
.y65{bottom:528.773252pt;}
.ye1{bottom:530.293252pt;}
.yad{bottom:531.813252pt;}
.yd3{bottom:534.773252pt;}
.y127{bottom:537.013252pt;}
.y194{bottom:542.293252pt;}
.y11{bottom:543.173252pt;}
.y145{bottom:544.373252pt;}
.y3e{bottom:545.733252pt;}
.y167{bottom:546.293252pt;}
.y64{bottom:547.173252pt;}
.y13e{bottom:548.453252pt;}
.ye0{bottom:548.693252pt;}
.yac{bottom:550.213252pt;}
.yc0{bottom:553.173252pt;}
.y126{bottom:556.933252pt;}
.y10{bottom:558.533252pt;}
.y3d{bottom:564.133252pt;}
.y144{bottom:564.293252pt;}
.y166{bottom:564.693252pt;}
.y63{bottom:565.573252pt;}
.ydf{bottom:567.093252pt;}
.yab{bottom:568.613252pt;}
.y9b{bottom:571.573252pt;}
.y193{bottom:572.373252pt;}
.yf{bottom:573.893252pt;}
.y125{bottom:576.773252pt;}
.y3c{bottom:582.533252pt;}
.y165{bottom:583.093252pt;}
.y62{bottom:583.973252pt;}
.y143{bottom:584.133252pt;}
.yf8{bottom:585.253252pt;}
.yde{bottom:585.493252pt;}
.yaa{bottom:587.013252pt;}
.ye{bottom:589.173252pt;}
.y192{bottom:591.733252pt;}
.y124{bottom:596.613252pt;}
.y3b{bottom:600.933252pt;}
.y164{bottom:601.493252pt;}
.y61{bottom:602.373252pt;}
.ydd{bottom:603.893252pt;}
.y142{bottom:603.973252pt;}
.yd{bottom:605.093252pt;}
.ya9{bottom:605.413252pt;}
.y95{bottom:608.373252pt;}
.y191{bottom:611.093252pt;}
.y123{bottom:616.453252pt;}
.y3a{bottom:619.333252pt;}
.y163{bottom:620.133252pt;}
.y60{bottom:620.773252pt;}
.ydc{bottom:622.293252pt;}
.ya8{bottom:623.813252pt;}
.yc{bottom:635.573252pt;}
.y122{bottom:636.293252pt;}
.y38{bottom:637.733252pt;}
.y162{bottom:638.533252pt;}
.y5f{bottom:639.173252pt;}
.ydb{bottom:640.693252pt;}
.y190{bottom:641.173252pt;}
.ya7{bottom:642.213252pt;}
.y39{bottom:643.733252pt;}
.y94{bottom:645.173252pt;}
.yb{bottom:654.053252pt;}
.y37{bottom:656.133252pt;}
.y121{bottom:656.213252pt;}
.y161{bottom:656.933252pt;}
.y5e{bottom:657.573252pt;}
.yda{bottom:659.093252pt;}
.y141{bottom:660.373252pt;}
.ya6{bottom:660.613252pt;}
.yd2{bottom:663.573252pt;}
.y36{bottom:674.533252pt;}
.y160{bottom:675.333252pt;}
.y5d{bottom:675.973252pt;}
.y120{bottom:676.053252pt;}
.y140{bottom:677.253252pt;}
.yd9{bottom:677.493252pt;}
.ya5{bottom:679.013252pt;}
.y18f{bottom:679.973252pt;}
.ya{bottom:680.133252pt;}
.yca{bottom:681.973252pt;}
.y35{bottom:692.933252pt;}
.y15f{bottom:693.733252pt;}
.y5c{bottom:694.373252pt;}
.yd8{bottom:695.893252pt;}
.ya4{bottom:697.413252pt;}
.y18e{bottom:699.413252pt;}
.y9{bottom:705.413252pt;}
.y34{bottom:711.333252pt;}
.y15e{bottom:712.453252pt;}
.y5b{bottom:712.773252pt;}
.yd7{bottom:714.293252pt;}
.ya2{bottom:715.813252pt;}
.y18d{bottom:718.773252pt;}
.ya3{bottom:721.813252pt;}
.y8{bottom:728.933252pt;}
.y33{bottom:729.733252pt;}
.y15d{bottom:730.853252pt;}
.y5a{bottom:731.173252pt;}
.yf1{bottom:732.453252pt;}
.yd6{bottom:732.693252pt;}
.y32{bottom:748.159919pt;}
.y18c{bottom:748.879919pt;}
.y15c{bottom:749.279919pt;}
.y59{bottom:749.599919pt;}
.yd5{bottom:751.119919pt;}
.ya1{bottom:752.639919pt;}
.y7{bottom:755.039919pt;}
.y58{bottom:767.999919pt;}
.y18b{bottom:768.239919pt;}
.yd4{bottom:769.519919pt;}
.ya0{bottom:770.799919pt;}
.ybf{bottom:773.999919pt;}
.y6{bottom:781.039919pt;}
.y31{bottom:786.399919pt;}
.y9f{bottom:787.679919pt;}
.y7c{bottom:792.399919pt;}
.y30{bottom:814.879919pt;}
.y57{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.he{height:33.918750pt;}
.ha{height:41.770312pt;}
.h4{height:47.109375pt;}
.hc{height:47.742188pt;}
.h13{height:47.908125pt;}
.hb{height:49.148438pt;}
.h11{height:52.422344pt;}
.h9{height:52.448437pt;}
.h17{height:52.498125pt;}
.h7{height:53.152969pt;}
.h16{height:57.375000pt;}
.h18{height:57.444844pt;}
.hf{height:57.473437pt;}
.h3{height:58.245469pt;}
.h10{height:59.017500pt;}
.h14{height:62.781250pt;}
.h8{height:62.812500pt;}
.hd{height:64.500000pt;}
.h12{height:65.770312pt;}
.h15{height:65.781915pt;}
.h6{height:74.159531pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.x5{left:89.359990pt;}
.x1c{left:93.706657pt;}
.x20{left:110.426648pt;}
.x4{left:113.386657pt;}
.x21{left:121.146657pt;}
.x2a{left:132.346657pt;}
.xe{left:134.826648pt;}
.xf{left:140.186657pt;}
.x2b{left:154.986657pt;}
.x2c{left:156.346657pt;}
.x16{left:221.786648pt;}
.x17{left:232.506657pt;}
.x1a{left:244.506648pt;}
.x1b{left:255.226657pt;}
.x8{left:325.013314pt;}
.x1f{left:327.333314pt;}
.x9{left:330.373324pt;}
.x2d{left:335.493324pt;}
.x2{left:337.333314pt;}
.x3{left:342.693324pt;}
.x12{left:355.253314pt;}
.x13{left:360.613324pt;}
.x14{left:362.773314pt;}
.x15{left:368.133324pt;}
.x10{left:398.533314pt;}
.x22{left:401.733314pt;}
.x11{left:403.893324pt;}
.x23{left:412.453324pt;}
.x18{left:454.293314pt;}
.x1d{left:461.493314pt;}
.x19{left:465.013324pt;}
.x1e{left:472.239990pt;}
.xa{left:480.959981pt;}
.xb{left:486.319990pt;}
.x26{left:511.839981pt;}
.x28{left:519.759981pt;}
.x24{left:520.719981pt;}
.x27{left:522.559990pt;}
.x6{left:527.839981pt;}
.x29{left:530.479990pt;}
.x25{left:531.439990pt;}
.x7{left:533.199990pt;}
.xc{left:548.239981pt;}
.xd{left:553.599990pt;}
}




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