
    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_ed2af0486b2a332eabdb7f49.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_969ab2a492f525b3a203f181.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_a02eb55ec2e20e4cce8140f6.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_9077ff7ee4ac0d8f565a6484.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7cc17ddea8aef7c5aa375526.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_feeaf9f4f8ff03de695ca58a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2b10174840e7d53f76107d83.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_30c38b64be7e071f2dee1df7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2960547ca7ad9daddd768047.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3b4c323fe4d4f3775a95d5f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_02ed648d3c671220b99ee8cb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1f7579a12c34e43beabe9d8d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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:-82.800000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.ls17{letter-spacing:-2.070000px;}
.ls7{letter-spacing:-1.872000px;}
.ls15{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.220200px;}
.ls3{letter-spacing:-0.200400px;}
.ls4{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.153600px;}
.ls26{letter-spacing:-0.139800px;}
.ls10{letter-spacing:-0.114600px;}
.ls8{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.001080px;}
.ls12{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.078600px;}
.ls1{letter-spacing:0.090000px;}
.ls38{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.123120px;}
.ls14{letter-spacing:0.139800px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.193200px;}
.ls32{letter-spacing:0.193320px;}
.lse{letter-spacing:0.332400px;}
.ls19{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.450000px;}
.ls9{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.311120px;}
.ls18{letter-spacing:2.160000px;}
.ls21{letter-spacing:2.391120px;}
.ls24{letter-spacing:2.970000px;}
.ls2c{letter-spacing:3.690000px;}
.ls11{letter-spacing:4.680000px;}
.ls2b{letter-spacing:5.400000px;}
.ls30{letter-spacing:6.210000px;}
.ls20{letter-spacing:6.480000px;}
.ls2a{letter-spacing:7.071120px;}
.ls37{letter-spacing:7.200000px;}
.ls23{letter-spacing:8.151120px;}
.ls1b{letter-spacing:9.000000px;}
.lsb{letter-spacing:11.700000px;}
.ls36{letter-spacing:11.880000px;}
.ls1c{letter-spacing:12.060000px;}
.ls31{letter-spacing:14.130000px;}
.ls1f{letter-spacing:15.351120px;}
.ls13{letter-spacing:19.890000px;}
.ls2d{letter-spacing:24.840000px;}
.ls22{letter-spacing:37.080000px;}
.ls28{letter-spacing:64.944000px;}
.ls2f{letter-spacing:109.560000px;}
.lsd{letter-spacing:109.920000px;}
.ls1e{letter-spacing:128.751120px;}
.ls2e{letter-spacing:194.880000px;}
.ls34{letter-spacing:917.400000px;}
.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;}
}
.wsa{word-spacing:-65.880000px;}
.ws0{word-spacing:-21.723120px;}
.ws16{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.640000px;}
.wse{word-spacing:-15.223200px;}
.ws5{word-spacing:-15.210000px;}
.wsc{word-spacing:-15.169800px;}
.ws14{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.030000px;}
.wsf{word-spacing:-14.967480px;}
.ws12{word-spacing:-14.890200px;}
.ws13{word-spacing:-14.876400px;}
.ws4{word-spacing:-14.850000px;}
.wsd{word-spacing:-14.616600px;}
.wsb{word-spacing:-14.552400px;}
.ws1{word-spacing:-14.238000px;}
.ws3{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.204000px;}
.ws8{word-spacing:-9.720000px;}
.ws15{word-spacing:-0.060120px;}
.ws9{word-spacing:0.000000px;}
._20{margin-left:-4.676400px;}
._14{margin-left:-3.628320px;}
._e{margin-left:-2.586840px;}
._5{margin-left:-1.057320px;}
._9{width:1.057320px;}
._d{width:2.403000px;}
._2{width:4.133160px;}
._3{width:5.382720px;}
._c{width:6.663720px;}
._10{width:7.874280px;}
._12{width:9.113040px;}
._f{width:10.340640px;}
._4{width:12.303360px;}
._6{width:13.502520px;}
._1e{width:14.736000px;}
._1d{width:15.744000px;}
._22{width:16.776000px;}
._24{width:17.803080px;}
._16{width:19.584000px;}
._19{width:21.427200px;}
._a{width:23.068800px;}
._b{width:24.126120px;}
._23{width:25.193880px;}
._2e{width:26.790120px;}
._1b{width:27.864000px;}
._1c{width:28.920000px;}
._7{width:30.085560px;}
._8{width:31.335120px;}
._21{width:32.767560px;}
._15{width:33.768000px;}
._31{width:35.111280px;}
._2d{width:36.132120px;}
._30{width:37.330560px;}
._2c{width:38.376000px;}
._28{width:39.384000px;}
._29{width:41.184000px;}
._1f{width:42.192000px;}
._26{width:43.458120px;}
._25{width:45.029880px;}
._2b{width:46.194120px;}
._34{width:47.333880px;}
._33{width:48.625320px;}
._32{width:50.616000px;}
._27{width:53.352000px;}
._35{width:55.080000px;}
._38{width:59.780160px;}
._3b{width:61.683840px;}
._2f{width:64.279200px;}
._17{width:65.304000px;}
._18{width:66.384000px;}
._37{width:68.657040px;}
._36{width:69.919560px;}
._39{width:76.752000px;}
._3d{width:110.281320px;}
._3a{width:111.384000px;}
._1a{width:162.812160px;}
._11{width:243.156000px;}
._3c{width:806.688000px;}
._0{width:886.380000px;}
._2a{width:1387.551600px;}
._13{width:1421.109960px;}
._1{width:1748.340000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(95,99,104);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:42.120000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fsa{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;}
.y2a{bottom:96.689908px;}
.y155{bottom:97.499908px;}
.yb6{bottom:98.039908px;}
.y55{bottom:101.909908px;}
.y29{bottom:113.969908px;}
.y54{bottom:114.329908px;}
.y10d{bottom:114.689908px;}
.y134{bottom:115.319908px;}
.yb5{bottom:116.669908px;}
.y154{bottom:118.199908px;}
.y156{bottom:118.739908px;}
.yfa{bottom:119.189908px;}
.y10c{bottom:119.909908px;}
.y87{bottom:131.159908px;}
.y10b{bottom:132.689908px;}
.y133{bottom:133.859908px;}
.yb4{bottom:135.299908px;}
.y28{bottom:136.379908px;}
.y153{bottom:138.899908px;}
.yea{bottom:139.439908px;}
.y86{bottom:148.439908px;}
.y27{bottom:148.799908px;}
.yf9{bottom:149.609908px;}
.y10a{bottom:149.969908px;}
.y53{bottom:151.139908px;}
.y132{bottom:152.489908px;}
.y99{bottom:153.659908px;}
.yb3{bottom:153.839908px;}
.yf8{bottom:155.639908px;}
.y157{bottom:156.269908px;}
.y152{bottom:159.599908px;}
.ye9{bottom:160.139908px;}
.y85{bottom:165.719908px;}
.y10f{bottom:166.079908px;}
.y109{bottom:167.159908px;}
.yf7{bottom:168.599908px;}
.y84{bottom:170.939908px;}
.y131{bottom:171.119908px;}
.y52{bottom:171.839908px;}
.yb2{bottom:172.469908px;}
.yf6{bottom:173.819908px;}
.y151{bottom:180.299908px;}
.ye8{bottom:180.839908px;}
.y83{bottom:182.909908px;}
.y119{bottom:183.359908px;}
.y14a{bottom:183.719908px;}
.y115{bottom:184.079908px;}
.y108{bottom:185.609908px;}
.yf5{bottom:185.879908px;}
.y13d{bottom:187.589908px;}
.y98{bottom:188.129908px;}
.y130{bottom:189.749908px;}
.y114{bottom:190.109908px;}
.yb1{bottom:191.099908px;}
.y107{bottom:191.639908px;}
.y51{bottom:192.539908px;}
.y26{bottom:193.259908px;}
.y82{bottom:200.189908px;}
.y149{bottom:200.909908px;}
.y150{bottom:200.999908px;}
.ycf{bottom:201.359908px;}
.ye7{bottom:201.539908px;}
.yf4{bottom:203.069908px;}
.y106{bottom:204.599908px;}
.yfe{bottom:205.409908px;}
.yce{bottom:207.389908px;}
.y10e{bottom:208.289908px;}
.y12f{bottom:208.379908px;}
.y25{bottom:209.729908px;}
.yb0{bottom:211.169908px;}
.y50{bottom:213.239908px;}
.yaf{bottom:217.199908px;}
.y81{bottom:217.469908px;}
.y11d{bottom:217.829908px;}
.y148{bottom:218.189908px;}
.ycd{bottom:220.349908px;}
.y139{bottom:220.709908px;}
.y14f{bottom:221.699908px;}
.y105{bottom:221.879908px;}
.ye5{bottom:222.239908px;}
.ye2{bottom:222.689908px;}
.y24{bottom:226.289908px;}
.y12e{bottom:227.009908px;}
.y104{bottom:227.099908px;}
.ye6{bottom:228.989908px;}
.yae{bottom:230.159908px;}
.y4f{bottom:233.939908px;}
.y80{bottom:234.659908px;}
.ye1{bottom:235.019908px;}
.y147{bottom:236.189908px;}
.ycc{bottom:237.629908px;}
.y103{bottom:239.429908px;}
.yf1{bottom:239.879908px;}
.y14e{bottom:242.399908px;}
.y23{bottom:242.759908px;}
.ye4{bottom:242.939908px;}
.y12d{bottom:245.549908px;}
.yad{bottom:247.349908px;}
.y7f{bottom:251.939908px;}
.yfd{bottom:252.299908px;}
.y146{bottom:253.379908px;}
.y4e{bottom:254.639908px;}
.ycb{bottom:254.819908px;}
.y97{bottom:257.159908px;}
.y22{bottom:259.229908px;}
.yca{bottom:260.039908px;}
.y14d{bottom:263.099908px;}
.ye3{bottom:263.639908px;}
.yac{bottom:264.629908px;}
.y12c{bottom:265.619908px;}
.y7e{bottom:269.219908px;}
.y96{bottom:269.579908px;}
.y138{bottom:270.389908px;}
.y145{bottom:270.569908px;}
.y12b{bottom:271.649908px;}
.yc9{bottom:272.099908px;}
.ydd{bottom:274.439908px;}
.y4d{bottom:275.339908px;}
.y21{bottom:275.699908px;}
.y144{bottom:275.789908px;}
.y113{bottom:277.319908px;}
.yab{bottom:281.909908px;}
.y14c{bottom:283.799908px;}
.ye0{bottom:284.339908px;}
.y12a{bottom:284.609908px;}
.y7d{bottom:286.409908px;}
.y117{bottom:286.769908px;}
.y143{bottom:287.849908px;}
.yc8{bottom:289.289908px;}
.y112{bottom:289.739908px;}
.y137{bottom:291.629908px;}
.y20{bottom:292.169908px;}
.y4c{bottom:296.039908px;}
.yaa{bottom:299.099908px;}
.y129{bottom:301.889908px;}
.y7c{bottom:303.689908px;}
.ya9{bottom:304.319908px;}
.y14b{bottom:304.499908px;}
.ydf{bottom:305.039908px;}
.y142{bottom:305.129908px;}
.yc7{bottom:306.569908px;}
.y1f{bottom:308.639908px;}
.y7b{bottom:308.909908px;}
.y141{bottom:310.349908px;}
.y135{bottom:311.789908px;}
.ya8{bottom:316.379908px;}
.y4b{bottom:316.739908px;}
.y128{bottom:319.079908px;}
.y7a{bottom:320.969908px;}
.y136{bottom:321.329908px;}
.y140{bottom:322.679908px;}
.yc6{bottom:323.849908px;}
.y1e{bottom:325.109908px;}
.y95{bottom:325.739908px;}
.yf0{bottom:326.189908px;}
.y118{bottom:332.489908px;}
.ya7{bottom:333.659908px;}
.y127{bottom:336.359908px;}
.y4a{bottom:337.439908px;}
.y79{bottom:338.159908px;}
.yc5{bottom:341.039908px;}
.y1d{bottom:341.219908px;}
.y78{bottom:343.379908px;}
.y94{bottom:346.439908px;}
.ya6{bottom:350.849908px;}
.y110{bottom:353.189908px;}
.y126{bottom:353.639908px;}
.y77{bottom:355.439908px;}
.y49{bottom:358.139908px;}
.yc4{bottom:358.319908px;}
.y1c{bottom:358.499908px;}
.yba{bottom:360.659908px;}
.y93{bottom:367.139908px;}
.ya5{bottom:368.129908px;}
.y125{bottom:370.829908px;}
.y76{bottom:372.719908px;}
.y111{bottom:373.889908px;}
.yc3{bottom:375.599908px;}
.y1b{bottom:375.689908px;}
.y11b{bottom:377.939908px;}
.y48{bottom:378.839908px;}
.ya4{bottom:385.319908px;}
.y92{bottom:387.839908px;}
.y124{bottom:388.109908px;}
.y75{bottom:389.909908px;}
.y11a{bottom:390.269908px;}
.ya3{bottom:390.539908px;}
.yc2{bottom:392.789908px;}
.y1a{bottom:392.969908px;}
.y116{bottom:394.589908px;}
.yb9{bottom:395.129908px;}
.y47{bottom:399.539908px;}
.ya2{bottom:402.599908px;}
.y123{bottom:405.299908px;}
.y74{bottom:407.189908px;}
.y100{bottom:407.549908px;}
.ya1{bottom:407.819908px;}
.y91{bottom:408.539908px;}
.yc1{bottom:410.069908px;}
.y19{bottom:410.249908px;}
.y122{bottom:410.519908px;}
.yef{bottom:412.409908px;}
.y102{bottom:415.289908px;}
.ya0{bottom:419.879908px;}
.y46{bottom:420.239908px;}
.y121{bottom:422.579908px;}
.y73{bottom:424.469908px;}
.yee{bottom:424.829908px;}
.yc0{bottom:427.349908px;}
.y18{bottom:427.439908px;}
.yf3{bottom:427.709908px;}
.y90{bottom:429.239908px;}
.yb8{bottom:429.689908px;}
.y13e{bottom:435.989908px;}
.y9f{bottom:437.069908px;}
.y120{bottom:439.859908px;}
.y45{bottom:440.939908px;}
.y72{bottom:441.659908px;}
.yb7{bottom:442.019908px;}
.ybf{bottom:444.539908px;}
.y17{bottom:444.719908px;}
.y11f{bottom:445.079908px;}
.y13c{bottom:446.879908px;}
.y8f{bottom:449.969908px;}
.y9e{bottom:454.379908px;}
.yfc{bottom:455.999908px;}
.yed{bottom:456.719908px;}
.y11e{bottom:457.529908px;}
.y71{bottom:458.969908px;}
.y9d{bottom:459.599908px;}
.y43{bottom:461.669908px;}
.ybe{bottom:461.849908px;}
.y16{bottom:462.029908px;}
.ybd{bottom:467.069908px;}
.y44{bottom:468.419908px;}
.y8e{bottom:470.669908px;}
.y9c{bottom:472.019908px;}
.ydc{bottom:472.379908px;}
.y70{bottom:476.159908px;}
.y11c{bottom:477.419908px;}
.y15{bottom:479.219908px;}
.ybc{bottom:479.489908px;}
.y42{bottom:482.369908px;}
.y8d{bottom:491.369908px;}
.ydb{bottom:493.079908px;}
.y6f{bottom:493.439908px;}
.y14{bottom:496.499908px;}
.yec{bottom:498.119908px;}
.y13b{bottom:498.659908px;}
.y41{bottom:503.069908px;}
.y6e{bottom:510.719908px;}
.y13a{bottom:511.079908px;}
.y8b{bottom:512.069908px;}
.y13{bottom:513.779908px;}
.y6d{bottom:515.939908px;}
.y8c{bottom:518.819908px;}
.y40{bottom:523.769908px;}
.y6c{bottom:528.359908px;}
.y12{bottom:530.969908px;}
.y8a{bottom:532.769908px;}
.yda{bottom:534.479908px;}
.yf2{bottom:539.519908px;}
.y3f{bottom:544.469908px;}
.y11{bottom:548.879908px;}
.y6a{bottom:553.469908px;}
.yd9{bottom:555.179908px;}
.y6b{bottom:560.219908px;}
.y3e{bottom:565.169908px;}
.y69{bottom:574.169908px;}
.yd8{bottom:575.879908px;}
.yff{bottom:580.919908px;}
.y10{bottom:585.599908px;}
.y3d{bottom:585.869908px;}
.y67{bottom:594.869908px;}
.yd7{bottom:596.579908px;}
.y68{bottom:601.619908px;}
.y3c{bottom:606.569908px;}
.yf{bottom:614.939908px;}
.y65{bottom:615.569908px;}
.yd6{bottom:617.279908px;}
.y66{bottom:622.319908px;}
.y3b{bottom:627.269908px;}
.y64{bottom:636.269908px;}
.yd5{bottom:637.979908px;}
.y101{bottom:643.019908px;}
.ye{bottom:644.279908px;}
.y3a{bottom:647.969908px;}
.y63{bottom:656.969908px;}
.y89{bottom:663.719908px;}
.yd{bottom:673.619908px;}
.y39{bottom:674.339908px;}
.y62{bottom:677.669908px;}
.yd4{bottom:679.379908px;}
.y13f{bottom:684.419908px;}
.y38{bottom:690.809908px;}
.y61{bottom:698.369908px;}
.yd3{bottom:700.079908px;}
.yc{bottom:702.869908px;}
.y88{bottom:705.119908px;}
.y37{bottom:707.369908px;}
.y60{bottom:719.069908px;}
.yd2{bottom:720.509908px;}
.y36{bottom:723.839908px;}
.y9b{bottom:725.819908px;}
.yb{bottom:732.209908px;}
.y5f{bottom:739.769908px;}
.y35{bottom:740.309908px;}
.yde{bottom:746.519908px;}
.y34{bottom:756.779908px;}
.y5e{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.yd1{bottom:767.219908px;}
.y33{bottom:773.249908px;}
.y5d{bottom:781.169908px;}
.y9a{bottom:787.919908px;}
.y32{bottom:789.719908px;}
.y9{bottom:790.799908px;}
.y5c{bottom:801.869908px;}
.y31{bottom:806.189908px;}
.yfb{bottom:808.619908px;}
.y8{bottom:820.049908px;}
.y5a{bottom:822.569908px;}
.y30{bottom:822.659908px;}
.y5b{bottom:829.319908px;}
.y2f{bottom:839.159908px;}
.y59{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.yeb{bottom:850.049908px;}
.y2e{bottom:855.629908px;}
.y58{bottom:863.999908px;}
.yd0{bottom:870.749908px;}
.y2d{bottom:872.189908px;}
.y6{bottom:878.669908px;}
.y57{bottom:884.699908px;}
.y2c{bottom:888.659908px;}
.ybb{bottom:891.449908px;}
.y2b{bottom:916.739908px;}
.y56{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.ha{height:38.158594px;}
.hf{height:41.893770px;}
.h12{height:46.968223px;}
.hc{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h10{height:53.896641px;}
.h8{height:55.291992px;}
.h14{height:58.975137px;}
.h7{height:59.004492px;}
.he{height:64.546875px;}
.hd{height:64.657617px;}
.h3{height:65.526152px;}
.h11{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h16{height:74.004654px;}
.h13{height:82.323633px;}
.h15{height:85.886895px;}
.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;}
.x92{left:97.919989px;}
.x5{left:100.529989px;}
.x1a{left:105.419989px;}
.x88{left:110.279989px;}
.x7a{left:123.689978px;}
.x2{left:127.559989px;}
.x6d{left:134.669978px;}
.x7b{left:135.749989px;}
.x42{left:137.639978px;}
.x74{left:141.689978px;}
.x6e{left:146.729989px;}
.x34{left:148.709978px;}
.x8a{left:152.669978px;}
.x3d{left:154.649978px;}
.x35{left:157.709978px;}
.x15{left:160.679978px;}
.x19{left:162.659978px;}
.x52{left:165.719989px;}
.x1b{left:167.699978px;}
.x36{left:169.769989px;}
.x16{left:172.739989px;}
.xa{left:174.629978px;}
.x8d{left:176.789989px;}
.xb{left:180.659989px;}
.x5a{left:181.739989px;}
.x45{left:184.439989px;}
.x59{left:186.689989px;}
.x6{left:188.219978px;}
.x7{left:194.249989px;}
.x5f{left:195.599978px;}
.x60{left:207.659989px;}
.x63{left:209.189978px;}
.x48{left:210.809978px;}
.x11{left:212.699978px;}
.x12{left:218.729989px;}
.x64{left:221.249989px;}
.x49{left:222.869989px;}
.x4a{left:227.909978px;}
.x1e{left:230.879978px;}
.x4b{left:239.969989px;}
.x1f{left:242.939989px;}
.x61{left:249.869978px;}
.x5d{left:251.219978px;}
.x4e{left:252.659978px;}
.x28{left:260.039978px;}
.x22{left:261.929978px;}
.x5e{left:263.279989px;}
.x4f{left:264.719989px;}
.x29{left:272.099989px;}
.x23{left:273.989989px;}
.x68{left:276.239978px;}
.x75{left:279.659978px;}
.x46{left:283.709978px;}
.x69{left:288.299989px;}
.x76{left:291.719989px;}
.x8f{left:293.159978px;}
.x47{left:295.769989px;}
.x55{left:298.739978px;}
.x90{left:302.609989px;}
.x91{left:306.749989px;}
.x56{left:310.799989px;}
.x78{left:313.139978px;}
.x5b{left:321.629978px;}
.x79{left:325.229989px;}
.x5c{left:333.689989px;}
.x6c{left:339.089978px;}
.x4c{left:341.429978px;}
.x8{left:346.019978px;}
.x9{left:352.049989px;}
.x4d{left:353.489989px;}
.x84{left:357.989978px;}
.x86{left:368.249978px;}
.x85{left:370.049989px;}
.x82{left:371.399978px;}
.x50{left:379.589978px;}
.xc{left:381.029978px;}
.x83{left:383.459989px;}
.xd{left:387.059989px;}
.x51{left:391.649989px;}
.x3{left:395.519978px;}
.x4{left:401.549989px;}
.x8b{left:406.859978px;}
.x31{left:408.479978px;}
.x53{left:410.099978px;}
.x3b{left:413.249989px;}
.x17{left:418.559978px;}
.x32{left:420.539989px;}
.x54{left:422.159989px;}
.x8c{left:424.949989px;}
.x1c{left:428.099978px;}
.x18{left:430.619989px;}
.x43{left:433.589978px;}
.x1d{left:440.159989px;}
.x8e{left:442.769978px;}
.x44{left:445.649989px;}
.x89{left:455.369978px;}
.x6f{left:458.069989px;}
.x40{left:460.139978px;}
.x65{left:462.389978px;}
.x6a{left:467.159978px;}
.x26{left:473.099978px;}
.x66{left:474.449989px;}
.x37{left:476.609978px;}
.x2d{left:480.029978px;}
.x27{left:485.159989px;}
.x38{left:488.669989px;}
.x2e{left:492.089989px;}
.x7c{left:496.589978px;}
.x62{left:500.099989px;}
.x3c{left:503.429989px;}
.x7d{left:508.649989px;}
.x6b{left:511.439989px;}
.x7e{left:516.569978px;}
.x20{left:519.719978px;}
.x39{left:523.949978px;}
.x80{left:525.569978px;}
.x57{left:527.369978px;}
.x7f{left:528.629989px;}
.x21{left:531.809989px;}
.x3a{left:536.039989px;}
.x81{left:537.659989px;}
.x58{left:539.459989px;}
.x33{left:543.599989px;}
.xe{left:547.919978px;}
.x41{left:549.179978px;}
.x67{left:551.249989px;}
.xf{left:553.949989px;}
.x70{left:556.199978px;}
.x10{left:559.439989px;}
.x2b{left:560.699978px;}
.x2a{left:565.829989px;}
.x71{left:568.259989px;}
.x2c{left:572.759989px;}
.x2f{left:583.019978px;}
.x72{left:587.069978px;}
.x13{left:589.409978px;}
.x30{left:595.079989px;}
.x73{left:599.129989px;}
.x14{left:601.469989px;}
.x87{left:609.209978px;}
.x3e{left:610.739978px;}
.x77{left:612.539989px;}
.x24{left:615.239978px;}
.x3f{left:622.799989px;}
.x25{left:627.299989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls17{letter-spacing:-1.840000pt;}
.ls7{letter-spacing:-1.664000pt;}
.ls15{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.195733pt;}
.ls3{letter-spacing:-0.178133pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.136533pt;}
.ls26{letter-spacing:-0.124267pt;}
.ls10{letter-spacing:-0.101867pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000960pt;}
.ls12{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.069867pt;}
.ls1{letter-spacing:0.080000pt;}
.ls38{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.109440pt;}
.ls14{letter-spacing:0.124267pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.171733pt;}
.ls32{letter-spacing:0.171840pt;}
.lse{letter-spacing:0.295467pt;}
.ls19{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.400000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.165440pt;}
.ls18{letter-spacing:1.920000pt;}
.ls21{letter-spacing:2.125440pt;}
.ls24{letter-spacing:2.640000pt;}
.ls2c{letter-spacing:3.280000pt;}
.ls11{letter-spacing:4.160000pt;}
.ls2b{letter-spacing:4.800000pt;}
.ls30{letter-spacing:5.520000pt;}
.ls20{letter-spacing:5.760000pt;}
.ls2a{letter-spacing:6.285440pt;}
.ls37{letter-spacing:6.400000pt;}
.ls23{letter-spacing:7.245440pt;}
.ls1b{letter-spacing:8.000000pt;}
.lsb{letter-spacing:10.400000pt;}
.ls36{letter-spacing:10.560000pt;}
.ls1c{letter-spacing:10.720000pt;}
.ls31{letter-spacing:12.560000pt;}
.ls1f{letter-spacing:13.645440pt;}
.ls13{letter-spacing:17.680000pt;}
.ls2d{letter-spacing:22.080000pt;}
.ls22{letter-spacing:32.960000pt;}
.ls28{letter-spacing:57.728000pt;}
.ls2f{letter-spacing:97.386667pt;}
.lsd{letter-spacing:97.706667pt;}
.ls1e{letter-spacing:114.445440pt;}
.ls2e{letter-spacing:173.226667pt;}
.ls34{letter-spacing:815.466667pt;}
.wsa{word-spacing:-58.560000pt;}
.ws0{word-spacing:-19.309440pt;}
.ws16{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.680000pt;}
.wse{word-spacing:-13.531733pt;}
.ws5{word-spacing:-13.520000pt;}
.wsc{word-spacing:-13.484267pt;}
.ws14{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.304427pt;}
.ws12{word-spacing:-13.235733pt;}
.ws13{word-spacing:-13.223467pt;}
.ws4{word-spacing:-13.200000pt;}
.wsd{word-spacing:-12.992533pt;}
.wsb{word-spacing:-12.935467pt;}
.ws1{word-spacing:-12.656000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws15{word-spacing:-0.053440pt;}
.ws9{word-spacing:0.000000pt;}
._20{margin-left:-4.156800pt;}
._14{margin-left:-3.225173pt;}
._e{margin-left:-2.299413pt;}
._5{margin-left:-0.939840pt;}
._9{width:0.939840pt;}
._d{width:2.136000pt;}
._2{width:3.673920pt;}
._3{width:4.784640pt;}
._c{width:5.923307pt;}
._10{width:6.999360pt;}
._12{width:8.100480pt;}
._f{width:9.191680pt;}
._4{width:10.936320pt;}
._6{width:12.002240pt;}
._1e{width:13.098667pt;}
._1d{width:13.994667pt;}
._22{width:14.912000pt;}
._24{width:15.824960pt;}
._16{width:17.408000pt;}
._19{width:19.046400pt;}
._a{width:20.505600pt;}
._b{width:21.445440pt;}
._23{width:22.394560pt;}
._2e{width:23.813440pt;}
._1b{width:24.768000pt;}
._1c{width:25.706667pt;}
._7{width:26.742720pt;}
._8{width:27.853440pt;}
._21{width:29.126720pt;}
._15{width:30.016000pt;}
._31{width:31.210027pt;}
._2d{width:32.117440pt;}
._30{width:33.182720pt;}
._2c{width:34.112000pt;}
._28{width:35.008000pt;}
._29{width:36.608000pt;}
._1f{width:37.504000pt;}
._26{width:38.629440pt;}
._25{width:40.026560pt;}
._2b{width:41.061440pt;}
._34{width:42.074560pt;}
._33{width:43.222507pt;}
._32{width:44.992000pt;}
._27{width:47.424000pt;}
._35{width:48.960000pt;}
._38{width:53.137920pt;}
._3b{width:54.830080pt;}
._2f{width:57.137067pt;}
._17{width:58.048000pt;}
._18{width:59.008000pt;}
._37{width:61.028480pt;}
._36{width:62.150720pt;}
._39{width:68.224000pt;}
._3d{width:98.027840pt;}
._3a{width:99.008000pt;}
._1a{width:144.721920pt;}
._11{width:216.138667pt;}
._3c{width:717.056000pt;}
._0{width:787.893333pt;}
._2a{width:1233.379200pt;}
._13{width:1263.208853pt;}
._1{width:1554.080000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.440000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fsa{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;}
.y2a{bottom:85.946585pt;}
.y155{bottom:86.666585pt;}
.yb6{bottom:87.146585pt;}
.y55{bottom:90.586585pt;}
.y29{bottom:101.306585pt;}
.y54{bottom:101.626585pt;}
.y10d{bottom:101.946585pt;}
.y134{bottom:102.506585pt;}
.yb5{bottom:103.706585pt;}
.y154{bottom:105.066585pt;}
.y156{bottom:105.546585pt;}
.yfa{bottom:105.946585pt;}
.y10c{bottom:106.586585pt;}
.y87{bottom:116.586585pt;}
.y10b{bottom:117.946585pt;}
.y133{bottom:118.986585pt;}
.yb4{bottom:120.266585pt;}
.y28{bottom:121.226585pt;}
.y153{bottom:123.466585pt;}
.yea{bottom:123.946585pt;}
.y86{bottom:131.946585pt;}
.y27{bottom:132.266585pt;}
.yf9{bottom:132.986585pt;}
.y10a{bottom:133.306585pt;}
.y53{bottom:134.346585pt;}
.y132{bottom:135.546585pt;}
.y99{bottom:136.586585pt;}
.yb3{bottom:136.746585pt;}
.yf8{bottom:138.346585pt;}
.y157{bottom:138.906585pt;}
.y152{bottom:141.866585pt;}
.ye9{bottom:142.346585pt;}
.y85{bottom:147.306585pt;}
.y10f{bottom:147.626585pt;}
.y109{bottom:148.586585pt;}
.yf7{bottom:149.866585pt;}
.y84{bottom:151.946585pt;}
.y131{bottom:152.106585pt;}
.y52{bottom:152.746585pt;}
.yb2{bottom:153.306585pt;}
.yf6{bottom:154.506585pt;}
.y151{bottom:160.266585pt;}
.ye8{bottom:160.746585pt;}
.y83{bottom:162.586585pt;}
.y119{bottom:162.986585pt;}
.y14a{bottom:163.306585pt;}
.y115{bottom:163.626585pt;}
.y108{bottom:164.986585pt;}
.yf5{bottom:165.226585pt;}
.y13d{bottom:166.746585pt;}
.y98{bottom:167.226585pt;}
.y130{bottom:168.666585pt;}
.y114{bottom:168.986585pt;}
.yb1{bottom:169.866585pt;}
.y107{bottom:170.346585pt;}
.y51{bottom:171.146585pt;}
.y26{bottom:171.786585pt;}
.y82{bottom:177.946585pt;}
.y149{bottom:178.586585pt;}
.y150{bottom:178.666585pt;}
.ycf{bottom:178.986585pt;}
.ye7{bottom:179.146585pt;}
.yf4{bottom:180.506585pt;}
.y106{bottom:181.866585pt;}
.yfe{bottom:182.586585pt;}
.yce{bottom:184.346585pt;}
.y10e{bottom:185.146585pt;}
.y12f{bottom:185.226585pt;}
.y25{bottom:186.426585pt;}
.yb0{bottom:187.706585pt;}
.y50{bottom:189.546585pt;}
.yaf{bottom:193.066585pt;}
.y81{bottom:193.306585pt;}
.y11d{bottom:193.626585pt;}
.y148{bottom:193.946585pt;}
.ycd{bottom:195.866585pt;}
.y139{bottom:196.186585pt;}
.y14f{bottom:197.066585pt;}
.y105{bottom:197.226585pt;}
.ye5{bottom:197.546585pt;}
.ye2{bottom:197.946585pt;}
.y24{bottom:201.146585pt;}
.y12e{bottom:201.786585pt;}
.y104{bottom:201.866585pt;}
.ye6{bottom:203.546585pt;}
.yae{bottom:204.586585pt;}
.y4f{bottom:207.946585pt;}
.y80{bottom:208.586585pt;}
.ye1{bottom:208.906585pt;}
.y147{bottom:209.946585pt;}
.ycc{bottom:211.226585pt;}
.y103{bottom:212.826585pt;}
.yf1{bottom:213.226585pt;}
.y14e{bottom:215.466585pt;}
.y23{bottom:215.786585pt;}
.ye4{bottom:215.946585pt;}
.y12d{bottom:218.266585pt;}
.yad{bottom:219.866585pt;}
.y7f{bottom:223.946585pt;}
.yfd{bottom:224.266585pt;}
.y146{bottom:225.226585pt;}
.y4e{bottom:226.346585pt;}
.ycb{bottom:226.506585pt;}
.y97{bottom:228.586585pt;}
.y22{bottom:230.426585pt;}
.yca{bottom:231.146585pt;}
.y14d{bottom:233.866585pt;}
.ye3{bottom:234.346585pt;}
.yac{bottom:235.226585pt;}
.y12c{bottom:236.106585pt;}
.y7e{bottom:239.306585pt;}
.y96{bottom:239.626585pt;}
.y138{bottom:240.346585pt;}
.y145{bottom:240.506585pt;}
.y12b{bottom:241.466585pt;}
.yc9{bottom:241.866585pt;}
.ydd{bottom:243.946585pt;}
.y4d{bottom:244.746585pt;}
.y21{bottom:245.066585pt;}
.y144{bottom:245.146585pt;}
.y113{bottom:246.506585pt;}
.yab{bottom:250.586585pt;}
.y14c{bottom:252.266585pt;}
.ye0{bottom:252.746585pt;}
.y12a{bottom:252.986585pt;}
.y7d{bottom:254.586585pt;}
.y117{bottom:254.906585pt;}
.y143{bottom:255.866585pt;}
.yc8{bottom:257.146585pt;}
.y112{bottom:257.546585pt;}
.y137{bottom:259.226585pt;}
.y20{bottom:259.706585pt;}
.y4c{bottom:263.146585pt;}
.yaa{bottom:265.866585pt;}
.y129{bottom:268.346585pt;}
.y7c{bottom:269.946585pt;}
.ya9{bottom:270.506585pt;}
.y14b{bottom:270.666585pt;}
.ydf{bottom:271.146585pt;}
.y142{bottom:271.226585pt;}
.yc7{bottom:272.506585pt;}
.y1f{bottom:274.346585pt;}
.y7b{bottom:274.586585pt;}
.y141{bottom:275.866585pt;}
.y135{bottom:277.146585pt;}
.ya8{bottom:281.226585pt;}
.y4b{bottom:281.546585pt;}
.y128{bottom:283.626585pt;}
.y7a{bottom:285.306585pt;}
.y136{bottom:285.626585pt;}
.y140{bottom:286.826585pt;}
.yc6{bottom:287.866585pt;}
.y1e{bottom:288.986585pt;}
.y95{bottom:289.546585pt;}
.yf0{bottom:289.946585pt;}
.y118{bottom:295.546585pt;}
.ya7{bottom:296.586585pt;}
.y127{bottom:298.986585pt;}
.y4a{bottom:299.946585pt;}
.y79{bottom:300.586585pt;}
.yc5{bottom:303.146585pt;}
.y1d{bottom:303.306585pt;}
.y78{bottom:305.226585pt;}
.y94{bottom:307.946585pt;}
.ya6{bottom:311.866585pt;}
.y110{bottom:313.946585pt;}
.y126{bottom:314.346585pt;}
.y77{bottom:315.946585pt;}
.y49{bottom:318.346585pt;}
.yc4{bottom:318.506585pt;}
.y1c{bottom:318.666585pt;}
.yba{bottom:320.586585pt;}
.y93{bottom:326.346585pt;}
.ya5{bottom:327.226585pt;}
.y125{bottom:329.626585pt;}
.y76{bottom:331.306585pt;}
.y111{bottom:332.346585pt;}
.yc3{bottom:333.866585pt;}
.y1b{bottom:333.946585pt;}
.y11b{bottom:335.946585pt;}
.y48{bottom:336.746585pt;}
.ya4{bottom:342.506585pt;}
.y92{bottom:344.746585pt;}
.y124{bottom:344.986585pt;}
.y75{bottom:346.586585pt;}
.y11a{bottom:346.906585pt;}
.ya3{bottom:347.146585pt;}
.yc2{bottom:349.146585pt;}
.y1a{bottom:349.306585pt;}
.y116{bottom:350.746585pt;}
.yb9{bottom:351.226585pt;}
.y47{bottom:355.146585pt;}
.ya2{bottom:357.866585pt;}
.y123{bottom:360.266585pt;}
.y74{bottom:361.946585pt;}
.y100{bottom:362.266585pt;}
.ya1{bottom:362.506585pt;}
.y91{bottom:363.146585pt;}
.yc1{bottom:364.506585pt;}
.y19{bottom:364.666585pt;}
.y122{bottom:364.906585pt;}
.yef{bottom:366.586585pt;}
.y102{bottom:369.146585pt;}
.ya0{bottom:373.226585pt;}
.y46{bottom:373.546585pt;}
.y121{bottom:375.626585pt;}
.y73{bottom:377.306585pt;}
.yee{bottom:377.626585pt;}
.yc0{bottom:379.866585pt;}
.y18{bottom:379.946585pt;}
.yf3{bottom:380.186585pt;}
.y90{bottom:381.546585pt;}
.yb8{bottom:381.946585pt;}
.y13e{bottom:387.546585pt;}
.y9f{bottom:388.506585pt;}
.y120{bottom:390.986585pt;}
.y45{bottom:391.946585pt;}
.y72{bottom:392.586585pt;}
.yb7{bottom:392.906585pt;}
.ybf{bottom:395.146585pt;}
.y17{bottom:395.306585pt;}
.y11f{bottom:395.626585pt;}
.y13c{bottom:397.226585pt;}
.y8f{bottom:399.973252pt;}
.y9e{bottom:403.893252pt;}
.yfc{bottom:405.333252pt;}
.yed{bottom:405.973252pt;}
.y11e{bottom:406.693252pt;}
.y71{bottom:407.973252pt;}
.y9d{bottom:408.533252pt;}
.y43{bottom:410.373252pt;}
.ybe{bottom:410.533252pt;}
.y16{bottom:410.693252pt;}
.ybd{bottom:415.173252pt;}
.y44{bottom:416.373252pt;}
.y8e{bottom:418.373252pt;}
.y9c{bottom:419.573252pt;}
.ydc{bottom:419.893252pt;}
.y70{bottom:423.253252pt;}
.y11c{bottom:424.373252pt;}
.y15{bottom:425.973252pt;}
.ybc{bottom:426.213252pt;}
.y42{bottom:428.773252pt;}
.y8d{bottom:436.773252pt;}
.ydb{bottom:438.293252pt;}
.y6f{bottom:438.613252pt;}
.y14{bottom:441.333252pt;}
.yec{bottom:442.773252pt;}
.y13b{bottom:443.253252pt;}
.y41{bottom:447.173252pt;}
.y6e{bottom:453.973252pt;}
.y13a{bottom:454.293252pt;}
.y8b{bottom:455.173252pt;}
.y13{bottom:456.693252pt;}
.y6d{bottom:458.613252pt;}
.y8c{bottom:461.173252pt;}
.y40{bottom:465.573252pt;}
.y6c{bottom:469.653252pt;}
.y12{bottom:471.973252pt;}
.y8a{bottom:473.573252pt;}
.yda{bottom:475.093252pt;}
.yf2{bottom:479.573252pt;}
.y3f{bottom:483.973252pt;}
.y11{bottom:487.893252pt;}
.y6a{bottom:491.973252pt;}
.yd9{bottom:493.493252pt;}
.y6b{bottom:497.973252pt;}
.y3e{bottom:502.373252pt;}
.y69{bottom:510.373252pt;}
.yd8{bottom:511.893252pt;}
.yff{bottom:516.373252pt;}
.y10{bottom:520.533252pt;}
.y3d{bottom:520.773252pt;}
.y67{bottom:528.773252pt;}
.yd7{bottom:530.293252pt;}
.y68{bottom:534.773252pt;}
.y3c{bottom:539.173252pt;}
.yf{bottom:546.613252pt;}
.y65{bottom:547.173252pt;}
.yd6{bottom:548.693252pt;}
.y66{bottom:553.173252pt;}
.y3b{bottom:557.573252pt;}
.y64{bottom:565.573252pt;}
.yd5{bottom:567.093252pt;}
.y101{bottom:571.573252pt;}
.ye{bottom:572.693252pt;}
.y3a{bottom:575.973252pt;}
.y63{bottom:583.973252pt;}
.y89{bottom:589.973252pt;}
.yd{bottom:598.773252pt;}
.y39{bottom:599.413252pt;}
.y62{bottom:602.373252pt;}
.yd4{bottom:603.893252pt;}
.y13f{bottom:608.373252pt;}
.y38{bottom:614.053252pt;}
.y61{bottom:620.773252pt;}
.yd3{bottom:622.293252pt;}
.yc{bottom:624.773252pt;}
.y88{bottom:626.773252pt;}
.y37{bottom:628.773252pt;}
.y60{bottom:639.173252pt;}
.yd2{bottom:640.453252pt;}
.y36{bottom:643.413252pt;}
.y9b{bottom:645.173252pt;}
.yb{bottom:650.853252pt;}
.y5f{bottom:657.573252pt;}
.y35{bottom:658.053252pt;}
.yde{bottom:663.573252pt;}
.y34{bottom:672.693252pt;}
.y5e{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.yd1{bottom:681.973252pt;}
.y33{bottom:687.333252pt;}
.y5d{bottom:694.373252pt;}
.y9a{bottom:700.373252pt;}
.y32{bottom:701.973252pt;}
.y9{bottom:702.933252pt;}
.y5c{bottom:712.773252pt;}
.y31{bottom:716.613252pt;}
.yfb{bottom:718.773252pt;}
.y8{bottom:728.933252pt;}
.y5a{bottom:731.173252pt;}
.y30{bottom:731.253252pt;}
.y5b{bottom:737.173252pt;}
.y2f{bottom:745.919919pt;}
.y59{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.yeb{bottom:755.599919pt;}
.y2e{bottom:760.559919pt;}
.y58{bottom:767.999919pt;}
.yd0{bottom:773.999919pt;}
.y2d{bottom:775.279919pt;}
.y6{bottom:781.039919pt;}
.y57{bottom:786.399919pt;}
.y2c{bottom:789.919919pt;}
.ybb{bottom:792.399919pt;}
.y2b{bottom:814.879919pt;}
.y56{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.ha{height:33.918750pt;}
.hf{height:37.238906pt;}
.h12{height:41.749531pt;}
.hc{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h10{height:47.908125pt;}
.h8{height:49.148438pt;}
.h14{height:52.422344pt;}
.h7{height:52.448437pt;}
.he{height:57.375000pt;}
.hd{height:57.473437pt;}
.h3{height:58.245469pt;}
.h11{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h16{height:65.781915pt;}
.h13{height:73.176562pt;}
.h15{height:76.343906pt;}
.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;}
.x92{left:87.039990pt;}
.x5{left:89.359990pt;}
.x1a{left:93.706657pt;}
.x88{left:98.026657pt;}
.x7a{left:109.946648pt;}
.x2{left:113.386657pt;}
.x6d{left:119.706648pt;}
.x7b{left:120.666657pt;}
.x42{left:122.346648pt;}
.x74{left:125.946648pt;}
.x6e{left:130.426657pt;}
.x34{left:132.186648pt;}
.x8a{left:135.706648pt;}
.x3d{left:137.466648pt;}
.x35{left:140.186648pt;}
.x15{left:142.826648pt;}
.x19{left:144.586648pt;}
.x52{left:147.306657pt;}
.x1b{left:149.066648pt;}
.x36{left:150.906657pt;}
.x16{left:153.546657pt;}
.xa{left:155.226648pt;}
.x8d{left:157.146657pt;}
.xb{left:160.586657pt;}
.x5a{left:161.546657pt;}
.x45{left:163.946657pt;}
.x59{left:165.946657pt;}
.x6{left:167.306648pt;}
.x7{left:172.666657pt;}
.x5f{left:173.866648pt;}
.x60{left:184.586657pt;}
.x63{left:185.946648pt;}
.x48{left:187.386648pt;}
.x11{left:189.066648pt;}
.x12{left:194.426657pt;}
.x64{left:196.666657pt;}
.x49{left:198.106657pt;}
.x4a{left:202.586648pt;}
.x1e{left:205.226648pt;}
.x4b{left:213.306657pt;}
.x1f{left:215.946657pt;}
.x61{left:222.106648pt;}
.x5d{left:223.306648pt;}
.x4e{left:224.586648pt;}
.x28{left:231.146648pt;}
.x22{left:232.826648pt;}
.x5e{left:234.026657pt;}
.x4f{left:235.306657pt;}
.x29{left:241.866657pt;}
.x23{left:243.546657pt;}
.x68{left:245.546648pt;}
.x75{left:248.586648pt;}
.x46{left:252.186648pt;}
.x69{left:256.266657pt;}
.x76{left:259.306657pt;}
.x8f{left:260.586648pt;}
.x47{left:262.906657pt;}
.x55{left:265.546648pt;}
.x90{left:268.986657pt;}
.x91{left:272.666657pt;}
.x56{left:276.266657pt;}
.x78{left:278.346648pt;}
.x5b{left:285.893314pt;}
.x79{left:289.093324pt;}
.x5c{left:296.613324pt;}
.x6c{left:301.413314pt;}
.x4c{left:303.493314pt;}
.x8{left:307.573314pt;}
.x9{left:312.933324pt;}
.x4d{left:314.213324pt;}
.x84{left:318.213314pt;}
.x86{left:327.333314pt;}
.x85{left:328.933324pt;}
.x82{left:330.133314pt;}
.x50{left:337.413314pt;}
.xc{left:338.693314pt;}
.x83{left:340.853324pt;}
.xd{left:344.053324pt;}
.x51{left:348.133324pt;}
.x3{left:351.573314pt;}
.x4{left:356.933324pt;}
.x8b{left:361.653314pt;}
.x31{left:363.093314pt;}
.x53{left:364.533314pt;}
.x3b{left:367.333324pt;}
.x17{left:372.053314pt;}
.x32{left:373.813324pt;}
.x54{left:375.253324pt;}
.x8c{left:377.733324pt;}
.x1c{left:380.533314pt;}
.x18{left:382.773324pt;}
.x43{left:385.413314pt;}
.x1d{left:391.253324pt;}
.x8e{left:393.573314pt;}
.x44{left:396.133324pt;}
.x89{left:404.773314pt;}
.x6f{left:407.173324pt;}
.x40{left:409.013314pt;}
.x65{left:411.013314pt;}
.x6a{left:415.253314pt;}
.x26{left:420.533314pt;}
.x66{left:421.733324pt;}
.x37{left:423.653314pt;}
.x2d{left:426.693314pt;}
.x27{left:431.253324pt;}
.x38{left:434.373324pt;}
.x2e{left:437.413324pt;}
.x7c{left:441.413314pt;}
.x62{left:444.533324pt;}
.x3c{left:447.493324pt;}
.x7d{left:452.133324pt;}
.x6b{left:454.613324pt;}
.x7e{left:459.173314pt;}
.x20{left:461.973314pt;}
.x39{left:465.733314pt;}
.x80{left:467.173314pt;}
.x57{left:468.773314pt;}
.x7f{left:469.893324pt;}
.x21{left:472.719990pt;}
.x3a{left:476.479990pt;}
.x81{left:477.919990pt;}
.x58{left:479.519990pt;}
.x33{left:483.199990pt;}
.xe{left:487.039981pt;}
.x41{left:488.159981pt;}
.x67{left:489.999990pt;}
.xf{left:492.399990pt;}
.x70{left:494.399981pt;}
.x10{left:497.279990pt;}
.x2b{left:498.399981pt;}
.x2a{left:502.959990pt;}
.x71{left:505.119990pt;}
.x2c{left:509.119990pt;}
.x2f{left:518.239981pt;}
.x72{left:521.839981pt;}
.x13{left:523.919981pt;}
.x30{left:528.959990pt;}
.x73{left:532.559990pt;}
.x14{left:534.639990pt;}
.x87{left:541.519981pt;}
.x3e{left:542.879981pt;}
.x77{left:544.479990pt;}
.x24{left:546.879981pt;}
.x3f{left:553.599990pt;}
.x25{left:557.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; }
  