
    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_dd3a702ecad5280029802e55.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_0186b0b24cfd18d6afb10e3d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_1049e10dfc93840804ebc9ff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_566fa1bc0b0d47d1df746b13.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_6258274995d852e6548daed2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_fbc32173ec3adfc656182225.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9f716cd298bf464f1f073111.woff')format("woff");}.ff7{font-family:ff7;line-height:1.649414;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_282f5b56937ba5a3911795fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_6b8cab813cd54acd706ab950.woff')format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_6e679169fa812ec975072aed.woff')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_c8e0f6c0d8d1b4b4f81c7a5b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c2d7bc1d3f0221982afe5b83.woff')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d8975e69a6ca035eb5d2f4e3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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:-20.880000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v2{vertical-align:15.120000px;}
.va{vertical-align:20.880000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.vb{vertical-align:40.320000px;}
.v8{vertical-align:45.360000px;}
.v5{vertical-align:50.760000px;}
.v9{vertical-align:70.560000px;}
.ls28{letter-spacing:-0.369000px;}
.lsd{letter-spacing:-0.267600px;}
.ls20{letter-spacing:-0.260400px;}
.lsb{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.150000px;}
.ls10{letter-spacing:-0.148800px;}
.ls1d{letter-spacing:-0.142200px;}
.ls1f{letter-spacing:-0.125400px;}
.ls7{letter-spacing:-0.121200px;}
.ls1e{letter-spacing:-0.102000px;}
.ls4{letter-spacing:-0.090000px;}
.ls2b{letter-spacing:-0.064800px;}
.ls1a{letter-spacing:-0.063600px;}
.ls27{letter-spacing:-0.042120px;}
.ls29{letter-spacing:-0.009000px;}
.ls2a{letter-spacing:-0.007560px;}
.ls1b{letter-spacing:-0.003960px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.015000px;}
.lsf{letter-spacing:0.031320px;}
.ls22{letter-spacing:0.035280px;}
.ls2e{letter-spacing:0.047520px;}
.ls9{letter-spacing:0.048960px;}
.ls31{letter-spacing:0.053280px;}
.ls36{letter-spacing:0.060600px;}
.ls23{letter-spacing:0.082200px;}
.ls1c{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls33{letter-spacing:0.113400px;}
.ls21{letter-spacing:0.157200px;}
.ls14{letter-spacing:0.160200px;}
.ls32{letter-spacing:0.161400px;}
.lsc{letter-spacing:0.173400px;}
.lse{letter-spacing:0.199200px;}
.ls18{letter-spacing:0.241200px;}
.ls2{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.640800px;}
.ls16{letter-spacing:4.840200px;}
.ls24{letter-spacing:9.520200px;}
.ls2c{letter-spacing:13.050360px;}
.ls25{letter-spacing:13.082040px;}
.ls0{letter-spacing:13.397760px;}
.ls12{letter-spacing:14.587200px;}
.ls19{letter-spacing:17.352000px;}
.ls30{letter-spacing:36.566640px;}
.ls35{letter-spacing:45.206640px;}
.ls2f{letter-spacing:54.926640px;}
.ls11{letter-spacing:68.246640px;}
.ls26{letter-spacing:72.014400px;}
.ls34{letter-spacing:78.326640px;}
.ls17{letter-spacing:82.890360px;}
.ls13{letter-spacing:91.885320px;}
.ls2d{letter-spacing:98.266680px;}
.lsa{letter-spacing:100.286640px;}
.ls8{letter-spacing:143.325360px;}
.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;}
}
.ws22{word-spacing:-60.120000px;}
.ws20{word-spacing:-16.713360px;}
.ws3{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.383600px;}
.ws21{word-spacing:-13.287000px;}
.ws8{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wse{word-spacing:-13.222440px;}
.ws1f{word-spacing:-13.218840px;}
.ws1c{word-spacing:-13.217400px;}
.ws17{word-spacing:-13.184280px;}
.wsd{word-spacing:-13.162800px;}
.ws1d{word-spacing:-13.161600px;}
.ws5{word-spacing:-13.039800px;}
.ws1b{word-spacing:-12.857400px;}
.ws0{word-spacing:-9.810000px;}
.ws11{word-spacing:-9.358800px;}
.ws19{word-spacing:-9.348600px;}
.ws18{word-spacing:-9.301680px;}
.wsb{word-spacing:-9.297720px;}
.wsf{word-spacing:-9.266400px;}
.ws13{word-spacing:-9.164400px;}
.ws12{word-spacing:-9.124200px;}
.wsc{word-spacing:-9.117600px;}
.ws10{word-spacing:-7.920000px;}
.ws4{word-spacing:0.000000px;}
.ws1e{word-spacing:2.399040px;}
.ws16{word-spacing:4.471560px;}
.ws14{word-spacing:38.848680px;}
.ws1a{word-spacing:47.793240px;}
.ws2{word-spacing:147.584880px;}
._4{margin-left:-3.972597px;}
._3{margin-left:-2.946000px;}
._0{margin-left:-1.020000px;}
._2{width:1.267475px;}
._b{width:2.287011px;}
._5{width:3.301525px;}
._7{width:4.929600px;}
._6{width:5.952000px;}
._9{width:6.972000px;}
._1a{width:7.974000px;}
._8{width:9.018000px;}
._1{width:10.401036px;}
._f{width:11.782968px;}
._a{width:14.729400px;}
._c{width:16.051800px;}
._10{width:17.074080px;}
._11{width:18.096841px;}
._12{width:20.078040px;}
._d{width:22.545000px;}
._e{width:23.687400px;}
._14{width:26.019000px;}
._15{width:27.216000px;}
._19{width:34.193039px;}
._1b{width:53.649310px;}
._1d{width:59.338440px;}
._1c{width:64.508760px;}
._16{width:68.641200px;}
._17{width:99.841440px;}
._13{width:175.502879px;}
._18{width:224.822879px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:7.830000px;}
.yeb{bottom:7.860000px;}
.yd1{bottom:7.920000px;}
.y3{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y2{bottom:104.520000px;}
.y161{bottom:115.770000px;}
.ya9{bottom:117.570000px;}
.yf9{bottom:120.270000px;}
.y139{bottom:126.390000px;}
.y11c{bottom:127.380000px;}
.yd2{bottom:132.060000px;}
.y160{bottom:133.320000px;}
.y57{bottom:133.410000px;}
.y1{bottom:133.590000px;}
.ya8{bottom:136.020000px;}
.yf8{bottom:137.820000px;}
.y107{bottom:138.270000px;}
.y138{bottom:143.940000px;}
.y15f{bottom:151.680000px;}
.ya7{bottom:154.470000px;}
.y106{bottom:155.910000px;}
.yd0{bottom:159.420000px;}
.y7d{bottom:160.050000px;}
.y137{bottom:161.490000px;}
.y28{bottom:162.750000px;}
.yf7{bottom:164.370000px;}
.y56{bottom:164.640000px;}
.y11b{bottom:165.540000px;}
.ya6{bottom:173.010000px;}
.y7c{bottom:177.690000px;}
.y15e{bottom:178.320000px;}
.y27{bottom:180.390000px;}
.y55{bottom:183.090000px;}
.yce{bottom:186.780000px;}
.y136{bottom:188.130000px;}
.ya5{bottom:191.460000px;}
.y15d{bottom:195.870000px;}
.y26{bottom:197.940000px;}
.yf6{bottom:200.010000px;}
.y11a{bottom:201.180000px;}
.y54{bottom:201.540000px;}
.y7b{bottom:204.240000px;}
.y135{bottom:205.680000px;}
.y15c{bottom:213.510000px;}
.y25{bottom:215.580000px;}
.yf5{bottom:217.560000px;}
.y119{bottom:218.730000px;}
.y53{bottom:219.990000px;}
.ya4{bottom:223.230000px;}
.y134{bottom:223.320000px;}
.y105{bottom:227.100000px;}
.y15b{bottom:231.060000px;}
.y24{bottom:233.130000px;}
.ycd{bottom:235.470000px;}
.y118{bottom:236.370000px;}
.y7a{bottom:236.820000px;}
.y52{bottom:238.440000px;}
.y133{bottom:249.870000px;}
.y23{bottom:250.680000px;}
.yf4{bottom:253.200000px;}
.y117{bottom:253.920000px;}
.ya3{bottom:255.810000px;}
.y51{bottom:256.980000px;}
.y15a{bottom:257.610000px;}
.y104{bottom:259.320000px;}
.ycc{bottom:262.020000px;}
.y132{bottom:267.420000px;}
.y22{bottom:268.320000px;}
.yf3{bottom:270.750000px;}
.y79{bottom:272.370000px;}
.ya2{bottom:273.450000px;}
.y159{bottom:275.250000px;}
.y21{bottom:285.870000px;}
.yf2{bottom:288.300000px;}
.y50{bottom:288.930000px;}
.y116{bottom:289.470000px;}
.ya1{bottom:291.000000px;}
.y158{bottom:292.800000px;}
.y131{bottom:294.330000px;}
.ycb{bottom:297.660000px;}
.y20{bottom:303.510000px;}
.yf1{bottom:305.940000px;}
.y4f{bottom:307.380000px;}
.y78{bottom:308.010000px;}
.ya0{bottom:308.550000px;}
.y157{bottom:319.440000px;}
.y115{bottom:321.690000px;}
.y4e{bottom:325.830000px;}
.yca{bottom:333.210000px;}
.y9f{bottom:335.190000px;}
.y156{bottom:336.990000px;}
.y1f{bottom:339.060000px;}
.yf0{bottom:341.490000px;}
.y130{bottom:342.660000px;}
.y77{bottom:343.560000px;}
.y4d{bottom:344.280000px;}
.yc9{bottom:350.850000px;}
.y155{bottom:354.540000px;}
.y1e{bottom:356.610000px;}
.yef{bottom:359.130000px;}
.y4c{bottom:362.730000px;}
.y12f{bottom:369.570000px;}
.y9e{bottom:370.740000px;}
.y1d{bottom:374.250000px;}
.y76{bottom:375.870000px;}
.yee{bottom:376.680000px;}
.yc8{bottom:377.400000px;}
.y154{bottom:381.180000px;}
.y4b{bottom:381.270000px;}
.y74{bottom:383.430000px;}
.y9d{bottom:388.380000px;}
.y75{bottom:389.550000px;}
.y1c{bottom:391.800000px;}
.y153{bottom:398.730000px;}
.y12e{bottom:406.560000px;}
.y1b{bottom:409.440000px;}
.yed{bottom:409.620000px;}
.y4a{bottom:413.040000px;}
.yc7{bottom:413.310000px;}
.y9c{bottom:414.930000px;}
.y12d{bottom:424.110000px;}
.y152{bottom:425.370000px;}
.y1a{bottom:426.990000px;}
.y73{bottom:430.590000px;}
.yec{bottom:436.980000px;}
.y12c{bottom:441.750000px;}
.y151{bottom:442.920000px;}
.y49{bottom:447.600000px;}
.y72{bottom:448.140000px;}
.y9b{bottom:450.480000px;}
.y19{bottom:453.900000px;}
.y48{bottom:455.160000px;}
.y150{bottom:460.470000px;}
.yc6{bottom:461.550000px;}
.yea{bottom:464.340000px;}
.y9a{bottom:468.120000px;}
.y12b{bottom:468.660000px;}
.y71{bottom:474.720000px;}
.yc5{bottom:479.220000px;}
.y14f{bottom:487.140000px;}
.ye9{bottom:491.730000px;}
.y47{bottom:494.880000px;}
.yc4{bottom:496.770000px;}
.y99{bottom:500.370000px;}
.y18{bottom:502.170000px;}
.y14e{bottom:504.690000px;}
.y12a{bottom:506.040000px;}
.y98{bottom:507.930000px;}
.y70{bottom:510.360000px;}
.ye8{bottom:519.000000px;}
.y14d{bottom:522.330000px;}
.yc3{bottom:523.320000px;}
.y46{bottom:526.020000px;}
.y17{bottom:537.810000px;}
.y45{bottom:543.570000px;}
.y6f{bottom:544.560000px;}
.ye7{bottom:546.360000px;}
.y97{bottom:546.900000px;}
.y14c{bottom:548.880000px;}
.y6e{bottom:552.120000px;}
.y129{bottom:554.280000px;}
.y16{bottom:555.360000px;}
.yc2{bottom:558.960000px;}
.y44{bottom:561.120000px;}
.y96{bottom:564.450000px;}
.y128{bottom:571.830000px;}
.y15{bottom:572.910000px;}
.ye6{bottom:573.720000px;}
.y14b{bottom:575.430000px;}
.yc1{bottom:576.510000px;}
.y43{bottom:578.760000px;}
.y103{bottom:579.030000px;}
.y95{bottom:582.090000px;}
.y6d{bottom:587.850000px;}
.y127{bottom:589.470000px;}
.y14{bottom:590.550000px;}
.y14a{bottom:593.070000px;}
.y6c{bottom:595.410000px;}
.y102{bottom:596.580000px;}
.y114{bottom:598.920000px;}
.y94{bottom:599.640000px;}
.yc0{bottom:603.150000px;}
.y126{bottom:607.020000px;}
.y13{bottom:608.100000px;}
.y42{bottom:609.810000px;}
.y101{bottom:614.220000px;}
.y113{bottom:616.560000px;}
.y93{bottom:617.280000px;}
.y149{bottom:619.620000px;}
.ye5{bottom:622.410000px;}
.y125{bottom:624.660000px;}
.y12{bottom:625.740000px;}
.y41{bottom:627.450000px;}
.y100{bottom:631.770000px;}
.y6b{bottom:633.930000px;}
.y148{bottom:637.260000px;}
.ybf{bottom:638.700000px;}
.y6a{bottom:641.490000px;}
.y124{bottom:642.210000px;}
.y11{bottom:643.290000px;}
.y92{bottom:643.830000px;}
.y40{bottom:645.000000px;}
.ye4{bottom:648.960000px;}
.yff{bottom:649.410000px;}
.y112{bottom:652.110000px;}
.ybe{bottom:656.250000px;}
.y10{bottom:660.840000px;}
.y3f{bottom:662.550000px;}
.y147{bottom:663.810000px;}
.yfe{bottom:666.960000px;}
.y123{bottom:669.120000px;}
.y111{bottom:669.660000px;}
.yf{bottom:678.480000px;}
.y91{bottom:679.380000px;}
.y69{bottom:679.830000px;}
.y146{bottom:681.360000px;}
.yfd{bottom:684.510000px;}
.ye3{bottom:684.600000px;}
.y68{bottom:687.390000px;}
.ybd{bottom:691.800000px;}
.y3e{bottom:693.870000px;}
.ye{bottom:696.030000px;}
.y90{bottom:697.020000px;}
.y145{bottom:699.000000px;}
.ye2{bottom:702.150000px;}
.y110{bottom:705.300000px;}
.ybc{bottom:709.440000px;}
.yd{bottom:713.670000px;}
.y122{bottom:717.360000px;}
.y10f{bottom:722.850000px;}
.y8f{bottom:723.570000px;}
.y144{bottom:725.550000px;}
.ybb{bottom:727.080000px;}
.y67{bottom:727.620000px;}
.ye1{bottom:728.700000px;}
.y3d{bottom:730.140000px;}
.yc{bottom:731.220000px;}
.y121{bottom:735.000000px;}
.yfc{bottom:737.700000px;}
.y10e{bottom:740.490000px;}
.y143{bottom:743.190000px;}
.yba{bottom:744.720000px;}
.y66{bottom:745.170000px;}
.y3c{bottom:747.690000px;}
.y120{bottom:752.550000px;}
.y8e{bottom:756.330000px;}
.yb{bottom:758.130000px;}
.y142{bottom:760.740000px;}
.yb9{bottom:762.270000px;}
.y65{bottom:762.810000px;}
.ye0{bottom:764.340000px;}
.y3b{bottom:765.330000px;}
.yfb{bottom:769.920000px;}
.y11f{bottom:770.190000px;}
.y8d{bottom:774.780000px;}
.y10d{bottom:776.040000px;}
.yb8{bottom:779.910000px;}
.y64{bottom:780.360000px;}
.ydf{bottom:781.890000px;}
.y141{bottom:787.290000px;}
.y3a{bottom:792.240000px;}
.y8c{bottom:793.230000px;}
.y10c{bottom:793.590000px;}
.y63{bottom:798.000000px;}
.yde{bottom:799.530000px;}
.ya{bottom:804.930000px;}
.y11e{bottom:805.740000px;}
.y8b{bottom:811.680000px;}
.yb7{bottom:815.550000px;}
.y140{bottom:822.480000px;}
.y62{bottom:824.550000px;}
.y10b{bottom:829.230000px;}
.y8a{bottom:830.220000px;}
.ydd{bottom:835.080000px;}
.y11d{bottom:837.960000px;}
.y9{bottom:840.480000px;}
.y10a{bottom:846.780000px;}
.yb6{bottom:847.770000px;}
.y13f{bottom:849.030000px;}
.ydc{bottom:852.630000px;}
.yb5{bottom:857.850000px;}
.y39{bottom:858.030000px;}
.y61{bottom:860.100000px;}
.y89{bottom:861.990000px;}
.y13e{bottom:866.670000px;}
.y38{bottom:875.670000px;}
.y8{bottom:876.030000px;}
.y109{bottom:882.420000px;}
.ydb{bottom:888.270000px;}
.y60{bottom:892.410000px;}
.y37{bottom:893.220000px;}
.y88{bottom:897.540000px;}
.y5f{bottom:899.970000px;}
.yb4{bottom:902.850000px;}
.yda{bottom:905.820000px;}
.y36{bottom:910.860000px;}
.y7{bottom:911.940000px;}
.y108{bottom:914.640000px;}
.yd9{bottom:923.460000px;}
.y35{bottom:928.410000px;}
.y87{bottom:929.850000px;}
.yb3{bottom:937.320000px;}
.y86{bottom:937.410000px;}
.y5e{bottom:941.550000px;}
.yb2{bottom:944.880000px;}
.y6{bottom:949.290000px;}
.y13d{bottom:954.960000px;}
.yd8{bottom:959.010000px;}
.y34{bottom:963.960000px;}
.y5d{bottom:968.190000px;}
.y85{bottom:977.010000px;}
.y33{bottom:981.600000px;}
.yb1{bottom:984.030000px;}
.y5{bottom:987.630000px;}
.yd7{bottom:994.560000px;}
.y84{bottom:994.650000px;}
.y32{bottom:999.150000px;}
.y5c{bottom:1003.740000px;}
.y83{bottom:1012.230000px;}
.y4{bottom:1012.320000px;}
.yb0{bottom:1015.290000px;}
.y31{bottom:1016.820000px;}
.yaf{bottom:1033.740000px;}
.y30{bottom:1034.370000px;}
.y5b{bottom:1036.080000px;}
.y82{bottom:1038.780000px;}
.y13c{bottom:1043.370000px;}
.y5a{bottom:1043.640000px;}
.yd6{bottom:1045.170000px;}
.yfa{bottom:1051.920000px;}
.yae{bottom:1052.190000px;}
.y13b{bottom:1060.920000px;}
.y164{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.yad{bottom:1070.730000px;}
.yd5{bottom:1072.530000px;}
.y81{bottom:1073.160000px;}
.y13a{bottom:1078.560000px;}
.y80{bottom:1080.720000px;}
.y59{bottom:1081.170000px;}
.y2e{bottom:1087.560000px;}
.yac{bottom:1089.180000px;}
.y163{bottom:1096.110000px;}
.yd4{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y58{bottom:1107.720000px;}
.y162{bottom:1113.750000px;}
.y7f{bottom:1120.320000px;}
.yab{bottom:1121.130000px;}
.y2c{bottom:1122.750000px;}
.yd3{bottom:1127.160000px;}
.y7e{bottom:1130.400000px;}
.yaa{bottom:1139.580000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h17{height:26.550000px;}
.h1a{height:26.580000px;}
.h19{height:26.640000px;}
.h2{height:29.368828px;}
.h3{height:39.155273px;}
.h18{height:50.902383px;}
.h7{height:52.311445px;}
.hc{height:54.817383px;}
.h6{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:59.973223px;}
.h9{height:62.585859px;}
.h16{height:62.703281px;}
.h10{height:66.783691px;}
.h12{height:68.028574px;}
.h8{height:68.582109px;}
.h4{height:72.985430px;}
.h1b{height:74.953125px;}
.ha{height:82.068574px;}
.h13{height:82.551445px;}
.hf{height:83.508574px;}
.he{height:90.750234px;}
.hb{height:97.023691px;}
.h15{height:107.103691px;}
.h11{height:110.550234px;}
.h14{height:112.143691px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:91.470000px;}
.w5{width:156.060000px;}
.w3{width:209.700000px;}
.w4{width:223.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.740000px;}
.x1{left:68.040000px;}
.x2d{left:78.659987px;}
.x1f{left:95.039987px;}
.x2e{left:121.229987px;}
.x15{left:166.259987px;}
.xb{left:179.849987px;}
.x10{left:186.959987px;}
.xe{left:188.489987px;}
.x3{left:192.719987px;}
.x17{left:197.669987px;}
.x19{left:208.829987px;}
.x1a{left:214.499987px;}
.x20{left:229.800000px;}
.x12{left:231.239987px;}
.x16{left:237.629987px;}
.x5{left:246.269987px;}
.x9{left:252.569987px;}
.x7{left:261.119987px;}
.x14{left:267.419987px;}
.xc{left:269.669987px;}
.x2c{left:279.839987px;}
.x11{left:290.189987px;}
.xd{left:291.719987px;}
.x13{left:293.519987px;}
.x27{left:313.769987px;}
.x6{left:317.639987px;}
.x23{left:322.500000px;}
.x2a{left:323.939987px;}
.xf{left:332.039987px;}
.x18{left:342.659987px;}
.x1b{left:371.909987px;}
.x1c{left:375.689987px;}
.x8{left:398.459987px;}
.x1d{left:401.519987px;}
.xa{left:403.409987px;}
.x22{left:440.220000px;}
.x1e{left:457.949987px;}
.x24{left:479.280000px;}
.x25{left:668.669987px;}
.x26{left:679.109987px;}
.x29{left:711.689987px;}
.x2b{left:763.169987px;}
.x4{left:800.339987px;}
.x2{left:806.550000px;}
.x28{left:827.159987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v2{vertical-align:13.440000pt;}
.va{vertical-align:18.560000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.vb{vertical-align:35.840000pt;}
.v8{vertical-align:40.320000pt;}
.v5{vertical-align:45.120000pt;}
.v9{vertical-align:62.720000pt;}
.ls28{letter-spacing:-0.328000pt;}
.lsd{letter-spacing:-0.237867pt;}
.ls20{letter-spacing:-0.231467pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.133333pt;}
.ls10{letter-spacing:-0.132267pt;}
.ls1d{letter-spacing:-0.126400pt;}
.ls1f{letter-spacing:-0.111467pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls1e{letter-spacing:-0.090667pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls2b{letter-spacing:-0.057600pt;}
.ls1a{letter-spacing:-0.056533pt;}
.ls27{letter-spacing:-0.037440pt;}
.ls29{letter-spacing:-0.008000pt;}
.ls2a{letter-spacing:-0.006720pt;}
.ls1b{letter-spacing:-0.003520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.013333pt;}
.lsf{letter-spacing:0.027840pt;}
.ls22{letter-spacing:0.031360pt;}
.ls2e{letter-spacing:0.042240pt;}
.ls9{letter-spacing:0.043520pt;}
.ls31{letter-spacing:0.047360pt;}
.ls36{letter-spacing:0.053867pt;}
.ls23{letter-spacing:0.073067pt;}
.ls1c{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls33{letter-spacing:0.100800pt;}
.ls21{letter-spacing:0.139733pt;}
.ls14{letter-spacing:0.142400pt;}
.ls32{letter-spacing:0.143467pt;}
.lsc{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.177067pt;}
.ls18{letter-spacing:0.214400pt;}
.ls2{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.569600pt;}
.ls16{letter-spacing:4.302400pt;}
.ls24{letter-spacing:8.462400pt;}
.ls2c{letter-spacing:11.600320pt;}
.ls25{letter-spacing:11.628480pt;}
.ls0{letter-spacing:11.909120pt;}
.ls12{letter-spacing:12.966400pt;}
.ls19{letter-spacing:15.424000pt;}
.ls30{letter-spacing:32.503680pt;}
.ls35{letter-spacing:40.183680pt;}
.ls2f{letter-spacing:48.823680pt;}
.ls11{letter-spacing:60.663680pt;}
.ls26{letter-spacing:64.012800pt;}
.ls34{letter-spacing:69.623680pt;}
.ls17{letter-spacing:73.680320pt;}
.ls13{letter-spacing:81.675840pt;}
.ls2d{letter-spacing:87.348160pt;}
.lsa{letter-spacing:89.143680pt;}
.ls8{letter-spacing:127.400320pt;}
.ws22{word-spacing:-53.440000pt;}
.ws20{word-spacing:-14.856320pt;}
.ws3{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.896533pt;}
.ws21{word-spacing:-11.810667pt;}
.ws8{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.753280pt;}
.ws1f{word-spacing:-11.750080pt;}
.ws1c{word-spacing:-11.748800pt;}
.ws17{word-spacing:-11.719360pt;}
.wsd{word-spacing:-11.700267pt;}
.ws1d{word-spacing:-11.699200pt;}
.ws5{word-spacing:-11.590933pt;}
.ws1b{word-spacing:-11.428800pt;}
.ws0{word-spacing:-8.720000pt;}
.ws11{word-spacing:-8.318933pt;}
.ws19{word-spacing:-8.309867pt;}
.ws18{word-spacing:-8.268160pt;}
.wsb{word-spacing:-8.264640pt;}
.wsf{word-spacing:-8.236800pt;}
.ws13{word-spacing:-8.146133pt;}
.ws12{word-spacing:-8.110400pt;}
.wsc{word-spacing:-8.104533pt;}
.ws10{word-spacing:-7.040000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1e{word-spacing:2.132480pt;}
.ws16{word-spacing:3.974720pt;}
.ws14{word-spacing:34.532160pt;}
.ws1a{word-spacing:42.482880pt;}
.ws2{word-spacing:131.186560pt;}
._4{margin-left:-3.531197pt;}
._3{margin-left:-2.618667pt;}
._0{margin-left:-0.906667pt;}
._2{width:1.126644pt;}
._b{width:2.032899pt;}
._5{width:2.934689pt;}
._7{width:4.381866pt;}
._6{width:5.290667pt;}
._9{width:6.197334pt;}
._1a{width:7.088000pt;}
._8{width:8.016000pt;}
._1{width:9.245365pt;}
._f{width:10.473749pt;}
._a{width:13.092800pt;}
._c{width:14.268266pt;}
._10{width:15.176960pt;}
._11{width:16.086081pt;}
._12{width:17.847147pt;}
._d{width:20.040000pt;}
._e{width:21.055467pt;}
._14{width:23.128000pt;}
._15{width:24.192000pt;}
._19{width:30.393813pt;}
._1b{width:47.688275pt;}
._1d{width:52.745280pt;}
._1c{width:57.341120pt;}
._16{width:61.014400pt;}
._17{width:88.747947pt;}
._13{width:156.002559pt;}
._18{width:199.842559pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:6.960000pt;}
.yeb{bottom:6.986667pt;}
.yd1{bottom:7.040000pt;}
.y3{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y2{bottom:92.906667pt;}
.y161{bottom:102.906667pt;}
.ya9{bottom:104.506667pt;}
.yf9{bottom:106.906667pt;}
.y139{bottom:112.346667pt;}
.y11c{bottom:113.226667pt;}
.yd2{bottom:117.386667pt;}
.y160{bottom:118.506667pt;}
.y57{bottom:118.586667pt;}
.y1{bottom:118.746667pt;}
.ya8{bottom:120.906667pt;}
.yf8{bottom:122.506667pt;}
.y107{bottom:122.906667pt;}
.y138{bottom:127.946667pt;}
.y15f{bottom:134.826667pt;}
.ya7{bottom:137.306667pt;}
.y106{bottom:138.586667pt;}
.yd0{bottom:141.706667pt;}
.y7d{bottom:142.266667pt;}
.y137{bottom:143.546667pt;}
.y28{bottom:144.666667pt;}
.yf7{bottom:146.106667pt;}
.y56{bottom:146.346667pt;}
.y11b{bottom:147.146667pt;}
.ya6{bottom:153.786667pt;}
.y7c{bottom:157.946667pt;}
.y15e{bottom:158.506667pt;}
.y27{bottom:160.346667pt;}
.y55{bottom:162.746667pt;}
.yce{bottom:166.026667pt;}
.y136{bottom:167.226667pt;}
.ya5{bottom:170.186667pt;}
.y15d{bottom:174.106667pt;}
.y26{bottom:175.946667pt;}
.yf6{bottom:177.786667pt;}
.y11a{bottom:178.826667pt;}
.y54{bottom:179.146667pt;}
.y7b{bottom:181.546667pt;}
.y135{bottom:182.826667pt;}
.y15c{bottom:189.786667pt;}
.y25{bottom:191.626667pt;}
.yf5{bottom:193.386667pt;}
.y119{bottom:194.426667pt;}
.y53{bottom:195.546667pt;}
.ya4{bottom:198.426667pt;}
.y134{bottom:198.506667pt;}
.y105{bottom:201.866667pt;}
.y15b{bottom:205.386667pt;}
.y24{bottom:207.226667pt;}
.ycd{bottom:209.306667pt;}
.y118{bottom:210.106667pt;}
.y7a{bottom:210.506667pt;}
.y52{bottom:211.946667pt;}
.y133{bottom:222.106667pt;}
.y23{bottom:222.826667pt;}
.yf4{bottom:225.066667pt;}
.y117{bottom:225.706667pt;}
.ya3{bottom:227.386667pt;}
.y51{bottom:228.426667pt;}
.y15a{bottom:228.986667pt;}
.y104{bottom:230.506667pt;}
.ycc{bottom:232.906667pt;}
.y132{bottom:237.706667pt;}
.y22{bottom:238.506667pt;}
.yf3{bottom:240.666667pt;}
.y79{bottom:242.106667pt;}
.ya2{bottom:243.066667pt;}
.y159{bottom:244.666667pt;}
.y21{bottom:254.106667pt;}
.yf2{bottom:256.266667pt;}
.y50{bottom:256.826667pt;}
.y116{bottom:257.306667pt;}
.ya1{bottom:258.666667pt;}
.y158{bottom:260.266667pt;}
.y131{bottom:261.626667pt;}
.ycb{bottom:264.586667pt;}
.y20{bottom:269.786667pt;}
.yf1{bottom:271.946667pt;}
.y4f{bottom:273.226667pt;}
.y78{bottom:273.786667pt;}
.ya0{bottom:274.266667pt;}
.y157{bottom:283.946667pt;}
.y115{bottom:285.946667pt;}
.y4e{bottom:289.626667pt;}
.yca{bottom:296.186667pt;}
.y9f{bottom:297.946667pt;}
.y156{bottom:299.546667pt;}
.y1f{bottom:301.386667pt;}
.yf0{bottom:303.546667pt;}
.y130{bottom:304.586667pt;}
.y77{bottom:305.386667pt;}
.y4d{bottom:306.026667pt;}
.yc9{bottom:311.866667pt;}
.y155{bottom:315.146667pt;}
.y1e{bottom:316.986667pt;}
.yef{bottom:319.226667pt;}
.y4c{bottom:322.426667pt;}
.y12f{bottom:328.506667pt;}
.y9e{bottom:329.546667pt;}
.y1d{bottom:332.666667pt;}
.y76{bottom:334.106667pt;}
.yee{bottom:334.826667pt;}
.yc8{bottom:335.466667pt;}
.y154{bottom:338.826667pt;}
.y4b{bottom:338.906667pt;}
.y74{bottom:340.826667pt;}
.y9d{bottom:345.226667pt;}
.y75{bottom:346.266667pt;}
.y1c{bottom:348.266667pt;}
.y153{bottom:354.426667pt;}
.y12e{bottom:361.386667pt;}
.y1b{bottom:363.946667pt;}
.yed{bottom:364.106667pt;}
.y4a{bottom:367.146667pt;}
.yc7{bottom:367.386667pt;}
.y9c{bottom:368.826667pt;}
.y12d{bottom:376.986667pt;}
.y152{bottom:378.106667pt;}
.y1a{bottom:379.546667pt;}
.y73{bottom:382.746667pt;}
.yec{bottom:388.426667pt;}
.y12c{bottom:392.666667pt;}
.y151{bottom:393.706667pt;}
.y49{bottom:397.866667pt;}
.y72{bottom:398.346667pt;}
.y9b{bottom:400.426667pt;}
.y19{bottom:403.466667pt;}
.y48{bottom:404.586667pt;}
.y150{bottom:409.306667pt;}
.yc6{bottom:410.266667pt;}
.yea{bottom:412.746667pt;}
.y9a{bottom:416.106667pt;}
.y12b{bottom:416.586667pt;}
.y71{bottom:421.973333pt;}
.yc5{bottom:425.973333pt;}
.y14f{bottom:433.013333pt;}
.ye9{bottom:437.093333pt;}
.y47{bottom:439.893333pt;}
.yc4{bottom:441.573333pt;}
.y99{bottom:444.773333pt;}
.y18{bottom:446.373333pt;}
.y14e{bottom:448.613333pt;}
.y12a{bottom:449.813333pt;}
.y98{bottom:451.493333pt;}
.y70{bottom:453.653333pt;}
.ye8{bottom:461.333333pt;}
.y14d{bottom:464.293333pt;}
.yc3{bottom:465.173333pt;}
.y46{bottom:467.573333pt;}
.y17{bottom:478.053333pt;}
.y45{bottom:483.173333pt;}
.y6f{bottom:484.053333pt;}
.ye7{bottom:485.653333pt;}
.y97{bottom:486.133333pt;}
.y14c{bottom:487.893333pt;}
.y6e{bottom:490.773333pt;}
.y129{bottom:492.693333pt;}
.y16{bottom:493.653333pt;}
.yc2{bottom:496.853333pt;}
.y44{bottom:498.773333pt;}
.y96{bottom:501.733333pt;}
.y128{bottom:508.293333pt;}
.y15{bottom:509.253333pt;}
.ye6{bottom:509.973333pt;}
.y14b{bottom:511.493333pt;}
.yc1{bottom:512.453333pt;}
.y43{bottom:514.453333pt;}
.y103{bottom:514.693333pt;}
.y95{bottom:517.413333pt;}
.y6d{bottom:522.533333pt;}
.y127{bottom:523.973333pt;}
.y14{bottom:524.933333pt;}
.y14a{bottom:527.173333pt;}
.y6c{bottom:529.253333pt;}
.y102{bottom:530.293333pt;}
.y114{bottom:532.373333pt;}
.y94{bottom:533.013333pt;}
.yc0{bottom:536.133333pt;}
.y126{bottom:539.573333pt;}
.y13{bottom:540.533333pt;}
.y42{bottom:542.053333pt;}
.y101{bottom:545.973333pt;}
.y113{bottom:548.053333pt;}
.y93{bottom:548.693333pt;}
.y149{bottom:550.773333pt;}
.ye5{bottom:553.253333pt;}
.y125{bottom:555.253333pt;}
.y12{bottom:556.213333pt;}
.y41{bottom:557.733333pt;}
.y100{bottom:561.573333pt;}
.y6b{bottom:563.493333pt;}
.y148{bottom:566.453333pt;}
.ybf{bottom:567.733333pt;}
.y6a{bottom:570.213333pt;}
.y124{bottom:570.853333pt;}
.y11{bottom:571.813333pt;}
.y92{bottom:572.293333pt;}
.y40{bottom:573.333333pt;}
.ye4{bottom:576.853333pt;}
.yff{bottom:577.253333pt;}
.y112{bottom:579.653333pt;}
.ybe{bottom:583.333333pt;}
.y10{bottom:587.413333pt;}
.y3f{bottom:588.933333pt;}
.y147{bottom:590.053333pt;}
.yfe{bottom:592.853333pt;}
.y123{bottom:594.773333pt;}
.y111{bottom:595.253333pt;}
.yf{bottom:603.093333pt;}
.y91{bottom:603.893333pt;}
.y69{bottom:604.293333pt;}
.y146{bottom:605.653333pt;}
.yfd{bottom:608.453333pt;}
.ye3{bottom:608.533333pt;}
.y68{bottom:611.013333pt;}
.ybd{bottom:614.933333pt;}
.y3e{bottom:616.773333pt;}
.ye{bottom:618.693333pt;}
.y90{bottom:619.573333pt;}
.y145{bottom:621.333333pt;}
.ye2{bottom:624.133333pt;}
.y110{bottom:626.933333pt;}
.ybc{bottom:630.613333pt;}
.yd{bottom:634.373333pt;}
.y122{bottom:637.653333pt;}
.y10f{bottom:642.533333pt;}
.y8f{bottom:643.173333pt;}
.y144{bottom:644.933333pt;}
.ybb{bottom:646.293333pt;}
.y67{bottom:646.773333pt;}
.ye1{bottom:647.733333pt;}
.y3d{bottom:649.013333pt;}
.yc{bottom:649.973333pt;}
.y121{bottom:653.333333pt;}
.yfc{bottom:655.733333pt;}
.y10e{bottom:658.213333pt;}
.y143{bottom:660.613333pt;}
.yba{bottom:661.973333pt;}
.y66{bottom:662.373333pt;}
.y3c{bottom:664.613333pt;}
.y120{bottom:668.933333pt;}
.y8e{bottom:672.293333pt;}
.yb{bottom:673.893333pt;}
.y142{bottom:676.213333pt;}
.yb9{bottom:677.573333pt;}
.y65{bottom:678.053333pt;}
.ye0{bottom:679.413333pt;}
.y3b{bottom:680.293333pt;}
.yfb{bottom:684.373333pt;}
.y11f{bottom:684.613333pt;}
.y8d{bottom:688.693333pt;}
.y10d{bottom:689.813333pt;}
.yb8{bottom:693.253333pt;}
.y64{bottom:693.653333pt;}
.ydf{bottom:695.013333pt;}
.y141{bottom:699.813333pt;}
.y3a{bottom:704.213333pt;}
.y8c{bottom:705.093333pt;}
.y10c{bottom:705.413333pt;}
.y63{bottom:709.333333pt;}
.yde{bottom:710.693333pt;}
.ya{bottom:715.493333pt;}
.y11e{bottom:716.213333pt;}
.y8b{bottom:721.493333pt;}
.yb7{bottom:724.933333pt;}
.y140{bottom:731.093333pt;}
.y62{bottom:732.933333pt;}
.y10b{bottom:737.093333pt;}
.y8a{bottom:737.973333pt;}
.ydd{bottom:742.293333pt;}
.y11d{bottom:744.853333pt;}
.y9{bottom:747.093333pt;}
.y10a{bottom:752.693333pt;}
.yb6{bottom:753.573333pt;}
.y13f{bottom:754.693333pt;}
.ydc{bottom:757.893333pt;}
.yb5{bottom:762.533333pt;}
.y39{bottom:762.693333pt;}
.y61{bottom:764.533333pt;}
.y89{bottom:766.213333pt;}
.y13e{bottom:770.373333pt;}
.y38{bottom:778.373333pt;}
.y8{bottom:778.693333pt;}
.y109{bottom:784.373333pt;}
.ydb{bottom:789.573333pt;}
.y60{bottom:793.253333pt;}
.y37{bottom:793.973333pt;}
.y88{bottom:797.813333pt;}
.y5f{bottom:799.973333pt;}
.yb4{bottom:802.533333pt;}
.yda{bottom:805.173333pt;}
.y36{bottom:809.653333pt;}
.y7{bottom:810.613333pt;}
.y108{bottom:813.013333pt;}
.yd9{bottom:820.853333pt;}
.y35{bottom:825.253333pt;}
.y87{bottom:826.533333pt;}
.yb3{bottom:833.173333pt;}
.y86{bottom:833.253333pt;}
.y5e{bottom:836.933333pt;}
.yb2{bottom:839.893333pt;}
.y6{bottom:843.813333pt;}
.y13d{bottom:848.853333pt;}
.yd8{bottom:852.453333pt;}
.y34{bottom:856.853333pt;}
.y5d{bottom:860.613333pt;}
.y85{bottom:868.453333pt;}
.y33{bottom:872.533333pt;}
.yb1{bottom:874.693333pt;}
.y5{bottom:877.893333pt;}
.yd7{bottom:884.053333pt;}
.y84{bottom:884.133333pt;}
.y32{bottom:888.133333pt;}
.y5c{bottom:892.213333pt;}
.y83{bottom:899.760000pt;}
.y4{bottom:899.840000pt;}
.yb0{bottom:902.480000pt;}
.y31{bottom:903.840000pt;}
.yaf{bottom:918.880000pt;}
.y30{bottom:919.440000pt;}
.y5b{bottom:920.960000pt;}
.y82{bottom:923.360000pt;}
.y13c{bottom:927.440000pt;}
.y5a{bottom:927.680000pt;}
.yd6{bottom:929.040000pt;}
.yfa{bottom:935.040000pt;}
.yae{bottom:935.280000pt;}
.y13b{bottom:943.040000pt;}
.y164{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.yad{bottom:951.760000pt;}
.yd5{bottom:953.360000pt;}
.y81{bottom:953.920000pt;}
.y13a{bottom:958.720000pt;}
.y80{bottom:960.640000pt;}
.y59{bottom:961.040000pt;}
.y2e{bottom:966.720000pt;}
.yac{bottom:968.160000pt;}
.y163{bottom:974.320000pt;}
.yd4{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y58{bottom:984.640000pt;}
.y162{bottom:990.000000pt;}
.y7f{bottom:995.840000pt;}
.yab{bottom:996.560000pt;}
.y2c{bottom:998.000000pt;}
.yd3{bottom:1001.920000pt;}
.y7e{bottom:1004.800000pt;}
.yaa{bottom:1012.960000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h17{height:23.600000pt;}
.h1a{height:23.626667pt;}
.h19{height:23.680000pt;}
.h2{height:26.105625pt;}
.h3{height:34.804688pt;}
.h18{height:45.246562pt;}
.h7{height:46.499062pt;}
.hc{height:48.726562pt;}
.h6{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:53.309531pt;}
.h9{height:55.631875pt;}
.h16{height:55.736250pt;}
.h10{height:59.363281pt;}
.h12{height:60.469844pt;}
.h8{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1b{height:66.625000pt;}
.ha{height:72.949844pt;}
.h13{height:73.379063pt;}
.hf{height:74.229844pt;}
.he{height:80.666875pt;}
.hb{height:86.243281pt;}
.h15{height:95.203281pt;}
.h11{height:98.266875pt;}
.h14{height:99.683281pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:81.306667pt;}
.w5{width:138.720000pt;}
.w3{width:186.400000pt;}
.w4{width:198.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2d{left:69.919988pt;}
.x1f{left:84.479988pt;}
.x2e{left:107.759988pt;}
.x15{left:147.786655pt;}
.xb{left:159.866655pt;}
.x10{left:166.186655pt;}
.xe{left:167.546655pt;}
.x3{left:171.306655pt;}
.x17{left:175.706655pt;}
.x19{left:185.626655pt;}
.x1a{left:190.666655pt;}
.x20{left:204.266667pt;}
.x12{left:205.546655pt;}
.x16{left:211.226655pt;}
.x5{left:218.906655pt;}
.x9{left:224.506655pt;}
.x7{left:232.106655pt;}
.x14{left:237.706655pt;}
.xc{left:239.706655pt;}
.x2c{left:248.746655pt;}
.x11{left:257.946655pt;}
.xd{left:259.306655pt;}
.x13{left:260.906655pt;}
.x27{left:278.906655pt;}
.x6{left:282.346655pt;}
.x23{left:286.666667pt;}
.x2a{left:287.946655pt;}
.xf{left:295.146655pt;}
.x18{left:304.586655pt;}
.x1b{left:330.586655pt;}
.x1c{left:333.946655pt;}
.x8{left:354.186655pt;}
.x1d{left:356.906655pt;}
.xa{left:358.586655pt;}
.x22{left:391.306667pt;}
.x1e{left:407.066655pt;}
.x24{left:426.026667pt;}
.x25{left:594.373322pt;}
.x26{left:603.653322pt;}
.x29{left:632.613322pt;}
.x2b{left:678.373322pt;}
.x4{left:711.413322pt;}
.x2{left:716.933333pt;}
.x28{left:735.253322pt;}
}




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