
    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_5d6ff8cfed7326deac8ea1a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_36f492bbe9861f39813cefdc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_492bc9b4ac7c6ff0f5751392.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72d95ccfdf12e7b6f5a7c338.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f2c5265712bda79a55bace6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_61d15693373f6d7c57fcf01f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9476dd8c81f13f1dbc554efe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_45ebcfbab4a20eacd7332755.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_40f1f23399700349ae2d4312.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6413a533ebf1203b7b93c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_c82d2138b9523c8606c8ccc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_c1265377c47cedf1cc20271a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2e3bb04aed86f123359991c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.083008;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.296000px;}
.ls3{letter-spacing:-0.495600px;}
.ls2{letter-spacing:-0.472200px;}
.lsd{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.449400px;}
.ls9{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.000003px;}
.ls10{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.332000px;}
.lsc{letter-spacing:2.160000px;}
.ls7{letter-spacing:33.264000px;}
.ls8{letter-spacing:37.584000px;}
.lse{letter-spacing:44.904000px;}
.ls11{letter-spacing:57.744000px;}
.ls15{letter-spacing:63.504000px;}
.ls13{letter-spacing:63.516000px;}
.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;}
}
.ws4{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.280003px;}
.ws2{word-spacing:-16.807800px;}
.ws3{word-spacing:-16.784400px;}
.wsa{word-spacing:-16.704000px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-14.506440px;}
.ws9{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-16.946880px;}
._13{margin-left:-11.434080px;}
._12{margin-left:-8.478240px;}
._10{margin-left:-7.332960px;}
._11{margin-left:-5.556000px;}
._15{margin-left:-4.320000px;}
._7{margin-left:-2.690880px;}
._2{margin-left:-1.252800px;}
._1{width:1.586880px;}
._3{width:3.371520px;}
._4{width:4.769280px;}
._5{width:5.959200px;}
._6{width:7.339200px;}
._18{width:8.782560px;}
._8{width:9.786720px;}
._9{width:10.897440px;}
._17{width:12.268800px;}
._a{width:13.455360px;}
._b{width:15.063360px;}
._c{width:16.278720px;}
._f{width:18.989760px;}
._d{width:20.181120px;}
._e{width:21.578880px;}
._16{width:22.839360px;}
._19{width:23.901120px;}
._1a{width:25.397760px;}
._1b{width:26.508000px;}
._52{width:27.672960px;}
._36{width:28.820160px;}
._35{width:30.556800px;}
._53{width:31.584000px;}
._24{width:32.884800px;}
._51{width:34.080000px;}
._28{width:35.112000px;}
._22{width:36.735360px;}
._21{width:37.754880px;}
._1e{width:38.761920px;}
._1c{width:39.772800px;}
._1d{width:40.832640px;}
._1f{width:41.916480px;}
._20{width:43.337280px;}
._47{width:48.072000px;}
._2e{width:49.086720px;}
._2f{width:50.760000px;}
._49{width:53.361600px;}
._27{width:55.149120px;}
._3d{width:57.007680px;}
._39{width:58.804800px;}
._2b{width:63.126720px;}
._2c{width:65.160000px;}
._45{width:66.600000px;}
._44{width:68.425920px;}
._4e{width:70.326720px;}
._23{width:73.825920px;}
._40{width:75.240000px;}
._41{width:77.808000px;}
._43{width:79.998720px;}
._29{width:87.733440px;}
._4d{width:91.580160px;}
._37{width:93.726720px;}
._3b{width:94.817280px;}
._46{width:96.373440px;}
._3c{width:97.520640px;}
._30{width:101.061120px;}
._31{width:102.600000px;}
._3f{width:111.021120px;}
._3e{width:112.228800px;}
._33{width:116.735040px;}
._38{width:119.814240px;}
._26{width:125.072640px;}
._4b{width:128.520000px;}
._4f{width:132.813120px;}
._50{width:134.568000px;}
._4c{width:154.765440px;}
._2d{width:165.104640px;}
._48{width:175.584000px;}
._3a{width:213.840000px;}
._32{width:225.388800px;}
._25{width:241.152000px;}
._42{width:270.120000px;}
._2a{width:274.489920px;}
._4a{width:321.652800px;}
._34{width:389.748000px;}
._0{width:1109.340000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:14.385000px;}
.y125{bottom:14.751000px;}
.y11c{bottom:14.760000px;}
.y12b{bottom:14.775000px;}
.y131{bottom:14.790000px;}
.y10b{bottom:45.750000px;}
.y11b{bottom:45.765000px;}
.y12a{bottom:46.095000px;}
.y2{bottom:57.636000px;}
.y10a{bottom:76.710000px;}
.y128{bottom:77.040000px;}
.y124{bottom:77.070000px;}
.y11a{bottom:77.085000px;}
.y1{bottom:77.436000px;}
.y109{bottom:107.670000px;}
.y123{bottom:108.030000px;}
.y119{bottom:108.045000px;}
.y1ad{bottom:115.596000px;}
.yca{bottom:118.836000px;}
.y143{bottom:119.556000px;}
.y1be{bottom:123.876000px;}
.y11f{bottom:124.605000px;}
.y17{bottom:126.756000px;}
.y86{bottom:129.636000px;}
.y35{bottom:131.436000px;}
.y4c{bottom:133.956000px;}
.ye6{bottom:134.676000px;}
.yfb{bottom:137.916000px;}
.y108{bottom:138.630000px;}
.y122{bottom:138.990000px;}
.y1aa{bottom:138.996000px;}
.y118{bottom:139.005000px;}
.y130{bottom:139.020000px;}
.y68{bottom:143.712000px;}
.y192{bottom:146.592000px;}
.y91{bottom:148.752000px;}
.y142{bottom:150.915000px;}
.yd6{bottom:153.795000px;}
.yb5{bottom:155.595000px;}
.y85{bottom:160.635000px;}
.yc9{bottom:162.075000px;}
.ye5{bottom:165.675000px;}
.y1bd{bottom:167.115000px;}
.yfa{bottom:168.915000px;}
.y107{bottom:169.620000px;}
.y121{bottom:169.980000px;}
.y16{bottom:169.995000px;}
.y127{bottom:170.325000px;}
.y186{bottom:171.795000px;}
.y139{bottom:172.515000px;}
.ya2{bottom:172.875000px;}
.y34{bottom:174.675000px;}
.y4b{bottom:177.195000px;}
.y191{bottom:177.555000px;}
.yd5{bottom:184.755000px;}
.yb4{bottom:186.915000px;}
.y90{bottom:191.595000px;}
.y141{bottom:193.755000px;}
.ye4{bottom:196.635000px;}
.yf9{bottom:200.235000px;}
.y106{bottom:200.940000px;}
.y117{bottom:200.955000px;}
.y185{bottom:202.755000px;}
.y84{bottom:203.835000px;}
.yc8{bottom:204.915000px;}
.y67{bottom:205.995000px;}
.y190{bottom:208.875000px;}
.y1bc{bottom:209.955000px;}
.y15{bottom:215.355000px;}
.ya1{bottom:215.715000px;}
.y33{bottom:216.075000px;}
.y4a{bottom:220.035000px;}
.y8f{bottom:222.915000px;}
.ye3{bottom:227.595000px;}
.yb3{bottom:229.755000px;}
.yf8{bottom:231.195000px;}
.y1a9{bottom:231.915000px;}
.y120{bottom:232.260000px;}
.y116{bottom:232.275000px;}
.y11e{bottom:232.290000px;}
.y184{bottom:234.075000px;}
.y83{bottom:234.795000px;}
.y159{bottom:236.595000px;}
.y66{bottom:236.955000px;}
.y18f{bottom:239.835000px;}
.yd4{bottom:246.675000px;}
.yc7{bottom:248.115000px;}
.y1bb{bottom:253.155000px;}
.y8e{bottom:253.875000px;}
.y32{bottom:258.195000px;}
.y138{bottom:258.555000px;}
.ya0{bottom:258.915000px;}
.yb2{bottom:260.715000px;}
.y12f{bottom:263.220000px;}
.y49{bottom:263.235000px;}
.y11d{bottom:263.250000px;}
.y14{bottom:263.595000px;}
.y183{bottom:265.035000px;}
.y82{bottom:265.755000px;}
.y158{bottom:267.555000px;}
.y18e{bottom:270.435000px;}
.y1ac{bottom:270.795000px;}
.yd3{bottom:278.025000px;}
.y65{bottom:279.825000px;}
.y8d{bottom:284.865000px;}
.y31{bottom:288.105000px;}
.y9f{bottom:289.905000px;}
.yf7{bottom:290.265000px;}
.yc6{bottom:291.345000px;}
.yb1{bottom:292.065000px;}
.y115{bottom:294.195000px;}
.y112{bottom:294.210000px;}
.y12e{bottom:294.225000px;}
.y182{bottom:296.025000px;}
.y81{bottom:296.745000px;}
.y137{bottom:301.785000px;}
.y16c{bottom:305.385000px;}
.y48{bottom:306.105000px;}
.yd2{bottom:308.985000px;}
.y64{bottom:311.145000px;}
.y13{bottom:311.865000px;}
.y157{bottom:314.025000px;}
.y8c{bottom:315.825000px;}
.y30{bottom:317.985000px;}
.y9e{bottom:320.865000px;}
.yb0{bottom:323.025000px;}
.y114{bottom:325.185000px;}
.y111{bottom:325.200000px;}
.y181{bottom:326.985000px;}
.y80{bottom:328.065000px;}
.y1ab{bottom:332.385000px;}
.y18d{bottom:332.745000px;}
.yc5{bottom:334.185000px;}
.y16b{bottom:335.985000px;}
.y1ba{bottom:339.225000px;}
.yd1{bottom:339.945000px;}
.y63{bottom:342.105000px;}
.y136{bottom:344.625000px;}
.y156{bottom:345.345000px;}
.y8b{bottom:347.145000px;}
.y2f{bottom:347.505000px;}
.y47{bottom:349.305000px;}
.y9d{bottom:351.825000px;}
.yaf{bottom:353.985000px;}
.y1a8{bottom:356.145000px;}
.y113{bottom:356.505000px;}
.y110{bottom:356.520000px;}
.y180{bottom:358.305000px;}
.y7f{bottom:359.025000px;}
.y12{bottom:360.105000px;}
.y18c{bottom:364.065000px;}
.y140{bottom:366.225000px;}
.y16a{bottom:367.305000px;}
.yd0{bottom:370.905000px;}
.y62{bottom:373.065000px;}
.y10f{bottom:373.770000px;}
.y10d{bottom:373.785000px;}
.y155{bottom:376.305000px;}
.y2e{bottom:377.385000px;}
.y1b9{bottom:382.425000px;}
.yf6{bottom:382.785000px;}
.y9c{bottom:383.145000px;}
.yae{bottom:384.945000px;}
.y10e{bottom:387.465000px;}
.y135{bottom:387.825000px;}
.y17f{bottom:389.265000px;}
.y7e{bottom:389.985000px;}
.y46{bottom:392.145000px;}
.y18b{bottom:395.025000px;}
.y13f{bottom:397.185000px;}
.ycf{bottom:402.225000px;}
.y154{bottom:407.310000px;}
.y11{bottom:408.390000px;}
.y169{bottom:412.350000px;}
.y9b{bottom:414.150000px;}
.y61{bottom:416.310000px;}
.y12d{bottom:418.455000px;}
.y1a7{bottom:418.470000px;}
.y2d{bottom:419.190000px;}
.yc4{bottom:420.270000px;}
.y7d{bottom:420.990000px;}
.y1b8{bottom:425.310000px;}
.y18a{bottom:426.030000px;}
.yad{bottom:428.190000px;}
.y134{bottom:431.070000px;}
.yce{bottom:433.230000px;}
.y45{bottom:435.390000px;}
.y153{bottom:438.270000px;}
.y168{bottom:442.950000px;}
.y9a{bottom:445.110000px;}
.y60{bottom:447.270000px;}
.y2c{bottom:449.070000px;}
.y17e{bottom:451.230000px;}
.y7c{bottom:452.310000px;}
.y10{bottom:456.630000px;}
.y189{bottom:456.990000px;}
.yac{bottom:459.150000px;}
.yc3{bottom:463.470000px;}
.ycd{bottom:463.830000px;}
.y1b7{bottom:468.510000px;}
.y152{bottom:469.590000px;}
.yf5{bottom:473.190000px;}
.y133{bottom:473.910000px;}
.y1cd{bottom:474.270000px;}
.y99{bottom:476.070000px;}
.y5f{bottom:478.230000px;}
.y2b{bottom:478.590000px;}
.y1a6{bottom:480.390000px;}
.y17d{bottom:482.550000px;}
.y8a{bottom:483.270000px;}
.y167{bottom:487.950000px;}
.ye2{bottom:488.310000px;}
.y13e{bottom:490.470000px;}
.y7b{bottom:495.150000px;}
.y151{bottom:500.550000px;}
.yab{bottom:502.350000px;}
.yf4{bottom:503.790000px;}
.yf{bottom:504.870000px;}
.yc2{bottom:506.310000px;}
.y98{bottom:507.390000px;}
.y2a{bottom:508.470000px;}
.y5e{bottom:509.190000px;}
.y1b6{bottom:511.350000px;}
.y1a5{bottom:511.710000px;}
.y17c{bottom:513.510000px;}
.y104{bottom:514.230000px;}
.y132{bottom:517.110000px;}
.y188{bottom:518.910000px;}
.ye1{bottom:519.270000px;}
.y44{bottom:521.430000px;}
.y7a{bottom:526.470000px;}
.y166{bottom:532.590000px;}
.yaa{bottom:533.310000px;}
.y12c{bottom:534.030000px;}
.yf3{bottom:534.750000px;}
.y97{bottom:538.380000px;}
.y1a4{bottom:542.700000px;}
.y17b{bottom:544.500000px;}
.y103{bottom:545.220000px;}
.y150{bottom:547.020000px;}
.y1cc{bottom:548.100000px;}
.yc1{bottom:549.540000px;}
.y29{bottom:550.260000px;}
.y5d{bottom:552.420000px;}
.ye{bottom:553.140000px;}
.y1b5{bottom:554.580000px;}
.y79{bottom:557.460000px;}
.y165{bottom:563.220000px;}
.ya9{bottom:564.300000px;}
.y43{bottom:564.660000px;}
.y96{bottom:569.340000px;}
.y1a3{bottom:573.660000px;}
.y17a{bottom:575.460000px;}
.y102{bottom:576.540000px;}
.y14f{bottom:578.340000px;}
.y1cb{bottom:579.420000px;}
.y28{bottom:579.780000px;}
.ye0{bottom:581.220000px;}
.y5c{bottom:583.380000px;}
.y78{bottom:588.420000px;}
.yc0{bottom:592.740000px;}
.yf2{bottom:593.820000px;}
.y164{bottom:594.180000px;}
.ya8{bottom:595.620000px;}
.y1b4{bottom:597.420000px;}
.y95{bottom:600.300000px;}
.yd{bottom:601.020000px;}
.y1a2{bottom:604.620000px;}
.y42{bottom:607.500000px;}
.y27{bottom:609.660000px;}
.y1ca{bottom:610.380000px;}
.ydf{bottom:612.540000px;}
.y13d{bottom:614.340000px;}
.y77{bottom:619.380000px;}
.y179{bottom:620.460000px;}
.yf1{bottom:624.420000px;}
.y14e{bottom:624.780000px;}
.y163{bottom:625.140000px;}
.y5b{bottom:626.580000px;}
.y94{bottom:631.620000px;}
.ybf{bottom:635.580000px;}
.y1a1{bottom:635.940000px;}
.y101{bottom:638.460000px;}
.y1b3{bottom:640.620000px;}
.yde{bottom:643.500000px;}
.yc{bottom:649.260000px;}
.y76{bottom:650.340000px;}
.y41{bottom:650.700000px;}
.y26{bottom:651.060000px;}
.y1c9{bottom:654.660000px;}
.yf0{bottom:655.380000px;}
.y14d{bottom:655.740000px;}
.y162{bottom:656.460000px;}
.y5a{bottom:657.540000px;}
.y93{bottom:662.580000px;}
.y178{bottom:665.100000px;}
.y1a0{bottom:666.540000px;}
.ya7{bottom:669.450000px;}
.ydd{bottom:674.490000px;}
.ybe{bottom:678.810000px;}
.y75{bottom:681.690000px;}
.y1b2{bottom:683.850000px;}
.y1c8{bottom:685.290000px;}
.yef{bottom:686.730000px;}
.y14c{bottom:687.090000px;}
.y161{bottom:687.450000px;}
.y13c{bottom:688.530000px;}
.y25{bottom:693.210000px;}
.y40{bottom:693.570000px;}
.y177{bottom:696.090000px;}
.yb{bottom:697.530000px;}
.y19f{bottom:697.890000px;}
.y59{bottom:700.770000px;}
.ydc{bottom:705.450000px;}
.y74{bottom:712.650000px;}
.y1c7{bottom:716.250000px;}
.yee{bottom:717.690000px;}
.y160{bottom:718.410000px;}
.y13b{bottom:719.850000px;}
.ybd{bottom:721.650000px;}
.y92{bottom:724.530000px;}
.y1b1{bottom:726.690000px;}
.y176{bottom:727.050000px;}
.y19e{bottom:728.850000px;}
.ya6{bottom:731.730000px;}
.y14b{bottom:733.530000px;}
.ya{bottom:733.890000px;}
.y24{bottom:734.610000px;}
.y3f{bottom:736.770000px;}
.y58{bottom:743.610000px;}
.y1c6{bottom:747.570000px;}
.yed{bottom:748.650000px;}
.y15f{bottom:749.370000px;}
.y13a{bottom:750.810000px;}
.y89{bottom:755.850000px;}
.y175{bottom:758.010000px;}
.y19d{bottom:760.170000px;}
.ya5{bottom:762.690000px;}
.y14a{bottom:764.490000px;}
.ybc{bottom:764.850000px;}
.y187{bottom:767.370000px;}
.y3e{bottom:767.730000px;}
.y1b0{bottom:769.890000px;}
.y57{bottom:774.570000px;}
.y23{bottom:776.730000px;}
.y105{bottom:778.185000px;}
.y9{bottom:779.610000px;}
.y15e{bottom:780.690000px;}
.y88{bottom:786.810000px;}
.y174{bottom:788.970000px;}
.y19c{bottom:791.130000px;}
.y1c5{bottom:791.490000px;}
.ya4{bottom:793.650000px;}
.y149{bottom:795.810000px;}
.ydb{bottom:798.690000px;}
.y56{bottom:805.935000px;}
.y3d{bottom:806.295000px;}
.y22{bottom:806.655000px;}
.ybb{bottom:808.095000px;}
.yec{bottom:810.975000px;}
.y1af{bottom:812.775000px;}
.y73{bottom:817.815000px;}
.y173{bottom:819.975000px;}
.y19b{bottom:822.135000px;}
.y1c4{bottom:822.495000px;}
.y15d{bottom:823.935000px;}
.y100{bottom:825.015000px;}
.y8{bottom:825.375000px;}
.y148{bottom:826.815000px;}
.yda{bottom:829.695000px;}
.y21{bottom:836.175000px;}
.y55{bottom:836.895000px;}
.yeb{bottom:841.935000px;}
.y72{bottom:848.775000px;}
.y3c{bottom:849.495000px;}
.yba{bottom:850.935000px;}
.y19a{bottom:853.095000px;}
.y1c3{bottom:853.455000px;}
.y15c{bottom:854.895000px;}
.yff{bottom:855.975000px;}
.y147{bottom:857.775000px;}
.yd9{bottom:861.015000px;}
.y172{bottom:864.975000px;}
.y20{bottom:866.055000px;}
.y54{bottom:867.855000px;}
.y7{bottom:873.255000px;}
.y71{bottom:880.095000px;}
.y199{bottom:884.055000px;}
.yea{bottom:885.495000px;}
.yfe{bottom:886.935000px;}
.y3b{bottom:888.015000px;}
.yd8{bottom:891.975000px;}
.yb9{bottom:894.135000px;}
.y1f{bottom:895.935000px;}
.y1c2{bottom:897.735000px;}
.y15b{bottom:898.455000px;}
.y53{bottom:898.815000px;}
.y146{bottom:904.575000px;}
.y87{bottom:911.055000px;}
.y198{bottom:915.375000px;}
.yfd{bottom:917.895000px;}
.y6{bottom:921.495000px;}
.y70{bottom:922.935000px;}
.y3a{bottom:926.535000px;}
.y171{bottom:926.895000px;}
.y1c1{bottom:928.335000px;}
.ye9{bottom:929.415000px;}
.y52{bottom:930.135000px;}
.yb8{bottom:937.005000px;}
.y1e{bottom:937.725000px;}
.y1ae{bottom:942.045000px;}
.y197{bottom:946.365000px;}
.yfc{bottom:949.245000px;}
.y145{bottom:951.045000px;}
.y6f{bottom:953.925000px;}
.ye8{bottom:960.405000px;}
.ycc{bottom:960.765000px;}
.ya3{bottom:961.125000px;}
.y39{bottom:965.085000px;}
.y1d{bottom:967.245000px;}
.y129{bottom:969.390000px;}
.y126{bottom:969.405000px;}
.y5{bottom:969.765000px;}
.y170{bottom:971.925000px;}
.y15a{bottom:972.645000px;}
.y51{bottom:973.005000px;}
.y196{bottom:977.325000px;}
.yb7{bottom:980.205000px;}
.y144{bottom:982.365000px;}
.y6e{bottom:985.245000px;}
.ye7{bottom:991.365000px;}
.ycb{bottom:992.085000px;}
.y1c{bottom:997.125000px;}
.y16f{bottom:1002.525000px;}
.y1c0{bottom:1003.245000px;}
.y38{bottom:1003.605000px;}
.y50{bottom:1003.965000px;}
.y6d{bottom:1016.205000px;}
.y4{bottom:1018.365000px;}
.y195{bottom:1021.245000px;}
.yb6{bottom:1023.045000px;}
.y16e{bottom:1033.485000px;}
.y4f{bottom:1035.285000px;}
.y1b{bottom:1038.885000px;}
.y37{bottom:1042.125000px;}
.y6c{bottom:1047.165000px;}
.y1bf{bottom:1047.525000px;}
.y194{bottom:1052.565000px;}
.y4e{bottom:1066.290000px;}
.y3{bottom:1068.450000px;}
.y1a{bottom:1068.810000px;}
.y36{bottom:1073.490000px;}
.y6b{bottom:1078.170000px;}
.y16d{bottom:1078.530000px;}
.y193{bottom:1096.530000px;}
.y4d{bottom:1097.250000px;}
.y19{bottom:1098.330000px;}
.yd7{bottom:1109.130000px;}
.y6a{bottom:1109.490000px;}
.y18{bottom:1140.090000px;}
.y69{bottom:1140.450000px;}
.h2{height:50.229844px;}
.hf{height:63.949219px;}
.hc{height:64.546875px;}
.h8{height:67.837500px;}
.h9{height:69.660000px;}
.hd{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:74.004654px;}
.hb{height:74.953125px;}
.h4{height:81.970312px;}
.h5{height:84.172500px;}
.h3{height:133.515000px;}
.h13{height:186.510000px;}
.h14{height:186.525000px;}
.he{height:217.485000px;}
.h12{height:248.445000px;}
.h10{height:403.665000px;}
.h11{height:403.695000px;}
.h15{height:434.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:161.325000px;}
.w3{width:161.355000px;}
.w4{width:161.370000px;}
.w5{width:161.685000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:7.551000px;}
.x18{left:122.805000px;}
.x2{left:127.476000px;}
.x8{left:130.716000px;}
.x1c{left:132.156000px;}
.xf{left:154.515000px;}
.x15{left:159.195000px;}
.x11{left:161.715000px;}
.x12{left:169.995000px;}
.x10{left:171.075000px;}
.xd{left:180.435000px;}
.x13{left:181.515000px;}
.x7{left:207.435000px;}
.x16{left:208.515000px;}
.x17{left:235.545000px;}
.x6{left:237.345000px;}
.x1a{left:284.865000px;}
.xa{left:290.265000px;}
.xb{left:292.425000px;}
.x5{left:299.265000px;}
.xc{left:319.110000px;}
.x9{left:348.270000px;}
.x3{left:397.590000px;}
.xe{left:413.820000px;}
.x4{left:446.580000px;}
.x1b{left:609.030000px;}
.x14{left:749.085000px;}
.x1{left:757.365000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls3{letter-spacing:-0.440533pt;}
.ls2{letter-spacing:-0.419733pt;}
.lsd{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.399467pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.000003pt;}
.ls10{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.184000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls7{letter-spacing:29.568000pt;}
.ls8{letter-spacing:33.408000pt;}
.lse{letter-spacing:39.914667pt;}
.ls11{letter-spacing:51.328000pt;}
.ls15{letter-spacing:56.448000pt;}
.ls13{letter-spacing:56.458667pt;}
.ws4{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.360003pt;}
.ws2{word-spacing:-14.940267pt;}
.ws3{word-spacing:-14.919467pt;}
.wsa{word-spacing:-14.848000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-12.894613pt;}
.ws9{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-15.063893pt;}
._13{margin-left:-10.163627pt;}
._12{margin-left:-7.536213pt;}
._10{margin-left:-6.518187pt;}
._11{margin-left:-4.938667pt;}
._15{margin-left:-3.840000pt;}
._7{margin-left:-2.391893pt;}
._2{margin-left:-1.113600pt;}
._1{width:1.410560pt;}
._3{width:2.996907pt;}
._4{width:4.239360pt;}
._5{width:5.297067pt;}
._6{width:6.523733pt;}
._18{width:7.806720pt;}
._8{width:8.699307pt;}
._9{width:9.686613pt;}
._17{width:10.905600pt;}
._a{width:11.960320pt;}
._b{width:13.389653pt;}
._c{width:14.469973pt;}
._f{width:16.879787pt;}
._d{width:17.938773pt;}
._e{width:19.181227pt;}
._16{width:20.301653pt;}
._19{width:21.245440pt;}
._1a{width:22.575787pt;}
._1b{width:23.562667pt;}
._52{width:24.598187pt;}
._36{width:25.617920pt;}
._35{width:27.161600pt;}
._53{width:28.074667pt;}
._24{width:29.230933pt;}
._51{width:30.293333pt;}
._28{width:31.210667pt;}
._22{width:32.653653pt;}
._21{width:33.559893pt;}
._1e{width:34.455040pt;}
._1c{width:35.353600pt;}
._1d{width:36.295680pt;}
._1f{width:37.259093pt;}
._20{width:38.522027pt;}
._47{width:42.730667pt;}
._2e{width:43.632640pt;}
._2f{width:45.120000pt;}
._49{width:47.432533pt;}
._27{width:49.021440pt;}
._3d{width:50.673493pt;}
._39{width:52.270933pt;}
._2b{width:56.112640pt;}
._2c{width:57.920000pt;}
._45{width:59.200000pt;}
._44{width:60.823040pt;}
._4e{width:62.512640pt;}
._23{width:65.623040pt;}
._40{width:66.880000pt;}
._41{width:69.162667pt;}
._43{width:71.109973pt;}
._29{width:77.985280pt;}
._4d{width:81.404587pt;}
._37{width:83.312640pt;}
._3b{width:84.282027pt;}
._46{width:85.665280pt;}
._3c{width:86.685013pt;}
._30{width:89.832107pt;}
._31{width:91.200000pt;}
._3f{width:98.685440pt;}
._3e{width:99.758933pt;}
._33{width:103.764480pt;}
._38{width:106.501547pt;}
._26{width:111.175680pt;}
._4b{width:114.240000pt;}
._4f{width:118.056107pt;}
._50{width:119.616000pt;}
._4c{width:137.569280pt;}
._2d{width:146.759680pt;}
._48{width:156.074667pt;}
._3a{width:190.080000pt;}
._32{width:200.345600pt;}
._25{width:214.357333pt;}
._42{width:240.106667pt;}
._2a{width:243.991040pt;}
._4a{width:285.913600pt;}
._34{width:346.442667pt;}
._0{width:986.080000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:12.786667pt;}
.y125{bottom:13.112000pt;}
.y11c{bottom:13.120000pt;}
.y12b{bottom:13.133333pt;}
.y131{bottom:13.146667pt;}
.y10b{bottom:40.666667pt;}
.y11b{bottom:40.680000pt;}
.y12a{bottom:40.973333pt;}
.y2{bottom:51.232000pt;}
.y10a{bottom:68.186667pt;}
.y128{bottom:68.480000pt;}
.y124{bottom:68.506667pt;}
.y11a{bottom:68.520000pt;}
.y1{bottom:68.832000pt;}
.y109{bottom:95.706667pt;}
.y123{bottom:96.026667pt;}
.y119{bottom:96.040000pt;}
.y1ad{bottom:102.752000pt;}
.yca{bottom:105.632000pt;}
.y143{bottom:106.272000pt;}
.y1be{bottom:110.112000pt;}
.y11f{bottom:110.760000pt;}
.y17{bottom:112.672000pt;}
.y86{bottom:115.232000pt;}
.y35{bottom:116.832000pt;}
.y4c{bottom:119.072000pt;}
.ye6{bottom:119.712000pt;}
.yfb{bottom:122.592000pt;}
.y108{bottom:123.226667pt;}
.y122{bottom:123.546667pt;}
.y1aa{bottom:123.552000pt;}
.y118{bottom:123.560000pt;}
.y130{bottom:123.573333pt;}
.y68{bottom:127.744000pt;}
.y192{bottom:130.304000pt;}
.y91{bottom:132.224000pt;}
.y142{bottom:134.146667pt;}
.yd6{bottom:136.706667pt;}
.yb5{bottom:138.306667pt;}
.y85{bottom:142.786667pt;}
.yc9{bottom:144.066667pt;}
.ye5{bottom:147.266667pt;}
.y1bd{bottom:148.546667pt;}
.yfa{bottom:150.146667pt;}
.y107{bottom:150.773333pt;}
.y121{bottom:151.093333pt;}
.y16{bottom:151.106667pt;}
.y127{bottom:151.400000pt;}
.y186{bottom:152.706667pt;}
.y139{bottom:153.346667pt;}
.ya2{bottom:153.666667pt;}
.y34{bottom:155.266667pt;}
.y4b{bottom:157.506667pt;}
.y191{bottom:157.826667pt;}
.yd5{bottom:164.226667pt;}
.yb4{bottom:166.146667pt;}
.y90{bottom:170.306667pt;}
.y141{bottom:172.226667pt;}
.ye4{bottom:174.786667pt;}
.yf9{bottom:177.986667pt;}
.y106{bottom:178.613333pt;}
.y117{bottom:178.626667pt;}
.y185{bottom:180.226667pt;}
.y84{bottom:181.186667pt;}
.yc8{bottom:182.146667pt;}
.y67{bottom:183.106667pt;}
.y190{bottom:185.666667pt;}
.y1bc{bottom:186.626667pt;}
.y15{bottom:191.426667pt;}
.ya1{bottom:191.746667pt;}
.y33{bottom:192.066667pt;}
.y4a{bottom:195.586667pt;}
.y8f{bottom:198.146667pt;}
.ye3{bottom:202.306667pt;}
.yb3{bottom:204.226667pt;}
.yf8{bottom:205.506667pt;}
.y1a9{bottom:206.146667pt;}
.y120{bottom:206.453333pt;}
.y116{bottom:206.466667pt;}
.y11e{bottom:206.480000pt;}
.y184{bottom:208.066667pt;}
.y83{bottom:208.706667pt;}
.y159{bottom:210.306667pt;}
.y66{bottom:210.626667pt;}
.y18f{bottom:213.186667pt;}
.yd4{bottom:219.266667pt;}
.yc7{bottom:220.546667pt;}
.y1bb{bottom:225.026667pt;}
.y8e{bottom:225.666667pt;}
.y32{bottom:229.506667pt;}
.y138{bottom:229.826667pt;}
.ya0{bottom:230.146667pt;}
.yb2{bottom:231.746667pt;}
.y12f{bottom:233.973333pt;}
.y49{bottom:233.986667pt;}
.y11d{bottom:234.000000pt;}
.y14{bottom:234.306667pt;}
.y183{bottom:235.586667pt;}
.y82{bottom:236.226667pt;}
.y158{bottom:237.826667pt;}
.y18e{bottom:240.386667pt;}
.y1ac{bottom:240.706667pt;}
.yd3{bottom:247.133333pt;}
.y65{bottom:248.733333pt;}
.y8d{bottom:253.213333pt;}
.y31{bottom:256.093333pt;}
.y9f{bottom:257.693333pt;}
.yf7{bottom:258.013333pt;}
.yc6{bottom:258.973333pt;}
.yb1{bottom:259.613333pt;}
.y115{bottom:261.506667pt;}
.y112{bottom:261.520000pt;}
.y12e{bottom:261.533333pt;}
.y182{bottom:263.133333pt;}
.y81{bottom:263.773333pt;}
.y137{bottom:268.253333pt;}
.y16c{bottom:271.453333pt;}
.y48{bottom:272.093333pt;}
.yd2{bottom:274.653333pt;}
.y64{bottom:276.573333pt;}
.y13{bottom:277.213333pt;}
.y157{bottom:279.133333pt;}
.y8c{bottom:280.733333pt;}
.y30{bottom:282.653333pt;}
.y9e{bottom:285.213333pt;}
.yb0{bottom:287.133333pt;}
.y114{bottom:289.053333pt;}
.y111{bottom:289.066667pt;}
.y181{bottom:290.653333pt;}
.y80{bottom:291.613333pt;}
.y1ab{bottom:295.453333pt;}
.y18d{bottom:295.773333pt;}
.yc5{bottom:297.053333pt;}
.y16b{bottom:298.653333pt;}
.y1ba{bottom:301.533333pt;}
.yd1{bottom:302.173333pt;}
.y63{bottom:304.093333pt;}
.y136{bottom:306.333333pt;}
.y156{bottom:306.973333pt;}
.y8b{bottom:308.573333pt;}
.y2f{bottom:308.893333pt;}
.y47{bottom:310.493333pt;}
.y9d{bottom:312.733333pt;}
.yaf{bottom:314.653333pt;}
.y1a8{bottom:316.573333pt;}
.y113{bottom:316.893333pt;}
.y110{bottom:316.906667pt;}
.y180{bottom:318.493333pt;}
.y7f{bottom:319.133333pt;}
.y12{bottom:320.093333pt;}
.y18c{bottom:323.613333pt;}
.y140{bottom:325.533333pt;}
.y16a{bottom:326.493333pt;}
.yd0{bottom:329.693333pt;}
.y62{bottom:331.613333pt;}
.y10f{bottom:332.240000pt;}
.y10d{bottom:332.253333pt;}
.y155{bottom:334.493333pt;}
.y2e{bottom:335.453333pt;}
.y1b9{bottom:339.933333pt;}
.yf6{bottom:340.253333pt;}
.y9c{bottom:340.573333pt;}
.yae{bottom:342.173333pt;}
.y10e{bottom:344.413333pt;}
.y135{bottom:344.733333pt;}
.y17f{bottom:346.013333pt;}
.y7e{bottom:346.653333pt;}
.y46{bottom:348.573333pt;}
.y18b{bottom:351.133333pt;}
.y13f{bottom:353.053333pt;}
.ycf{bottom:357.533333pt;}
.y154{bottom:362.053333pt;}
.y11{bottom:363.013333pt;}
.y169{bottom:366.533333pt;}
.y9b{bottom:368.133333pt;}
.y61{bottom:370.053333pt;}
.y12d{bottom:371.960000pt;}
.y1a7{bottom:371.973333pt;}
.y2d{bottom:372.613333pt;}
.yc4{bottom:373.573333pt;}
.y7d{bottom:374.213333pt;}
.y1b8{bottom:378.053333pt;}
.y18a{bottom:378.693333pt;}
.yad{bottom:380.613333pt;}
.y134{bottom:383.173333pt;}
.yce{bottom:385.093333pt;}
.y45{bottom:387.013333pt;}
.y153{bottom:389.573333pt;}
.y168{bottom:393.733333pt;}
.y9a{bottom:395.653333pt;}
.y60{bottom:397.573333pt;}
.y2c{bottom:399.173333pt;}
.y17e{bottom:401.093333pt;}
.y7c{bottom:402.053333pt;}
.y10{bottom:405.893333pt;}
.y189{bottom:406.213333pt;}
.yac{bottom:408.133333pt;}
.yc3{bottom:411.973333pt;}
.ycd{bottom:412.293333pt;}
.y1b7{bottom:416.453333pt;}
.y152{bottom:417.413333pt;}
.yf5{bottom:420.613333pt;}
.y133{bottom:421.253333pt;}
.y1cd{bottom:421.573333pt;}
.y99{bottom:423.173333pt;}
.y5f{bottom:425.093333pt;}
.y2b{bottom:425.413333pt;}
.y1a6{bottom:427.013333pt;}
.y17d{bottom:428.933333pt;}
.y8a{bottom:429.573333pt;}
.y167{bottom:433.733333pt;}
.ye2{bottom:434.053333pt;}
.y13e{bottom:435.973333pt;}
.y7b{bottom:440.133333pt;}
.y151{bottom:444.933333pt;}
.yab{bottom:446.533333pt;}
.yf4{bottom:447.813333pt;}
.yf{bottom:448.773333pt;}
.yc2{bottom:450.053333pt;}
.y98{bottom:451.013333pt;}
.y2a{bottom:451.973333pt;}
.y5e{bottom:452.613333pt;}
.y1b6{bottom:454.533333pt;}
.y1a5{bottom:454.853333pt;}
.y17c{bottom:456.453333pt;}
.y104{bottom:457.093333pt;}
.y132{bottom:459.653333pt;}
.y188{bottom:461.253333pt;}
.ye1{bottom:461.573333pt;}
.y44{bottom:463.493333pt;}
.y7a{bottom:467.973333pt;}
.y166{bottom:473.413333pt;}
.yaa{bottom:474.053333pt;}
.y12c{bottom:474.693333pt;}
.yf3{bottom:475.333333pt;}
.y97{bottom:478.560000pt;}
.y1a4{bottom:482.400000pt;}
.y17b{bottom:484.000000pt;}
.y103{bottom:484.640000pt;}
.y150{bottom:486.240000pt;}
.y1cc{bottom:487.200000pt;}
.yc1{bottom:488.480000pt;}
.y29{bottom:489.120000pt;}
.y5d{bottom:491.040000pt;}
.ye{bottom:491.680000pt;}
.y1b5{bottom:492.960000pt;}
.y79{bottom:495.520000pt;}
.y165{bottom:500.640000pt;}
.ya9{bottom:501.600000pt;}
.y43{bottom:501.920000pt;}
.y96{bottom:506.080000pt;}
.y1a3{bottom:509.920000pt;}
.y17a{bottom:511.520000pt;}
.y102{bottom:512.480000pt;}
.y14f{bottom:514.080000pt;}
.y1cb{bottom:515.040000pt;}
.y28{bottom:515.360000pt;}
.ye0{bottom:516.640000pt;}
.y5c{bottom:518.560000pt;}
.y78{bottom:523.040000pt;}
.yc0{bottom:526.880000pt;}
.yf2{bottom:527.840000pt;}
.y164{bottom:528.160000pt;}
.ya8{bottom:529.440000pt;}
.y1b4{bottom:531.040000pt;}
.y95{bottom:533.600000pt;}
.yd{bottom:534.240000pt;}
.y1a2{bottom:537.440000pt;}
.y42{bottom:540.000000pt;}
.y27{bottom:541.920000pt;}
.y1ca{bottom:542.560000pt;}
.ydf{bottom:544.480000pt;}
.y13d{bottom:546.080000pt;}
.y77{bottom:550.560000pt;}
.y179{bottom:551.520000pt;}
.yf1{bottom:555.040000pt;}
.y14e{bottom:555.360000pt;}
.y163{bottom:555.680000pt;}
.y5b{bottom:556.960000pt;}
.y94{bottom:561.440000pt;}
.ybf{bottom:564.960000pt;}
.y1a1{bottom:565.280000pt;}
.y101{bottom:567.520000pt;}
.y1b3{bottom:569.440000pt;}
.yde{bottom:572.000000pt;}
.yc{bottom:577.120000pt;}
.y76{bottom:578.080000pt;}
.y41{bottom:578.400000pt;}
.y26{bottom:578.720000pt;}
.y1c9{bottom:581.920000pt;}
.yf0{bottom:582.560000pt;}
.y14d{bottom:582.880000pt;}
.y162{bottom:583.520000pt;}
.y5a{bottom:584.480000pt;}
.y93{bottom:588.960000pt;}
.y178{bottom:591.200000pt;}
.y1a0{bottom:592.480000pt;}
.ya7{bottom:595.066667pt;}
.ydd{bottom:599.546667pt;}
.ybe{bottom:603.386667pt;}
.y75{bottom:605.946667pt;}
.y1b2{bottom:607.866667pt;}
.y1c8{bottom:609.146667pt;}
.yef{bottom:610.426667pt;}
.y14c{bottom:610.746667pt;}
.y161{bottom:611.066667pt;}
.y13c{bottom:612.026667pt;}
.y25{bottom:616.186667pt;}
.y40{bottom:616.506667pt;}
.y177{bottom:618.746667pt;}
.yb{bottom:620.026667pt;}
.y19f{bottom:620.346667pt;}
.y59{bottom:622.906667pt;}
.ydc{bottom:627.066667pt;}
.y74{bottom:633.466667pt;}
.y1c7{bottom:636.666667pt;}
.yee{bottom:637.946667pt;}
.y160{bottom:638.586667pt;}
.y13b{bottom:639.866667pt;}
.ybd{bottom:641.466667pt;}
.y92{bottom:644.026667pt;}
.y1b1{bottom:645.946667pt;}
.y176{bottom:646.266667pt;}
.y19e{bottom:647.866667pt;}
.ya6{bottom:650.426667pt;}
.y14b{bottom:652.026667pt;}
.ya{bottom:652.346667pt;}
.y24{bottom:652.986667pt;}
.y3f{bottom:654.906667pt;}
.y58{bottom:660.986667pt;}
.y1c6{bottom:664.506667pt;}
.yed{bottom:665.466667pt;}
.y15f{bottom:666.106667pt;}
.y13a{bottom:667.386667pt;}
.y89{bottom:671.866667pt;}
.y175{bottom:673.786667pt;}
.y19d{bottom:675.706667pt;}
.ya5{bottom:677.946667pt;}
.y14a{bottom:679.546667pt;}
.ybc{bottom:679.866667pt;}
.y187{bottom:682.106667pt;}
.y3e{bottom:682.426667pt;}
.y1b0{bottom:684.346667pt;}
.y57{bottom:688.506667pt;}
.y23{bottom:690.426667pt;}
.y105{bottom:691.720000pt;}
.y9{bottom:692.986667pt;}
.y15e{bottom:693.946667pt;}
.y88{bottom:699.386667pt;}
.y174{bottom:701.306667pt;}
.y19c{bottom:703.226667pt;}
.y1c5{bottom:703.546667pt;}
.ya4{bottom:705.466667pt;}
.y149{bottom:707.386667pt;}
.ydb{bottom:709.946667pt;}
.y56{bottom:716.386667pt;}
.y3d{bottom:716.706667pt;}
.y22{bottom:717.026667pt;}
.ybb{bottom:718.306667pt;}
.yec{bottom:720.866667pt;}
.y1af{bottom:722.466667pt;}
.y73{bottom:726.946667pt;}
.y173{bottom:728.866667pt;}
.y19b{bottom:730.786667pt;}
.y1c4{bottom:731.106667pt;}
.y15d{bottom:732.386667pt;}
.y100{bottom:733.346667pt;}
.y8{bottom:733.666667pt;}
.y148{bottom:734.946667pt;}
.yda{bottom:737.506667pt;}
.y21{bottom:743.266667pt;}
.y55{bottom:743.906667pt;}
.yeb{bottom:748.386667pt;}
.y72{bottom:754.466667pt;}
.y3c{bottom:755.106667pt;}
.yba{bottom:756.386667pt;}
.y19a{bottom:758.306667pt;}
.y1c3{bottom:758.626667pt;}
.y15c{bottom:759.906667pt;}
.yff{bottom:760.866667pt;}
.y147{bottom:762.466667pt;}
.yd9{bottom:765.346667pt;}
.y172{bottom:768.866667pt;}
.y20{bottom:769.826667pt;}
.y54{bottom:771.426667pt;}
.y7{bottom:776.226667pt;}
.y71{bottom:782.306667pt;}
.y199{bottom:785.826667pt;}
.yea{bottom:787.106667pt;}
.yfe{bottom:788.386667pt;}
.y3b{bottom:789.346667pt;}
.yd8{bottom:792.866667pt;}
.yb9{bottom:794.786667pt;}
.y1f{bottom:796.386667pt;}
.y1c2{bottom:797.986667pt;}
.y15b{bottom:798.626667pt;}
.y53{bottom:798.946667pt;}
.y146{bottom:804.066667pt;}
.y87{bottom:809.826667pt;}
.y198{bottom:813.666667pt;}
.yfd{bottom:815.906667pt;}
.y6{bottom:819.106667pt;}
.y70{bottom:820.386667pt;}
.y3a{bottom:823.586667pt;}
.y171{bottom:823.906667pt;}
.y1c1{bottom:825.186667pt;}
.ye9{bottom:826.146667pt;}
.y52{bottom:826.786667pt;}
.yb8{bottom:832.893333pt;}
.y1e{bottom:833.533333pt;}
.y1ae{bottom:837.373333pt;}
.y197{bottom:841.213333pt;}
.yfc{bottom:843.773333pt;}
.y145{bottom:845.373333pt;}
.y6f{bottom:847.933333pt;}
.ye8{bottom:853.693333pt;}
.ycc{bottom:854.013333pt;}
.ya3{bottom:854.333333pt;}
.y39{bottom:857.853333pt;}
.y1d{bottom:859.773333pt;}
.y129{bottom:861.680000pt;}
.y126{bottom:861.693333pt;}
.y5{bottom:862.013333pt;}
.y170{bottom:863.933333pt;}
.y15a{bottom:864.573333pt;}
.y51{bottom:864.893333pt;}
.y196{bottom:868.733333pt;}
.yb7{bottom:871.293333pt;}
.y144{bottom:873.213333pt;}
.y6e{bottom:875.773333pt;}
.ye7{bottom:881.213333pt;}
.ycb{bottom:881.853333pt;}
.y1c{bottom:886.333333pt;}
.y16f{bottom:891.133333pt;}
.y1c0{bottom:891.773333pt;}
.y38{bottom:892.093333pt;}
.y50{bottom:892.413333pt;}
.y6d{bottom:903.293333pt;}
.y4{bottom:905.213333pt;}
.y195{bottom:907.773333pt;}
.yb6{bottom:909.373333pt;}
.y16e{bottom:918.653333pt;}
.y4f{bottom:920.253333pt;}
.y1b{bottom:923.453333pt;}
.y37{bottom:926.333333pt;}
.y6c{bottom:930.813333pt;}
.y1bf{bottom:931.133333pt;}
.y194{bottom:935.613333pt;}
.y4e{bottom:947.813333pt;}
.y3{bottom:949.733333pt;}
.y1a{bottom:950.053333pt;}
.y36{bottom:954.213333pt;}
.y6b{bottom:958.373333pt;}
.y16d{bottom:958.693333pt;}
.y193{bottom:974.693333pt;}
.y4d{bottom:975.333333pt;}
.y19{bottom:976.293333pt;}
.yd7{bottom:985.893333pt;}
.y6a{bottom:986.213333pt;}
.y18{bottom:1013.413333pt;}
.y69{bottom:1013.733333pt;}
.h2{height:44.648750pt;}
.hf{height:56.843750pt;}
.hc{height:57.375000pt;}
.h8{height:60.300000pt;}
.h9{height:61.920000pt;}
.hd{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:65.781915pt;}
.hb{height:66.625000pt;}
.h4{height:72.862500pt;}
.h5{height:74.820000pt;}
.h3{height:118.680000pt;}
.h13{height:165.786667pt;}
.h14{height:165.800000pt;}
.he{height:193.320000pt;}
.h12{height:220.840000pt;}
.h10{height:358.813333pt;}
.h11{height:358.840000pt;}
.h15{height:386.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:143.400000pt;}
.w3{width:143.426667pt;}
.w4{width:143.440000pt;}
.w5{width:143.720000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:6.712000pt;}
.x18{left:109.160000pt;}
.x2{left:113.312000pt;}
.x8{left:116.192000pt;}
.x1c{left:117.472000pt;}
.xf{left:137.346667pt;}
.x15{left:141.506667pt;}
.x11{left:143.746667pt;}
.x12{left:151.106667pt;}
.x10{left:152.066667pt;}
.xd{left:160.386667pt;}
.x13{left:161.346667pt;}
.x7{left:184.386667pt;}
.x16{left:185.346667pt;}
.x17{left:209.373333pt;}
.x6{left:210.973333pt;}
.x1a{left:253.213333pt;}
.xa{left:258.013333pt;}
.xb{left:259.933333pt;}
.x5{left:266.013333pt;}
.xc{left:283.653333pt;}
.x9{left:309.573333pt;}
.x3{left:353.413333pt;}
.xe{left:367.840000pt;}
.x4{left:396.960000pt;}
.x1b{left:541.360000pt;}
.x14{left:665.853333pt;}
.x1{left:673.213333pt;}
}




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