
    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_8f6286a386ba96a99b2250d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_79852d0a1995de0eb1b4a1d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f2c48a6bfc561a91621c267e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_806f538f052fcc99c1fd2702.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_bb2d56fbcc464b44c6f5a72b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.903809;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_65c60420563227dff286f4d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_053b120b033e23fda2b833db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a1f36380b9f21a6493f9c7e3.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-128.160000px;}
.v2{vertical-align:-107.280000px;}
.v4{vertical-align:-84.960000px;}
.v3{vertical-align:-75.600000px;}
.v8{vertical-align:-33.120000px;}
.v6{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:27.360000px;}
.v5{vertical-align:33.120000px;}
.v7{vertical-align:38.880000px;}
.ls32{letter-spacing:-1.008000px;}
.ls38{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.684000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls48{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.341400px;}
.lsf{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.206400px;}
.ls1d{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.028080px;}
.ls36{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.106560px;}
.ls2d{letter-spacing:0.106800px;}
.ls23{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.259800px;}
.ls2e{letter-spacing:0.286560px;}
.ls39{letter-spacing:0.298800px;}
.ls35{letter-spacing:0.350400px;}
.ls11{letter-spacing:0.350640px;}
.ls9{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.378600px;}
.ls13{letter-spacing:0.378720px;}
.lsb{letter-spacing:0.432000px;}
.ls31{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.513600px;}
.ls34{letter-spacing:0.612000px;}
.ls3d{letter-spacing:0.684000px;}
.lse{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.900000px;}
.ls49{letter-spacing:0.924000px;}
.ls4a{letter-spacing:1.080000px;}
.ls44{letter-spacing:1.260000px;}
.ls47{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.620000px;}
.ls41{letter-spacing:2.160000px;}
.ls3c{letter-spacing:3.060000px;}
.ls3b{letter-spacing:3.600000px;}
.ls29{letter-spacing:4.140000px;}
.ls16{letter-spacing:4.320000px;}
.ls2a{letter-spacing:4.860000px;}
.ls4b{letter-spacing:5.040000px;}
.ls4c{letter-spacing:5.760000px;}
.ls37{letter-spacing:5.940000px;}
.lsa{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.020000px;}
.ls42{letter-spacing:7.200000px;}
.lsd{letter-spacing:7.380000px;}
.ls2f{letter-spacing:8.100000px;}
.ls2c{letter-spacing:9.540000px;}
.ls3f{letter-spacing:10.260000px;}
.ls27{letter-spacing:10.800000px;}
.ls26{letter-spacing:11.520000px;}
.ls1c{letter-spacing:11.700000px;}
.ls3e{letter-spacing:12.240000px;}
.ls3a{letter-spacing:15.120000px;}
.ls21{letter-spacing:15.660000px;}
.ls43{letter-spacing:16.020000px;}
.ls19{letter-spacing:19.440000px;}
.ls46{letter-spacing:20.340000px;}
.ls45{letter-spacing:21.420000px;}
.ls4e{letter-spacing:23.760000px;}
.ls4d{letter-spacing:25.920000px;}
.ls10{letter-spacing:71.280000px;}
.ls15{letter-spacing:71.400000px;}
.ls14{letter-spacing:71.460000px;}
.ls3{letter-spacing:194.376000px;}
.ls1{letter-spacing:739.596000px;}
.ls33{letter-spacing:846.156000px;}
.ls0{letter-spacing:1342.236000px;}
.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;}
}
.ws8{word-spacing:-21.438600px;}
.ws12{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.718600px;}
.wse{word-spacing:-18.432000px;}
.ws16{word-spacing:-18.216000px;}
.ws14{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.712000px;}
.wsa{word-spacing:-15.453600px;}
.ws4{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.733600px;}
.wsd{word-spacing:-12.420000px;}
.ws17{word-spacing:-11.700000px;}
.ws3{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-16.692000px;}
._2a{margin-left:-14.664000px;}
._9{margin-left:-11.988000px;}
._a{margin-left:-9.798000px;}
._8{margin-left:-8.385360px;}
._6{margin-left:-7.182000px;}
._3{margin-left:-5.928000px;}
._4{margin-left:-3.960000px;}
._1a{margin-left:-2.347200px;}
._0{margin-left:-1.322640px;}
._1{width:1.340640px;}
._f{width:2.664000px;}
._e{width:4.365360px;}
._d{width:5.426640px;}
._5{width:6.552000px;}
._17{width:7.918560px;}
._14{width:9.504000px;}
._c{width:11.304000px;}
._15{width:12.510000px;}
._21{width:13.554720px;}
._16{width:14.642640px;}
._19{width:15.794640px;}
._18{width:16.848000px;}
._34{width:18.218640px;}
._13{width:19.251360px;}
._22{width:20.295840px;}
._1e{width:21.960000px;}
._1f{width:23.112000px;}
._32{width:24.552000px;}
._20{width:25.776000px;}
._26{width:27.144000px;}
._12{width:28.656000px;}
._10{width:29.664000px;}
._11{width:31.104000px;}
._1d{width:32.282640px;}
._1c{width:33.408000px;}
._25{width:34.730640px;}
._2b{width:36.720000px;}
._23{width:38.376000px;}
._1b{width:40.176000px;}
._36{width:41.238000px;}
._27{width:42.408000px;}
._3b{width:44.642640px;}
._30{width:45.981360px;}
._2f{width:47.402640px;}
._2c{width:57.096000px;}
._2d{width:58.176000px;}
._2e{width:60.672000px;}
._35{width:61.747920px;}
._39{width:66.816000px;}
._3a{width:91.368000px;}
._3c{width:109.416000px;}
._28{width:111.456000px;}
._29{width:112.596000px;}
._33{width:140.376000px;}
._38{width:158.376000px;}
._24{width:176.376000px;}
._37{width:191.316000px;}
._31{width:194.376000px;}
._b{width:846.156000px;}
._2{width:2688.216000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:4.680000px;}
.y20{bottom:56.736000px;}
.y1f{bottom:74.016000px;}
.y5b{bottom:74.916000px;}
.y21{bottom:86.256000px;}
.y1e{bottom:91.656000px;}
.yf3{bottom:110.916000px;}
.y15f{bottom:112.536000px;}
.y140{bottom:113.616000px;}
.yd3{bottom:114.336000px;}
.y13e{bottom:119.556000px;}
.y191{bottom:120.096000px;}
.y123{bottom:121.176000px;}
.y15a{bottom:122.976000px;}
.y16d{bottom:124.776000px;}
.y192{bottom:125.316000px;}
.ye4{bottom:128.016000px;}
.yf2{bottom:128.196000px;}
.y17d{bottom:129.816000px;}
.yc9{bottom:131.616000px;}
.y148{bottom:135.036000px;}
.y15e{bottom:136.656000px;}
.y117{bottom:136.836000px;}
.ye3{bottom:138.456000px;}
.y159{bottom:140.076000px;}
.y94{bottom:141.876000px;}
.y13d{bottom:143.676000px;}
.y90{bottom:145.296000px;}
.y125{bottom:145.476000px;}
.y15d{bottom:147.096000px;}
.y16c{bottom:148.716000px;}
.yc8{bottom:148.896000px;}
.y158{bottom:150.510000px;}
.y18d{bottom:151.050000px;}
.y93{bottom:152.310000px;}
.y171{bottom:153.930000px;}
.yd2{bottom:155.730000px;}
.y180{bottom:156.270000px;}
.y8f{bottom:156.450000px;}
.yef{bottom:157.530000px;}
.y141{bottom:159.150000px;}
.y116{bottom:160.770000px;}
.yb8{bottom:162.570000px;}
.y143{bottom:165.990000px;}
.yd1{bottom:166.170000px;}
.y122{bottom:166.890000px;}
.y157{bottom:167.790000px;}
.y124{bottom:169.410000px;}
.y104{bottom:169.590000px;}
.y115{bottom:171.210000px;}
.y13c{bottom:171.930000px;}
.yc7{bottom:173.010000px;}
.y92{bottom:176.430000px;}
.y6f{bottom:178.230000px;}
.y5a{bottom:179.490000px;}
.yf1{bottom:179.850000px;}
.yee{bottom:181.470000px;}
.y17c{bottom:181.650000px;}
.y18c{bottom:182.190000px;}
.y15c{bottom:182.370000px;}
.yc6{bottom:183.270000px;}
.y156{bottom:185.070000px;}
.yb7{bottom:186.690000px;}
.y103{bottom:186.870000px;}
.y8e{bottom:187.410000px;}
.y91{bottom:187.590000px;}
.y114{bottom:188.490000px;}
.yd0{bottom:190.110000px;}
.ye2{bottom:190.290000px;}
.yed{bottom:191.910000px;}
.y9a{bottom:193.710000px;}
.y170{bottom:195.330000px;}
.ye9{bottom:197.130000px;}
.y121{bottom:197.670000px;}
.yb6{bottom:197.850000px;}
.y17b{bottom:198.930000px;}
.ycf{bottom:200.550000px;}
.y6e{bottom:202.170000px;}
.y150{bottom:202.350000px;}
.y13b{bottom:202.890000px;}
.yf0{bottom:203.970000px;}
.y113{bottom:205.770000px;}
.yc5{bottom:207.390000px;}
.ye1{bottom:207.570000px;}
.yec{bottom:209.190000px;}
.y99{bottom:210.990000px;}
.y59{bottom:213.150000px;}
.y6d{bottom:213.330000px;}
.ye8{bottom:214.410000px;}
.y17a{bottom:216.030000px;}
.yc4{bottom:217.830000px;}
.y8d{bottom:218.370000px;}
.y13f{bottom:218.550000px;}
.y14f{bottom:219.630000px;}
.y102{bottom:221.250000px;}
.y112{bottom:223.050000px;}
.yce{bottom:224.670000px;}
.y155{bottom:226.470000px;}
.y16b{bottom:228.270000px;}
.yb5{bottom:228.810000px;}
.y6c{bottom:228.990000px;}
.y129{bottom:231.510000px;}
.y172{bottom:231.690000px;}
.yeb{bottom:233.310000px;}
.y13a{bottom:233.850000px;}
.y98{bottom:235.110000px;}
.y154{bottom:236.730000px;}
.ye7{bottom:238.530000px;}
.y179{bottom:240.150000px;}
.y111{bottom:240.330000px;}
.yc3{bottom:241.950000px;}
.y14e{bottom:243.570000px;}
.y58{bottom:244.290000px;}
.yea{bottom:244.470000px;}
.y97{bottom:245.370000px;}
.y3c{bottom:246.810000px;}
.ye0{bottom:248.790000px;}
.y8c{bottom:249.510000px;}
.ye6{bottom:249.690000px;}
.y178{bottom:250.590000px;}
.y181{bottom:252.210000px;}
.yc2{bottom:252.390000px;}
.y153{bottom:254.010000px;}
.y101{bottom:255.810000px;}
.y110{bottom:257.430000px;}
.ydf{bottom:259.230000px;}
.y6b{bottom:259.770000px;}
.y14d{bottom:260.850000px;}
.y16a{bottom:262.650000px;}
.y1b{bottom:263.370000px;}
.y16f{bottom:264.270000px;}
.y139{bottom:264.990000px;}
.y3b{bottom:267.510000px;}
.y177{bottom:267.870000px;}
.y96{bottom:269.490000px;}
.y14c{bottom:271.290000px;}
.y100{bottom:273.135000px;}
.y10f{bottom:274.755000px;}
.y57{bottom:275.295000px;}
.y16e{bottom:275.475000px;}
.yc1{bottom:276.375000px;}
.yde{bottom:276.555000px;}
.y169{bottom:279.975000px;}
.y8b{bottom:280.515000px;}
.y95{bottom:280.695000px;}
.y128{bottom:283.395000px;}
.yc0{bottom:286.815000px;}
.y14b{bottom:288.615000px;}
.yb4{bottom:290.955000px;}
.y10e{bottom:292.035000px;}
.y6a{bottom:292.935000px;}
.ydd{bottom:293.835000px;}
.y152{bottom:295.455000px;}
.y138{bottom:295.995000px;}
.yff{bottom:297.075000px;}
.y168{bottom:297.255000px;}
.y127{bottom:300.675000px;}
.y1a{bottom:302.115000px;}
.y176{bottom:302.475000px;}
.y160{bottom:304.095000px;}
.y3a{bottom:305.895000px;}
.y56{bottom:306.435000px;}
.y14a{bottom:306.615000px;}
.ybf{bottom:310.935000px;}
.y147{bottom:311.295000px;}
.y8a{bottom:311.655000px;}
.y126{bottom:311.835000px;}
.yfe{bottom:314.355000px;}
.y167{bottom:314.535000px;}
.y10d{bottom:316.155000px;}
.ycd{bottom:321.375000px;}
.yb3{bottom:321.915000px;}
.ybe{bottom:322.095000px;}
.yfd{bottom:324.795000px;}
.y175{bottom:326.415000px;}
.y10c{bottom:326.595000px;}
.y69{bottom:327.135000px;}
.ydc{bottom:328.215000px;}
.y166{bottom:331.635000px;}
.y146{bottom:335.055000px;}
.y55{bottom:337.395000px;}
.y174{bottom:337.575000px;}
.y183{bottom:338.475000px;}
.ycc{bottom:338.655000px;}
.y19{bottom:340.995000px;}
.yfc{bottom:342.075000px;}
.yd4{bottom:342.255000px;}
.y89{bottom:342.615000px;}
.y39{bottom:344.775000px;}
.ydb{bottom:345.495000px;}
.y182{bottom:348.915000px;}
.y10b{bottom:350.715000px;}
.y145{bottom:352.335000px;}
.yb2{bottom:353.055000px;}
.y165{bottom:355.755000px;}
.y68{bottom:358.095000px;}
.yfb{bottom:359.355000px;}
.y10a{bottom:360.975000px;}
.ycb{bottom:362.775000px;}
.y17f{bottom:366.195000px;}
.y54{bottom:368.535000px;}
.y164{bottom:373.035000px;}
.y88{bottom:373.755000px;}
.yca{bottom:373.935000px;}
.y109{bottom:378.255000px;}
.y18{bottom:379.875000px;}
.y11a{bottom:380.055000px;}
.yfa{bottom:383.475000px;}
.y38{bottom:383.835000px;}
.yb1{bottom:384.015000px;}
.yda{bottom:386.895000px;}
.y67{bottom:389.235000px;}
.y17e{bottom:390.315000px;}
.yf9{bottom:394.635000px;}
.yd9{bottom:397.335000px;}
.y53{bottom:399.495000px;}
.y163{bottom:400.755000px;}
.y108{bottom:402.375000px;}
.y144{bottom:404.175000px;}
.y87{bottom:404.715000px;}
.y119{bottom:414.435000px;}
.yb0{bottom:415.155000px;}
.y17{bottom:418.575000px;}
.y107{bottom:419.655000px;}
.y66{bottom:420.195000px;}
.yd8{bottom:421.275000px;}
.y37{bottom:422.715000px;}
.y162{bottom:424.875000px;}
.yf8{bottom:425.415000px;}
.y52{bottom:430.635000px;}
.y106{bottom:430.815000px;}
.yd7{bottom:431.715000px;}
.y15b{bottom:432.795000px;}
.y86{bottom:435.855000px;}
.y161{bottom:436.035000px;}
.y16{bottom:439.815000px;}
.yaf{bottom:446.115000px;}
.y65{bottom:451.335000px;}
.y36{bottom:454.215000px;}
.yd6{bottom:455.835000px;}
.yf7{bottom:456.555000px;}
.y15{bottom:460.515000px;}
.y51{bottom:461.595000px;}
.y85{bottom:466.815000px;}
.yd5{bottom:466.995000px;}
.yae{bottom:477.255000px;}
.ybd{bottom:479.595000px;}
.y14{bottom:481.215000px;}
.y64{bottom:482.295000px;}
.yf6{bottom:487.515000px;}
.y35{bottom:492.735000px;}
.y190{bottom:493.815000px;}
.y118{bottom:497.595000px;}
.y84{bottom:497.955000px;}
.yad{bottom:508.215000px;}
.y18f{bottom:511.095000px;}
.y63{bottom:513.435000px;}
.ybc{bottom:515.955000px;}
.yf5{bottom:518.655000px;}
.y13{bottom:522.615000px;}
.y50{bottom:523.695000px;}
.y34{bottom:524.235000px;}
.y151{bottom:525.855000px;}
.y83{bottom:528.915000px;}
.y18e{bottom:529.095000px;}
.yac{bottom:539.355000px;}
.y62{bottom:544.395000px;}
.ybb{bottom:549.615000px;}
.y4f{bottom:554.835000px;}
.y33{bottom:555.585000px;}
.y82{bottom:560.085000px;}
.y12{bottom:564.045000px;}
.yab{bottom:570.345000px;}
.y61{bottom:575.565000px;}
.yf4{bottom:582.765000px;}
.yba{bottom:583.125000px;}
.y11{bottom:585.285000px;}
.y4e{bottom:585.825000px;}
.y81{bottom:591.045000px;}
.y32{bottom:594.285000px;}
.yaa{bottom:601.305000px;}
.y60{bottom:606.525000px;}
.y10{bottom:611.925000px;}
.y4d{bottom:616.965000px;}
.yb9{bottom:618.945000px;}
.y80{bottom:622.005000px;}
.ya9{bottom:632.445000px;}
.y31{bottom:632.625000px;}
.y137{bottom:637.665000px;}
.y5f{bottom:639.645000px;}
.y4c{bottom:647.925000px;}
.y105{bottom:650.085000px;}
.y7f{bottom:653.145000px;}
.ya8{bottom:663.405000px;}
.y30{bottom:664.485000px;}
.y136{bottom:668.625000px;}
.y5e{bottom:673.845000px;}
.y4b{bottom:679.065000px;}
.y7e{bottom:684.105000px;}
.ya7{bottom:694.545000px;}
.y2f{bottom:695.805000px;}
.y135{bottom:699.765000px;}
.yf{bottom:700.485000px;}
.y5d{bottom:704.805000px;}
.y4a{bottom:710.025000px;}
.y149{bottom:712.185000px;}
.y7d{bottom:715.245000px;}
.ye{bottom:721.185000px;}
.ya6{bottom:725.505000px;}
.y2e{bottom:727.125000px;}
.y134{bottom:730.725000px;}
.y5c{bottom:738.105000px;}
.y49{bottom:741.165000px;}
.yd{bottom:741.885000px;}
.ye5{bottom:745.845000px;}
.y7c{bottom:746.205000px;}
.y18b{bottom:748.365000px;}
.ya5{bottom:756.645000px;}
.y2d{bottom:758.445000px;}
.y133{bottom:761.865000px;}
.yc{bottom:764.565000px;}
.y18a{bottom:766.365000px;}
.y48{bottom:772.125000px;}
.y12c{bottom:773.205000px;}
.y7b{bottom:777.345000px;}
.y189{bottom:783.645000px;}
.y12b{bottom:784.365000px;}
.ya4{bottom:787.605000px;}
.y2c{bottom:789.765000px;}
.y132{bottom:792.825000px;}
.yb{bottom:799.125000px;}
.y188{bottom:800.925000px;}
.y47{bottom:803.265000px;}
.y12a{bottom:805.245000px;}
.y7a{bottom:808.305000px;}
.ya3{bottom:818.745000px;}
.y2b{bottom:821.085000px;}
.y131{bottom:823.965000px;}
.y187{bottom:825.045000px;}
.ya{bottom:833.685000px;}
.y46{bottom:834.225000px;}
.y186{bottom:835.485000px;}
.y79{bottom:839.490000px;}
.ya2{bottom:849.750000px;}
.y130{bottom:854.970000px;}
.y2a{bottom:859.290000px;}
.y185{bottom:859.470000px;}
.y45{bottom:865.410000px;}
.y9{bottom:868.110000px;}
.y78{bottom:870.450000px;}
.y184{bottom:870.630000px;}
.ya1{bottom:880.890000px;}
.y29{bottom:883.050000px;}
.y12f{bottom:888.450000px;}
.y44{bottom:896.370000px;}
.y77{bottom:901.590000px;}
.ya0{bottom:911.850000px;}
.y120{bottom:914.370000px;}
.y28{bottom:921.930000px;}
.y12e{bottom:922.290000px;}
.y43{bottom:927.510000px;}
.y76{bottom:932.550000px;}
.y8{bottom:935.070000px;}
.y9f{bottom:942.990000px;}
.y11f{bottom:950.550000px;}
.y12d{bottom:953.250000px;}
.y7{bottom:955.770000px;}
.y42{bottom:958.470000px;}
.y27{bottom:960.810000px;}
.y75{bottom:963.690000px;}
.y9e{bottom:973.950000px;}
.y6{bottom:976.470000px;}
.y11e{bottom:984.390000px;}
.y41{bottom:989.610000px;}
.y173{bottom:991.590000px;}
.y74{bottom:994.650000px;}
.y5{bottom:997.170000px;}
.y26{bottom:999.510000px;}
.y9d{bottom:1007.250000px;}
.y11d{bottom:1015.350000px;}
.y4{bottom:1017.870000px;}
.y40{bottom:1020.570000px;}
.y73{bottom:1025.790000px;}
.y25{bottom:1038.390000px;}
.y3{bottom:1038.570000px;}
.y9c{bottom:1043.790000px;}
.y11c{bottom:1046.490000px;}
.y3f{bottom:1051.710000px;}
.y72{bottom:1056.750000px;}
.y2{bottom:1059.270000px;}
.y9b{bottom:1079.610000px;}
.y11b{bottom:1079.970000px;}
.y3e{bottom:1082.670000px;}
.y1{bottom:1082.850000px;}
.y71{bottom:1087.890000px;}
.y24{bottom:1098.330000px;}
.y3d{bottom:1115.790000px;}
.y142{bottom:1118.490000px;}
.y23{bottom:1118.670000px;}
.y70{bottom:1118.850000px;}
.y1d{bottom:1175.760000px;}
.y1c{bottom:1194.840000px;}
.h9{height:20.160000px;}
.hf{height:38.158594px;}
.h1a{height:40.764023px;}
.ha{height:45.184219px;}
.h16{height:53.573906px;}
.h14{height:55.316953px;}
.h8{height:58.621992px;}
.h10{height:58.651172px;}
.h17{height:60.226875px;}
.hc{height:64.546875px;}
.h6{height:64.978594px;}
.h7{height:65.010937px;}
.h1b{height:65.518594px;}
.he{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h12{height:75.519844px;}
.h11{height:80.441367px;}
.hd{height:80.464922px;}
.h15{height:80.584922px;}
.h19{height:81.736875px;}
.h4{height:82.676953px;}
.hb{height:84.898125px;}
.h13{height:91.851680px;}
.h18{height:91.878047px;}
.h3{height:121.179375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.720000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.416000px;}
.x16{left:127.656000px;}
.x3{left:137.196000px;}
.xd{left:155.910000px;}
.xc{left:159.510000px;}
.x6{left:195.150000px;}
.xe{left:212.610000px;}
.x4{left:262.650000px;}
.x11{left:265.710000px;}
.x7{left:296.175000px;}
.x10{left:318.855000px;}
.x14{left:329.655000px;}
.x13{left:351.075000px;}
.x8{left:371.955000px;}
.x15{left:404.175000px;}
.x9{left:423.795000px;}
.x2{left:446.475000px;}
.x5{left:558.105000px;}
.xa{left:759.750000px;}
.x12{left:770.010000px;}
.xb{left:777.030000px;}
.xf{left:778.470000px;}
@media print{
.v1{vertical-align:-113.920000pt;}
.v2{vertical-align:-95.360000pt;}
.v4{vertical-align:-75.520000pt;}
.v3{vertical-align:-67.200000pt;}
.v8{vertical-align:-29.440000pt;}
.v6{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:24.320000pt;}
.v5{vertical-align:29.440000pt;}
.v7{vertical-align:34.560000pt;}
.ls32{letter-spacing:-0.896000pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.608000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls48{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.303467pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.183467pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.024960pt;}
.ls36{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.094720pt;}
.ls2d{letter-spacing:0.094933pt;}
.ls23{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.230933pt;}
.ls2e{letter-spacing:0.254720pt;}
.ls39{letter-spacing:0.265600pt;}
.ls35{letter-spacing:0.311467pt;}
.ls11{letter-spacing:0.311680pt;}
.ls9{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.336533pt;}
.ls13{letter-spacing:0.336640pt;}
.lsb{letter-spacing:0.384000pt;}
.ls31{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.456533pt;}
.ls34{letter-spacing:0.544000pt;}
.ls3d{letter-spacing:0.608000pt;}
.lse{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.800000pt;}
.ls49{letter-spacing:0.821333pt;}
.ls4a{letter-spacing:0.960000pt;}
.ls44{letter-spacing:1.120000pt;}
.ls47{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.440000pt;}
.ls41{letter-spacing:1.920000pt;}
.ls3c{letter-spacing:2.720000pt;}
.ls3b{letter-spacing:3.200000pt;}
.ls29{letter-spacing:3.680000pt;}
.ls16{letter-spacing:3.840000pt;}
.ls2a{letter-spacing:4.320000pt;}
.ls4b{letter-spacing:4.480000pt;}
.ls4c{letter-spacing:5.120000pt;}
.ls37{letter-spacing:5.280000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.240000pt;}
.ls42{letter-spacing:6.400000pt;}
.lsd{letter-spacing:6.560000pt;}
.ls2f{letter-spacing:7.200000pt;}
.ls2c{letter-spacing:8.480000pt;}
.ls3f{letter-spacing:9.120000pt;}
.ls27{letter-spacing:9.600000pt;}
.ls26{letter-spacing:10.240000pt;}
.ls1c{letter-spacing:10.400000pt;}
.ls3e{letter-spacing:10.880000pt;}
.ls3a{letter-spacing:13.440000pt;}
.ls21{letter-spacing:13.920000pt;}
.ls43{letter-spacing:14.240000pt;}
.ls19{letter-spacing:17.280000pt;}
.ls46{letter-spacing:18.080000pt;}
.ls45{letter-spacing:19.040000pt;}
.ls4e{letter-spacing:21.120000pt;}
.ls4d{letter-spacing:23.040000pt;}
.ls10{letter-spacing:63.360000pt;}
.ls15{letter-spacing:63.466667pt;}
.ls14{letter-spacing:63.520000pt;}
.ls3{letter-spacing:172.778667pt;}
.ls1{letter-spacing:657.418667pt;}
.ls33{letter-spacing:752.138667pt;}
.ls0{letter-spacing:1193.098667pt;}
.ws8{word-spacing:-19.056533pt;}
.ws12{word-spacing:-19.031467pt;}
.ws7{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.416533pt;}
.wse{word-spacing:-16.384000pt;}
.ws16{word-spacing:-16.192000pt;}
.ws14{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsa{word-spacing:-13.736533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.096533pt;}
.wsd{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.400000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-14.837333pt;}
._2a{margin-left:-13.034667pt;}
._9{margin-left:-10.656000pt;}
._a{margin-left:-8.709333pt;}
._8{margin-left:-7.453653pt;}
._6{margin-left:-6.384000pt;}
._3{margin-left:-5.269333pt;}
._4{margin-left:-3.520000pt;}
._1a{margin-left:-2.086400pt;}
._0{margin-left:-1.175680pt;}
._1{width:1.191680pt;}
._f{width:2.368000pt;}
._e{width:3.880320pt;}
._d{width:4.823680pt;}
._5{width:5.824000pt;}
._17{width:7.038720pt;}
._14{width:8.448000pt;}
._c{width:10.048000pt;}
._15{width:11.120000pt;}
._21{width:12.048640pt;}
._16{width:13.015680pt;}
._19{width:14.039680pt;}
._18{width:14.976000pt;}
._34{width:16.194347pt;}
._13{width:17.112320pt;}
._22{width:18.040747pt;}
._1e{width:19.520000pt;}
._1f{width:20.544000pt;}
._32{width:21.824000pt;}
._20{width:22.912000pt;}
._26{width:24.128000pt;}
._12{width:25.472000pt;}
._10{width:26.368000pt;}
._11{width:27.648000pt;}
._1d{width:28.695680pt;}
._1c{width:29.696000pt;}
._25{width:30.871680pt;}
._2b{width:32.640000pt;}
._23{width:34.112000pt;}
._1b{width:35.712000pt;}
._36{width:36.656000pt;}
._27{width:37.696000pt;}
._3b{width:39.682347pt;}
._30{width:40.872320pt;}
._2f{width:42.135680pt;}
._2c{width:50.752000pt;}
._2d{width:51.712000pt;}
._2e{width:53.930667pt;}
._35{width:54.887040pt;}
._39{width:59.392000pt;}
._3a{width:81.216000pt;}
._3c{width:97.258667pt;}
._28{width:99.072000pt;}
._29{width:100.085333pt;}
._33{width:124.778667pt;}
._38{width:140.778667pt;}
._24{width:156.778667pt;}
._37{width:170.058667pt;}
._31{width:172.778667pt;}
._b{width:752.138667pt;}
._2{width:2389.525333pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:4.160000pt;}
.y20{bottom:50.432000pt;}
.y1f{bottom:65.792000pt;}
.y5b{bottom:66.592000pt;}
.y21{bottom:76.672000pt;}
.y1e{bottom:81.472000pt;}
.yf3{bottom:98.592000pt;}
.y15f{bottom:100.032000pt;}
.y140{bottom:100.992000pt;}
.yd3{bottom:101.632000pt;}
.y13e{bottom:106.272000pt;}
.y191{bottom:106.752000pt;}
.y123{bottom:107.712000pt;}
.y15a{bottom:109.312000pt;}
.y16d{bottom:110.912000pt;}
.y192{bottom:111.392000pt;}
.ye4{bottom:113.792000pt;}
.yf2{bottom:113.952000pt;}
.y17d{bottom:115.392000pt;}
.yc9{bottom:116.992000pt;}
.y148{bottom:120.032000pt;}
.y15e{bottom:121.472000pt;}
.y117{bottom:121.632000pt;}
.ye3{bottom:123.072000pt;}
.y159{bottom:124.512000pt;}
.y94{bottom:126.112000pt;}
.y13d{bottom:127.712000pt;}
.y90{bottom:129.152000pt;}
.y125{bottom:129.312000pt;}
.y15d{bottom:130.752000pt;}
.y16c{bottom:132.192000pt;}
.yc8{bottom:132.352000pt;}
.y158{bottom:133.786667pt;}
.y18d{bottom:134.266667pt;}
.y93{bottom:135.386667pt;}
.y171{bottom:136.826667pt;}
.yd2{bottom:138.426667pt;}
.y180{bottom:138.906667pt;}
.y8f{bottom:139.066667pt;}
.yef{bottom:140.026667pt;}
.y141{bottom:141.466667pt;}
.y116{bottom:142.906667pt;}
.yb8{bottom:144.506667pt;}
.y143{bottom:147.546667pt;}
.yd1{bottom:147.706667pt;}
.y122{bottom:148.346667pt;}
.y157{bottom:149.146667pt;}
.y124{bottom:150.586667pt;}
.y104{bottom:150.746667pt;}
.y115{bottom:152.186667pt;}
.y13c{bottom:152.826667pt;}
.yc7{bottom:153.786667pt;}
.y92{bottom:156.826667pt;}
.y6f{bottom:158.426667pt;}
.y5a{bottom:159.546667pt;}
.yf1{bottom:159.866667pt;}
.yee{bottom:161.306667pt;}
.y17c{bottom:161.466667pt;}
.y18c{bottom:161.946667pt;}
.y15c{bottom:162.106667pt;}
.yc6{bottom:162.906667pt;}
.y156{bottom:164.506667pt;}
.yb7{bottom:165.946667pt;}
.y103{bottom:166.106667pt;}
.y8e{bottom:166.586667pt;}
.y91{bottom:166.746667pt;}
.y114{bottom:167.546667pt;}
.yd0{bottom:168.986667pt;}
.ye2{bottom:169.146667pt;}
.yed{bottom:170.586667pt;}
.y9a{bottom:172.186667pt;}
.y170{bottom:173.626667pt;}
.ye9{bottom:175.226667pt;}
.y121{bottom:175.706667pt;}
.yb6{bottom:175.866667pt;}
.y17b{bottom:176.826667pt;}
.ycf{bottom:178.266667pt;}
.y6e{bottom:179.706667pt;}
.y150{bottom:179.866667pt;}
.y13b{bottom:180.346667pt;}
.yf0{bottom:181.306667pt;}
.y113{bottom:182.906667pt;}
.yc5{bottom:184.346667pt;}
.ye1{bottom:184.506667pt;}
.yec{bottom:185.946667pt;}
.y99{bottom:187.546667pt;}
.y59{bottom:189.466667pt;}
.y6d{bottom:189.626667pt;}
.ye8{bottom:190.586667pt;}
.y17a{bottom:192.026667pt;}
.yc4{bottom:193.626667pt;}
.y8d{bottom:194.106667pt;}
.y13f{bottom:194.266667pt;}
.y14f{bottom:195.226667pt;}
.y102{bottom:196.666667pt;}
.y112{bottom:198.266667pt;}
.yce{bottom:199.706667pt;}
.y155{bottom:201.306667pt;}
.y16b{bottom:202.906667pt;}
.yb5{bottom:203.386667pt;}
.y6c{bottom:203.546667pt;}
.y129{bottom:205.786667pt;}
.y172{bottom:205.946667pt;}
.yeb{bottom:207.386667pt;}
.y13a{bottom:207.866667pt;}
.y98{bottom:208.986667pt;}
.y154{bottom:210.426667pt;}
.ye7{bottom:212.026667pt;}
.y179{bottom:213.466667pt;}
.y111{bottom:213.626667pt;}
.yc3{bottom:215.066667pt;}
.y14e{bottom:216.506667pt;}
.y58{bottom:217.146667pt;}
.yea{bottom:217.306667pt;}
.y97{bottom:218.106667pt;}
.y3c{bottom:219.386667pt;}
.ye0{bottom:221.146667pt;}
.y8c{bottom:221.786667pt;}
.ye6{bottom:221.946667pt;}
.y178{bottom:222.746667pt;}
.y181{bottom:224.186667pt;}
.yc2{bottom:224.346667pt;}
.y153{bottom:225.786667pt;}
.y101{bottom:227.386667pt;}
.y110{bottom:228.826667pt;}
.ydf{bottom:230.426667pt;}
.y6b{bottom:230.906667pt;}
.y14d{bottom:231.866667pt;}
.y16a{bottom:233.466667pt;}
.y1b{bottom:234.106667pt;}
.y16f{bottom:234.906667pt;}
.y139{bottom:235.546667pt;}
.y3b{bottom:237.786667pt;}
.y177{bottom:238.106667pt;}
.y96{bottom:239.546667pt;}
.y14c{bottom:241.146667pt;}
.y100{bottom:242.786667pt;}
.y10f{bottom:244.226667pt;}
.y57{bottom:244.706667pt;}
.y16e{bottom:244.866667pt;}
.yc1{bottom:245.666667pt;}
.yde{bottom:245.826667pt;}
.y169{bottom:248.866667pt;}
.y8b{bottom:249.346667pt;}
.y95{bottom:249.506667pt;}
.y128{bottom:251.906667pt;}
.yc0{bottom:254.946667pt;}
.y14b{bottom:256.546667pt;}
.yb4{bottom:258.626667pt;}
.y10e{bottom:259.586667pt;}
.y6a{bottom:260.386667pt;}
.ydd{bottom:261.186667pt;}
.y152{bottom:262.626667pt;}
.y138{bottom:263.106667pt;}
.yff{bottom:264.066667pt;}
.y168{bottom:264.226667pt;}
.y127{bottom:267.266667pt;}
.y1a{bottom:268.546667pt;}
.y176{bottom:268.866667pt;}
.y160{bottom:270.306667pt;}
.y3a{bottom:271.906667pt;}
.y56{bottom:272.386667pt;}
.y14a{bottom:272.546667pt;}
.ybf{bottom:276.386667pt;}
.y147{bottom:276.706667pt;}
.y8a{bottom:277.026667pt;}
.y126{bottom:277.186667pt;}
.yfe{bottom:279.426667pt;}
.y167{bottom:279.586667pt;}
.y10d{bottom:281.026667pt;}
.ycd{bottom:285.666667pt;}
.yb3{bottom:286.146667pt;}
.ybe{bottom:286.306667pt;}
.yfd{bottom:288.706667pt;}
.y175{bottom:290.146667pt;}
.y10c{bottom:290.306667pt;}
.y69{bottom:290.786667pt;}
.ydc{bottom:291.746667pt;}
.y166{bottom:294.786667pt;}
.y146{bottom:297.826667pt;}
.y55{bottom:299.906667pt;}
.y174{bottom:300.066667pt;}
.y183{bottom:300.866667pt;}
.ycc{bottom:301.026667pt;}
.y19{bottom:303.106667pt;}
.yfc{bottom:304.066667pt;}
.yd4{bottom:304.226667pt;}
.y89{bottom:304.546667pt;}
.y39{bottom:306.466667pt;}
.ydb{bottom:307.106667pt;}
.y182{bottom:310.146667pt;}
.y10b{bottom:311.746667pt;}
.y145{bottom:313.186667pt;}
.yb2{bottom:313.826667pt;}
.y165{bottom:316.226667pt;}
.y68{bottom:318.306667pt;}
.yfb{bottom:319.426667pt;}
.y10a{bottom:320.866667pt;}
.ycb{bottom:322.466667pt;}
.y17f{bottom:325.506667pt;}
.y54{bottom:327.586667pt;}
.y164{bottom:331.586667pt;}
.y88{bottom:332.226667pt;}
.yca{bottom:332.386667pt;}
.y109{bottom:336.226667pt;}
.y18{bottom:337.666667pt;}
.y11a{bottom:337.826667pt;}
.yfa{bottom:340.866667pt;}
.y38{bottom:341.186667pt;}
.yb1{bottom:341.346667pt;}
.yda{bottom:343.906667pt;}
.y67{bottom:345.986667pt;}
.y17e{bottom:346.946667pt;}
.yf9{bottom:350.786667pt;}
.yd9{bottom:353.186667pt;}
.y53{bottom:355.106667pt;}
.y163{bottom:356.226667pt;}
.y108{bottom:357.666667pt;}
.y144{bottom:359.266667pt;}
.y87{bottom:359.746667pt;}
.y119{bottom:368.386667pt;}
.yb0{bottom:369.026667pt;}
.y17{bottom:372.066667pt;}
.y107{bottom:373.026667pt;}
.y66{bottom:373.506667pt;}
.yd8{bottom:374.466667pt;}
.y37{bottom:375.746667pt;}
.y162{bottom:377.666667pt;}
.yf8{bottom:378.146667pt;}
.y52{bottom:382.786667pt;}
.y106{bottom:382.946667pt;}
.yd7{bottom:383.746667pt;}
.y15b{bottom:384.706667pt;}
.y86{bottom:387.426667pt;}
.y161{bottom:387.586667pt;}
.y16{bottom:390.946667pt;}
.yaf{bottom:396.546667pt;}
.y65{bottom:401.186667pt;}
.y36{bottom:403.746667pt;}
.yd6{bottom:405.186667pt;}
.yf7{bottom:405.826667pt;}
.y15{bottom:409.346667pt;}
.y51{bottom:410.306667pt;}
.y85{bottom:414.946667pt;}
.yd5{bottom:415.106667pt;}
.yae{bottom:424.226667pt;}
.ybd{bottom:426.306667pt;}
.y14{bottom:427.746667pt;}
.y64{bottom:428.706667pt;}
.yf6{bottom:433.346667pt;}
.y35{bottom:437.986667pt;}
.y190{bottom:438.946667pt;}
.y118{bottom:442.306667pt;}
.y84{bottom:442.626667pt;}
.yad{bottom:451.746667pt;}
.y18f{bottom:454.306667pt;}
.y63{bottom:456.386667pt;}
.ybc{bottom:458.626667pt;}
.yf5{bottom:461.026667pt;}
.y13{bottom:464.546667pt;}
.y50{bottom:465.506667pt;}
.y34{bottom:465.986667pt;}
.y151{bottom:467.426667pt;}
.y83{bottom:470.146667pt;}
.y18e{bottom:470.306667pt;}
.yac{bottom:479.426667pt;}
.y62{bottom:483.906667pt;}
.ybb{bottom:488.546667pt;}
.y4f{bottom:493.186667pt;}
.y33{bottom:493.853333pt;}
.y82{bottom:497.853333pt;}
.y12{bottom:501.373333pt;}
.yab{bottom:506.973333pt;}
.y61{bottom:511.613333pt;}
.yf4{bottom:518.013333pt;}
.yba{bottom:518.333333pt;}
.y11{bottom:520.253333pt;}
.y4e{bottom:520.733333pt;}
.y81{bottom:525.373333pt;}
.y32{bottom:528.253333pt;}
.yaa{bottom:534.493333pt;}
.y60{bottom:539.133333pt;}
.y10{bottom:543.933333pt;}
.y4d{bottom:548.413333pt;}
.yb9{bottom:550.173333pt;}
.y80{bottom:552.893333pt;}
.ya9{bottom:562.173333pt;}
.y31{bottom:562.333333pt;}
.y137{bottom:566.813333pt;}
.y5f{bottom:568.573333pt;}
.y4c{bottom:575.933333pt;}
.y105{bottom:577.853333pt;}
.y7f{bottom:580.573333pt;}
.ya8{bottom:589.693333pt;}
.y30{bottom:590.653333pt;}
.y136{bottom:594.333333pt;}
.y5e{bottom:598.973333pt;}
.y4b{bottom:603.613333pt;}
.y7e{bottom:608.093333pt;}
.ya7{bottom:617.373333pt;}
.y2f{bottom:618.493333pt;}
.y135{bottom:622.013333pt;}
.yf{bottom:622.653333pt;}
.y5d{bottom:626.493333pt;}
.y4a{bottom:631.133333pt;}
.y149{bottom:633.053333pt;}
.y7d{bottom:635.773333pt;}
.ye{bottom:641.053333pt;}
.ya6{bottom:644.893333pt;}
.y2e{bottom:646.333333pt;}
.y134{bottom:649.533333pt;}
.y5c{bottom:656.093333pt;}
.y49{bottom:658.813333pt;}
.yd{bottom:659.453333pt;}
.ye5{bottom:662.973333pt;}
.y7c{bottom:663.293333pt;}
.y18b{bottom:665.213333pt;}
.ya5{bottom:672.573333pt;}
.y2d{bottom:674.173333pt;}
.y133{bottom:677.213333pt;}
.yc{bottom:679.613333pt;}
.y18a{bottom:681.213333pt;}
.y48{bottom:686.333333pt;}
.y12c{bottom:687.293333pt;}
.y7b{bottom:690.973333pt;}
.y189{bottom:696.573333pt;}
.y12b{bottom:697.213333pt;}
.ya4{bottom:700.093333pt;}
.y2c{bottom:702.013333pt;}
.y132{bottom:704.733333pt;}
.yb{bottom:710.333333pt;}
.y188{bottom:711.933333pt;}
.y47{bottom:714.013333pt;}
.y12a{bottom:715.773333pt;}
.y7a{bottom:718.493333pt;}
.ya3{bottom:727.773333pt;}
.y2b{bottom:729.853333pt;}
.y131{bottom:732.413333pt;}
.y187{bottom:733.373333pt;}
.ya{bottom:741.053333pt;}
.y46{bottom:741.533333pt;}
.y186{bottom:742.653333pt;}
.y79{bottom:746.213333pt;}
.ya2{bottom:755.333333pt;}
.y130{bottom:759.973333pt;}
.y2a{bottom:763.813333pt;}
.y185{bottom:763.973333pt;}
.y45{bottom:769.253333pt;}
.y9{bottom:771.653333pt;}
.y78{bottom:773.733333pt;}
.y184{bottom:773.893333pt;}
.ya1{bottom:783.013333pt;}
.y29{bottom:784.933333pt;}
.y12f{bottom:789.733333pt;}
.y44{bottom:796.773333pt;}
.y77{bottom:801.413333pt;}
.ya0{bottom:810.533333pt;}
.y120{bottom:812.773333pt;}
.y28{bottom:819.493333pt;}
.y12e{bottom:819.813333pt;}
.y43{bottom:824.453333pt;}
.y76{bottom:828.933333pt;}
.y8{bottom:831.173333pt;}
.y9f{bottom:838.213333pt;}
.y11f{bottom:844.933333pt;}
.y12d{bottom:847.333333pt;}
.y7{bottom:849.573333pt;}
.y42{bottom:851.973333pt;}
.y27{bottom:854.053333pt;}
.y75{bottom:856.613333pt;}
.y9e{bottom:865.733333pt;}
.y6{bottom:867.973333pt;}
.y11e{bottom:875.013333pt;}
.y41{bottom:879.653333pt;}
.y173{bottom:881.413333pt;}
.y74{bottom:884.133333pt;}
.y5{bottom:886.373333pt;}
.y26{bottom:888.453333pt;}
.y9d{bottom:895.333333pt;}
.y11d{bottom:902.533333pt;}
.y4{bottom:904.773333pt;}
.y40{bottom:907.173333pt;}
.y73{bottom:911.813333pt;}
.y25{bottom:923.013333pt;}
.y3{bottom:923.173333pt;}
.y9c{bottom:927.813333pt;}
.y11c{bottom:930.213333pt;}
.y3f{bottom:934.853333pt;}
.y72{bottom:939.333333pt;}
.y2{bottom:941.573333pt;}
.y9b{bottom:959.653333pt;}
.y11b{bottom:959.973333pt;}
.y3e{bottom:962.373333pt;}
.y1{bottom:962.533333pt;}
.y71{bottom:967.013333pt;}
.y24{bottom:976.293333pt;}
.y3d{bottom:991.813333pt;}
.y142{bottom:994.213333pt;}
.y23{bottom:994.373333pt;}
.y70{bottom:994.533333pt;}
.y1d{bottom:1045.120000pt;}
.y1c{bottom:1062.080000pt;}
.h9{height:17.920000pt;}
.hf{height:33.918750pt;}
.h1a{height:36.234687pt;}
.ha{height:40.163750pt;}
.h16{height:47.621250pt;}
.h14{height:49.170625pt;}
.h8{height:52.108438pt;}
.h10{height:52.134375pt;}
.h17{height:53.535000pt;}
.hc{height:57.375000pt;}
.h6{height:57.758750pt;}
.h7{height:57.787500pt;}
.h1b{height:58.238750pt;}
.he{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h12{height:67.128750pt;}
.h11{height:71.503438pt;}
.hd{height:71.524375pt;}
.h15{height:71.631042pt;}
.h19{height:72.655000pt;}
.h4{height:73.490625pt;}
.hb{height:75.465000pt;}
.h13{height:81.645938pt;}
.h18{height:81.669375pt;}
.h3{height:107.715000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.592000pt;}
.x16{left:113.472000pt;}
.x3{left:121.952000pt;}
.xd{left:138.586667pt;}
.xc{left:141.786667pt;}
.x6{left:173.466667pt;}
.xe{left:188.986667pt;}
.x4{left:233.466667pt;}
.x11{left:236.186667pt;}
.x7{left:263.266667pt;}
.x10{left:283.426667pt;}
.x14{left:293.026667pt;}
.x13{left:312.066667pt;}
.x8{left:330.626667pt;}
.x15{left:359.266667pt;}
.x9{left:376.706667pt;}
.x2{left:396.866667pt;}
.x5{left:496.093333pt;}
.xa{left:675.333333pt;}
.x12{left:684.453333pt;}
.xb{left:690.693333pt;}
.xf{left:691.973333pt;}
}




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