
    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_d260c66d4fd417e672467a5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f1e1521bd4366a6cacff126.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8468a6c978a495f637440496.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_5901300fca9f6b53a858823d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_6fddbf75c0cb958ce70b686b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ace05a8f4e2b18823c1c86d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_d8f9d1abccd4953be4b32b93.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_3a6e2f13e34e3d3cb3ce5da1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.060547;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9ac77728bcaf7762477160f1.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_8a25588b52a8080ff58bffe4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7c949e9d4b1c63a73c2ef529.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_421be37a0a4ce27600d54f22.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-2.700000px;}
.ls1b{letter-spacing:-1.980000px;}
.ls12{letter-spacing:-0.972000px;}
.ls1c{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.804000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.427800px;}
.lsf{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.269400px;}
.ls18{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.085200px;}
.ls5{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.540000px;}
.ls9{letter-spacing:1.620000px;}
.ls19{letter-spacing:22.428000px;}
.ls16{letter-spacing:49.788000px;}
.ls15{letter-spacing:68.508000px;}
.ls8{letter-spacing:68.652000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wse{word-spacing:-54.000000px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.824000px;}
.ws18{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.482000px;}
.ws17{word-spacing:-13.248000px;}
.ws10{word-spacing:-12.996000px;}
.ws1a{word-spacing:-12.672000px;}
.ws11{word-spacing:-12.528000px;}
.ws2{word-spacing:-11.790600px;}
.wsb{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.185000px;}
.wsa{word-spacing:-9.808800px;}
.ws3{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
.ws16{word-spacing:113.598000px;}
.wsc{word-spacing:114.318000px;}
.ws13{word-spacing:114.438000px;}
.ws15{word-spacing:127.998000px;}
.ws12{word-spacing:128.118000px;}
.ws19{word-spacing:140.958000px;}
.ws6{word-spacing:141.678000px;}
.wsd{word-spacing:154.638000px;}
.ws14{word-spacing:343.458000px;}
._37{margin-left:-300.960000px;}
._36{margin-left:-296.460000px;}
._25{margin-left:-166.680000px;}
._1c{margin-left:-153.180000px;}
._24{margin-left:-151.902000px;}
._1b{margin-left:-138.942000px;}
._20{margin-left:-126.180000px;}
._46{margin-left:-124.542000px;}
._3a{margin-left:-112.684320px;}
._1f{margin-left:-111.582000px;}
._35{margin-left:-55.080000px;}
._43{margin-left:-45.720000px;}
._34{margin-left:-43.902000px;}
._1a{margin-left:-32.220000px;}
._8{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.315440px;}
._1{width:2.469360px;}
._7{width:4.320000px;}
._9{width:6.082560px;}
._d{width:7.344000px;}
._e{width:8.551440px;}
._12{width:9.864000px;}
._f{width:10.962000px;}
._10{width:12.292560px;}
._a{width:14.688000px;}
._13{width:15.840000px;}
._17{width:17.496000px;}
._5{width:18.738000px;}
._14{width:20.304000px;}
._c{width:21.925920px;}
._b{width:23.116320px;}
._11{width:24.137280px;}
._4{width:25.330320px;}
._2a{width:26.368320px;}
._2f{width:27.432000px;}
._3b{width:28.910880px;}
._32{width:30.132000px;}
._1d{width:31.428000px;}
._18{width:33.389280px;}
._16{width:34.602240px;}
._15{width:36.092880px;}
._22{width:38.070000px;}
._29{width:39.112320px;}
._3e{width:40.662000px;}
._2e{width:42.678000px;}
._39{width:43.740000px;}
._28{width:47.304000px;}
._27{width:48.540000px;}
._2b{width:49.991760px;}
._3c{width:52.104240px;}
._2d{width:55.350000px;}
._2c{width:56.434320px;}
._6{width:60.210000px;}
._3f{width:61.776000px;}
._3d{width:64.962000px;}
._44{width:77.040000px;}
._21{width:80.460000px;}
._42{width:90.108000px;}
._40{width:94.338000px;}
._41{width:95.490000px;}
._26{width:128.572320px;}
._31{width:143.912880px;}
._1e{width:146.270640px;}
._38{width:157.856880px;}
._30{width:158.959200px;}
._19{width:172.303200px;}
._23{width:184.694880px;}
._47{width:267.156000px;}
._45{width:296.316000px;}
._33{width:373.134000px;}
._3{width:374.543280px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,31,95);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:2.865000px;}
.ya8{bottom:3.060000px;}
.ye6{bottom:3.225000px;}
.yab{bottom:3.240000px;}
.ye3{bottom:3.405000px;}
.yaf{bottom:3.420000px;}
.y35{bottom:5.565000px;}
.y31{bottom:5.580000px;}
.ya7{bottom:18.540000px;}
.ye5{bottom:18.705000px;}
.yaa{bottom:18.720000px;}
.yea{bottom:18.750000px;}
.yb5{bottom:18.765000px;}
.ye2{bottom:18.885000px;}
.yad{bottom:18.900000px;}
.y30{bottom:23.400000px;}
.y34{bottom:23.565000px;}
.y33{bottom:41.565000px;}
.y2f{bottom:50.400000px;}
.y4a{bottom:58.500000px;}
.y2e{bottom:68.220000px;}
.y4{bottom:76.860000px;}
.y49{bottom:77.220000px;}
.y2d{bottom:86.040000px;}
.y122{bottom:93.960000px;}
.ya4{bottom:95.760000px;}
.y15a{bottom:100.260000px;}
.y2c{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.yef{bottom:106.020000px;}
.y43{bottom:108.720000px;}
.y121{bottom:111.960000px;}
.y159{bottom:118.080000px;}
.y2b{bottom:121.680000px;}
.yee{bottom:124.020000px;}
.y42{bottom:126.540000px;}
.y120{bottom:129.780000px;}
.y158{bottom:136.080000px;}
.ya3{bottom:140.580000px;}
.yed{bottom:141.840000px;}
.y41{bottom:144.360000px;}
.y11f{bottom:147.600000px;}
.y2a{bottom:148.500000px;}
.y157{bottom:153.900000px;}
.yec{bottom:156.960000px;}
.y40{bottom:162.180000px;}
.yeb{bottom:163.080000px;}
.y29{bottom:166.500000px;}
.y156{bottom:171.720000px;}
.y3f{bottom:180.000000px;}
.y28{bottom:184.320000px;}
.ya2{bottom:185.400000px;}
.y155{bottom:189.540000px;}
.ye9{bottom:194.940000px;}
.y3e{bottom:198.000000px;}
.y27{bottom:202.140000px;}
.y154{bottom:207.390000px;}
.y3d{bottom:215.850000px;}
.y26{bottom:219.960000px;}
.y153{bottom:225.210000px;}
.ye8{bottom:226.665000px;}
.y11e{bottom:229.710000px;}
.ya1{bottom:230.250000px;}
.y3c{bottom:233.670000px;}
.y25{bottom:237.810000px;}
.y152{bottom:243.210000px;}
.y3b{bottom:251.490000px;}
.y24{bottom:255.810000px;}
.y11d{bottom:256.530000px;}
.ye7{bottom:258.525000px;}
.ya0{bottom:260.490000px;}
.y151{bottom:261.030000px;}
.y7a{bottom:261.570000px;}
.y3a{bottom:269.310000px;}
.y9f{bottom:278.490000px;}
.y150{bottom:278.850000px;}
.y23{bottom:282.630000px;}
.y11c{bottom:283.710000px;}
.y39{bottom:287.310000px;}
.y79{bottom:288.750000px;}
.ye4{bottom:290.385000px;}
.y46{bottom:296.310000px;}
.y14f{bottom:296.670000px;}
.y22{bottom:300.450000px;}
.y11b{bottom:301.530000px;}
.y38{bottom:305.130000px;}
.y9e{bottom:305.310000px;}
.y78{bottom:306.750000px;}
.y45{bottom:314.130000px;}
.y14e{bottom:314.490000px;}
.y21{bottom:318.270000px;}
.y11a{bottom:319.350000px;}
.ye1{bottom:322.065000px;}
.y37{bottom:322.950000px;}
.y9d{bottom:323.130000px;}
.y77{bottom:324.570000px;}
.y44{bottom:331.950000px;}
.y14d{bottom:332.490000px;}
.y20{bottom:336.090000px;}
.y119{bottom:337.170000px;}
.y9c{bottom:340.950000px;}
.y18{bottom:344.910000px;}
.y14c{bottom:350.310000px;}
.y36{bottom:351.210000px;}
.y76{bottom:351.390000px;}
.y1f{bottom:353.910000px;}
.ydf{bottom:353.925000px;}
.y118{bottom:355.170000px;}
.y9b{bottom:358.770000px;}
.y14b{bottom:368.130000px;}
.y75{bottom:369.210000px;}
.y17{bottom:371.730000px;}
.y1e{bottom:371.910000px;}
.y117{bottom:372.990000px;}
.y9a{bottom:376.590000px;}
.y32{bottom:377.685000px;}
.yde{bottom:384.510000px;}
.y14a{bottom:385.950000px;}
.y74{bottom:387.030000px;}
.y1d{bottom:389.730000px;}
.y116{bottom:390.810000px;}
.y99{bottom:394.590000px;}
.y16{bottom:398.550000px;}
.y149{bottom:403.770000px;}
.y73{bottom:405.030000px;}
.y115{bottom:408.630000px;}
.y98{bottom:412.410000px;}
.ycc{bottom:414.570000px;}
.y1c{bottom:416.550000px;}
.y148{bottom:421.590000px;}
.ydd{bottom:423.390000px;}
.y72{bottom:423.750000px;}
.y15{bottom:425.010000px;}
.y114{bottom:426.450000px;}
.y97{bottom:430.230000px;}
.ycb{bottom:432.570000px;}
.y1b{bottom:434.370000px;}
.y147{bottom:439.590000px;}
.ydc{bottom:441.255000px;}
.y71{bottom:441.795000px;}
.yd{bottom:443.055000px;}
.yca{bottom:450.435000px;}
.y14{bottom:451.830000px;}
.y1a{bottom:452.190000px;}
.y113{bottom:452.955000px;}
.y96{bottom:456.735000px;}
.ydb{bottom:459.075000px;}
.y70{bottom:460.515000px;}
.y146{bottom:467.895000px;}
.yc9{bottom:468.255000px;}
.yda{bottom:476.895000px;}
.y6f{bottom:478.335000px;}
.y13{bottom:479.235000px;}
.y112{bottom:480.315000px;}
.y95{bottom:485.355000px;}
.yd9{bottom:494.715000px;}
.yc8{bottom:495.075000px;}
.y6e{bottom:496.155000px;}
.y12{bottom:497.055000px;}
.y111{bottom:498.135000px;}
.y145{bottom:499.215000px;}
.yd8{bottom:512.715000px;}
.yc7{bottom:512.895000px;}
.y6d{bottom:514.155000px;}
.y11{bottom:514.875000px;}
.y110{bottom:515.955000px;}
.y94{bottom:516.855000px;}
.y144{bottom:517.035000px;}
.yc6{bottom:530.715000px;}
.y10{bottom:532.695000px;}
.y6c{bottom:532.875000px;}
.y10f{bottom:533.955000px;}
.y93{bottom:534.675000px;}
.y143{bottom:534.855000px;}
.yd7{bottom:539.175000px;}
.yc5{bottom:548.715000px;}
.y19{bottom:550.515000px;}
.y6b{bottom:550.695000px;}
.y92{bottom:552.495000px;}
.y10e{bottom:552.675000px;}
.y142{bottom:552.855000px;}
.yf{bottom:559.155000px;}
.yd6{bottom:566.355000px;}
.yc4{bottom:566.535000px;}
.y6a{bottom:568.515000px;}
.y91{bottom:570.315000px;}
.y10d{bottom:570.495000px;}
.y141{bottom:570.675000px;}
.ye{bottom:576.975000px;}
.yd5{bottom:584.175000px;}
.yc3{bottom:584.355000px;}
.y69{bottom:586.515000px;}
.y90{bottom:588.135000px;}
.y10c{bottom:588.315000px;}
.y140{bottom:588.495000px;}
.y173{bottom:591.375000px;}
.yd4{bottom:601.995000px;}
.yc2{bottom:602.175000px;}
.y68{bottom:605.235000px;}
.y8f{bottom:606.135000px;}
.y13f{bottom:606.315000px;}
.yc1{bottom:619.995000px;}
.y67{bottom:623.055000px;}
.y10b{bottom:624.135000px;}
.y172{bottom:629.175000px;}
.y8e{bottom:632.595000px;}
.yd3{bottom:637.815000px;}
.yc0{bottom:637.995000px;}
.y66{bottom:640.875000px;}
.y13e{bottom:641.955000px;}
.y10a{bottom:642.855000px;}
.y171{bottom:651.135000px;}
.yd2{bottom:655.635000px;}
.ybf{bottom:655.815000px;}
.y65{bottom:658.695000px;}
.y8d{bottom:659.775000px;}
.y13d{bottom:659.955000px;}
.y109{bottom:660.675000px;}
.y170{bottom:669.135000px;}
.yd1{bottom:673.455000px;}
.ybe{bottom:673.635000px;}
.y64{bottom:676.725000px;}
.y8c{bottom:677.625000px;}
.y13c{bottom:677.805000px;}
.y108{bottom:678.525000px;}
.y16f{bottom:686.985000px;}
.yd0{bottom:691.305000px;}
.ybd{bottom:691.485000px;}
.y8b{bottom:695.445000px;}
.y13b{bottom:695.625000px;}
.y107{bottom:696.525000px;}
.y63{bottom:704.085000px;}
.y16e{bottom:704.805000px;}
.ycf{bottom:709.125000px;}
.ybc{bottom:709.305000px;}
.y8a{bottom:713.265000px;}
.y106{bottom:715.245000px;}
.y16d{bottom:722.625000px;}
.y13a{bottom:723.885000px;}
.ybb{bottom:727.125000px;}
.y62{bottom:730.905000px;}
.y89{bottom:731.265000px;}
.y105{bottom:733.065000px;}
.yce{bottom:735.765000px;}
.y16c{bottom:740.445000px;}
.yba{bottom:745.125000px;}
.y88{bottom:749.085000px;}
.y104{bottom:751.065000px;}
.y139{bottom:755.205000px;}
.y61{bottom:758.265000px;}
.yb9{bottom:762.945000px;}
.y138{bottom:773.205000px;}
.y87{bottom:775.545000px;}
.y60{bottom:776.085000px;}
.y16b{bottom:776.265000px;}
.y103{bottom:778.785000px;}
.yb8{bottom:780.765000px;}
.y137{bottom:791.025000px;}
.y5f{bottom:793.905000px;}
.y16a{bottom:794.085000px;}
.y102{bottom:796.605000px;}
.y86{bottom:802.725000px;}
.yb7{bottom:807.225000px;}
.ycd{bottom:807.585000px;}
.y136{bottom:808.845000px;}
.y5e{bottom:811.725000px;}
.y169{bottom:811.905000px;}
.y101{bottom:814.425000px;}
.y85{bottom:820.545000px;}
.y135{bottom:826.665000px;}
.y5d{bottom:829.545000px;}
.y168{bottom:829.725000px;}
.y100{bottom:832.425000px;}
.y84{bottom:838.365000px;}
.y134{bottom:844.485000px;}
.y5c{bottom:847.365000px;}
.y167{bottom:847.545000px;}
.yff{bottom:850.245000px;}
.y83{bottom:856.365000px;}
.yb6{bottom:861.405000px;}
.y133{bottom:862.485000px;}
.y5b{bottom:865.365000px;}
.yfe{bottom:868.065000px;}
.y82{bottom:874.185000px;}
.y132{bottom:880.305000px;}
.y5a{bottom:883.185000px;}
.y166{bottom:883.365000px;}
.y81{bottom:892.005000px;}
.yb4{bottom:893.265000px;}
.yfd{bottom:894.525000px;}
.y131{bottom:898.125000px;}
.y165{bottom:901.185000px;}
.y59{bottom:910.005000px;}
.y130{bottom:915.990000px;}
.y80{bottom:918.510000px;}
.y164{bottom:919.050000px;}
.yfc{bottom:921.390000px;}
.yb3{bottom:924.990000px;}
.y58{bottom:927.870000px;}
.y12f{bottom:933.810000px;}
.y163{bottom:936.870000px;}
.yb2{bottom:941.370000px;}
.y57{bottom:945.690000px;}
.yfb{bottom:948.750000px;}
.y12e{bottom:951.630000px;}
.y162{bottom:954.690000px;}
.yb1{bottom:957.570000px;}
.y56{bottom:963.690000px;}
.yfa{bottom:966.570000px;}
.y12d{bottom:969.630000px;}
.y161{bottom:972.690000px;}
.y55{bottom:981.510000px;}
.yf9{bottom:984.390000px;}
.yb0{bottom:989.430000px;}
.y160{bottom:990.510000px;}
.y12c{bottom:996.090000px;}
.y54{bottom:999.330000px;}
.yf8{bottom:1002.210000px;}
.y15f{bottom:1008.330000px;}
.y53{bottom:1017.150000px;}
.yf7{bottom:1020.030000px;}
.yae{bottom:1021.110000px;}
.y12b{bottom:1023.270000px;}
.y15e{bottom:1026.150000px;}
.y52{bottom:1034.970000px;}
.yf6{bottom:1037.850000px;}
.y12a{bottom:1041.090000px;}
.y15d{bottom:1043.970000px;}
.y51{bottom:1052.790000px;}
.yac{bottom:1052.970000px;}
.yc{bottom:1054.050000px;}
.yf5{bottom:1055.850000px;}
.y129{bottom:1058.910000px;}
.y15c{bottom:1061.790000px;}
.y50{bottom:1070.790000px;}
.yf4{bottom:1073.670000px;}
.yb{bottom:1074.570000px;}
.y128{bottom:1076.910000px;}
.y15b{bottom:1079.790000px;}
.ya9{bottom:1084.830000px;}
.y7f{bottom:1088.610000px;}
.yf3{bottom:1091.490000px;}
.y127{bottom:1095.630000px;}
.y4f{bottom:1097.610000px;}
.ya{bottom:1104.450000px;}
.y7e{bottom:1106.430000px;}
.yf2{bottom:1109.310000px;}
.y5{bottom:1112.940000px;}
.y126{bottom:1113.450000px;}
.y4e{bottom:1115.430000px;}
.ya6{bottom:1116.510000px;}
.y7d{bottom:1124.250000px;}
.y125{bottom:1131.450000px;}
.y9{bottom:1132.350000px;}
.y4d{bottom:1133.250000px;}
.yf1{bottom:1135.770000px;}
.y7c{bottom:1142.070000px;}
.y124{bottom:1150.200000px;}
.y4c{bottom:1151.100000px;}
.y8{bottom:1164.420000px;}
.yf0{bottom:1164.600000px;}
.y3{bottom:1166.040000px;}
.y123{bottom:1168.200000px;}
.ya5{bottom:1168.560000px;}
.y7b{bottom:1168.740000px;}
.y4b{bottom:1169.100000px;}
.y2{bottom:1181.520000px;}
.y48{bottom:1183.500000px;}
.y7{bottom:1191.240000px;}
.y47{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h19{height:15.465000px;}
.h1a{height:15.645000px;}
.h1f{height:23.319141px;}
.h14{height:30.480469px;}
.h17{height:30.945000px;}
.h1c{height:30.960000px;}
.h1b{height:30.982500px;}
.h1e{height:30.996000px;}
.h18{height:31.125000px;}
.h1d{height:31.140000px;}
.h16{height:31.170000px;}
.hb{height:35.332031px;}
.h12{height:39.049805px;}
.h13{height:40.843828px;}
.h5{height:47.344922px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h15{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h10{height:60.226875px;}
.hf{height:64.641000px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h20{height:70.664062px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:598.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w6{width:48.814500px;}
.wc{width:69.870000px;}
.wb{width:87.465000px;}
.wa{width:87.681000px;}
.wd{width:95.614500px;}
.w9{width:125.985000px;}
.w8{width:159.150000px;}
.w3{width:211.933500px;}
.w7{width:217.279500px;}
.we{width:331.444500px;}
.wf{width:371.940000px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.560000px;}
.x2f{left:9.180000px;}
.x1e{left:10.785000px;}
.x3{left:12.090000px;}
.x21{left:13.140000px;}
.x19{left:14.218500px;}
.x22{left:16.558500px;}
.xb{left:18.358500px;}
.x25{left:19.470000px;}
.x34{left:21.420000px;}
.x2d{left:23.790000px;}
.x26{left:25.410000px;}
.x2c{left:26.640000px;}
.x1b{left:27.900000px;}
.x29{left:29.505000px;}
.x27{left:31.680000px;}
.x28{left:33.465000px;}
.x32{left:35.089500px;}
.x23{left:37.069500px;}
.x33{left:41.760000px;}
.x1c{left:43.365000px;}
.x18{left:46.261500px;}
.x30{left:49.845000px;}
.x31{left:51.289500px;}
.x1{left:54.000000px;}
.x11{left:55.440000px;}
.x6{left:57.060000px;}
.x2a{left:60.643500px;}
.x2e{left:61.723500px;}
.x2b{left:64.423500px;}
.x37{left:66.403500px;}
.xa{left:69.481500px;}
.x24{left:74.863500px;}
.x14{left:81.000000px;}
.x39{left:83.145000px;}
.x47{left:86.040000px;}
.xe{left:95.256000px;}
.x3b{left:101.145000px;}
.x41{left:103.663500px;}
.x15{left:108.036000px;}
.x48{left:117.936000px;}
.x3a{left:126.388500px;}
.x3c{left:128.008500px;}
.x3f{left:137.325000px;}
.x36{left:142.786500px;}
.x3e{left:147.448500px;}
.x9{left:166.530000px;}
.x3d{left:169.590000px;}
.x40{left:174.270000px;}
.x17{left:218.730000px;}
.x35{left:223.410000px;}
.x8{left:235.290000px;}
.x7{left:276.915000px;}
.xc{left:282.315000px;}
.x1a{left:313.815000px;}
.x13{left:434.055000px;}
.x16{left:446.505000px;}
.xf{left:473.505000px;}
.x38{left:474.960000px;}
.x42{left:500.505000px;}
.x45{left:505.545000px;}
.x10{left:514.725000px;}
.x43{left:527.505000px;}
.x46{left:537.405000px;}
.x44{left:569.085000px;}
.x1d{left:600.420000px;}
.x12{left:680.550000px;}
.x1f{left:688.830000px;}
.x20{left:777.030000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls1b{letter-spacing:-1.760000pt;}
.ls12{letter-spacing:-0.864000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.714667pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.380267pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.239467pt;}
.ls18{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls19{letter-spacing:19.936000pt;}
.ls16{letter-spacing:44.256000pt;}
.ls15{letter-spacing:60.896000pt;}
.ls8{letter-spacing:61.024000pt;}
.ls0{letter-spacing:946.186667pt;}
.wse{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.288000pt;}
.ws18{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.984000pt;}
.ws17{word-spacing:-11.776000pt;}
.ws10{word-spacing:-11.552000pt;}
.ws1a{word-spacing:-11.264000pt;}
.ws11{word-spacing:-11.136000pt;}
.ws2{word-spacing:-10.480533pt;}
.wsb{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.053333pt;}
.wsa{word-spacing:-8.718933pt;}
.ws3{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
.ws16{word-spacing:100.976000pt;}
.wsc{word-spacing:101.616000pt;}
.ws13{word-spacing:101.722667pt;}
.ws15{word-spacing:113.776000pt;}
.ws12{word-spacing:113.882667pt;}
.ws19{word-spacing:125.296000pt;}
.ws6{word-spacing:125.936000pt;}
.wsd{word-spacing:137.456000pt;}
.ws14{word-spacing:305.296000pt;}
._37{margin-left:-267.520000pt;}
._36{margin-left:-263.520000pt;}
._25{margin-left:-148.160000pt;}
._1c{margin-left:-136.160000pt;}
._24{margin-left:-135.024000pt;}
._1b{margin-left:-123.504000pt;}
._20{margin-left:-112.160000pt;}
._46{margin-left:-110.704000pt;}
._3a{margin-left:-100.163840pt;}
._1f{margin-left:-99.184000pt;}
._35{margin-left:-48.960000pt;}
._43{margin-left:-40.640000pt;}
._34{margin-left:-39.024000pt;}
._1a{margin-left:-28.640000pt;}
._8{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.169280pt;}
._1{width:2.194987pt;}
._7{width:3.840000pt;}
._9{width:5.406720pt;}
._d{width:6.528000pt;}
._e{width:7.601280pt;}
._12{width:8.768000pt;}
._f{width:9.744000pt;}
._10{width:10.926720pt;}
._a{width:13.056000pt;}
._13{width:14.080000pt;}
._17{width:15.552000pt;}
._5{width:16.656000pt;}
._14{width:18.048000pt;}
._c{width:19.489707pt;}
._b{width:20.547840pt;}
._11{width:21.455360pt;}
._4{width:22.515840pt;}
._2a{width:23.438507pt;}
._2f{width:24.384000pt;}
._3b{width:25.698560pt;}
._32{width:26.784000pt;}
._1d{width:27.936000pt;}
._18{width:29.679360pt;}
._16{width:30.757547pt;}
._15{width:32.082560pt;}
._22{width:33.840000pt;}
._29{width:34.766507pt;}
._3e{width:36.144000pt;}
._2e{width:37.936000pt;}
._39{width:38.880000pt;}
._28{width:42.048000pt;}
._27{width:43.146667pt;}
._2b{width:44.437120pt;}
._3c{width:46.314880pt;}
._2d{width:49.200000pt;}
._2c{width:50.163840pt;}
._6{width:53.520000pt;}
._3f{width:54.912000pt;}
._3d{width:57.744000pt;}
._44{width:68.480000pt;}
._21{width:71.520000pt;}
._42{width:80.096000pt;}
._40{width:83.856000pt;}
._41{width:84.880000pt;}
._26{width:114.286507pt;}
._31{width:127.922560pt;}
._1e{width:130.018347pt;}
._38{width:140.317227pt;}
._30{width:141.297067pt;}
._19{width:153.158400pt;}
._23{width:164.173227pt;}
._47{width:237.472000pt;}
._45{width:263.392000pt;}
._33{width:331.674667pt;}
._3{width:332.927360pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:2.546667pt;}
.ya8{bottom:2.720000pt;}
.ye6{bottom:2.866667pt;}
.yab{bottom:2.880000pt;}
.ye3{bottom:3.026667pt;}
.yaf{bottom:3.040000pt;}
.y35{bottom:4.946667pt;}
.y31{bottom:4.960000pt;}
.ya7{bottom:16.480000pt;}
.ye5{bottom:16.626667pt;}
.yaa{bottom:16.640000pt;}
.yea{bottom:16.666667pt;}
.yb5{bottom:16.680000pt;}
.ye2{bottom:16.786667pt;}
.yad{bottom:16.800000pt;}
.y30{bottom:20.800000pt;}
.y34{bottom:20.946667pt;}
.y33{bottom:36.946667pt;}
.y2f{bottom:44.800000pt;}
.y4a{bottom:52.000000pt;}
.y2e{bottom:60.640000pt;}
.y4{bottom:68.320000pt;}
.y49{bottom:68.640000pt;}
.y2d{bottom:76.480000pt;}
.y122{bottom:83.520000pt;}
.ya4{bottom:85.120000pt;}
.y15a{bottom:89.120000pt;}
.y2c{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.yef{bottom:94.240000pt;}
.y43{bottom:96.640000pt;}
.y121{bottom:99.520000pt;}
.y159{bottom:104.960000pt;}
.y2b{bottom:108.160000pt;}
.yee{bottom:110.240000pt;}
.y42{bottom:112.480000pt;}
.y120{bottom:115.360000pt;}
.y158{bottom:120.960000pt;}
.ya3{bottom:124.960000pt;}
.yed{bottom:126.080000pt;}
.y41{bottom:128.320000pt;}
.y11f{bottom:131.200000pt;}
.y2a{bottom:132.000000pt;}
.y157{bottom:136.800000pt;}
.yec{bottom:139.520000pt;}
.y40{bottom:144.160000pt;}
.yeb{bottom:144.960000pt;}
.y29{bottom:148.000000pt;}
.y156{bottom:152.640000pt;}
.y3f{bottom:160.000000pt;}
.y28{bottom:163.840000pt;}
.ya2{bottom:164.800000pt;}
.y155{bottom:168.480000pt;}
.ye9{bottom:173.280000pt;}
.y3e{bottom:176.000000pt;}
.y27{bottom:179.680000pt;}
.y154{bottom:184.346667pt;}
.y3d{bottom:191.866667pt;}
.y26{bottom:195.520000pt;}
.y153{bottom:200.186667pt;}
.ye8{bottom:201.480000pt;}
.y11e{bottom:204.186667pt;}
.ya1{bottom:204.666667pt;}
.y3c{bottom:207.706667pt;}
.y25{bottom:211.386667pt;}
.y152{bottom:216.186667pt;}
.y3b{bottom:223.546667pt;}
.y24{bottom:227.386667pt;}
.y11d{bottom:228.026667pt;}
.ye7{bottom:229.800000pt;}
.ya0{bottom:231.546667pt;}
.y151{bottom:232.026667pt;}
.y7a{bottom:232.506667pt;}
.y3a{bottom:239.386667pt;}
.y9f{bottom:247.546667pt;}
.y150{bottom:247.866667pt;}
.y23{bottom:251.226667pt;}
.y11c{bottom:252.186667pt;}
.y39{bottom:255.386667pt;}
.y79{bottom:256.666667pt;}
.ye4{bottom:258.120000pt;}
.y46{bottom:263.386667pt;}
.y14f{bottom:263.706667pt;}
.y22{bottom:267.066667pt;}
.y11b{bottom:268.026667pt;}
.y38{bottom:271.226667pt;}
.y9e{bottom:271.386667pt;}
.y78{bottom:272.666667pt;}
.y45{bottom:279.226667pt;}
.y14e{bottom:279.546667pt;}
.y21{bottom:282.906667pt;}
.y11a{bottom:283.866667pt;}
.ye1{bottom:286.280000pt;}
.y37{bottom:287.066667pt;}
.y9d{bottom:287.226667pt;}
.y77{bottom:288.506667pt;}
.y44{bottom:295.066667pt;}
.y14d{bottom:295.546667pt;}
.y20{bottom:298.746667pt;}
.y119{bottom:299.706667pt;}
.y9c{bottom:303.066667pt;}
.y18{bottom:306.586667pt;}
.y14c{bottom:311.386667pt;}
.y36{bottom:312.186667pt;}
.y76{bottom:312.346667pt;}
.y1f{bottom:314.586667pt;}
.ydf{bottom:314.600000pt;}
.y118{bottom:315.706667pt;}
.y9b{bottom:318.906667pt;}
.y14b{bottom:327.226667pt;}
.y75{bottom:328.186667pt;}
.y17{bottom:330.426667pt;}
.y1e{bottom:330.586667pt;}
.y117{bottom:331.546667pt;}
.y9a{bottom:334.746667pt;}
.y32{bottom:335.720000pt;}
.yde{bottom:341.786667pt;}
.y14a{bottom:343.066667pt;}
.y74{bottom:344.026667pt;}
.y1d{bottom:346.426667pt;}
.y116{bottom:347.386667pt;}
.y99{bottom:350.746667pt;}
.y16{bottom:354.266667pt;}
.y149{bottom:358.906667pt;}
.y73{bottom:360.026667pt;}
.y115{bottom:363.226667pt;}
.y98{bottom:366.586667pt;}
.ycc{bottom:368.506667pt;}
.y1c{bottom:370.266667pt;}
.y148{bottom:374.746667pt;}
.ydd{bottom:376.346667pt;}
.y72{bottom:376.666667pt;}
.y15{bottom:377.786667pt;}
.y114{bottom:379.066667pt;}
.y97{bottom:382.426667pt;}
.ycb{bottom:384.506667pt;}
.y1b{bottom:386.106667pt;}
.y147{bottom:390.746667pt;}
.ydc{bottom:392.226667pt;}
.y71{bottom:392.706667pt;}
.yd{bottom:393.826667pt;}
.yca{bottom:400.386667pt;}
.y14{bottom:401.626667pt;}
.y1a{bottom:401.946667pt;}
.y113{bottom:402.626667pt;}
.y96{bottom:405.986667pt;}
.ydb{bottom:408.066667pt;}
.y70{bottom:409.346667pt;}
.y146{bottom:415.906667pt;}
.yc9{bottom:416.226667pt;}
.yda{bottom:423.906667pt;}
.y6f{bottom:425.186667pt;}
.y13{bottom:425.986667pt;}
.y112{bottom:426.946667pt;}
.y95{bottom:431.426667pt;}
.yd9{bottom:439.746667pt;}
.yc8{bottom:440.066667pt;}
.y6e{bottom:441.026667pt;}
.y12{bottom:441.826667pt;}
.y111{bottom:442.786667pt;}
.y145{bottom:443.746667pt;}
.yd8{bottom:455.746667pt;}
.yc7{bottom:455.906667pt;}
.y6d{bottom:457.026667pt;}
.y11{bottom:457.666667pt;}
.y110{bottom:458.626667pt;}
.y94{bottom:459.426667pt;}
.y144{bottom:459.586667pt;}
.yc6{bottom:471.746667pt;}
.y10{bottom:473.506667pt;}
.y6c{bottom:473.666667pt;}
.y10f{bottom:474.626667pt;}
.y93{bottom:475.266667pt;}
.y143{bottom:475.426667pt;}
.yd7{bottom:479.266667pt;}
.yc5{bottom:487.746667pt;}
.y19{bottom:489.346667pt;}
.y6b{bottom:489.506667pt;}
.y92{bottom:491.106667pt;}
.y10e{bottom:491.266667pt;}
.y142{bottom:491.426667pt;}
.yf{bottom:497.026667pt;}
.yd6{bottom:503.426667pt;}
.yc4{bottom:503.586667pt;}
.y6a{bottom:505.346667pt;}
.y91{bottom:506.946667pt;}
.y10d{bottom:507.106667pt;}
.y141{bottom:507.266667pt;}
.ye{bottom:512.866667pt;}
.yd5{bottom:519.266667pt;}
.yc3{bottom:519.426667pt;}
.y69{bottom:521.346667pt;}
.y90{bottom:522.786667pt;}
.y10c{bottom:522.946667pt;}
.y140{bottom:523.106667pt;}
.y173{bottom:525.666667pt;}
.yd4{bottom:535.106667pt;}
.yc2{bottom:535.266667pt;}
.y68{bottom:537.986667pt;}
.y8f{bottom:538.786667pt;}
.y13f{bottom:538.946667pt;}
.yc1{bottom:551.106667pt;}
.y67{bottom:553.826667pt;}
.y10b{bottom:554.786667pt;}
.y172{bottom:559.266667pt;}
.y8e{bottom:562.306667pt;}
.yd3{bottom:566.946667pt;}
.yc0{bottom:567.106667pt;}
.y66{bottom:569.666667pt;}
.y13e{bottom:570.626667pt;}
.y10a{bottom:571.426667pt;}
.y171{bottom:578.786667pt;}
.yd2{bottom:582.786667pt;}
.ybf{bottom:582.946667pt;}
.y65{bottom:585.506667pt;}
.y8d{bottom:586.466667pt;}
.y13d{bottom:586.626667pt;}
.y109{bottom:587.266667pt;}
.y170{bottom:594.786667pt;}
.yd1{bottom:598.626667pt;}
.ybe{bottom:598.786667pt;}
.y64{bottom:601.533333pt;}
.y8c{bottom:602.333333pt;}
.y13c{bottom:602.493333pt;}
.y108{bottom:603.133333pt;}
.y16f{bottom:610.653333pt;}
.yd0{bottom:614.493333pt;}
.ybd{bottom:614.653333pt;}
.y8b{bottom:618.173333pt;}
.y13b{bottom:618.333333pt;}
.y107{bottom:619.133333pt;}
.y63{bottom:625.853333pt;}
.y16e{bottom:626.493333pt;}
.ycf{bottom:630.333333pt;}
.ybc{bottom:630.493333pt;}
.y8a{bottom:634.013333pt;}
.y106{bottom:635.773333pt;}
.y16d{bottom:642.333333pt;}
.y13a{bottom:643.453333pt;}
.ybb{bottom:646.333333pt;}
.y62{bottom:649.693333pt;}
.y89{bottom:650.013333pt;}
.y105{bottom:651.613333pt;}
.yce{bottom:654.013333pt;}
.y16c{bottom:658.173333pt;}
.yba{bottom:662.333333pt;}
.y88{bottom:665.853333pt;}
.y104{bottom:667.613333pt;}
.y139{bottom:671.293333pt;}
.y61{bottom:674.013333pt;}
.yb9{bottom:678.173333pt;}
.y138{bottom:687.293333pt;}
.y87{bottom:689.373333pt;}
.y60{bottom:689.853333pt;}
.y16b{bottom:690.013333pt;}
.y103{bottom:692.253333pt;}
.yb8{bottom:694.013333pt;}
.y137{bottom:703.133333pt;}
.y5f{bottom:705.693333pt;}
.y16a{bottom:705.853333pt;}
.y102{bottom:708.093333pt;}
.y86{bottom:713.533333pt;}
.yb7{bottom:717.533333pt;}
.ycd{bottom:717.853333pt;}
.y136{bottom:718.973333pt;}
.y5e{bottom:721.533333pt;}
.y169{bottom:721.693333pt;}
.y101{bottom:723.933333pt;}
.y85{bottom:729.373333pt;}
.y135{bottom:734.813333pt;}
.y5d{bottom:737.373333pt;}
.y168{bottom:737.533333pt;}
.y100{bottom:739.933333pt;}
.y84{bottom:745.213333pt;}
.y134{bottom:750.653333pt;}
.y5c{bottom:753.213333pt;}
.y167{bottom:753.373333pt;}
.yff{bottom:755.773333pt;}
.y83{bottom:761.213333pt;}
.yb6{bottom:765.693333pt;}
.y133{bottom:766.653333pt;}
.y5b{bottom:769.213333pt;}
.yfe{bottom:771.613333pt;}
.y82{bottom:777.053333pt;}
.y132{bottom:782.493333pt;}
.y5a{bottom:785.053333pt;}
.y166{bottom:785.213333pt;}
.y81{bottom:792.893333pt;}
.yb4{bottom:794.013333pt;}
.yfd{bottom:795.133333pt;}
.y131{bottom:798.333333pt;}
.y165{bottom:801.053333pt;}
.y59{bottom:808.893333pt;}
.y130{bottom:814.213333pt;}
.y80{bottom:816.453333pt;}
.y164{bottom:816.933333pt;}
.yfc{bottom:819.013333pt;}
.yb3{bottom:822.213333pt;}
.y58{bottom:824.773333pt;}
.y12f{bottom:830.053333pt;}
.y163{bottom:832.773333pt;}
.yb2{bottom:836.773333pt;}
.y57{bottom:840.613333pt;}
.yfb{bottom:843.333333pt;}
.y12e{bottom:845.893333pt;}
.y162{bottom:848.613333pt;}
.yb1{bottom:851.173333pt;}
.y56{bottom:856.613333pt;}
.yfa{bottom:859.173333pt;}
.y12d{bottom:861.893333pt;}
.y161{bottom:864.613333pt;}
.y55{bottom:872.453333pt;}
.yf9{bottom:875.013333pt;}
.yb0{bottom:879.493333pt;}
.y160{bottom:880.453333pt;}
.y12c{bottom:885.413333pt;}
.y54{bottom:888.293333pt;}
.yf8{bottom:890.853333pt;}
.y15f{bottom:896.293333pt;}
.y53{bottom:904.133333pt;}
.yf7{bottom:906.693333pt;}
.yae{bottom:907.653333pt;}
.y12b{bottom:909.573333pt;}
.y15e{bottom:912.133333pt;}
.y52{bottom:919.973333pt;}
.yf6{bottom:922.533333pt;}
.y12a{bottom:925.413333pt;}
.y15d{bottom:927.973333pt;}
.y51{bottom:935.813333pt;}
.yac{bottom:935.973333pt;}
.yc{bottom:936.933333pt;}
.yf5{bottom:938.533333pt;}
.y129{bottom:941.253333pt;}
.y15c{bottom:943.813333pt;}
.y50{bottom:951.813333pt;}
.yf4{bottom:954.373333pt;}
.yb{bottom:955.173333pt;}
.y128{bottom:957.253333pt;}
.y15b{bottom:959.813333pt;}
.ya9{bottom:964.293333pt;}
.y7f{bottom:967.653333pt;}
.yf3{bottom:970.213333pt;}
.y127{bottom:973.893333pt;}
.y4f{bottom:975.653333pt;}
.ya{bottom:981.733333pt;}
.y7e{bottom:983.493333pt;}
.yf2{bottom:986.053333pt;}
.y5{bottom:989.280000pt;}
.y126{bottom:989.733333pt;}
.y4e{bottom:991.493333pt;}
.ya6{bottom:992.453333pt;}
.y7d{bottom:999.333333pt;}
.y125{bottom:1005.733333pt;}
.y9{bottom:1006.533333pt;}
.y4d{bottom:1007.333333pt;}
.yf1{bottom:1009.573333pt;}
.y7c{bottom:1015.173333pt;}
.y124{bottom:1022.400000pt;}
.y4c{bottom:1023.200000pt;}
.y8{bottom:1035.040000pt;}
.yf0{bottom:1035.200000pt;}
.y3{bottom:1036.480000pt;}
.y123{bottom:1038.400000pt;}
.ya5{bottom:1038.720000pt;}
.y7b{bottom:1038.880000pt;}
.y4b{bottom:1039.200000pt;}
.y2{bottom:1050.240000pt;}
.y48{bottom:1052.000000pt;}
.y7{bottom:1058.880000pt;}
.y47{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h19{height:13.746667pt;}
.h1a{height:13.906667pt;}
.h1f{height:20.728125pt;}
.h14{height:27.093750pt;}
.h17{height:27.506667pt;}
.h1c{height:27.520000pt;}
.h1b{height:27.540000pt;}
.h1e{height:27.552000pt;}
.h18{height:27.666667pt;}
.h1d{height:27.680000pt;}
.h16{height:27.706667pt;}
.hb{height:31.406250pt;}
.h12{height:34.710938pt;}
.h13{height:36.305625pt;}
.h5{height:42.084375pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h15{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h10{height:53.535000pt;}
.hf{height:57.458667pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h20{height:62.812500pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:532.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w6{width:43.390667pt;}
.wc{width:62.106667pt;}
.wb{width:77.746667pt;}
.wa{width:77.938667pt;}
.wd{width:84.990667pt;}
.w9{width:111.986667pt;}
.w8{width:141.466667pt;}
.w3{width:188.385333pt;}
.w7{width:193.137333pt;}
.we{width:294.617333pt;}
.wf{width:330.613333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.720000pt;}
.x2f{left:8.160000pt;}
.x1e{left:9.586667pt;}
.x3{left:10.746667pt;}
.x21{left:11.680000pt;}
.x19{left:12.638667pt;}
.x22{left:14.718667pt;}
.xb{left:16.318667pt;}
.x25{left:17.306667pt;}
.x34{left:19.040000pt;}
.x2d{left:21.146667pt;}
.x26{left:22.586667pt;}
.x2c{left:23.680000pt;}
.x1b{left:24.800000pt;}
.x29{left:26.226667pt;}
.x27{left:28.160000pt;}
.x28{left:29.746667pt;}
.x32{left:31.190667pt;}
.x23{left:32.950667pt;}
.x33{left:37.120000pt;}
.x1c{left:38.546667pt;}
.x18{left:41.121333pt;}
.x30{left:44.306667pt;}
.x31{left:45.590667pt;}
.x1{left:48.000000pt;}
.x11{left:49.280000pt;}
.x6{left:50.720000pt;}
.x2a{left:53.905333pt;}
.x2e{left:54.865333pt;}
.x2b{left:57.265333pt;}
.x37{left:59.025333pt;}
.xa{left:61.761333pt;}
.x24{left:66.545333pt;}
.x14{left:72.000000pt;}
.x39{left:73.906667pt;}
.x47{left:76.480000pt;}
.xe{left:84.672000pt;}
.x3b{left:89.906667pt;}
.x41{left:92.145333pt;}
.x15{left:96.032000pt;}
.x48{left:104.832000pt;}
.x3a{left:112.345333pt;}
.x3c{left:113.785333pt;}
.x3f{left:122.066667pt;}
.x36{left:126.921333pt;}
.x3e{left:131.065333pt;}
.x9{left:148.026667pt;}
.x3d{left:150.746667pt;}
.x40{left:154.906667pt;}
.x17{left:194.426667pt;}
.x35{left:198.586667pt;}
.x8{left:209.146667pt;}
.x7{left:246.146667pt;}
.xc{left:250.946667pt;}
.x1a{left:278.946667pt;}
.x13{left:385.826667pt;}
.x16{left:396.893333pt;}
.xf{left:420.893333pt;}
.x38{left:422.186667pt;}
.x42{left:444.893333pt;}
.x45{left:449.373333pt;}
.x10{left:457.533333pt;}
.x43{left:468.893333pt;}
.x46{left:477.693333pt;}
.x44{left:505.853333pt;}
.x1d{left:533.706667pt;}
.x12{left:604.933333pt;}
.x1f{left:612.293333pt;}
.x20{left:690.693333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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