
    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_03ef87d81feee672adf0f4ea.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_8b9ecf37267a987519dc487a.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_630180cdd7d0d4cadc5c19f0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a093470cb04c9031ff2aa18b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_41c27ceb4489545f02e01336.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_217ceb17a770911b3e4bdba1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.966000px;}
.lsd{letter-spacing:-0.786000px;}
.ls46{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls27{letter-spacing:-0.414000px;}
.ls20{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.303000px;}
.ls34{letter-spacing:-0.272400px;}
.ls16{letter-spacing:-0.214800px;}
.ls1d{letter-spacing:-0.208800px;}
.ls10{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls28{letter-spacing:-0.107400px;}
.ls1f{letter-spacing:-0.078600px;}
.ls32{letter-spacing:-0.069600px;}
.ls43{letter-spacing:-0.064800px;}
.ls2d{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.055440px;}
.ls3b{letter-spacing:-0.049680px;}
.ls2b{letter-spacing:-0.041040px;}
.ls42{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.025200px;}
.ls1{letter-spacing:0.037200px;}
.ls3{letter-spacing:0.038880px;}
.ls40{letter-spacing:0.060600px;}
.ls3a{letter-spacing:0.066000px;}
.ls47{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.174000px;}
.ls3e{letter-spacing:0.174240px;}
.ls1e{letter-spacing:0.175200px;}
.ls26{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.190200px;}
.ls25{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.210000px;}
.ls31{letter-spacing:0.218400px;}
.ls3f{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.314400px;}
.ls7{letter-spacing:0.321000px;}
.ls2f{letter-spacing:0.393840px;}
.ls3d{letter-spacing:0.419040px;}
.ls2c{letter-spacing:0.479400px;}
.ls24{letter-spacing:0.479520px;}
.ls23{letter-spacing:0.617760px;}
.lsf{letter-spacing:0.637200px;}
.ls35{letter-spacing:0.648000px;}
.ls36{letter-spacing:0.930000px;}
.ls18{letter-spacing:1.008000px;}
.ls29{letter-spacing:2.106720px;}
.ls22{letter-spacing:5.706720px;}
.ls44{letter-spacing:6.654240px;}
.ls45{letter-spacing:7.374240px;}
.ls48{letter-spacing:12.186720px;}
.ls1a{letter-spacing:15.786720px;}
.ls13{letter-spacing:17.226720px;}
.ls41{letter-spacing:17.946720px;}
.ls14{letter-spacing:20.106720px;}
.ls12{letter-spacing:21.546720px;}
.ls38{letter-spacing:22.266720px;}
.ls15{letter-spacing:22.986720px;}
.ls21{letter-spacing:26.814240px;}
.ls0{letter-spacing:38.106720px;}
.ls39{letter-spacing:42.426720px;}
.ls2a{letter-spacing:45.306720px;}
.ls30{letter-spacing:46.026720px;}
.ls1b{letter-spacing:47.466720px;}
.ls1c{letter-spacing:51.066720px;}
.ls3c{letter-spacing:110.334240px;}
.lse{letter-spacing:134.238240px;}
.ls37{letter-spacing:199.038240px;}
.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:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.435760px;}
.ws18{word-spacing:-14.153760px;}
.wsc{word-spacing:-13.820160px;}
.ws1b{word-spacing:-13.811760px;}
.ws15{word-spacing:-13.724160px;}
.ws11{word-spacing:-13.715160px;}
.ws7{word-spacing:-13.692360px;}
.wsf{word-spacing:-13.680960px;}
.ws16{word-spacing:-13.530960px;}
.ws8{word-spacing:-13.505760px;}
.ws1c{word-spacing:-13.467600px;}
.ws13{word-spacing:-13.464720px;}
.ws1a{word-spacing:-13.456080px;}
.wsd{word-spacing:-13.450320px;}
.ws14{word-spacing:-13.447440px;}
.ws17{word-spacing:-13.436160px;}
.ws10{word-spacing:-13.427160px;}
.ws12{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1b{margin-left:-533.278560px;}
._1c{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._11{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._15{margin-left:-222.774000px;}
._1f{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._16{margin-left:-200.514720px;}
._1e{margin-left:-190.074240px;}
._22{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._21{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1d{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._20{margin-left:-109.621680px;}
._1a{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._19{margin-left:-86.399760px;}
._18{margin-left:-83.520000px;}
._12{margin-left:-81.351360px;}
._14{margin-left:-66.703680px;}
._13{margin-left:-49.123920px;}
._17{margin-left:-32.468640px;}
._41{margin-left:-9.905760px;}
._24{margin-left:-4.827600px;}
._23{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.228320px;}
._28{width:2.341920px;}
._34{width:3.395040px;}
._2b{width:4.415760px;}
._2a{width:5.438160px;}
._30{width:6.626880px;}
._32{width:7.876320px;}
._33{width:8.904240px;}
._29{width:9.931680px;}
._25{width:11.395440px;}
._26{width:12.743040px;}
._35{width:14.940000px;}
._2d{width:16.580160px;}
._2c{width:17.688960px;}
._39{width:18.904320px;}
._2f{width:19.959840px;}
._2e{width:21.214800px;}
._37{width:22.914720px;}
._36{width:24.202800px;}
._45{width:25.696800px;}
._3b{width:30.119040px;}
._3a{width:31.254480px;}
._40{width:36.168480px;}
._3d{width:38.154960px;}
._49{width:39.740400px;}
._43{width:42.144000px;}
._47{width:44.521200px;}
._4b{width:46.433520px;}
._46{width:47.628720px;}
._4d{width:55.517040px;}
._48{width:71.532720px;}
._44{width:74.700000px;}
._4c{width:84.961440px;}
._3e{width:94.470240px;}
._3c{width:98.070240px;}
._50{width:113.934240px;}
._51{width:118.911840px;}
._31{width:134.238240px;}
._3f{width:137.838240px;}
._4a{width:185.282640px;}
._38{width:199.038240px;}
._4f{width:202.638240px;}
._4e{width:227.147760px;}
._42{width:588.534240px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:1.800000px;}
.y78{bottom:6.660000px;}
.y85{bottom:9.540000px;}
.y83{bottom:9.720000px;}
.y7b{bottom:17.100000px;}
.ybb{bottom:17.280000px;}
.y89{bottom:18.720000px;}
.y7d{bottom:27.720000px;}
.y82{bottom:27.900000px;}
.y88{bottom:36.900000px;}
.y7a{bottom:38.160000px;}
.yba{bottom:38.340000px;}
.y81{bottom:46.080000px;}
.y7c{bottom:48.780000px;}
.y87{bottom:53.280000px;}
.y6{bottom:61.380000px;}
.ya6{bottom:69.840000px;}
.yad{bottom:71.280000px;}
.y76{bottom:91.260000px;}
.yb1{bottom:91.800000px;}
.yb8{bottom:91.980000px;}
.y30{bottom:92.160000px;}
.y75{bottom:94.320000px;}
.y122{bottom:99.180000px;}
.y101{bottom:106.020000px;}
.ye0{bottom:107.820000px;}
.y7f{bottom:108.360000px;}
.y64{bottom:112.320000px;}
.yb7{bottom:113.040000px;}
.y2f{bottom:113.220000px;}
.y74{bottom:115.380000px;}
.y121{bottom:120.240000px;}
.y100{bottom:127.080000px;}
.ydf{bottom:128.880000px;}
.y13f{bottom:129.960000px;}
.y63{bottom:133.380000px;}
.yb6{bottom:134.100000px;}
.y2e{bottom:134.280000px;}
.y73{bottom:136.440000px;}
.y120{bottom:141.300000px;}
.yff{bottom:148.140000px;}
.yde{bottom:149.940000px;}
.y62{bottom:154.470000px;}
.y7e{bottom:155.010000px;}
.yb5{bottom:155.190000px;}
.y2d{bottom:155.370000px;}
.y72{bottom:157.530000px;}
.y11f{bottom:162.390000px;}
.yfe{bottom:169.230000px;}
.ydd{bottom:171.030000px;}
.y61{bottom:175.530000px;}
.yb4{bottom:176.250000px;}
.y2c{bottom:176.430000px;}
.y71{bottom:178.590000px;}
.y11e{bottom:183.450000px;}
.yfd{bottom:190.290000px;}
.ydc{bottom:192.090000px;}
.y60{bottom:196.590000px;}
.yb3{bottom:197.310000px;}
.y2b{bottom:197.490000px;}
.y70{bottom:199.650000px;}
.y11d{bottom:204.510000px;}
.yfc{bottom:211.350000px;}
.yb0{bottom:212.430000px;}
.ydb{bottom:213.150000px;}
.y5f{bottom:217.650000px;}
.y2a{bottom:218.550000px;}
.y6f{bottom:220.710000px;}
.y79{bottom:222.690000px;}
.y11c{bottom:225.570000px;}
.yfb{bottom:232.410000px;}
.yda{bottom:234.210000px;}
.y5e{bottom:238.710000px;}
.y29{bottom:239.610000px;}
.y6e{bottom:241.770000px;}
.y11b{bottom:246.630000px;}
.yfa{bottom:253.470000px;}
.yd9{bottom:255.270000px;}
.y5d{bottom:259.770000px;}
.y28{bottom:260.670000px;}
.y6d{bottom:262.830000px;}
.y11a{bottom:267.690000px;}
.yf9{bottom:274.530000px;}
.yd8{bottom:276.330000px;}
.y5c{bottom:280.830000px;}
.y27{bottom:281.730000px;}
.y13e{bottom:283.890000px;}
.y119{bottom:288.750000px;}
.y77{bottom:291.090000px;}
.y6c{bottom:292.890000px;}
.yf8{bottom:295.590000px;}
.yd7{bottom:297.390000px;}
.yb2{bottom:297.570000px;}
.y5b{bottom:301.890000px;}
.y26{bottom:302.790000px;}
.y13d{bottom:304.950000px;}
.y118{bottom:309.810000px;}
.y6b{bottom:313.950000px;}
.yf7{bottom:316.650000px;}
.yd6{bottom:318.450000px;}
.yac{bottom:319.350000px;}
.y5a{bottom:322.950000px;}
.y25{bottom:323.850000px;}
.y13c{bottom:326.010000px;}
.y117{bottom:330.870000px;}
.y6a{bottom:335.010000px;}
.yf6{bottom:337.710000px;}
.yd5{bottom:339.510000px;}
.y59{bottom:344.010000px;}
.y24{bottom:344.910000px;}
.y13b{bottom:347.070000px;}
.y116{bottom:351.930000px;}
.y69{bottom:356.070000px;}
.yf5{bottom:356.250000px;}
.yd3{bottom:358.050000px;}
.yaf{bottom:362.190000px;}
.y58{bottom:365.070000px;}
.y23{bottom:365.970000px;}
.yd2{bottom:366.150000px;}
.y13a{bottom:368.130000px;}
.y115{bottom:372.990000px;}
.y68{bottom:377.130000px;}
.yf4{bottom:381.810000px;}
.yae{bottom:383.970000px;}
.y57{bottom:386.130000px;}
.y22{bottom:387.030000px;}
.y139{bottom:389.190000px;}
.yd1{bottom:391.710000px;}
.y114{bottom:394.050000px;}
.y67{bottom:398.190000px;}
.yaa{bottom:405.795000px;}
.y56{bottom:407.235000px;}
.yf3{bottom:407.415000px;}
.y21{bottom:408.135000px;}
.y138{bottom:410.295000px;}
.y113{bottom:415.155000px;}
.yd0{bottom:417.315000px;}
.y66{bottom:419.295000px;}
.yab{bottom:426.855000px;}
.y55{bottom:428.295000px;}
.y20{bottom:429.195000px;}
.y137{bottom:431.355000px;}
.yf2{bottom:432.975000px;}
.y112{bottom:436.215000px;}
.y65{bottom:440.355000px;}
.ycf{bottom:442.875000px;}
.ya5{bottom:448.635000px;}
.y54{bottom:449.355000px;}
.y1f{bottom:450.255000px;}
.y136{bottom:452.415000px;}
.y111{bottom:457.275000px;}
.yf1{bottom:459.255000px;}
.ya9{bottom:469.695000px;}
.y53{bottom:470.415000px;}
.y1e{bottom:471.315000px;}
.y135{bottom:473.475000px;}
.yce{bottom:479.595000px;}
.y110{bottom:487.335000px;}
.ya8{bottom:490.755000px;}
.yf0{bottom:491.115000px;}
.y52{bottom:491.475000px;}
.y1d{bottom:492.375000px;}
.y134{bottom:494.535000px;}
.y10f{bottom:508.395000px;}
.ya7{bottom:511.815000px;}
.yef{bottom:512.175000px;}
.y51{bottom:512.535000px;}
.y1c{bottom:513.435000px;}
.y133{bottom:515.595000px;}
.ycd{bottom:516.135000px;}
.y10e{bottom:529.455000px;}
.yee{bottom:533.235000px;}
.y50{bottom:533.595000px;}
.y132{bottom:536.655000px;}
.ycc{bottom:547.275000px;}
.y10d{bottom:550.515000px;}
.yed{bottom:554.295000px;}
.y4f{bottom:554.655000px;}
.y131{bottom:557.715000px;}
.y1b{bottom:557.895000px;}
.ya4{bottom:562.215000px;}
.y10c{bottom:571.575000px;}
.y4e{bottom:575.715000px;}
.y130{bottom:578.775000px;}
.ycb{bottom:581.835000px;}
.ya3{bottom:583.275000px;}
.yec{bottom:584.355000px;}
.y1a{bottom:587.775000px;}
.y10b{bottom:592.635000px;}
.y4d{bottom:596.775000px;}
.y12f{bottom:599.835000px;}
.yca{bottom:602.895000px;}
.ya2{bottom:604.335000px;}
.yeb{bottom:605.415000px;}
.y19{bottom:608.835000px;}
.y10a{bottom:613.695000px;}
.y4c{bottom:617.835000px;}
.y12e{bottom:620.895000px;}
.yc9{bottom:623.775000px;}
.ya1{bottom:625.395000px;}
.yea{bottom:626.475000px;}
.y18{bottom:629.895000px;}
.y109{bottom:634.755000px;}
.y4b{bottom:638.895000px;}
.y12d{bottom:641.775000px;}
.yc8{bottom:644.835000px;}
.ya0{bottom:646.275000px;}
.ye9{bottom:647.535000px;}
.y17{bottom:650.985000px;}
.y108{bottom:652.425000px;}
.y4a{bottom:659.805000px;}
.y12c{bottom:662.865000px;}
.y9f{bottom:667.365000px;}
.ye8{bottom:668.625000px;}
.y16{bottom:672.045000px;}
.yc7{bottom:674.925000px;}
.y107{bottom:677.985000px;}
.y49{bottom:680.865000px;}
.y12b{bottom:683.925000px;}
.y9e{bottom:688.425000px;}
.ye7{bottom:691.485000px;}
.y15{bottom:693.105000px;}
.yc6{bottom:695.985000px;}
.y48{bottom:701.925000px;}
.y12a{bottom:704.985000px;}
.y106{bottom:708.045000px;}
.y9d{bottom:709.485000px;}
.y14{bottom:714.165000px;}
.yc5{bottom:717.045000px;}
.y47{bottom:722.985000px;}
.y9c{bottom:730.545000px;}
.y105{bottom:733.605000px;}
.y129{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.yc4{bottom:738.105000px;}
.y46{bottom:744.045000px;}
.y9b{bottom:751.605000px;}
.ye6{bottom:753.765000px;}
.y128{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.yc3{bottom:759.165000px;}
.y45{bottom:765.105000px;}
.y9a{bottom:772.665000px;}
.y127{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.yc2{bottom:780.225000px;}
.y44{bottom:786.165000px;}
.y99{bottom:793.725000px;}
.y104{bottom:795.885000px;}
.y126{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.yc1{bottom:801.285000px;}
.ye5{bottom:805.965000px;}
.y43{bottom:807.225000px;}
.y98{bottom:814.785000px;}
.y125{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.yc0{bottom:822.345000px;}
.y103{bottom:827.025000px;}
.y42{bottom:828.285000px;}
.y97{bottom:835.845000px;}
.y80{bottom:838.545000px;}
.ye4{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.ybf{bottom:840.885000px;}
.y41{bottom:849.345000px;}
.y96{bottom:856.905000px;}
.ye3{bottom:861.405000px;}
.yd{bottom:861.585000px;}
.y40{bottom:870.405000px;}
.y95{bottom:877.965000px;}
.ye2{bottom:882.465000px;}
.yc{bottom:884.805000px;}
.y3f{bottom:891.465000px;}
.y94{bottom:899.070000px;}
.ye1{bottom:903.570000px;}
.ybe{bottom:908.610000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:912.570000px;}
.y93{bottom:920.130000px;}
.y102{bottom:924.630000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.y92{bottom:941.190000px;}
.y124{bottom:945.690000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:954.690000px;}
.ybd{bottom:955.230000px;}
.y91{bottom:962.250000px;}
.y84{bottom:963.150000px;}
.y123{bottom:966.750000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y90{bottom:983.310000px;}
.y3a{bottom:996.810000px;}
.y8f{bottom:1004.370000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1017.870000px;}
.ybc{bottom:1022.910000px;}
.y8e{bottom:1025.430000px;}
.y38{bottom:1038.930000px;}
.y8d{bottom:1046.490000px;}
.y5{bottom:1049.190000px;}
.y37{bottom:1059.990000px;}
.y8c{bottom:1067.550000px;}
.yb9{bottom:1070.250000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y8b{bottom:1086.090000px;}
.y86{bottom:1088.610000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1123.170000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y8a{bottom:1154.520000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h17{height:3.600000px;}
.hc{height:21.060000px;}
.h15{height:21.096000px;}
.h11{height:30.077578px;}
.h8{height:38.671172px;}
.he{height:42.120000px;}
.hb{height:48.029766px;}
.h9{height:52.260820px;}
.ha{height:59.439023px;}
.h10{height:60.480000px;}
.hf{height:60.516000px;}
.h6{height:61.189805px;}
.hd{height:63.180000px;}
.h12{height:63.216000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h13{height:84.240000px;}
.h14{height:85.716000px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h16{height:106.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:24.300000px;}
.w2d{width:49.896000px;}
.w13{width:58.500000px;}
.w21{width:61.200000px;}
.w22{width:61.236000px;}
.w24{width:62.280000px;}
.w1e{width:64.440000px;}
.w28{width:65.196000px;}
.w18{width:66.420000px;}
.w20{width:66.600000px;}
.w11{width:68.580000px;}
.w5{width:72.000000px;}
.w27{width:72.036000px;}
.w1d{width:76.500000px;}
.w23{width:81.180000px;}
.w12{width:83.196000px;}
.w7{width:85.536000px;}
.w15{width:89.856000px;}
.w2b{width:93.456000px;}
.wf{width:98.316000px;}
.w14{width:103.500000px;}
.w1c{width:106.956000px;}
.w2e{width:108.360000px;}
.w26{width:112.500000px;}
.w10{width:115.956000px;}
.w1b{width:116.496000px;}
.w29{width:117.360000px;}
.w2c{width:121.320000px;}
.w16{width:121.716000px;}
.w1a{width:123.300000px;}
.w3{width:128.376000px;}
.w19{width:129.816000px;}
.w9{width:131.076000px;}
.wd{width:158.040000px;}
.wc{width:172.650000px;}
.wb{width:174.270000px;}
.wa{width:175.530000px;}
.w25{width:185.610000px;}
.w8{width:199.110000px;}
.w6{width:199.155000px;}
.w1f{width:332.490000px;}
.w4{width:348.915000px;}
.w2a{width:565.305000px;}
.w17{width:683.925000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.260000px;}
.x1c{left:8.100000px;}
.x16{left:12.600000px;}
.x1b{left:15.300000px;}
.xd{left:17.460000px;}
.x12{left:19.260000px;}
.x1a{left:30.960000px;}
.x18{left:35.280000px;}
.x17{left:38.700000px;}
.x6{left:53.999987px;}
.x21{left:55.620000px;}
.xc{left:62.280000px;}
.x15{left:65.520000px;}
.x7{left:70.199987px;}
.xb{left:75.599987px;}
.x20{left:80.999987px;}
.x22{left:82.260000px;}
.x2f{left:94.535987px;}
.x42{left:102.275987px;}
.x29{left:104.616000px;}
.x8{left:108.035987px;}
.x36{left:128.556000px;}
.x9{left:134.135987px;}
.x30{left:162.029987px;}
.x3b{left:163.830000px;}
.x2a{left:171.030000px;}
.x5{left:173.189987px;}
.x14{left:177.690000px;}
.x23{left:182.730000px;}
.xe{left:192.810000px;}
.x3c{left:230.430000px;}
.x31{left:280.335000px;}
.x1d{left:282.675000px;}
.x3{left:286.634987px;}
.x24{left:300.855000px;}
.x37{left:316.335000px;}
.x3d{left:323.895000px;}
.xa{left:345.494987px;}
.x32{left:346.935000px;}
.x2{left:350.534987px;}
.x25{left:371.775000px;}
.x33{left:408.135000px;}
.x4{left:419.114987px;}
.x2b{left:424.155000px;}
.x38{left:431.175000px;}
.x3e{left:445.215000px;}
.x1e{left:456.945000px;}
.x34{left:469.365000px;}
.x1{left:479.264987px;}
.x3f{left:495.105000px;}
.x39{left:505.365000px;}
.x26{left:518.145000px;}
.x2c{left:540.645000px;}
.xf{left:543.885000px;}
.x35{left:550.545000px;}
.x19{left:576.105000px;}
.x3a{left:579.705000px;}
.x40{left:603.465000px;}
.x10{left:618.225000px;}
.x27{left:623.805000px;}
.x1f{left:629.610000px;}
.x13{left:631.770000px;}
.x2d{left:647.610000px;}
.x41{left:664.710000px;}
.x28{left:716.010000px;}
.x2e{left:724.110000px;}
.x43{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.858667pt;}
.lsd{letter-spacing:-0.698667pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls27{letter-spacing:-0.368000pt;}
.ls20{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.269333pt;}
.ls34{letter-spacing:-0.242133pt;}
.ls16{letter-spacing:-0.190933pt;}
.ls1d{letter-spacing:-0.185600pt;}
.ls10{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls28{letter-spacing:-0.095467pt;}
.ls1f{letter-spacing:-0.069867pt;}
.ls32{letter-spacing:-0.061867pt;}
.ls43{letter-spacing:-0.057600pt;}
.ls2d{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.049280pt;}
.ls3b{letter-spacing:-0.044160pt;}
.ls2b{letter-spacing:-0.036480pt;}
.ls42{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.022400pt;}
.ls1{letter-spacing:0.033067pt;}
.ls3{letter-spacing:0.034560pt;}
.ls40{letter-spacing:0.053867pt;}
.ls3a{letter-spacing:0.058667pt;}
.ls47{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.154667pt;}
.ls3e{letter-spacing:0.154880pt;}
.ls1e{letter-spacing:0.155733pt;}
.ls26{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.169067pt;}
.ls25{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.186667pt;}
.ls31{letter-spacing:0.194133pt;}
.ls3f{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.279467pt;}
.ls7{letter-spacing:0.285333pt;}
.ls2f{letter-spacing:0.350080pt;}
.ls3d{letter-spacing:0.372480pt;}
.ls2c{letter-spacing:0.426133pt;}
.ls24{letter-spacing:0.426240pt;}
.ls23{letter-spacing:0.549120pt;}
.lsf{letter-spacing:0.566400pt;}
.ls35{letter-spacing:0.576000pt;}
.ls36{letter-spacing:0.826667pt;}
.ls18{letter-spacing:0.896000pt;}
.ls29{letter-spacing:1.872640pt;}
.ls22{letter-spacing:5.072640pt;}
.ls44{letter-spacing:5.914880pt;}
.ls45{letter-spacing:6.554880pt;}
.ls48{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:14.032640pt;}
.ls13{letter-spacing:15.312640pt;}
.ls41{letter-spacing:15.952640pt;}
.ls14{letter-spacing:17.872640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls38{letter-spacing:19.792640pt;}
.ls15{letter-spacing:20.432640pt;}
.ls21{letter-spacing:23.834880pt;}
.ls0{letter-spacing:33.872640pt;}
.ls39{letter-spacing:37.712640pt;}
.ls2a{letter-spacing:40.272640pt;}
.ls30{letter-spacing:40.912640pt;}
.ls1b{letter-spacing:42.192640pt;}
.ls1c{letter-spacing:45.392640pt;}
.ls3c{letter-spacing:98.074880pt;}
.lse{letter-spacing:119.322880pt;}
.ls37{letter-spacing:176.922880pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.831787pt;}
.ws18{word-spacing:-12.581120pt;}
.wsc{word-spacing:-12.284587pt;}
.ws1b{word-spacing:-12.277120pt;}
.ws15{word-spacing:-12.199253pt;}
.ws11{word-spacing:-12.191253pt;}
.ws7{word-spacing:-12.170987pt;}
.wsf{word-spacing:-12.160853pt;}
.ws16{word-spacing:-12.027520pt;}
.ws8{word-spacing:-12.005120pt;}
.ws1c{word-spacing:-11.971200pt;}
.ws13{word-spacing:-11.968640pt;}
.ws1a{word-spacing:-11.960960pt;}
.wsd{word-spacing:-11.955840pt;}
.ws14{word-spacing:-11.953280pt;}
.ws17{word-spacing:-11.943253pt;}
.ws10{word-spacing:-11.935253pt;}
.ws12{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1b{margin-left:-474.025387pt;}
._1c{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._11{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._15{margin-left:-198.021333pt;}
._1f{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._16{margin-left:-178.235307pt;}
._1e{margin-left:-168.954880pt;}
._22{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._21{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1d{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._20{margin-left:-97.441493pt;}
._1a{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._19{margin-left:-76.799787pt;}
._18{margin-left:-74.240000pt;}
._12{margin-left:-72.312320pt;}
._14{margin-left:-59.292160pt;}
._13{margin-left:-43.665707pt;}
._17{margin-left:-28.861013pt;}
._41{margin-left:-8.805120pt;}
._24{margin-left:-4.291200pt;}
._23{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.091840pt;}
._28{width:2.081707pt;}
._34{width:3.017813pt;}
._2b{width:3.925120pt;}
._2a{width:4.833920pt;}
._30{width:5.890560pt;}
._32{width:7.001173pt;}
._33{width:7.914880pt;}
._29{width:8.828160pt;}
._25{width:10.129280pt;}
._26{width:11.327147pt;}
._35{width:13.280000pt;}
._2d{width:14.737920pt;}
._2c{width:15.723520pt;}
._39{width:16.803840pt;}
._2f{width:17.742080pt;}
._2e{width:18.857600pt;}
._37{width:20.368640pt;}
._36{width:21.513600pt;}
._45{width:22.841600pt;}
._3b{width:26.772480pt;}
._3a{width:27.781760pt;}
._40{width:32.149760pt;}
._3d{width:33.915520pt;}
._49{width:35.324800pt;}
._43{width:37.461333pt;}
._47{width:39.574400pt;}
._4b{width:41.274240pt;}
._46{width:42.336640pt;}
._4d{width:49.348480pt;}
._48{width:63.584640pt;}
._44{width:66.400000pt;}
._4c{width:75.521280pt;}
._3e{width:83.973547pt;}
._3c{width:87.173547pt;}
._50{width:101.274880pt;}
._51{width:105.699413pt;}
._31{width:119.322880pt;}
._3f{width:122.522880pt;}
._4a{width:164.695680pt;}
._38{width:176.922880pt;}
._4f{width:180.122880pt;}
._4e{width:201.909120pt;}
._42{width:523.141547pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:1.600000pt;}
.y78{bottom:5.920000pt;}
.y85{bottom:8.480000pt;}
.y83{bottom:8.640000pt;}
.y7b{bottom:15.200000pt;}
.ybb{bottom:15.360000pt;}
.y89{bottom:16.640000pt;}
.y7d{bottom:24.640000pt;}
.y82{bottom:24.800000pt;}
.y88{bottom:32.800000pt;}
.y7a{bottom:33.920000pt;}
.yba{bottom:34.080000pt;}
.y81{bottom:40.960000pt;}
.y7c{bottom:43.360000pt;}
.y87{bottom:47.360000pt;}
.y6{bottom:54.560000pt;}
.ya6{bottom:62.080000pt;}
.yad{bottom:63.360000pt;}
.y76{bottom:81.120000pt;}
.yb1{bottom:81.600000pt;}
.yb8{bottom:81.760000pt;}
.y30{bottom:81.920000pt;}
.y75{bottom:83.840000pt;}
.y122{bottom:88.160000pt;}
.y101{bottom:94.240000pt;}
.ye0{bottom:95.840000pt;}
.y7f{bottom:96.320000pt;}
.y64{bottom:99.840000pt;}
.yb7{bottom:100.480000pt;}
.y2f{bottom:100.640000pt;}
.y74{bottom:102.560000pt;}
.y121{bottom:106.880000pt;}
.y100{bottom:112.960000pt;}
.ydf{bottom:114.560000pt;}
.y13f{bottom:115.520000pt;}
.y63{bottom:118.560000pt;}
.yb6{bottom:119.200000pt;}
.y2e{bottom:119.360000pt;}
.y73{bottom:121.280000pt;}
.y120{bottom:125.600000pt;}
.yff{bottom:131.680000pt;}
.yde{bottom:133.280000pt;}
.y62{bottom:137.306667pt;}
.y7e{bottom:137.786667pt;}
.yb5{bottom:137.946667pt;}
.y2d{bottom:138.106667pt;}
.y72{bottom:140.026667pt;}
.y11f{bottom:144.346667pt;}
.yfe{bottom:150.426667pt;}
.ydd{bottom:152.026667pt;}
.y61{bottom:156.026667pt;}
.yb4{bottom:156.666667pt;}
.y2c{bottom:156.826667pt;}
.y71{bottom:158.746667pt;}
.y11e{bottom:163.066667pt;}
.yfd{bottom:169.146667pt;}
.ydc{bottom:170.746667pt;}
.y60{bottom:174.746667pt;}
.yb3{bottom:175.386667pt;}
.y2b{bottom:175.546667pt;}
.y70{bottom:177.466667pt;}
.y11d{bottom:181.786667pt;}
.yfc{bottom:187.866667pt;}
.yb0{bottom:188.826667pt;}
.ydb{bottom:189.466667pt;}
.y5f{bottom:193.466667pt;}
.y2a{bottom:194.266667pt;}
.y6f{bottom:196.186667pt;}
.y79{bottom:197.946667pt;}
.y11c{bottom:200.506667pt;}
.yfb{bottom:206.586667pt;}
.yda{bottom:208.186667pt;}
.y5e{bottom:212.186667pt;}
.y29{bottom:212.986667pt;}
.y6e{bottom:214.906667pt;}
.y11b{bottom:219.226667pt;}
.yfa{bottom:225.306667pt;}
.yd9{bottom:226.906667pt;}
.y5d{bottom:230.906667pt;}
.y28{bottom:231.706667pt;}
.y6d{bottom:233.626667pt;}
.y11a{bottom:237.946667pt;}
.yf9{bottom:244.026667pt;}
.yd8{bottom:245.626667pt;}
.y5c{bottom:249.626667pt;}
.y27{bottom:250.426667pt;}
.y13e{bottom:252.346667pt;}
.y119{bottom:256.666667pt;}
.y77{bottom:258.746667pt;}
.y6c{bottom:260.346667pt;}
.yf8{bottom:262.746667pt;}
.yd7{bottom:264.346667pt;}
.yb2{bottom:264.506667pt;}
.y5b{bottom:268.346667pt;}
.y26{bottom:269.146667pt;}
.y13d{bottom:271.066667pt;}
.y118{bottom:275.386667pt;}
.y6b{bottom:279.066667pt;}
.yf7{bottom:281.466667pt;}
.yd6{bottom:283.066667pt;}
.yac{bottom:283.866667pt;}
.y5a{bottom:287.066667pt;}
.y25{bottom:287.866667pt;}
.y13c{bottom:289.786667pt;}
.y117{bottom:294.106667pt;}
.y6a{bottom:297.786667pt;}
.yf6{bottom:300.186667pt;}
.yd5{bottom:301.786667pt;}
.y59{bottom:305.786667pt;}
.y24{bottom:306.586667pt;}
.y13b{bottom:308.506667pt;}
.y116{bottom:312.826667pt;}
.y69{bottom:316.506667pt;}
.yf5{bottom:316.666667pt;}
.yd3{bottom:318.266667pt;}
.yaf{bottom:321.946667pt;}
.y58{bottom:324.506667pt;}
.y23{bottom:325.306667pt;}
.yd2{bottom:325.466667pt;}
.y13a{bottom:327.226667pt;}
.y115{bottom:331.546667pt;}
.y68{bottom:335.226667pt;}
.yf4{bottom:339.386667pt;}
.yae{bottom:341.306667pt;}
.y57{bottom:343.226667pt;}
.y22{bottom:344.026667pt;}
.y139{bottom:345.946667pt;}
.yd1{bottom:348.186667pt;}
.y114{bottom:350.266667pt;}
.y67{bottom:353.946667pt;}
.yaa{bottom:360.706667pt;}
.y56{bottom:361.986667pt;}
.yf3{bottom:362.146667pt;}
.y21{bottom:362.786667pt;}
.y138{bottom:364.706667pt;}
.y113{bottom:369.026667pt;}
.yd0{bottom:370.946667pt;}
.y66{bottom:372.706667pt;}
.yab{bottom:379.426667pt;}
.y55{bottom:380.706667pt;}
.y20{bottom:381.506667pt;}
.y137{bottom:383.426667pt;}
.yf2{bottom:384.866667pt;}
.y112{bottom:387.746667pt;}
.y65{bottom:391.426667pt;}
.ycf{bottom:393.666667pt;}
.ya5{bottom:398.786667pt;}
.y54{bottom:399.426667pt;}
.y1f{bottom:400.226667pt;}
.y136{bottom:402.146667pt;}
.y111{bottom:406.466667pt;}
.yf1{bottom:408.226667pt;}
.ya9{bottom:417.506667pt;}
.y53{bottom:418.146667pt;}
.y1e{bottom:418.946667pt;}
.y135{bottom:420.866667pt;}
.yce{bottom:426.306667pt;}
.y110{bottom:433.186667pt;}
.ya8{bottom:436.226667pt;}
.yf0{bottom:436.546667pt;}
.y52{bottom:436.866667pt;}
.y1d{bottom:437.666667pt;}
.y134{bottom:439.586667pt;}
.y10f{bottom:451.906667pt;}
.ya7{bottom:454.946667pt;}
.yef{bottom:455.266667pt;}
.y51{bottom:455.586667pt;}
.y1c{bottom:456.386667pt;}
.y133{bottom:458.306667pt;}
.ycd{bottom:458.786667pt;}
.y10e{bottom:470.626667pt;}
.yee{bottom:473.986667pt;}
.y50{bottom:474.306667pt;}
.y132{bottom:477.026667pt;}
.ycc{bottom:486.466667pt;}
.y10d{bottom:489.346667pt;}
.yed{bottom:492.706667pt;}
.y4f{bottom:493.026667pt;}
.y131{bottom:495.746667pt;}
.y1b{bottom:495.906667pt;}
.ya4{bottom:499.746667pt;}
.y10c{bottom:508.066667pt;}
.y4e{bottom:511.746667pt;}
.y130{bottom:514.466667pt;}
.ycb{bottom:517.186667pt;}
.ya3{bottom:518.466667pt;}
.yec{bottom:519.426667pt;}
.y1a{bottom:522.466667pt;}
.y10b{bottom:526.786667pt;}
.y4d{bottom:530.466667pt;}
.y12f{bottom:533.186667pt;}
.yca{bottom:535.906667pt;}
.ya2{bottom:537.186667pt;}
.yeb{bottom:538.146667pt;}
.y19{bottom:541.186667pt;}
.y10a{bottom:545.506667pt;}
.y4c{bottom:549.186667pt;}
.y12e{bottom:551.906667pt;}
.yc9{bottom:554.466667pt;}
.ya1{bottom:555.906667pt;}
.yea{bottom:556.866667pt;}
.y18{bottom:559.906667pt;}
.y109{bottom:564.226667pt;}
.y4b{bottom:567.906667pt;}
.y12d{bottom:570.466667pt;}
.yc8{bottom:573.186667pt;}
.ya0{bottom:574.466667pt;}
.ye9{bottom:575.586667pt;}
.y17{bottom:578.653333pt;}
.y108{bottom:579.933333pt;}
.y4a{bottom:586.493333pt;}
.y12c{bottom:589.213333pt;}
.y9f{bottom:593.213333pt;}
.ye8{bottom:594.333333pt;}
.y16{bottom:597.373333pt;}
.yc7{bottom:599.933333pt;}
.y107{bottom:602.653333pt;}
.y49{bottom:605.213333pt;}
.y12b{bottom:607.933333pt;}
.y9e{bottom:611.933333pt;}
.ye7{bottom:614.653333pt;}
.y15{bottom:616.093333pt;}
.yc6{bottom:618.653333pt;}
.y48{bottom:623.933333pt;}
.y12a{bottom:626.653333pt;}
.y106{bottom:629.373333pt;}
.y9d{bottom:630.653333pt;}
.y14{bottom:634.813333pt;}
.yc5{bottom:637.373333pt;}
.y47{bottom:642.653333pt;}
.y9c{bottom:649.373333pt;}
.y105{bottom:652.093333pt;}
.y129{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.yc4{bottom:656.093333pt;}
.y46{bottom:661.373333pt;}
.y9b{bottom:668.093333pt;}
.ye6{bottom:670.013333pt;}
.y128{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.yc3{bottom:674.813333pt;}
.y45{bottom:680.093333pt;}
.y9a{bottom:686.813333pt;}
.y127{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.yc2{bottom:693.533333pt;}
.y44{bottom:698.813333pt;}
.y99{bottom:705.533333pt;}
.y104{bottom:707.453333pt;}
.y126{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.yc1{bottom:712.253333pt;}
.ye5{bottom:716.413333pt;}
.y43{bottom:717.533333pt;}
.y98{bottom:724.253333pt;}
.y125{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.yc0{bottom:730.973333pt;}
.y103{bottom:735.133333pt;}
.y42{bottom:736.253333pt;}
.y97{bottom:742.973333pt;}
.y80{bottom:745.373333pt;}
.ye4{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.ybf{bottom:747.453333pt;}
.y41{bottom:754.973333pt;}
.y96{bottom:761.693333pt;}
.ye3{bottom:765.693333pt;}
.yd{bottom:765.853333pt;}
.y40{bottom:773.693333pt;}
.y95{bottom:780.413333pt;}
.ye2{bottom:784.413333pt;}
.yc{bottom:786.493333pt;}
.y3f{bottom:792.413333pt;}
.y94{bottom:799.173333pt;}
.ye1{bottom:803.173333pt;}
.ybe{bottom:807.653333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.173333pt;}
.y93{bottom:817.893333pt;}
.y102{bottom:821.893333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.y92{bottom:836.613333pt;}
.y124{bottom:840.613333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:848.613333pt;}
.ybd{bottom:849.093333pt;}
.y91{bottom:855.333333pt;}
.y84{bottom:856.133333pt;}
.y123{bottom:859.333333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y90{bottom:874.053333pt;}
.y3a{bottom:886.053333pt;}
.y8f{bottom:892.773333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:904.773333pt;}
.ybc{bottom:909.253333pt;}
.y8e{bottom:911.493333pt;}
.y38{bottom:923.493333pt;}
.y8d{bottom:930.213333pt;}
.y5{bottom:932.613333pt;}
.y37{bottom:942.213333pt;}
.y8c{bottom:948.933333pt;}
.yb9{bottom:951.333333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y8b{bottom:965.413333pt;}
.y86{bottom:967.653333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:998.373333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y8a{bottom:1026.240000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h17{height:3.200000pt;}
.hc{height:18.720000pt;}
.h15{height:18.752000pt;}
.h11{height:26.735625pt;}
.h8{height:34.374375pt;}
.he{height:37.440000pt;}
.hb{height:42.693125pt;}
.h9{height:46.454062pt;}
.ha{height:52.834688pt;}
.h10{height:53.760000pt;}
.hf{height:53.792000pt;}
.h6{height:54.390938pt;}
.hd{height:56.160000pt;}
.h12{height:56.192000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h13{height:74.880000pt;}
.h14{height:76.192000pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h16{height:94.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:21.600000pt;}
.w2d{width:44.352000pt;}
.w13{width:52.000000pt;}
.w21{width:54.400000pt;}
.w22{width:54.432000pt;}
.w24{width:55.360000pt;}
.w1e{width:57.280000pt;}
.w28{width:57.952000pt;}
.w18{width:59.040000pt;}
.w20{width:59.200000pt;}
.w11{width:60.960000pt;}
.w5{width:64.000000pt;}
.w27{width:64.032000pt;}
.w1d{width:68.000000pt;}
.w23{width:72.160000pt;}
.w12{width:73.952000pt;}
.w7{width:76.032000pt;}
.w15{width:79.872000pt;}
.w2b{width:83.072000pt;}
.wf{width:87.392000pt;}
.w14{width:92.000000pt;}
.w1c{width:95.072000pt;}
.w2e{width:96.320000pt;}
.w26{width:100.000000pt;}
.w10{width:103.072000pt;}
.w1b{width:103.552000pt;}
.w29{width:104.320000pt;}
.w2c{width:107.840000pt;}
.w16{width:108.192000pt;}
.w1a{width:109.600000pt;}
.w3{width:114.112000pt;}
.w19{width:115.392000pt;}
.w9{width:116.512000pt;}
.wd{width:140.480000pt;}
.wc{width:153.466667pt;}
.wb{width:154.906667pt;}
.wa{width:156.026667pt;}
.w25{width:164.986667pt;}
.w8{width:176.986667pt;}
.w6{width:177.026667pt;}
.w1f{width:295.546667pt;}
.w4{width:310.146667pt;}
.w2a{width:502.493333pt;}
.w17{width:607.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.120000pt;}
.x1c{left:7.200000pt;}
.x16{left:11.200000pt;}
.x1b{left:13.600000pt;}
.xd{left:15.520000pt;}
.x12{left:17.120000pt;}
.x1a{left:27.520000pt;}
.x18{left:31.360000pt;}
.x17{left:34.400000pt;}
.x6{left:47.999988pt;}
.x21{left:49.440000pt;}
.xc{left:55.360000pt;}
.x15{left:58.240000pt;}
.x7{left:62.399988pt;}
.xb{left:67.199988pt;}
.x20{left:71.999988pt;}
.x22{left:73.120000pt;}
.x2f{left:84.031988pt;}
.x42{left:90.911988pt;}
.x29{left:92.992000pt;}
.x8{left:96.031988pt;}
.x36{left:114.272000pt;}
.x9{left:119.231988pt;}
.x30{left:144.026655pt;}
.x3b{left:145.626667pt;}
.x2a{left:152.026667pt;}
.x5{left:153.946655pt;}
.x14{left:157.946667pt;}
.x23{left:162.426667pt;}
.xe{left:171.386667pt;}
.x3c{left:204.826667pt;}
.x31{left:249.186667pt;}
.x1d{left:251.266667pt;}
.x3{left:254.786655pt;}
.x24{left:267.426667pt;}
.x37{left:281.186667pt;}
.x3d{left:287.906667pt;}
.xa{left:307.106655pt;}
.x32{left:308.386667pt;}
.x2{left:311.586655pt;}
.x25{left:330.466667pt;}
.x33{left:362.786667pt;}
.x4{left:372.546655pt;}
.x2b{left:377.026667pt;}
.x38{left:383.266667pt;}
.x3e{left:395.746667pt;}
.x1e{left:406.173333pt;}
.x34{left:417.213333pt;}
.x1{left:426.013322pt;}
.x3f{left:440.093333pt;}
.x39{left:449.213333pt;}
.x26{left:460.573333pt;}
.x2c{left:480.573333pt;}
.xf{left:483.453333pt;}
.x35{left:489.373333pt;}
.x19{left:512.093333pt;}
.x3a{left:515.293333pt;}
.x40{left:536.413333pt;}
.x10{left:549.533333pt;}
.x27{left:554.493333pt;}
.x1f{left:559.653333pt;}
.x13{left:561.573333pt;}
.x2d{left:575.653333pt;}
.x41{left:590.853333pt;}
.x28{left:636.453333pt;}
.x2e{left:643.653333pt;}
.x43{left:746.079988pt;}
}




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