
    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_e8f45ae46d444ebe2cd9bc9a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f34dd43f7370a07cf504463d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8e56ed6375de88934cb6325e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c1ca3831605e5c9016d5e64.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853516;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_18f44b80c5ea20f8334eaaf8.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_adc0547f09dae03c5d82684e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_76f00834ca7addb621397faf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7633978ac4950b7a6d8c2496.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0207bfe9d0a7758536a7774e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-165.720000px;}
.v1{vertical-align:-82.920000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.880000px;}
.ls17{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls1a{letter-spacing:1.440000px;}
.ls18{letter-spacing:5.040000px;}
.ls14{letter-spacing:8.640000px;}
.ls1b{letter-spacing:14.400000px;}
.lsc{letter-spacing:26.640000px;}
.lsf{letter-spacing:28.224000px;}
.lse{letter-spacing:31.824000px;}
.ls4{letter-spacing:33.960000px;}
.ls12{letter-spacing:33.984000px;}
.ls10{letter-spacing:39.744000px;}
.ls11{letter-spacing:44.064000px;}
.ls6{letter-spacing:54.840000px;}
.lsd{letter-spacing:64.224000px;}
.ls19{letter-spacing:82.800000px;}
.ls0{letter-spacing:197.976000px;}
.ls1{letter-spacing:835.380000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.wsb{word-spacing:-18.792000px;}
.wsc{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.481680px;}
.wsa{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws6{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-16.944000px;}
._b{margin-left:-15.120000px;}
._a{margin-left:-13.788000px;}
._9{margin-left:-12.444000px;}
._2{margin-left:-8.952000px;}
._c{margin-left:-6.468000px;}
._5{margin-left:-4.860000px;}
._1{margin-left:-2.952000px;}
._0{margin-left:-1.728000px;}
._4{width:1.188000px;}
._12{width:2.412000px;}
._e{width:3.600000px;}
._16{width:4.716000px;}
._10{width:5.832000px;}
._11{width:7.236000px;}
._15{width:8.676000px;}
._13{width:10.476000px;}
._14{width:11.556000px;}
._18{width:12.612000px;}
._f{width:14.400000px;}
._1d{width:15.408000px;}
._1c{width:16.632000px;}
._1b{width:19.728000px;}
._21{width:20.952000px;}
._44{width:22.176000px;}
._34{width:23.472000px;}
._43{width:24.480000px;}
._28{width:25.488000px;}
._42{width:26.712000px;}
._4b{width:27.744000px;}
._1f{width:28.776000px;}
._20{width:30.024000px;}
._1e{width:31.536000px;}
._19{width:32.544000px;}
._1a{width:33.912000px;}
._46{width:35.076000px;}
._22{width:36.504000px;}
._23{width:37.848000px;}
._4d{width:39.096000px;}
._4e{width:40.104000px;}
._41{width:41.112000px;}
._31{width:43.128000px;}
._2b{width:45.648000px;}
._52{width:46.656000px;}
._6a{width:47.664000px;}
._3c{width:48.816000px;}
._4f{width:50.256000px;}
._47{width:51.480000px;}
._48{width:52.560000px;}
._45{width:54.000000px;}
._33{width:55.368000px;}
._58{width:57.024000px;}
._68{width:58.680000px;}
._59{width:60.408000px;}
._36{width:61.560000px;}
._35{width:62.712000px;}
._2e{width:63.936000px;}
._32{width:66.528000px;}
._4c{width:67.536000px;}
._3e{width:68.688000px;}
._49{width:69.696000px;}
._4a{width:70.740000px;}
._2d{width:72.360000px;}
._54{width:79.632000px;}
._63{width:81.912000px;}
._26{width:83.016000px;}
._30{width:93.528000px;}
._39{width:95.544000px;}
._69{width:101.448000px;}
._5f{width:106.200000px;}
._60{width:107.772000px;}
._3f{width:115.560000px;}
._53{width:119.520000px;}
._6c{width:120.600000px;}
._6b{width:121.860000px;}
._3d{width:124.344000px;}
._5d{width:125.436000px;}
._5c{width:126.792000px;}
._3a{width:129.744000px;}
._2c{width:136.500000px;}
._66{width:141.120000px;}
._40{width:160.848000px;}
._38{width:172.656000px;}
._2f{width:177.552000px;}
._27{width:180.864000px;}
._62{width:184.176000px;}
._61{width:185.328000px;}
._d{width:194.376000px;}
._29{width:197.208000px;}
._37{width:209.304000px;}
._2a{width:213.984000px;}
._50{width:238.608000px;}
._5e{width:240.444000px;}
._57{width:277.200000px;}
._67{width:302.040000px;}
._56{width:357.924000px;}
._5b{width:358.944000px;}
._5a{width:360.216000px;}
._55{width:362.196000px;}
._51{width:385.800000px;}
._3b{width:425.952000px;}
._64{width:480.528000px;}
._65{width:481.752000px;}
._17{width:846.156000px;}
._6{width:1042.020000px;}
._3{width:1062.300000px;}
._24{width:1185.420000px;}
._25{width:1188.300000px;}
._7{width:1221.420000px;}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1a3{bottom:3.960000px;}
.yc1{bottom:4.500000px;}
.ye7{bottom:14.040000px;}
.yb3{bottom:14.220000px;}
.ybb{bottom:14.760000px;}
.ye1{bottom:14.940000px;}
.yeb{bottom:24.480000px;}
.y1c8{bottom:24.654000px;}
.y1a0{bottom:24.660000px;}
.yc0{bottom:25.200000px;}
.ye5{bottom:34.740000px;}
.y1a1{bottom:34.920000px;}
.yba{bottom:35.460000px;}
.ydf{bottom:35.640000px;}
.yea{bottom:45.180000px;}
.y1c7{bottom:45.354000px;}
.y1a2{bottom:45.360000px;}
.ybf{bottom:45.900000px;}
.ye4{bottom:55.440000px;}
.y1a6{bottom:55.620000px;}
.yb7{bottom:56.160000px;}
.yde{bottom:56.340000px;}
.y2{bottom:56.880000px;}
.yce{bottom:60.660000px;}
.ye9{bottom:65.880000px;}
.y1c6{bottom:66.054000px;}
.y1a5{bottom:66.060000px;}
.yb5{bottom:66.600000px;}
.ye3{bottom:76.140000px;}
.y1b1{bottom:76.320000px;}
.yb6{bottom:76.860000px;}
.ydd{bottom:77.070000px;}
.y1{bottom:77.580000px;}
.ycd{bottom:81.360000px;}
.ye8{bottom:86.580000px;}
.y1c5{bottom:86.754000px;}
.y1a8{bottom:86.760000px;}
.ybe{bottom:87.300000px;}
.yd9{bottom:87.330000px;}
.ye6{bottom:96.840000px;}
.y1b0{bottom:97.020000px;}
.yb9{bottom:97.560000px;}
.yd7{bottom:97.770000px;}
.ycc{bottom:102.060000px;}
.y1bf{bottom:107.454000px;}
.y1ac{bottom:107.460000px;}
.ybd{bottom:107.820000px;}
.yd8{bottom:108.030000px;}
.yd5{bottom:112.365000px;}
.y149{bottom:116.316000px;}
.y1af{bottom:117.720000px;}
.yb8{bottom:118.260000px;}
.ydc{bottom:118.290000px;}
.y174{bottom:119.196000px;}
.y145{bottom:120.636000px;}
.yab{bottom:121.716000px;}
.ycb{bottom:122.805000px;}
.y1bc{bottom:126.216000px;}
.y57{bottom:126.756000px;}
.y1be{bottom:128.154000px;}
.y1ab{bottom:128.160000px;}
.y169{bottom:128.376000px;}
.ybc{bottom:128.520000px;}
.yd4{bottom:133.065000px;}
.yf3{bottom:133.776000px;}
.y45{bottom:135.216000px;}
.y2e{bottom:137.916000px;}
.y1ae{bottom:138.420000px;}
.ydb{bottom:138.990000px;}
.yed{bottom:141.696000px;}
.yc6{bottom:143.505000px;}
.y138{bottom:145.836000px;}
.y183{bottom:147.276000px;}
.y1bd{bottom:148.854000px;}
.y1aa{bottom:148.860000px;}
.yb1{bottom:151.230000px;}
.ya0{bottom:152.670000px;}
.yd3{bottom:153.765000px;}
.y15b{bottom:155.370000px;}
.y14c{bottom:156.630000px;}
.y104{bottom:157.710000px;}
.y1ad{bottom:159.120000px;}
.yda{bottom:159.690000px;}
.y173{bottom:160.410000px;}
.y144{bottom:162.030000px;}
.yaa{bottom:163.110000px;}
.yc4{bottom:164.205000px;}
.y125{bottom:165.270000px;}
.y8c{bottom:165.990000px;}
.y1c4{bottom:169.554000px;}
.y1bb{bottom:169.560000px;}
.y1a9{bottom:169.605000px;}
.y168{bottom:169.770000px;}
.yd2{bottom:174.465000px;}
.yf2{bottom:175.170000px;}
.y44{bottom:176.610000px;}
.y1d9{bottom:179.130000px;}
.y1b4{bottom:179.820000px;}
.y56{bottom:180.210000px;}
.ye0{bottom:180.390000px;}
.y170{bottom:181.830000px;}
.yec{bottom:183.090000px;}
.yc3{bottom:184.905000px;}
.y194{bottom:185.970000px;}
.y137{bottom:187.230000px;}
.y182{bottom:188.490000px;}
.y1c3{bottom:190.254000px;}
.y1ba{bottom:190.290000px;}
.y2d{bottom:191.370000px;}
.yb0{bottom:192.630000px;}
.y19e{bottom:193.710000px;}
.y9f{bottom:194.070000px;}
.yd1{bottom:195.165000px;}
.y66{bottom:198.030000px;}
.y100{bottom:199.110000px;}
.y1b3{bottom:200.550000px;}
.y124{bottom:202.710000px;}
.y172{bottom:203.250000px;}
.y143{bottom:203.430000px;}
.y1a{bottom:203.790000px;}
.ya9{bottom:204.510000px;}
.yc5{bottom:205.605000px;}
.y8b{bottom:207.390000px;}
.y15a{bottom:208.830000px;}
.y14b{bottom:209.910000px;}
.y1c2{bottom:210.954000px;}
.y1b9{bottom:210.990000px;}
.y7e{bottom:211.170000px;}
.y11f{bottom:214.050000px;}
.y167{bottom:215.310000px;}
.yd0{bottom:215.865000px;}
.yf1{bottom:216.570000px;}
.y43{bottom:218.010000px;}
.y1d8{bottom:220.530000px;}
.y1b6{bottom:221.250000px;}
.y16f{bottom:223.230000px;}
.y19{bottom:224.490000px;}
.yca{bottom:226.305000px;}
.y136{bottom:228.630000px;}
.y181{bottom:231.330000px;}
.y1b8{bottom:231.690000px;}
.y1c1{bottom:231.699000px;}
.y55{bottom:233.490000px;}
.y1db{bottom:234.030000px;}
.y19d{bottom:235.110000px;}
.y9e{bottom:235.470000px;}
.ycf{bottom:236.565000px;}
.y193{bottom:239.250000px;}
.y160{bottom:239.430000px;}
.yff{bottom:240.510000px;}
.y1b5{bottom:241.950000px;}
.y171{bottom:244.470000px;}
.y2c{bottom:244.830000px;}
.y18{bottom:245.190000px;}
.ya8{bottom:245.910000px;}
.yc9{bottom:247.005000px;}
.y10d{bottom:248.610000px;}
.y8a{bottom:248.790000px;}
.y65{bottom:251.310000px;}
.y1b7{bottom:252.390000px;}
.y1c0{bottom:252.399000px;}
.y7d{bottom:252.570000px;}
.y11e{bottom:255.450000px;}
.y142{bottom:256.710000px;}
.yf0{bottom:257.970000px;}
.y42{bottom:259.410000px;}
.y1d7{bottom:261.930000px;}
.y159{bottom:262.110000px;}
.y12e{bottom:262.290000px;}
.y14a{bottom:263.370000px;}
.y16e{bottom:264.630000px;}
.y17{bottom:265.890000px;}
.yc8{bottom:267.705000px;}
.y166{bottom:268.770000px;}
.yf4{bottom:270.030000px;}
.y180{bottom:272.730000px;}
.y1da{bottom:275.430000px;}
.y19c{bottom:276.510000px;}
.y9d{bottom:276.870000px;}
.y192{bottom:280.650000px;}
.y15f{bottom:280.830000px;}
.yfe{bottom:281.910000px;}
.y2b{bottom:286.230000px;}
.y16{bottom:286.590000px;}
.y54{bottom:286.950000px;}
.yaf{bottom:287.310000px;}
.yc7{bottom:288.405000px;}
.y89{bottom:290.010000px;}
.y10c{bottom:291.450000px;}
.y7c{bottom:293.970000px;}
.ya7{bottom:299.370000px;}
.y41{bottom:300.810000px;}
.y1d6{bottom:303.330000px;}
.y12d{bottom:303.690000px;}
.y64{bottom:304.770000px;}
.y16d{bottom:306.030000px;}
.y15{bottom:307.290000px;}
.y11d{bottom:308.730000px;}
.y141{bottom:310.170000px;}
.yef{bottom:311.430000px;}
.y17f{bottom:313.950000px;}
.y158{bottom:315.570000px;}
.y70{bottom:316.830000px;}
.y19b{bottom:317.910000px;}
.y9c{bottom:318.270000px;}
.y191{bottom:322.050000px;}
.y15e{bottom:322.230000px;}
.yfd{bottom:323.310000px;}
.y14{bottom:327.990000px;}
.yf7{bottom:328.710000px;}
.y10b{bottom:332.670000px;}
.y88{bottom:332.850000px;}
.y7b{bottom:335.370000px;}
.y2a{bottom:339.510000px;}
.y53{bottom:340.410000px;}
.ya6{bottom:340.770000px;}
.y40{bottom:342.255000px;}
.y12c{bottom:345.135000px;}
.y16c{bottom:347.475000px;}
.y13{bottom:348.735000px;}
.y11c{bottom:350.175000px;}
.yee{bottom:352.875000px;}
.y1d5{bottom:356.655000px;}
.y17e{bottom:356.835000px;}
.y63{bottom:358.275000px;}
.y19a{bottom:359.355000px;}
.y190{bottom:363.495000px;}
.y140{bottom:363.675000px;}
.yfc{bottom:364.755000px;}
.y157{bottom:369.075000px;}
.y12{bottom:369.435000px;}
.y6f{bottom:370.155000px;}
.y9b{bottom:371.595000px;}
.y87{bottom:374.295000px;}
.y10a{bottom:375.555000px;}
.y7a{bottom:376.815000px;}
.yae{bottom:382.215000px;}
.y3f{bottom:383.655000px;}
.ye2{bottom:384.195000px;}
.y16b{bottom:388.875000px;}
.y11{bottom:390.135000px;}
.y29{bottom:393.015000px;}
.y52{bottom:393.735000px;}
.ya5{bottom:394.275000px;}
.y1b2{bottom:395.355000px;}
.y1d4{bottom:398.055000px;}
.y17d{bottom:398.235000px;}
.y12b{bottom:398.595000px;}
.y199{bottom:400.755000px;}
.y11b{bottom:403.635000px;}
.y18f{bottom:404.895000px;}
.y15d{bottom:405.075000px;}
.yfb{bottom:406.155000px;}
.y10{bottom:410.835000px;}
.y62{bottom:411.555000px;}
.yb4{bottom:412.095000px;}
.y9a{bottom:412.995000px;}
.y86{bottom:415.695000px;}
.y109{bottom:416.775000px;}
.y13f{bottom:416.955000px;}
.y79{bottom:418.215000px;}
.y156{bottom:422.355000px;}
.y6e{bottom:423.615000px;}
.y3e{bottom:425.055000px;}
.y165{bottom:429.015000px;}
.y16a{bottom:430.275000px;}
.yf{bottom:431.535000px;}
.y135{bottom:435.495000px;}
.ya4{bottom:435.675000px;}
.y1d3{bottom:439.455000px;}
.y17c{bottom:439.635000px;}
.y12a{bottom:439.995000px;}
.y198{bottom:442.155000px;}
.y11a{bottom:445.035000px;}
.y28{bottom:446.475000px;}
.y51{bottom:447.195000px;}
.yfa{bottom:447.555000px;}
.ye{bottom:452.235000px;}
.y99{bottom:454.395000px;}
.y85{bottom:457.095000px;}
.y18e{bottom:458.355000px;}
.y103{bottom:459.615000px;}
.y61{bottom:465.015000px;}
.y3d{bottom:466.455000px;}
.y13e{bottom:470.415000px;}
.y78{bottom:471.675000px;}
.yd{bottom:472.935000px;}
.y155{bottom:475.815000px;}
.y134{bottom:476.895000px;}
.y6d{bottom:477.075000px;}
.y1d2{bottom:480.855000px;}
.y17b{bottom:481.035000px;}
.y129{bottom:481.395000px;}
.y164{bottom:482.475000px;}
.y197{bottom:483.555000px;}
.y15c{bottom:487.875000px;}
.ya3{bottom:488.955000px;}
.yc{bottom:493.275000px;}
.y98{bottom:495.615000px;}
.y84{bottom:498.495000px;}
.y27{bottom:499.755000px;}
.y50{bottom:500.655000px;}
.yf9{bottom:501.015000px;}
.yf6{bottom:506.415000px;}
.y3c{bottom:507.855000px;}
.yd6{bottom:508.755000px;}
.yb{bottom:512.355000px;}
.y77{bottom:513.075000px;}
.y133{bottom:518.295000px;}
.y60{bottom:518.475000px;}
.y1d1{bottom:522.255000px;}
.y17a{bottom:522.435000px;}
.y13d{bottom:523.875000px;}
.y196{bottom:524.955000px;}
.y154{bottom:529.275000px;}
.y6c{bottom:530.355000px;}
.y123{bottom:531.435000px;}
.ya{bottom:531.615000px;}
.y128{bottom:534.675000px;}
.y163{bottom:535.755000px;}
.y97{bottom:538.455000px;}
.y83{bottom:539.715000px;}
.y119{bottom:539.895000px;}
.y18d{bottom:541.155000px;}
.yf8{bottom:542.415000px;}
.y3b{bottom:549.255000px;}
.y26{bottom:553.215000px;}
.y4f{bottom:553.935000px;}
.y76{bottom:554.475000px;}
.yb2{bottom:558.615000px;}
.y132{bottom:559.695000px;}
.yad{bottom:559.875000px;}
.y179{bottom:563.835000px;}
.y195{bottom:566.355000px;}
.y5f{bottom:571.755000px;}
.y122{bottom:572.835000px;}
.y1d0{bottom:575.715000px;}
.y13c{bottom:577.155000px;}
.y96{bottom:579.855000px;}
.y118{bottom:581.295000px;}
.y82{bottom:582.555000px;}
.ya2{bottom:583.845000px;}
.y127{bottom:588.165000px;}
.y162{bottom:589.245000px;}
.y3a{bottom:590.685000px;}
.y9{bottom:593.745000px;}
.y18c{bottom:594.465000px;}
.y75{bottom:595.905000px;}
.y131{bottom:601.125000px;}
.yf5{bottom:601.305000px;}
.y178{bottom:605.085000px;}
.y25{bottom:606.705000px;}
.y4e{bottom:607.425000px;}
.y108{bottom:607.785000px;}
.y5e{bottom:613.185000px;}
.y8{bottom:614.445000px;}
.y95{bottom:621.285000px;}
.y117{bottom:622.725000px;}
.y81{bottom:623.985000px;}
.y6b{bottom:625.245000px;}
.y126{bottom:625.425000px;}
.y121{bottom:626.325000px;}
.y1cf{bottom:629.205000px;}
.y13b{bottom:630.645000px;}
.y39{bottom:632.085000px;}
.y18b{bottom:635.865000px;}
.y153{bottom:636.045000px;}
.y74{bottom:637.305000px;}
.y130{bottom:642.525000px;}
.y161{bottom:642.705000px;}
.y177{bottom:647.925000px;}
.y107{bottom:649.185000px;}
.y5d{bottom:654.585000px;}
.y24{bottom:659.985000px;}
.y4d{bottom:660.885000px;}
.y94{bottom:663.945000px;}
.y1a7{bottom:664.485000px;}
.y80{bottom:665.385000px;}
.y6a{bottom:666.645000px;}
.y7{bottom:667.725000px;}
.y38{bottom:673.485000px;}
.y18a{bottom:677.265000px;}
.y73{bottom:678.705000px;}
.y1ce{bottom:682.485000px;}
.y13a{bottom:683.925000px;}
.y152{bottom:689.325000px;}
.y106{bottom:690.585000px;}
.y5c{bottom:695.985000px;}
.y7f{bottom:706.605000px;}
.y69{bottom:708.045000px;}
.y6{bottom:709.125000px;}
.y23{bottom:713.445000px;}
.y4c{bottom:714.165000px;}
.y37{bottom:714.885000px;}
.y116{bottom:717.405000px;}
.yc2{bottom:717.585000px;}
.y93{bottom:718.665000px;}
.y72{bottom:719.925000px;}
.y176{bottom:730.725000px;}
.y105{bottom:731.985000px;}
.y12f{bottom:733.425000px;}
.y1cd{bottom:735.945000px;}
.y139{bottom:737.385000px;}
.y151{bottom:742.785000px;}
.y5b{bottom:749.445000px;}
.y120{bottom:750.345000px;}
.y36{bottom:756.285000px;}
.y115{bottom:758.805000px;}
.y189{bottom:760.065000px;}
.y71{bottom:761.325000px;}
.y5{bottom:762.585000px;}
.y22{bottom:766.725000px;}
.y4b{bottom:767.625000px;}
.y92{bottom:772.125000px;}
.y102{bottom:773.385000px;}
.y148{bottom:778.785000px;}
.y1cc{bottom:789.225000px;}
.y5a{bottom:790.845000px;}
.y150{bottom:796.245000px;}
.y35{bottom:797.685000px;}
.y114{bottom:800.205000px;}
.y4{bottom:801.285000px;}
.y188{bottom:801.465000px;}
.y68{bottom:802.725000px;}
.y91{bottom:813.525000px;}
.y101{bottom:814.785000px;}
.y3{bottom:818.025000px;}
.y21{bottom:820.185000px;}
.y4a{bottom:821.085000px;}
.yac{bottom:832.290000px;}
.y34{bottom:839.130000px;}
.y113{bottom:841.650000px;}
.y1cb{bottom:842.730000px;}
.y187{bottom:842.910000px;}
.y59{bottom:844.170000px;}
.y14f{bottom:849.570000px;}
.y1a4{bottom:850.830000px;}
.y90{bottom:854.970000px;}
.ya1{bottom:856.230000px;}
.y147{bottom:861.630000px;}
.y20{bottom:873.690000px;}
.y49{bottom:873.870000px;}
.y33{bottom:880.530000px;}
.y112{bottom:883.050000px;}
.y186{bottom:884.310000px;}
.y58{bottom:885.570000px;}
.y1ca{bottom:896.190000px;}
.y8f{bottom:896.370000px;}
.y67{bottom:897.630000px;}
.y14e{bottom:903.030000px;}
.y1c9{bottom:913.650000px;}
.y146{bottom:915.090000px;}
.y32{bottom:921.930000px;}
.y111{bottom:924.450000px;}
.y185{bottom:925.710000px;}
.y1f{bottom:926.970000px;}
.y19f{bottom:934.350000px;}
.y8e{bottom:937.770000px;}
.y48{bottom:939.030000px;}
.y14d{bottom:956.490000px;}
.y31{bottom:963.150000px;}
.y184{bottom:967.110000px;}
.y1e{bottom:968.370000px;}
.y110{bottom:977.730000px;}
.y8d{bottom:978.990000px;}
.y175{bottom:979.170000px;}
.y47{bottom:980.430000px;}
.y30{bottom:1004.550000px;}
.y1d{bottom:1009.770000px;}
.y10f{bottom:1020.570000px;}
.y46{bottom:1021.830000px;}
.y2f{bottom:1057.470000px;}
.y10e{bottom:1061.790000px;}
.y1c{bottom:1063.230000px;}
.y1b{bottom:1118.160000px;}
.h9{height:41.256000px;}
.he{height:62.100000px;}
.h8{height:64.546875px;}
.h3{height:65.010937px;}
.h4{height:70.628906px;}
.h1{height:70.664062px;}
.h2{height:72.562500px;}
.h7{height:74.004654px;}
.h6{height:74.953125px;}
.h5{height:80.937773px;}
.hf{height:82.800000px;}
.hd{height:123.660000px;}
.ha{height:145.800000px;}
.h12{height:165.630000px;}
.h10{height:186.330000px;}
.hc{height:208.110000px;}
.h11{height:269.130000px;}
.hb{height:361.695000px;}
.h0{height:1188.000000px;}
.w2{width:120.960000px;}
.w3{width:128.016000px;}
.w7{width:140.220000px;}
.w4{width:140.976000px;}
.w5{width:156.090000px;}
.w8{width:157.170000px;}
.w9{width:191.370000px;}
.w6{width:198.210000px;}
.wa{width:233.895000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.xf{left:99.936000px;}
.x5{left:108.035986px;}
.xe{left:135.035986px;}
.x2{left:162.029986px;}
.x3{left:186.869986px;}
.x16{left:189.029986px;}
.xd{left:216.029986px;}
.x11{left:220.890000px;}
.x17{left:240.150000px;}
.x1{left:296.894986px;}
.x8{left:298.334986px;}
.x9{left:342.254986px;}
.x12{left:348.915000px;}
.xa{left:372.854986px;}
.x18{left:397.335000px;}
.xc{left:414.614986px;}
.xb{left:423.254986px;}
.x4{left:433.694986px;}
.x7{left:459.104986px;}
.x6{left:486.104986px;}
.x13{left:489.885000px;}
.x19{left:588.705000px;}
.x14{left:645.990000px;}
.x15{left:810.179986px;}
@media print{
.v2{vertical-align:-147.306667pt;}
.v1{vertical-align:-73.706667pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.560000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls18{letter-spacing:4.480000pt;}
.ls14{letter-spacing:7.680000pt;}
.ls1b{letter-spacing:12.800000pt;}
.lsc{letter-spacing:23.680000pt;}
.lsf{letter-spacing:25.088000pt;}
.lse{letter-spacing:28.288000pt;}
.ls4{letter-spacing:30.186667pt;}
.ls12{letter-spacing:30.208000pt;}
.ls10{letter-spacing:35.328000pt;}
.ls11{letter-spacing:39.168000pt;}
.ls6{letter-spacing:48.746667pt;}
.lsd{letter-spacing:57.088000pt;}
.ls19{letter-spacing:73.600000pt;}
.ls0{letter-spacing:175.978667pt;}
.ls1{letter-spacing:742.560000pt;}
.ws4{word-spacing:-64.000000pt;}
.wsb{word-spacing:-16.704000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.428160pt;}
.wsa{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-15.061333pt;}
._b{margin-left:-13.440000pt;}
._a{margin-left:-12.256000pt;}
._9{margin-left:-11.061333pt;}
._2{margin-left:-7.957333pt;}
._c{margin-left:-5.749333pt;}
._5{margin-left:-4.320000pt;}
._1{margin-left:-2.624000pt;}
._0{margin-left:-1.536000pt;}
._4{width:1.056000pt;}
._12{width:2.144000pt;}
._e{width:3.200000pt;}
._16{width:4.192000pt;}
._10{width:5.184000pt;}
._11{width:6.432000pt;}
._15{width:7.712000pt;}
._13{width:9.312000pt;}
._14{width:10.272000pt;}
._18{width:11.210667pt;}
._f{width:12.800000pt;}
._1d{width:13.696000pt;}
._1c{width:14.784000pt;}
._1b{width:17.536000pt;}
._21{width:18.624000pt;}
._44{width:19.712000pt;}
._34{width:20.864000pt;}
._43{width:21.760000pt;}
._28{width:22.656000pt;}
._42{width:23.744000pt;}
._4b{width:24.661333pt;}
._1f{width:25.578667pt;}
._20{width:26.688000pt;}
._1e{width:28.032000pt;}
._19{width:28.928000pt;}
._1a{width:30.144000pt;}
._46{width:31.178667pt;}
._22{width:32.448000pt;}
._23{width:33.642667pt;}
._4d{width:34.752000pt;}
._4e{width:35.648000pt;}
._41{width:36.544000pt;}
._31{width:38.336000pt;}
._2b{width:40.576000pt;}
._52{width:41.472000pt;}
._6a{width:42.368000pt;}
._3c{width:43.392000pt;}
._4f{width:44.672000pt;}
._47{width:45.760000pt;}
._48{width:46.720000pt;}
._45{width:48.000000pt;}
._33{width:49.216000pt;}
._58{width:50.688000pt;}
._68{width:52.160000pt;}
._59{width:53.696000pt;}
._36{width:54.720000pt;}
._35{width:55.744000pt;}
._2e{width:56.832000pt;}
._32{width:59.136000pt;}
._4c{width:60.032000pt;}
._3e{width:61.056000pt;}
._49{width:61.952000pt;}
._4a{width:62.880000pt;}
._2d{width:64.320000pt;}
._54{width:70.784000pt;}
._63{width:72.810667pt;}
._26{width:73.792000pt;}
._30{width:83.136000pt;}
._39{width:84.928000pt;}
._69{width:90.176000pt;}
._5f{width:94.400000pt;}
._60{width:95.797333pt;}
._3f{width:102.720000pt;}
._53{width:106.240000pt;}
._6c{width:107.200000pt;}
._6b{width:108.320000pt;}
._3d{width:110.528000pt;}
._5d{width:111.498667pt;}
._5c{width:112.704000pt;}
._3a{width:115.328000pt;}
._2c{width:121.333333pt;}
._66{width:125.440000pt;}
._40{width:142.976000pt;}
._38{width:153.472000pt;}
._2f{width:157.824000pt;}
._27{width:160.768000pt;}
._62{width:163.712000pt;}
._61{width:164.736000pt;}
._d{width:172.778667pt;}
._29{width:175.296000pt;}
._37{width:186.048000pt;}
._2a{width:190.208000pt;}
._50{width:212.096000pt;}
._5e{width:213.728000pt;}
._57{width:246.400000pt;}
._67{width:268.480000pt;}
._56{width:318.154667pt;}
._5b{width:319.061333pt;}
._5a{width:320.192000pt;}
._55{width:321.952000pt;}
._51{width:342.933333pt;}
._3b{width:378.624000pt;}
._64{width:427.136000pt;}
._65{width:428.224000pt;}
._17{width:752.138667pt;}
._6{width:926.240000pt;}
._3{width:944.266667pt;}
._24{width:1053.706667pt;}
._25{width:1056.266667pt;}
._7{width:1085.706667pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1a3{bottom:3.520000pt;}
.yc1{bottom:4.000000pt;}
.ye7{bottom:12.480000pt;}
.yb3{bottom:12.640000pt;}
.ybb{bottom:13.120000pt;}
.ye1{bottom:13.280000pt;}
.yeb{bottom:21.760000pt;}
.y1c8{bottom:21.914667pt;}
.y1a0{bottom:21.920000pt;}
.yc0{bottom:22.400000pt;}
.ye5{bottom:30.880000pt;}
.y1a1{bottom:31.040000pt;}
.yba{bottom:31.520000pt;}
.ydf{bottom:31.680000pt;}
.yea{bottom:40.160000pt;}
.y1c7{bottom:40.314667pt;}
.y1a2{bottom:40.320000pt;}
.ybf{bottom:40.800000pt;}
.ye4{bottom:49.280000pt;}
.y1a6{bottom:49.440000pt;}
.yb7{bottom:49.920000pt;}
.yde{bottom:50.080000pt;}
.y2{bottom:50.560000pt;}
.yce{bottom:53.920000pt;}
.ye9{bottom:58.560000pt;}
.y1c6{bottom:58.714667pt;}
.y1a5{bottom:58.720000pt;}
.yb5{bottom:59.200000pt;}
.ye3{bottom:67.680000pt;}
.y1b1{bottom:67.840000pt;}
.yb6{bottom:68.320000pt;}
.ydd{bottom:68.506667pt;}
.y1{bottom:68.960000pt;}
.ycd{bottom:72.320000pt;}
.ye8{bottom:76.960000pt;}
.y1c5{bottom:77.114667pt;}
.y1a8{bottom:77.120000pt;}
.ybe{bottom:77.600000pt;}
.yd9{bottom:77.626667pt;}
.ye6{bottom:86.080000pt;}
.y1b0{bottom:86.240000pt;}
.yb9{bottom:86.720000pt;}
.yd7{bottom:86.906667pt;}
.ycc{bottom:90.720000pt;}
.y1bf{bottom:95.514667pt;}
.y1ac{bottom:95.520000pt;}
.ybd{bottom:95.840000pt;}
.yd8{bottom:96.026667pt;}
.yd5{bottom:99.880000pt;}
.y149{bottom:103.392000pt;}
.y1af{bottom:104.640000pt;}
.yb8{bottom:105.120000pt;}
.ydc{bottom:105.146667pt;}
.y174{bottom:105.952000pt;}
.y145{bottom:107.232000pt;}
.yab{bottom:108.192000pt;}
.ycb{bottom:109.160000pt;}
.y1bc{bottom:112.192000pt;}
.y57{bottom:112.672000pt;}
.y1be{bottom:113.914667pt;}
.y1ab{bottom:113.920000pt;}
.y169{bottom:114.112000pt;}
.ybc{bottom:114.240000pt;}
.yd4{bottom:118.280000pt;}
.yf3{bottom:118.912000pt;}
.y45{bottom:120.192000pt;}
.y2e{bottom:122.592000pt;}
.y1ae{bottom:123.040000pt;}
.ydb{bottom:123.546667pt;}
.yed{bottom:125.952000pt;}
.yc6{bottom:127.560000pt;}
.y138{bottom:129.632000pt;}
.y183{bottom:130.912000pt;}
.y1bd{bottom:132.314667pt;}
.y1aa{bottom:132.320000pt;}
.yb1{bottom:134.426667pt;}
.ya0{bottom:135.706667pt;}
.yd3{bottom:136.680000pt;}
.y15b{bottom:138.106667pt;}
.y14c{bottom:139.226667pt;}
.y104{bottom:140.186667pt;}
.y1ad{bottom:141.440000pt;}
.yda{bottom:141.946667pt;}
.y173{bottom:142.586667pt;}
.y144{bottom:144.026667pt;}
.yaa{bottom:144.986667pt;}
.yc4{bottom:145.960000pt;}
.y125{bottom:146.906667pt;}
.y8c{bottom:147.546667pt;}
.y1c4{bottom:150.714667pt;}
.y1bb{bottom:150.720000pt;}
.y1a9{bottom:150.760000pt;}
.y168{bottom:150.906667pt;}
.yd2{bottom:155.080000pt;}
.yf2{bottom:155.706667pt;}
.y44{bottom:156.986667pt;}
.y1d9{bottom:159.226667pt;}
.y1b4{bottom:159.840000pt;}
.y56{bottom:160.186667pt;}
.ye0{bottom:160.346667pt;}
.y170{bottom:161.626667pt;}
.yec{bottom:162.746667pt;}
.yc3{bottom:164.360000pt;}
.y194{bottom:165.306667pt;}
.y137{bottom:166.426667pt;}
.y182{bottom:167.546667pt;}
.y1c3{bottom:169.114667pt;}
.y1ba{bottom:169.146667pt;}
.y2d{bottom:170.106667pt;}
.yb0{bottom:171.226667pt;}
.y19e{bottom:172.186667pt;}
.y9f{bottom:172.506667pt;}
.yd1{bottom:173.480000pt;}
.y66{bottom:176.026667pt;}
.y100{bottom:176.986667pt;}
.y1b3{bottom:178.266667pt;}
.y124{bottom:180.186667pt;}
.y172{bottom:180.666667pt;}
.y143{bottom:180.826667pt;}
.y1a{bottom:181.146667pt;}
.ya9{bottom:181.786667pt;}
.yc5{bottom:182.760000pt;}
.y8b{bottom:184.346667pt;}
.y15a{bottom:185.626667pt;}
.y14b{bottom:186.586667pt;}
.y1c2{bottom:187.514667pt;}
.y1b9{bottom:187.546667pt;}
.y7e{bottom:187.706667pt;}
.y11f{bottom:190.266667pt;}
.y167{bottom:191.386667pt;}
.yd0{bottom:191.880000pt;}
.yf1{bottom:192.506667pt;}
.y43{bottom:193.786667pt;}
.y1d8{bottom:196.026667pt;}
.y1b6{bottom:196.666667pt;}
.y16f{bottom:198.426667pt;}
.y19{bottom:199.546667pt;}
.yca{bottom:201.160000pt;}
.y136{bottom:203.226667pt;}
.y181{bottom:205.626667pt;}
.y1b8{bottom:205.946667pt;}
.y1c1{bottom:205.954667pt;}
.y55{bottom:207.546667pt;}
.y1db{bottom:208.026667pt;}
.y19d{bottom:208.986667pt;}
.y9e{bottom:209.306667pt;}
.ycf{bottom:210.280000pt;}
.y193{bottom:212.666667pt;}
.y160{bottom:212.826667pt;}
.yff{bottom:213.786667pt;}
.y1b5{bottom:215.066667pt;}
.y171{bottom:217.306667pt;}
.y2c{bottom:217.626667pt;}
.y18{bottom:217.946667pt;}
.ya8{bottom:218.586667pt;}
.yc9{bottom:219.560000pt;}
.y10d{bottom:220.986667pt;}
.y8a{bottom:221.146667pt;}
.y65{bottom:223.386667pt;}
.y1b7{bottom:224.346667pt;}
.y1c0{bottom:224.354667pt;}
.y7d{bottom:224.506667pt;}
.y11e{bottom:227.066667pt;}
.y142{bottom:228.186667pt;}
.yf0{bottom:229.306667pt;}
.y42{bottom:230.586667pt;}
.y1d7{bottom:232.826667pt;}
.y159{bottom:232.986667pt;}
.y12e{bottom:233.146667pt;}
.y14a{bottom:234.106667pt;}
.y16e{bottom:235.226667pt;}
.y17{bottom:236.346667pt;}
.yc8{bottom:237.960000pt;}
.y166{bottom:238.906667pt;}
.yf4{bottom:240.026667pt;}
.y180{bottom:242.426667pt;}
.y1da{bottom:244.826667pt;}
.y19c{bottom:245.786667pt;}
.y9d{bottom:246.106667pt;}
.y192{bottom:249.466667pt;}
.y15f{bottom:249.626667pt;}
.yfe{bottom:250.586667pt;}
.y2b{bottom:254.426667pt;}
.y16{bottom:254.746667pt;}
.y54{bottom:255.066667pt;}
.yaf{bottom:255.386667pt;}
.yc7{bottom:256.360000pt;}
.y89{bottom:257.786667pt;}
.y10c{bottom:259.066667pt;}
.y7c{bottom:261.306667pt;}
.ya7{bottom:266.106667pt;}
.y41{bottom:267.386667pt;}
.y1d6{bottom:269.626667pt;}
.y12d{bottom:269.946667pt;}
.y64{bottom:270.906667pt;}
.y16d{bottom:272.026667pt;}
.y15{bottom:273.146667pt;}
.y11d{bottom:274.426667pt;}
.y141{bottom:275.706667pt;}
.yef{bottom:276.826667pt;}
.y17f{bottom:279.066667pt;}
.y158{bottom:280.506667pt;}
.y70{bottom:281.626667pt;}
.y19b{bottom:282.586667pt;}
.y9c{bottom:282.906667pt;}
.y191{bottom:286.266667pt;}
.y15e{bottom:286.426667pt;}
.yfd{bottom:287.386667pt;}
.y14{bottom:291.546667pt;}
.yf7{bottom:292.186667pt;}
.y10b{bottom:295.706667pt;}
.y88{bottom:295.866667pt;}
.y7b{bottom:298.106667pt;}
.y2a{bottom:301.786667pt;}
.y53{bottom:302.586667pt;}
.ya6{bottom:302.906667pt;}
.y40{bottom:304.226667pt;}
.y12c{bottom:306.786667pt;}
.y16c{bottom:308.866667pt;}
.y13{bottom:309.986667pt;}
.y11c{bottom:311.266667pt;}
.yee{bottom:313.666667pt;}
.y1d5{bottom:317.026667pt;}
.y17e{bottom:317.186667pt;}
.y63{bottom:318.466667pt;}
.y19a{bottom:319.426667pt;}
.y190{bottom:323.106667pt;}
.y140{bottom:323.266667pt;}
.yfc{bottom:324.226667pt;}
.y157{bottom:328.066667pt;}
.y12{bottom:328.386667pt;}
.y6f{bottom:329.026667pt;}
.y9b{bottom:330.306667pt;}
.y87{bottom:332.706667pt;}
.y10a{bottom:333.826667pt;}
.y7a{bottom:334.946667pt;}
.yae{bottom:339.746667pt;}
.y3f{bottom:341.026667pt;}
.ye2{bottom:341.506667pt;}
.y16b{bottom:345.666667pt;}
.y11{bottom:346.786667pt;}
.y29{bottom:349.346667pt;}
.y52{bottom:349.986667pt;}
.ya5{bottom:350.466667pt;}
.y1b2{bottom:351.426667pt;}
.y1d4{bottom:353.826667pt;}
.y17d{bottom:353.986667pt;}
.y12b{bottom:354.306667pt;}
.y199{bottom:356.226667pt;}
.y11b{bottom:358.786667pt;}
.y18f{bottom:359.906667pt;}
.y15d{bottom:360.066667pt;}
.yfb{bottom:361.026667pt;}
.y10{bottom:365.186667pt;}
.y62{bottom:365.826667pt;}
.yb4{bottom:366.306667pt;}
.y9a{bottom:367.106667pt;}
.y86{bottom:369.506667pt;}
.y109{bottom:370.466667pt;}
.y13f{bottom:370.626667pt;}
.y79{bottom:371.746667pt;}
.y156{bottom:375.426667pt;}
.y6e{bottom:376.546667pt;}
.y3e{bottom:377.826667pt;}
.y165{bottom:381.346667pt;}
.y16a{bottom:382.466667pt;}
.yf{bottom:383.586667pt;}
.y135{bottom:387.106667pt;}
.ya4{bottom:387.266667pt;}
.y1d3{bottom:390.626667pt;}
.y17c{bottom:390.786667pt;}
.y12a{bottom:391.106667pt;}
.y198{bottom:393.026667pt;}
.y11a{bottom:395.586667pt;}
.y28{bottom:396.866667pt;}
.y51{bottom:397.506667pt;}
.yfa{bottom:397.826667pt;}
.ye{bottom:401.986667pt;}
.y99{bottom:403.906667pt;}
.y85{bottom:406.306667pt;}
.y18e{bottom:407.426667pt;}
.y103{bottom:408.546667pt;}
.y61{bottom:413.346667pt;}
.y3d{bottom:414.626667pt;}
.y13e{bottom:418.146667pt;}
.y78{bottom:419.266667pt;}
.yd{bottom:420.386667pt;}
.y155{bottom:422.946667pt;}
.y134{bottom:423.906667pt;}
.y6d{bottom:424.066667pt;}
.y1d2{bottom:427.426667pt;}
.y17b{bottom:427.586667pt;}
.y129{bottom:427.906667pt;}
.y164{bottom:428.866667pt;}
.y197{bottom:429.826667pt;}
.y15c{bottom:433.666667pt;}
.ya3{bottom:434.626667pt;}
.yc{bottom:438.466667pt;}
.y98{bottom:440.546667pt;}
.y84{bottom:443.106667pt;}
.y27{bottom:444.226667pt;}
.y50{bottom:445.026667pt;}
.yf9{bottom:445.346667pt;}
.yf6{bottom:450.146667pt;}
.y3c{bottom:451.426667pt;}
.yd6{bottom:452.226667pt;}
.yb{bottom:455.426667pt;}
.y77{bottom:456.066667pt;}
.y133{bottom:460.706667pt;}
.y60{bottom:460.866667pt;}
.y1d1{bottom:464.226667pt;}
.y17a{bottom:464.386667pt;}
.y13d{bottom:465.666667pt;}
.y196{bottom:466.626667pt;}
.y154{bottom:470.466667pt;}
.y6c{bottom:471.426667pt;}
.y123{bottom:472.386667pt;}
.ya{bottom:472.546667pt;}
.y128{bottom:475.266667pt;}
.y163{bottom:476.226667pt;}
.y97{bottom:478.626667pt;}
.y83{bottom:479.746667pt;}
.y119{bottom:479.906667pt;}
.y18d{bottom:481.026667pt;}
.yf8{bottom:482.146667pt;}
.y3b{bottom:488.226667pt;}
.y26{bottom:491.746667pt;}
.y4f{bottom:492.386667pt;}
.y76{bottom:492.866667pt;}
.yb2{bottom:496.546667pt;}
.y132{bottom:497.506667pt;}
.yad{bottom:497.666667pt;}
.y179{bottom:501.186667pt;}
.y195{bottom:503.426667pt;}
.y5f{bottom:508.226667pt;}
.y122{bottom:509.186667pt;}
.y1d0{bottom:511.746667pt;}
.y13c{bottom:513.026667pt;}
.y96{bottom:515.426667pt;}
.y118{bottom:516.706667pt;}
.y82{bottom:517.826667pt;}
.ya2{bottom:518.973333pt;}
.y127{bottom:522.813333pt;}
.y162{bottom:523.773333pt;}
.y3a{bottom:525.053333pt;}
.y9{bottom:527.773333pt;}
.y18c{bottom:528.413333pt;}
.y75{bottom:529.693333pt;}
.y131{bottom:534.333333pt;}
.yf5{bottom:534.493333pt;}
.y178{bottom:537.853333pt;}
.y25{bottom:539.293333pt;}
.y4e{bottom:539.933333pt;}
.y108{bottom:540.253333pt;}
.y5e{bottom:545.053333pt;}
.y8{bottom:546.173333pt;}
.y95{bottom:552.253333pt;}
.y117{bottom:553.533333pt;}
.y81{bottom:554.653333pt;}
.y6b{bottom:555.773333pt;}
.y126{bottom:555.933333pt;}
.y121{bottom:556.733333pt;}
.y1cf{bottom:559.293333pt;}
.y13b{bottom:560.573333pt;}
.y39{bottom:561.853333pt;}
.y18b{bottom:565.213333pt;}
.y153{bottom:565.373333pt;}
.y74{bottom:566.493333pt;}
.y130{bottom:571.133333pt;}
.y161{bottom:571.293333pt;}
.y177{bottom:575.933333pt;}
.y107{bottom:577.053333pt;}
.y5d{bottom:581.853333pt;}
.y24{bottom:586.653333pt;}
.y4d{bottom:587.453333pt;}
.y94{bottom:590.173333pt;}
.y1a7{bottom:590.653333pt;}
.y80{bottom:591.453333pt;}
.y6a{bottom:592.573333pt;}
.y7{bottom:593.533333pt;}
.y38{bottom:598.653333pt;}
.y18a{bottom:602.013333pt;}
.y73{bottom:603.293333pt;}
.y1ce{bottom:606.653333pt;}
.y13a{bottom:607.933333pt;}
.y152{bottom:612.733333pt;}
.y106{bottom:613.853333pt;}
.y5c{bottom:618.653333pt;}
.y7f{bottom:628.093333pt;}
.y69{bottom:629.373333pt;}
.y6{bottom:630.333333pt;}
.y23{bottom:634.173333pt;}
.y4c{bottom:634.813333pt;}
.y37{bottom:635.453333pt;}
.y116{bottom:637.693333pt;}
.yc2{bottom:637.853333pt;}
.y93{bottom:638.813333pt;}
.y72{bottom:639.933333pt;}
.y176{bottom:649.533333pt;}
.y105{bottom:650.653333pt;}
.y12f{bottom:651.933333pt;}
.y1cd{bottom:654.173333pt;}
.y139{bottom:655.453333pt;}
.y151{bottom:660.253333pt;}
.y5b{bottom:666.173333pt;}
.y120{bottom:666.973333pt;}
.y36{bottom:672.253333pt;}
.y115{bottom:674.493333pt;}
.y189{bottom:675.613333pt;}
.y71{bottom:676.733333pt;}
.y5{bottom:677.853333pt;}
.y22{bottom:681.533333pt;}
.y4b{bottom:682.333333pt;}
.y92{bottom:686.333333pt;}
.y102{bottom:687.453333pt;}
.y148{bottom:692.253333pt;}
.y1cc{bottom:701.533333pt;}
.y5a{bottom:702.973333pt;}
.y150{bottom:707.773333pt;}
.y35{bottom:709.053333pt;}
.y114{bottom:711.293333pt;}
.y4{bottom:712.253333pt;}
.y188{bottom:712.413333pt;}
.y68{bottom:713.533333pt;}
.y91{bottom:723.133333pt;}
.y101{bottom:724.253333pt;}
.y3{bottom:727.133333pt;}
.y21{bottom:729.053333pt;}
.y4a{bottom:729.853333pt;}
.yac{bottom:739.813333pt;}
.y34{bottom:745.893333pt;}
.y113{bottom:748.133333pt;}
.y1cb{bottom:749.093333pt;}
.y187{bottom:749.253333pt;}
.y59{bottom:750.373333pt;}
.y14f{bottom:755.173333pt;}
.y1a4{bottom:756.293333pt;}
.y90{bottom:759.973333pt;}
.ya1{bottom:761.093333pt;}
.y147{bottom:765.893333pt;}
.y20{bottom:776.613333pt;}
.y49{bottom:776.773333pt;}
.y33{bottom:782.693333pt;}
.y112{bottom:784.933333pt;}
.y186{bottom:786.053333pt;}
.y58{bottom:787.173333pt;}
.y1ca{bottom:796.613333pt;}
.y8f{bottom:796.773333pt;}
.y67{bottom:797.893333pt;}
.y14e{bottom:802.693333pt;}
.y1c9{bottom:812.133333pt;}
.y146{bottom:813.413333pt;}
.y32{bottom:819.493333pt;}
.y111{bottom:821.733333pt;}
.y185{bottom:822.853333pt;}
.y1f{bottom:823.973333pt;}
.y19f{bottom:830.533333pt;}
.y8e{bottom:833.573333pt;}
.y48{bottom:834.693333pt;}
.y14d{bottom:850.213333pt;}
.y31{bottom:856.133333pt;}
.y184{bottom:859.653333pt;}
.y1e{bottom:860.773333pt;}
.y110{bottom:869.093333pt;}
.y8d{bottom:870.213333pt;}
.y175{bottom:870.373333pt;}
.y47{bottom:871.493333pt;}
.y30{bottom:892.933333pt;}
.y1d{bottom:897.573333pt;}
.y10f{bottom:907.173333pt;}
.y46{bottom:908.293333pt;}
.y2f{bottom:939.973333pt;}
.y10e{bottom:943.813333pt;}
.y1c{bottom:945.093333pt;}
.y1b{bottom:993.920000pt;}
.h9{height:36.672000pt;}
.he{height:55.200000pt;}
.h8{height:57.375000pt;}
.h3{height:57.787500pt;}
.h4{height:62.781250pt;}
.h1{height:62.812500pt;}
.h2{height:64.500000pt;}
.h7{height:65.781915pt;}
.h6{height:66.625000pt;}
.h5{height:71.944688pt;}
.hf{height:73.600000pt;}
.hd{height:109.920000pt;}
.ha{height:129.600000pt;}
.h12{height:147.226667pt;}
.h10{height:165.626667pt;}
.hc{height:184.986667pt;}
.h11{height:239.226667pt;}
.hb{height:321.506667pt;}
.h0{height:1056.000000pt;}
.w2{width:107.520000pt;}
.w3{width:113.792000pt;}
.w7{width:124.640000pt;}
.w4{width:125.312000pt;}
.w5{width:138.746667pt;}
.w8{width:139.706667pt;}
.w9{width:170.106667pt;}
.w6{width:176.186667pt;}
.wa{width:207.906667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.xf{left:88.832000pt;}
.x5{left:96.031988pt;}
.xe{left:120.031988pt;}
.x2{left:144.026655pt;}
.x3{left:166.106655pt;}
.x16{left:168.026655pt;}
.xd{left:192.026655pt;}
.x11{left:196.346667pt;}
.x17{left:213.466667pt;}
.x1{left:263.906655pt;}
.x8{left:265.186655pt;}
.x9{left:304.226655pt;}
.x12{left:310.146667pt;}
.xa{left:331.426655pt;}
.x18{left:353.186667pt;}
.xc{left:368.546655pt;}
.xb{left:376.226655pt;}
.x4{left:385.506655pt;}
.x7{left:408.093321pt;}
.x6{left:432.093321pt;}
.x13{left:435.453333pt;}
.x19{left:523.293333pt;}
.x14{left:574.213333pt;}
.x15{left:720.159988pt;}
}




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