
    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_43ab3d7feabbfa17cf585cff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6f63cc731f8df7d0f1750294.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_14c8f842722ac813a98c2de2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bc6406ded8ac49fbb78d69e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2c33790eb45047872fce6adf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_64f4e884b4f5db4d2b279e15.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_3ad46433dabb96e717fa9193.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_79a344dd7463a8c797c28f61.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_52c4b967e7f3a767bb6300dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_12a7b320c1289b775df825c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7268291e266a096fe79aea73.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4a2f8fad7dd751f1c6b843d2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ecc5991e0029cb2a5b95a571.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d959f2090a3c88af03f8087c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.937012;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:fff;src:url('chunks/assets/font_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;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);}
.v4{vertical-align:-95.040000px;}
.v1{vertical-align:-93.600000px;}
.v3{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-1.152000px;}
.ls8{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.037440px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.142560px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.396000px;}
.ls12{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.864000px;}
.lsd{letter-spacing:5.934240px;}
.ls1f{letter-spacing:21.024000px;}
.lsc{letter-spacing:28.224000px;}
.ls1d{letter-spacing:30.384000px;}
.ls18{letter-spacing:46.944000px;}
.ls1b{letter-spacing:58.661280px;}
.ls6{letter-spacing:87.960000px;}
.lse{letter-spacing:193.080000px;}
.lsb{letter-spacing:422.760000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws3{word-spacing:-23.418720px;}
.ws4{word-spacing:-23.381280px;}
.wsd{word-spacing:-20.520000px;}
.ws8{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.232000px;}
.wsf{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws11{word-spacing:-19.872000px;}
.ws2{word-spacing:-19.800000px;}
.ws10{word-spacing:-19.584000px;}
.ws5{word-spacing:-19.080000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.506480px;}
.ws9{word-spacing:-14.970240px;}
.wsb{word-spacing:-13.505760px;}
.wse{word-spacing:-13.447440px;}
.ws1{word-spacing:0.000000px;}
._34{margin-left:-6.273360px;}
._11{margin-left:-4.752000px;}
._6{margin-left:-3.240000px;}
._1{margin-left:-1.296000px;}
._0{width:1.436400px;}
._e{width:3.096000px;}
._b{width:4.152000px;}
._12{width:5.287200px;}
._1c{width:6.606000px;}
._19{width:7.920000px;}
._18{width:9.048000px;}
._14{width:10.656000px;}
._17{width:12.091200px;}
._8{width:13.608000px;}
._7{width:15.048000px;}
._22{width:16.416000px;}
._10{width:17.424000px;}
._f{width:18.936000px;}
._25{width:20.052000px;}
._15{width:21.960000px;}
._a{width:23.040000px;}
._9{width:24.456000px;}
._5{width:25.911600px;}
._4{width:27.216000px;}
._13{width:28.280400px;}
._1f{width:29.535600px;}
._16{width:31.032000px;}
._20{width:32.952000px;}
._2{width:34.776000px;}
._3{width:36.660000px;}
._d{width:38.160000px;}
._c{width:40.032000px;}
._26{width:41.328000px;}
._27{width:42.646800px;}
._2b{width:44.174400px;}
._32{width:45.288000px;}
._37{width:46.392000px;}
._33{width:47.511600px;}
._2a{width:49.776000px;}
._24{width:51.312000px;}
._23{width:52.632000px;}
._1a{width:54.144000px;}
._1e{width:55.704000px;}
._1d{width:56.856000px;}
._21{width:58.464000px;}
._39{width:59.976000px;}
._38{width:62.568000px;}
._29{width:65.664000px;}
._30{width:78.120000px;}
._31{width:79.128000px;}
._36{width:92.880000px;}
._2e{width:140.976000px;}
._2d{width:156.312000px;}
._2c{width:172.512000px;}
._28{width:195.960000px;}
._2f{width:227.880000px;}
._1b{width:844.140000px;}
._35{width:846.156000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(132,150,176);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y105{bottom:3.780000px;}
.y109{bottom:24.480000px;}
.y108{bottom:45.180000px;}
.y10e{bottom:45.225000px;}
.y2f{bottom:57.636000px;}
.y107{bottom:65.880000px;}
.y2e{bottom:78.336000px;}
.y2d{bottom:99.036000px;}
.ya8{bottom:119.196000px;}
.yc2{bottom:119.916000px;}
.y28{bottom:120.636000px;}
.y187{bottom:122.436000px;}
.y1a5{bottom:123.336000px;}
.ye4{bottom:124.956000px;}
.yfd{bottom:125.316000px;}
.yb9{bottom:126.036000px;}
.ya7{bottom:136.476000px;}
.yc1{bottom:138.276000px;}
.y75{bottom:139.716000px;}
.y149{bottom:140.976000px;}
.y27{bottom:141.336000px;}
.y186{bottom:143.136000px;}
.y1a4{bottom:144.036000px;}
.y153{bottom:144.216000px;}
.ye3{bottom:145.656000px;}
.yfc{bottom:146.016000px;}
.y99{bottom:146.556000px;}
.yb8{bottom:146.736000px;}
.y13f{bottom:151.230000px;}
.ya6{bottom:153.750000px;}
.y148{bottom:154.470000px;}
.yc0{bottom:156.630000px;}
.y152{bottom:159.150000px;}
.y1b6{bottom:159.330000px;}
.y74{bottom:160.410000px;}
.y194{bottom:161.850000px;}
.y26{bottom:162.030000px;}
.y103{bottom:162.570000px;}
.y185{bottom:163.830000px;}
.y1a3{bottom:164.730000px;}
.y151{bottom:165.090000px;}
.ye2{bottom:166.350000px;}
.yfb{bottom:166.710000px;}
.y98{bottom:167.250000px;}
.yb7{bottom:167.430000px;}
.ya5{bottom:171.030000px;}
.y13e{bottom:171.930000px;}
.y147{bottom:172.830000px;}
.ybf{bottom:174.810000px;}
.y12c{bottom:174.990000px;}
.y102{bottom:177.510000px;}
.y150{bottom:180.030000px;}
.y12b{bottom:180.930000px;}
.y73{bottom:181.110000px;}
.y193{bottom:182.550000px;}
.y128{bottom:182.730000px;}
.y184{bottom:184.530000px;}
.y1a2{bottom:185.610000px;}
.ye1{bottom:187.050000px;}
.yfa{bottom:187.410000px;}
.y97{bottom:187.950000px;}
.yb6{bottom:188.130000px;}
.ya4{bottom:188.310000px;}
.y146{bottom:191.010000px;}
.y13d{bottom:192.630000px;}
.ya3{bottom:192.810000px;}
.ybe{bottom:193.170000px;}
.y12a{bottom:195.690000px;}
.y101{bottom:195.870000px;}
.y14f{bottom:198.390000px;}
.ybd{bottom:199.110000px;}
.y1b5{bottom:200.730000px;}
.y72{bottom:201.810000px;}
.y192{bottom:203.250000px;}
.y25{bottom:203.430000px;}
.y14e{bottom:204.330000px;}
.y183{bottom:205.230000px;}
.y159{bottom:205.410000px;}
.ya2{bottom:205.950000px;}
.y1a1{bottom:206.670000px;}
.ye0{bottom:207.750000px;}
.yf9{bottom:208.110000px;}
.y96{bottom:208.650000px;}
.yb5{bottom:208.830000px;}
.y145{bottom:209.370000px;}
.y130{bottom:211.530000px;}
.y13c{bottom:213.330000px;}
.ybc{bottom:213.870000px;}
.y100{bottom:216.570000px;}
.y12f{bottom:217.470000px;}
.y14d{bottom:219.090000px;}
.y1b4{bottom:221.430000px;}
.y71{bottom:222.510000px;}
.y158{bottom:222.690000px;}
.y191{bottom:223.950000px;}
.y24{bottom:224.130000px;}
.y182{bottom:225.930000px;}
.y1a0{bottom:227.550000px;}
.y144{bottom:227.730000px;}
.ydf{bottom:228.450000px;}
.yf8{bottom:228.810000px;}
.y95{bottom:229.350000px;}
.yb4{bottom:229.530000px;}
.y12e{bottom:232.230000px;}
.y143{bottom:233.670000px;}
.y13b{bottom:234.030000px;}
.y157{bottom:240.510000px;}
.y1b3{bottom:242.130000px;}
.y70{bottom:243.210000px;}
.y190{bottom:244.650000px;}
.y23{bottom:244.830000px;}
.y156{bottom:246.450000px;}
.y181{bottom:246.630000px;}
.y19f{bottom:248.250000px;}
.y142{bottom:248.430000px;}
.yde{bottom:249.150000px;}
.yf7{bottom:249.510000px;}
.y94{bottom:250.050000px;}
.yb3{bottom:250.230000px;}
.y13a{bottom:254.730000px;}
.y14c{bottom:256.170000px;}
.y155{bottom:261.210000px;}
.y1b2{bottom:262.830000px;}
.y6f{bottom:263.910000px;}
.y18f{bottom:265.350000px;}
.y22{bottom:265.530000px;}
.y180{bottom:267.330000px;}
.y19e{bottom:268.950000px;}
.ydd{bottom:269.850000px;}
.yf6{bottom:270.210000px;}
.y93{bottom:270.750000px;}
.yb2{bottom:270.930000px;}
.y139{bottom:275.430000px;}
.y1b1{bottom:283.530000px;}
.y6e{bottom:284.610000px;}
.y18e{bottom:286.050000px;}
.y21{bottom:286.230000px;}
.y17f{bottom:288.030000px;}
.y19d{bottom:289.650000px;}
.ydc{bottom:290.550000px;}
.yf5{bottom:290.910000px;}
.y92{bottom:291.450000px;}
.yb1{bottom:291.630000px;}
.y138{bottom:296.130000px;}
.y1b0{bottom:304.230000px;}
.y6d{bottom:305.310000px;}
.y127{bottom:306.930000px;}
.y18d{bottom:308.370000px;}
.y17e{bottom:308.730000px;}
.y19c{bottom:310.350000px;}
.ydb{bottom:311.250000px;}
.yf4{bottom:311.610000px;}
.y91{bottom:312.150000px;}
.y137{bottom:316.830000px;}
.y141{bottom:318.090000px;}
.y1af{bottom:324.975000px;}
.y6c{bottom:326.055000px;}
.y126{bottom:327.675000px;}
.y20{bottom:328.395000px;}
.y17d{bottom:329.475000px;}
.y18c{bottom:330.915000px;}
.y19b{bottom:331.095000px;}
.yda{bottom:331.995000px;}
.yf3{bottom:332.355000px;}
.y90{bottom:332.895000px;}
.y136{bottom:337.575000px;}
.y1ae{bottom:345.675000px;}
.y6b{bottom:346.755000px;}
.y125{bottom:348.375000px;}
.y17c{bottom:350.175000px;}
.y19a{bottom:351.795000px;}
.yd9{bottom:352.695000px;}
.yf2{bottom:353.055000px;}
.y8f{bottom:353.595000px;}
.y135{bottom:358.275000px;}
.y1ad{bottom:366.375000px;}
.y6a{bottom:367.455000px;}
.y124{bottom:369.075000px;}
.y17b{bottom:370.875000px;}
.y199{bottom:372.495000px;}
.yd8{bottom:373.395000px;}
.yf1{bottom:373.755000px;}
.y18b{bottom:374.115000px;}
.y8e{bottom:374.295000px;}
.y134{bottom:378.975000px;}
.y12d{bottom:380.235000px;}
.y1ac{bottom:387.075000px;}
.y69{bottom:388.155000px;}
.y123{bottom:389.775000px;}
.y17a{bottom:391.575000px;}
.y1f{bottom:393.195000px;}
.yd7{bottom:394.095000px;}
.yf0{bottom:394.455000px;}
.y18a{bottom:394.815000px;}
.y8d{bottom:394.995000px;}
.y133{bottom:399.675000px;}
.y1ab{bottom:407.775000px;}
.y68{bottom:408.855000px;}
.y1bc{bottom:409.395000px;}
.y122{bottom:410.475000px;}
.y179{bottom:412.275000px;}
.y1e{bottom:413.895000px;}
.yd6{bottom:414.795000px;}
.yef{bottom:415.155000px;}
.y189{bottom:415.515000px;}
.y8c{bottom:415.695000px;}
.y132{bottom:420.375000px;}
.y1aa{bottom:428.475000px;}
.y67{bottom:429.555000px;}
.y121{bottom:431.175000px;}
.y178{bottom:432.975000px;}
.y1d{bottom:434.595000px;}
.yd5{bottom:435.495000px;}
.yee{bottom:435.855000px;}
.y8b{bottom:436.395000px;}
.y131{bottom:437.295000px;}
.y1a9{bottom:449.175000px;}
.y66{bottom:450.255000px;}
.y120{bottom:451.875000px;}
.y1bb{bottom:452.775000px;}
.y177{bottom:453.675000px;}
.y1c{bottom:455.295000px;}
.yd4{bottom:456.195000px;}
.yed{bottom:456.555000px;}
.y8a{bottom:457.095000px;}
.y1a8{bottom:469.875000px;}
.y65{bottom:470.955000px;}
.y11f{bottom:472.575000px;}
.y1c8{bottom:472.755000px;}
.y1ba{bottom:473.475000px;}
.y176{bottom:474.375000px;}
.y1b{bottom:475.995000px;}
.yd3{bottom:476.895000px;}
.yec{bottom:477.255000px;}
.y89{bottom:477.795000px;}
.y64{bottom:491.655000px;}
.y1a7{bottom:492.195000px;}
.y11e{bottom:493.275000px;}
.y1c7{bottom:493.455000px;}
.y1b9{bottom:494.175000px;}
.y175{bottom:495.075000px;}
.y1a{bottom:496.695000px;}
.yd2{bottom:497.595000px;}
.yeb{bottom:497.955000px;}
.y88{bottom:498.495000px;}
.y63{bottom:512.355000px;}
.y11d{bottom:513.975000px;}
.y1c6{bottom:514.155000px;}
.y1a6{bottom:514.515000px;}
.y1b8{bottom:514.875000px;}
.y174{bottom:515.775000px;}
.y19{bottom:517.395000px;}
.yd1{bottom:518.295000px;}
.yea{bottom:518.655000px;}
.y87{bottom:519.195000px;}
.y14b{bottom:524.415000px;}
.y62{bottom:533.055000px;}
.y11c{bottom:534.675000px;}
.y1c5{bottom:534.855000px;}
.y173{bottom:536.475000px;}
.y1b7{bottom:537.195000px;}
.y198{bottom:538.095000px;}
.yd0{bottom:538.995000px;}
.ye9{bottom:539.355000px;}
.y86{bottom:539.895000px;}
.y61{bottom:553.755000px;}
.y11b{bottom:555.375000px;}
.y1c4{bottom:555.555000px;}
.y172{bottom:557.175000px;}
.y18{bottom:558.795000px;}
.ycf{bottom:559.695000px;}
.ye8{bottom:560.055000px;}
.y85{bottom:560.415000px;}
.yb0{bottom:560.595000px;}
.y60{bottom:574.455000px;}
.y11a{bottom:576.075000px;}
.y1c3{bottom:576.255000px;}
.y171{bottom:577.875000px;}
.y17{bottom:579.495000px;}
.yce{bottom:580.395000px;}
.ye7{bottom:580.755000px;}
.y84{bottom:581.115000px;}
.yaf{bottom:581.295000px;}
.y5f{bottom:595.155000px;}
.y119{bottom:596.805000px;}
.y1c2{bottom:596.985000px;}
.y170{bottom:598.605000px;}
.y16{bottom:600.225000px;}
.ycd{bottom:601.125000px;}
.ye6{bottom:601.485000px;}
.y83{bottom:601.845000px;}
.yae{bottom:602.025000px;}
.y5e{bottom:615.885000px;}
.y118{bottom:617.505000px;}
.y1c1{bottom:617.685000px;}
.y16f{bottom:619.305000px;}
.y15{bottom:620.925000px;}
.ycc{bottom:621.825000px;}
.ye5{bottom:622.185000px;}
.y82{bottom:622.545000px;}
.yad{bottom:622.725000px;}
.y5d{bottom:636.585000px;}
.y117{bottom:638.205000px;}
.y1c0{bottom:638.385000px;}
.y16e{bottom:640.005000px;}
.y14{bottom:641.625000px;}
.ycb{bottom:642.525000px;}
.y81{bottom:643.245000px;}
.yac{bottom:643.425000px;}
.y48{bottom:647.025000px;}
.y5c{bottom:657.285000px;}
.y116{bottom:658.905000px;}
.y1bf{bottom:659.085000px;}
.y16d{bottom:660.705000px;}
.y13{bottom:662.325000px;}
.yca{bottom:663.225000px;}
.y80{bottom:663.945000px;}
.ybb{bottom:664.125000px;}
.y47{bottom:668.445000px;}
.y5b{bottom:677.985000px;}
.y115{bottom:679.605000px;}
.y1be{bottom:679.785000px;}
.y16c{bottom:681.405000px;}
.y12{bottom:683.025000px;}
.yc9{bottom:683.925000px;}
.y7f{bottom:684.645000px;}
.yab{bottom:684.825000px;}
.y46{bottom:691.845000px;}
.y5a{bottom:698.685000px;}
.ya1{bottom:699.405000px;}
.y114{bottom:700.305000px;}
.y1bd{bottom:700.485000px;}
.y16b{bottom:702.105000px;}
.y11{bottom:703.725000px;}
.yc8{bottom:704.625000px;}
.y7e{bottom:705.345000px;}
.yaa{bottom:705.525000px;}
.y45{bottom:712.545000px;}
.y59{bottom:719.385000px;}
.y113{bottom:721.005000px;}
.y16a{bottom:722.805000px;}
.ya0{bottom:723.525000px;}
.y10{bottom:724.425000px;}
.yc7{bottom:725.325000px;}
.y7d{bottom:726.045000px;}
.ya9{bottom:726.225000px;}
.y44{bottom:733.965000px;}
.y58{bottom:740.085000px;}
.y112{bottom:741.705000px;}
.y169{bottom:743.505000px;}
.y197{bottom:745.125000px;}
.yff{bottom:746.025000px;}
.yc6{bottom:746.205000px;}
.y7c{bottom:746.745000px;}
.y9f{bottom:746.925000px;}
.y43{bottom:758.085000px;}
.y57{bottom:760.785000px;}
.y111{bottom:762.405000px;}
.y168{bottom:764.205000px;}
.yf{bottom:765.825000px;}
.yc5{bottom:766.905000px;}
.y7b{bottom:767.445000px;}
.y9d{bottom:767.625000px;}
.y9e{bottom:773.565000px;}
.y42{bottom:781.485000px;}
.y110{bottom:783.105000px;}
.y167{bottom:784.905000px;}
.ye{bottom:786.525000px;}
.yc4{bottom:787.785000px;}
.y7a{bottom:788.145000px;}
.y9c{bottom:788.325000px;}
.y41{bottom:802.185000px;}
.y10f{bottom:803.805000px;}
.y166{bottom:805.605000px;}
.yd{bottom:807.225000px;}
.yc3{bottom:808.665000px;}
.y79{bottom:808.845000px;}
.y9b{bottom:809.025000px;}
.y10d{bottom:821.445000px;}
.y40{bottom:822.885000px;}
.y165{bottom:826.305000px;}
.yc{bottom:827.925000px;}
.y78{bottom:829.545000px;}
.y9a{bottom:829.725000px;}
.y188{bottom:829.905000px;}
.y56{bottom:843.585000px;}
.y3f{bottom:844.305000px;}
.y164{bottom:847.005000px;}
.yb{bottom:848.625000px;}
.y77{bottom:850.425000px;}
.y55{bottom:864.285000px;}
.y163{bottom:867.750000px;}
.y3e{bottom:868.470000px;}
.y196{bottom:869.370000px;}
.y76{bottom:871.170000px;}
.y10c{bottom:884.310000px;}
.y54{bottom:885.030000px;}
.y162{bottom:888.450000px;}
.ya{bottom:890.790000px;}
.y195{bottom:891.510000px;}
.y3d{bottom:891.870000px;}
.yba{bottom:897.810000px;}
.y53{bottom:905.730000px;}
.y161{bottom:909.150000px;}
.y3c{bottom:912.570000px;}
.y52{bottom:926.430000px;}
.y160{bottom:929.850000px;}
.y3b{bottom:933.270000px;}
.y9{bottom:934.890000px;}
.y154{bottom:939.210000px;}
.y51{bottom:947.130000px;}
.y10b{bottom:947.310000px;}
.y15f{bottom:950.550000px;}
.y3a{bottom:953.970000px;}
.y8{bottom:955.770000px;}
.y50{bottom:967.830000px;}
.y15e{bottom:971.250000px;}
.y39{bottom:974.670000px;}
.y7{bottom:976.650000px;}
.y4f{bottom:988.530000px;}
.yfe{bottom:989.250000px;}
.y10a{bottom:989.430000px;}
.y15d{bottom:991.950000px;}
.y38{bottom:995.370000px;}
.y6{bottom:997.170000px;}
.y4e{bottom:1009.230000px;}
.y15c{bottom:1012.650000px;}
.y37{bottom:1016.070000px;}
.y5{bottom:1017.870000px;}
.y4d{bottom:1029.930000px;}
.y106{bottom:1031.550000px;}
.y15b{bottom:1033.350000px;}
.y36{bottom:1036.770000px;}
.y4{bottom:1038.750000px;}
.y140{bottom:1042.710000px;}
.y4c{bottom:1050.630000px;}
.y15a{bottom:1054.050000px;}
.y35{bottom:1057.470000px;}
.y4b{bottom:1071.330000px;}
.y34{bottom:1078.170000px;}
.y129{bottom:1084.110000px;}
.y4a{bottom:1092.030000px;}
.y33{bottom:1098.870000px;}
.y3{bottom:1100.130000px;}
.y14a{bottom:1104.810000px;}
.y49{bottom:1113.450000px;}
.y104{bottom:1115.070000px;}
.y32{bottom:1119.570000px;}
.y2{bottom:1127.850000px;}
.y31{bottom:1140.300000px;}
.y1{bottom:1155.420000px;}
.y30{bottom:1161.000000px;}
.y2c{bottom:1188.300000px;}
.y2b{bottom:1206.300000px;}
.y2a{bottom:1224.300000px;}
.y29{bottom:1242.300000px;}
.he{height:20.700000px;}
.ha{height:40.550625px;}
.h10{height:41.400000px;}
.h9{height:50.312812px;}
.hc{height:53.603086px;}
.h7{height:53.789062px;}
.hd{height:59.439023px;}
.h11{height:62.100000px;}
.h12{height:62.136000px;}
.hb{height:62.327813px;}
.h8{height:64.582031px;}
.h5{height:70.628906px;}
.h3{height:70.664062px;}
.h4{height:75.093750px;}
.hf{height:82.800000px;}
.h6{height:87.859687px;}
.h2{height:99.874688px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:211.530000px;}
.w6{width:211.710000px;}
.w5{width:219.630000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x2{left:76.186500px;}
.x1{left:127.656000px;}
.xa{left:133.055987px;}
.xe{left:134.315987px;}
.x27{left:140.975987px;}
.x8{left:154.649987px;}
.x5{left:181.649987px;}
.x21{left:203.789973px;}
.xf{left:207.929987px;}
.x22{left:210.449987px;}
.x1d{left:236.729973px;}
.x1e{left:243.389987px;}
.xb{left:265.349987px;}
.x23{left:304.814973px;}
.x24{left:318.134987px;}
.x16{left:340.815000px;}
.x9{left:343.694987px;}
.x13{left:382.214973px;}
.x14{left:388.874987px;}
.xc{left:407.054973px;}
.xd{left:413.714987px;}
.x6{left:458.534973px;}
.x7{left:465.194987px;}
.x11{left:497.804973px;}
.x12{left:504.464987px;}
.x17{left:561.165000px;}
.x25{left:568.184973px;}
.x26{left:581.504987px;}
.x1a{left:606.884973px;}
.x1b{left:613.544987px;}
.x28{left:680.549973px;}
.x1c{left:692.789987px;}
.x29{left:693.869987px;}
.x1f{left:739.769973px;}
.x20{left:746.429987px;}
.x18{left:758.129973px;}
.x19{left:764.789987px;}
.x10{left:766.949987px;}
.x4{left:776.849987px;}
.x3{left:786.929987px;}
@media print{
.v4{vertical-align:-84.480000pt;}
.v1{vertical-align:-83.200000pt;}
.v3{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.126720pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.768000pt;}
.lsd{letter-spacing:5.274880pt;}
.ls1f{letter-spacing:18.688000pt;}
.lsc{letter-spacing:25.088000pt;}
.ls1d{letter-spacing:27.008000pt;}
.ls18{letter-spacing:41.728000pt;}
.ls1b{letter-spacing:52.143360pt;}
.ls6{letter-spacing:78.186667pt;}
.lse{letter-spacing:171.626667pt;}
.lsb{letter-spacing:375.786667pt;}
.ws7{word-spacing:-64.000000pt;}
.ws3{word-spacing:-20.816640pt;}
.ws4{word-spacing:-20.783360pt;}
.wsd{word-spacing:-18.240000pt;}
.ws8{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.984000pt;}
.wsf{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws11{word-spacing:-17.664000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws10{word-spacing:-17.408000pt;}
.ws5{word-spacing:-16.960000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.672427pt;}
.ws9{word-spacing:-13.306880pt;}
.wsb{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.953280pt;}
.ws1{word-spacing:0.000000pt;}
._34{margin-left:-5.576320pt;}
._11{margin-left:-4.224000pt;}
._6{margin-left:-2.880000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.276800pt;}
._e{width:2.752000pt;}
._b{width:3.690667pt;}
._12{width:4.699733pt;}
._1c{width:5.872000pt;}
._19{width:7.040000pt;}
._18{width:8.042667pt;}
._14{width:9.472000pt;}
._17{width:10.747733pt;}
._8{width:12.096000pt;}
._7{width:13.376000pt;}
._22{width:14.592000pt;}
._10{width:15.488000pt;}
._f{width:16.832000pt;}
._25{width:17.824000pt;}
._15{width:19.520000pt;}
._a{width:20.480000pt;}
._9{width:21.738667pt;}
._5{width:23.032533pt;}
._4{width:24.192000pt;}
._13{width:25.138133pt;}
._1f{width:26.253867pt;}
._16{width:27.584000pt;}
._20{width:29.290667pt;}
._2{width:30.912000pt;}
._3{width:32.586667pt;}
._d{width:33.920000pt;}
._c{width:35.584000pt;}
._26{width:36.736000pt;}
._27{width:37.908267pt;}
._2b{width:39.266133pt;}
._32{width:40.256000pt;}
._37{width:41.237333pt;}
._33{width:42.232533pt;}
._2a{width:44.245333pt;}
._24{width:45.610667pt;}
._23{width:46.784000pt;}
._1a{width:48.128000pt;}
._1e{width:49.514667pt;}
._1d{width:50.538667pt;}
._21{width:51.968000pt;}
._39{width:53.312000pt;}
._38{width:55.616000pt;}
._29{width:58.368000pt;}
._30{width:69.440000pt;}
._31{width:70.336000pt;}
._36{width:82.560000pt;}
._2e{width:125.312000pt;}
._2d{width:138.944000pt;}
._2c{width:153.344000pt;}
._28{width:174.186667pt;}
._2f{width:202.560000pt;}
._1b{width:750.346667pt;}
._35{width:752.138667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:3.360000pt;}
.y109{bottom:21.760000pt;}
.y108{bottom:40.160000pt;}
.y10e{bottom:40.200000pt;}
.y2f{bottom:51.232000pt;}
.y107{bottom:58.560000pt;}
.y2e{bottom:69.632000pt;}
.y2d{bottom:88.032000pt;}
.ya8{bottom:105.952000pt;}
.yc2{bottom:106.592000pt;}
.y28{bottom:107.232000pt;}
.y187{bottom:108.832000pt;}
.y1a5{bottom:109.632000pt;}
.ye4{bottom:111.072000pt;}
.yfd{bottom:111.392000pt;}
.yb9{bottom:112.032000pt;}
.ya7{bottom:121.312000pt;}
.yc1{bottom:122.912000pt;}
.y75{bottom:124.192000pt;}
.y149{bottom:125.312000pt;}
.y27{bottom:125.632000pt;}
.y186{bottom:127.232000pt;}
.y1a4{bottom:128.032000pt;}
.y153{bottom:128.192000pt;}
.ye3{bottom:129.472000pt;}
.yfc{bottom:129.792000pt;}
.y99{bottom:130.272000pt;}
.yb8{bottom:130.432000pt;}
.y13f{bottom:134.426667pt;}
.ya6{bottom:136.666667pt;}
.y148{bottom:137.306667pt;}
.yc0{bottom:139.226667pt;}
.y152{bottom:141.466667pt;}
.y1b6{bottom:141.626667pt;}
.y74{bottom:142.586667pt;}
.y194{bottom:143.866667pt;}
.y26{bottom:144.026667pt;}
.y103{bottom:144.506667pt;}
.y185{bottom:145.626667pt;}
.y1a3{bottom:146.426667pt;}
.y151{bottom:146.746667pt;}
.ye2{bottom:147.866667pt;}
.yfb{bottom:148.186667pt;}
.y98{bottom:148.666667pt;}
.yb7{bottom:148.826667pt;}
.ya5{bottom:152.026667pt;}
.y13e{bottom:152.826667pt;}
.y147{bottom:153.626667pt;}
.ybf{bottom:155.386667pt;}
.y12c{bottom:155.546667pt;}
.y102{bottom:157.786667pt;}
.y150{bottom:160.026667pt;}
.y12b{bottom:160.826667pt;}
.y73{bottom:160.986667pt;}
.y193{bottom:162.266667pt;}
.y128{bottom:162.426667pt;}
.y184{bottom:164.026667pt;}
.y1a2{bottom:164.986667pt;}
.ye1{bottom:166.266667pt;}
.yfa{bottom:166.586667pt;}
.y97{bottom:167.066667pt;}
.yb6{bottom:167.226667pt;}
.ya4{bottom:167.386667pt;}
.y146{bottom:169.786667pt;}
.y13d{bottom:171.226667pt;}
.ya3{bottom:171.386667pt;}
.ybe{bottom:171.706667pt;}
.y12a{bottom:173.946667pt;}
.y101{bottom:174.106667pt;}
.y14f{bottom:176.346667pt;}
.ybd{bottom:176.986667pt;}
.y1b5{bottom:178.426667pt;}
.y72{bottom:179.386667pt;}
.y192{bottom:180.666667pt;}
.y25{bottom:180.826667pt;}
.y14e{bottom:181.626667pt;}
.y183{bottom:182.426667pt;}
.y159{bottom:182.586667pt;}
.ya2{bottom:183.066667pt;}
.y1a1{bottom:183.706667pt;}
.ye0{bottom:184.666667pt;}
.yf9{bottom:184.986667pt;}
.y96{bottom:185.466667pt;}
.yb5{bottom:185.626667pt;}
.y145{bottom:186.106667pt;}
.y130{bottom:188.026667pt;}
.y13c{bottom:189.626667pt;}
.ybc{bottom:190.106667pt;}
.y100{bottom:192.506667pt;}
.y12f{bottom:193.306667pt;}
.y14d{bottom:194.746667pt;}
.y1b4{bottom:196.826667pt;}
.y71{bottom:197.786667pt;}
.y158{bottom:197.946667pt;}
.y191{bottom:199.066667pt;}
.y24{bottom:199.226667pt;}
.y182{bottom:200.826667pt;}
.y1a0{bottom:202.266667pt;}
.y144{bottom:202.426667pt;}
.ydf{bottom:203.066667pt;}
.yf8{bottom:203.386667pt;}
.y95{bottom:203.866667pt;}
.yb4{bottom:204.026667pt;}
.y12e{bottom:206.426667pt;}
.y143{bottom:207.706667pt;}
.y13b{bottom:208.026667pt;}
.y157{bottom:213.786667pt;}
.y1b3{bottom:215.226667pt;}
.y70{bottom:216.186667pt;}
.y190{bottom:217.466667pt;}
.y23{bottom:217.626667pt;}
.y156{bottom:219.066667pt;}
.y181{bottom:219.226667pt;}
.y19f{bottom:220.666667pt;}
.y142{bottom:220.826667pt;}
.yde{bottom:221.466667pt;}
.yf7{bottom:221.786667pt;}
.y94{bottom:222.266667pt;}
.yb3{bottom:222.426667pt;}
.y13a{bottom:226.426667pt;}
.y14c{bottom:227.706667pt;}
.y155{bottom:232.186667pt;}
.y1b2{bottom:233.626667pt;}
.y6f{bottom:234.586667pt;}
.y18f{bottom:235.866667pt;}
.y22{bottom:236.026667pt;}
.y180{bottom:237.626667pt;}
.y19e{bottom:239.066667pt;}
.ydd{bottom:239.866667pt;}
.yf6{bottom:240.186667pt;}
.y93{bottom:240.666667pt;}
.yb2{bottom:240.826667pt;}
.y139{bottom:244.826667pt;}
.y1b1{bottom:252.026667pt;}
.y6e{bottom:252.986667pt;}
.y18e{bottom:254.266667pt;}
.y21{bottom:254.426667pt;}
.y17f{bottom:256.026667pt;}
.y19d{bottom:257.466667pt;}
.ydc{bottom:258.266667pt;}
.yf5{bottom:258.586667pt;}
.y92{bottom:259.066667pt;}
.yb1{bottom:259.226667pt;}
.y138{bottom:263.226667pt;}
.y1b0{bottom:270.426667pt;}
.y6d{bottom:271.386667pt;}
.y127{bottom:272.826667pt;}
.y18d{bottom:274.106667pt;}
.y17e{bottom:274.426667pt;}
.y19c{bottom:275.866667pt;}
.ydb{bottom:276.666667pt;}
.yf4{bottom:276.986667pt;}
.y91{bottom:277.466667pt;}
.y137{bottom:281.626667pt;}
.y141{bottom:282.746667pt;}
.y1af{bottom:288.866667pt;}
.y6c{bottom:289.826667pt;}
.y126{bottom:291.266667pt;}
.y20{bottom:291.906667pt;}
.y17d{bottom:292.866667pt;}
.y18c{bottom:294.146667pt;}
.y19b{bottom:294.306667pt;}
.yda{bottom:295.106667pt;}
.yf3{bottom:295.426667pt;}
.y90{bottom:295.906667pt;}
.y136{bottom:300.066667pt;}
.y1ae{bottom:307.266667pt;}
.y6b{bottom:308.226667pt;}
.y125{bottom:309.666667pt;}
.y17c{bottom:311.266667pt;}
.y19a{bottom:312.706667pt;}
.yd9{bottom:313.506667pt;}
.yf2{bottom:313.826667pt;}
.y8f{bottom:314.306667pt;}
.y135{bottom:318.466667pt;}
.y1ad{bottom:325.666667pt;}
.y6a{bottom:326.626667pt;}
.y124{bottom:328.066667pt;}
.y17b{bottom:329.666667pt;}
.y199{bottom:331.106667pt;}
.yd8{bottom:331.906667pt;}
.yf1{bottom:332.226667pt;}
.y18b{bottom:332.546667pt;}
.y8e{bottom:332.706667pt;}
.y134{bottom:336.866667pt;}
.y12d{bottom:337.986667pt;}
.y1ac{bottom:344.066667pt;}
.y69{bottom:345.026667pt;}
.y123{bottom:346.466667pt;}
.y17a{bottom:348.066667pt;}
.y1f{bottom:349.506667pt;}
.yd7{bottom:350.306667pt;}
.yf0{bottom:350.626667pt;}
.y18a{bottom:350.946667pt;}
.y8d{bottom:351.106667pt;}
.y133{bottom:355.266667pt;}
.y1ab{bottom:362.466667pt;}
.y68{bottom:363.426667pt;}
.y1bc{bottom:363.906667pt;}
.y122{bottom:364.866667pt;}
.y179{bottom:366.466667pt;}
.y1e{bottom:367.906667pt;}
.yd6{bottom:368.706667pt;}
.yef{bottom:369.026667pt;}
.y189{bottom:369.346667pt;}
.y8c{bottom:369.506667pt;}
.y132{bottom:373.666667pt;}
.y1aa{bottom:380.866667pt;}
.y67{bottom:381.826667pt;}
.y121{bottom:383.266667pt;}
.y178{bottom:384.866667pt;}
.y1d{bottom:386.306667pt;}
.yd5{bottom:387.106667pt;}
.yee{bottom:387.426667pt;}
.y8b{bottom:387.906667pt;}
.y131{bottom:388.706667pt;}
.y1a9{bottom:399.266667pt;}
.y66{bottom:400.226667pt;}
.y120{bottom:401.666667pt;}
.y1bb{bottom:402.466667pt;}
.y177{bottom:403.266667pt;}
.y1c{bottom:404.706667pt;}
.yd4{bottom:405.506667pt;}
.yed{bottom:405.826667pt;}
.y8a{bottom:406.306667pt;}
.y1a8{bottom:417.666667pt;}
.y65{bottom:418.626667pt;}
.y11f{bottom:420.066667pt;}
.y1c8{bottom:420.226667pt;}
.y1ba{bottom:420.866667pt;}
.y176{bottom:421.666667pt;}
.y1b{bottom:423.106667pt;}
.yd3{bottom:423.906667pt;}
.yec{bottom:424.226667pt;}
.y89{bottom:424.706667pt;}
.y64{bottom:437.026667pt;}
.y1a7{bottom:437.506667pt;}
.y11e{bottom:438.466667pt;}
.y1c7{bottom:438.626667pt;}
.y1b9{bottom:439.266667pt;}
.y175{bottom:440.066667pt;}
.y1a{bottom:441.506667pt;}
.yd2{bottom:442.306667pt;}
.yeb{bottom:442.626667pt;}
.y88{bottom:443.106667pt;}
.y63{bottom:455.426667pt;}
.y11d{bottom:456.866667pt;}
.y1c6{bottom:457.026667pt;}
.y1a6{bottom:457.346667pt;}
.y1b8{bottom:457.666667pt;}
.y174{bottom:458.466667pt;}
.y19{bottom:459.906667pt;}
.yd1{bottom:460.706667pt;}
.yea{bottom:461.026667pt;}
.y87{bottom:461.506667pt;}
.y14b{bottom:466.146667pt;}
.y62{bottom:473.826667pt;}
.y11c{bottom:475.266667pt;}
.y1c5{bottom:475.426667pt;}
.y173{bottom:476.866667pt;}
.y1b7{bottom:477.506667pt;}
.y198{bottom:478.306667pt;}
.yd0{bottom:479.106667pt;}
.ye9{bottom:479.426667pt;}
.y86{bottom:479.906667pt;}
.y61{bottom:492.226667pt;}
.y11b{bottom:493.666667pt;}
.y1c4{bottom:493.826667pt;}
.y172{bottom:495.266667pt;}
.y18{bottom:496.706667pt;}
.ycf{bottom:497.506667pt;}
.ye8{bottom:497.826667pt;}
.y85{bottom:498.146667pt;}
.yb0{bottom:498.306667pt;}
.y60{bottom:510.626667pt;}
.y11a{bottom:512.066667pt;}
.y1c3{bottom:512.226667pt;}
.y171{bottom:513.666667pt;}
.y17{bottom:515.106667pt;}
.yce{bottom:515.906667pt;}
.ye7{bottom:516.226667pt;}
.y84{bottom:516.546667pt;}
.yaf{bottom:516.706667pt;}
.y5f{bottom:529.026667pt;}
.y119{bottom:530.493333pt;}
.y1c2{bottom:530.653333pt;}
.y170{bottom:532.093333pt;}
.y16{bottom:533.533333pt;}
.ycd{bottom:534.333333pt;}
.ye6{bottom:534.653333pt;}
.y83{bottom:534.973333pt;}
.yae{bottom:535.133333pt;}
.y5e{bottom:547.453333pt;}
.y118{bottom:548.893333pt;}
.y1c1{bottom:549.053333pt;}
.y16f{bottom:550.493333pt;}
.y15{bottom:551.933333pt;}
.ycc{bottom:552.733333pt;}
.ye5{bottom:553.053333pt;}
.y82{bottom:553.373333pt;}
.yad{bottom:553.533333pt;}
.y5d{bottom:565.853333pt;}
.y117{bottom:567.293333pt;}
.y1c0{bottom:567.453333pt;}
.y16e{bottom:568.893333pt;}
.y14{bottom:570.333333pt;}
.ycb{bottom:571.133333pt;}
.y81{bottom:571.773333pt;}
.yac{bottom:571.933333pt;}
.y48{bottom:575.133333pt;}
.y5c{bottom:584.253333pt;}
.y116{bottom:585.693333pt;}
.y1bf{bottom:585.853333pt;}
.y16d{bottom:587.293333pt;}
.y13{bottom:588.733333pt;}
.yca{bottom:589.533333pt;}
.y80{bottom:590.173333pt;}
.ybb{bottom:590.333333pt;}
.y47{bottom:594.173333pt;}
.y5b{bottom:602.653333pt;}
.y115{bottom:604.093333pt;}
.y1be{bottom:604.253333pt;}
.y16c{bottom:605.693333pt;}
.y12{bottom:607.133333pt;}
.yc9{bottom:607.933333pt;}
.y7f{bottom:608.573333pt;}
.yab{bottom:608.733333pt;}
.y46{bottom:614.973333pt;}
.y5a{bottom:621.053333pt;}
.ya1{bottom:621.693333pt;}
.y114{bottom:622.493333pt;}
.y1bd{bottom:622.653333pt;}
.y16b{bottom:624.093333pt;}
.y11{bottom:625.533333pt;}
.yc8{bottom:626.333333pt;}
.y7e{bottom:626.973333pt;}
.yaa{bottom:627.133333pt;}
.y45{bottom:633.373333pt;}
.y59{bottom:639.453333pt;}
.y113{bottom:640.893333pt;}
.y16a{bottom:642.493333pt;}
.ya0{bottom:643.133333pt;}
.y10{bottom:643.933333pt;}
.yc7{bottom:644.733333pt;}
.y7d{bottom:645.373333pt;}
.ya9{bottom:645.533333pt;}
.y44{bottom:652.413333pt;}
.y58{bottom:657.853333pt;}
.y112{bottom:659.293333pt;}
.y169{bottom:660.893333pt;}
.y197{bottom:662.333333pt;}
.yff{bottom:663.133333pt;}
.yc6{bottom:663.293333pt;}
.y7c{bottom:663.773333pt;}
.y9f{bottom:663.933333pt;}
.y43{bottom:673.853333pt;}
.y57{bottom:676.253333pt;}
.y111{bottom:677.693333pt;}
.y168{bottom:679.293333pt;}
.yf{bottom:680.733333pt;}
.yc5{bottom:681.693333pt;}
.y7b{bottom:682.173333pt;}
.y9d{bottom:682.333333pt;}
.y9e{bottom:687.613333pt;}
.y42{bottom:694.653333pt;}
.y110{bottom:696.093333pt;}
.y167{bottom:697.693333pt;}
.ye{bottom:699.133333pt;}
.yc4{bottom:700.253333pt;}
.y7a{bottom:700.573333pt;}
.y9c{bottom:700.733333pt;}
.y41{bottom:713.053333pt;}
.y10f{bottom:714.493333pt;}
.y166{bottom:716.093333pt;}
.yd{bottom:717.533333pt;}
.yc3{bottom:718.813333pt;}
.y79{bottom:718.973333pt;}
.y9b{bottom:719.133333pt;}
.y10d{bottom:730.173333pt;}
.y40{bottom:731.453333pt;}
.y165{bottom:734.493333pt;}
.yc{bottom:735.933333pt;}
.y78{bottom:737.373333pt;}
.y9a{bottom:737.533333pt;}
.y188{bottom:737.693333pt;}
.y56{bottom:749.853333pt;}
.y3f{bottom:750.493333pt;}
.y164{bottom:752.893333pt;}
.yb{bottom:754.333333pt;}
.y77{bottom:755.933333pt;}
.y55{bottom:768.253333pt;}
.y163{bottom:771.333333pt;}
.y3e{bottom:771.973333pt;}
.y196{bottom:772.773333pt;}
.y76{bottom:774.373333pt;}
.y10c{bottom:786.053333pt;}
.y54{bottom:786.693333pt;}
.y162{bottom:789.733333pt;}
.ya{bottom:791.813333pt;}
.y195{bottom:792.453333pt;}
.y3d{bottom:792.773333pt;}
.yba{bottom:798.053333pt;}
.y53{bottom:805.093333pt;}
.y161{bottom:808.133333pt;}
.y3c{bottom:811.173333pt;}
.y52{bottom:823.493333pt;}
.y160{bottom:826.533333pt;}
.y3b{bottom:829.573333pt;}
.y9{bottom:831.013333pt;}
.y154{bottom:834.853333pt;}
.y51{bottom:841.893333pt;}
.y10b{bottom:842.053333pt;}
.y15f{bottom:844.933333pt;}
.y3a{bottom:847.973333pt;}
.y8{bottom:849.573333pt;}
.y50{bottom:860.293333pt;}
.y15e{bottom:863.333333pt;}
.y39{bottom:866.373333pt;}
.y7{bottom:868.133333pt;}
.y4f{bottom:878.693333pt;}
.yfe{bottom:879.333333pt;}
.y10a{bottom:879.493333pt;}
.y15d{bottom:881.733333pt;}
.y38{bottom:884.773333pt;}
.y6{bottom:886.373333pt;}
.y4e{bottom:897.093333pt;}
.y15c{bottom:900.133333pt;}
.y37{bottom:903.173333pt;}
.y5{bottom:904.773333pt;}
.y4d{bottom:915.493333pt;}
.y106{bottom:916.933333pt;}
.y15b{bottom:918.533333pt;}
.y36{bottom:921.573333pt;}
.y4{bottom:923.333333pt;}
.y140{bottom:926.853333pt;}
.y4c{bottom:933.893333pt;}
.y15a{bottom:936.933333pt;}
.y35{bottom:939.973333pt;}
.y4b{bottom:952.293333pt;}
.y34{bottom:958.373333pt;}
.y129{bottom:963.653333pt;}
.y4a{bottom:970.693333pt;}
.y33{bottom:976.773333pt;}
.y3{bottom:977.893333pt;}
.y14a{bottom:982.053333pt;}
.y49{bottom:989.733333pt;}
.y104{bottom:991.173333pt;}
.y32{bottom:995.173333pt;}
.y2{bottom:1002.533333pt;}
.y31{bottom:1013.600000pt;}
.y1{bottom:1027.040000pt;}
.y30{bottom:1032.000000pt;}
.y2c{bottom:1056.266667pt;}
.y2b{bottom:1072.266667pt;}
.y2a{bottom:1088.266667pt;}
.y29{bottom:1104.266667pt;}
.he{height:18.400000pt;}
.ha{height:36.045000pt;}
.h10{height:36.800000pt;}
.h9{height:44.722500pt;}
.hc{height:47.647188pt;}
.h7{height:47.812500pt;}
.hd{height:52.834688pt;}
.h11{height:55.200000pt;}
.h12{height:55.232000pt;}
.hb{height:55.402500pt;}
.h8{height:57.406250pt;}
.h5{height:62.781250pt;}
.h3{height:62.812500pt;}
.h4{height:66.750000pt;}
.hf{height:73.600000pt;}
.h6{height:78.097500pt;}
.h2{height:88.777500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:188.026667pt;}
.w6{width:188.186667pt;}
.w5{width:195.226667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x2{left:67.721333pt;}
.x1{left:113.472000pt;}
.xa{left:118.271988pt;}
.xe{left:119.391988pt;}
.x27{left:125.311988pt;}
.x8{left:137.466655pt;}
.x5{left:161.466655pt;}
.x21{left:181.146643pt;}
.xf{left:184.826655pt;}
.x22{left:187.066655pt;}
.x1d{left:210.426643pt;}
.x1e{left:216.346655pt;}
.xb{left:235.866655pt;}
.x23{left:270.946643pt;}
.x24{left:282.786655pt;}
.x16{left:302.946667pt;}
.x9{left:305.506655pt;}
.x13{left:339.746643pt;}
.x14{left:345.666655pt;}
.xc{left:361.826643pt;}
.xd{left:367.746655pt;}
.x6{left:407.586643pt;}
.x7{left:413.506655pt;}
.x11{left:442.493310pt;}
.x12{left:448.413322pt;}
.x17{left:498.813333pt;}
.x25{left:505.053310pt;}
.x26{left:516.893322pt;}
.x1a{left:539.453310pt;}
.x1b{left:545.373322pt;}
.x28{left:604.933310pt;}
.x1c{left:615.813322pt;}
.x29{left:616.773322pt;}
.x1f{left:657.573310pt;}
.x20{left:663.493322pt;}
.x18{left:673.893310pt;}
.x19{left:679.813322pt;}
.x10{left:681.733322pt;}
.x4{left:690.533322pt;}
.x3{left:699.493322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  