
    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_22df6c46399ccc580cd431c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114746;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_2a56d092dbae31c5b95429a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944336;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_6ea77083149680436a170f51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_a18f2d12febb647f6112b817.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944336;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_f058ce04a6cf92a5a17fa37c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_8c415cb904679760628d02e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_7ced4a082683e7eab6165386.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_b635ed7cb8910e3946c65c64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_ea05982ee175659444a86720.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_8d548205b845d5db54fca3ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.875977;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.414600px;}
.lsa{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.000006px;}
.ls9{letter-spacing:-0.000003px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006480px;}
.ls2{letter-spacing:0.012960px;}
.ls18{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.167040px;}
.ls0{letter-spacing:0.172800px;}
.ls6{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.187200px;}
.ls22{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.864000px;}
.ls19{letter-spacing:5.040000px;}
.ls12{letter-spacing:5.760000px;}
.ls1b{letter-spacing:9.360000px;}
.ls1f{letter-spacing:11.520000px;}
.ls1d{letter-spacing:16.560000px;}
.ls1c{letter-spacing:33.264000px;}
.ls17{letter-spacing:33.984000px;}
.ls1a{letter-spacing:846.120000px;}
.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;}
}
.ws1{word-spacing:-30.240000px;}
.ws2{word-spacing:-30.239997px;}
.ws15{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.504000px;}
.ws16{word-spacing:-18.288000px;}
.ws13{word-spacing:-18.144000px;}
.ws14{word-spacing:-18.072000px;}
.wsf{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.566480px;}
.wsd{word-spacing:-16.560000px;}
.wse{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.000000px;}
.wsc{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-831.888000px;}
._18{margin-left:-8.910720px;}
._1f{margin-left:-4.932240px;}
._5{margin-left:-3.763680px;}
._6{margin-left:-2.559360px;}
._0{margin-left:-1.397040px;}
._1{width:1.314720px;}
._7{width:3.245760px;}
._8{width:4.526400px;}
._c{width:5.729520px;}
._19{width:7.080960px;}
._12{width:8.118000px;}
._17{width:9.126960px;}
._10{width:10.203840px;}
._9{width:11.658240px;}
._a{width:12.885600px;}
._1b{width:14.200320px;}
._f{width:15.445920px;}
._1a{width:16.997040px;}
._b{width:19.010880px;}
._16{width:20.736000px;}
._15{width:22.356000px;}
._1e{width:23.688000px;}
._14{width:25.542000px;}
._13{width:26.838000px;}
._20{width:27.864000px;}
._27{width:29.235360px;}
._1c{width:30.240000px;}
._1d{width:31.570560px;}
._2a{width:33.013440px;}
._21{width:34.920000px;}
._e{width:36.961920px;}
._d{width:38.282880px;}
._2{width:55.952160px;}
._22{width:64.817280px;}
._3{width:90.163200px;}
._25{width:108.432000px;}
._26{width:109.510320px;}
._23{width:110.592000px;}
._24{width:112.020000px;}
._28{width:147.000000px;}
._29{width:148.008000px;}
._4{width:234.000000px;}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.340000px;}
.y24{bottom:2.880000px;}
.y63{bottom:3.420000px;}
.y3c{bottom:3.780000px;}
.y67{bottom:5.580000px;}
.y5{bottom:9.000000px;}
.y10{bottom:11.340000px;}
.y4c{bottom:11.880000px;}
.y49{bottom:15.300000px;}
.y57{bottom:16.020000px;}
.y23{bottom:18.540000px;}
.y8{bottom:19.440000px;}
.y62{bottom:20.334000px;}
.y66{bottom:21.420000px;}
.y3b{bottom:22.680000px;}
.yf{bottom:25.200000px;}
.y56{bottom:31.500000px;}
.y48{bottom:33.120000px;}
.y22{bottom:34.020000px;}
.y61{bottom:35.994000px;}
.y65{bottom:36.900000px;}
.y7{bottom:40.680000px;}
.y3a{bottom:41.580000px;}
.ye{bottom:44.820000px;}
.y55{bottom:46.980000px;}
.y21{bottom:49.500000px;}
.y47{bottom:50.760000px;}
.y69{bottom:57.096000px;}
.y2{bottom:57.816000px;}
.y5f{bottom:60.120000px;}
.y39{bottom:60.660000px;}
.yd{bottom:61.560000px;}
.y54{bottom:62.640000px;}
.y20{bottom:64.980000px;}
.y46{bottom:70.380000px;}
.y6{bottom:70.770000px;}
.yfe{bottom:75.456000px;}
.y5e{bottom:75.600000px;}
.y53{bottom:78.120000px;}
.y38{bottom:79.560000px;}
.y1f{bottom:80.640000px;}
.y45{bottom:82.620000px;}
.ydf{bottom:90.396000px;}
.y64{bottom:91.116000px;}
.y5d{bottom:91.305000px;}
.y52{bottom:93.645000px;}
.yc{bottom:94.500000px;}
.y44{bottom:94.680000px;}
.ya1{bottom:94.716000px;}
.y1e{bottom:96.120000px;}
.ybd{bottom:96.516000px;}
.y37{bottom:98.670000px;}
.yfd{bottom:98.676000px;}
.y83{bottom:102.096000px;}
.y43{bottom:106.740000px;}
.y5c{bottom:106.785000px;}
.y51{bottom:109.125000px;}
.y116{bottom:109.296000px;}
.yde{bottom:111.096000px;}
.y1d{bottom:111.600000px;}
.ya0{bottom:115.416000px;}
.y42{bottom:116.460000px;}
.ybc{bottom:117.216000px;}
.y36{bottom:117.570000px;}
.yfc{bottom:119.376000px;}
.y5b{bottom:122.265000px;}
.y82{bottom:122.796000px;}
.y141{bottom:124.596000px;}
.yb{bottom:124.740000px;}
.y50{bottom:124.785000px;}
.y1c{bottom:127.080000px;}
.y115{bottom:129.996000px;}
.ydd{bottom:131.796000px;}
.y9f{bottom:136.116000px;}
.y35{bottom:136.470000px;}
.y5a{bottom:137.745000px;}
.ybb{bottom:137.916000px;}
.ya{bottom:140.040000px;}
.yfb{bottom:140.076000px;}
.y4f{bottom:140.265000px;}
.y60{bottom:142.596000px;}
.y1b{bottom:142.740000px;}
.y81{bottom:143.496000px;}
.y140{bottom:145.296000px;}
.y114{bottom:150.690000px;}
.ydc{bottom:152.490000px;}
.y59{bottom:153.405000px;}
.y41{bottom:154.800000px;}
.y34{bottom:155.550000px;}
.y4e{bottom:155.745000px;}
.y9e{bottom:156.810000px;}
.yba{bottom:158.610000px;}
.y1a{bottom:160.380000px;}
.yfa{bottom:160.770000px;}
.y13f{bottom:165.990000px;}
.y40{bottom:166.890000px;}
.y58{bottom:168.885000px;}
.y113{bottom:171.390000px;}
.y80{bottom:171.570000px;}
.ydb{bottom:173.190000px;}
.y33{bottom:174.450000px;}
.y19{bottom:176.040000px;}
.y9d{bottom:177.510000px;}
.y3f{bottom:178.950000px;}
.yb9{bottom:179.310000px;}
.yf9{bottom:181.470000px;}
.y13e{bottom:186.690000px;}
.y7f{bottom:188.310000px;}
.y3e{bottom:191.010000px;}
.y18{bottom:191.520000px;}
.y4d{bottom:192.090000px;}
.y32{bottom:193.530000px;}
.yda{bottom:193.890000px;}
.y9c{bottom:198.210000px;}
.yb8{bottom:200.010000px;}
.yf8{bottom:202.170000px;}
.y17{bottom:207.000000px;}
.y13d{bottom:207.390000px;}
.y31{bottom:212.430000px;}
.y112{bottom:212.790000px;}
.yd9{bottom:214.590000px;}
.y9b{bottom:218.910000px;}
.yb7{bottom:220.710000px;}
.y16{bottom:222.480000px;}
.yf7{bottom:222.870000px;}
.y13c{bottom:228.090000px;}
.y30{bottom:231.330000px;}
.y111{bottom:233.490000px;}
.yd8{bottom:235.290000px;}
.y15{bottom:238.005000px;}
.y9a{bottom:239.610000px;}
.yb6{bottom:241.410000px;}
.yf6{bottom:243.570000px;}
.y13b{bottom:248.790000px;}
.y2f{bottom:250.410000px;}
.y110{bottom:254.190000px;}
.y147{bottom:254.370000px;}
.y14{bottom:255.825000px;}
.yd7{bottom:255.990000px;}
.y99{bottom:260.310000px;}
.yb5{bottom:262.110000px;}
.yf5{bottom:264.270000px;}
.y2e{bottom:269.310000px;}
.y13a{bottom:269.490000px;}
.y13{bottom:271.485000px;}
.y146{bottom:273.270000px;}
.y10f{bottom:274.890000px;}
.yd6{bottom:276.690000px;}
.y98{bottom:281.010000px;}
.yb4{bottom:282.855000px;}
.yf4{bottom:285.015000px;}
.y12{bottom:286.965000px;}
.y2d{bottom:288.390000px;}
.y139{bottom:290.235000px;}
.y145{bottom:292.395000px;}
.y10e{bottom:295.635000px;}
.yd5{bottom:297.435000px;}
.y97{bottom:301.755000px;}
.yb3{bottom:303.555000px;}
.yf3{bottom:305.715000px;}
.y2c{bottom:307.290000px;}
.y144{bottom:310.575000px;}
.y138{bottom:310.935000px;}
.y10d{bottom:316.335000px;}
.yd4{bottom:318.135000px;}
.y96{bottom:322.455000px;}
.yb2{bottom:324.255000px;}
.y143{bottom:326.055000px;}
.y2b{bottom:326.190000px;}
.yf2{bottom:326.415000px;}
.y137{bottom:331.635000px;}
.y10c{bottom:337.035000px;}
.yd3{bottom:338.835000px;}
.y142{bottom:342.255000px;}
.y95{bottom:343.155000px;}
.yb1{bottom:344.955000px;}
.y2a{bottom:345.270000px;}
.yf1{bottom:347.115000px;}
.y136{bottom:352.335000px;}
.y10b{bottom:357.735000px;}
.yd2{bottom:359.535000px;}
.y94{bottom:363.855000px;}
.y29{bottom:364.170000px;}
.yb0{bottom:365.655000px;}
.yf0{bottom:367.815000px;}
.y135{bottom:373.035000px;}
.y4b{bottom:374.295000px;}
.y10a{bottom:378.435000px;}
.yd1{bottom:380.235000px;}
.y28{bottom:383.295000px;}
.y93{bottom:384.555000px;}
.yaf{bottom:386.355000px;}
.yef{bottom:388.515000px;}
.y134{bottom:393.735000px;}
.y109{bottom:399.135000px;}
.y27{bottom:399.315000px;}
.yd0{bottom:400.935000px;}
.y92{bottom:405.255000px;}
.yae{bottom:407.055000px;}
.y26{bottom:407.955000px;}
.y3d{bottom:408.675000px;}
.yee{bottom:409.215000px;}
.y133{bottom:414.435000px;}
.y108{bottom:419.835000px;}
.ycf{bottom:421.635000px;}
.y91{bottom:425.955000px;}
.yad{bottom:427.755000px;}
.yed{bottom:429.915000px;}
.y132{bottom:435.135000px;}
.y107{bottom:440.535000px;}
.yce{bottom:442.335000px;}
.y90{bottom:446.655000px;}
.yac{bottom:448.455000px;}
.yec{bottom:450.615000px;}
.y131{bottom:455.835000px;}
.y106{bottom:461.235000px;}
.ycd{bottom:463.035000px;}
.y8f{bottom:467.355000px;}
.yab{bottom:469.155000px;}
.yeb{bottom:471.315000px;}
.y25{bottom:474.195000px;}
.y130{bottom:476.535000px;}
.y105{bottom:481.935000px;}
.ycc{bottom:483.735000px;}
.y8e{bottom:488.055000px;}
.yaa{bottom:489.855000px;}
.yea{bottom:492.015000px;}
.y12f{bottom:497.235000px;}
.y104{bottom:502.635000px;}
.ycb{bottom:504.435000px;}
.y8d{bottom:508.755000px;}
.ya9{bottom:510.555000px;}
.ye9{bottom:512.715000px;}
.y12e{bottom:517.935000px;}
.y103{bottom:523.335000px;}
.yca{bottom:525.135000px;}
.y8c{bottom:529.455000px;}
.ya8{bottom:531.255000px;}
.ye8{bottom:533.415000px;}
.y12d{bottom:538.635000px;}
.y102{bottom:544.935000px;}
.yc9{bottom:545.835000px;}
.y8b{bottom:550.155000px;}
.ya7{bottom:551.955000px;}
.ye7{bottom:554.115000px;}
.y12c{bottom:559.335000px;}
.y101{bottom:566.025000px;}
.yc8{bottom:566.565000px;}
.y8a{bottom:570.885000px;}
.ya6{bottom:572.685000px;}
.ye6{bottom:574.845000px;}
.y12b{bottom:580.065000px;}
.y100{bottom:586.725000px;}
.yc7{bottom:587.265000px;}
.y89{bottom:591.585000px;}
.ya5{bottom:593.385000px;}
.ye5{bottom:595.545000px;}
.y12a{bottom:600.765000px;}
.yff{bottom:603.465000px;}
.yc6{bottom:607.965000px;}
.y11{bottom:610.125000px;}
.y88{bottom:612.285000px;}
.ya4{bottom:614.085000px;}
.ye4{bottom:616.245000px;}
.y129{bottom:621.465000px;}
.yc5{bottom:628.665000px;}
.y87{bottom:632.985000px;}
.ya3{bottom:634.785000px;}
.ye3{bottom:636.945000px;}
.y128{bottom:642.165000px;}
.yc4{bottom:649.365000px;}
.ya2{bottom:651.525000px;}
.y86{bottom:653.685000px;}
.ye2{bottom:657.645000px;}
.y127{bottom:662.865000px;}
.yc3{bottom:670.065000px;}
.y85{bottom:674.385000px;}
.ye1{bottom:678.345000px;}
.y126{bottom:683.565000px;}
.yc2{bottom:690.765000px;}
.y84{bottom:695.085000px;}
.ye0{bottom:699.045000px;}
.y125{bottom:704.265000px;}
.yc1{bottom:711.465000px;}
.y7e{bottom:715.785000px;}
.y124{bottom:724.965000px;}
.yc0{bottom:732.165000px;}
.y7d{bottom:736.485000px;}
.y123{bottom:745.665000px;}
.ybf{bottom:752.865000px;}
.y7c{bottom:757.185000px;}
.y122{bottom:766.365000px;}
.ybe{bottom:769.605000px;}
.y7b{bottom:777.885000px;}
.y121{bottom:787.065000px;}
.y7a{bottom:798.585000px;}
.y120{bottom:807.765000px;}
.y79{bottom:819.285000px;}
.y11f{bottom:828.285000px;}
.y78{bottom:839.985000px;}
.y11e{bottom:849.030000px;}
.y77{bottom:860.730000px;}
.y11d{bottom:869.730000px;}
.y76{bottom:881.430000px;}
.y11c{bottom:890.430000px;}
.y75{bottom:902.130000px;}
.y9{bottom:909.690000px;}
.y11b{bottom:911.130000px;}
.y74{bottom:922.830000px;}
.y11a{bottom:932.910000px;}
.y73{bottom:943.530000px;}
.y119{bottom:953.250000px;}
.y72{bottom:964.230000px;}
.y118{bottom:970.350000px;}
.y71{bottom:984.930000px;}
.y117{bottom:987.630000px;}
.y70{bottom:1005.630000px;}
.y6f{bottom:1026.330000px;}
.y6e{bottom:1047.030000px;}
.y4{bottom:1065.570000px;}
.y6d{bottom:1067.730000px;}
.y6c{bottom:1088.430000px;}
.y6b{bottom:1109.130000px;}
.y6a{bottom:1129.830000px;}
.y68{bottom:1159.200000px;}
.y3{bottom:1175.400000px;}
.y1{bottom:1194.480000px;}
.ha{height:28.736719px;}
.h14{height:30.198516px;}
.h18{height:33.480000px;}
.hb{height:34.884492px;}
.hd{height:38.100586px;}
.he{height:39.049805px;}
.h15{height:42.164648px;}
.h17{height:43.215117px;}
.h3{height:44.002969px;}
.h1c{height:44.507812px;}
.h1e{height:47.901094px;}
.h1a{height:48.780000px;}
.h1f{height:49.255313px;}
.h20{height:50.800781px;}
.h1b{height:51.480000px;}
.h11{height:52.066406px;}
.h21{height:52.417969px;}
.h1d{height:53.709961px;}
.h12{height:54.596250px;}
.h8{height:59.343750px;}
.h2{height:59.439023px;}
.h6{height:63.180000px;}
.h16{height:64.800000px;}
.h10{height:70.995234px;}
.h22{height:71.613281px;}
.h9{height:81.000000px;}
.h5{height:90.180000px;}
.h4{height:106.596000px;}
.h7{height:155.160000px;}
.h19{height:181.470000px;}
.h13{height:200.730000px;}
.hc{height:299.550000px;}
.hf{height:435.495000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:195.510000px;}
.w8{width:400.785000px;}
.w7{width:434.055000px;}
.w4{width:639.690000px;}
.w6{width:640.050000px;}
.w5{width:835.560000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x10{left:9.180000px;}
.x11{left:11.160000px;}
.xa{left:12.240000px;}
.x13{left:14.400000px;}
.xf{left:21.780000px;}
.x3{left:28.620000px;}
.x9{left:30.060000px;}
.x1e{left:31.860000px;}
.x12{left:42.660000px;}
.x14{left:73.656000px;}
.x30{left:77.039987px;}
.x1{left:80.819987px;}
.x26{left:87.659987px;}
.x2e{left:88.739987px;}
.xb{left:91.296000px;}
.x29{left:96.515987px;}
.x19{left:103.530000px;}
.x2a{left:107.855987px;}
.x2f{left:113.075987px;}
.x23{left:114.515987px;}
.x20{left:130.715987px;}
.x2{left:133.955987px;}
.x24{left:140.975987px;}
.x4{left:146.550000px;}
.x1f{left:176.430000px;}
.x17{left:183.810000px;}
.x1b{left:219.090000px;}
.x5{left:224.130000px;}
.x8{left:243.405000px;}
.xd{left:250.815000px;}
.xc{left:302.655000px;}
.x1c{left:337.395000px;}
.xe{left:343.155000px;}
.x1a{left:345.855000px;}
.x1d{left:350.535000px;}
.x25{left:360.434987px;}
.x2c{left:426.314987px;}
.x28{left:446.654987px;}
.x18{left:463.395000px;}
.x16{left:483.420000px;}
.x21{left:512.384987px;}
.x15{left:530.220000px;}
.x7{left:631.950000px;}
.x22{left:788.729987px;}
.x2b{left:805.469987px;}
.x2d{left:806.549987px;}
.x27{left:811.949987px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.000005pt;}
.ls9{letter-spacing:-0.000003pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005760pt;}
.ls2{letter-spacing:0.011520pt;}
.ls18{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.148480pt;}
.ls0{letter-spacing:0.153600pt;}
.ls6{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.166400pt;}
.ls22{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls19{letter-spacing:4.480000pt;}
.ls12{letter-spacing:5.120000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls1f{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:14.720000pt;}
.ls1c{letter-spacing:29.568000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls1a{letter-spacing:752.106667pt;}
.ws1{word-spacing:-26.880000pt;}
.ws2{word-spacing:-26.879997pt;}
.ws15{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.448000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws14{word-spacing:-16.064000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.725760pt;}
.wsd{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.680000pt;}
.wsa{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.000000pt;}
.wsc{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-739.456000pt;}
._18{margin-left:-7.920640pt;}
._1f{margin-left:-4.384213pt;}
._5{margin-left:-3.345493pt;}
._6{margin-left:-2.274987pt;}
._0{margin-left:-1.241813pt;}
._1{width:1.168640pt;}
._7{width:2.885120pt;}
._8{width:4.023467pt;}
._c{width:5.092907pt;}
._19{width:6.294187pt;}
._12{width:7.216000pt;}
._17{width:8.112853pt;}
._10{width:9.070080pt;}
._9{width:10.362880pt;}
._a{width:11.453867pt;}
._1b{width:12.622507pt;}
._f{width:13.729707pt;}
._1a{width:15.108480pt;}
._b{width:16.898560pt;}
._16{width:18.432000pt;}
._15{width:19.872000pt;}
._1e{width:21.056000pt;}
._14{width:22.704000pt;}
._13{width:23.856000pt;}
._20{width:24.768000pt;}
._27{width:25.986987pt;}
._1c{width:26.880000pt;}
._1d{width:28.062720pt;}
._2a{width:29.345280pt;}
._21{width:31.040000pt;}
._e{width:32.855040pt;}
._d{width:34.029227pt;}
._2{width:49.735253pt;}
._22{width:57.615360pt;}
._3{width:80.145067pt;}
._25{width:96.384000pt;}
._26{width:97.342507pt;}
._23{width:98.304000pt;}
._24{width:99.573333pt;}
._28{width:130.666667pt;}
._29{width:131.562667pt;}
._4{width:208.000000pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.080000pt;}
.y24{bottom:2.560000pt;}
.y63{bottom:3.040000pt;}
.y3c{bottom:3.360000pt;}
.y67{bottom:4.960000pt;}
.y5{bottom:8.000000pt;}
.y10{bottom:10.080000pt;}
.y4c{bottom:10.560000pt;}
.y49{bottom:13.600000pt;}
.y57{bottom:14.240000pt;}
.y23{bottom:16.480000pt;}
.y8{bottom:17.280000pt;}
.y62{bottom:18.074667pt;}
.y66{bottom:19.040000pt;}
.y3b{bottom:20.160000pt;}
.yf{bottom:22.400000pt;}
.y56{bottom:28.000000pt;}
.y48{bottom:29.440000pt;}
.y22{bottom:30.240000pt;}
.y61{bottom:31.994667pt;}
.y65{bottom:32.800000pt;}
.y7{bottom:36.160000pt;}
.y3a{bottom:36.960000pt;}
.ye{bottom:39.840000pt;}
.y55{bottom:41.760000pt;}
.y21{bottom:44.000000pt;}
.y47{bottom:45.120000pt;}
.y69{bottom:50.752000pt;}
.y2{bottom:51.392000pt;}
.y5f{bottom:53.440000pt;}
.y39{bottom:53.920000pt;}
.yd{bottom:54.720000pt;}
.y54{bottom:55.680000pt;}
.y20{bottom:57.760000pt;}
.y46{bottom:62.560000pt;}
.y6{bottom:62.906667pt;}
.yfe{bottom:67.072000pt;}
.y5e{bottom:67.200000pt;}
.y53{bottom:69.440000pt;}
.y38{bottom:70.720000pt;}
.y1f{bottom:71.680000pt;}
.y45{bottom:73.440000pt;}
.ydf{bottom:80.352000pt;}
.y64{bottom:80.992000pt;}
.y5d{bottom:81.160000pt;}
.y52{bottom:83.240000pt;}
.yc{bottom:84.000000pt;}
.y44{bottom:84.160000pt;}
.ya1{bottom:84.192000pt;}
.y1e{bottom:85.440000pt;}
.ybd{bottom:85.792000pt;}
.y37{bottom:87.706667pt;}
.yfd{bottom:87.712000pt;}
.y83{bottom:90.752000pt;}
.y43{bottom:94.880000pt;}
.y5c{bottom:94.920000pt;}
.y51{bottom:97.000000pt;}
.y116{bottom:97.152000pt;}
.yde{bottom:98.752000pt;}
.y1d{bottom:99.200000pt;}
.ya0{bottom:102.592000pt;}
.y42{bottom:103.520000pt;}
.ybc{bottom:104.192000pt;}
.y36{bottom:104.506667pt;}
.yfc{bottom:106.112000pt;}
.y5b{bottom:108.680000pt;}
.y82{bottom:109.152000pt;}
.y141{bottom:110.752000pt;}
.yb{bottom:110.880000pt;}
.y50{bottom:110.920000pt;}
.y1c{bottom:112.960000pt;}
.y115{bottom:115.552000pt;}
.ydd{bottom:117.152000pt;}
.y9f{bottom:120.992000pt;}
.y35{bottom:121.306667pt;}
.y5a{bottom:122.440000pt;}
.ybb{bottom:122.592000pt;}
.ya{bottom:124.480000pt;}
.yfb{bottom:124.512000pt;}
.y4f{bottom:124.680000pt;}
.y60{bottom:126.752000pt;}
.y1b{bottom:126.880000pt;}
.y81{bottom:127.552000pt;}
.y140{bottom:129.152000pt;}
.y114{bottom:133.946667pt;}
.ydc{bottom:135.546667pt;}
.y59{bottom:136.360000pt;}
.y41{bottom:137.600000pt;}
.y34{bottom:138.266667pt;}
.y4e{bottom:138.440000pt;}
.y9e{bottom:139.386667pt;}
.yba{bottom:140.986667pt;}
.y1a{bottom:142.560000pt;}
.yfa{bottom:142.906667pt;}
.y13f{bottom:147.546667pt;}
.y40{bottom:148.346667pt;}
.y58{bottom:150.120000pt;}
.y113{bottom:152.346667pt;}
.y80{bottom:152.506667pt;}
.ydb{bottom:153.946667pt;}
.y33{bottom:155.066667pt;}
.y19{bottom:156.480000pt;}
.y9d{bottom:157.786667pt;}
.y3f{bottom:159.066667pt;}
.yb9{bottom:159.386667pt;}
.yf9{bottom:161.306667pt;}
.y13e{bottom:165.946667pt;}
.y7f{bottom:167.386667pt;}
.y3e{bottom:169.786667pt;}
.y18{bottom:170.240000pt;}
.y4d{bottom:170.746667pt;}
.y32{bottom:172.026667pt;}
.yda{bottom:172.346667pt;}
.y9c{bottom:176.186667pt;}
.yb8{bottom:177.786667pt;}
.yf8{bottom:179.706667pt;}
.y17{bottom:184.000000pt;}
.y13d{bottom:184.346667pt;}
.y31{bottom:188.826667pt;}
.y112{bottom:189.146667pt;}
.yd9{bottom:190.746667pt;}
.y9b{bottom:194.586667pt;}
.yb7{bottom:196.186667pt;}
.y16{bottom:197.760000pt;}
.yf7{bottom:198.106667pt;}
.y13c{bottom:202.746667pt;}
.y30{bottom:205.626667pt;}
.y111{bottom:207.546667pt;}
.yd8{bottom:209.146667pt;}
.y15{bottom:211.560000pt;}
.y9a{bottom:212.986667pt;}
.yb6{bottom:214.586667pt;}
.yf6{bottom:216.506667pt;}
.y13b{bottom:221.146667pt;}
.y2f{bottom:222.586667pt;}
.y110{bottom:225.946667pt;}
.y147{bottom:226.106667pt;}
.y14{bottom:227.400000pt;}
.yd7{bottom:227.546667pt;}
.y99{bottom:231.386667pt;}
.yb5{bottom:232.986667pt;}
.yf5{bottom:234.906667pt;}
.y2e{bottom:239.386667pt;}
.y13a{bottom:239.546667pt;}
.y13{bottom:241.320000pt;}
.y146{bottom:242.906667pt;}
.y10f{bottom:244.346667pt;}
.yd6{bottom:245.946667pt;}
.y98{bottom:249.786667pt;}
.yb4{bottom:251.426667pt;}
.yf4{bottom:253.346667pt;}
.y12{bottom:255.080000pt;}
.y2d{bottom:256.346667pt;}
.y139{bottom:257.986667pt;}
.y145{bottom:259.906667pt;}
.y10e{bottom:262.786667pt;}
.yd5{bottom:264.386667pt;}
.y97{bottom:268.226667pt;}
.yb3{bottom:269.826667pt;}
.yf3{bottom:271.746667pt;}
.y2c{bottom:273.146667pt;}
.y144{bottom:276.066667pt;}
.y138{bottom:276.386667pt;}
.y10d{bottom:281.186667pt;}
.yd4{bottom:282.786667pt;}
.y96{bottom:286.626667pt;}
.yb2{bottom:288.226667pt;}
.y143{bottom:289.826667pt;}
.y2b{bottom:289.946667pt;}
.yf2{bottom:290.146667pt;}
.y137{bottom:294.786667pt;}
.y10c{bottom:299.586667pt;}
.yd3{bottom:301.186667pt;}
.y142{bottom:304.226667pt;}
.y95{bottom:305.026667pt;}
.yb1{bottom:306.626667pt;}
.y2a{bottom:306.906667pt;}
.yf1{bottom:308.546667pt;}
.y136{bottom:313.186667pt;}
.y10b{bottom:317.986667pt;}
.yd2{bottom:319.586667pt;}
.y94{bottom:323.426667pt;}
.y29{bottom:323.706667pt;}
.yb0{bottom:325.026667pt;}
.yf0{bottom:326.946667pt;}
.y135{bottom:331.586667pt;}
.y4b{bottom:332.706667pt;}
.y10a{bottom:336.386667pt;}
.yd1{bottom:337.986667pt;}
.y28{bottom:340.706667pt;}
.y93{bottom:341.826667pt;}
.yaf{bottom:343.426667pt;}
.yef{bottom:345.346667pt;}
.y134{bottom:349.986667pt;}
.y109{bottom:354.786667pt;}
.y27{bottom:354.946667pt;}
.yd0{bottom:356.386667pt;}
.y92{bottom:360.226667pt;}
.yae{bottom:361.826667pt;}
.y26{bottom:362.626667pt;}
.y3d{bottom:363.266667pt;}
.yee{bottom:363.746667pt;}
.y133{bottom:368.386667pt;}
.y108{bottom:373.186667pt;}
.ycf{bottom:374.786667pt;}
.y91{bottom:378.626667pt;}
.yad{bottom:380.226667pt;}
.yed{bottom:382.146667pt;}
.y132{bottom:386.786667pt;}
.y107{bottom:391.586667pt;}
.yce{bottom:393.186667pt;}
.y90{bottom:397.026667pt;}
.yac{bottom:398.626667pt;}
.yec{bottom:400.546667pt;}
.y131{bottom:405.186667pt;}
.y106{bottom:409.986667pt;}
.ycd{bottom:411.586667pt;}
.y8f{bottom:415.426667pt;}
.yab{bottom:417.026667pt;}
.yeb{bottom:418.946667pt;}
.y25{bottom:421.506667pt;}
.y130{bottom:423.586667pt;}
.y105{bottom:428.386667pt;}
.ycc{bottom:429.986667pt;}
.y8e{bottom:433.826667pt;}
.yaa{bottom:435.426667pt;}
.yea{bottom:437.346667pt;}
.y12f{bottom:441.986667pt;}
.y104{bottom:446.786667pt;}
.ycb{bottom:448.386667pt;}
.y8d{bottom:452.226667pt;}
.ya9{bottom:453.826667pt;}
.ye9{bottom:455.746667pt;}
.y12e{bottom:460.386667pt;}
.y103{bottom:465.186667pt;}
.yca{bottom:466.786667pt;}
.y8c{bottom:470.626667pt;}
.ya8{bottom:472.226667pt;}
.ye8{bottom:474.146667pt;}
.y12d{bottom:478.786667pt;}
.y102{bottom:484.386667pt;}
.yc9{bottom:485.186667pt;}
.y8b{bottom:489.026667pt;}
.ya7{bottom:490.626667pt;}
.ye7{bottom:492.546667pt;}
.y12c{bottom:497.186667pt;}
.y101{bottom:503.133333pt;}
.yc8{bottom:503.613333pt;}
.y8a{bottom:507.453333pt;}
.ya6{bottom:509.053333pt;}
.ye6{bottom:510.973333pt;}
.y12b{bottom:515.613333pt;}
.y100{bottom:521.533333pt;}
.yc7{bottom:522.013333pt;}
.y89{bottom:525.853333pt;}
.ya5{bottom:527.453333pt;}
.ye5{bottom:529.373333pt;}
.y12a{bottom:534.013333pt;}
.yff{bottom:536.413333pt;}
.yc6{bottom:540.413333pt;}
.y11{bottom:542.333333pt;}
.y88{bottom:544.253333pt;}
.ya4{bottom:545.853333pt;}
.ye4{bottom:547.773333pt;}
.y129{bottom:552.413333pt;}
.yc5{bottom:558.813333pt;}
.y87{bottom:562.653333pt;}
.ya3{bottom:564.253333pt;}
.ye3{bottom:566.173333pt;}
.y128{bottom:570.813333pt;}
.yc4{bottom:577.213333pt;}
.ya2{bottom:579.133333pt;}
.y86{bottom:581.053333pt;}
.ye2{bottom:584.573333pt;}
.y127{bottom:589.213333pt;}
.yc3{bottom:595.613333pt;}
.y85{bottom:599.453333pt;}
.ye1{bottom:602.973333pt;}
.y126{bottom:607.613333pt;}
.yc2{bottom:614.013333pt;}
.y84{bottom:617.853333pt;}
.ye0{bottom:621.373333pt;}
.y125{bottom:626.013333pt;}
.yc1{bottom:632.413333pt;}
.y7e{bottom:636.253333pt;}
.y124{bottom:644.413333pt;}
.yc0{bottom:650.813333pt;}
.y7d{bottom:654.653333pt;}
.y123{bottom:662.813333pt;}
.ybf{bottom:669.213333pt;}
.y7c{bottom:673.053333pt;}
.y122{bottom:681.213333pt;}
.ybe{bottom:684.093333pt;}
.y7b{bottom:691.453333pt;}
.y121{bottom:699.613333pt;}
.y7a{bottom:709.853333pt;}
.y120{bottom:718.013333pt;}
.y79{bottom:728.253333pt;}
.y11f{bottom:736.253333pt;}
.y78{bottom:746.653333pt;}
.y11e{bottom:754.693333pt;}
.y77{bottom:765.093333pt;}
.y11d{bottom:773.093333pt;}
.y76{bottom:783.493333pt;}
.y11c{bottom:791.493333pt;}
.y75{bottom:801.893333pt;}
.y9{bottom:808.613333pt;}
.y11b{bottom:809.893333pt;}
.y74{bottom:820.293333pt;}
.y11a{bottom:829.253333pt;}
.y73{bottom:838.693333pt;}
.y119{bottom:847.333333pt;}
.y72{bottom:857.093333pt;}
.y118{bottom:862.533333pt;}
.y71{bottom:875.493333pt;}
.y117{bottom:877.893333pt;}
.y70{bottom:893.893333pt;}
.y6f{bottom:912.293333pt;}
.y6e{bottom:930.693333pt;}
.y4{bottom:947.173333pt;}
.y6d{bottom:949.093333pt;}
.y6c{bottom:967.493333pt;}
.y6b{bottom:985.893333pt;}
.y6a{bottom:1004.293333pt;}
.y68{bottom:1030.400000pt;}
.y3{bottom:1044.800000pt;}
.y1{bottom:1061.760000pt;}
.ha{height:25.543750pt;}
.h14{height:26.843125pt;}
.h18{height:29.760000pt;}
.hb{height:31.008437pt;}
.hd{height:33.867188pt;}
.he{height:34.710938pt;}
.h15{height:37.479688pt;}
.h17{height:38.413438pt;}
.h3{height:39.113750pt;}
.h1c{height:39.562500pt;}
.h1e{height:42.578750pt;}
.h1a{height:43.360000pt;}
.h1f{height:43.782500pt;}
.h20{height:45.156250pt;}
.h1b{height:45.760000pt;}
.h11{height:46.281250pt;}
.h21{height:46.593750pt;}
.h1d{height:47.742188pt;}
.h12{height:48.530000pt;}
.h8{height:52.750000pt;}
.h2{height:52.834688pt;}
.h6{height:56.160000pt;}
.h16{height:57.600000pt;}
.h10{height:63.106875pt;}
.h22{height:63.656250pt;}
.h9{height:72.000000pt;}
.h5{height:80.160000pt;}
.h4{height:94.752000pt;}
.h7{height:137.920000pt;}
.h19{height:161.306667pt;}
.h13{height:178.426667pt;}
.hc{height:266.266667pt;}
.hf{height:387.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:173.786667pt;}
.w8{width:356.253333pt;}
.w7{width:385.826667pt;}
.w4{width:568.613333pt;}
.w6{width:568.933333pt;}
.w5{width:742.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x10{left:8.160000pt;}
.x11{left:9.920000pt;}
.xa{left:10.880000pt;}
.x13{left:12.800000pt;}
.xf{left:19.360000pt;}
.x3{left:25.440000pt;}
.x9{left:26.720000pt;}
.x1e{left:28.320000pt;}
.x12{left:37.920000pt;}
.x14{left:65.472000pt;}
.x30{left:68.479988pt;}
.x1{left:71.839988pt;}
.x26{left:77.919988pt;}
.x2e{left:78.879988pt;}
.xb{left:81.152000pt;}
.x29{left:85.791988pt;}
.x19{left:92.026667pt;}
.x2a{left:95.871988pt;}
.x2f{left:100.511988pt;}
.x23{left:101.791988pt;}
.x20{left:116.191988pt;}
.x2{left:119.071988pt;}
.x24{left:125.311988pt;}
.x4{left:130.266667pt;}
.x1f{left:156.826667pt;}
.x17{left:163.386667pt;}
.x1b{left:194.746667pt;}
.x5{left:199.226667pt;}
.x8{left:216.360000pt;}
.xd{left:222.946667pt;}
.xc{left:269.026667pt;}
.x1c{left:299.906667pt;}
.xe{left:305.026667pt;}
.x1a{left:307.426667pt;}
.x1d{left:311.586667pt;}
.x25{left:320.386655pt;}
.x2c{left:378.946655pt;}
.x28{left:397.026655pt;}
.x18{left:411.906667pt;}
.x16{left:429.706667pt;}
.x21{left:455.453322pt;}
.x15{left:471.306667pt;}
.x7{left:561.733333pt;}
.x22{left:701.093322pt;}
.x2b{left:715.973322pt;}
.x2d{left:716.933322pt;}
.x27{left:721.733322pt;}
}




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