
    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_470f9ac45376feaecd16af44.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_c9b5183d3a77b9e1f1d7a740.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_4c62e675b278056f247738a4.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_4e9dd88b6bab68fe65223805.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_e0f571d4a829cdfd074850ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fd2c6009728b7537b6d14c4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.256200px;}
.lse{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.880000px;}
.ls1{letter-spacing:38.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws9{word-spacing:-66.496200px;}
.ws1{word-spacing:-66.240000px;}
.ws3{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wse{word-spacing:-17.280000px;}
.ws11{word-spacing:-16.669200px;}
.ws12{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.226440px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-15.020880px;}
._3{margin-left:-12.228000px;}
._6{margin-left:-8.268000px;}
._5{margin-left:-7.028880px;}
._7{margin-left:-4.416000px;}
._4{margin-left:-2.688000px;}
._1{margin-left:-1.095120px;}
._0{width:1.244880px;}
._2{width:2.644320px;}
._1a{width:4.267680px;}
._b{width:5.328000px;}
._c{width:6.330240px;}
._9{width:7.488000px;}
._a{width:8.649360px;}
._12{width:10.070640px;}
._14{width:11.097360px;}
._13{width:12.319200px;}
._10{width:13.479120px;}
._11{width:14.600880px;}
._21{width:15.630240px;}
._f{width:16.920000px;}
._1e{width:19.056000px;}
._1f{width:20.103120px;}
._15{width:21.168000px;}
._16{width:22.188480px;}
._29{width:23.194080px;}
._19{width:24.264000px;}
._25{width:25.632000px;}
._26{width:26.856000px;}
._1c{width:27.912000px;}
._1d{width:29.352000px;}
._1b{width:30.888000px;}
._22{width:32.328000px;}
._23{width:33.768000px;}
._24{width:34.860000px;}
._20{width:36.387840px;}
._18{width:37.584000px;}
._17{width:38.639280px;}
._d{width:39.888000px;}
._e{width:41.040000px;}
._2e{width:42.264000px;}
._2d{width:43.359120px;}
._2a{width:44.568000px;}
._2b{width:45.699120px;}
._31{width:47.168880px;}
._2f{width:53.280000px;}
._30{width:54.504000px;}
._27{width:58.785840px;}
._28{width:60.188400px;}
._32{width:63.504000px;}
._33{width:64.920000px;}
._35{width:113.016000px;}
._34{width:146.136000px;}
._2c{width:1263.626880px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:4.500000px;}
.y1a{bottom:4.680000px;}
.y1c{bottom:24.660000px;}
.y18{bottom:57.636000px;}
.y17{bottom:77.796000px;}
.y5e{bottom:112.356000px;}
.y15a{bottom:113.436000px;}
.y3a{bottom:115.596000px;}
.y200{bottom:117.036000px;}
.y186{bottom:118.656000px;}
.y15{bottom:118.836000px;}
.yd8{bottom:119.376000px;}
.y181{bottom:121.896000px;}
.y1db{bottom:122.616000px;}
.yf5{bottom:123.876000px;}
.y138{bottom:128.556000px;}
.y201{bottom:128.916000px;}
.y146{bottom:129.096000px;}
.y190{bottom:130.536000px;}
.y7c{bottom:133.596000px;}
.y152{bottom:136.476000px;}
.y119{bottom:138.816000px;}
.y4c{bottom:138.996000px;}
.yc8{bottom:139.356000px;}
.y43{bottom:140.076000px;}
.y5d{bottom:143.496000px;}
.y159{bottom:144.576000px;}
.y1ff{bottom:145.476000px;}
.y171{bottom:147.636000px;}
.y1b9{bottom:147.816000px;}
.y1da{bottom:151.050000px;}
.y8e{bottom:155.550000px;}
.ybe{bottom:155.910000px;}
.y12c{bottom:159.510000px;}
.y39{bottom:161.670000px;}
.y14{bottom:164.730000px;}
.yd7{bottom:165.450000px;}
.yf4{bottom:169.950000px;}
.yc7{bottom:170.310000px;}
.y180{bottom:171.030000px;}
.y1fe{bottom:173.910000px;}
.y5c{bottom:174.450000px;}
.y18f{bottom:176.610000px;}
.y170{bottom:178.590000px;}
.y1d9{bottom:179.490000px;}
.y135{bottom:179.670000px;}
.y145{bottom:180.390000px;}
.y151{bottom:182.550000px;}
.y118{bottom:184.890000px;}
.y4b{bottom:185.070000px;}
.yaa{bottom:185.430000px;}
.y42{bottom:186.150000px;}
.y10c{bottom:186.510000px;}
.y1ab{bottom:188.670000px;}
.y12b{bottom:190.650000px;}
.y1b8{bottom:193.710000px;}
.y7b{bottom:195.690000px;}
.yc6{bottom:201.450000px;}
.y8d{bottom:201.630000px;}
.ybd{bottom:201.990000px;}
.y1fd{bottom:202.350000px;}
.y5b{bottom:205.590000px;}
.y38{bottom:207.750000px;}
.y1d8{bottom:208.110000px;}
.y16f{bottom:209.730000px;}
.y185{bottom:210.810000px;}
.yd6{bottom:211.710000px;}
.y13{bottom:213.330000px;}
.yf3{bottom:216.030000px;}
.ya9{bottom:216.390000px;}
.y17f{bottom:217.110000px;}
.y10b{bottom:217.470000px;}
.y1aa{bottom:219.810000px;}
.y12a{bottom:221.610000px;}
.y18e{bottom:222.690000px;}
.y134{bottom:225.750000px;}
.y7a{bottom:226.830000px;}
.y150{bottom:228.450000px;}
.y1fc{bottom:230.790000px;}
.y117{bottom:230.970000px;}
.y4a{bottom:231.510000px;}
.y41{bottom:232.410000px;}
.y5a{bottom:236.550000px;}
.y1b7{bottom:239.790000px;}
.y16e{bottom:240.690000px;}
.ya8{bottom:247.530000px;}
.y8c{bottom:247.710000px;}
.ybc{bottom:248.070000px;}
.y10a{bottom:248.610000px;}
.y1a9{bottom:250.770000px;}
.y129{bottom:252.750000px;}
.y37{bottom:253.650000px;}
.y133{bottom:256.710000px;}
.yd5{bottom:257.790000px;}
.y1fb{bottom:259.230000px;}
.yf2{bottom:262.110000px;}
.y17e{bottom:263.010000px;}
.y49{bottom:264.630000px;}
.y1d7{bottom:264.990000px;}
.y40{bottom:265.710000px;}
.y12{bottom:266.430000px;}
.y59{bottom:267.690000px;}
.y18d{bottom:268.770000px;}
.y16d{bottom:271.830000px;}
.y79{bottom:272.955000px;}
.y14f{bottom:274.575000px;}
.y116{bottom:277.095000px;}
.ya7{bottom:278.535000px;}
.y1a8{bottom:281.955000px;}
.y144{bottom:282.855000px;}
.y128{bottom:283.755000px;}
.y1b6{bottom:285.915000px;}
.y1fa{bottom:287.715000px;}
.y132{bottom:287.895000px;}
.y1d6{bottom:293.475000px;}
.y8b{bottom:293.835000px;}
.ybb{bottom:294.195000px;}
.y109{bottom:294.555000px;}
.y58{bottom:298.695000px;}
.y36{bottom:299.775000px;}
.y16c{bottom:302.835000px;}
.y78{bottom:303.915000px;}
.yf1{bottom:308.055000px;}
.y17d{bottom:309.135000px;}
.yc5{bottom:309.675000px;}
.y1a7{bottom:312.915000px;}
.y48{bottom:313.815000px;}
.y3f{bottom:314.535000px;}
.y127{bottom:314.895000px;}
.y1f9{bottom:316.155000px;}
.y11{bottom:318.495000px;}
.y131{bottom:318.855000px;}
.y14e{bottom:320.655000px;}
.y1d5{bottom:321.915000px;}
.y115{bottom:323.175000px;}
.ya6{bottom:324.615000px;}
.y108{bottom:325.695000px;}
.ye7{bottom:329.835000px;}
.y18c{bottom:330.915000px;}
.y1b5{bottom:331.995000px;}
.y143{bottom:333.975000px;}
.y77{bottom:335.055000px;}
.y8a{bottom:339.915000px;}
.yba{bottom:340.275000px;}
.yc4{bottom:340.635000px;}
.y1a6{bottom:344.055000px;}
.y1f8{bottom:344.595000px;}
.y57{bottom:344.775000px;}
.y35{bottom:345.855000px;}
.yd4{bottom:349.995000px;}
.y1d4{bottom:350.355000px;}
.yf0{bottom:354.135000px;}
.y17c{bottom:355.215000px;}
.ya5{bottom:355.755000px;}
.y47{bottom:359.895000px;}
.y3e{bottom:360.435000px;}
.ye6{bottom:360.795000px;}
.y18b{bottom:361.875000px;}
.y10{bottom:364.575000px;}
.y16b{bottom:364.935000px;}
.y76{bottom:366.015000px;}
.y14d{bottom:367.095000px;}
.y114{bottom:369.255000px;}
.yc3{bottom:371.775000px;}
.y1f7{bottom:373.215000px;}
.y1a5{bottom:375.015000px;}
.y56{bottom:375.915000px;}
.y126{bottom:376.815000px;}
.y1b4{bottom:378.075000px;}
.y1d3{bottom:378.795000px;}
.y130{bottom:380.955000px;}
.y142{bottom:383.115000px;}
.y89{bottom:385.995000px;}
.yb9{bottom:386.355000px;}
.ya4{bottom:386.715000px;}
.y34{bottom:391.935000px;}
.y18a{bottom:393.015000px;}
.yd3{bottom:396.075000px;}
.y75{bottom:397.155000px;}
.yef{bottom:400.215000px;}
.y17b{bottom:401.295000px;}
.y1f6{bottom:401.655000px;}
.y107{bottom:402.735000px;}
.y46{bottom:405.795000px;}
.y1a4{bottom:406.155000px;}
.y3d{bottom:406.515000px;}
.y55{bottom:406.875000px;}
.y1d2{bottom:407.235000px;}
.y125{bottom:407.955000px;}
.y16a{bottom:411.015000px;}
.y12f{bottom:412.095000px;}
.y14c{bottom:413.175000px;}
.y113{bottom:415.155000px;}
.yf{bottom:415.515000px;}
.ya3{bottom:417.855000px;}
.y14a{bottom:422.895000px;}
.y1b3{bottom:424.155000px;}
.yd2{bottom:427.035000px;}
.y184{bottom:428.115000px;}
.y141{bottom:429.195000px;}
.y1f5{bottom:430.095000px;}
.y88{bottom:431.895000px;}
.yb8{bottom:432.255000px;}
.y106{bottom:433.875000px;}
.y1d1{bottom:435.675000px;}
.y45{bottom:436.935000px;}
.y1a3{bottom:437.115000px;}
.y33{bottom:438.015000px;}
.y124{bottom:438.915000px;}
.y169{bottom:442.155000px;}
.y74{bottom:443.055000px;}
.yee{bottom:446.295000px;}
.y17a{bottom:447.375000px;}
.ya2{bottom:448.815000px;}
.y3c{bottom:452.595000px;}
.y149{bottom:454.035000px;}
.yd1{bottom:458.175000px;}
.y1f4{bottom:458.535000px;}
.y14b{bottom:459.255000px;}
.y112{bottom:461.235000px;}
.y1d0{bottom:464.295000px;}
.y105{bottom:464.835000px;}
.y44{bottom:467.895000px;}
.y1a2{bottom:468.255000px;}
.y54{bottom:468.975000px;}
.y123{bottom:470.055000px;}
.y168{bottom:473.115000px;}
.y73{bottom:474.195000px;}
.y140{bottom:475.275000px;}
.ye{bottom:476.175000px;}
.y87{bottom:477.975000px;}
.yb7{bottom:478.335000px;}
.ya1{bottom:479.955000px;}
.y32{bottom:483.915000px;}
.y148{bottom:484.995000px;}
.y1f3{bottom:486.975000px;}
.yd0{bottom:489.135000px;}
.yed{bottom:492.375000px;}
.y1cf{bottom:492.735000px;}
.y179{bottom:493.275000px;}
.y104{bottom:495.975000px;}
.y3b{bottom:499.035000px;}
.y1a1{bottom:499.215000px;}
.y53{bottom:500.115000px;}
.y122{bottom:501.015000px;}
.y1b2{bottom:501.195000px;}
.y167{bottom:504.255000px;}
.y72{bottom:505.155000px;}
.y111{bottom:507.315000px;}
.ya0{bottom:510.915000px;}
.y1f2{bottom:515.415000px;}
.y158{bottom:516.135000px;}
.ycf{bottom:520.275000px;}
.y1ce{bottom:521.175000px;}
.y13f{bottom:521.355000px;}
.y86{bottom:524.055000px;}
.yb6{bottom:524.415000px;}
.y103{bottom:526.935000px;}
.y31{bottom:529.995000px;}
.y1a0{bottom:530.175000px;}
.ye5{bottom:531.075000px;}
.y121{bottom:532.155000px;}
.y166{bottom:535.215000px;}
.y71{bottom:536.295000px;}
.yec{bottom:538.275000px;}
.y178{bottom:539.355000px;}
.y9f{bottom:542.055000px;}
.yd{bottom:542.955000px;}
.y1f1{bottom:543.855000px;}
.y52{bottom:546.015000px;}
.y157{bottom:547.095000px;}
.y1cd{bottom:549.615000px;}
.yce{bottom:551.235000px;}
.y13e{bottom:552.315000px;}
.y110{bottom:553.395000px;}
.y102{bottom:558.105000px;}
.y30{bottom:561.165000px;}
.ye4{bottom:562.245000px;}
.y120{bottom:563.145000px;}
.y1b1{bottom:563.325000px;}
.y165{bottom:566.385000px;}
.y70{bottom:567.285000px;}
.y85{bottom:570.165000px;}
.yb5{bottom:570.525000px;}
.y1f0{bottom:572.325000px;}
.yc2{bottom:573.045000px;}
.y51{bottom:577.185000px;}
.y1cc{bottom:578.085000px;}
.y156{bottom:578.265000px;}
.y19f{bottom:579.345000px;}
.ycd{bottom:582.405000px;}
.y13d{bottom:583.305000px;}
.yeb{bottom:584.385000px;}
.y177{bottom:585.465000px;}
.y9e{bottom:587.985000px;}
.y2f{bottom:592.125000px;}
.ye3{bottom:593.205000px;}
.y11f{bottom:594.285000px;}
.yc{bottom:594.645000px;}
.y164{bottom:597.345000px;}
.y183{bottom:598.425000px;}
.y10f{bottom:599.505000px;}
.y1ef{bottom:600.765000px;}
.y101{bottom:604.005000px;}
.y1cb{bottom:606.525000px;}
.y50{bottom:608.145000px;}
.y155{bottom:609.225000px;}
.y19e{bottom:610.305000px;}
.y6f{bottom:613.365000px;}
.y13c{bottom:614.445000px;}
.y84{bottom:616.245000px;}
.yb4{bottom:616.605000px;}
.y9d{bottom:619.125000px;}
.y2e{bottom:623.265000px;}
.y137{bottom:624.345000px;}
.y189{bottom:625.245000px;}
.y1b0{bottom:625.425000px;}
.y163{bottom:628.305000px;}
.y1ee{bottom:629.385000px;}
.yea{bottom:630.465000px;}
.y176{bottom:631.545000px;}
.y1ca{bottom:634.965000px;}
.y100{bottom:635.145000px;}
.y4f{bottom:639.285000px;}
.y11e{bottom:640.365000px;}
.y19d{bottom:641.445000px;}
.y6e{bottom:644.505000px;}
.y10e{bottom:645.405000px;}
.yb{bottom:646.485000px;}
.y9c{bottom:650.085000px;}
.y2d{bottom:654.225000px;}
.y136{bottom:655.305000px;}
.y1af{bottom:656.385000px;}
.y1ed{bottom:657.825000px;}
.y162{bottom:659.445000px;}
.y13b{bottom:660.525000px;}
.y83{bottom:662.145000px;}
.yb3{bottom:662.505000px;}
.y1c9{bottom:663.405000px;}
.yff{bottom:666.105000px;}
.y4e{bottom:670.245000px;}
.y11d{bottom:671.325000px;}
.y19c{bottom:672.405000px;}
.y6d{bottom:675.465000px;}
.ye9{bottom:676.545000px;}
.y175{bottom:677.625000px;}
.y9b{bottom:681.225000px;}
.y2c{bottom:685.365000px;}
.y1ec{bottom:686.265000px;}
.y147{bottom:686.445000px;}
.y1ae{bottom:687.525000px;}
.ycc{bottom:690.405000px;}
.y10d{bottom:691.485000px;}
.y1c8{bottom:691.845000px;}
.yfe{bottom:697.245000px;}
.y4d{bottom:701.385000px;}
.y188{bottom:702.465000px;}
.ya{bottom:704.085000px;}
.y161{bottom:705.525000px;}
.y6c{bottom:706.605000px;}
.y82{bottom:708.225000px;}
.yb2{bottom:708.585000px;}
.y9a{bottom:712.185000px;}
.y1eb{bottom:714.705000px;}
.y2b{bottom:716.325000px;}
.y11c{bottom:717.405000px;}
.y19b{bottom:718.485000px;}
.y1c7{bottom:720.465000px;}
.ycb{bottom:721.545000px;}
.ye8{bottom:722.625000px;}
.y174{bottom:723.705000px;}
.yfd{bottom:728.205000px;}
.ye2{bottom:732.345000px;}
.y187{bottom:733.425000px;}
.y160{bottom:736.485000px;}
.y6b{bottom:737.565000px;}
.y1ea{bottom:743.145000px;}
.y2a{bottom:747.465000px;}
.y11b{bottom:748.365000px;}
.y1c6{bottom:748.905000px;}
.y1ad{bottom:749.445000px;}
.y19a{bottom:749.625000px;}
.y9{bottom:752.505000px;}
.y81{bottom:754.305000px;}
.yb1{bottom:754.665000px;}
.y99{bottom:758.265000px;}
.ye1{bottom:763.485000px;}
.y15f{bottom:767.625000px;}
.y6a{bottom:768.705000px;}
.y173{bottom:769.605000px;}
.y1e9{bottom:771.585000px;}
.yfc{bottom:774.285000px;}
.y1c5{bottom:777.345000px;}
.y29{bottom:778.425000px;}
.y11a{bottom:779.505000px;}
.y199{bottom:780.585000px;}
.yca{bottom:783.645000px;}
.y98{bottom:789.405000px;}
.ye0{bottom:794.445000px;}
.y15e{bottom:798.585000px;}
.y69{bottom:799.665000px;}
.y1e8{bottom:800.025000px;}
.y80{bottom:800.385000px;}
.yb0{bottom:800.745000px;}
.y8{bottom:803.805000px;}
.yfb{bottom:805.425000px;}
.y1c4{bottom:805.785000px;}
.y28{bottom:809.565000px;}
.y154{bottom:810.465000px;}
.y198{bottom:811.725000px;}
.yc9{bottom:814.605000px;}
.y172{bottom:815.685000px;}
.y97{bottom:820.365000px;}
.ydf{bottom:825.585000px;}
.y1e7{bottom:828.465000px;}
.y15d{bottom:829.725000px;}
.y13a{bottom:830.805000px;}
.y1c3{bottom:834.225000px;}
.yfa{bottom:836.385000px;}
.y27{bottom:840.570000px;}
.y153{bottom:841.650000px;}
.y197{bottom:842.730000px;}
.y68{bottom:845.790000px;}
.y7f{bottom:846.510000px;}
.yaf{bottom:846.870000px;}
.y96{bottom:851.550000px;}
.y7{bottom:854.970000px;}
.yde{bottom:856.590000px;}
.y1e6{bottom:856.950000px;}
.y15c{bottom:860.730000px;}
.y139{bottom:861.810000px;}
.y1c2{bottom:862.710000px;}
.yc1{bottom:866.490000px;}
.yf9{bottom:867.570000px;}
.y26{bottom:871.710000px;}
.y196{bottom:873.870000px;}
.y67{bottom:876.750000px;}
.y95{bottom:882.510000px;}
.y1e5{bottom:885.570000px;}
.ydd{bottom:887.730000px;}
.y1c1{bottom:891.150000px;}
.y15b{bottom:891.870000px;}
.y7e{bottom:892.590000px;}
.yae{bottom:892.950000px;}
.yc0{bottom:897.450000px;}
.yf8{bottom:898.530000px;}
.y25{bottom:902.670000px;}
.y195{bottom:904.830000px;}
.y66{bottom:907.890000px;}
.y6{bottom:908.250000px;}
.y94{bottom:913.650000px;}
.y1e4{bottom:914.010000px;}
.ydc{bottom:918.690000px;}
.y1c0{bottom:919.590000px;}
.y12e{bottom:922.830000px;}
.ybf{bottom:928.590000px;}
.y24{bottom:933.810000px;}
.y194{bottom:935.970000px;}
.y65{bottom:938.850000px;}
.y1e3{bottom:942.450000px;}
.yf7{bottom:944.610000px;}
.y1bf{bottom:948.030000px;}
.ydb{bottom:949.830000px;}
.y12d{bottom:953.970000px;}
.y93{bottom:959.550000px;}
.y5{bottom:960.090000px;}
.y23{bottom:964.770000px;}
.y193{bottom:966.930000px;}
.y64{bottom:969.990000px;}
.y1e2{bottom:970.890000px;}
.yf6{bottom:975.570000px;}
.y1be{bottom:976.650000px;}
.yda{bottom:980.790000px;}
.yad{bottom:984.930000px;}
.y92{bottom:990.690000px;}
.y22{bottom:995.910000px;}
.y192{bottom:998.070000px;}
.y1e1{bottom:999.330000px;}
.y63{bottom:1000.950000px;}
.y1bd{bottom:1005.090000px;}
.y4{bottom:1005.270000px;}
.yd9{bottom:1011.930000px;}
.yac{bottom:1016.070000px;}
.y91{bottom:1021.650000px;}
.y21{bottom:1026.870000px;}
.y1e0{bottom:1027.770000px;}
.y191{bottom:1029.030000px;}
.y62{bottom:1032.090000px;}
.y1bc{bottom:1033.530000px;}
.yab{bottom:1047.030000px;}
.y3{bottom:1050.450000px;}
.y90{bottom:1052.790000px;}
.y1df{bottom:1056.210000px;}
.y20{bottom:1058.010000px;}
.y1bb{bottom:1061.970000px;}
.y7d{bottom:1063.050000px;}
.y61{bottom:1078.170000px;}
.y1de{bottom:1084.650000px;}
.y1f{bottom:1088.970000px;}
.y1ba{bottom:1090.410000px;}
.y2{bottom:1095.630000px;}
.y8f{bottom:1100.850000px;}
.y60{bottom:1109.130000px;}
.y1dd{bottom:1113.090000px;}
.y182{bottom:1137.060000px;}
.y1e{bottom:1137.240000px;}
.y1ac{bottom:1140.120000px;}
.y5f{bottom:1140.300000px;}
.y1{bottom:1141.020000px;}
.y1dc{bottom:1141.740000px;}
.y1b{bottom:1189.800000px;}
.y16{bottom:1194.300000px;}
.y19{bottom:1199.700000px;}
.h8{height:20.160000px;}
.h9{height:40.140000px;}
.h2{height:45.345937px;}
.hc{height:65.010937px;}
.h5{height:70.664062px;}
.hb{height:72.562500px;}
.h4{height:82.676953px;}
.ha{height:84.898125px;}
.h7{height:93.983203px;}
.h3{height:96.508125px;}
.h6{height:121.179375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:127.474125px;}
.w3{width:637.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:10.789500px;}
.x12{left:100.114125px;}
.xe{left:108.574125px;}
.x2{left:127.656000px;}
.x8{left:133.236000px;}
.x10{left:144.216000px;}
.x7{left:154.470000px;}
.xb{left:219.090000px;}
.x4{left:242.130000px;}
.xa{left:273.450000px;}
.x3{left:290.190000px;}
.xc{left:322.455000px;}
.x9{left:324.075000px;}
.x5{left:354.315000px;}
.x6{left:446.475000px;}
.x1{left:488.415000px;}
.x11{left:748.770000px;}
.xd{left:757.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls11{letter-spacing:2.560000pt;}
.ls1{letter-spacing:33.920000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws9{word-spacing:-59.107733pt;}
.ws1{word-spacing:-58.880000pt;}
.ws3{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.360000pt;}
.ws11{word-spacing:-14.817067pt;}
.ws12{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-13.351893pt;}
._3{margin-left:-10.869333pt;}
._6{margin-left:-7.349333pt;}
._5{margin-left:-6.247893pt;}
._7{margin-left:-3.925333pt;}
._4{margin-left:-2.389333pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.106560pt;}
._2{width:2.350507pt;}
._1a{width:3.793493pt;}
._b{width:4.736000pt;}
._c{width:5.626880pt;}
._9{width:6.656000pt;}
._a{width:7.688320pt;}
._12{width:8.951680pt;}
._14{width:9.864320pt;}
._13{width:10.950400pt;}
._10{width:11.981440pt;}
._11{width:12.978560pt;}
._21{width:13.893547pt;}
._f{width:15.040000pt;}
._1e{width:16.938667pt;}
._1f{width:17.869440pt;}
._15{width:18.816000pt;}
._16{width:19.723093pt;}
._29{width:20.616960pt;}
._19{width:21.568000pt;}
._25{width:22.784000pt;}
._26{width:23.872000pt;}
._1c{width:24.810667pt;}
._1d{width:26.090667pt;}
._1b{width:27.456000pt;}
._22{width:28.736000pt;}
._23{width:30.016000pt;}
._24{width:30.986667pt;}
._20{width:32.344747pt;}
._18{width:33.408000pt;}
._17{width:34.346027pt;}
._d{width:35.456000pt;}
._e{width:36.480000pt;}
._2e{width:37.568000pt;}
._2d{width:38.541440pt;}
._2a{width:39.616000pt;}
._2b{width:40.621440pt;}
._31{width:41.927893pt;}
._2f{width:47.360000pt;}
._30{width:48.448000pt;}
._27{width:52.254080pt;}
._28{width:53.500800pt;}
._32{width:56.448000pt;}
._33{width:57.706667pt;}
._35{width:100.458667pt;}
._34{width:129.898667pt;}
._2c{width:1123.223893pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:4.000000pt;}
.y1a{bottom:4.160000pt;}
.y1c{bottom:21.920000pt;}
.y18{bottom:51.232000pt;}
.y17{bottom:69.152000pt;}
.y5e{bottom:99.872000pt;}
.y15a{bottom:100.832000pt;}
.y3a{bottom:102.752000pt;}
.y200{bottom:104.032000pt;}
.y186{bottom:105.472000pt;}
.y15{bottom:105.632000pt;}
.yd8{bottom:106.112000pt;}
.y181{bottom:108.352000pt;}
.y1db{bottom:108.992000pt;}
.yf5{bottom:110.112000pt;}
.y138{bottom:114.272000pt;}
.y201{bottom:114.592000pt;}
.y146{bottom:114.752000pt;}
.y190{bottom:116.032000pt;}
.y7c{bottom:118.752000pt;}
.y152{bottom:121.312000pt;}
.y119{bottom:123.392000pt;}
.y4c{bottom:123.552000pt;}
.yc8{bottom:123.872000pt;}
.y43{bottom:124.512000pt;}
.y5d{bottom:127.552000pt;}
.y159{bottom:128.512000pt;}
.y1ff{bottom:129.312000pt;}
.y171{bottom:131.232000pt;}
.y1b9{bottom:131.392000pt;}
.y1da{bottom:134.266667pt;}
.y8e{bottom:138.266667pt;}
.ybe{bottom:138.586667pt;}
.y12c{bottom:141.786667pt;}
.y39{bottom:143.706667pt;}
.y14{bottom:146.426667pt;}
.yd7{bottom:147.066667pt;}
.yf4{bottom:151.066667pt;}
.yc7{bottom:151.386667pt;}
.y180{bottom:152.026667pt;}
.y1fe{bottom:154.586667pt;}
.y5c{bottom:155.066667pt;}
.y18f{bottom:156.986667pt;}
.y170{bottom:158.746667pt;}
.y1d9{bottom:159.546667pt;}
.y135{bottom:159.706667pt;}
.y145{bottom:160.346667pt;}
.y151{bottom:162.266667pt;}
.y118{bottom:164.346667pt;}
.y4b{bottom:164.506667pt;}
.yaa{bottom:164.826667pt;}
.y42{bottom:165.466667pt;}
.y10c{bottom:165.786667pt;}
.y1ab{bottom:167.706667pt;}
.y12b{bottom:169.466667pt;}
.y1b8{bottom:172.186667pt;}
.y7b{bottom:173.946667pt;}
.yc6{bottom:179.066667pt;}
.y8d{bottom:179.226667pt;}
.ybd{bottom:179.546667pt;}
.y1fd{bottom:179.866667pt;}
.y5b{bottom:182.746667pt;}
.y38{bottom:184.666667pt;}
.y1d8{bottom:184.986667pt;}
.y16f{bottom:186.426667pt;}
.y185{bottom:187.386667pt;}
.yd6{bottom:188.186667pt;}
.y13{bottom:189.626667pt;}
.yf3{bottom:192.026667pt;}
.ya9{bottom:192.346667pt;}
.y17f{bottom:192.986667pt;}
.y10b{bottom:193.306667pt;}
.y1aa{bottom:195.386667pt;}
.y12a{bottom:196.986667pt;}
.y18e{bottom:197.946667pt;}
.y134{bottom:200.666667pt;}
.y7a{bottom:201.626667pt;}
.y150{bottom:203.066667pt;}
.y1fc{bottom:205.146667pt;}
.y117{bottom:205.306667pt;}
.y4a{bottom:205.786667pt;}
.y41{bottom:206.586667pt;}
.y5a{bottom:210.266667pt;}
.y1b7{bottom:213.146667pt;}
.y16e{bottom:213.946667pt;}
.ya8{bottom:220.026667pt;}
.y8c{bottom:220.186667pt;}
.ybc{bottom:220.506667pt;}
.y10a{bottom:220.986667pt;}
.y1a9{bottom:222.906667pt;}
.y129{bottom:224.666667pt;}
.y37{bottom:225.466667pt;}
.y133{bottom:228.186667pt;}
.yd5{bottom:229.146667pt;}
.y1fb{bottom:230.426667pt;}
.yf2{bottom:232.986667pt;}
.y17e{bottom:233.786667pt;}
.y49{bottom:235.226667pt;}
.y1d7{bottom:235.546667pt;}
.y40{bottom:236.186667pt;}
.y12{bottom:236.826667pt;}
.y59{bottom:237.946667pt;}
.y18d{bottom:238.906667pt;}
.y16d{bottom:241.626667pt;}
.y79{bottom:242.626667pt;}
.y14f{bottom:244.066667pt;}
.y116{bottom:246.306667pt;}
.ya7{bottom:247.586667pt;}
.y1a8{bottom:250.626667pt;}
.y144{bottom:251.426667pt;}
.y128{bottom:252.226667pt;}
.y1b6{bottom:254.146667pt;}
.y1fa{bottom:255.746667pt;}
.y132{bottom:255.906667pt;}
.y1d6{bottom:260.866667pt;}
.y8b{bottom:261.186667pt;}
.ybb{bottom:261.506667pt;}
.y109{bottom:261.826667pt;}
.y58{bottom:265.506667pt;}
.y36{bottom:266.466667pt;}
.y16c{bottom:269.186667pt;}
.y78{bottom:270.146667pt;}
.yf1{bottom:273.826667pt;}
.y17d{bottom:274.786667pt;}
.yc5{bottom:275.266667pt;}
.y1a7{bottom:278.146667pt;}
.y48{bottom:278.946667pt;}
.y3f{bottom:279.586667pt;}
.y127{bottom:279.906667pt;}
.y1f9{bottom:281.026667pt;}
.y11{bottom:283.106667pt;}
.y131{bottom:283.426667pt;}
.y14e{bottom:285.026667pt;}
.y1d5{bottom:286.146667pt;}
.y115{bottom:287.266667pt;}
.ya6{bottom:288.546667pt;}
.y108{bottom:289.506667pt;}
.ye7{bottom:293.186667pt;}
.y18c{bottom:294.146667pt;}
.y1b5{bottom:295.106667pt;}
.y143{bottom:296.866667pt;}
.y77{bottom:297.826667pt;}
.y8a{bottom:302.146667pt;}
.yba{bottom:302.466667pt;}
.yc4{bottom:302.786667pt;}
.y1a6{bottom:305.826667pt;}
.y1f8{bottom:306.306667pt;}
.y57{bottom:306.466667pt;}
.y35{bottom:307.426667pt;}
.yd4{bottom:311.106667pt;}
.y1d4{bottom:311.426667pt;}
.yf0{bottom:314.786667pt;}
.y17c{bottom:315.746667pt;}
.ya5{bottom:316.226667pt;}
.y47{bottom:319.906667pt;}
.y3e{bottom:320.386667pt;}
.ye6{bottom:320.706667pt;}
.y18b{bottom:321.666667pt;}
.y10{bottom:324.066667pt;}
.y16b{bottom:324.386667pt;}
.y76{bottom:325.346667pt;}
.y14d{bottom:326.306667pt;}
.y114{bottom:328.226667pt;}
.yc3{bottom:330.466667pt;}
.y1f7{bottom:331.746667pt;}
.y1a5{bottom:333.346667pt;}
.y56{bottom:334.146667pt;}
.y126{bottom:334.946667pt;}
.y1b4{bottom:336.066667pt;}
.y1d3{bottom:336.706667pt;}
.y130{bottom:338.626667pt;}
.y142{bottom:340.546667pt;}
.y89{bottom:343.106667pt;}
.yb9{bottom:343.426667pt;}
.ya4{bottom:343.746667pt;}
.y34{bottom:348.386667pt;}
.y18a{bottom:349.346667pt;}
.yd3{bottom:352.066667pt;}
.y75{bottom:353.026667pt;}
.yef{bottom:355.746667pt;}
.y17b{bottom:356.706667pt;}
.y1f6{bottom:357.026667pt;}
.y107{bottom:357.986667pt;}
.y46{bottom:360.706667pt;}
.y1a4{bottom:361.026667pt;}
.y3d{bottom:361.346667pt;}
.y55{bottom:361.666667pt;}
.y1d2{bottom:361.986667pt;}
.y125{bottom:362.626667pt;}
.y16a{bottom:365.346667pt;}
.y12f{bottom:366.306667pt;}
.y14c{bottom:367.266667pt;}
.y113{bottom:369.026667pt;}
.yf{bottom:369.346667pt;}
.ya3{bottom:371.426667pt;}
.y14a{bottom:375.906667pt;}
.y1b3{bottom:377.026667pt;}
.yd2{bottom:379.586667pt;}
.y184{bottom:380.546667pt;}
.y141{bottom:381.506667pt;}
.y1f5{bottom:382.306667pt;}
.y88{bottom:383.906667pt;}
.yb8{bottom:384.226667pt;}
.y106{bottom:385.666667pt;}
.y1d1{bottom:387.266667pt;}
.y45{bottom:388.386667pt;}
.y1a3{bottom:388.546667pt;}
.y33{bottom:389.346667pt;}
.y124{bottom:390.146667pt;}
.y169{bottom:393.026667pt;}
.y74{bottom:393.826667pt;}
.yee{bottom:396.706667pt;}
.y17a{bottom:397.666667pt;}
.ya2{bottom:398.946667pt;}
.y3c{bottom:402.306667pt;}
.y149{bottom:403.586667pt;}
.yd1{bottom:407.266667pt;}
.y1f4{bottom:407.586667pt;}
.y14b{bottom:408.226667pt;}
.y112{bottom:409.986667pt;}
.y1d0{bottom:412.706667pt;}
.y105{bottom:413.186667pt;}
.y44{bottom:415.906667pt;}
.y1a2{bottom:416.226667pt;}
.y54{bottom:416.866667pt;}
.y123{bottom:417.826667pt;}
.y168{bottom:420.546667pt;}
.y73{bottom:421.506667pt;}
.y140{bottom:422.466667pt;}
.ye{bottom:423.266667pt;}
.y87{bottom:424.866667pt;}
.yb7{bottom:425.186667pt;}
.ya1{bottom:426.626667pt;}
.y32{bottom:430.146667pt;}
.y148{bottom:431.106667pt;}
.y1f3{bottom:432.866667pt;}
.yd0{bottom:434.786667pt;}
.yed{bottom:437.666667pt;}
.y1cf{bottom:437.986667pt;}
.y179{bottom:438.466667pt;}
.y104{bottom:440.866667pt;}
.y3b{bottom:443.586667pt;}
.y1a1{bottom:443.746667pt;}
.y53{bottom:444.546667pt;}
.y122{bottom:445.346667pt;}
.y1b2{bottom:445.506667pt;}
.y167{bottom:448.226667pt;}
.y72{bottom:449.026667pt;}
.y111{bottom:450.946667pt;}
.ya0{bottom:454.146667pt;}
.y1f2{bottom:458.146667pt;}
.y158{bottom:458.786667pt;}
.ycf{bottom:462.466667pt;}
.y1ce{bottom:463.266667pt;}
.y13f{bottom:463.426667pt;}
.y86{bottom:465.826667pt;}
.yb6{bottom:466.146667pt;}
.y103{bottom:468.386667pt;}
.y31{bottom:471.106667pt;}
.y1a0{bottom:471.266667pt;}
.ye5{bottom:472.066667pt;}
.y121{bottom:473.026667pt;}
.y166{bottom:475.746667pt;}
.y71{bottom:476.706667pt;}
.yec{bottom:478.466667pt;}
.y178{bottom:479.426667pt;}
.y9f{bottom:481.826667pt;}
.yd{bottom:482.626667pt;}
.y1f1{bottom:483.426667pt;}
.y52{bottom:485.346667pt;}
.y157{bottom:486.306667pt;}
.y1cd{bottom:488.546667pt;}
.yce{bottom:489.986667pt;}
.y13e{bottom:490.946667pt;}
.y110{bottom:491.906667pt;}
.y102{bottom:496.093333pt;}
.y30{bottom:498.813333pt;}
.ye4{bottom:499.773333pt;}
.y120{bottom:500.573333pt;}
.y1b1{bottom:500.733333pt;}
.y165{bottom:503.453333pt;}
.y70{bottom:504.253333pt;}
.y85{bottom:506.813333pt;}
.yb5{bottom:507.133333pt;}
.y1f0{bottom:508.733333pt;}
.yc2{bottom:509.373333pt;}
.y51{bottom:513.053333pt;}
.y1cc{bottom:513.853333pt;}
.y156{bottom:514.013333pt;}
.y19f{bottom:514.973333pt;}
.ycd{bottom:517.693333pt;}
.y13d{bottom:518.493333pt;}
.yeb{bottom:519.453333pt;}
.y177{bottom:520.413333pt;}
.y9e{bottom:522.653333pt;}
.y2f{bottom:526.333333pt;}
.ye3{bottom:527.293333pt;}
.y11f{bottom:528.253333pt;}
.yc{bottom:528.573333pt;}
.y164{bottom:530.973333pt;}
.y183{bottom:531.933333pt;}
.y10f{bottom:532.893333pt;}
.y1ef{bottom:534.013333pt;}
.y101{bottom:536.893333pt;}
.y1cb{bottom:539.133333pt;}
.y50{bottom:540.573333pt;}
.y155{bottom:541.533333pt;}
.y19e{bottom:542.493333pt;}
.y6f{bottom:545.213333pt;}
.y13c{bottom:546.173333pt;}
.y84{bottom:547.773333pt;}
.yb4{bottom:548.093333pt;}
.y9d{bottom:550.333333pt;}
.y2e{bottom:554.013333pt;}
.y137{bottom:554.973333pt;}
.y189{bottom:555.773333pt;}
.y1b0{bottom:555.933333pt;}
.y163{bottom:558.493333pt;}
.y1ee{bottom:559.453333pt;}
.yea{bottom:560.413333pt;}
.y176{bottom:561.373333pt;}
.y1ca{bottom:564.413333pt;}
.y100{bottom:564.573333pt;}
.y4f{bottom:568.253333pt;}
.y11e{bottom:569.213333pt;}
.y19d{bottom:570.173333pt;}
.y6e{bottom:572.893333pt;}
.y10e{bottom:573.693333pt;}
.yb{bottom:574.653333pt;}
.y9c{bottom:577.853333pt;}
.y2d{bottom:581.533333pt;}
.y136{bottom:582.493333pt;}
.y1af{bottom:583.453333pt;}
.y1ed{bottom:584.733333pt;}
.y162{bottom:586.173333pt;}
.y13b{bottom:587.133333pt;}
.y83{bottom:588.573333pt;}
.yb3{bottom:588.893333pt;}
.y1c9{bottom:589.693333pt;}
.yff{bottom:592.093333pt;}
.y4e{bottom:595.773333pt;}
.y11d{bottom:596.733333pt;}
.y19c{bottom:597.693333pt;}
.y6d{bottom:600.413333pt;}
.ye9{bottom:601.373333pt;}
.y175{bottom:602.333333pt;}
.y9b{bottom:605.533333pt;}
.y2c{bottom:609.213333pt;}
.y1ec{bottom:610.013333pt;}
.y147{bottom:610.173333pt;}
.y1ae{bottom:611.133333pt;}
.ycc{bottom:613.693333pt;}
.y10d{bottom:614.653333pt;}
.y1c8{bottom:614.973333pt;}
.yfe{bottom:619.773333pt;}
.y4d{bottom:623.453333pt;}
.y188{bottom:624.413333pt;}
.ya{bottom:625.853333pt;}
.y161{bottom:627.133333pt;}
.y6c{bottom:628.093333pt;}
.y82{bottom:629.533333pt;}
.yb2{bottom:629.853333pt;}
.y9a{bottom:633.053333pt;}
.y1eb{bottom:635.293333pt;}
.y2b{bottom:636.733333pt;}
.y11c{bottom:637.693333pt;}
.y19b{bottom:638.653333pt;}
.y1c7{bottom:640.413333pt;}
.ycb{bottom:641.373333pt;}
.ye8{bottom:642.333333pt;}
.y174{bottom:643.293333pt;}
.yfd{bottom:647.293333pt;}
.ye2{bottom:650.973333pt;}
.y187{bottom:651.933333pt;}
.y160{bottom:654.653333pt;}
.y6b{bottom:655.613333pt;}
.y1ea{bottom:660.573333pt;}
.y2a{bottom:664.413333pt;}
.y11b{bottom:665.213333pt;}
.y1c6{bottom:665.693333pt;}
.y1ad{bottom:666.173333pt;}
.y19a{bottom:666.333333pt;}
.y9{bottom:668.893333pt;}
.y81{bottom:670.493333pt;}
.yb1{bottom:670.813333pt;}
.y99{bottom:674.013333pt;}
.ye1{bottom:678.653333pt;}
.y15f{bottom:682.333333pt;}
.y6a{bottom:683.293333pt;}
.y173{bottom:684.093333pt;}
.y1e9{bottom:685.853333pt;}
.yfc{bottom:688.253333pt;}
.y1c5{bottom:690.973333pt;}
.y29{bottom:691.933333pt;}
.y11a{bottom:692.893333pt;}
.y199{bottom:693.853333pt;}
.yca{bottom:696.573333pt;}
.y98{bottom:701.693333pt;}
.ye0{bottom:706.173333pt;}
.y15e{bottom:709.853333pt;}
.y69{bottom:710.813333pt;}
.y1e8{bottom:711.133333pt;}
.y80{bottom:711.453333pt;}
.yb0{bottom:711.773333pt;}
.y8{bottom:714.493333pt;}
.yfb{bottom:715.933333pt;}
.y1c4{bottom:716.253333pt;}
.y28{bottom:719.613333pt;}
.y154{bottom:720.413333pt;}
.y198{bottom:721.533333pt;}
.yc9{bottom:724.093333pt;}
.y172{bottom:725.053333pt;}
.y97{bottom:729.213333pt;}
.ydf{bottom:733.853333pt;}
.y1e7{bottom:736.413333pt;}
.y15d{bottom:737.533333pt;}
.y13a{bottom:738.493333pt;}
.y1c3{bottom:741.533333pt;}
.yfa{bottom:743.453333pt;}
.y27{bottom:747.173333pt;}
.y153{bottom:748.133333pt;}
.y197{bottom:749.093333pt;}
.y68{bottom:751.813333pt;}
.y7f{bottom:752.453333pt;}
.yaf{bottom:752.773333pt;}
.y96{bottom:756.933333pt;}
.y7{bottom:759.973333pt;}
.yde{bottom:761.413333pt;}
.y1e6{bottom:761.733333pt;}
.y15c{bottom:765.093333pt;}
.y139{bottom:766.053333pt;}
.y1c2{bottom:766.853333pt;}
.yc1{bottom:770.213333pt;}
.yf9{bottom:771.173333pt;}
.y26{bottom:774.853333pt;}
.y196{bottom:776.773333pt;}
.y67{bottom:779.333333pt;}
.y95{bottom:784.453333pt;}
.y1e5{bottom:787.173333pt;}
.ydd{bottom:789.093333pt;}
.y1c1{bottom:792.133333pt;}
.y15b{bottom:792.773333pt;}
.y7e{bottom:793.413333pt;}
.yae{bottom:793.733333pt;}
.yc0{bottom:797.733333pt;}
.yf8{bottom:798.693333pt;}
.y25{bottom:802.373333pt;}
.y195{bottom:804.293333pt;}
.y66{bottom:807.013333pt;}
.y6{bottom:807.333333pt;}
.y94{bottom:812.133333pt;}
.y1e4{bottom:812.453333pt;}
.ydc{bottom:816.613333pt;}
.y1c0{bottom:817.413333pt;}
.y12e{bottom:820.293333pt;}
.ybf{bottom:825.413333pt;}
.y24{bottom:830.053333pt;}
.y194{bottom:831.973333pt;}
.y65{bottom:834.533333pt;}
.y1e3{bottom:837.733333pt;}
.yf7{bottom:839.653333pt;}
.y1bf{bottom:842.693333pt;}
.ydb{bottom:844.293333pt;}
.y12d{bottom:847.973333pt;}
.y93{bottom:852.933333pt;}
.y5{bottom:853.413333pt;}
.y23{bottom:857.573333pt;}
.y193{bottom:859.493333pt;}
.y64{bottom:862.213333pt;}
.y1e2{bottom:863.013333pt;}
.yf6{bottom:867.173333pt;}
.y1be{bottom:868.133333pt;}
.yda{bottom:871.813333pt;}
.yad{bottom:875.493333pt;}
.y92{bottom:880.613333pt;}
.y22{bottom:885.253333pt;}
.y192{bottom:887.173333pt;}
.y1e1{bottom:888.293333pt;}
.y63{bottom:889.733333pt;}
.y1bd{bottom:893.413333pt;}
.y4{bottom:893.573333pt;}
.yd9{bottom:899.493333pt;}
.yac{bottom:903.173333pt;}
.y91{bottom:908.133333pt;}
.y21{bottom:912.773333pt;}
.y1e0{bottom:913.573333pt;}
.y191{bottom:914.693333pt;}
.y62{bottom:917.413333pt;}
.y1bc{bottom:918.693333pt;}
.yab{bottom:930.693333pt;}
.y3{bottom:933.733333pt;}
.y90{bottom:935.813333pt;}
.y1df{bottom:938.853333pt;}
.y20{bottom:940.453333pt;}
.y1bb{bottom:943.973333pt;}
.y7d{bottom:944.933333pt;}
.y61{bottom:958.373333pt;}
.y1de{bottom:964.133333pt;}
.y1f{bottom:967.973333pt;}
.y1ba{bottom:969.253333pt;}
.y2{bottom:973.893333pt;}
.y8f{bottom:978.533333pt;}
.y60{bottom:985.893333pt;}
.y1dd{bottom:989.413333pt;}
.y182{bottom:1010.720000pt;}
.y1e{bottom:1010.880000pt;}
.y1ac{bottom:1013.440000pt;}
.y5f{bottom:1013.600000pt;}
.y1{bottom:1014.240000pt;}
.y1dc{bottom:1014.880000pt;}
.y1b{bottom:1057.600000pt;}
.y16{bottom:1061.600000pt;}
.y19{bottom:1066.400000pt;}
.h8{height:17.920000pt;}
.h9{height:35.680000pt;}
.h2{height:40.307500pt;}
.hc{height:57.787500pt;}
.h5{height:62.812500pt;}
.hb{height:64.500000pt;}
.h4{height:73.490625pt;}
.ha{height:75.465000pt;}
.h7{height:83.540625pt;}
.h3{height:85.785000pt;}
.h6{height:107.715000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.310333pt;}
.w3{width:566.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.590667pt;}
.x12{left:88.990333pt;}
.xe{left:96.510333pt;}
.x2{left:113.472000pt;}
.x8{left:118.432000pt;}
.x10{left:128.192000pt;}
.x7{left:137.306667pt;}
.xb{left:194.746667pt;}
.x4{left:215.226667pt;}
.xa{left:243.066667pt;}
.x3{left:257.946667pt;}
.xc{left:286.626667pt;}
.x9{left:288.066667pt;}
.x5{left:314.946667pt;}
.x6{left:396.866667pt;}
.x1{left:434.146667pt;}
.x11{left:665.573333pt;}
.xd{left:673.093333pt;}
}




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