
    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_6d5778c8b4dab7872676dd95.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.051000;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_1cb59a3a3394d2d20aa0dfb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_5f0618bca97d1d3819449bed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055000;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_084dd23604400548de88aa49.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051000;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_085e23d9043651252f5b397e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969727;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_dc54ec32f1179470136f8ea3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_fd53ae3a2cd34587a3e2245c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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_520a7b6f111ed9b350968e9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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_12cf959e709393d776aba26d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.834473;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_5bdf0cb1b426e1d2a16a1c25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_a54d4e2cf02c9b321a3e5a57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970703;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);}
.m2{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,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);}
.v2{vertical-align:-36.000000px;}
.v4{vertical-align:-24.600000px;}
.v3{vertical-align:-22.020000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.700000px;}
.v1{vertical-align:36.000000px;}
.ls1{letter-spacing:-2.172000px;}
.ls15{letter-spacing:-1.518000px;}
.ls14{letter-spacing:-1.230000px;}
.ls16{letter-spacing:-1.152000px;}
.ls9{letter-spacing:-0.642000px;}
.ls8{letter-spacing:-0.567000px;}
.ls6{letter-spacing:-0.195000px;}
.ls7{letter-spacing:-0.045000px;}
.lsd{letter-spacing:-0.027000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.059550px;}
.ls4{letter-spacing:0.750000px;}
.ls2{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.858900px;}
.ls18{letter-spacing:1.134000px;}
.lsf{letter-spacing:1.644000px;}
.ls17{letter-spacing:59.713650px;}
.lse{letter-spacing:70.891650px;}
.lsb{letter-spacing:78.802650px;}
.lsc{letter-spacing:78.934500px;}
.lsa{letter-spacing:86.863650px;}
.ls13{letter-spacing:110.446650px;}
.ls11{letter-spacing:110.566650px;}
.ls12{letter-spacing:110.578500px;}
.ls10{letter-spacing:110.698500px;}
.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;}
}
.ws1a{word-spacing:-216.300000px;}
.ws15{word-spacing:-77.299200px;}
.ws7{word-spacing:-53.426100px;}
.ws14{word-spacing:-45.645600px;}
.ws8{word-spacing:-41.548800px;}
.ws9{word-spacing:-41.510400px;}
.ws1{word-spacing:-41.162550px;}
.ws21{word-spacing:-36.940800px;}
.ws20{word-spacing:-36.902400px;}
.ws19{word-spacing:-33.484800px;}
.ws16{word-spacing:-33.446400px;}
.ws1b{word-spacing:-33.391950px;}
.ws13{word-spacing:-31.629000px;}
.ws12{word-spacing:-31.180800px;}
.ws0{word-spacing:-31.142400px;}
.ws1d{word-spacing:-29.597400px;}
.ws1e{word-spacing:-29.560950px;}
.ws1f{word-spacing:-28.820400px;}
.ws2{word-spacing:-27.875550px;}
.ws5{word-spacing:-27.686400px;}
.wsb{word-spacing:-26.949000px;}
.ws6{word-spacing:-24.230400px;}
.ws17{word-spacing:-21.926400px;}
.ws18{word-spacing:-21.899400px;}
.ws10{word-spacing:-20.812950px;}
.ws3{word-spacing:-20.763000px;}
.ws1c{word-spacing:-18.470400px;}
.ws11{word-spacing:-17.496000px;}
.wsf{word-spacing:-16.166400px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:628.814250px;}
.wsd{word-spacing:629.264250px;}
.wsc{word-spacing:2714.319300px;}
.wsa{word-spacing:3344.182500px;}
._c{margin-left:-12.529950px;}
._8{margin-left:-10.441350px;}
._f{margin-left:-8.158800px;}
._d{margin-left:-6.599400px;}
._7{margin-left:-5.352600px;}
._0{margin-left:-3.527850px;}
._5{margin-left:-2.433000px;}
._2{margin-left:-1.338150px;}
._1{width:1.216500px;}
._3{width:3.166350px;}
._4{width:4.787850px;}
._6{width:26.885550px;}
._a{width:1861.752300px;}
._9{width:1894.109850px;}
._e{width:2366.286000px;}
._b{width:2638.074300px;}
.fc10{color:rgb(61,124,201);}
.fcf{color:rgb(157,144,160);}
.fce{color:rgb(255,158,24);}
.fc0{color:rgb(34,47,93);}
.fc9{color:rgb(31,39,83);}
.fc1{color:rgb(0,33,105);}
.fc5{color:rgb(1,30,65);}
.fcd{color:rgb(0,0,0);}
.fc4{color:rgb(3,78,170);}
.fc6{color:rgb(89,155,160);}
.fc2{color:rgb(3,80,174);}
.fca{color:transparent;}
.fc8{color:rgb(192,80,131);}
.fc7{color:rgb(255,165,54);}
.fc3{color:rgb(255,255,255);}
.fcb{color:rgb(181,87,134);}
.fcc{color:rgb(90,162,174);}
.fs1b{font-size:35.965662px;}
.fs1a{font-size:36.114897px;}
.fs18{font-size:58.500000px;}
.fs19{font-size:58.650000px;}
.fsf{font-size:63.000000px;}
.fse{font-size:63.150000px;}
.fsd{font-size:72.000000px;}
.fsc{font-size:72.150000px;}
.fs2{font-size:81.000000px;}
.fs10{font-size:81.150000px;}
.fs11{font-size:85.650000px;}
.fs13{font-size:94.500000px;}
.fs6{font-size:94.650000px;}
.fsa{font-size:103.650000px;}
.fs4{font-size:108.150000px;}
.fs0{font-size:121.650000px;}
.fs12{font-size:121.800000px;}
.fs16{font-size:130.650000px;}
.fs17{font-size:130.800000px;}
.fs1c{font-size:144.150000px;}
.fs1d{font-size:144.300000px;}
.fs9{font-size:162.150000px;}
.fs8{font-size:162.300000px;}
.fs1{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fs14{font-size:184.800000px;}
.fs7{font-size:216.300000px;}
.fs3{font-size:238.800000px;}
.fs15{font-size:301.950000px;}
.fsb{font-size:590.250000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:13.537500px;}
.y1{bottom:19.837500px;}
.yb3{bottom:20.850000px;}
.y57{bottom:25.950000px;}
.y83{bottom:26.212500px;}
.y85{bottom:37.462500px;}
.ya5{bottom:44.512500px;}
.y28{bottom:46.612500px;}
.yc2{bottom:49.612500px;}
.y26{bottom:53.850000px;}
.yb2{bottom:58.012500px;}
.y56{bottom:58.612500px;}
.ycb{bottom:60.637500px;}
.y7{bottom:62.850000px;}
.ye{bottom:73.387500px;}
.y3b{bottom:75.675000px;}
.yb1{bottom:79.425000px;}
.y25{bottom:79.762500px;}
.ya4{bottom:80.550000px;}
.yc7{bottom:86.475000px;}
.y39{bottom:87.000000px;}
.y55{bottom:91.275000px;}
.y82{bottom:98.250000px;}
.y6{bottom:98.925000px;}
.yc1{bottom:100.312500px;}
.ya3{bottom:103.087500px;}
.y24{bottom:106.800000px;}
.y84{bottom:107.287500px;}
.yb0{bottom:115.500000px;}
.y38{bottom:116.287500px;}
.y3a{bottom:119.625000px;}
.y54{bottom:123.975000px;}
.yc0{bottom:131.850000px;}
.y47{bottom:132.187500px;}
.y5{bottom:134.962500px;}
.yc4{bottom:136.674290px;}
.ya2{bottom:139.125000px;}
.yc6{bottom:141.507614px;}
.y6b{bottom:147.712500px;}
.yc5{bottom:150.387103px;}
.y46{bottom:152.475000px;}
.yaf{bottom:152.670000px;}
.y49{bottom:155.250000px;}
.y69{bottom:158.505000px;}
.y13{bottom:162.225000px;}
.y4{bottom:171.000000px;}
.y53{bottom:171.255000px;}
.y6a{bottom:173.625000px;}
.y45{bottom:173.850000px;}
.ycd{bottom:174.900000px;}
.y17{bottom:175.155000px;}
.ya1{bottom:176.325000px;}
.ybf{bottom:179.130000px;}
.y7e{bottom:180.180000px;}
.y12{bottom:188.130000px;}
.yae{bottom:188.700000px;}
.y44{bottom:195.270000px;}
.y16{bottom:201.075000px;}
.y52{bottom:203.970000px;}
.y81{bottom:206.130000px;}
.y23{bottom:208.425000px;}
.ybe{bottom:211.830000px;}
.ya0{bottom:212.370000px;}
.y11{bottom:214.050000px;}
.y35{bottom:215.025000px;}
.y43{bottom:215.550000px;}
.y7d{bottom:216.255000px;}
.y37{bottom:218.400000px;}
.y68{bottom:223.695000px;}
.y91{bottom:224.100000px;}
.yad{bottom:225.900000px;}
.y15{bottom:226.995000px;}
.y22{bottom:234.345000px;}
.y51{bottom:235.500000px;}
.y42{bottom:236.955000px;}
.y10{bottom:239.970000px;}
.y34{bottom:244.320000px;}
.ybd{bottom:244.500000px;}
.y67{bottom:248.475000px;}
.y9f{bottom:249.570000px;}
.y14{bottom:254.025000px;}
.y21{bottom:260.250000px;}
.yac{bottom:261.945000px;}
.y36{bottom:262.320000px;}
.y3{bottom:265.380000px;}
.yca{bottom:266.880000px;}
.yf{bottom:267.000000px;}
.y33{bottom:273.600000px;}
.y41{bottom:274.395000px;}
.y90{bottom:279.300000px;}
.y50{bottom:283.950000px;}
.y9e{bottom:285.600000px;}
.y20{bottom:287.280000px;}
.y3c{bottom:292.230000px;}
.ybc{bottom:292.950000px;}
.y4b{bottom:296.175000px;}
.y40{bottom:298.050000px;}
.yab{bottom:299.100000px;}
.y4f{bottom:315.495000px;}
.y2{bottom:316.080000px;}
.y7c{bottom:321.825000px;}
.y9d{bottom:322.755000px;}
.y72{bottom:326.550000px;}
.y8f{bottom:333.375000px;}
.yaa{bottom:336.300000px;}
.y77{bottom:343.155000px;}
.ybb{bottom:343.650000px;}
.y9c{bottom:344.175000px;}
.yc9{bottom:356.250000px;}
.y7b{bottom:357.900000px;}
.y32{bottom:361.095000px;}
.y80{bottom:365.820000px;}
.ya9{bottom:372.345000px;}
.y1f{bottom:372.420000px;}
.yd{bottom:373.125000px;}
.yba{bottom:375.195000px;}
.y9b{bottom:381.345000px;}
.y8e{bottom:388.575000px;}
.y7a{bottom:393.945000px;}
.y1e{bottom:398.325000px;}
.y30{bottom:401.700000px;}
.y9a{bottom:402.750000px;}
.y31{bottom:405.030000px;}
.ya8{bottom:409.500000px;}
.y71{bottom:411.570000px;}
.yb9{bottom:422.475000px;}
.y1d{bottom:424.230000px;}
.yc{bottom:432.825000px;}
.y99{bottom:438.780000px;}
.y8d{bottom:442.650000px;}
.ya7{bottom:445.575000px;}
.y70{bottom:447.600000px;}
.y1c{bottom:450.150000px;}
.y5d{bottom:450.630000px;}
.yc8{bottom:454.995000px;}
.yb8{bottom:455.175000px;}
.y98{bottom:460.200000px;}
.y66{bottom:466.875000px;}
.y63{bottom:475.470000px;}
.y5c{bottom:476.550000px;}
.y1b{bottom:477.195000px;}
.y8c{bottom:482.070000px;}
.ya6{bottom:482.745000px;}
.yb7{bottom:487.830000px;}
.y65{bottom:488.295000px;}
.yb{bottom:492.525000px;}
.y79{bottom:496.530000px;}
.y97{bottom:497.400000px;}
.y6f{bottom:498.300000px;}
.y2d{bottom:500.400000px;}
.y5b{bottom:501.330000px;}
.y62{bottom:501.375000px;}
.y2f{bottom:503.775000px;}
.y3f{bottom:508.425000px;}
.y64{bottom:509.700000px;}
.y96{bottom:518.775000px;}
.y7f{bottom:526.500000px;}
.y5a{bottom:527.250000px;}
.y2c{bottom:529.695000px;}
.y78{bottom:532.575000px;}
.y6e{bottom:534.375000px;}
.yb6{bottom:535.155000px;}
.y8b{bottom:537.255000px;}
.y74{bottom:547.125000px;}
.y2e{bottom:547.725000px;}
.y61{bottom:548.580000px;}
.ycc{bottom:550.380000px;}
.ya{bottom:551.100000px;}
.y2b{bottom:558.975000px;}
.y95{bottom:560.280000px;}
.y48{bottom:560.880000px;}
.y1a{bottom:565.650000px;}
.yb5{bottom:567.825000px;}
.y3d{bottom:568.650000px;}
.y73{bottom:570.000000px;}
.y59{bottom:571.500000px;}
.y60{bottom:574.500000px;}
.y8a{bottom:576.720000px;}
.yce{bottom:577.695000px;}
.y4a{bottom:579.600000px;}
.y6d{bottom:586.200000px;}
.y19{bottom:591.570000px;}
.y94{bottom:592.950000px;}
.y58{bottom:597.420000px;}
.y5f{bottom:599.280000px;}
.y87{bottom:604.245000px;}
.y9{bottom:607.455000px;}
.yb4{bottom:616.275000px;}
.y18{bottom:618.600000px;}
.y6c{bottom:622.245000px;}
.y93{bottom:624.495000px;}
.y5e{bottom:625.200000px;}
.y89{bottom:630.675000px;}
.y86{bottom:635.775000px;}
.y2a{bottom:653.370000px;}
.y4d{bottom:659.370000px;}
.y88{bottom:662.220000px;}
.y76{bottom:697.650000px;}
.y3e{bottom:713.070000px;}
.y29{bottom:718.695000px;}
.y92{bottom:719.070000px;}
.y8{bottom:722.070000px;}
.y27{bottom:723.000000px;}
.y4e{bottom:723.450000px;}
.y4c{bottom:724.695000px;}
.y75{bottom:741.600000px;}
.h2b{height:25.850320px;}
.h2a{height:25.957582px;}
.h15{height:54.558000px;}
.h14{height:54.687900px;}
.h13{height:60.444000px;}
.h12{height:60.569925px;}
.h26{height:62.352000px;}
.h27{height:62.481900px;}
.h16{height:62.767090px;}
.h17{height:62.883325px;}
.h1c{height:62.928000px;}
.h1b{height:63.059100px;}
.h1a{height:74.858100px;}
.h10{height:78.749707px;}
.hb{height:81.966900px;}
.h18{height:82.168652px;}
.h19{height:90.791925px;}
.h20{height:92.425488px;}
.h3{height:93.078882px;}
.ha{height:93.657900px;}
.h6{height:94.523100px;}
.h4{height:97.976074px;}
.h1e{height:104.125488px;}
.h1f{height:104.545488px;}
.h1{height:105.348900px;}
.h1d{height:105.478800px;}
.hc{height:106.322100px;}
.h28{height:106.453200px;}
.h2e{height:110.153687px;}
.h23{height:113.142900px;}
.h24{height:113.272800px;}
.h25{height:114.188100px;}
.h2c{height:124.833900px;}
.h2d{height:124.963800px;}
.h2{height:127.510034px;}
.hf{height:140.421900px;}
.he{height:140.551800px;}
.h21{height:141.397266px;}
.h7{height:144.318900px;}
.h9{height:144.448800px;}
.h8{height:145.652100px;}
.hd{height:165.499072px;}
.h5{height:182.714648px;}
.h29{height:223.852668px;}
.h22{height:261.488700px;}
.h11{height:495.514875px;}
.h0{height:810.000000px;}
.w2{width:223.876186px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7a{left:11.437479px;}
.x1{left:30.899979px;}
.x3a{left:35.062479px;}
.x6b{left:36.149979px;}
.x50{left:58.387479px;}
.x60{left:72.412479px;}
.x55{left:73.649979px;}
.x6e{left:81.374979px;}
.x6a{left:84.937479px;}
.x9{left:90.862479px;}
.xf{left:95.474979px;}
.x10{left:98.699979px;}
.x35{left:100.049979px;}
.x61{left:102.824979px;}
.x56{left:114.187479px;}
.x12{left:116.324979px;}
.x84{left:120.711411px;}
.x2f{left:125.774979px;}
.x11{left:131.474979px;}
.x81{left:138.974979px;}
.x87{left:140.587479px;}
.x86{left:143.812479px;}
.x33{left:146.099979px;}
.x39{left:148.462479px;}
.x13{left:152.804979px;}
.x36{left:155.924979px;}
.x38{left:158.849979px;}
.x34{left:163.799979px;}
.x82{left:172.724979px;}
.x52{left:174.119979px;}
.x41{left:195.074979px;}
.x42{left:202.094979px;}
.x43{left:204.899979px;}
.x3e{left:208.619979px;}
.x40{left:220.499979px;}
.x37{left:228.074979px;}
.x3d{left:233.699979px;}
.x3f{left:249.149979px;}
.x2{left:260.444979px;}
.x53{left:269.744979px;}
.xc{left:272.129979px;}
.x44{left:273.674979px;}
.x7b{left:307.904979px;}
.x79{left:309.149979px;}
.xd{left:314.069979px;}
.xe{left:317.219979px;}
.x30{left:320.129979px;}
.x5b{left:336.494979px;}
.x5c{left:339.194979px;}
.x5d{left:343.319979px;}
.x66{left:351.524979px;}
.x3b{left:361.769979px;}
.x62{left:373.244979px;}
.x15{left:385.649979px;}
.x6d{left:388.094979px;}
.x14{left:391.379979px;}
.x74{left:394.469979px;}
.xa{left:410.999979px;}
.x16{left:416.774979px;}
.x85{left:423.974979px;}
.x3c{left:429.299979px;}
.x6f{left:435.149979px;}
.x80{left:443.249979px;}
.x2e{left:446.744979px;}
.x7d{left:457.199979px;}
.x73{left:459.029979px;}
.x25{left:477.224979px;}
.xb{left:488.099979px;}
.x70{left:489.149979px;}
.x7c{left:498.569979px;}
.x6{left:500.549979px;}
.x21{left:502.874979px;}
.x20{left:504.374979px;}
.x54{left:510.674979px;}
.x7{left:514.124979px;}
.x32{left:520.124979px;}
.x22{left:524.879979px;}
.x27{left:526.619979px;}
.x23{left:528.599979px;}
.x2d{left:530.129979px;}
.x26{left:558.494979px;}
.x2a{left:566.519979px;}
.x5{left:568.724979px;}
.x47{left:570.029979px;}
.x31{left:572.129979px;}
.x48{left:576.149979px;}
.x8{left:580.949979px;}
.x2b{left:583.619979px;}
.x2c{left:584.894979px;}
.x59{left:587.399979px;}
.x4{left:588.824979px;}
.x45{left:589.919979px;}
.x64{left:591.329979px;}
.x63{left:601.454979px;}
.x29{left:604.154979px;}
.x3{left:607.574979px;}
.x46{left:610.949979px;}
.x5a{left:613.574979px;}
.x28{left:616.199979px;}
.x24{left:632.474979px;}
.x49{left:649.754979px;}
.x19{left:672.194979px;}
.x17{left:682.124979px;}
.x1a{left:685.244979px;}
.x18{left:694.349979px;}
.x71{left:699.899979px;}
.x7e{left:722.924979px;}
.x77{left:726.074979px;}
.x7f{left:763.454979px;}
.x88{left:783.254979px;}
.x72{left:789.704979px;}
.x78{left:807.419979px;}
.x65{left:847.169979px;}
.x57{left:851.204979px;}
.x58{left:862.649979px;}
.x75{left:886.724979px;}
.x76{left:905.474979px;}
.x4e{left:923.369979px;}
.x4d{left:927.569979px;}
.x4c{left:930.494979px;}
.x4f{left:933.944979px;}
.x4b{left:943.424979px;}
.x4a{left:968.474979px;}
.x1d{left:971.474979px;}
.x1c{left:981.944979px;}
.x1e{left:990.824979px;}
.x83{left:998.467071px;}
.x1b{left:1000.829979px;}
.x1f{left:1047.044979px;}
.x5e{left:1087.844979px;}
.x5f{left:1091.324979px;}
.x68{left:1098.569979px;}
.x67{left:1116.599979px;}
.x69{left:1127.474979px;}
.x6c{left:1192.919979px;}
.x51{left:1318.619979px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v4{vertical-align:-21.866667pt;}
.v3{vertical-align:-19.573333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.400000pt;}
.v1{vertical-align:32.000000pt;}
.ls1{letter-spacing:-1.930667pt;}
.ls15{letter-spacing:-1.349333pt;}
.ls14{letter-spacing:-1.093333pt;}
.ls16{letter-spacing:-1.024000pt;}
.ls9{letter-spacing:-0.570667pt;}
.ls8{letter-spacing:-0.504000pt;}
.ls6{letter-spacing:-0.173333pt;}
.ls7{letter-spacing:-0.040000pt;}
.lsd{letter-spacing:-0.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.052933pt;}
.ls4{letter-spacing:0.666667pt;}
.ls2{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.763467pt;}
.ls18{letter-spacing:1.008000pt;}
.lsf{letter-spacing:1.461333pt;}
.ls17{letter-spacing:53.078800pt;}
.lse{letter-spacing:63.014800pt;}
.lsb{letter-spacing:70.046800pt;}
.lsc{letter-spacing:70.164000pt;}
.lsa{letter-spacing:77.212133pt;}
.ls13{letter-spacing:98.174800pt;}
.ls11{letter-spacing:98.281467pt;}
.ls12{letter-spacing:98.292000pt;}
.ls10{letter-spacing:98.398667pt;}
.ws1a{word-spacing:-192.266667pt;}
.ws15{word-spacing:-68.710400pt;}
.ws7{word-spacing:-47.489867pt;}
.ws14{word-spacing:-40.573867pt;}
.ws8{word-spacing:-36.932267pt;}
.ws9{word-spacing:-36.898133pt;}
.ws1{word-spacing:-36.588933pt;}
.ws21{word-spacing:-32.836267pt;}
.ws20{word-spacing:-32.802133pt;}
.ws19{word-spacing:-29.764267pt;}
.ws16{word-spacing:-29.730133pt;}
.ws1b{word-spacing:-29.681733pt;}
.ws13{word-spacing:-28.114667pt;}
.ws12{word-spacing:-27.716267pt;}
.ws0{word-spacing:-27.682133pt;}
.ws1d{word-spacing:-26.308800pt;}
.ws1e{word-spacing:-26.276400pt;}
.ws1f{word-spacing:-25.618133pt;}
.ws2{word-spacing:-24.778267pt;}
.ws5{word-spacing:-24.610133pt;}
.wsb{word-spacing:-23.954667pt;}
.ws6{word-spacing:-21.538133pt;}
.ws17{word-spacing:-19.490133pt;}
.ws18{word-spacing:-19.466133pt;}
.ws10{word-spacing:-18.500400pt;}
.ws3{word-spacing:-18.456000pt;}
.ws1c{word-spacing:-16.418133pt;}
.ws11{word-spacing:-15.552000pt;}
.wsf{word-spacing:-14.370133pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:558.946000pt;}
.wsd{word-spacing:559.346000pt;}
.wsc{word-spacing:2412.728267pt;}
.wsa{word-spacing:2972.606667pt;}
._c{margin-left:-11.137733pt;}
._8{margin-left:-9.281200pt;}
._f{margin-left:-7.252267pt;}
._d{margin-left:-5.866133pt;}
._7{margin-left:-4.757867pt;}
._0{margin-left:-3.135867pt;}
._5{margin-left:-2.162667pt;}
._2{margin-left:-1.189467pt;}
._1{width:1.081333pt;}
._3{width:2.814533pt;}
._4{width:4.255867pt;}
._6{width:23.898267pt;}
._a{width:1654.890933pt;}
._9{width:1683.653200pt;}
._e{width:2103.365333pt;}
._b{width:2344.954933pt;}
.fs1b{font-size:31.969477pt;}
.fs1a{font-size:32.102131pt;}
.fs18{font-size:52.000000pt;}
.fs19{font-size:52.133333pt;}
.fsf{font-size:56.000000pt;}
.fse{font-size:56.133333pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:64.133333pt;}
.fs2{font-size:72.000000pt;}
.fs10{font-size:72.133333pt;}
.fs11{font-size:76.133333pt;}
.fs13{font-size:84.000000pt;}
.fs6{font-size:84.133333pt;}
.fsa{font-size:92.133333pt;}
.fs4{font-size:96.133333pt;}
.fs0{font-size:108.133333pt;}
.fs12{font-size:108.266667pt;}
.fs16{font-size:116.133333pt;}
.fs17{font-size:116.266667pt;}
.fs1c{font-size:128.133333pt;}
.fs1d{font-size:128.266667pt;}
.fs9{font-size:144.133333pt;}
.fs8{font-size:144.266667pt;}
.fs1{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fs14{font-size:164.266667pt;}
.fs7{font-size:192.266667pt;}
.fs3{font-size:212.266667pt;}
.fs15{font-size:268.400000pt;}
.fsb{font-size:524.666667pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:12.033333pt;}
.y1{bottom:17.633333pt;}
.yb3{bottom:18.533333pt;}
.y57{bottom:23.066667pt;}
.y83{bottom:23.300000pt;}
.y85{bottom:33.300000pt;}
.ya5{bottom:39.566667pt;}
.y28{bottom:41.433333pt;}
.yc2{bottom:44.100000pt;}
.y26{bottom:47.866667pt;}
.yb2{bottom:51.566667pt;}
.y56{bottom:52.100000pt;}
.ycb{bottom:53.900000pt;}
.y7{bottom:55.866667pt;}
.ye{bottom:65.233333pt;}
.y3b{bottom:67.266667pt;}
.yb1{bottom:70.600000pt;}
.y25{bottom:70.900000pt;}
.ya4{bottom:71.600000pt;}
.yc7{bottom:76.866667pt;}
.y39{bottom:77.333333pt;}
.y55{bottom:81.133333pt;}
.y82{bottom:87.333333pt;}
.y6{bottom:87.933333pt;}
.yc1{bottom:89.166667pt;}
.ya3{bottom:91.633333pt;}
.y24{bottom:94.933333pt;}
.y84{bottom:95.366667pt;}
.yb0{bottom:102.666667pt;}
.y38{bottom:103.366667pt;}
.y3a{bottom:106.333333pt;}
.y54{bottom:110.200000pt;}
.yc0{bottom:117.200000pt;}
.y47{bottom:117.500000pt;}
.y5{bottom:119.966667pt;}
.yc4{bottom:121.488257pt;}
.ya2{bottom:123.666667pt;}
.yc6{bottom:125.784545pt;}
.y6b{bottom:131.300000pt;}
.yc5{bottom:133.677425pt;}
.y46{bottom:135.533333pt;}
.yaf{bottom:135.706667pt;}
.y49{bottom:138.000000pt;}
.y69{bottom:140.893333pt;}
.y13{bottom:144.200000pt;}
.y4{bottom:152.000000pt;}
.y53{bottom:152.226667pt;}
.y6a{bottom:154.333333pt;}
.y45{bottom:154.533333pt;}
.ycd{bottom:155.466667pt;}
.y17{bottom:155.693333pt;}
.ya1{bottom:156.733333pt;}
.ybf{bottom:159.226667pt;}
.y7e{bottom:160.160000pt;}
.y12{bottom:167.226667pt;}
.yae{bottom:167.733333pt;}
.y44{bottom:173.573333pt;}
.y16{bottom:178.733333pt;}
.y52{bottom:181.306667pt;}
.y81{bottom:183.226667pt;}
.y23{bottom:185.266667pt;}
.ybe{bottom:188.293333pt;}
.ya0{bottom:188.773333pt;}
.y11{bottom:190.266667pt;}
.y35{bottom:191.133333pt;}
.y43{bottom:191.600000pt;}
.y7d{bottom:192.226667pt;}
.y37{bottom:194.133333pt;}
.y68{bottom:198.840000pt;}
.y91{bottom:199.200000pt;}
.yad{bottom:200.800000pt;}
.y15{bottom:201.773333pt;}
.y22{bottom:208.306667pt;}
.y51{bottom:209.333333pt;}
.y42{bottom:210.626667pt;}
.y10{bottom:213.306667pt;}
.y34{bottom:217.173333pt;}
.ybd{bottom:217.333333pt;}
.y67{bottom:220.866667pt;}
.y9f{bottom:221.840000pt;}
.y14{bottom:225.800000pt;}
.y21{bottom:231.333333pt;}
.yac{bottom:232.840000pt;}
.y36{bottom:233.173333pt;}
.y3{bottom:235.893333pt;}
.yca{bottom:237.226667pt;}
.yf{bottom:237.333333pt;}
.y33{bottom:243.200000pt;}
.y41{bottom:243.906667pt;}
.y90{bottom:248.266667pt;}
.y50{bottom:252.400000pt;}
.y9e{bottom:253.866667pt;}
.y20{bottom:255.360000pt;}
.y3c{bottom:259.760000pt;}
.ybc{bottom:260.400000pt;}
.y4b{bottom:263.266667pt;}
.y40{bottom:264.933333pt;}
.yab{bottom:265.866667pt;}
.y4f{bottom:280.440000pt;}
.y2{bottom:280.960000pt;}
.y7c{bottom:286.066667pt;}
.y9d{bottom:286.893333pt;}
.y72{bottom:290.266667pt;}
.y8f{bottom:296.333333pt;}
.yaa{bottom:298.933333pt;}
.y77{bottom:305.026667pt;}
.ybb{bottom:305.466667pt;}
.y9c{bottom:305.933333pt;}
.yc9{bottom:316.666667pt;}
.y7b{bottom:318.133333pt;}
.y32{bottom:320.973333pt;}
.y80{bottom:325.173333pt;}
.ya9{bottom:330.973333pt;}
.y1f{bottom:331.040000pt;}
.yd{bottom:331.666667pt;}
.yba{bottom:333.506667pt;}
.y9b{bottom:338.973333pt;}
.y8e{bottom:345.400000pt;}
.y7a{bottom:350.173333pt;}
.y1e{bottom:354.066667pt;}
.y30{bottom:357.066667pt;}
.y9a{bottom:358.000000pt;}
.y31{bottom:360.026667pt;}
.ya8{bottom:364.000000pt;}
.y71{bottom:365.840000pt;}
.yb9{bottom:375.533333pt;}
.y1d{bottom:377.093333pt;}
.yc{bottom:384.733333pt;}
.y99{bottom:390.026667pt;}
.y8d{bottom:393.466667pt;}
.ya7{bottom:396.066667pt;}
.y70{bottom:397.866667pt;}
.y1c{bottom:400.133333pt;}
.y5d{bottom:400.560000pt;}
.yc8{bottom:404.440000pt;}
.yb8{bottom:404.600000pt;}
.y98{bottom:409.066667pt;}
.y66{bottom:415.000000pt;}
.y63{bottom:422.640000pt;}
.y5c{bottom:423.600000pt;}
.y1b{bottom:424.173333pt;}
.y8c{bottom:428.506667pt;}
.ya6{bottom:429.106667pt;}
.yb7{bottom:433.626667pt;}
.y65{bottom:434.040000pt;}
.yb{bottom:437.800000pt;}
.y79{bottom:441.360000pt;}
.y97{bottom:442.133333pt;}
.y6f{bottom:442.933333pt;}
.y2d{bottom:444.800000pt;}
.y5b{bottom:445.626667pt;}
.y62{bottom:445.666667pt;}
.y2f{bottom:447.800000pt;}
.y3f{bottom:451.933333pt;}
.y64{bottom:453.066667pt;}
.y96{bottom:461.133333pt;}
.y7f{bottom:468.000000pt;}
.y5a{bottom:468.666667pt;}
.y2c{bottom:470.840000pt;}
.y78{bottom:473.400000pt;}
.y6e{bottom:475.000000pt;}
.yb6{bottom:475.693333pt;}
.y8b{bottom:477.560000pt;}
.y74{bottom:486.333333pt;}
.y2e{bottom:486.866667pt;}
.y61{bottom:487.626667pt;}
.ycc{bottom:489.226667pt;}
.ya{bottom:489.866667pt;}
.y2b{bottom:496.866667pt;}
.y95{bottom:498.026667pt;}
.y48{bottom:498.560000pt;}
.y1a{bottom:502.800000pt;}
.yb5{bottom:504.733333pt;}
.y3d{bottom:505.466667pt;}
.y73{bottom:506.666667pt;}
.y59{bottom:508.000000pt;}
.y60{bottom:510.666667pt;}
.y8a{bottom:512.640000pt;}
.yce{bottom:513.506667pt;}
.y4a{bottom:515.200000pt;}
.y6d{bottom:521.066667pt;}
.y19{bottom:525.840000pt;}
.y94{bottom:527.066667pt;}
.y58{bottom:531.040000pt;}
.y5f{bottom:532.693333pt;}
.y87{bottom:537.106667pt;}
.y9{bottom:539.960000pt;}
.yb4{bottom:547.800000pt;}
.y18{bottom:549.866667pt;}
.y6c{bottom:553.106667pt;}
.y93{bottom:555.106667pt;}
.y5e{bottom:555.733333pt;}
.y89{bottom:560.600000pt;}
.y86{bottom:565.133333pt;}
.y2a{bottom:580.773333pt;}
.y4d{bottom:586.106667pt;}
.y88{bottom:588.640000pt;}
.y76{bottom:620.133333pt;}
.y3e{bottom:633.840000pt;}
.y29{bottom:638.840000pt;}
.y92{bottom:639.173333pt;}
.y8{bottom:641.840000pt;}
.y27{bottom:642.666667pt;}
.y4e{bottom:643.066667pt;}
.y4c{bottom:644.173333pt;}
.y75{bottom:659.200000pt;}
.h2b{height:22.978062pt;}
.h2a{height:23.073407pt;}
.h15{height:48.496000pt;}
.h14{height:48.611467pt;}
.h13{height:53.728000pt;}
.h12{height:53.839933pt;}
.h26{height:55.424000pt;}
.h27{height:55.539467pt;}
.h16{height:55.792969pt;}
.h17{height:55.896289pt;}
.h1c{height:55.936000pt;}
.h1b{height:56.052533pt;}
.h1a{height:66.540533pt;}
.h10{height:69.999740pt;}
.hb{height:72.859467pt;}
.h18{height:73.038802pt;}
.h19{height:80.703933pt;}
.h20{height:82.155990pt;}
.h3{height:82.736784pt;}
.ha{height:83.251467pt;}
.h6{height:84.020533pt;}
.h4{height:87.089844pt;}
.h1e{height:92.555990pt;}
.h1f{height:92.929323pt;}
.h1{height:93.643467pt;}
.h1d{height:93.758933pt;}
.hc{height:94.508533pt;}
.h28{height:94.625067pt;}
.h2e{height:97.914388pt;}
.h23{height:100.571467pt;}
.h24{height:100.686933pt;}
.h25{height:101.500533pt;}
.h2c{height:110.963467pt;}
.h2d{height:111.078933pt;}
.h2{height:113.342253pt;}
.hf{height:124.819467pt;}
.he{height:124.934933pt;}
.h21{height:125.686458pt;}
.h7{height:128.283467pt;}
.h9{height:128.398933pt;}
.h8{height:129.468533pt;}
.hd{height:147.110286pt;}
.h5{height:162.413021pt;}
.h29{height:198.980150pt;}
.h22{height:232.434400pt;}
.h11{height:440.457667pt;}
.h0{height:720.000000pt;}
.w2{width:199.001055pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7a{left:10.166648pt;}
.x1{left:27.466648pt;}
.x3a{left:31.166648pt;}
.x6b{left:32.133314pt;}
.x50{left:51.899981pt;}
.x60{left:64.366648pt;}
.x55{left:65.466648pt;}
.x6e{left:72.333314pt;}
.x6a{left:75.499981pt;}
.x9{left:80.766648pt;}
.xf{left:84.866648pt;}
.x10{left:87.733314pt;}
.x35{left:88.933314pt;}
.x61{left:91.399981pt;}
.x56{left:101.499981pt;}
.x12{left:103.399981pt;}
.x84{left:107.299032pt;}
.x2f{left:111.799981pt;}
.x11{left:116.866648pt;}
.x81{left:123.533314pt;}
.x87{left:124.966648pt;}
.x86{left:127.833314pt;}
.x33{left:129.866648pt;}
.x39{left:131.966648pt;}
.x13{left:135.826648pt;}
.x36{left:138.599981pt;}
.x38{left:141.199981pt;}
.x34{left:145.599981pt;}
.x82{left:153.533314pt;}
.x52{left:154.773314pt;}
.x41{left:173.399981pt;}
.x42{left:179.639981pt;}
.x43{left:182.133314pt;}
.x3e{left:185.439981pt;}
.x40{left:195.999981pt;}
.x37{left:202.733314pt;}
.x3d{left:207.733314pt;}
.x3f{left:221.466648pt;}
.x2{left:231.506648pt;}
.x53{left:239.773314pt;}
.xc{left:241.893314pt;}
.x44{left:243.266648pt;}
.x7b{left:273.693314pt;}
.x79{left:274.799981pt;}
.xd{left:279.173314pt;}
.xe{left:281.973314pt;}
.x30{left:284.559981pt;}
.x5b{left:299.106648pt;}
.x5c{left:301.506648pt;}
.x5d{left:305.173314pt;}
.x66{left:312.466648pt;}
.x3b{left:321.573314pt;}
.x62{left:331.773314pt;}
.x15{left:342.799981pt;}
.x6d{left:344.973314pt;}
.x14{left:347.893314pt;}
.x74{left:350.639981pt;}
.xa{left:365.333314pt;}
.x16{left:370.466648pt;}
.x85{left:376.866648pt;}
.x3c{left:381.599981pt;}
.x6f{left:386.799981pt;}
.x80{left:393.999981pt;}
.x2e{left:397.106648pt;}
.x7d{left:406.399981pt;}
.x73{left:408.026648pt;}
.x25{left:424.199981pt;}
.xb{left:433.866648pt;}
.x70{left:434.799981pt;}
.x7c{left:443.173314pt;}
.x6{left:444.933314pt;}
.x21{left:446.999981pt;}
.x20{left:448.333314pt;}
.x54{left:453.933314pt;}
.x7{left:456.999981pt;}
.x32{left:462.333314pt;}
.x22{left:466.559981pt;}
.x27{left:468.106648pt;}
.x23{left:469.866648pt;}
.x2d{left:471.226648pt;}
.x26{left:496.439981pt;}
.x2a{left:503.573314pt;}
.x5{left:505.533314pt;}
.x47{left:506.693314pt;}
.x31{left:508.559981pt;}
.x48{left:512.133314pt;}
.x8{left:516.399981pt;}
.x2b{left:518.773314pt;}
.x2c{left:519.906648pt;}
.x59{left:522.133314pt;}
.x4{left:523.399981pt;}
.x45{left:524.373314pt;}
.x64{left:525.626648pt;}
.x63{left:534.626648pt;}
.x29{left:537.026648pt;}
.x3{left:540.066648pt;}
.x46{left:543.066648pt;}
.x5a{left:545.399981pt;}
.x28{left:547.733314pt;}
.x24{left:562.199981pt;}
.x49{left:577.559981pt;}
.x19{left:597.506648pt;}
.x17{left:606.333314pt;}
.x1a{left:609.106648pt;}
.x18{left:617.199981pt;}
.x71{left:622.133314pt;}
.x7e{left:642.599981pt;}
.x77{left:645.399981pt;}
.x7f{left:678.626648pt;}
.x88{left:696.226648pt;}
.x72{left:701.959981pt;}
.x78{left:717.706648pt;}
.x65{left:753.039981pt;}
.x57{left:756.626648pt;}
.x58{left:766.799981pt;}
.x75{left:788.199981pt;}
.x76{left:804.866648pt;}
.x4e{left:820.773314pt;}
.x4d{left:824.506648pt;}
.x4c{left:827.106648pt;}
.x4f{left:830.173314pt;}
.x4b{left:838.599981pt;}
.x4a{left:860.866648pt;}
.x1d{left:863.533314pt;}
.x1c{left:872.839981pt;}
.x1e{left:880.733314pt;}
.x83{left:887.526285pt;}
.x1b{left:889.626648pt;}
.x1f{left:930.706648pt;}
.x5e{left:966.973314pt;}
.x5f{left:970.066648pt;}
.x68{left:976.506648pt;}
.x67{left:992.533314pt;}
.x69{left:1002.199981pt;}
.x6c{left:1060.373314pt;}
.x51{left:1172.106648pt;}
}




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