
    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_d1c40636dca525512916b90b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_47b2911c9f8effdcebf2bf98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_c7c5d8cbea40170f769e3bc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_f31c97bcd51a21a1ce8c1878.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_47b6922a589731cce02a9cf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_11635784b30ee82f045a9a29.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_8d4a12a5fa0b95b950ac175b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1fbec5fbf17261386c06e350.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_45a403faadc35dc6f873c808.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_76eefcf1103768ebe79b9e1e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_05a21c355957c9054ab6ad56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916992;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
@font-face{font-family:fff;src:url('chunks/assets/font_8cb9b4591cc46b6148f13625.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m3{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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.062326px;}
.lsb{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.235200px;}
.ls8{letter-spacing:-0.230400px;}
.lsf{letter-spacing:-0.036786px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.017657px;}
.ls5{letter-spacing:0.028600px;}
.ls1{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.lsd{letter-spacing:10.800000px;}
.ls7{letter-spacing:20.160000px;}
.ls3{letter-spacing:28.080000px;}
.ls10{letter-spacing:54.144000px;}
.ls6{letter-spacing:54.864000px;}
.ls2{letter-spacing:56.880000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.701764px;}
.ws7{word-spacing:-16.596000px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.360800px;}
.ws3{word-spacing:-15.150442px;}
.wse{word-spacing:-13.279731px;}
.ws9{word-spacing:-13.242945px;}
.wsd{word-spacing:-0.053119px;}
.wsa{word-spacing:-0.052972px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:399.065857px;}
.wsc{word-spacing:486.074951px;}
._34{margin-left:-8.490000px;}
._33{margin-left:-5.724000px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._5{width:3.004320px;}
._15{width:4.013040px;}
._1d{width:5.112000px;}
._1e{width:6.384000px;}
._21{width:7.560000px;}
._1c{width:8.568000px;}
._e{width:10.296000px;}
._d{width:11.664000px;}
._13{width:12.744000px;}
._22{width:13.770000px;}
._19{width:15.120000px;}
._1a{width:16.200000px;}
._17{width:19.152000px;}
._16{width:20.304000px;}
._25{width:21.312000px;}
._24{width:22.392000px;}
._14{width:24.624000px;}
._23{width:25.884000px;}
._12{width:27.864000px;}
._18{width:29.160000px;}
._f{width:30.456000px;}
._10{width:31.608000px;}
._26{width:33.120000px;}
._1b{width:35.208000px;}
._2e{width:36.216000px;}
._a{width:37.416000px;}
._b{width:38.730000px;}
._32{width:39.960000px;}
._7{width:41.328000px;}
._20{width:42.570000px;}
._2c{width:43.614000px;}
._29{width:44.856000px;}
._28{width:46.080000px;}
._2b{width:48.240000px;}
._2a{width:49.446000px;}
._27{width:52.416000px;}
._31{width:55.968000px;}
._6{width:57.216000px;}
._8{width:59.472000px;}
._9{width:60.624000px;}
._11{width:62.280000px;}
._2d{width:70.344000px;}
._1f{width:74.640000px;}
._30{width:78.894000px;}
._2f{width:79.992000px;}
._c{width:97.488000px;}
._4{width:1241.976000px;}
.fc6{color:rgb(0,102,204);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(68,84,106);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fse{font-size:47.086028px;}
.fsf{font-size:47.233172px;}
.fs5{font-size:48.240000px;}
.fsc{font-size:52.971781px;}
.fsd{font-size:53.118925px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:60.601767px;}
.fs8{font-size:60.727758px;}
.fsa{font-size:66.240000px;}
.fsb{font-size:66.384000px;}
.fs6{font-size:70.681063px;}
.fs10{font-size:70.776186px;}
.fs7{font-size:70.807054px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.536000px;}
.y54{bottom:6.880882px;}
.y7{bottom:7.416000px;}
.y52{bottom:16.929162px;}
.ydd{bottom:19.800000px;}
.yf6{bottom:24.736650px;}
.y53{bottom:25.087118px;}
.y9{bottom:26.640000px;}
.ydc{bottom:36.900000px;}
.yf5{bottom:40.628186px;}
.y8{bottom:47.700000px;}
.ydb{bottom:54.000000px;}
.y56{bottom:54.821013px;}
.yf4{bottom:56.556505px;}
.yfa{bottom:62.442261px;}
.y51{bottom:66.286238px;}
.y5{bottom:68.040000px;}
.yda{bottom:71.100000px;}
.y55{bottom:73.026743px;}
.yc6{bottom:76.065000px;}
.yd9{bottom:88.200000px;}
.yc5{bottom:93.165000px;}
.y35{bottom:97.056000px;}
.y110{bottom:99.936000px;}
.y58{bottom:104.052079px;}
.yd8{bottom:108.000000px;}
.y91{bottom:109.296000px;}
.yc4{bottom:110.265000px;}
.y5b{bottom:113.217960px;}
.y66{bottom:119.736000px;}
.y34{bottom:120.996000px;}
.y57{bottom:122.226307px;}
.yb2{bottom:122.940000px;}
.y10f{bottom:123.876000px;}
.yd7{bottom:125.130000px;}
.yc3{bottom:127.365000px;}
.y90{bottom:133.056000px;}
.yb1{bottom:140.040000px;}
.yd6{bottom:142.230000px;}
.y65{bottom:143.496000px;}
.y33{bottom:144.756000px;}
.yc2{bottom:147.165000px;}
.y10e{bottom:147.636000px;}
.y5a{bottom:151.041755px;}
.yf3{bottom:152.130842px;}
.yb0{bottom:156.960000px;}
.y8f{bottom:156.990000px;}
.yd5{bottom:159.330000px;}
.y50{bottom:160.150941px;}
.yc1{bottom:164.265000px;}
.y64{bottom:167.250000px;}
.yf2{bottom:168.051805px;}
.y32{bottom:168.510000px;}
.y59{bottom:169.222287px;}
.y10d{bottom:171.390000px;}
.yaf{bottom:174.060000px;}
.yd4{bottom:176.430000px;}
.y8e{bottom:180.750000px;}
.yc0{bottom:181.365000px;}
.y122{bottom:184.350000px;}
.ya1{bottom:188.640000px;}
.y63{bottom:191.010000px;}
.yae{bottom:191.160000px;}
.y31{bottom:192.270000px;}
.yd3{bottom:193.530000px;}
.y10c{bottom:195.150000px;}
.ybf{bottom:198.465000px;}
.y8d{bottom:204.510000px;}
.ya0{bottom:205.740000px;}
.y121{bottom:208.290000px;}
.yad{bottom:211.170000px;}
.y4f{bottom:211.429348px;}
.yd2{bottom:213.330000px;}
.y62{bottom:214.950000px;}
.y30{bottom:216.210000px;}
.ybe{bottom:218.265000px;}
.y10b{bottom:219.090000px;}
.y9f{bottom:222.840000px;}
.y8c{bottom:228.270000px;}
.yd1{bottom:230.430000px;}
.y120{bottom:232.050000px;}
.y4e{bottom:232.621073px;}
.ybd{bottom:235.410000px;}
.y61{bottom:238.710000px;}
.y2f{bottom:239.970000px;}
.yef{bottom:241.667856px;}
.y9e{bottom:242.640000px;}
.y10a{bottom:242.850000px;}
.yac{bottom:245.190000px;}
.yd0{bottom:247.530000px;}
.y8b{bottom:252.210000px;}
.ybc{bottom:252.510000px;}
.y11f{bottom:255.810000px;}
.yee{bottom:257.588818px;}
.y9d{bottom:259.740000px;}
.y60{bottom:262.470000px;}
.y2e{bottom:263.730000px;}
.ycf{bottom:264.630000px;}
.yf1{bottom:264.843034px;}
.yab{bottom:265.170000px;}
.y109{bottom:266.610000px;}
.ybb{bottom:269.610000px;}
.yed{bottom:273.480354px;}
.y8a{bottom:275.970000px;}
.y9c{bottom:276.840000px;}
.y11e{bottom:279.570000px;}
.yf0{bottom:280.763999px;}
.yce{bottom:281.550000px;}
.yaa{bottom:282.270000px;}
.y5f{bottom:286.230000px;}
.y2d{bottom:287.490000px;}
.yba{bottom:289.410000px;}
.yec{bottom:289.416027px;}
.y108{bottom:290.370000px;}
.y9b{bottom:296.820000px;}
.yfc{bottom:298.126971px;}
.ycd{bottom:298.650000px;}
.ya9{bottom:299.370000px;}
.y89{bottom:299.730000px;}
.y11d{bottom:303.330000px;}
.yeb{bottom:305.307565px;}
.yb9{bottom:306.510000px;}
.yf9{bottom:308.691865px;}
.y5e{bottom:310.170000px;}
.y2c{bottom:311.430000px;}
.y9a{bottom:313.740000px;}
.y107{bottom:314.130000px;}
.ycc{bottom:315.750000px;}
.ya8{bottom:319.170000px;}
.y88{bottom:323.490000px;}
.yb8{bottom:323.610000px;}
.y11c{bottom:327.270000px;}
.y99{bottom:330.840000px;}
.ycb{bottom:332.850000px;}
.y5d{bottom:333.930000px;}
.y2b{bottom:335.190000px;}
.ya7{bottom:336.270000px;}
.y106{bottom:338.115000px;}
.yb7{bottom:340.710000px;}
.y87{bottom:347.295000px;}
.y98{bottom:347.940000px;}
.y11b{bottom:351.075000px;}
.ya6{bottom:353.370000px;}
.y5c{bottom:353.775000px;}
.y4d{bottom:354.076249px;}
.y2a{bottom:358.995000px;}
.y105{bottom:361.875000px;}
.y97{bottom:365.040000px;}
.yea{bottom:369.565298px;}
.y86{bottom:371.235000px;}
.yfb{bottom:371.522296px;}
.y11a{bottom:374.835000px;}
.yf8{bottom:381.631096px;}
.y29{bottom:382.755000px;}
.y104{bottom:385.635000px;}
.y85{bottom:394.995000px;}
.y119{bottom:398.595000px;}
.yca{bottom:403.230000px;}
.ya5{bottom:404.430000px;}
.yb6{bottom:406.545000px;}
.y96{bottom:406.620000px;}
.y28{bottom:406.695000px;}
.y103{bottom:409.395000px;}
.y84{bottom:418.755000px;}
.yc9{bottom:420.330000px;}
.ya4{bottom:421.530000px;}
.y118{bottom:422.535000px;}
.yb5{bottom:423.645000px;}
.y95{bottom:423.720000px;}
.y27{bottom:430.455000px;}
.y102{bottom:433.335000px;}
.yc8{bottom:437.430000px;}
.ya3{bottom:438.630000px;}
.yb4{bottom:440.745000px;}
.y94{bottom:440.820000px;}
.y83{bottom:442.515000px;}
.y117{bottom:446.295000px;}
.y26{bottom:454.215000px;}
.yc7{bottom:454.530000px;}
.ya2{bottom:455.730000px;}
.y101{bottom:457.095000px;}
.yb3{bottom:457.845000px;}
.y93{bottom:457.920000px;}
.y82{bottom:466.455000px;}
.y116{bottom:470.055000px;}
.y25{bottom:477.975000px;}
.y100{bottom:480.855000px;}
.ye9{bottom:484.337471px;}
.ye2{bottom:484.337496px;}
.y7a{bottom:487.515000px;}
.y81{bottom:490.215000px;}
.ye5{bottom:492.327393px;}
.y115{bottom:493.815000px;}
.ye8{bottom:500.273151px;}
.ye1{bottom:500.273173px;}
.y24{bottom:501.735000px;}
.yff{bottom:504.615000px;}
.ye4{bottom:508.218927px;}
.y79{bottom:511.275000px;}
.y80{bottom:513.975000px;}
.ye7{bottom:516.164685px;}
.ye0{bottom:516.164707px;}
.y114{bottom:517.755000px;}
.ye3{bottom:524.139891px;}
.y23{bottom:525.675000px;}
.yfe{bottom:528.555000px;}
.ye6{bottom:532.085647px;}
.ydf{bottom:532.085669px;}
.yf7{bottom:532.232803px;}
.y78{bottom:535.035000px;}
.y7f{bottom:537.735000px;}
.y113{bottom:541.515000px;}
.yfd{bottom:548.355000px;}
.yde{bottom:548.694296px;}
.y22{bottom:549.435000px;}
.y77{bottom:558.795000px;}
.y7e{bottom:561.675000px;}
.y112{bottom:565.275000px;}
.y21{bottom:573.195000px;}
.y76{bottom:582.555000px;}
.y7d{bottom:585.435000px;}
.y111{bottom:589.035000px;}
.y20{bottom:596.955000px;}
.y75{bottom:606.525000px;}
.y7c{bottom:609.225000px;}
.y4c{bottom:613.005000px;}
.y1f{bottom:620.925000px;}
.y92{bottom:626.040000px;}
.y7b{bottom:629.025000px;}
.y74{bottom:630.285000px;}
.y4b{bottom:636.765000px;}
.y1e{bottom:644.685000px;}
.y73{bottom:654.045000px;}
.y4a{bottom:660.525000px;}
.y1d{bottom:668.445000px;}
.y72{bottom:677.805000px;}
.y49{bottom:684.285000px;}
.y1c{bottom:692.205000px;}
.y71{bottom:701.745000px;}
.y48{bottom:708.225000px;}
.y1b{bottom:716.145000px;}
.y70{bottom:725.505000px;}
.y47{bottom:731.985000px;}
.y1a{bottom:739.905000px;}
.y6f{bottom:749.265000px;}
.y46{bottom:755.745000px;}
.y19{bottom:763.665000px;}
.y6e{bottom:773.025000px;}
.y45{bottom:779.505000px;}
.y18{bottom:787.425000px;}
.y6d{bottom:796.965000px;}
.y44{bottom:803.265000px;}
.y17{bottom:811.365000px;}
.y6c{bottom:820.545000px;}
.y43{bottom:827.205000px;}
.y16{bottom:835.125000px;}
.y6b{bottom:845.565000px;}
.y42{bottom:850.965000px;}
.y15{bottom:858.885000px;}
.y6a{bottom:870.990000px;}
.y41{bottom:874.770000px;}
.y14{bottom:882.690000px;}
.y69{bottom:894.570000px;}
.y40{bottom:898.530000px;}
.y13{bottom:906.630000px;}
.y68{bottom:919.770000px;}
.y3f{bottom:922.470000px;}
.y12{bottom:930.390000px;}
.y67{bottom:944.790000px;}
.y3e{bottom:946.230000px;}
.y11{bottom:954.150000px;}
.y3d{bottom:969.990000px;}
.y10{bottom:977.910000px;}
.y3c{bottom:993.750000px;}
.yf{bottom:1001.670000px;}
.y3b{bottom:1017.690000px;}
.ye{bottom:1025.610000px;}
.y3a{bottom:1041.450000px;}
.yd{bottom:1055.310000px;}
.y39{bottom:1065.210000px;}
.yc{bottom:1073.130000px;}
.y38{bottom:1088.970000px;}
.yb{bottom:1099.410000px;}
.y37{bottom:1112.910000px;}
.ya{bottom:1131.090000px;}
.y36{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.h5{height:24.156000px;}
.h1d{height:33.015398px;}
.h1e{height:33.118572px;}
.h18{height:36.443965px;}
.h1a{height:36.545198px;}
.h19{height:37.142323px;}
.h1b{height:37.245496px;}
.ha{height:41.715352px;}
.h11{height:42.492255px;}
.h10{height:42.580596px;}
.h1c{height:42.607524px;}
.h14{height:45.572344px;}
.h15{height:46.445625px;}
.h16{height:46.546594px;}
.h2{height:46.696289px;}
.he{height:48.627743px;}
.hf{height:48.714424px;}
.h1f{height:49.626271px;}
.h7{height:50.484375px;}
.h3{height:51.677227px;}
.hb{height:51.996094px;}
.h12{height:52.417969px;}
.h4{height:54.000000px;}
.h6{height:59.066719px;}
.hc{height:59.343750px;}
.h9{height:62.261719px;}
.h8{height:82.808086px;}
.hd{height:251.352485px;}
.h13{height:527.400000px;}
.h17{height:580.482477px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.596000px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w6{width:546.203910px;}
.w7{width:726.249703px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:12.926273px;}
.x15{left:38.946467px;}
.x1e{left:40.047680px;}
.x14{left:48.637173px;}
.x7{left:53.280000px;}
.x18{left:54.300590px;}
.x37{left:75.014360px;}
.x4{left:95.795987px;}
.x47{left:97.809294px;}
.xd{left:100.295987px;}
.x4d{left:103.333505px;}
.x25{left:107.891987px;}
.x26{left:114.731987px;}
.x3a{left:116.076019px;}
.x24{left:118.007987px;}
.x1{left:121.715987px;}
.x4f{left:127.835987px;}
.x39{left:129.923376px;}
.x9{left:131.615987px;}
.x12{left:133.424624px;}
.x23{left:138.707987px;}
.x5{left:143.634000px;}
.x38{left:146.967410px;}
.x10{left:148.895987px;}
.x2{left:150.149987px;}
.xa{left:170.489987px;}
.x11{left:200.059798px;}
.x13{left:208.282246px;}
.x42{left:212.315153px;}
.x20{left:260.849987px;}
.x22{left:287.894987px;}
.x29{left:290.489987px;}
.xf{left:295.814987px;}
.x27{left:311.369987px;}
.x4c{left:320.913792px;}
.x28{left:324.509987px;}
.x4a{left:328.529835px;}
.x1b{left:332.335981px;}
.x1c{left:333.921729px;}
.x2a{left:340.169987px;}
.x3b{left:341.655362px;}
.x1d{left:351.629309px;}
.x16{left:353.806584px;}
.x1a{left:355.908328px;}
.x3c{left:357.815522px;}
.x3d{left:361.306824px;}
.x48{left:362.529520px;}
.xe{left:364.034987px;}
.x49{left:366.138672px;}
.xc{left:373.214987px;}
.x6{left:383.295000px;}
.x19{left:389.951686px;}
.x3{left:402.554987px;}
.xb{left:446.474987px;}
.x2f{left:468.824987px;}
.x30{left:475.664987px;}
.x2b{left:488.489987px;}
.x2d{left:489.929987px;}
.x2e{left:497.309987px;}
.x2c{left:515.669987px;}
.x8{left:517.605000px;}
.x40{left:524.794028px;}
.x3f{left:526.605970px;}
.x44{left:539.746230px;}
.x46{left:548.069376px;}
.x3e{left:552.532936px;}
.x41{left:554.256491px;}
.x45{left:572.258057px;}
.x43{left:614.801853px;}
.x35{left:649.109987px;}
.x31{left:653.549987px;}
.x36{left:655.949987px;}
.x33{left:664.889987px;}
.x34{left:686.339987px;}
.x32{left:688.319987px;}
.x4b{left:705.870324px;}
.x1f{left:746.609987px;}
.x4e{left:801.689987px;}
.x21{left:804.569987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.388734pt;}
.lsb{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.209067pt;}
.ls8{letter-spacing:-0.204800pt;}
.lsf{letter-spacing:-0.032699pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.015695pt;}
.ls5{letter-spacing:0.025422pt;}
.ls1{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.lsd{letter-spacing:9.600000pt;}
.ls7{letter-spacing:17.920000pt;}
.ls3{letter-spacing:24.960000pt;}
.ls10{letter-spacing:48.128000pt;}
.ls6{letter-spacing:48.768000pt;}
.ls2{letter-spacing:50.560000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.734901pt;}
.ws7{word-spacing:-14.752000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.542933pt;}
.ws3{word-spacing:-13.467059pt;}
.wse{word-spacing:-11.804206pt;}
.ws9{word-spacing:-11.771507pt;}
.wsd{word-spacing:-0.047217pt;}
.wsa{word-spacing:-0.047086pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:354.725207pt;}
.wsc{word-spacing:432.066623pt;}
._34{margin-left:-7.546667pt;}
._33{margin-left:-5.088000pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._5{width:2.670507pt;}
._15{width:3.567147pt;}
._1d{width:4.544000pt;}
._1e{width:5.674667pt;}
._21{width:6.720000pt;}
._1c{width:7.616000pt;}
._e{width:9.152000pt;}
._d{width:10.368000pt;}
._13{width:11.328000pt;}
._22{width:12.240000pt;}
._19{width:13.440000pt;}
._1a{width:14.400000pt;}
._17{width:17.024000pt;}
._16{width:18.048000pt;}
._25{width:18.944000pt;}
._24{width:19.904000pt;}
._14{width:21.888000pt;}
._23{width:23.008000pt;}
._12{width:24.768000pt;}
._18{width:25.920000pt;}
._f{width:27.072000pt;}
._10{width:28.096000pt;}
._26{width:29.440000pt;}
._1b{width:31.296000pt;}
._2e{width:32.192000pt;}
._a{width:33.258667pt;}
._b{width:34.426667pt;}
._32{width:35.520000pt;}
._7{width:36.736000pt;}
._20{width:37.840000pt;}
._2c{width:38.768000pt;}
._29{width:39.872000pt;}
._28{width:40.960000pt;}
._2b{width:42.880000pt;}
._2a{width:43.952000pt;}
._27{width:46.592000pt;}
._31{width:49.749333pt;}
._6{width:50.858667pt;}
._8{width:52.864000pt;}
._9{width:53.888000pt;}
._11{width:55.360000pt;}
._2d{width:62.528000pt;}
._1f{width:66.346667pt;}
._30{width:70.128000pt;}
._2f{width:71.104000pt;}
._c{width:86.656000pt;}
._4{width:1103.978667pt;}
.fse{font-size:41.854247pt;}
.fsf{font-size:41.985041pt;}
.fs5{font-size:42.880000pt;}
.fsc{font-size:47.086028pt;}
.fsd{font-size:47.216822pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:53.868238pt;}
.fs8{font-size:53.980230pt;}
.fsa{font-size:58.880000pt;}
.fsb{font-size:59.008000pt;}
.fs6{font-size:62.827612pt;}
.fs10{font-size:62.912165pt;}
.fs7{font-size:62.939604pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.032000pt;}
.y54{bottom:6.116340pt;}
.y7{bottom:6.592000pt;}
.y52{bottom:15.048144pt;}
.ydd{bottom:17.600000pt;}
.yf6{bottom:21.988134pt;}
.y53{bottom:22.299660pt;}
.y9{bottom:23.680000pt;}
.ydc{bottom:32.800000pt;}
.yf5{bottom:36.113943pt;}
.y8{bottom:42.400000pt;}
.ydb{bottom:48.000000pt;}
.y56{bottom:48.729789pt;}
.yf4{bottom:50.272449pt;}
.yfa{bottom:55.504232pt;}
.y51{bottom:58.921101pt;}
.y5{bottom:60.480000pt;}
.yda{bottom:63.200000pt;}
.y55{bottom:64.912661pt;}
.yc6{bottom:67.613333pt;}
.yd9{bottom:78.400000pt;}
.yc5{bottom:82.813333pt;}
.y35{bottom:86.272000pt;}
.y110{bottom:88.832000pt;}
.y58{bottom:92.490737pt;}
.yd8{bottom:96.000000pt;}
.y91{bottom:97.152000pt;}
.yc4{bottom:98.013333pt;}
.y5b{bottom:100.638187pt;}
.y66{bottom:106.432000pt;}
.y34{bottom:107.552000pt;}
.y57{bottom:108.645607pt;}
.yb2{bottom:109.280000pt;}
.y10f{bottom:110.112000pt;}
.yd7{bottom:111.226667pt;}
.yc3{bottom:113.213333pt;}
.y90{bottom:118.272000pt;}
.yb1{bottom:124.480000pt;}
.yd6{bottom:126.426667pt;}
.y65{bottom:127.552000pt;}
.y33{bottom:128.672000pt;}
.yc2{bottom:130.813333pt;}
.y10e{bottom:131.232000pt;}
.y5a{bottom:134.259338pt;}
.yf3{bottom:135.227415pt;}
.yb0{bottom:139.520000pt;}
.y8f{bottom:139.546667pt;}
.yd5{bottom:141.626667pt;}
.y50{bottom:142.356392pt;}
.yc1{bottom:146.013333pt;}
.y64{bottom:148.666667pt;}
.yf2{bottom:149.379382pt;}
.y32{bottom:149.786667pt;}
.y59{bottom:150.419810pt;}
.y10d{bottom:152.346667pt;}
.yaf{bottom:154.720000pt;}
.yd4{bottom:156.826667pt;}
.y8e{bottom:160.666667pt;}
.yc0{bottom:161.213333pt;}
.y122{bottom:163.866667pt;}
.ya1{bottom:167.680000pt;}
.y63{bottom:169.786667pt;}
.yae{bottom:169.920000pt;}
.y31{bottom:170.906667pt;}
.yd3{bottom:172.026667pt;}
.y10c{bottom:173.466667pt;}
.ybf{bottom:176.413333pt;}
.y8d{bottom:181.786667pt;}
.ya0{bottom:182.880000pt;}
.y121{bottom:185.146667pt;}
.yad{bottom:187.706667pt;}
.y4f{bottom:187.937198pt;}
.yd2{bottom:189.626667pt;}
.y62{bottom:191.066667pt;}
.y30{bottom:192.186667pt;}
.ybe{bottom:194.013333pt;}
.y10b{bottom:194.746667pt;}
.y9f{bottom:198.080000pt;}
.y8c{bottom:202.906667pt;}
.yd1{bottom:204.826667pt;}
.y120{bottom:206.266667pt;}
.y4e{bottom:206.774287pt;}
.ybd{bottom:209.253333pt;}
.y61{bottom:212.186667pt;}
.y2f{bottom:213.306667pt;}
.yef{bottom:214.815872pt;}
.y9e{bottom:215.680000pt;}
.y10a{bottom:215.866667pt;}
.yac{bottom:217.946667pt;}
.yd0{bottom:220.026667pt;}
.y8b{bottom:224.186667pt;}
.ybc{bottom:224.453333pt;}
.y11f{bottom:227.386667pt;}
.yee{bottom:228.967838pt;}
.y9d{bottom:230.880000pt;}
.y60{bottom:233.306667pt;}
.y2e{bottom:234.426667pt;}
.ycf{bottom:235.226667pt;}
.yf1{bottom:235.416030pt;}
.yab{bottom:235.706667pt;}
.y109{bottom:236.986667pt;}
.ybb{bottom:239.653333pt;}
.yed{bottom:243.093648pt;}
.y8a{bottom:245.306667pt;}
.y9c{bottom:246.080000pt;}
.y11e{bottom:248.506667pt;}
.yf0{bottom:249.567999pt;}
.yce{bottom:250.266667pt;}
.yaa{bottom:250.906667pt;}
.y5f{bottom:254.426667pt;}
.y2d{bottom:255.546667pt;}
.yba{bottom:257.253333pt;}
.yec{bottom:257.258691pt;}
.y108{bottom:258.106667pt;}
.y9b{bottom:263.840000pt;}
.yfc{bottom:265.001752pt;}
.ycd{bottom:265.466667pt;}
.ya9{bottom:266.106667pt;}
.y89{bottom:266.426667pt;}
.y11d{bottom:269.626667pt;}
.yeb{bottom:271.384502pt;}
.yb9{bottom:272.453333pt;}
.yf9{bottom:274.392769pt;}
.y5e{bottom:275.706667pt;}
.y2c{bottom:276.826667pt;}
.y9a{bottom:278.880000pt;}
.y107{bottom:279.226667pt;}
.ycc{bottom:280.666667pt;}
.ya8{bottom:283.706667pt;}
.y88{bottom:287.546667pt;}
.yb8{bottom:287.653333pt;}
.y11c{bottom:290.906667pt;}
.y99{bottom:294.080000pt;}
.ycb{bottom:295.866667pt;}
.y5d{bottom:296.826667pt;}
.y2b{bottom:297.946667pt;}
.ya7{bottom:298.906667pt;}
.y106{bottom:300.546667pt;}
.yb7{bottom:302.853333pt;}
.y87{bottom:308.706667pt;}
.y98{bottom:309.280000pt;}
.y11b{bottom:312.066667pt;}
.ya6{bottom:314.106667pt;}
.y5c{bottom:314.466667pt;}
.y4d{bottom:314.734444pt;}
.y2a{bottom:319.106667pt;}
.y105{bottom:321.666667pt;}
.y97{bottom:324.480000pt;}
.yea{bottom:328.502487pt;}
.y86{bottom:329.986667pt;}
.yfb{bottom:330.242041pt;}
.y11a{bottom:333.186667pt;}
.yf8{bottom:339.227641pt;}
.y29{bottom:340.226667pt;}
.y104{bottom:342.786667pt;}
.y85{bottom:351.106667pt;}
.y119{bottom:354.306667pt;}
.yca{bottom:358.426667pt;}
.ya5{bottom:359.493333pt;}
.yb6{bottom:361.373333pt;}
.y96{bottom:361.440000pt;}
.y28{bottom:361.506667pt;}
.y103{bottom:363.906667pt;}
.y84{bottom:372.226667pt;}
.yc9{bottom:373.626667pt;}
.ya4{bottom:374.693333pt;}
.y118{bottom:375.586667pt;}
.yb5{bottom:376.573333pt;}
.y95{bottom:376.640000pt;}
.y27{bottom:382.626667pt;}
.y102{bottom:385.186667pt;}
.yc8{bottom:388.826667pt;}
.ya3{bottom:389.893333pt;}
.yb4{bottom:391.773333pt;}
.y94{bottom:391.840000pt;}
.y83{bottom:393.346667pt;}
.y117{bottom:396.706667pt;}
.y26{bottom:403.746667pt;}
.yc7{bottom:404.026667pt;}
.ya2{bottom:405.093333pt;}
.y101{bottom:406.306667pt;}
.yb3{bottom:406.973333pt;}
.y93{bottom:407.040000pt;}
.y82{bottom:414.626667pt;}
.y116{bottom:417.826667pt;}
.y25{bottom:424.866667pt;}
.y100{bottom:427.426667pt;}
.ye9{bottom:430.522197pt;}
.ye2{bottom:430.522219pt;}
.y7a{bottom:433.346667pt;}
.y81{bottom:435.746667pt;}
.ye5{bottom:437.624349pt;}
.y115{bottom:438.946667pt;}
.ye8{bottom:444.687245pt;}
.ye1{bottom:444.687265pt;}
.y24{bottom:445.986667pt;}
.yff{bottom:448.546667pt;}
.ye4{bottom:451.750158pt;}
.y79{bottom:454.466667pt;}
.y80{bottom:456.866667pt;}
.ye7{bottom:458.813053pt;}
.ye0{bottom:458.813073pt;}
.y114{bottom:460.226667pt;}
.ye3{bottom:465.902126pt;}
.y23{bottom:467.266667pt;}
.yfe{bottom:469.826667pt;}
.ye6{bottom:472.965019pt;}
.ydf{bottom:472.965039pt;}
.yf7{bottom:473.095825pt;}
.y78{bottom:475.586667pt;}
.y7f{bottom:477.986667pt;}
.y113{bottom:481.346667pt;}
.yfd{bottom:487.426667pt;}
.yde{bottom:487.728263pt;}
.y22{bottom:488.386667pt;}
.y77{bottom:496.706667pt;}
.y7e{bottom:499.266667pt;}
.y112{bottom:502.466667pt;}
.y21{bottom:509.506667pt;}
.y76{bottom:517.826667pt;}
.y7d{bottom:520.386667pt;}
.y111{bottom:523.586667pt;}
.y20{bottom:530.626667pt;}
.y75{bottom:539.133333pt;}
.y7c{bottom:541.533333pt;}
.y4c{bottom:544.893333pt;}
.y1f{bottom:551.933333pt;}
.y92{bottom:556.480000pt;}
.y7b{bottom:559.133333pt;}
.y74{bottom:560.253333pt;}
.y4b{bottom:566.013333pt;}
.y1e{bottom:573.053333pt;}
.y73{bottom:581.373333pt;}
.y4a{bottom:587.133333pt;}
.y1d{bottom:594.173333pt;}
.y72{bottom:602.493333pt;}
.y49{bottom:608.253333pt;}
.y1c{bottom:615.293333pt;}
.y71{bottom:623.773333pt;}
.y48{bottom:629.533333pt;}
.y1b{bottom:636.573333pt;}
.y70{bottom:644.893333pt;}
.y47{bottom:650.653333pt;}
.y1a{bottom:657.693333pt;}
.y6f{bottom:666.013333pt;}
.y46{bottom:671.773333pt;}
.y19{bottom:678.813333pt;}
.y6e{bottom:687.133333pt;}
.y45{bottom:692.893333pt;}
.y18{bottom:699.933333pt;}
.y6d{bottom:708.413333pt;}
.y44{bottom:714.013333pt;}
.y17{bottom:721.213333pt;}
.y6c{bottom:729.373333pt;}
.y43{bottom:735.293333pt;}
.y16{bottom:742.333333pt;}
.y6b{bottom:751.613333pt;}
.y42{bottom:756.413333pt;}
.y15{bottom:763.453333pt;}
.y6a{bottom:774.213333pt;}
.y41{bottom:777.573333pt;}
.y14{bottom:784.613333pt;}
.y69{bottom:795.173333pt;}
.y40{bottom:798.693333pt;}
.y13{bottom:805.893333pt;}
.y68{bottom:817.573333pt;}
.y3f{bottom:819.973333pt;}
.y12{bottom:827.013333pt;}
.y67{bottom:839.813333pt;}
.y3e{bottom:841.093333pt;}
.y11{bottom:848.133333pt;}
.y3d{bottom:862.213333pt;}
.y10{bottom:869.253333pt;}
.y3c{bottom:883.333333pt;}
.yf{bottom:890.373333pt;}
.y3b{bottom:904.613333pt;}
.ye{bottom:911.653333pt;}
.y3a{bottom:925.733333pt;}
.yd{bottom:938.053333pt;}
.y39{bottom:946.853333pt;}
.yc{bottom:953.893333pt;}
.y38{bottom:967.973333pt;}
.yb{bottom:977.253333pt;}
.y37{bottom:989.253333pt;}
.ya{bottom:1005.413333pt;}
.y36{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.h5{height:21.472000pt;}
.h1d{height:29.347021pt;}
.h1e{height:29.438730pt;}
.h18{height:32.394635pt;}
.h1a{height:32.484620pt;}
.h19{height:33.015398pt;}
.h1b{height:33.107108pt;}
.ha{height:37.080312pt;}
.h11{height:37.770893pt;}
.h10{height:37.849419pt;}
.h1c{height:37.873355pt;}
.h14{height:40.508750pt;}
.h15{height:41.285000pt;}
.h16{height:41.374750pt;}
.h2{height:41.507812pt;}
.he{height:43.224661pt;}
.hf{height:43.301710pt;}
.h1f{height:44.112241pt;}
.h7{height:44.875000pt;}
.h3{height:45.935313pt;}
.hb{height:46.218750pt;}
.h12{height:46.593750pt;}
.h4{height:48.000000pt;}
.h6{height:52.503750pt;}
.hc{height:52.750000pt;}
.h9{height:55.343750pt;}
.h8{height:73.607188pt;}
.hd{height:223.424431pt;}
.h13{height:468.800000pt;}
.h17{height:515.984424pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.752000pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w6{width:485.514587pt;}
.w7{width:645.555292pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:11.490021pt;}
.x15{left:34.619081pt;}
.x1e{left:35.597938pt;}
.x14{left:43.233043pt;}
.x7{left:47.360000pt;}
.x18{left:48.267191pt;}
.x37{left:66.679431pt;}
.x4{left:85.151988pt;}
.x47{left:86.941594pt;}
.xd{left:89.151988pt;}
.x4d{left:91.852005pt;}
.x25{left:95.903988pt;}
.x26{left:101.983988pt;}
.x3a{left:103.178683pt;}
.x24{left:104.895988pt;}
.x1{left:108.191988pt;}
.x4f{left:113.631988pt;}
.x39{left:115.487445pt;}
.x9{left:116.991988pt;}
.x12{left:118.599665pt;}
.x23{left:123.295988pt;}
.x5{left:127.674667pt;}
.x38{left:130.637698pt;}
.x10{left:132.351988pt;}
.x2{left:133.466655pt;}
.xa{left:151.546655pt;}
.x11{left:177.830932pt;}
.x13{left:185.139774pt;}
.x42{left:188.724581pt;}
.x20{left:231.866655pt;}
.x22{left:255.906655pt;}
.x29{left:258.213322pt;}
.xf{left:262.946655pt;}
.x27{left:276.773322pt;}
.x4c{left:285.256704pt;}
.x28{left:288.453322pt;}
.x4a{left:292.026520pt;}
.x1b{left:295.409761pt;}
.x1c{left:296.819315pt;}
.x2a{left:302.373322pt;}
.x3b{left:303.693655pt;}
.x1d{left:312.559385pt;}
.x16{left:314.494741pt;}
.x1a{left:316.362958pt;}
.x3c{left:318.058242pt;}
.x3d{left:321.161622pt;}
.x48{left:322.248462pt;}
.xe{left:323.586655pt;}
.x49{left:325.456597pt;}
.xc{left:331.746655pt;}
.x6{left:340.706667pt;}
.x19{left:346.623721pt;}
.x3{left:357.826655pt;}
.xb{left:396.866655pt;}
.x2f{left:416.733322pt;}
.x30{left:422.813322pt;}
.x2b{left:434.213322pt;}
.x2d{left:435.493322pt;}
.x2e{left:442.053322pt;}
.x2c{left:458.373322pt;}
.x8{left:460.093333pt;}
.x40{left:466.483581pt;}
.x3f{left:468.094195pt;}
.x44{left:479.774427pt;}
.x46{left:487.172778pt;}
.x3e{left:491.140388pt;}
.x41{left:492.672436pt;}
.x45{left:508.673829pt;}
.x43{left:546.490536pt;}
.x35{left:576.986655pt;}
.x31{left:580.933322pt;}
.x36{left:583.066655pt;}
.x33{left:591.013322pt;}
.x34{left:610.079988pt;}
.x32{left:611.839988pt;}
.x4b{left:627.440288pt;}
.x1f{left:663.653322pt;}
.x4e{left:712.613322pt;}
.x21{left:715.173322pt;}
}




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