
    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_8398e246fea794dc6f09aaa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_a07772832781bfc610a579e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a80760331530e2e8be509ee2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f93fd1e8a24bc453fc62613b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_3346e3c8f69e9bef41c3d5c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_1849ca462e59ad17cef598c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_665ce3f838704205ca86ac65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_32fd1c729fe02d382a2c503b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls23{letter-spacing:-0.431400px;}
.ls22{letter-spacing:-0.248400px;}
.ls17{letter-spacing:-0.228000px;}
.ls10{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.132600px;}
.ls16{letter-spacing:-0.115800px;}
.ls1c{letter-spacing:-0.107400px;}
.ls18{letter-spacing:-0.078600px;}
.lsc{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls21{letter-spacing:0.060480px;}
.ls1d{letter-spacing:0.066240px;}
.lsf{letter-spacing:0.074880px;}
.lse{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.220320px;}
.ls15{letter-spacing:0.243600px;}
.lsd{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.288600px;}
.ls14{letter-spacing:0.303000px;}
.ls1a{letter-spacing:0.348600px;}
.ls24{letter-spacing:0.479520px;}
.ls11{letter-spacing:0.894240px;}
.ls19{letter-spacing:1.026000px;}
.ls20{letter-spacing:12.330720px;}
.ls9{letter-spacing:16.145280px;}
.ls1{letter-spacing:22.266720px;}
.ls1f{letter-spacing:42.570720px;}
.ls1b{letter-spacing:58.625280px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.wsa{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wse{word-spacing:-13.854360px;}
.wsb{word-spacing:-13.808760px;}
.wsf{word-spacing:-13.749360px;}
.ws11{word-spacing:-13.646160px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.440960px;}
.wsd{word-spacing:-13.427160px;}
.ws10{word-spacing:-13.398360px;}
.wsc{word-spacing:-13.277760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-533.098560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.758240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.172160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-223.014000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-189.930240px;}
._24{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.134400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.155360px;}
._11{margin-left:-115.342560px;}
._22{margin-left:-109.765680px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.700000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-48.883920px;}
._19{margin-left:-31.530240px;}
._43{margin-left:-4.088880px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._26{width:1.053360px;}
._27{width:2.644800px;}
._29{width:4.208400px;}
._28{width:5.808240px;}
._30{width:6.872400px;}
._2f{width:7.888320px;}
._31{width:8.913600px;}
._2e{width:9.920160px;}
._2c{width:11.437920px;}
._2d{width:12.485520px;}
._2a{width:15.537600px;}
._2b{width:17.173440px;}
._47{width:18.264240px;}
._48{width:19.601280px;}
._49{width:20.863440px;}
._40{width:21.876480px;}
._38{width:23.006160px;}
._37{width:24.173280px;}
._33{width:25.308000px;}
._32{width:26.397360px;}
._4f{width:27.610560px;}
._52{width:28.658160px;}
._35{width:29.880000px;}
._51{width:33.190560px;}
._50{width:34.457760px;}
._3c{width:36.296640px;}
._46{width:40.300560px;}
._4a{width:47.987280px;}
._3a{width:51.931440px;}
._44{width:56.174400px;}
._36{width:57.489120px;}
._4c{width:58.684320px;}
._3b{width:64.839600px;}
._3e{width:71.413200px;}
._3f{width:73.504800px;}
._45{width:92.209680px;}
._34{width:106.914720px;}
._39{width:109.301040px;}
._4d{width:129.798720px;}
._4b{width:148.324320px;}
._41{width:156.451680px;}
._42{width:189.259920px;}
._3d{width:197.028720px;}
._4e{width:238.621680px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y58{bottom:6.660000px;}
.y6d{bottom:6.690000px;}
.y64{bottom:27.714000px;}
.y5c{bottom:27.720000px;}
.y6c{bottom:27.750000px;}
.y5f{bottom:27.765000px;}
.y63{bottom:48.774000px;}
.y5b{bottom:48.780000px;}
.y6b{bottom:48.810000px;}
.y6{bottom:61.596000px;}
.y62{bottom:69.834000px;}
.y5a{bottom:69.840000px;}
.y69{bottom:88.776000px;}
.yf5{bottom:89.856000px;}
.y61{bottom:90.894000px;}
.y70{bottom:90.900000px;}
.y74{bottom:90.945000px;}
.y68{bottom:93.996000px;}
.y32{bottom:95.076000px;}
.yf8{bottom:95.436000px;}
.y67{bottom:105.876000px;}
.yc9{bottom:106.596000px;}
.yf4{bottom:110.916000px;}
.y66{bottom:111.096000px;}
.y112{bottom:111.636000px;}
.y6f{bottom:111.960000px;}
.y73{bottom:112.005000px;}
.yfd{bottom:112.356000px;}
.y31{bottom:116.136000px;}
.yf7{bottom:116.496000px;}
.y12e{bottom:119.376000px;}
.y65{bottom:123.876000px;}
.ybc{bottom:125.316000px;}
.yde{bottom:126.036000px;}
.y92{bottom:129.636000px;}
.yf3{bottom:131.976000px;}
.y111{bottom:132.696000px;}
.yf6{bottom:133.416000px;}
.y30{bottom:137.196000px;}
.y60{bottom:142.596000px;}
.ydd{bottom:147.096000px;}
.y91{bottom:150.690000px;}
.yf2{bottom:153.030000px;}
.y110{bottom:153.750000px;}
.yfc{bottom:154.470000px;}
.y2f{bottom:158.250000px;}
.ydc{bottom:168.150000px;}
.y90{bottom:171.750000px;}
.yf1{bottom:174.090000px;}
.y10f{bottom:174.810000px;}
.yfb{bottom:175.530000px;}
.y2e{bottom:179.310000px;}
.ybb{bottom:189.210000px;}
.y8f{bottom:192.810000px;}
.yf0{bottom:195.150000px;}
.y10e{bottom:195.870000px;}
.yfa{bottom:196.590000px;}
.y2d{bottom:200.370000px;}
.y12d{bottom:204.330000px;}
.ydb{bottom:210.270000px;}
.y8e{bottom:213.870000px;}
.yef{bottom:216.210000px;}
.y10d{bottom:216.930000px;}
.yf9{bottom:217.650000px;}
.y2c{bottom:221.430000px;}
.y12c{bottom:225.030000px;}
.yda{bottom:231.330000px;}
.y8d{bottom:234.930000px;}
.yee{bottom:237.270000px;}
.y10c{bottom:237.990000px;}
.yba{bottom:238.710000px;}
.y2b{bottom:242.490000px;}
.y12b{bottom:245.730000px;}
.y5e{bottom:248.610000px;}
.yd9{bottom:252.390000px;}
.y8c{bottom:255.990000px;}
.yed{bottom:258.330000px;}
.y10b{bottom:259.050000px;}
.yb9{bottom:259.770000px;}
.y2a{bottom:263.370000px;}
.y12a{bottom:266.430000px;}
.yd8{bottom:273.495000px;}
.y8b{bottom:277.095000px;}
.yec{bottom:279.435000px;}
.y10a{bottom:280.155000px;}
.yb8{bottom:280.875000px;}
.y29{bottom:284.475000px;}
.y129{bottom:287.175000px;}
.y5d{bottom:291.495000px;}
.yd7{bottom:294.555000px;}
.y8a{bottom:298.155000px;}
.yeb{bottom:300.495000px;}
.y109{bottom:301.215000px;}
.yb7{bottom:301.935000px;}
.y28{bottom:305.535000px;}
.y128{bottom:307.875000px;}
.yd6{bottom:315.615000px;}
.y89{bottom:319.215000px;}
.yea{bottom:321.555000px;}
.y108{bottom:322.275000px;}
.yb6{bottom:322.995000px;}
.y27{bottom:326.595000px;}
.y127{bottom:328.575000px;}
.yd5{bottom:336.675000px;}
.y88{bottom:340.275000px;}
.ye9{bottom:342.615000px;}
.y107{bottom:343.335000px;}
.yb5{bottom:344.055000px;}
.y26{bottom:347.655000px;}
.y126{bottom:349.275000px;}
.y59{bottom:355.395000px;}
.yd4{bottom:357.735000px;}
.y87{bottom:361.335000px;}
.ye8{bottom:363.675000px;}
.y106{bottom:364.395000px;}
.yb4{bottom:365.115000px;}
.y25{bottom:368.715000px;}
.y125{bottom:369.975000px;}
.yd3{bottom:378.795000px;}
.y86{bottom:382.395000px;}
.ye7{bottom:384.735000px;}
.y105{bottom:385.455000px;}
.yb3{bottom:386.175000px;}
.y24{bottom:389.775000px;}
.y124{bottom:390.675000px;}
.yd2{bottom:399.855000px;}
.y85{bottom:403.455000px;}
.ye6{bottom:405.795000px;}
.y104{bottom:406.515000px;}
.yb2{bottom:407.235000px;}
.y23{bottom:410.835000px;}
.y123{bottom:411.375000px;}
.yd1{bottom:420.915000px;}
.y84{bottom:424.515000px;}
.ye5{bottom:426.855000px;}
.y103{bottom:427.575000px;}
.yb1{bottom:428.295000px;}
.y22{bottom:431.895000px;}
.y122{bottom:432.075000px;}
.y57{bottom:440.535000px;}
.yd0{bottom:441.975000px;}
.y83{bottom:445.575000px;}
.ye4{bottom:447.915000px;}
.y102{bottom:448.635000px;}
.yb0{bottom:449.355000px;}
.y121{bottom:452.775000px;}
.y21{bottom:452.955000px;}
.ycf{bottom:463.035000px;}
.y82{bottom:466.635000px;}
.y56{bottom:468.975000px;}
.y101{bottom:469.695000px;}
.yaf{bottom:470.415000px;}
.y120{bottom:473.475000px;}
.y20{bottom:474.015000px;}
.yce{bottom:484.095000px;}
.y81{bottom:487.695000px;}
.y55{bottom:490.035000px;}
.y100{bottom:490.755000px;}
.yae{bottom:491.475000px;}
.yc8{bottom:492.915000px;}
.y11f{bottom:494.175000px;}
.y1f{bottom:495.075000px;}
.ycd{bottom:505.155000px;}
.y80{bottom:508.755000px;}
.y54{bottom:511.095000px;}
.yff{bottom:511.815000px;}
.yad{bottom:512.535000px;}
.y11e{bottom:514.875000px;}
.y1e{bottom:516.135000px;}
.ycc{bottom:526.215000px;}
.y7f{bottom:529.815000px;}
.y53{bottom:532.155000px;}
.yfe{bottom:532.875000px;}
.yac{bottom:533.595000px;}
.y11d{bottom:535.575000px;}
.y1d{bottom:537.195000px;}
.ycb{bottom:547.275000px;}
.y7e{bottom:550.875000px;}
.y52{bottom:553.215000px;}
.yab{bottom:554.655000px;}
.y11c{bottom:556.305000px;}
.y1c{bottom:558.285000px;}
.yca{bottom:564.225000px;}
.y7d{bottom:571.965000px;}
.y51{bottom:574.305000px;}
.yaa{bottom:575.745000px;}
.y11b{bottom:576.825000px;}
.y1b{bottom:579.345000px;}
.y7c{bottom:593.025000px;}
.y50{bottom:595.365000px;}
.ya9{bottom:596.805000px;}
.y11a{bottom:597.525000px;}
.y1a{bottom:600.405000px;}
.y7b{bottom:614.085000px;}
.y4f{bottom:616.425000px;}
.ya8{bottom:617.865000px;}
.y119{bottom:618.225000px;}
.y19{bottom:621.465000px;}
.y7a{bottom:635.145000px;}
.y4e{bottom:637.485000px;}
.ya7{bottom:638.925000px;}
.y18{bottom:642.525000px;}
.y79{bottom:656.205000px;}
.y4d{bottom:658.545000px;}
.y118{bottom:659.625000px;}
.ya6{bottom:659.805000px;}
.y17{bottom:663.585000px;}
.y78{bottom:677.265000px;}
.y4c{bottom:679.605000px;}
.y117{bottom:680.325000px;}
.ya5{bottom:680.865000px;}
.y16{bottom:684.645000px;}
.y77{bottom:698.325000px;}
.y4b{bottom:700.665000px;}
.y116{bottom:701.025000px;}
.ya4{bottom:701.925000px;}
.y15{bottom:705.705000px;}
.y76{bottom:719.385000px;}
.y4a{bottom:721.725000px;}
.ya3{bottom:722.985000px;}
.y14{bottom:726.765000px;}
.y75{bottom:740.445000px;}
.y115{bottom:742.425000px;}
.y49{bottom:742.605000px;}
.ya2{bottom:744.045000px;}
.y13{bottom:747.825000px;}
.y72{bottom:755.565000px;}
.yc7{bottom:761.505000px;}
.y114{bottom:763.125000px;}
.y48{bottom:763.665000px;}
.ya1{bottom:765.105000px;}
.y12{bottom:768.885000px;}
.yc6{bottom:782.565000px;}
.y113{bottom:783.825000px;}
.y47{bottom:784.725000px;}
.ya0{bottom:786.165000px;}
.y11{bottom:789.945000px;}
.yc5{bottom:803.625000px;}
.y46{bottom:805.785000px;}
.y9f{bottom:807.225000px;}
.y10{bottom:811.005000px;}
.yc4{bottom:824.685000px;}
.y45{bottom:826.845000px;}
.y9e{bottom:828.285000px;}
.yf{bottom:832.065000px;}
.yc3{bottom:845.790000px;}
.y44{bottom:847.950000px;}
.y9d{bottom:849.390000px;}
.ye{bottom:853.170000px;}
.yc2{bottom:866.670000px;}
.y43{bottom:869.010000px;}
.y9c{bottom:870.450000px;}
.yd{bottom:874.230000px;}
.y71{bottom:882.690000px;}
.yc1{bottom:887.730000px;}
.y42{bottom:890.070000px;}
.y9b{bottom:891.510000px;}
.yc{bottom:895.470000px;}
.yc0{bottom:908.790000px;}
.y41{bottom:911.130000px;}
.y9a{bottom:912.570000px;}
.yb{bottom:918.690000px;}
.ybf{bottom:924.090000px;}
.y3f{bottom:932.190000px;}
.y99{bottom:933.630000px;}
.y40{bottom:937.410000px;}
.ya{bottom:944.790000px;}
.y3e{bottom:953.250000px;}
.y98{bottom:954.690000px;}
.y9{bottom:961.530000px;}
.y3d{bottom:974.310000px;}
.y97{bottom:975.750000px;}
.y8{bottom:983.850000px;}
.ybe{bottom:987.990000px;}
.y6e{bottom:988.710000px;}
.y3c{bottom:995.370000px;}
.y96{bottom:996.810000px;}
.y7{bottom:1009.050000px;}
.y3b{bottom:1016.430000px;}
.y95{bottom:1017.870000px;}
.y3a{bottom:1037.490000px;}
.y94{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.ybd{bottom:1051.890000px;}
.y39{bottom:1058.550000px;}
.y93{bottom:1059.990000px;}
.ye3{bottom:1079.610000px;}
.y38{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.ye2{bottom:1100.670000px;}
.y37{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y6a{bottom:1115.790000px;}
.ye1{bottom:1121.760000px;}
.y36{bottom:1123.200000px;}
.ye0{bottom:1142.820000px;}
.y35{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.ydf{bottom:1163.880000px;}
.y34{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y33{bottom:1193.220000px;}
.ha{height:21.060000px;}
.h10{height:27.147656px;}
.h8{height:38.671172px;}
.h11{height:41.726953px;}
.h16{height:42.120000px;}
.hd{height:42.156000px;}
.hf{height:50.273438px;}
.h15{height:52.260820px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.hc{height:63.180000px;}
.h12{height:63.216000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.hb{height:84.240000px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.he{height:105.300000px;}
.h13{height:126.360000px;}
.h14{height:126.396000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:136.656000px;}
.w4{width:137.016000px;}
.wd{width:157.890000px;}
.wa{width:158.250000px;}
.w9{width:160.410000px;}
.w6{width:160.770000px;}
.we{width:166.710000px;}
.wb{width:167.610000px;}
.wf{width:438.375000px;}
.wc{width:438.735000px;}
.w8{width:454.935000px;}
.w5{width:455.655000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x13{left:11.700000px;}
.x6{left:53.999987px;}
.x12{left:58.859987px;}
.x14{left:64.260000px;}
.xd{left:69.840000px;}
.x1e{left:79.559987px;}
.x7{left:96.479987px;}
.x1f{left:106.595987px;}
.x8{left:117.935987px;}
.x1d{left:169.949987px;}
.x5{left:173.189987px;}
.x1a{left:197.129987px;}
.xf{left:206.850000px;}
.x15{left:222.510000px;}
.x11{left:270.029987px;}
.xb{left:285.689973px;}
.x3{left:286.769987px;}
.xc{left:290.549987px;}
.x2{left:350.714987px;}
.x1b{left:353.594987px;}
.x16{left:390.135000px;}
.x4{left:419.294987px;}
.x1{left:479.414987px;}
.x17{left:633.524973px;}
.x18{left:638.384987px;}
.x10{left:662.505000px;}
.x9{left:751.829973px;}
.xa{left:756.689987px;}
.x1c{left:824.549987px;}
.x19{left:827.609987px;}
.x20{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls23{letter-spacing:-0.383467pt;}
.ls22{letter-spacing:-0.220800pt;}
.ls17{letter-spacing:-0.202667pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls16{letter-spacing:-0.102933pt;}
.ls1c{letter-spacing:-0.095467pt;}
.ls18{letter-spacing:-0.069867pt;}
.lsc{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls21{letter-spacing:0.053760pt;}
.ls1d{letter-spacing:0.058880pt;}
.lsf{letter-spacing:0.066560pt;}
.lse{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.195840pt;}
.ls15{letter-spacing:0.216533pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.256533pt;}
.ls14{letter-spacing:0.269333pt;}
.ls1a{letter-spacing:0.309867pt;}
.ls24{letter-spacing:0.426240pt;}
.ls11{letter-spacing:0.794880pt;}
.ls19{letter-spacing:0.912000pt;}
.ls20{letter-spacing:10.960640pt;}
.ls9{letter-spacing:14.351360pt;}
.ls1{letter-spacing:19.792640pt;}
.ls1f{letter-spacing:37.840640pt;}
.ls1b{letter-spacing:52.111360pt;}
.ws12{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.wsa{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.314987pt;}
.wsb{word-spacing:-12.274453pt;}
.wsf{word-spacing:-12.221653pt;}
.ws11{word-spacing:-12.129920pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.947520pt;}
.wsd{word-spacing:-11.935253pt;}
.ws10{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.802453pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-473.865387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.562880pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.041920pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.234667pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.826880pt;}
._24{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.452800pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.360320pt;}
._11{margin-left:-102.526720pt;}
._22{margin-left:-97.569493pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.400000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.452373pt;}
._19{margin-left:-28.026880pt;}
._43{margin-left:-3.634560pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._26{width:0.936320pt;}
._27{width:2.350933pt;}
._29{width:3.740800pt;}
._28{width:5.162880pt;}
._30{width:6.108800pt;}
._2f{width:7.011840pt;}
._31{width:7.923200pt;}
._2e{width:8.817920pt;}
._2c{width:10.167040pt;}
._2d{width:11.098240pt;}
._2a{width:13.811200pt;}
._2b{width:15.265280pt;}
._47{width:16.234880pt;}
._48{width:17.423360pt;}
._49{width:18.545280pt;}
._40{width:19.445760pt;}
._38{width:20.449920pt;}
._37{width:21.487360pt;}
._33{width:22.496000pt;}
._32{width:23.464320pt;}
._4f{width:24.542720pt;}
._52{width:25.473920pt;}
._35{width:26.560000pt;}
._51{width:29.502720pt;}
._50{width:30.629120pt;}
._3c{width:32.263680pt;}
._46{width:35.822720pt;}
._4a{width:42.655360pt;}
._3a{width:46.161280pt;}
._44{width:49.932800pt;}
._36{width:51.101440pt;}
._4c{width:52.163840pt;}
._3b{width:57.635200pt;}
._3e{width:63.478400pt;}
._3f{width:65.337600pt;}
._45{width:81.964160pt;}
._34{width:95.035307pt;}
._39{width:97.156480pt;}
._4d{width:115.376640pt;}
._4b{width:131.843840pt;}
._41{width:139.068160pt;}
._42{width:168.231040pt;}
._3d{width:175.136640pt;}
._4e{width:212.108160pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:5.920000pt;}
.y6d{bottom:5.946667pt;}
.y64{bottom:24.634667pt;}
.y5c{bottom:24.640000pt;}
.y6c{bottom:24.666667pt;}
.y5f{bottom:24.680000pt;}
.y63{bottom:43.354667pt;}
.y5b{bottom:43.360000pt;}
.y6b{bottom:43.386667pt;}
.y6{bottom:54.752000pt;}
.y62{bottom:62.074667pt;}
.y5a{bottom:62.080000pt;}
.y69{bottom:78.912000pt;}
.yf5{bottom:79.872000pt;}
.y61{bottom:80.794667pt;}
.y70{bottom:80.800000pt;}
.y74{bottom:80.840000pt;}
.y68{bottom:83.552000pt;}
.y32{bottom:84.512000pt;}
.yf8{bottom:84.832000pt;}
.y67{bottom:94.112000pt;}
.yc9{bottom:94.752000pt;}
.yf4{bottom:98.592000pt;}
.y66{bottom:98.752000pt;}
.y112{bottom:99.232000pt;}
.y6f{bottom:99.520000pt;}
.y73{bottom:99.560000pt;}
.yfd{bottom:99.872000pt;}
.y31{bottom:103.232000pt;}
.yf7{bottom:103.552000pt;}
.y12e{bottom:106.112000pt;}
.y65{bottom:110.112000pt;}
.ybc{bottom:111.392000pt;}
.yde{bottom:112.032000pt;}
.y92{bottom:115.232000pt;}
.yf3{bottom:117.312000pt;}
.y111{bottom:117.952000pt;}
.yf6{bottom:118.592000pt;}
.y30{bottom:121.952000pt;}
.y60{bottom:126.752000pt;}
.ydd{bottom:130.752000pt;}
.y91{bottom:133.946667pt;}
.yf2{bottom:136.026667pt;}
.y110{bottom:136.666667pt;}
.yfc{bottom:137.306667pt;}
.y2f{bottom:140.666667pt;}
.ydc{bottom:149.466667pt;}
.y90{bottom:152.666667pt;}
.yf1{bottom:154.746667pt;}
.y10f{bottom:155.386667pt;}
.yfb{bottom:156.026667pt;}
.y2e{bottom:159.386667pt;}
.ybb{bottom:168.186667pt;}
.y8f{bottom:171.386667pt;}
.yf0{bottom:173.466667pt;}
.y10e{bottom:174.106667pt;}
.yfa{bottom:174.746667pt;}
.y2d{bottom:178.106667pt;}
.y12d{bottom:181.626667pt;}
.ydb{bottom:186.906667pt;}
.y8e{bottom:190.106667pt;}
.yef{bottom:192.186667pt;}
.y10d{bottom:192.826667pt;}
.yf9{bottom:193.466667pt;}
.y2c{bottom:196.826667pt;}
.y12c{bottom:200.026667pt;}
.yda{bottom:205.626667pt;}
.y8d{bottom:208.826667pt;}
.yee{bottom:210.906667pt;}
.y10c{bottom:211.546667pt;}
.yba{bottom:212.186667pt;}
.y2b{bottom:215.546667pt;}
.y12b{bottom:218.426667pt;}
.y5e{bottom:220.986667pt;}
.yd9{bottom:224.346667pt;}
.y8c{bottom:227.546667pt;}
.yed{bottom:229.626667pt;}
.y10b{bottom:230.266667pt;}
.yb9{bottom:230.906667pt;}
.y2a{bottom:234.106667pt;}
.y12a{bottom:236.826667pt;}
.yd8{bottom:243.106667pt;}
.y8b{bottom:246.306667pt;}
.yec{bottom:248.386667pt;}
.y10a{bottom:249.026667pt;}
.yb8{bottom:249.666667pt;}
.y29{bottom:252.866667pt;}
.y129{bottom:255.266667pt;}
.y5d{bottom:259.106667pt;}
.yd7{bottom:261.826667pt;}
.y8a{bottom:265.026667pt;}
.yeb{bottom:267.106667pt;}
.y109{bottom:267.746667pt;}
.yb7{bottom:268.386667pt;}
.y28{bottom:271.586667pt;}
.y128{bottom:273.666667pt;}
.yd6{bottom:280.546667pt;}
.y89{bottom:283.746667pt;}
.yea{bottom:285.826667pt;}
.y108{bottom:286.466667pt;}
.yb6{bottom:287.106667pt;}
.y27{bottom:290.306667pt;}
.y127{bottom:292.066667pt;}
.yd5{bottom:299.266667pt;}
.y88{bottom:302.466667pt;}
.ye9{bottom:304.546667pt;}
.y107{bottom:305.186667pt;}
.yb5{bottom:305.826667pt;}
.y26{bottom:309.026667pt;}
.y126{bottom:310.466667pt;}
.y59{bottom:315.906667pt;}
.yd4{bottom:317.986667pt;}
.y87{bottom:321.186667pt;}
.ye8{bottom:323.266667pt;}
.y106{bottom:323.906667pt;}
.yb4{bottom:324.546667pt;}
.y25{bottom:327.746667pt;}
.y125{bottom:328.866667pt;}
.yd3{bottom:336.706667pt;}
.y86{bottom:339.906667pt;}
.ye7{bottom:341.986667pt;}
.y105{bottom:342.626667pt;}
.yb3{bottom:343.266667pt;}
.y24{bottom:346.466667pt;}
.y124{bottom:347.266667pt;}
.yd2{bottom:355.426667pt;}
.y85{bottom:358.626667pt;}
.ye6{bottom:360.706667pt;}
.y104{bottom:361.346667pt;}
.yb2{bottom:361.986667pt;}
.y23{bottom:365.186667pt;}
.y123{bottom:365.666667pt;}
.yd1{bottom:374.146667pt;}
.y84{bottom:377.346667pt;}
.ye5{bottom:379.426667pt;}
.y103{bottom:380.066667pt;}
.yb1{bottom:380.706667pt;}
.y22{bottom:383.906667pt;}
.y122{bottom:384.066667pt;}
.y57{bottom:391.586667pt;}
.yd0{bottom:392.866667pt;}
.y83{bottom:396.066667pt;}
.ye4{bottom:398.146667pt;}
.y102{bottom:398.786667pt;}
.yb0{bottom:399.426667pt;}
.y121{bottom:402.466667pt;}
.y21{bottom:402.626667pt;}
.ycf{bottom:411.586667pt;}
.y82{bottom:414.786667pt;}
.y56{bottom:416.866667pt;}
.y101{bottom:417.506667pt;}
.yaf{bottom:418.146667pt;}
.y120{bottom:420.866667pt;}
.y20{bottom:421.346667pt;}
.yce{bottom:430.306667pt;}
.y81{bottom:433.506667pt;}
.y55{bottom:435.586667pt;}
.y100{bottom:436.226667pt;}
.yae{bottom:436.866667pt;}
.yc8{bottom:438.146667pt;}
.y11f{bottom:439.266667pt;}
.y1f{bottom:440.066667pt;}
.ycd{bottom:449.026667pt;}
.y80{bottom:452.226667pt;}
.y54{bottom:454.306667pt;}
.yff{bottom:454.946667pt;}
.yad{bottom:455.586667pt;}
.y11e{bottom:457.666667pt;}
.y1e{bottom:458.786667pt;}
.ycc{bottom:467.746667pt;}
.y7f{bottom:470.946667pt;}
.y53{bottom:473.026667pt;}
.yfe{bottom:473.666667pt;}
.yac{bottom:474.306667pt;}
.y11d{bottom:476.066667pt;}
.y1d{bottom:477.506667pt;}
.ycb{bottom:486.466667pt;}
.y7e{bottom:489.666667pt;}
.y52{bottom:491.746667pt;}
.yab{bottom:493.026667pt;}
.y11c{bottom:494.493333pt;}
.y1c{bottom:496.253333pt;}
.yca{bottom:501.533333pt;}
.y7d{bottom:508.413333pt;}
.y51{bottom:510.493333pt;}
.yaa{bottom:511.773333pt;}
.y11b{bottom:512.733333pt;}
.y1b{bottom:514.973333pt;}
.y7c{bottom:527.133333pt;}
.y50{bottom:529.213333pt;}
.ya9{bottom:530.493333pt;}
.y11a{bottom:531.133333pt;}
.y1a{bottom:533.693333pt;}
.y7b{bottom:545.853333pt;}
.y4f{bottom:547.933333pt;}
.ya8{bottom:549.213333pt;}
.y119{bottom:549.533333pt;}
.y19{bottom:552.413333pt;}
.y7a{bottom:564.573333pt;}
.y4e{bottom:566.653333pt;}
.ya7{bottom:567.933333pt;}
.y18{bottom:571.133333pt;}
.y79{bottom:583.293333pt;}
.y4d{bottom:585.373333pt;}
.y118{bottom:586.333333pt;}
.ya6{bottom:586.493333pt;}
.y17{bottom:589.853333pt;}
.y78{bottom:602.013333pt;}
.y4c{bottom:604.093333pt;}
.y117{bottom:604.733333pt;}
.ya5{bottom:605.213333pt;}
.y16{bottom:608.573333pt;}
.y77{bottom:620.733333pt;}
.y4b{bottom:622.813333pt;}
.y116{bottom:623.133333pt;}
.ya4{bottom:623.933333pt;}
.y15{bottom:627.293333pt;}
.y76{bottom:639.453333pt;}
.y4a{bottom:641.533333pt;}
.ya3{bottom:642.653333pt;}
.y14{bottom:646.013333pt;}
.y75{bottom:658.173333pt;}
.y115{bottom:659.933333pt;}
.y49{bottom:660.093333pt;}
.ya2{bottom:661.373333pt;}
.y13{bottom:664.733333pt;}
.y72{bottom:671.613333pt;}
.yc7{bottom:676.893333pt;}
.y114{bottom:678.333333pt;}
.y48{bottom:678.813333pt;}
.ya1{bottom:680.093333pt;}
.y12{bottom:683.453333pt;}
.yc6{bottom:695.613333pt;}
.y113{bottom:696.733333pt;}
.y47{bottom:697.533333pt;}
.ya0{bottom:698.813333pt;}
.y11{bottom:702.173333pt;}
.yc5{bottom:714.333333pt;}
.y46{bottom:716.253333pt;}
.y9f{bottom:717.533333pt;}
.y10{bottom:720.893333pt;}
.yc4{bottom:733.053333pt;}
.y45{bottom:734.973333pt;}
.y9e{bottom:736.253333pt;}
.yf{bottom:739.613333pt;}
.yc3{bottom:751.813333pt;}
.y44{bottom:753.733333pt;}
.y9d{bottom:755.013333pt;}
.ye{bottom:758.373333pt;}
.yc2{bottom:770.373333pt;}
.y43{bottom:772.453333pt;}
.y9c{bottom:773.733333pt;}
.yd{bottom:777.093333pt;}
.y71{bottom:784.613333pt;}
.yc1{bottom:789.093333pt;}
.y42{bottom:791.173333pt;}
.y9b{bottom:792.453333pt;}
.yc{bottom:795.973333pt;}
.yc0{bottom:807.813333pt;}
.y41{bottom:809.893333pt;}
.y9a{bottom:811.173333pt;}
.yb{bottom:816.613333pt;}
.ybf{bottom:821.413333pt;}
.y3f{bottom:828.613333pt;}
.y99{bottom:829.893333pt;}
.y40{bottom:833.253333pt;}
.ya{bottom:839.813333pt;}
.y3e{bottom:847.333333pt;}
.y98{bottom:848.613333pt;}
.y9{bottom:854.693333pt;}
.y3d{bottom:866.053333pt;}
.y97{bottom:867.333333pt;}
.y8{bottom:874.533333pt;}
.ybe{bottom:878.213333pt;}
.y6e{bottom:878.853333pt;}
.y3c{bottom:884.773333pt;}
.y96{bottom:886.053333pt;}
.y7{bottom:896.933333pt;}
.y3b{bottom:903.493333pt;}
.y95{bottom:904.773333pt;}
.y3a{bottom:922.213333pt;}
.y94{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.ybd{bottom:935.013333pt;}
.y39{bottom:940.933333pt;}
.y93{bottom:942.213333pt;}
.ye3{bottom:959.653333pt;}
.y38{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.ye2{bottom:978.373333pt;}
.y37{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y6a{bottom:991.813333pt;}
.ye1{bottom:997.120000pt;}
.y36{bottom:998.400000pt;}
.ye0{bottom:1015.840000pt;}
.y35{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.ydf{bottom:1034.560000pt;}
.y34{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y33{bottom:1060.640000pt;}
.ha{height:18.720000pt;}
.h10{height:24.131250pt;}
.h8{height:34.374375pt;}
.h11{height:37.090625pt;}
.h16{height:37.440000pt;}
.hd{height:37.472000pt;}
.hf{height:44.687500pt;}
.h15{height:46.454062pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.hc{height:56.160000pt;}
.h12{height:56.192000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.hb{height:74.880000pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.he{height:93.600000pt;}
.h13{height:112.320000pt;}
.h14{height:112.352000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:121.472000pt;}
.w4{width:121.792000pt;}
.wd{width:140.346667pt;}
.wa{width:140.666667pt;}
.w9{width:142.586667pt;}
.w6{width:142.906667pt;}
.we{width:148.186667pt;}
.wb{width:148.986667pt;}
.wf{width:389.666667pt;}
.wc{width:389.986667pt;}
.w8{width:404.386667pt;}
.w5{width:405.026667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x13{left:10.400000pt;}
.x6{left:47.999988pt;}
.x12{left:52.319988pt;}
.x14{left:57.120000pt;}
.xd{left:62.080000pt;}
.x1e{left:70.719988pt;}
.x7{left:85.759988pt;}
.x1f{left:94.751988pt;}
.x8{left:104.831988pt;}
.x1d{left:151.066655pt;}
.x5{left:153.946655pt;}
.x1a{left:175.226655pt;}
.xf{left:183.866667pt;}
.x15{left:197.786667pt;}
.x11{left:240.026655pt;}
.xb{left:253.946643pt;}
.x3{left:254.906655pt;}
.xc{left:258.266655pt;}
.x2{left:311.746655pt;}
.x1b{left:314.306655pt;}
.x16{left:346.786667pt;}
.x4{left:372.706655pt;}
.x1{left:426.146655pt;}
.x17{left:563.133310pt;}
.x18{left:567.453322pt;}
.x10{left:588.893333pt;}
.x9{left:668.293310pt;}
.xa{left:672.613322pt;}
.x1c{left:732.933322pt;}
.x19{left:735.653322pt;}
.x20{left:746.053322pt;}
}




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