
    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_57236c583092212c5e325d05.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_053ceef9243ddbe8a66c5578.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_12516844b9c3300ce1c5e8bd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f6852152bd98f6e1ef9feda3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_633464589bd030e5f771510c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_be391b30cbc5257ed4e66047.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c59b4e7d6a8cc0698d3a3ac2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4ea80bcf05be94c0143fb43c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_deba2c013192ba1fee4aa23e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.909180;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_9eb0a3947dee0da9e4e2fd43.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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(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);}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v4{vertical-align:27.360000px;}
.ls15{letter-spacing:-2.880000px;}
.ls2{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.181440px;}
.ls9{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.620000px;}
.ls6{letter-spacing:2.160000px;}
.ls17{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.760000px;}
.ls1b{letter-spacing:6.480000px;}
.ls5{letter-spacing:7.200000px;}
.ls0{letter-spacing:7.920000px;}
.ls14{letter-spacing:8.640000px;}
.lsf{letter-spacing:10.800000px;}
.lsc{letter-spacing:11.520000px;}
.ls1c{letter-spacing:20.160000px;}
.ls1a{letter-spacing:119.640000px;}
.ls7{letter-spacing:141.960000px;}
.ls4{letter-spacing:197.976000px;}
.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;}
}
.ws7{word-spacing:-48.600000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.280000px;}
.ws0{word-spacing:-15.120000px;}
.ws6{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-5.040000px;}
._d{margin-left:-3.834720px;}
._2{margin-left:-2.413440px;}
._1{margin-left:-1.169520px;}
._0{width:1.314720px;}
._3{width:2.337120px;}
._f{width:3.520800px;}
._5{width:4.608000px;}
._6{width:5.832000px;}
._7{width:6.999840px;}
._e{width:8.337120px;}
._4{width:9.360000px;}
._a{width:10.494480px;}
._9{width:12.041520px;}
._b{width:13.041600px;}
._11{width:14.371680px;}
._8{width:16.324560px;}
._10{width:19.036080px;}
._22{width:20.915040px;}
._15{width:21.960000px;}
._16{width:23.093280px;}
._14{width:24.424320px;}
._12{width:25.488000px;}
._13{width:26.496000px;}
._1c{width:28.584000px;}
._21{width:32.400000px;}
._1b{width:34.200000px;}
._17{width:48.240000px;}
._18{width:49.824000px;}
._1f{width:52.200000px;}
._20{width:53.442720px;}
._1d{width:66.816000px;}
._1e{width:67.877280px;}
._19{width:84.960000px;}
._1a{width:86.328000px;}
._23{width:112.392000px;}
._28{width:118.872000px;}
._29{width:120.096000px;}
._25{width:193.464000px;}
._24{width:221.616000px;}
._26{width:267.984000px;}
._27{width:269.345280px;}
._2a{width:846.156000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.450000px;}
.yaa{bottom:4.125000px;}
.y88{bottom:4.140000px;}
.y99{bottom:4.485000px;}
.yad{bottom:4.500000px;}
.ye2{bottom:4.515000px;}
.y92{bottom:4.695000px;}
.y8e{bottom:4.860000px;}
.y90{bottom:4.875000px;}
.ydc{bottom:4.890000px;}
.y79{bottom:5.250000px;}
.y124{bottom:5.940000px;}
.y76{bottom:6.375000px;}
.y123{bottom:7.380000px;}
.y2{bottom:8.136000px;}
.y80{bottom:9.795000px;}
.y7c{bottom:10.335000px;}
.y96{bottom:10.965000px;}
.y7e{bottom:13.755000px;}
.y8a{bottom:14.400000px;}
.ya8{bottom:14.565000px;}
.yb3{bottom:14.760000px;}
.yb8{bottom:14.775000px;}
.y9a{bottom:14.925000px;}
.yaf{bottom:14.940000px;}
.ybd{bottom:14.955000px;}
.ydf{bottom:14.970000px;}
.y93{bottom:15.120000px;}
.ya9{bottom:24.825000px;}
.y8b{bottom:24.840000px;}
.y98{bottom:25.185000px;}
.yac{bottom:25.200000px;}
.y91{bottom:25.380000px;}
.ydd{bottom:25.410000px;}
.y8d{bottom:25.560000px;}
.ydb{bottom:25.590000px;}
.y78{bottom:28.650000px;}
.y75{bottom:29.775000px;}
.y7f{bottom:31.035000px;}
.y7b{bottom:31.575000px;}
.y95{bottom:31.665000px;}
.yfa{bottom:34.545000px;}
.yb6{bottom:35.460000px;}
.y9d{bottom:35.625000px;}
.ybb{bottom:35.640000px;}
.y9c{bottom:45.885000px;}
.yb5{bottom:45.900000px;}
.y116{bottom:46.620000px;}
.yf9{bottom:55.245000px;}
.y1{bottom:56.520000px;}
.yf7{bottom:76.665000px;}
.y4{bottom:109.836000px;}
.y5d{bottom:115.956000px;}
.y114{bottom:121.356000px;}
.y2f{bottom:125.316000px;}
.y13c{bottom:127.836000px;}
.yc9{bottom:128.016000px;}
.yf5{bottom:129.096000px;}
.y6d{bottom:132.156000px;}
.y5c{bottom:136.656000px;}
.y113{bottom:142.056000px;}
.y2e{bottom:146.016000px;}
.y86{bottom:147.996000px;}
.yc8{bottom:148.536000px;}
.yf4{bottom:149.796000px;}
.y6c{bottom:152.850000px;}
.y5b{bottom:157.350000px;}
.y112{bottom:162.750000px;}
.y9b{bottom:164.925000px;}
.y2d{bottom:166.710000px;}
.y13b{bottom:169.230000px;}
.yc7{bottom:169.770000px;}
.yf3{bottom:170.490000px;}
.y6b{bottom:173.550000px;}
.y5a{bottom:178.050000px;}
.y111{bottom:183.450000px;}
.y2c{bottom:187.410000px;}
.y81{bottom:188.460000px;}
.y13a{bottom:189.930000px;}
.yc6{bottom:190.470000px;}
.yf2{bottom:191.190000px;}
.y6a{bottom:194.250000px;}
.y59{bottom:198.750000px;}
.y110{bottom:204.150000px;}
.y2b{bottom:208.110000px;}
.y139{bottom:210.630000px;}
.yc5{bottom:211.170000px;}
.yf1{bottom:211.530000px;}
.y58{bottom:219.450000px;}
.y10f{bottom:224.490000px;}
.y97{bottom:227.745000px;}
.y2a{bottom:228.810000px;}
.y138{bottom:231.330000px;}
.yc4{bottom:231.870000px;}
.yf0{bottom:232.590000px;}
.y69{bottom:232.770000px;}
.y57{bottom:240.150000px;}
.y10e{bottom:245.190000px;}
.y29{bottom:249.510000px;}
.y137{bottom:252.030000px;}
.yc3{bottom:252.570000px;}
.yef{bottom:253.290000px;}
.y68{bottom:256.530000px;}
.y73{bottom:260.490000px;}
.y56{bottom:260.850000px;}
.y10d{bottom:266.250000px;}
.y77{bottom:267.480000px;}
.y94{bottom:269.865000px;}
.y28{bottom:270.210000px;}
.y136{bottom:272.730000px;}
.yc2{bottom:273.270000px;}
.yee{bottom:273.990000px;}
.y67{bottom:280.470000px;}
.y72{bottom:281.190000px;}
.y55{bottom:281.550000px;}
.y10c{bottom:286.950000px;}
.y27{bottom:290.910000px;}
.y135{bottom:293.430000px;}
.yc1{bottom:293.970000px;}
.yed{bottom:294.690000px;}
.y71{bottom:301.890000px;}
.y54{bottom:302.250000px;}
.y66{bottom:304.230000px;}
.y10b{bottom:307.650000px;}
.y26{bottom:311.610000px;}
.y134{bottom:314.130000px;}
.yc0{bottom:314.310000px;}
.yec{bottom:315.255000px;}
.y8f{bottom:318.480000px;}
.y8c{bottom:318.495000px;}
.y70{bottom:322.635000px;}
.y53{bottom:322.995000px;}
.y65{bottom:328.035000px;}
.y10a{bottom:328.395000px;}
.ybf{bottom:331.620000px;}
.ybe{bottom:331.635000px;}
.y25{bottom:332.355000px;}
.y133{bottom:334.875000px;}
.yeb{bottom:336.495000px;}
.y52{bottom:343.695000px;}
.y7a{bottom:345.600000px;}
.y109{bottom:349.095000px;}
.y64{bottom:351.795000px;}
.y7d{bottom:352.800000px;}
.y24{bottom:353.055000px;}
.y132{bottom:355.575000px;}
.yea{bottom:357.735000px;}
.y89{bottom:361.155000px;}
.y51{bottom:364.395000px;}
.y108{bottom:369.795000px;}
.y23{bottom:373.755000px;}
.y63{bottom:375.735000px;}
.y131{bottom:376.275000px;}
.ye9{bottom:378.435000px;}
.y50{bottom:385.095000px;}
.y107{bottom:390.495000px;}
.ybc{bottom:394.440000px;}
.y22{bottom:394.455000px;}
.y130{bottom:396.975000px;}
.ye8{bottom:399.135000px;}
.y62{bottom:399.495000px;}
.y87{bottom:403.275000px;}
.y4f{bottom:405.795000px;}
.y106{bottom:411.195000px;}
.y74{bottom:412.560000px;}
.y21{bottom:415.155000px;}
.y12f{bottom:417.675000px;}
.ye7{bottom:419.835000px;}
.y61{bottom:423.255000px;}
.y4e{bottom:426.495000px;}
.y105{bottom:428.115000px;}
.y20{bottom:435.855000px;}
.y12e{bottom:438.375000px;}
.ye6{bottom:440.535000px;}
.y85{bottom:446.835000px;}
.y60{bottom:447.015000px;}
.y4d{bottom:447.195000px;}
.y1f{bottom:456.555000px;}
.yba{bottom:457.440000px;}
.yb9{bottom:457.455000px;}
.y12d{bottom:458.715000px;}
.ye5{bottom:461.235000px;}
.y5f{bottom:467.535000px;}
.y4c{bottom:467.895000px;}
.y104{bottom:470.235000px;}
.y1e{bottom:476.895000px;}
.y12c{bottom:479.775000px;}
.ye4{bottom:481.935000px;}
.y4b{bottom:488.595000px;}
.y1d{bottom:497.955000px;}
.y12b{bottom:500.475000px;}
.ye3{bottom:502.635000px;}
.y4a{bottom:509.295000px;}
.y103{bottom:516.495000px;}
.y1c{bottom:518.655000px;}
.ye1{bottom:519.540000px;}
.ye0{bottom:519.555000px;}
.yb7{bottom:520.260000px;}
.yb4{bottom:520.275000px;}
.y12a{bottom:521.175000px;}
.y49{bottom:529.995000px;}
.y102{bottom:537.195000px;}
.y1b{bottom:539.355000px;}
.y129{bottom:541.875000px;}
.y13e{bottom:550.515000px;}
.y48{bottom:550.695000px;}
.y101{bottom:558.255000px;}
.y1a{bottom:560.055000px;}
.yde{bottom:561.660000px;}
.yda{bottom:561.675000px;}
.y128{bottom:562.575000px;}
.y84{bottom:571.065000px;}
.y47{bottom:571.425000px;}
.y100{bottom:578.985000px;}
.yb1{bottom:583.125000px;}
.yb2{bottom:583.140000px;}
.y127{bottom:583.305000px;}
.y46{bottom:592.125000px;}
.y19{bottom:598.785000px;}
.yff{bottom:599.685000px;}
.y126{bottom:604.005000px;}
.yd9{bottom:604.185000px;}
.y45{bottom:612.825000px;}
.yfe{bottom:620.385000px;}
.y18{bottom:622.545000px;}
.y125{bottom:624.705000px;}
.yb0{bottom:625.245000px;}
.y44{bottom:633.525000px;}
.yfd{bottom:641.085000px;}
.y122{bottom:641.625000px;}
.y17{bottom:646.305000px;}
.y13d{bottom:653.865000px;}
.y43{bottom:654.225000px;}
.yfc{bottom:658.005000px;}
.y121{bottom:665.925000px;}
.yd8{bottom:667.005000px;}
.yab{bottom:667.365000px;}
.yae{bottom:667.380000px;}
.y16{bottom:670.065000px;}
.y42{bottom:674.925000px;}
.yfb{bottom:679.605000px;}
.y15{bottom:694.005000px;}
.y41{bottom:695.625000px;}
.yd6{bottom:709.125000px;}
.yd7{bottom:709.140000px;}
.ya7{bottom:709.500000px;}
.y120{bottom:712.185000px;}
.y40{bottom:716.325000px;}
.y14{bottom:717.765000px;}
.yf6{bottom:721.740000px;}
.y11f{bottom:732.885000px;}
.y3f{bottom:737.025000px;}
.y13{bottom:741.525000px;}
.yf8{bottom:743.160000px;}
.yd5{bottom:751.440000px;}
.ya6{bottom:751.605000px;}
.y11e{bottom:753.945000px;}
.y5e{bottom:757.725000px;}
.y12{bottom:765.285000px;}
.yd4{bottom:772.845000px;}
.y11d{bottom:774.645000px;}
.ya5{bottom:777.705000px;}
.y3e{bottom:778.425000px;}
.y11{bottom:789.225000px;}
.y11c{bottom:795.345000px;}
.ya4{bottom:798.045000px;}
.yd3{bottom:798.405000px;}
.y3d{bottom:799.125000px;}
.y10{bottom:812.985000px;}
.y11b{bottom:816.045000px;}
.ya3{bottom:819.150000px;}
.yd2{bottom:819.510000px;}
.y3c{bottom:819.870000px;}
.y11a{bottom:836.430000px;}
.yf{bottom:836.790000px;}
.ya2{bottom:839.850000px;}
.yd1{bottom:840.210000px;}
.y3b{bottom:840.570000px;}
.y119{bottom:853.710000px;}
.ye{bottom:860.550000px;}
.yd0{bottom:860.910000px;}
.y3a{bottom:861.270000px;}
.y118{bottom:875.310000px;}
.yd{bottom:881.070000px;}
.ya1{bottom:881.250000px;}
.ycf{bottom:881.610000px;}
.y39{bottom:881.970000px;}
.yc{bottom:901.770000px;}
.ya0{bottom:901.950000px;}
.y6f{bottom:902.310000px;}
.y38{bottom:902.670000px;}
.y9f{bottom:922.470000px;}
.yb{bottom:922.830000px;}
.y6e{bottom:923.010000px;}
.y37{bottom:923.370000px;}
.y115{bottom:938.130000px;}
.ya{bottom:943.170000px;}
.y9e{bottom:943.530000px;}
.yce{bottom:943.710000px;}
.y36{bottom:944.070000px;}
.y117{bottom:959.550000px;}
.y9{bottom:963.870000px;}
.ycd{bottom:964.410000px;}
.y35{bottom:964.770000px;}
.y8{bottom:984.930000px;}
.ycc{bottom:985.110000px;}
.y34{bottom:985.470000px;}
.y7{bottom:1005.270000px;}
.y83{bottom:1005.810000px;}
.y33{bottom:1006.170000px;}
.ycb{bottom:1026.510000px;}
.y32{bottom:1026.870000px;}
.y6{bottom:1043.970000px;}
.yca{bottom:1047.210000px;}
.y31{bottom:1047.570000px;}
.y5{bottom:1067.730000px;}
.y30{bottom:1068.270000px;}
.y3{bottom:1107.540000px;}
.h11{height:20.340000px;}
.h12{height:20.685000px;}
.h20{height:20.700000px;}
.h2d{height:23.580000px;}
.h1{height:24.705000px;}
.h10{height:29.520000px;}
.h13{height:41.385000px;}
.h19{height:41.391000px;}
.h21{height:41.395500px;}
.h1a{height:41.400000px;}
.h14{height:41.745000px;}
.h15{height:41.755500px;}
.h16{height:41.760000px;}
.h26{height:41.790000px;}
.h27{height:41.796000px;}
.h28{height:41.805000px;}
.hd{height:44.280000px;}
.hb{height:45.360000px;}
.hf{height:45.578672px;}
.he{height:45.900000px;}
.h17{height:47.901000px;}
.h18{height:47.902500px;}
.hc{height:50.520937px;}
.h5{height:50.800781px;}
.h3{height:53.302500px;}
.h4{height:60.226875px;}
.h1b{height:62.085000px;}
.h1c{height:62.091000px;}
.h25{height:62.095500px;}
.h1d{height:62.100000px;}
.h22{height:62.130000px;}
.h23{height:62.136000px;}
.h24{height:62.145000px;}
.h2c{height:62.805000px;}
.h9{height:64.546875px;}
.h2{height:66.757500px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h2a{height:71.445000px;}
.h6{height:72.562500px;}
.ha{height:74.004654px;}
.h2b{height:74.704922px;}
.h1f{height:89.296875px;}
.h29{height:92.865000px;}
.h1e{height:94.126230px;}
.h0{height:1188.000000px;}
.w1{width:28.485000px;}
.w31{width:60.120000px;}
.w1e{width:65.010000px;}
.w34{width:66.765000px;}
.wd{width:67.845000px;}
.w23{width:69.105000px;}
.w29{width:69.115500px;}
.w2a{width:69.120000px;}
.w25{width:73.065000px;}
.w38{width:73.425000px;}
.w3d{width:73.461000px;}
.w1d{width:74.685000px;}
.we{width:76.170000px;}
.w37{width:77.076000px;}
.w24{width:77.241000px;}
.w2b{width:77.242500px;}
.w1b{width:78.471000px;}
.w1c{width:78.480000px;}
.w18{width:79.015500px;}
.w19{width:79.020000px;}
.w2f{width:80.265000px;}
.w22{width:82.476000px;}
.w28{width:82.485000px;}
.wc{width:83.001000px;}
.w13{width:83.002500px;}
.w35{width:86.421000px;}
.w3e{width:86.925000px;}
.w3f{width:86.940000px;}
.w1a{width:88.222500px;}
.wf{width:90.355500px;}
.w9{width:90.360000px;}
.wb{width:90.525000px;}
.w11{width:90.535500px;}
.w12{width:90.540000px;}
.wa{width:90.936000px;}
.w10{width:90.945000px;}
.w36{width:92.160000px;}
.w27{width:96.835500px;}
.w21{width:96.840000px;}
.w32{width:98.280000px;}
.w16{width:98.316000px;}
.w17{width:98.325000px;}
.w33{width:98.811000px;}
.w39{width:100.461000px;}
.w3{width:101.520000px;}
.w40{width:105.156000px;}
.w26{width:105.510000px;}
.w4{width:106.020000px;}
.w2e{width:109.476000px;}
.w30{width:113.961000px;}
.w5{width:120.060000px;}
.w2{width:120.240000px;}
.w3c{width:129.765000px;}
.w2d{width:159.120000px;}
.w3a{width:189.741000px;}
.w3b{width:192.810000px;}
.w2c{width:209.901000px;}
.w20{width:268.041000px;}
.w8{width:303.915000px;}
.w15{width:304.041000px;}
.w6{width:482.760000px;}
.w1f{width:776.835000px;}
.w14{width:792.495000px;}
.w7{width:807.300000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:4.680000px;}
.x17{left:7.740000px;}
.x15{left:10.830000px;}
.xf{left:17.355000px;}
.xd{left:20.916000px;}
.xb{left:22.896000px;}
.x11{left:24.330000px;}
.xa{left:26.316000px;}
.x13{left:30.885000px;}
.x16{left:61.920000px;}
.x7{left:99.396000px;}
.xc{left:102.420000px;}
.x5{left:106.056000px;}
.x33{left:108.225000px;}
.x9{left:130.896000px;}
.x8{left:153.390000px;}
.x14{left:158.760000px;}
.x3f{left:160.230000px;}
.x6{left:189.390000px;}
.x34{left:207.765000px;}
.x10{left:256.320000px;}
.x2c{left:273.450000px;}
.x35{left:275.265000px;}
.x3a{left:290.595000px;}
.x26{left:309.675000px;}
.x2e{left:310.755000px;}
.x3{left:312.555000px;}
.x36{left:362.415000px;}
.x18{left:366.555000px;}
.x27{left:368.895000px;}
.x32{left:371.595000px;}
.x3e{left:378.255000px;}
.x20{left:404.895000px;}
.xe{left:442.080000px;}
.x1{left:445.575000px;}
.x37{left:455.475000px;}
.x19{left:457.635000px;}
.x28{left:466.455000px;}
.x2f{left:470.595000px;}
.x4{left:481.785000px;}
.x3b{left:484.140000px;}
.x1e{left:503.205000px;}
.x38{left:533.280000px;}
.x1a{left:549.480000px;}
.x30{left:580.800000px;}
.x21{left:583.860000px;}
.x2d{left:586.905000px;}
.x39{left:607.620000px;}
.x12{left:611.460000px;}
.x3c{left:614.640000px;}
.x29{left:619.500000px;}
.x1b{left:640.740000px;}
.x31{left:661.800000px;}
.x25{left:670.650000px;}
.x22{left:672.810000px;}
.x3d{left:688.830000px;}
.x2a{left:697.470000px;}
.x1c{left:724.470000px;}
.x23{left:752.190000px;}
.x2b{left:771.450000px;}
.x1d{left:793.050000px;}
.x1f{left:806.730000px;}
.x24{left:827.610000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls15{letter-spacing:-2.560000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.161280pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls6{letter-spacing:1.920000pt;}
.ls17{letter-spacing:4.480000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls5{letter-spacing:6.400000pt;}
.ls0{letter-spacing:7.040000pt;}
.ls14{letter-spacing:7.680000pt;}
.lsf{letter-spacing:9.600000pt;}
.lsc{letter-spacing:10.240000pt;}
.ls1c{letter-spacing:17.920000pt;}
.ls1a{letter-spacing:106.346667pt;}
.ls7{letter-spacing:126.186667pt;}
.ls4{letter-spacing:175.978667pt;}
.ws7{word-spacing:-43.200000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-4.480000pt;}
._d{margin-left:-3.408640pt;}
._2{margin-left:-2.145280pt;}
._1{margin-left:-1.039573pt;}
._0{width:1.168640pt;}
._3{width:2.077440pt;}
._f{width:3.129600pt;}
._5{width:4.096000pt;}
._6{width:5.184000pt;}
._7{width:6.222080pt;}
._e{width:7.410773pt;}
._4{width:8.320000pt;}
._a{width:9.328427pt;}
._9{width:10.703573pt;}
._b{width:11.592533pt;}
._11{width:12.774827pt;}
._8{width:14.510720pt;}
._10{width:16.920960pt;}
._22{width:18.591147pt;}
._15{width:19.520000pt;}
._16{width:20.527360pt;}
._14{width:21.710507pt;}
._12{width:22.656000pt;}
._13{width:23.552000pt;}
._1c{width:25.408000pt;}
._21{width:28.800000pt;}
._1b{width:30.400000pt;}
._17{width:42.880000pt;}
._18{width:44.288000pt;}
._1f{width:46.400000pt;}
._20{width:47.504640pt;}
._1d{width:59.392000pt;}
._1e{width:60.335360pt;}
._19{width:75.520000pt;}
._1a{width:76.736000pt;}
._23{width:99.904000pt;}
._28{width:105.664000pt;}
._29{width:106.752000pt;}
._25{width:171.968000pt;}
._24{width:196.992000pt;}
._26{width:238.208000pt;}
._27{width:239.418027pt;}
._2a{width:752.138667pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:3.066667pt;}
.yaa{bottom:3.666667pt;}
.y88{bottom:3.680000pt;}
.y99{bottom:3.986667pt;}
.yad{bottom:4.000000pt;}
.ye2{bottom:4.013333pt;}
.y92{bottom:4.173333pt;}
.y8e{bottom:4.320000pt;}
.y90{bottom:4.333333pt;}
.ydc{bottom:4.346667pt;}
.y79{bottom:4.666667pt;}
.y124{bottom:5.280000pt;}
.y76{bottom:5.666667pt;}
.y123{bottom:6.560000pt;}
.y2{bottom:7.232000pt;}
.y80{bottom:8.706667pt;}
.y7c{bottom:9.186667pt;}
.y96{bottom:9.746667pt;}
.y7e{bottom:12.226667pt;}
.y8a{bottom:12.800000pt;}
.ya8{bottom:12.946667pt;}
.yb3{bottom:13.120000pt;}
.yb8{bottom:13.133333pt;}
.y9a{bottom:13.266667pt;}
.yaf{bottom:13.280000pt;}
.ybd{bottom:13.293333pt;}
.ydf{bottom:13.306667pt;}
.y93{bottom:13.440000pt;}
.ya9{bottom:22.066667pt;}
.y8b{bottom:22.080000pt;}
.y98{bottom:22.386667pt;}
.yac{bottom:22.400000pt;}
.y91{bottom:22.560000pt;}
.ydd{bottom:22.586667pt;}
.y8d{bottom:22.720000pt;}
.ydb{bottom:22.746667pt;}
.y78{bottom:25.466667pt;}
.y75{bottom:26.466667pt;}
.y7f{bottom:27.586667pt;}
.y7b{bottom:28.066667pt;}
.y95{bottom:28.146667pt;}
.yfa{bottom:30.706667pt;}
.yb6{bottom:31.520000pt;}
.y9d{bottom:31.666667pt;}
.ybb{bottom:31.680000pt;}
.y9c{bottom:40.786667pt;}
.yb5{bottom:40.800000pt;}
.y116{bottom:41.440000pt;}
.yf9{bottom:49.106667pt;}
.y1{bottom:50.240000pt;}
.yf7{bottom:68.146667pt;}
.y4{bottom:97.632000pt;}
.y5d{bottom:103.072000pt;}
.y114{bottom:107.872000pt;}
.y2f{bottom:111.392000pt;}
.y13c{bottom:113.632000pt;}
.yc9{bottom:113.792000pt;}
.yf5{bottom:114.752000pt;}
.y6d{bottom:117.472000pt;}
.y5c{bottom:121.472000pt;}
.y113{bottom:126.272000pt;}
.y2e{bottom:129.792000pt;}
.y86{bottom:131.552000pt;}
.yc8{bottom:132.032000pt;}
.yf4{bottom:133.152000pt;}
.y6c{bottom:135.866667pt;}
.y5b{bottom:139.866667pt;}
.y112{bottom:144.666667pt;}
.y9b{bottom:146.600000pt;}
.y2d{bottom:148.186667pt;}
.y13b{bottom:150.426667pt;}
.yc7{bottom:150.906667pt;}
.yf3{bottom:151.546667pt;}
.y6b{bottom:154.266667pt;}
.y5a{bottom:158.266667pt;}
.y111{bottom:163.066667pt;}
.y2c{bottom:166.586667pt;}
.y81{bottom:167.520000pt;}
.y13a{bottom:168.826667pt;}
.yc6{bottom:169.306667pt;}
.yf2{bottom:169.946667pt;}
.y6a{bottom:172.666667pt;}
.y59{bottom:176.666667pt;}
.y110{bottom:181.466667pt;}
.y2b{bottom:184.986667pt;}
.y139{bottom:187.226667pt;}
.yc5{bottom:187.706667pt;}
.yf1{bottom:188.026667pt;}
.y58{bottom:195.066667pt;}
.y10f{bottom:199.546667pt;}
.y97{bottom:202.440000pt;}
.y2a{bottom:203.386667pt;}
.y138{bottom:205.626667pt;}
.yc4{bottom:206.106667pt;}
.yf0{bottom:206.746667pt;}
.y69{bottom:206.906667pt;}
.y57{bottom:213.466667pt;}
.y10e{bottom:217.946667pt;}
.y29{bottom:221.786667pt;}
.y137{bottom:224.026667pt;}
.yc3{bottom:224.506667pt;}
.yef{bottom:225.146667pt;}
.y68{bottom:228.026667pt;}
.y73{bottom:231.546667pt;}
.y56{bottom:231.866667pt;}
.y10d{bottom:236.666667pt;}
.y77{bottom:237.760000pt;}
.y94{bottom:239.880000pt;}
.y28{bottom:240.186667pt;}
.y136{bottom:242.426667pt;}
.yc2{bottom:242.906667pt;}
.yee{bottom:243.546667pt;}
.y67{bottom:249.306667pt;}
.y72{bottom:249.946667pt;}
.y55{bottom:250.266667pt;}
.y10c{bottom:255.066667pt;}
.y27{bottom:258.586667pt;}
.y135{bottom:260.826667pt;}
.yc1{bottom:261.306667pt;}
.yed{bottom:261.946667pt;}
.y71{bottom:268.346667pt;}
.y54{bottom:268.666667pt;}
.y66{bottom:270.426667pt;}
.y10b{bottom:273.466667pt;}
.y26{bottom:276.986667pt;}
.y134{bottom:279.226667pt;}
.yc0{bottom:279.386667pt;}
.yec{bottom:280.226667pt;}
.y8f{bottom:283.093333pt;}
.y8c{bottom:283.106667pt;}
.y70{bottom:286.786667pt;}
.y53{bottom:287.106667pt;}
.y65{bottom:291.586667pt;}
.y10a{bottom:291.906667pt;}
.ybf{bottom:294.773333pt;}
.ybe{bottom:294.786667pt;}
.y25{bottom:295.426667pt;}
.y133{bottom:297.666667pt;}
.yeb{bottom:299.106667pt;}
.y52{bottom:305.506667pt;}
.y7a{bottom:307.200000pt;}
.y109{bottom:310.306667pt;}
.y64{bottom:312.706667pt;}
.y7d{bottom:313.600000pt;}
.y24{bottom:313.826667pt;}
.y132{bottom:316.066667pt;}
.yea{bottom:317.986667pt;}
.y89{bottom:321.026667pt;}
.y51{bottom:323.906667pt;}
.y108{bottom:328.706667pt;}
.y23{bottom:332.226667pt;}
.y63{bottom:333.986667pt;}
.y131{bottom:334.466667pt;}
.ye9{bottom:336.386667pt;}
.y50{bottom:342.306667pt;}
.y107{bottom:347.106667pt;}
.ybc{bottom:350.613333pt;}
.y22{bottom:350.626667pt;}
.y130{bottom:352.866667pt;}
.ye8{bottom:354.786667pt;}
.y62{bottom:355.106667pt;}
.y87{bottom:358.466667pt;}
.y4f{bottom:360.706667pt;}
.y106{bottom:365.506667pt;}
.y74{bottom:366.720000pt;}
.y21{bottom:369.026667pt;}
.y12f{bottom:371.266667pt;}
.ye7{bottom:373.186667pt;}
.y61{bottom:376.226667pt;}
.y4e{bottom:379.106667pt;}
.y105{bottom:380.546667pt;}
.y20{bottom:387.426667pt;}
.y12e{bottom:389.666667pt;}
.ye6{bottom:391.586667pt;}
.y85{bottom:397.186667pt;}
.y60{bottom:397.346667pt;}
.y4d{bottom:397.506667pt;}
.y1f{bottom:405.826667pt;}
.yba{bottom:406.613333pt;}
.yb9{bottom:406.626667pt;}
.y12d{bottom:407.746667pt;}
.ye5{bottom:409.986667pt;}
.y5f{bottom:415.586667pt;}
.y4c{bottom:415.906667pt;}
.y104{bottom:417.986667pt;}
.y1e{bottom:423.906667pt;}
.y12c{bottom:426.466667pt;}
.ye4{bottom:428.386667pt;}
.y4b{bottom:434.306667pt;}
.y1d{bottom:442.626667pt;}
.y12b{bottom:444.866667pt;}
.ye3{bottom:446.786667pt;}
.y4a{bottom:452.706667pt;}
.y103{bottom:459.106667pt;}
.y1c{bottom:461.026667pt;}
.ye1{bottom:461.813333pt;}
.ye0{bottom:461.826667pt;}
.yb7{bottom:462.453333pt;}
.yb4{bottom:462.466667pt;}
.y12a{bottom:463.266667pt;}
.y49{bottom:471.106667pt;}
.y102{bottom:477.506667pt;}
.y1b{bottom:479.426667pt;}
.y129{bottom:481.666667pt;}
.y13e{bottom:489.346667pt;}
.y48{bottom:489.506667pt;}
.y101{bottom:496.226667pt;}
.y1a{bottom:497.826667pt;}
.yde{bottom:499.253333pt;}
.yda{bottom:499.266667pt;}
.y128{bottom:500.066667pt;}
.y84{bottom:507.613333pt;}
.y47{bottom:507.933333pt;}
.y100{bottom:514.653333pt;}
.yb1{bottom:518.333333pt;}
.yb2{bottom:518.346667pt;}
.y127{bottom:518.493333pt;}
.y46{bottom:526.333333pt;}
.y19{bottom:532.253333pt;}
.yff{bottom:533.053333pt;}
.y126{bottom:536.893333pt;}
.yd9{bottom:537.053333pt;}
.y45{bottom:544.733333pt;}
.yfe{bottom:551.453333pt;}
.y18{bottom:553.373333pt;}
.y125{bottom:555.293333pt;}
.yb0{bottom:555.773333pt;}
.y44{bottom:563.133333pt;}
.yfd{bottom:569.853333pt;}
.y122{bottom:570.333333pt;}
.y17{bottom:574.493333pt;}
.y13d{bottom:581.213333pt;}
.y43{bottom:581.533333pt;}
.yfc{bottom:584.893333pt;}
.y121{bottom:591.933333pt;}
.yd8{bottom:592.893333pt;}
.yab{bottom:593.213333pt;}
.yae{bottom:593.226667pt;}
.y16{bottom:595.613333pt;}
.y42{bottom:599.933333pt;}
.yfb{bottom:604.093333pt;}
.y15{bottom:616.893333pt;}
.y41{bottom:618.333333pt;}
.yd6{bottom:630.333333pt;}
.yd7{bottom:630.346667pt;}
.ya7{bottom:630.666667pt;}
.y120{bottom:633.053333pt;}
.y40{bottom:636.733333pt;}
.y14{bottom:638.013333pt;}
.yf6{bottom:641.546667pt;}
.y11f{bottom:651.453333pt;}
.y3f{bottom:655.133333pt;}
.y13{bottom:659.133333pt;}
.yf8{bottom:660.586667pt;}
.yd5{bottom:667.946667pt;}
.ya6{bottom:668.093333pt;}
.y11e{bottom:670.173333pt;}
.y5e{bottom:673.533333pt;}
.y12{bottom:680.253333pt;}
.yd4{bottom:686.973333pt;}
.y11d{bottom:688.573333pt;}
.ya5{bottom:691.293333pt;}
.y3e{bottom:691.933333pt;}
.y11{bottom:701.533333pt;}
.y11c{bottom:706.973333pt;}
.ya4{bottom:709.373333pt;}
.yd3{bottom:709.693333pt;}
.y3d{bottom:710.333333pt;}
.y10{bottom:722.653333pt;}
.y11b{bottom:725.373333pt;}
.ya3{bottom:728.133333pt;}
.yd2{bottom:728.453333pt;}
.y3c{bottom:728.773333pt;}
.y11a{bottom:743.493333pt;}
.yf{bottom:743.813333pt;}
.ya2{bottom:746.533333pt;}
.yd1{bottom:746.853333pt;}
.y3b{bottom:747.173333pt;}
.y119{bottom:758.853333pt;}
.ye{bottom:764.933333pt;}
.yd0{bottom:765.253333pt;}
.y3a{bottom:765.573333pt;}
.y118{bottom:778.053333pt;}
.yd{bottom:783.173333pt;}
.ya1{bottom:783.333333pt;}
.ycf{bottom:783.653333pt;}
.y39{bottom:783.973333pt;}
.yc{bottom:801.573333pt;}
.ya0{bottom:801.733333pt;}
.y6f{bottom:802.053333pt;}
.y38{bottom:802.373333pt;}
.y9f{bottom:819.973333pt;}
.yb{bottom:820.293333pt;}
.y6e{bottom:820.453333pt;}
.y37{bottom:820.773333pt;}
.y115{bottom:833.893333pt;}
.ya{bottom:838.373333pt;}
.y9e{bottom:838.693333pt;}
.yce{bottom:838.853333pt;}
.y36{bottom:839.173333pt;}
.y117{bottom:852.933333pt;}
.y9{bottom:856.773333pt;}
.ycd{bottom:857.253333pt;}
.y35{bottom:857.573333pt;}
.y8{bottom:875.493333pt;}
.ycc{bottom:875.653333pt;}
.y34{bottom:875.973333pt;}
.y7{bottom:893.573333pt;}
.y83{bottom:894.053333pt;}
.y33{bottom:894.373333pt;}
.ycb{bottom:912.453333pt;}
.y32{bottom:912.773333pt;}
.y6{bottom:927.973333pt;}
.yca{bottom:930.853333pt;}
.y31{bottom:931.173333pt;}
.y5{bottom:949.093333pt;}
.y30{bottom:949.573333pt;}
.y3{bottom:984.480000pt;}
.h11{height:18.080000pt;}
.h12{height:18.386667pt;}
.h20{height:18.400000pt;}
.h2d{height:20.960000pt;}
.h1{height:21.960000pt;}
.h10{height:26.240000pt;}
.h13{height:36.786667pt;}
.h19{height:36.792000pt;}
.h21{height:36.796000pt;}
.h1a{height:36.800000pt;}
.h14{height:37.106667pt;}
.h15{height:37.116000pt;}
.h16{height:37.120000pt;}
.h26{height:37.146667pt;}
.h27{height:37.152000pt;}
.h28{height:37.160000pt;}
.hd{height:39.360000pt;}
.hb{height:40.320000pt;}
.hf{height:40.514375pt;}
.he{height:40.800000pt;}
.h17{height:42.578667pt;}
.h18{height:42.580000pt;}
.hc{height:44.907500pt;}
.h5{height:45.156250pt;}
.h3{height:47.380000pt;}
.h4{height:53.535000pt;}
.h1b{height:55.186667pt;}
.h1c{height:55.192000pt;}
.h25{height:55.196000pt;}
.h1d{height:55.200000pt;}
.h22{height:55.226667pt;}
.h23{height:55.232000pt;}
.h24{height:55.240000pt;}
.h2c{height:55.826667pt;}
.h9{height:57.375000pt;}
.h2{height:59.340000pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h2a{height:63.506667pt;}
.h6{height:64.500000pt;}
.ha{height:65.781915pt;}
.h2b{height:66.404375pt;}
.h1f{height:79.375000pt;}
.h29{height:82.546667pt;}
.h1e{height:83.667760pt;}
.h0{height:1056.000000pt;}
.w1{width:25.320000pt;}
.w31{width:53.440000pt;}
.w1e{width:57.786667pt;}
.w34{width:59.346667pt;}
.wd{width:60.306667pt;}
.w23{width:61.426667pt;}
.w29{width:61.436000pt;}
.w2a{width:61.440000pt;}
.w25{width:64.946667pt;}
.w38{width:65.266667pt;}
.w3d{width:65.298667pt;}
.w1d{width:66.386667pt;}
.we{width:67.706667pt;}
.w37{width:68.512000pt;}
.w24{width:68.658667pt;}
.w2b{width:68.660000pt;}
.w1b{width:69.752000pt;}
.w1c{width:69.760000pt;}
.w18{width:70.236000pt;}
.w19{width:70.240000pt;}
.w2f{width:71.346667pt;}
.w22{width:73.312000pt;}
.w28{width:73.320000pt;}
.wc{width:73.778667pt;}
.w13{width:73.780000pt;}
.w35{width:76.818667pt;}
.w3e{width:77.266667pt;}
.w3f{width:77.280000pt;}
.w1a{width:78.420000pt;}
.wf{width:80.316000pt;}
.w9{width:80.320000pt;}
.wb{width:80.466667pt;}
.w11{width:80.476000pt;}
.w12{width:80.480000pt;}
.wa{width:80.832000pt;}
.w10{width:80.840000pt;}
.w36{width:81.920000pt;}
.w27{width:86.076000pt;}
.w21{width:86.080000pt;}
.w32{width:87.360000pt;}
.w16{width:87.392000pt;}
.w17{width:87.400000pt;}
.w33{width:87.832000pt;}
.w39{width:89.298667pt;}
.w3{width:90.240000pt;}
.w40{width:93.472000pt;}
.w26{width:93.786667pt;}
.w4{width:94.240000pt;}
.w2e{width:97.312000pt;}
.w30{width:101.298667pt;}
.w5{width:106.720000pt;}
.w2{width:106.880000pt;}
.w3c{width:115.346667pt;}
.w2d{width:141.440000pt;}
.w3a{width:168.658667pt;}
.w3b{width:171.386667pt;}
.w2c{width:186.578667pt;}
.w20{width:238.258667pt;}
.w8{width:270.146667pt;}
.w15{width:270.258667pt;}
.w6{width:429.120000pt;}
.w1f{width:690.520000pt;}
.w14{width:704.440000pt;}
.w7{width:717.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.160000pt;}
.x17{left:6.880000pt;}
.x15{left:9.626667pt;}
.xf{left:15.426667pt;}
.xd{left:18.592000pt;}
.xb{left:20.352000pt;}
.x11{left:21.626667pt;}
.xa{left:23.392000pt;}
.x13{left:27.453333pt;}
.x16{left:55.040000pt;}
.x7{left:88.352000pt;}
.xc{left:91.040000pt;}
.x5{left:94.272000pt;}
.x33{left:96.200000pt;}
.x9{left:116.352000pt;}
.x8{left:136.346667pt;}
.x14{left:141.120000pt;}
.x3f{left:142.426667pt;}
.x6{left:168.346667pt;}
.x34{left:184.680000pt;}
.x10{left:227.840000pt;}
.x2c{left:243.066667pt;}
.x35{left:244.680000pt;}
.x3a{left:258.306667pt;}
.x26{left:275.266667pt;}
.x2e{left:276.226667pt;}
.x3{left:277.826667pt;}
.x36{left:322.146667pt;}
.x18{left:325.826667pt;}
.x27{left:327.906667pt;}
.x32{left:330.306667pt;}
.x3e{left:336.226667pt;}
.x20{left:359.906667pt;}
.xe{left:392.960000pt;}
.x1{left:396.066667pt;}
.x37{left:404.866667pt;}
.x19{left:406.786667pt;}
.x28{left:414.626667pt;}
.x2f{left:418.306667pt;}
.x4{left:428.253333pt;}
.x3b{left:430.346667pt;}
.x1e{left:447.293333pt;}
.x38{left:474.026667pt;}
.x1a{left:488.426667pt;}
.x30{left:516.266667pt;}
.x21{left:518.986667pt;}
.x2d{left:521.693333pt;}
.x39{left:540.106667pt;}
.x12{left:543.520000pt;}
.x3c{left:546.346667pt;}
.x29{left:550.666667pt;}
.x1b{left:569.546667pt;}
.x31{left:588.266667pt;}
.x25{left:596.133333pt;}
.x22{left:598.053333pt;}
.x3d{left:612.293333pt;}
.x2a{left:619.973333pt;}
.x1c{left:643.973333pt;}
.x23{left:668.613333pt;}
.x2b{left:685.733333pt;}
.x1d{left:704.933333pt;}
.x1f{left:717.093333pt;}
.x24{left:735.653333pt;}
}




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