
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e65e3c9ebf24e7fbacb61744.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_396f4f9c5e6836b0c87485a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_b46cb2f60db96b8faf0ef809.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b722f0660029df652105b72c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_b66cc775c2e28e8ecaafc7f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_e2e460c988a8b726b67cb5fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9072540e71effb6450a0fdc3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_20ec77c8717cb674409aa70d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_d3bbc5b5ed0502915b1171f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f3e4d01123e52c1a89990a38.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls6{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.370200px;}
.ls8{letter-spacing:-0.326400px;}
.ls1b{letter-spacing:-0.187200px;}
.ls19{letter-spacing:-0.184200px;}
.ls12{letter-spacing:-0.097800px;}
.ls18{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.086400px;}
.ls1a{letter-spacing:0.126600px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.211680px;}
.ls16{letter-spacing:0.328800px;}
.ls9{letter-spacing:0.351600px;}
.ls14{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385800px;}
.ls10{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.780480px;}
.ls17{letter-spacing:47.466720px;}
.lse{letter-spacing:64.026720px;}
.ls15{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.wsb{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsd{word-spacing:-13.504200px;}
.wsf{word-spacing:-13.476000px;}
.ws10{word-spacing:-13.273800px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wse{word-spacing:-13.111200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.wsa{word-spacing:-8.614200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._11{margin-left:-3.789840px;}
._10{margin-left:-2.619360px;}
._0{margin-left:-1.026000px;}
._1{width:1.110000px;}
._3{width:2.640720px;}
._4{width:4.445040px;}
._a{width:5.882996px;}
._9{width:6.991800px;}
._17{width:8.007717px;}
._f{width:9.012240px;}
._e{width:10.278720px;}
._d{width:11.713199px;}
._b{width:14.188799px;}
._7{width:16.314600px;}
._8{width:17.415600px;}
._c{width:18.546360px;}
._2{width:19.750800px;}
._6{width:20.941201px;}
._5{width:22.171199px;}
._16{width:23.545440px;}
._12{width:24.586800px;}
._19{width:28.505520px;}
._1a{width:33.240240px;}
._1b{width:34.451280px;}
._18{width:35.761920px;}
._1c{width:38.129280px;}
._13{width:65.402880px;}
._15{width:110.436480px;}
._14{width:202.828800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:45.360000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y94{bottom:7.740000px;}
.y8e{bottom:7.920000px;}
.y9b{bottom:7.965000px;}
.y93{bottom:25.380000px;}
.y91{bottom:25.560000px;}
.y9a{bottom:25.605000px;}
.y9d{bottom:43.020000px;}
.y99{bottom:43.065000px;}
.y96{bottom:43.200000px;}
.y90{bottom:43.230000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.ya3{bottom:115.056000px;}
.y77{bottom:115.416000px;}
.y13a{bottom:117.036000px;}
.ye1{bottom:117.756000px;}
.y48{bottom:124.056000px;}
.ya2{bottom:132.696000px;}
.y76{bottom:133.056000px;}
.y139{bottom:134.676000px;}
.ye0{bottom:135.396000px;}
.y28{bottom:139.356000px;}
.ybe{bottom:141.876000px;}
.y47{bottom:142.416000px;}
.y10f{bottom:150.150000px;}
.ya1{bottom:150.330000px;}
.y75{bottom:150.510000px;}
.y138{bottom:152.310000px;}
.y17c{bottom:153.930000px;}
.yf0{bottom:154.110000px;}
.y27{bottom:156.990000px;}
.ybd{bottom:159.510000px;}
.y46{bottom:160.770000px;}
.ydf{bottom:161.850000px;}
.y5b{bottom:162.930000px;}
.ya0{bottom:167.790000px;}
.y74{bottom:168.150000px;}
.y137{bottom:169.770000px;}
.y155{bottom:170.490000px;}
.y17b{bottom:171.570000px;}
.yef{bottom:171.750000px;}
.y26{bottom:174.450000px;}
.ybc{bottom:177.150000px;}
.y5a{bottom:180.570000px;}
.y9f{bottom:185.430000px;}
.y73{bottom:185.790000px;}
.y136{bottom:187.410000px;}
.y45{bottom:188.490000px;}
.y25{bottom:192.090000px;}
.ybb{bottom:194.790000px;}
.yde{bottom:197.490000px;}
.y59{bottom:198.030000px;}
.y72{bottom:203.250000px;}
.y135{bottom:205.050000px;}
.y154{bottom:206.130000px;}
.yee{bottom:207.210000px;}
.y9e{bottom:211.890000px;}
.yba{bottom:212.250000px;}
.ydd{bottom:215.130000px;}
.y58{bottom:215.670000px;}
.y71{bottom:220.890000px;}
.y153{bottom:223.770000px;}
.yed{bottom:224.850000px;}
.y24{bottom:227.550000px;}
.yb9{bottom:229.890000px;}
.y134{bottom:231.510000px;}
.ydc{bottom:232.770000px;}
.y17a{bottom:233.310000px;}
.y44{bottom:236.910000px;}
.y70{bottom:238.530000px;}
.y152{bottom:241.410000px;}
.yec{bottom:242.490000px;}
.y9c{bottom:245.010000px;}
.y23{bottom:245.190000px;}
.yb8{bottom:247.530000px;}
.ydb{bottom:250.230000px;}
.y57{bottom:251.310000px;}
.y43{bottom:254.550000px;}
.y151{bottom:259.050000px;}
.y179{bottom:259.770000px;}
.yeb{bottom:260.130000px;}
.y22{bottom:262.830000px;}
.yb7{bottom:264.990000px;}
.y10e{bottom:265.170000px;}
.y133{bottom:267.330000px;}
.yda{bottom:267.870000px;}
.y56{bottom:268.950000px;}
.y42{bottom:272.190000px;}
.y6f{bottom:273.990000px;}
.y150{bottom:276.510000px;}
.y178{bottom:277.410000px;}
.yb6{bottom:282.630000px;}
.y10d{bottom:282.810000px;}
.yd9{bottom:285.510000px;}
.y21{bottom:289.650000px;}
.y6e{bottom:291.630000px;}
.y14f{bottom:294.150000px;}
.yea{bottom:295.590000px;}
.yb5{bottom:300.270000px;}
.y10c{bottom:300.450000px;}
.y55{bottom:300.990000px;}
.yd8{bottom:303.150000px;}
.y177{bottom:303.870000px;}
.y41{bottom:307.290000px;}
.y98{bottom:307.470000px;}
.y14e{bottom:311.835000px;}
.y132{bottom:315.795000px;}
.yb4{bottom:317.955000px;}
.yd7{bottom:320.655000px;}
.y176{bottom:321.555000px;}
.y6d{bottom:323.715000px;}
.y40{bottom:324.975000px;}
.y10b{bottom:326.955000px;}
.ye9{bottom:327.855000px;}
.y131{bottom:333.435000px;}
.yb3{bottom:335.415000px;}
.y20{bottom:338.295000px;}
.y14d{bottom:338.475000px;}
.y175{bottom:339.195000px;}
.y130{bottom:351.075000px;}
.yd6{bottom:355.935000px;}
.y10a{bottom:359.535000px;}
.y3f{bottom:360.435000px;}
.yb2{bottom:362.055000px;}
.y174{bottom:365.835000px;}
.y12f{bottom:368.535000px;}
.y97{bottom:369.975000px;}
.yd5{bottom:373.395000px;}
.y1f{bottom:375.375000px;}
.y3e{bottom:378.075000px;}
.y173{bottom:383.475000px;}
.y12e{bottom:386.175000px;}
.y14c{bottom:386.895000px;}
.y1e{bottom:393.015000px;}
.y109{bottom:395.175000px;}
.y3d{bottom:395.715000px;}
.yb1{bottom:397.515000px;}
.yd4{bottom:400.035000px;}
.y12d{bottom:403.815000px;}
.y14b{bottom:404.535000px;}
.y172{bottom:409.935000px;}
.y1d{bottom:410.655000px;}
.y108{bottom:412.815000px;}
.y3c{bottom:413.355000px;}
.yb0{bottom:415.155000px;}
.y198{bottom:421.815000px;}
.y14a{bottom:422.175000px;}
.y171{bottom:427.575000px;}
.y1c{bottom:428.115000px;}
.y107{bottom:430.275000px;}
.y3b{bottom:430.815000px;}
.y95{bottom:432.435000px;}
.yaf{bottom:432.795000px;}
.yd3{bottom:435.495000px;}
.y197{bottom:439.455000px;}
.y149{bottom:439.635000px;}
.y1b{bottom:445.755000px;}
.y106{bottom:447.915000px;}
.y3a{bottom:448.455000px;}
.yae{bottom:450.435000px;}
.yd2{bottom:453.135000px;}
.y170{bottom:454.035000px;}
.y196{bottom:456.915000px;}
.y148{bottom:457.275000px;}
.y1a{bottom:463.395000px;}
.y105{bottom:465.555000px;}
.y12c{bottom:465.915000px;}
.y39{bottom:466.095000px;}
.yad{bottom:467.895000px;}
.yd1{bottom:470.775000px;}
.y16f{bottom:471.675000px;}
.y147{bottom:474.915000px;}
.y19{bottom:480.855000px;}
.y104{bottom:483.015000px;}
.y38{bottom:483.555000px;}
.yac{bottom:485.535000px;}
.yd0{bottom:488.415000px;}
.y146{bottom:492.555000px;}
.y92{bottom:495.075000px;}
.y16e{bottom:498.315000px;}
.y18{bottom:498.495000px;}
.y103{bottom:500.655000px;}
.y12b{bottom:501.015000px;}
.y37{bottom:501.195000px;}
.yab{bottom:503.175000px;}
.ycf{bottom:506.055000px;}
.y16d{bottom:515.955000px;}
.y17{bottom:516.135000px;}
.y102{bottom:518.295000px;}
.y12a{bottom:518.655000px;}
.y36{bottom:518.835000px;}
.y145{bottom:519.015000px;}
.yaa{bottom:520.815000px;}
.yce{bottom:523.515000px;}
.y195{bottom:527.655000px;}
.y16{bottom:533.775000px;}
.y101{bottom:535.935000px;}
.y35{bottom:536.295000px;}
.ya9{bottom:538.275000px;}
.y8f{bottom:539.895000px;}
.ycd{bottom:541.155000px;}
.y16c{bottom:542.415000px;}
.y194{bottom:545.295000px;}
.y15{bottom:551.235000px;}
.y100{bottom:553.395000px;}
.y34{bottom:553.935000px;}
.y144{bottom:554.655000px;}
.ya8{bottom:555.915000px;}
.y16b{bottom:560.055000px;}
.ycc{bottom:567.795000px;}
.y14{bottom:568.875000px;}
.yff{bottom:571.035000px;}
.y129{bottom:571.395000px;}
.y33{bottom:571.575000px;}
.y193{bottom:571.935000px;}
.y143{bottom:572.295000px;}
.ya7{bottom:582.375000px;}
.y13{bottom:586.545000px;}
.y16a{bottom:586.725000px;}
.yfe{bottom:588.705000px;}
.y128{bottom:589.065000px;}
.y32{bottom:589.245000px;}
.y192{bottom:589.605000px;}
.ycb{bottom:600.225000px;}
.y8d{bottom:602.385000px;}
.y12{bottom:604.005000px;}
.y142{bottom:604.365000px;}
.yfd{bottom:606.165000px;}
.y31{bottom:606.705000px;}
.y191{bottom:616.065000px;}
.ya6{bottom:618.045000px;}
.y11{bottom:621.645000px;}
.y169{bottom:621.825000px;}
.yfc{bottom:623.805000px;}
.y127{bottom:624.165000px;}
.y30{bottom:624.345000px;}
.ye8{bottom:632.805000px;}
.yca{bottom:635.865000px;}
.y10{bottom:639.285000px;}
.yfb{bottom:641.445000px;}
.y190{bottom:642.705000px;}
.y168{bottom:648.465000px;}
.ya5{bottom:650.265000px;}
.y126{bottom:650.805000px;}
.y8c{bottom:651.165000px;}
.yc9{bottom:653.505000px;}
.yf{bottom:656.745000px;}
.yfa{bottom:658.905000px;}
.y2f{bottom:659.805000px;}
.y18f{bottom:660.345000px;}
.y167{bottom:666.105000px;}
.ye7{bottom:668.625000px;}
.yc8{bottom:671.145000px;}
.ye{bottom:674.385000px;}
.yf9{bottom:676.545000px;}
.y8b{bottom:677.985000px;}
.y125{bottom:686.265000px;}
.y18e{bottom:686.805000px;}
.yc7{bottom:688.605000px;}
.yd{bottom:692.025000px;}
.y166{bottom:692.565000px;}
.yf8{bottom:703.005000px;}
.y124{bottom:703.905000px;}
.y18d{bottom:704.445000px;}
.yc6{bottom:706.245000px;}
.y165{bottom:710.205000px;}
.y6c{bottom:716.505000px;}
.ye6{bottom:716.865000px;}
.yc{bottom:718.665000px;}
.y123{bottom:721.545000px;}
.y18c{bottom:722.085000px;}
.yc5{bottom:723.885000px;}
.y8a{bottom:726.405000px;}
.ye5{bottom:734.505000px;}
.y164{bottom:736.665000px;}
.yf7{bottom:738.825000px;}
.y122{bottom:739.185000px;}
.yc4{bottom:741.525000px;}
.y89{bottom:744.045000px;}
.y18b{bottom:748.545000px;}
.y6b{bottom:752.145000px;}
.y163{bottom:754.305000px;}
.y121{bottom:756.645000px;}
.yc3{bottom:758.985000px;}
.y88{bottom:761.505000px;}
.y18a{bottom:766.185000px;}
.yb{bottom:767.085000px;}
.y6a{bottom:769.785000px;}
.y120{bottom:774.285000px;}
.yc2{bottom:776.625000px;}
.ye4{bottom:778.605000px;}
.y87{bottom:779.145000px;}
.y162{bottom:780.945000px;}
.y69{bottom:787.245000px;}
.y11f{bottom:791.925000px;}
.y189{bottom:792.825000px;}
.y86{bottom:796.785000px;}
.y161{bottom:798.585000px;}
.ya{bottom:802.905000px;}
.yc1{bottom:803.085000px;}
.y68{bottom:804.885000px;}
.y11e{bottom:809.565000px;}
.y188{bottom:810.465000px;}
.y85{bottom:814.245000px;}
.y67{bottom:822.525000px;}
.y160{bottom:825.045000px;}
.y11d{bottom:827.025000px;}
.y84{bottom:831.885000px;}
.y187{bottom:836.925000px;}
.yc0{bottom:838.725000px;}
.y9{bottom:838.905000px;}
.y66{bottom:840.165000px;}
.y15f{bottom:842.685000px;}
.y11c{bottom:844.665000px;}
.y83{bottom:849.525000px;}
.y186{bottom:854.565000px;}
.y65{bottom:857.625000px;}
.y11b{bottom:862.350000px;}
.y82{bottom:867.210000px;}
.y15e{bottom:869.550000px;}
.ybf{bottom:870.990000px;}
.y64{bottom:875.310000px;}
.y8{bottom:878.730000px;}
.y11a{bottom:879.810000px;}
.y185{bottom:881.070000px;}
.y81{bottom:884.670000px;}
.y63{bottom:892.950000px;}
.y7{bottom:896.730000px;}
.y119{bottom:897.450000px;}
.y54{bottom:898.530000px;}
.y184{bottom:898.710000px;}
.yf6{bottom:901.770000px;}
.y80{bottom:902.310000px;}
.y141{bottom:904.830000px;}
.y6{bottom:914.730000px;}
.y118{bottom:915.090000px;}
.y183{bottom:916.350000px;}
.y15d{bottom:917.970000px;}
.y62{bottom:919.410000px;}
.ye3{bottom:919.950000px;}
.y140{bottom:922.470000px;}
.y7f{bottom:928.770000px;}
.y117{bottom:932.550000px;}
.y53{bottom:934.170000px;}
.yf5{bottom:937.410000px;}
.y13f{bottom:940.110000px;}
.y182{bottom:942.810000px;}
.y15c{bottom:944.790000px;}
.ye2{bottom:946.410000px;}
.y5{bottom:947.130000px;}
.y116{bottom:950.190000px;}
.y52{bottom:951.810000px;}
.y61{bottom:955.050000px;}
.y13e{bottom:957.570000px;}
.y181{bottom:960.450000px;}
.y7e{bottom:964.410000px;}
.y115{bottom:967.830000px;}
.y51{bottom:969.270000px;}
.y60{bottom:972.690000px;}
.y13d{bottom:975.210000px;}
.y15b{bottom:981.870000px;}
.y7d{bottom:982.050000px;}
.y4{bottom:985.290000px;}
.y114{bottom:985.470000px;}
.y50{bottom:986.910000px;}
.y180{bottom:987.630000px;}
.y5f{bottom:990.150000px;}
.y7c{bottom:999.690000px;}
.y13c{bottom:1001.850000px;}
.y113{bottom:1002.930000px;}
.y4f{bottom:1004.550000px;}
.y5e{bottom:1007.790000px;}
.y15a{bottom:1008.690000px;}
.y3{bottom:1009.950000px;}
.y7b{bottom:1017.150000px;}
.y4e{bottom:1022.010000px;}
.y5d{bottom:1025.430000px;}
.y112{bottom:1029.570000px;}
.y13b{bottom:1034.430000px;}
.y7a{bottom:1034.790000px;}
.yf4{bottom:1043.070000px;}
.y159{bottom:1045.770000px;}
.y4d{bottom:1048.650000px;}
.y5c{bottom:1051.890000px;}
.y17f{bottom:1052.070000px;}
.y79{bottom:1052.430000px;}
.yf3{bottom:1060.530000px;}
.y158{bottom:1063.410000px;}
.y111{bottom:1065.390000px;}
.ya4{bottom:1069.890000px;}
.y78{bottom:1070.070000px;}
.y17e{bottom:1078.530000px;}
.y4c{bottom:1084.110000px;}
.yf2{bottom:1087.170000px;}
.y2e{bottom:1087.530000px;}
.y157{bottom:1090.230000px;}
.y17d{bottom:1096.170000px;}
.y4b{bottom:1102.470000px;}
.y2d{bottom:1105.170000px;}
.y110{bottom:1113.630000px;}
.y4a{bottom:1121.010000px;}
.yf1{bottom:1122.630000px;}
.y2c{bottom:1122.810000px;}
.y156{bottom:1127.490000px;}
.y49{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.640000px;}
.h2{height:26.995781px;}
.h6{height:35.477578px;}
.h3{height:38.405391px;}
.hd{height:44.100000px;}
.h7{height:50.597578px;}
.h5{height:56.084062px;}
.hf{height:59.614102px;}
.h9{height:61.423863px;}
.he{height:61.740000px;}
.hc{height:61.776000px;}
.ha{height:62.211094px;}
.h8{height:68.956875px;}
.h10{height:70.664062px;}
.h4{height:71.324297px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:286.050000px;}
.w4{width:369.255000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:76.139987px;}
.x15{left:78.119987px;}
.x8{left:91.115987px;}
.x6{left:95.075987px;}
.x17{left:111.275987px;}
.xc{left:118.656000px;}
.x2{left:210.989987px;}
.xb{left:228.989987px;}
.x5{left:232.049987px;}
.x9{left:249.149987px;}
.x16{left:268.634987px;}
.x14{left:280.694987px;}
.x12{left:290.414987px;}
.xe{left:405.435000px;}
.x13{left:670.469987px;}
.x7{left:717.809987px;}
.xf{left:735.809987px;}
.x11{left:740.309987px;}
.xa{left:775.229987px;}
.x4{left:785.309987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.329067pt;}
.ls8{letter-spacing:-0.290133pt;}
.ls1b{letter-spacing:-0.166400pt;}
.ls19{letter-spacing:-0.163733pt;}
.ls12{letter-spacing:-0.086933pt;}
.ls18{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.076800pt;}
.ls1a{letter-spacing:0.112533pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.188160pt;}
.ls16{letter-spacing:0.292267pt;}
.ls9{letter-spacing:0.312533pt;}
.ls14{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls10{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.693760pt;}
.ls17{letter-spacing:42.192640pt;}
.lse{letter-spacing:56.912640pt;}
.ls15{letter-spacing:72.272640pt;}
.wsc{word-spacing:-53.120000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.003733pt;}
.wsf{word-spacing:-11.978667pt;}
.ws10{word-spacing:-11.798933pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.654400pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.wsa{word-spacing:-7.657067pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._11{margin-left:-3.368747pt;}
._10{margin-left:-2.328320pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.986667pt;}
._3{width:2.347307pt;}
._4{width:3.951147pt;}
._a{width:5.229329pt;}
._9{width:6.214934pt;}
._17{width:7.117970pt;}
._f{width:8.010880pt;}
._e{width:9.136640pt;}
._d{width:10.411732pt;}
._b{width:12.612266pt;}
._7{width:14.501866pt;}
._8{width:15.480533pt;}
._c{width:16.485654pt;}
._2{width:17.556267pt;}
._6{width:18.614401pt;}
._5{width:19.707732pt;}
._16{width:20.929280pt;}
._12{width:21.854933pt;}
._19{width:25.338240pt;}
._1a{width:29.546880pt;}
._1b{width:30.623360pt;}
._18{width:31.788373pt;}
._1c{width:33.892693pt;}
._13{width:58.135893pt;}
._15{width:98.165760pt;}
._14{width:180.292267pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:40.320000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:6.880000pt;}
.y8e{bottom:7.040000pt;}
.y9b{bottom:7.080000pt;}
.y93{bottom:22.560000pt;}
.y91{bottom:22.720000pt;}
.y9a{bottom:22.760000pt;}
.y9d{bottom:38.240000pt;}
.y99{bottom:38.280000pt;}
.y96{bottom:38.400000pt;}
.y90{bottom:38.426667pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.ya3{bottom:102.272000pt;}
.y77{bottom:102.592000pt;}
.y13a{bottom:104.032000pt;}
.ye1{bottom:104.672000pt;}
.y48{bottom:110.272000pt;}
.ya2{bottom:117.952000pt;}
.y76{bottom:118.272000pt;}
.y139{bottom:119.712000pt;}
.ye0{bottom:120.352000pt;}
.y28{bottom:123.872000pt;}
.ybe{bottom:126.112000pt;}
.y47{bottom:126.592000pt;}
.y10f{bottom:133.466667pt;}
.ya1{bottom:133.626667pt;}
.y75{bottom:133.786667pt;}
.y138{bottom:135.386667pt;}
.y17c{bottom:136.826667pt;}
.yf0{bottom:136.986667pt;}
.y27{bottom:139.546667pt;}
.ybd{bottom:141.786667pt;}
.y46{bottom:142.906667pt;}
.ydf{bottom:143.866667pt;}
.y5b{bottom:144.826667pt;}
.ya0{bottom:149.146667pt;}
.y74{bottom:149.466667pt;}
.y137{bottom:150.906667pt;}
.y155{bottom:151.546667pt;}
.y17b{bottom:152.506667pt;}
.yef{bottom:152.666667pt;}
.y26{bottom:155.066667pt;}
.ybc{bottom:157.466667pt;}
.y5a{bottom:160.506667pt;}
.y9f{bottom:164.826667pt;}
.y73{bottom:165.146667pt;}
.y136{bottom:166.586667pt;}
.y45{bottom:167.546667pt;}
.y25{bottom:170.746667pt;}
.ybb{bottom:173.146667pt;}
.yde{bottom:175.546667pt;}
.y59{bottom:176.026667pt;}
.y72{bottom:180.666667pt;}
.y135{bottom:182.266667pt;}
.y154{bottom:183.226667pt;}
.yee{bottom:184.186667pt;}
.y9e{bottom:188.346667pt;}
.yba{bottom:188.666667pt;}
.ydd{bottom:191.226667pt;}
.y58{bottom:191.706667pt;}
.y71{bottom:196.346667pt;}
.y153{bottom:198.906667pt;}
.yed{bottom:199.866667pt;}
.y24{bottom:202.266667pt;}
.yb9{bottom:204.346667pt;}
.y134{bottom:205.786667pt;}
.ydc{bottom:206.906667pt;}
.y17a{bottom:207.386667pt;}
.y44{bottom:210.586667pt;}
.y70{bottom:212.026667pt;}
.y152{bottom:214.586667pt;}
.yec{bottom:215.546667pt;}
.y9c{bottom:217.786667pt;}
.y23{bottom:217.946667pt;}
.yb8{bottom:220.026667pt;}
.ydb{bottom:222.426667pt;}
.y57{bottom:223.386667pt;}
.y43{bottom:226.266667pt;}
.y151{bottom:230.266667pt;}
.y179{bottom:230.906667pt;}
.yeb{bottom:231.226667pt;}
.y22{bottom:233.626667pt;}
.yb7{bottom:235.546667pt;}
.y10e{bottom:235.706667pt;}
.y133{bottom:237.626667pt;}
.yda{bottom:238.106667pt;}
.y56{bottom:239.066667pt;}
.y42{bottom:241.946667pt;}
.y6f{bottom:243.546667pt;}
.y150{bottom:245.786667pt;}
.y178{bottom:246.586667pt;}
.yb6{bottom:251.226667pt;}
.y10d{bottom:251.386667pt;}
.yd9{bottom:253.786667pt;}
.y21{bottom:257.466667pt;}
.y6e{bottom:259.226667pt;}
.y14f{bottom:261.466667pt;}
.yea{bottom:262.746667pt;}
.yb5{bottom:266.906667pt;}
.y10c{bottom:267.066667pt;}
.y55{bottom:267.546667pt;}
.yd8{bottom:269.466667pt;}
.y177{bottom:270.106667pt;}
.y41{bottom:273.146667pt;}
.y98{bottom:273.306667pt;}
.y14e{bottom:277.186667pt;}
.y132{bottom:280.706667pt;}
.yb4{bottom:282.626667pt;}
.yd7{bottom:285.026667pt;}
.y176{bottom:285.826667pt;}
.y6d{bottom:287.746667pt;}
.y40{bottom:288.866667pt;}
.y10b{bottom:290.626667pt;}
.ye9{bottom:291.426667pt;}
.y131{bottom:296.386667pt;}
.yb3{bottom:298.146667pt;}
.y20{bottom:300.706667pt;}
.y14d{bottom:300.866667pt;}
.y175{bottom:301.506667pt;}
.y130{bottom:312.066667pt;}
.yd6{bottom:316.386667pt;}
.y10a{bottom:319.586667pt;}
.y3f{bottom:320.386667pt;}
.yb2{bottom:321.826667pt;}
.y174{bottom:325.186667pt;}
.y12f{bottom:327.586667pt;}
.y97{bottom:328.866667pt;}
.yd5{bottom:331.906667pt;}
.y1f{bottom:333.666667pt;}
.y3e{bottom:336.066667pt;}
.y173{bottom:340.866667pt;}
.y12e{bottom:343.266667pt;}
.y14c{bottom:343.906667pt;}
.y1e{bottom:349.346667pt;}
.y109{bottom:351.266667pt;}
.y3d{bottom:351.746667pt;}
.yb1{bottom:353.346667pt;}
.yd4{bottom:355.586667pt;}
.y12d{bottom:358.946667pt;}
.y14b{bottom:359.586667pt;}
.y172{bottom:364.386667pt;}
.y1d{bottom:365.026667pt;}
.y108{bottom:366.946667pt;}
.y3c{bottom:367.426667pt;}
.yb0{bottom:369.026667pt;}
.y198{bottom:374.946667pt;}
.y14a{bottom:375.266667pt;}
.y171{bottom:380.066667pt;}
.y1c{bottom:380.546667pt;}
.y107{bottom:382.466667pt;}
.y3b{bottom:382.946667pt;}
.y95{bottom:384.386667pt;}
.yaf{bottom:384.706667pt;}
.yd3{bottom:387.106667pt;}
.y197{bottom:390.626667pt;}
.y149{bottom:390.786667pt;}
.y1b{bottom:396.226667pt;}
.y106{bottom:398.146667pt;}
.y3a{bottom:398.626667pt;}
.yae{bottom:400.386667pt;}
.yd2{bottom:402.786667pt;}
.y170{bottom:403.586667pt;}
.y196{bottom:406.146667pt;}
.y148{bottom:406.466667pt;}
.y1a{bottom:411.906667pt;}
.y105{bottom:413.826667pt;}
.y12c{bottom:414.146667pt;}
.y39{bottom:414.306667pt;}
.yad{bottom:415.906667pt;}
.yd1{bottom:418.466667pt;}
.y16f{bottom:419.266667pt;}
.y147{bottom:422.146667pt;}
.y19{bottom:427.426667pt;}
.y104{bottom:429.346667pt;}
.y38{bottom:429.826667pt;}
.yac{bottom:431.586667pt;}
.yd0{bottom:434.146667pt;}
.y146{bottom:437.826667pt;}
.y92{bottom:440.066667pt;}
.y16e{bottom:442.946667pt;}
.y18{bottom:443.106667pt;}
.y103{bottom:445.026667pt;}
.y12b{bottom:445.346667pt;}
.y37{bottom:445.506667pt;}
.yab{bottom:447.266667pt;}
.ycf{bottom:449.826667pt;}
.y16d{bottom:458.626667pt;}
.y17{bottom:458.786667pt;}
.y102{bottom:460.706667pt;}
.y12a{bottom:461.026667pt;}
.y36{bottom:461.186667pt;}
.y145{bottom:461.346667pt;}
.yaa{bottom:462.946667pt;}
.yce{bottom:465.346667pt;}
.y195{bottom:469.026667pt;}
.y16{bottom:474.466667pt;}
.y101{bottom:476.386667pt;}
.y35{bottom:476.706667pt;}
.ya9{bottom:478.466667pt;}
.y8f{bottom:479.906667pt;}
.ycd{bottom:481.026667pt;}
.y16c{bottom:482.146667pt;}
.y194{bottom:484.706667pt;}
.y15{bottom:489.986667pt;}
.y100{bottom:491.906667pt;}
.y34{bottom:492.386667pt;}
.y144{bottom:493.026667pt;}
.ya8{bottom:494.146667pt;}
.y16b{bottom:497.826667pt;}
.ycc{bottom:504.706667pt;}
.y14{bottom:505.666667pt;}
.yff{bottom:507.586667pt;}
.y129{bottom:507.906667pt;}
.y33{bottom:508.066667pt;}
.y193{bottom:508.386667pt;}
.y143{bottom:508.706667pt;}
.ya7{bottom:517.666667pt;}
.y13{bottom:521.373333pt;}
.y16a{bottom:521.533333pt;}
.yfe{bottom:523.293333pt;}
.y128{bottom:523.613333pt;}
.y32{bottom:523.773333pt;}
.y192{bottom:524.093333pt;}
.ycb{bottom:533.533333pt;}
.y8d{bottom:535.453333pt;}
.y12{bottom:536.893333pt;}
.y142{bottom:537.213333pt;}
.yfd{bottom:538.813333pt;}
.y31{bottom:539.293333pt;}
.y191{bottom:547.613333pt;}
.ya6{bottom:549.373333pt;}
.y11{bottom:552.573333pt;}
.y169{bottom:552.733333pt;}
.yfc{bottom:554.493333pt;}
.y127{bottom:554.813333pt;}
.y30{bottom:554.973333pt;}
.ye8{bottom:562.493333pt;}
.yca{bottom:565.213333pt;}
.y10{bottom:568.253333pt;}
.yfb{bottom:570.173333pt;}
.y190{bottom:571.293333pt;}
.y168{bottom:576.413333pt;}
.ya5{bottom:578.013333pt;}
.y126{bottom:578.493333pt;}
.y8c{bottom:578.813333pt;}
.yc9{bottom:580.893333pt;}
.yf{bottom:583.773333pt;}
.yfa{bottom:585.693333pt;}
.y2f{bottom:586.493333pt;}
.y18f{bottom:586.973333pt;}
.y167{bottom:592.093333pt;}
.ye7{bottom:594.333333pt;}
.yc8{bottom:596.573333pt;}
.ye{bottom:599.453333pt;}
.yf9{bottom:601.373333pt;}
.y8b{bottom:602.653333pt;}
.y125{bottom:610.013333pt;}
.y18e{bottom:610.493333pt;}
.yc7{bottom:612.093333pt;}
.yd{bottom:615.133333pt;}
.y166{bottom:615.613333pt;}
.yf8{bottom:624.893333pt;}
.y124{bottom:625.693333pt;}
.y18d{bottom:626.173333pt;}
.yc6{bottom:627.773333pt;}
.y165{bottom:631.293333pt;}
.y6c{bottom:636.893333pt;}
.ye6{bottom:637.213333pt;}
.yc{bottom:638.813333pt;}
.y123{bottom:641.373333pt;}
.y18c{bottom:641.853333pt;}
.yc5{bottom:643.453333pt;}
.y8a{bottom:645.693333pt;}
.ye5{bottom:652.893333pt;}
.y164{bottom:654.813333pt;}
.yf7{bottom:656.733333pt;}
.y122{bottom:657.053333pt;}
.yc4{bottom:659.133333pt;}
.y89{bottom:661.373333pt;}
.y18b{bottom:665.373333pt;}
.y6b{bottom:668.573333pt;}
.y163{bottom:670.493333pt;}
.y121{bottom:672.573333pt;}
.yc3{bottom:674.653333pt;}
.y88{bottom:676.893333pt;}
.y18a{bottom:681.053333pt;}
.yb{bottom:681.853333pt;}
.y6a{bottom:684.253333pt;}
.y120{bottom:688.253333pt;}
.yc2{bottom:690.333333pt;}
.ye4{bottom:692.093333pt;}
.y87{bottom:692.573333pt;}
.y162{bottom:694.173333pt;}
.y69{bottom:699.773333pt;}
.y11f{bottom:703.933333pt;}
.y189{bottom:704.733333pt;}
.y86{bottom:708.253333pt;}
.y161{bottom:709.853333pt;}
.ya{bottom:713.693333pt;}
.yc1{bottom:713.853333pt;}
.y68{bottom:715.453333pt;}
.y11e{bottom:719.613333pt;}
.y188{bottom:720.413333pt;}
.y85{bottom:723.773333pt;}
.y67{bottom:731.133333pt;}
.y160{bottom:733.373333pt;}
.y11d{bottom:735.133333pt;}
.y84{bottom:739.453333pt;}
.y187{bottom:743.933333pt;}
.yc0{bottom:745.533333pt;}
.y9{bottom:745.693333pt;}
.y66{bottom:746.813333pt;}
.y15f{bottom:749.053333pt;}
.y11c{bottom:750.813333pt;}
.y83{bottom:755.133333pt;}
.y186{bottom:759.613333pt;}
.y65{bottom:762.333333pt;}
.y11b{bottom:766.533333pt;}
.y82{bottom:770.853333pt;}
.y15e{bottom:772.933333pt;}
.ybf{bottom:774.213333pt;}
.y64{bottom:778.053333pt;}
.y8{bottom:781.093333pt;}
.y11a{bottom:782.053333pt;}
.y185{bottom:783.173333pt;}
.y81{bottom:786.373333pt;}
.y63{bottom:793.733333pt;}
.y7{bottom:797.093333pt;}
.y119{bottom:797.733333pt;}
.y54{bottom:798.693333pt;}
.y184{bottom:798.853333pt;}
.yf6{bottom:801.573333pt;}
.y80{bottom:802.053333pt;}
.y141{bottom:804.293333pt;}
.y6{bottom:813.093333pt;}
.y118{bottom:813.413333pt;}
.y183{bottom:814.533333pt;}
.y15d{bottom:815.973333pt;}
.y62{bottom:817.253333pt;}
.ye3{bottom:817.733333pt;}
.y140{bottom:819.973333pt;}
.y7f{bottom:825.573333pt;}
.y117{bottom:828.933333pt;}
.y53{bottom:830.373333pt;}
.yf5{bottom:833.253333pt;}
.y13f{bottom:835.653333pt;}
.y182{bottom:838.053333pt;}
.y15c{bottom:839.813333pt;}
.ye2{bottom:841.253333pt;}
.y5{bottom:841.893333pt;}
.y116{bottom:844.613333pt;}
.y52{bottom:846.053333pt;}
.y61{bottom:848.933333pt;}
.y13e{bottom:851.173333pt;}
.y181{bottom:853.733333pt;}
.y7e{bottom:857.253333pt;}
.y115{bottom:860.293333pt;}
.y51{bottom:861.573333pt;}
.y60{bottom:864.613333pt;}
.y13d{bottom:866.853333pt;}
.y15b{bottom:872.773333pt;}
.y7d{bottom:872.933333pt;}
.y4{bottom:875.813333pt;}
.y114{bottom:875.973333pt;}
.y50{bottom:877.253333pt;}
.y180{bottom:877.893333pt;}
.y5f{bottom:880.133333pt;}
.y7c{bottom:888.613333pt;}
.y13c{bottom:890.533333pt;}
.y113{bottom:891.493333pt;}
.y4f{bottom:892.933333pt;}
.y5e{bottom:895.813333pt;}
.y15a{bottom:896.613333pt;}
.y3{bottom:897.733333pt;}
.y7b{bottom:904.133333pt;}
.y4e{bottom:908.453333pt;}
.y5d{bottom:911.493333pt;}
.y112{bottom:915.173333pt;}
.y13b{bottom:919.493333pt;}
.y7a{bottom:919.813333pt;}
.yf4{bottom:927.173333pt;}
.y159{bottom:929.573333pt;}
.y4d{bottom:932.133333pt;}
.y5c{bottom:935.013333pt;}
.y17f{bottom:935.173333pt;}
.y79{bottom:935.493333pt;}
.yf3{bottom:942.693333pt;}
.y158{bottom:945.253333pt;}
.y111{bottom:947.013333pt;}
.ya4{bottom:951.013333pt;}
.y78{bottom:951.173333pt;}
.y17e{bottom:958.693333pt;}
.y4c{bottom:963.653333pt;}
.yf2{bottom:966.373333pt;}
.y2e{bottom:966.693333pt;}
.y157{bottom:969.093333pt;}
.y17d{bottom:974.373333pt;}
.y4b{bottom:979.973333pt;}
.y2d{bottom:982.373333pt;}
.y110{bottom:989.893333pt;}
.y4a{bottom:996.453333pt;}
.yf1{bottom:997.893333pt;}
.y2c{bottom:998.053333pt;}
.y156{bottom:1002.213333pt;}
.y49{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.680000pt;}
.h2{height:23.996250pt;}
.h6{height:31.535625pt;}
.h3{height:34.138125pt;}
.hd{height:39.200000pt;}
.h7{height:44.975625pt;}
.h5{height:49.852500pt;}
.hf{height:52.990313pt;}
.h9{height:54.598989pt;}
.he{height:54.880000pt;}
.hc{height:54.912000pt;}
.ha{height:55.298750pt;}
.h8{height:61.295000pt;}
.h10{height:62.812500pt;}
.h4{height:63.399375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:254.266667pt;}
.w4{width:328.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:67.679988pt;}
.x15{left:69.439988pt;}
.x8{left:80.991988pt;}
.x6{left:84.511988pt;}
.x17{left:98.911988pt;}
.xc{left:105.472000pt;}
.x2{left:187.546655pt;}
.xb{left:203.546655pt;}
.x5{left:206.266655pt;}
.x9{left:221.466655pt;}
.x16{left:238.786655pt;}
.x14{left:249.506655pt;}
.x12{left:258.146655pt;}
.xe{left:360.386667pt;}
.x13{left:595.973322pt;}
.x7{left:638.053322pt;}
.xf{left:654.053322pt;}
.x11{left:658.053322pt;}
.xa{left:689.093322pt;}
.x4{left:698.053322pt;}
.x3{left:711.493322pt;}
}




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