
    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_c371d1d7203d57782757bc35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_35db39e7eed3c93d2aef611a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926758;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_83c76d1c1dcf33137fa82aa2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.709473;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_63f7609fcaf4a9b03dbf1c81.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_651a4b0072989ced04222053.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_533e4465b32bb845b156788b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_9b0b86ecd83cc821e7f1e3ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_d13b8d455fba68901d2b7815.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_d13b8d455fba68901d2b7815.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_dd1daf13c4b84fb00347a61b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898438;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_dce7b93287ffb437a174d1e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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;}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.594000px;}
.ls4{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.486000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.324000px;}
.ls15{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.042000px;}
.lsb{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.486000px;}
.ls23{letter-spacing:0.600000px;}
.ls21{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.890000px;}
.ls26{letter-spacing:2.310000px;}
.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;}
}
.wsf{word-spacing:-16.500000px;}
.ws10{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.986000px;}
.wse{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.960000px;}
.ws2{word-spacing:-12.000000px;}
.ws1a{word-spacing:-3.780000px;}
.ws3d{word-spacing:-3.402000px;}
.ws41{word-spacing:-3.348000px;}
.ws1f{word-spacing:-3.120000px;}
.ws36{word-spacing:-2.310000px;}
.ws4{word-spacing:-1.890000px;}
.ws2f{word-spacing:-1.320000px;}
.ws30{word-spacing:-1.080000px;}
.ws31{word-spacing:-0.900000px;}
.ws2e{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.486000px;}
.ws28{word-spacing:-0.420000px;}
.ws2a{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.324000px;}
.ws29{word-spacing:-0.300000px;}
.ws38{word-spacing:-0.270000px;}
.ws2d{word-spacing:-0.180000px;}
.ws1d{word-spacing:-0.120000px;}
.ws27{word-spacing:-0.108000px;}
.ws33{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.060000px;}
.wsa{word-spacing:0.108000px;}
.ws19{word-spacing:0.120000px;}
.wsb{word-spacing:0.162000px;}
.ws18{word-spacing:0.180000px;}
.ws9{word-spacing:0.216000px;}
.ws1b{word-spacing:0.240000px;}
.ws12{word-spacing:0.270000px;}
.ws1e{word-spacing:0.300000px;}
.ws14{word-spacing:0.324000px;}
.ws17{word-spacing:0.360000px;}
.ws8{word-spacing:0.378000px;}
.ws16{word-spacing:0.420000px;}
.ws26{word-spacing:0.432000px;}
.ws2c{word-spacing:0.480000px;}
.ws7{word-spacing:0.486000px;}
.ws6{word-spacing:0.540000px;}
.ws5{word-spacing:0.594000px;}
.ws22{word-spacing:0.600000px;}
.ws25{word-spacing:0.660000px;}
.ws2b{word-spacing:0.720000px;}
.ws20{word-spacing:0.900000px;}
.ws3c{word-spacing:1.836000px;}
.ws39{word-spacing:1.998000px;}
.ws3e{word-spacing:2.646000px;}
.ws40{word-spacing:2.754000px;}
.ws23{word-spacing:3.060000px;}
.ws1c{word-spacing:3.180000px;}
.ws21{word-spacing:3.300000px;}
.ws35{word-spacing:3.480000px;}
.ws24{word-spacing:4.140000px;}
.ws42{word-spacing:4.212000px;}
.ws3b{word-spacing:5.238000px;}
.ws3a{word-spacing:6.102000px;}
.ws3f{word-spacing:6.264000px;}
.ws37{word-spacing:6.750000px;}
.ws34{word-spacing:7.500000px;}
.wsd{word-spacing:12.000000px;}
._b{margin-left:-1869.088200px;}
._8{margin-left:-14.856000px;}
._c{margin-left:-7.146600px;}
._d{margin-left:-5.172000px;}
._2{margin-left:-4.131000px;}
._0{margin-left:-2.997000px;}
._1{margin-left:-1.020600px;}
._3{width:1.317600px;}
._4{width:3.180600px;}
._5{width:4.644000px;}
._a{width:5.700600px;}
._6{width:6.832800px;}
._7{width:7.889400px;}
._e{width:9.211800px;}
._9{width:567.735000px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:41.760000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:43.188750px;}
.y1d{bottom:85.297050px;}
.y188{bottom:86.696250px;}
.y6c{bottom:86.795700px;}
.y159{bottom:86.951550px;}
.y125{bottom:87.006300px;}
.yb8{bottom:87.507900px;}
.y94{bottom:87.773100px;}
.y168{bottom:88.581150px;}
.yfd{bottom:89.095050px;}
.y135{bottom:91.966950px;}
.y43{bottom:94.821600px;}
.y1c{bottom:99.697200px;}
.y187{bottom:102.896250px;}
.y6b{bottom:104.795700px;}
.y158{bottom:104.951550px;}
.y124{bottom:105.006300px;}
.yb7{bottom:105.507900px;}
.y93{bottom:105.773100px;}
.yfc{bottom:107.095050px;}
.y134{bottom:109.966950px;}
.y42{bottom:112.821600px;}
.y167{bottom:113.256300px;}
.y1e{bottom:117.556200px;}
.y6a{bottom:122.795700px;}
.y157{bottom:122.951550px;}
.y123{bottom:123.006300px;}
.y92{bottom:123.773100px;}
.yfb{bottom:125.095050px;}
.y133{bottom:127.966950px;}
.y166{bottom:129.456150px;}
.y41{bottom:130.821600px;}
.yda{bottom:132.902550px;}
.y69{bottom:140.795700px;}
.y156{bottom:140.951550px;}
.y122{bottom:141.006300px;}
.y91{bottom:141.773100px;}
.yfa{bottom:143.095050px;}
.y132{bottom:145.966950px;}
.y40{bottom:148.821600px;}
.yd9{bottom:150.902550px;}
.y186{bottom:152.246250px;}
.y165{bottom:154.131300px;}
.yb6{bottom:157.523700px;}
.y68{bottom:158.795700px;}
.y155{bottom:158.951550px;}
.y121{bottom:159.006300px;}
.y90{bottom:159.773100px;}
.yf9{bottom:161.095050px;}
.y131{bottom:163.966950px;}
.y3f{bottom:166.821600px;}
.y185{bottom:168.446250px;}
.yd8{bottom:168.902550px;}
.y164{bottom:170.331150px;}
.y67{bottom:176.795700px;}
.y154{bottom:176.951550px;}
.y120{bottom:177.006300px;}
.y8f{bottom:177.773100px;}
.yf8{bottom:179.095050px;}
.y130{bottom:181.966950px;}
.y3e{bottom:184.821600px;}
.yd7{bottom:186.902550px;}
.y184{bottom:193.121250px;}
.y66{bottom:194.795700px;}
.y153{bottom:194.951550px;}
.y11f{bottom:195.006300px;}
.y8e{bottom:195.773100px;}
.yf7{bottom:197.095050px;}
.y12f{bottom:199.966950px;}
.y3d{bottom:202.821600px;}
.yd6{bottom:204.902550px;}
.y183{bottom:209.321250px;}
.y65{bottom:212.795700px;}
.y152{bottom:212.951550px;}
.y11e{bottom:213.006300px;}
.y8d{bottom:213.773100px;}
.yb5{bottom:213.791400px;}
.yf6{bottom:215.095050px;}
.y12e{bottom:217.966950px;}
.y1b{bottom:218.656500px;}
.y163{bottom:219.681300px;}
.y3c{bottom:220.821600px;}
.yd5{bottom:222.902550px;}
.y64{bottom:230.795700px;}
.y151{bottom:230.951550px;}
.y11d{bottom:231.006300px;}
.y8c{bottom:231.773100px;}
.yb4{bottom:231.791400px;}
.y182{bottom:233.996250px;}
.y1a{bottom:234.856500px;}
.y162{bottom:235.881300px;}
.y12d{bottom:235.966950px;}
.y3b{bottom:238.821600px;}
.yd4{bottom:240.902550px;}
.y63{bottom:248.795700px;}
.y150{bottom:248.951550px;}
.y11c{bottom:249.006300px;}
.y8b{bottom:249.773100px;}
.yb3{bottom:249.791400px;}
.y181{bottom:250.196250px;}
.y12c{bottom:253.966950px;}
.y3a{bottom:256.821600px;}
.yd3{bottom:258.902550px;}
.y19{bottom:259.560450px;}
.y161{bottom:260.556300px;}
.y180{bottom:266.396250px;}
.y62{bottom:266.795700px;}
.y11b{bottom:267.006300px;}
.yf5{bottom:267.110850px;}
.y8a{bottom:267.773100px;}
.yb2{bottom:267.791400px;}
.y12b{bottom:271.966950px;}
.y39{bottom:274.821600px;}
.y18{bottom:275.760450px;}
.yf4{bottom:283.310850px;}
.y61{bottom:284.795700px;}
.y11a{bottom:285.006300px;}
.y160{bottom:285.231150px;}
.y89{bottom:285.773100px;}
.yb1{bottom:285.791400px;}
.y12a{bottom:289.966950px;}
.y17f{bottom:291.071250px;}
.y17{bottom:291.960450px;}
.y38{bottom:292.821600px;}
.yf3{bottom:299.510850px;}
.y14f{bottom:300.967200px;}
.y60{bottom:302.795700px;}
.y119{bottom:303.006300px;}
.y88{bottom:303.773100px;}
.yb0{bottom:303.791400px;}
.y129{bottom:307.966950px;}
.y16{bottom:308.160450px;}
.y15f{bottom:309.906300px;}
.y37{bottom:310.821600px;}
.yd2{bottom:315.170250px;}
.yf2{bottom:315.710850px;}
.y17e{bottom:315.746250px;}
.y5f{bottom:320.795700px;}
.y118{bottom:321.006300px;}
.y87{bottom:321.773100px;}
.yaf{bottom:321.791400px;}
.y15{bottom:324.360450px;}
.y128{bottom:325.966950px;}
.y15e{bottom:326.106150px;}
.y36{bottom:328.821600px;}
.yd1{bottom:331.370250px;}
.yf1{bottom:331.910850px;}
.y5e{bottom:338.795700px;}
.y117{bottom:339.006300px;}
.y86{bottom:339.773100px;}
.yae{bottom:339.791400px;}
.y17d{bottom:340.421250px;}
.y14{bottom:340.560450px;}
.yd0{bottom:347.570250px;}
.yf0{bottom:348.110850px;}
.y15d{bottom:350.781300px;}
.y13{bottom:356.760450px;}
.y5d{bottom:356.795700px;}
.y116{bottom:357.006300px;}
.y14e{bottom:357.234900px;}
.y85{bottom:357.773100px;}
.yad{bottom:357.791400px;}
.ycf{bottom:363.770250px;}
.yef{bottom:364.310850px;}
.y17c{bottom:365.096250px;}
.y15c{bottom:366.981150px;}
.y12{bottom:372.960450px;}
.y5c{bottom:374.795700px;}
.y115{bottom:375.006300px;}
.y14d{bottom:375.234900px;}
.y84{bottom:375.773100px;}
.yac{bottom:375.791400px;}
.yce{bottom:379.970100px;}
.yee{bottom:380.510850px;}
.y17b{bottom:381.296250px;}
.y127{bottom:386.486550px;}
.y11{bottom:389.160450px;}
.y35{bottom:389.341350px;}
.y15b{bottom:391.656300px;}
.y5b{bottom:392.795700px;}
.y114{bottom:393.006300px;}
.y14c{bottom:393.234900px;}
.y83{bottom:393.773100px;}
.yab{bottom:393.791400px;}
.ycd{bottom:396.170250px;}
.y126{bottom:404.486550px;}
.y10{bottom:405.360450px;}
.y17a{bottom:405.971250px;}
.y5a{bottom:410.795700px;}
.y113{bottom:411.006300px;}
.y14b{bottom:411.234900px;}
.y82{bottom:411.773100px;}
.yaa{bottom:411.791400px;}
.ycc{bottom:412.370250px;}
.yf{bottom:421.560450px;}
.ycb{bottom:428.570100px;}
.y59{bottom:428.795700px;}
.y112{bottom:429.006300px;}
.y14a{bottom:429.234900px;}
.y81{bottom:429.773100px;}
.ya9{bottom:429.791400px;}
.y179{bottom:430.646250px;}
.yed{bottom:434.978550px;}
.y15a{bottom:437.556300px;}
.ye{bottom:437.760450px;}
.y58{bottom:446.795700px;}
.y178{bottom:446.846250px;}
.y111{bottom:447.006300px;}
.y149{bottom:447.234900px;}
.y80{bottom:447.773100px;}
.ya8{bottom:447.791400px;}
.y34{bottom:449.860950px;}
.yec{bottom:452.978550px;}
.yd{bottom:453.960450px;}
.y57{bottom:464.795700px;}
.y110{bottom:465.006300px;}
.y148{bottom:465.234900px;}
.y7f{bottom:465.773100px;}
.ya7{bottom:465.791400px;}
.y33{bottom:466.060950px;}
.yc{bottom:470.160450px;}
.yeb{bottom:470.978550px;}
.y177{bottom:471.521250px;}
.y56{bottom:482.795700px;}
.y10f{bottom:483.006300px;}
.yca{bottom:483.037950px;}
.y147{bottom:483.234900px;}
.y7e{bottom:483.773100px;}
.ya6{bottom:483.791400px;}
.yb{bottom:486.360450px;}
.y176{bottom:487.721250px;}
.yea{bottom:488.978550px;}
.y32{bottom:490.764900px;}
.y55{bottom:500.795700px;}
.y10e{bottom:501.006300px;}
.yc9{bottom:501.037950px;}
.y146{bottom:501.234900px;}
.y7d{bottom:501.773100px;}
.ya5{bottom:501.791400px;}
.ya{bottom:502.560450px;}
.y31{bottom:506.964900px;}
.ye9{bottom:506.978550px;}
.y175{bottom:512.396250px;}
.y9{bottom:518.760450px;}
.y54{bottom:518.795700px;}
.y10d{bottom:519.006300px;}
.yc8{bottom:519.037950px;}
.y145{bottom:519.234900px;}
.y7c{bottom:519.773100px;}
.ya4{bottom:519.791400px;}
.y30{bottom:523.164900px;}
.ye8{bottom:524.978550px;}
.y174{bottom:528.596250px;}
.y8{bottom:534.960450px;}
.y53{bottom:536.795700px;}
.y10c{bottom:537.006300px;}
.yc7{bottom:537.037950px;}
.y144{bottom:537.234900px;}
.y7b{bottom:537.773100px;}
.ya3{bottom:537.791400px;}
.y2f{bottom:539.364900px;}
.ye7{bottom:542.978550px;}
.y7{bottom:551.160450px;}
.y173{bottom:553.271250px;}
.y52{bottom:554.795700px;}
.y10b{bottom:555.006300px;}
.yc6{bottom:555.037950px;}
.y143{bottom:555.234900px;}
.y2e{bottom:555.564900px;}
.y7a{bottom:555.773100px;}
.ya2{bottom:555.791400px;}
.ye6{bottom:560.978550px;}
.y172{bottom:569.471250px;}
.y2d{bottom:571.764900px;}
.y51{bottom:572.795700px;}
.y10a{bottom:573.006300px;}
.yc5{bottom:573.037950px;}
.y142{bottom:573.234900px;}
.y79{bottom:573.773100px;}
.ya1{bottom:573.791400px;}
.y6{bottom:575.864400px;}
.ye5{bottom:578.978550px;}
.y2c{bottom:587.964900px;}
.y50{bottom:590.795700px;}
.y109{bottom:591.006300px;}
.yc4{bottom:591.037950px;}
.y141{bottom:591.234900px;}
.y78{bottom:591.773100px;}
.ya0{bottom:591.791400px;}
.y171{bottom:594.146250px;}
.ye4{bottom:596.978550px;}
.y2b{bottom:604.164900px;}
.y4f{bottom:608.795700px;}
.y108{bottom:609.006300px;}
.yc3{bottom:609.037950px;}
.y140{bottom:609.234900px;}
.y77{bottom:609.773100px;}
.y9f{bottom:609.791400px;}
.y170{bottom:610.346250px;}
.ye3{bottom:614.978550px;}
.y2a{bottom:620.364900px;}
.y5{bottom:626.080200px;}
.y4e{bottom:626.795700px;}
.y107{bottom:627.006300px;}
.yc2{bottom:627.037950px;}
.y13f{bottom:627.234900px;}
.y76{bottom:627.773100px;}
.y9e{bottom:627.791400px;}
.ye2{bottom:632.978550px;}
.y16f{bottom:635.021250px;}
.y29{bottom:636.564900px;}
.y4d{bottom:644.795700px;}
.y106{bottom:645.006300px;}
.yc1{bottom:645.037950px;}
.y13e{bottom:645.234900px;}
.y75{bottom:645.773100px;}
.y9d{bottom:645.791400px;}
.ye1{bottom:650.978550px;}
.y16e{bottom:651.221250px;}
.y28{bottom:652.764900px;}
.y4c{bottom:662.795700px;}
.y105{bottom:663.006300px;}
.yc0{bottom:663.037950px;}
.y13d{bottom:663.234900px;}
.y74{bottom:663.773100px;}
.y9c{bottom:663.791400px;}
.y16d{bottom:667.421250px;}
.y27{bottom:668.964900px;}
.ye0{bottom:668.978550px;}
.y4b{bottom:680.795700px;}
.y104{bottom:681.006300px;}
.ybf{bottom:681.037950px;}
.y13c{bottom:681.234900px;}
.y73{bottom:681.773100px;}
.y9b{bottom:681.791400px;}
.y4{bottom:683.005200px;}
.y26{bottom:685.164900px;}
.y16c{bottom:692.096250px;}
.y4a{bottom:698.795700px;}
.y103{bottom:699.006300px;}
.ybe{bottom:699.037950px;}
.y13b{bottom:699.234900px;}
.y72{bottom:699.773100px;}
.y9a{bottom:699.791400px;}
.y25{bottom:701.364900px;}
.y16b{bottom:708.296250px;}
.y3{bottom:711.805200px;}
.y49{bottom:716.795700px;}
.y102{bottom:717.006300px;}
.ybd{bottom:717.037950px;}
.y13a{bottom:717.234900px;}
.y24{bottom:717.564900px;}
.y71{bottom:717.773100px;}
.y99{bottom:717.791400px;}
.ydf{bottom:725.246250px;}
.y16a{bottom:732.971250px;}
.y23{bottom:733.764900px;}
.y48{bottom:734.795700px;}
.y101{bottom:735.006300px;}
.ybc{bottom:735.037950px;}
.y139{bottom:735.234900px;}
.y70{bottom:735.773100px;}
.y98{bottom:735.791400px;}
.yde{bottom:741.446250px;}
.y169{bottom:749.171250px;}
.y22{bottom:749.964900px;}
.y47{bottom:752.795700px;}
.y100{bottom:753.006300px;}
.ybb{bottom:753.037950px;}
.y138{bottom:753.234900px;}
.y2{bottom:753.355200px;}
.y6f{bottom:753.773100px;}
.y97{bottom:753.791400px;}
.ydd{bottom:757.646250px;}
.y21{bottom:766.164900px;}
.y46{bottom:770.795700px;}
.yff{bottom:771.006300px;}
.yba{bottom:771.037950px;}
.y137{bottom:771.234900px;}
.y6e{bottom:771.773100px;}
.y96{bottom:771.791400px;}
.ydc{bottom:773.846250px;}
.y1{bottom:782.155200px;}
.y45{bottom:788.795700px;}
.yfe{bottom:789.006300px;}
.yb9{bottom:789.037950px;}
.y136{bottom:789.234900px;}
.y6d{bottom:789.773100px;}
.y95{bottom:789.791400px;}
.ydb{bottom:790.046250px;}
.y20{bottom:790.868850px;}
.y44{bottom:843.063750px;}
.ha{height:39.594727px;}
.h7{height:42.117188px;}
.h8{height:42.234375px;}
.h9{height:42.632812px;}
.hf{height:45.181641px;}
.h5{height:47.381836px;}
.h6{height:47.513672px;}
.h4{height:47.961914px;}
.hc{height:52.646484px;}
.h3{height:52.755469px;}
.hd{height:52.792969px;}
.he{height:53.291016px;}
.hb{height:58.620117px;}
.h2{height:69.890625px;}
.h0{height:892.950000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.800000px;}
.x0{left:0.000000px;}
.x8{left:85.510650px;}
.x9{left:116.929200px;}
.x7{left:118.660650px;}
.x3{left:155.717700px;}
.x2{left:163.059450px;}
.xd{left:165.814350px;}
.x1{left:169.704000px;}
.x4{left:204.391500px;}
.xc{left:234.355200px;}
.xb{left:243.880800px;}
.xe{left:256.861500px;}
.x5{left:258.785850px;}
.xa{left:280.143450px;}
.x6{left:288.322200px;}
.x10{left:335.510100px;}
.xf{left:339.267450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.528000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.432000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls15{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037333pt;}
.lsb{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.432000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls21{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.680000pt;}
.ls26{letter-spacing:2.053333pt;}
.wsf{word-spacing:-14.666667pt;}
.ws10{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.432000pt;}
.wse{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.520000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1a{word-spacing:-3.360000pt;}
.ws3d{word-spacing:-3.024000pt;}
.ws41{word-spacing:-2.976000pt;}
.ws1f{word-spacing:-2.773333pt;}
.ws36{word-spacing:-2.053333pt;}
.ws4{word-spacing:-1.680000pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws30{word-spacing:-0.960000pt;}
.ws31{word-spacing:-0.800000pt;}
.ws2e{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.432000pt;}
.ws28{word-spacing:-0.373333pt;}
.ws2a{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.288000pt;}
.ws29{word-spacing:-0.266667pt;}
.ws38{word-spacing:-0.240000pt;}
.ws2d{word-spacing:-0.160000pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws27{word-spacing:-0.096000pt;}
.ws33{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053333pt;}
.wsa{word-spacing:0.096000pt;}
.ws19{word-spacing:0.106667pt;}
.wsb{word-spacing:0.144000pt;}
.ws18{word-spacing:0.160000pt;}
.ws9{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws12{word-spacing:0.240000pt;}
.ws1e{word-spacing:0.266667pt;}
.ws14{word-spacing:0.288000pt;}
.ws17{word-spacing:0.320000pt;}
.ws8{word-spacing:0.336000pt;}
.ws16{word-spacing:0.373333pt;}
.ws26{word-spacing:0.384000pt;}
.ws2c{word-spacing:0.426667pt;}
.ws7{word-spacing:0.432000pt;}
.ws6{word-spacing:0.480000pt;}
.ws5{word-spacing:0.528000pt;}
.ws22{word-spacing:0.533333pt;}
.ws25{word-spacing:0.586667pt;}
.ws2b{word-spacing:0.640000pt;}
.ws20{word-spacing:0.800000pt;}
.ws3c{word-spacing:1.632000pt;}
.ws39{word-spacing:1.776000pt;}
.ws3e{word-spacing:2.352000pt;}
.ws40{word-spacing:2.448000pt;}
.ws23{word-spacing:2.720000pt;}
.ws1c{word-spacing:2.826667pt;}
.ws21{word-spacing:2.933333pt;}
.ws35{word-spacing:3.093333pt;}
.ws24{word-spacing:3.680000pt;}
.ws42{word-spacing:3.744000pt;}
.ws3b{word-spacing:4.656000pt;}
.ws3a{word-spacing:5.424000pt;}
.ws3f{word-spacing:5.568000pt;}
.ws37{word-spacing:6.000000pt;}
.ws34{word-spacing:6.666667pt;}
.wsd{word-spacing:10.666667pt;}
._b{margin-left:-1661.411733pt;}
._8{margin-left:-13.205333pt;}
._c{margin-left:-6.352533pt;}
._d{margin-left:-4.597333pt;}
._2{margin-left:-3.672000pt;}
._0{margin-left:-2.664000pt;}
._1{margin-left:-0.907200pt;}
._3{width:1.171200pt;}
._4{width:2.827200pt;}
._5{width:4.128000pt;}
._a{width:5.067200pt;}
._6{width:6.073600pt;}
._7{width:7.012800pt;}
._e{width:8.188267pt;}
._9{width:504.653333pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:38.390000pt;}
.y1d{bottom:75.819600pt;}
.y188{bottom:77.063333pt;}
.y6c{bottom:77.151733pt;}
.y159{bottom:77.290267pt;}
.y125{bottom:77.338933pt;}
.yb8{bottom:77.784800pt;}
.y94{bottom:78.020533pt;}
.y168{bottom:78.738800pt;}
.yfd{bottom:79.195600pt;}
.y135{bottom:81.748400pt;}
.y43{bottom:84.285867pt;}
.y1c{bottom:88.619733pt;}
.y187{bottom:91.463333pt;}
.y6b{bottom:93.151733pt;}
.y158{bottom:93.290267pt;}
.y124{bottom:93.338933pt;}
.yb7{bottom:93.784800pt;}
.y93{bottom:94.020533pt;}
.yfc{bottom:95.195600pt;}
.y134{bottom:97.748400pt;}
.y42{bottom:100.285867pt;}
.y167{bottom:100.672267pt;}
.y1e{bottom:104.494400pt;}
.y6a{bottom:109.151733pt;}
.y157{bottom:109.290267pt;}
.y123{bottom:109.338933pt;}
.y92{bottom:110.020533pt;}
.yfb{bottom:111.195600pt;}
.y133{bottom:113.748400pt;}
.y166{bottom:115.072133pt;}
.y41{bottom:116.285867pt;}
.yda{bottom:118.135600pt;}
.y69{bottom:125.151733pt;}
.y156{bottom:125.290267pt;}
.y122{bottom:125.338933pt;}
.y91{bottom:126.020533pt;}
.yfa{bottom:127.195600pt;}
.y132{bottom:129.748400pt;}
.y40{bottom:132.285867pt;}
.yd9{bottom:134.135600pt;}
.y186{bottom:135.330000pt;}
.y165{bottom:137.005600pt;}
.yb6{bottom:140.021067pt;}
.y68{bottom:141.151733pt;}
.y155{bottom:141.290267pt;}
.y121{bottom:141.338933pt;}
.y90{bottom:142.020533pt;}
.yf9{bottom:143.195600pt;}
.y131{bottom:145.748400pt;}
.y3f{bottom:148.285867pt;}
.y185{bottom:149.730000pt;}
.yd8{bottom:150.135600pt;}
.y164{bottom:151.405467pt;}
.y67{bottom:157.151733pt;}
.y154{bottom:157.290267pt;}
.y120{bottom:157.338933pt;}
.y8f{bottom:158.020533pt;}
.yf8{bottom:159.195600pt;}
.y130{bottom:161.748400pt;}
.y3e{bottom:164.285867pt;}
.yd7{bottom:166.135600pt;}
.y184{bottom:171.663333pt;}
.y66{bottom:173.151733pt;}
.y153{bottom:173.290267pt;}
.y11f{bottom:173.338933pt;}
.y8e{bottom:174.020533pt;}
.yf7{bottom:175.195600pt;}
.y12f{bottom:177.748400pt;}
.y3d{bottom:180.285867pt;}
.yd6{bottom:182.135600pt;}
.y183{bottom:186.063333pt;}
.y65{bottom:189.151733pt;}
.y152{bottom:189.290267pt;}
.y11e{bottom:189.338933pt;}
.y8d{bottom:190.020533pt;}
.yb5{bottom:190.036800pt;}
.yf6{bottom:191.195600pt;}
.y12e{bottom:193.748400pt;}
.y1b{bottom:194.361333pt;}
.y163{bottom:195.272267pt;}
.y3c{bottom:196.285867pt;}
.yd5{bottom:198.135600pt;}
.y64{bottom:205.151733pt;}
.y151{bottom:205.290267pt;}
.y11d{bottom:205.338933pt;}
.y8c{bottom:206.020533pt;}
.yb4{bottom:206.036800pt;}
.y182{bottom:207.996667pt;}
.y1a{bottom:208.761333pt;}
.y162{bottom:209.672267pt;}
.y12d{bottom:209.748400pt;}
.y3b{bottom:212.285867pt;}
.yd4{bottom:214.135600pt;}
.y63{bottom:221.151733pt;}
.y150{bottom:221.290267pt;}
.y11c{bottom:221.338933pt;}
.y8b{bottom:222.020533pt;}
.yb3{bottom:222.036800pt;}
.y181{bottom:222.396667pt;}
.y12c{bottom:225.748400pt;}
.y3a{bottom:228.285867pt;}
.yd3{bottom:230.135600pt;}
.y19{bottom:230.720400pt;}
.y161{bottom:231.605600pt;}
.y180{bottom:236.796667pt;}
.y62{bottom:237.151733pt;}
.y11b{bottom:237.338933pt;}
.yf5{bottom:237.431867pt;}
.y8a{bottom:238.020533pt;}
.yb2{bottom:238.036800pt;}
.y12b{bottom:241.748400pt;}
.y39{bottom:244.285867pt;}
.y18{bottom:245.120400pt;}
.yf4{bottom:251.831867pt;}
.y61{bottom:253.151733pt;}
.y11a{bottom:253.338933pt;}
.y160{bottom:253.538800pt;}
.y89{bottom:254.020533pt;}
.yb1{bottom:254.036800pt;}
.y12a{bottom:257.748400pt;}
.y17f{bottom:258.730000pt;}
.y17{bottom:259.520400pt;}
.y38{bottom:260.285867pt;}
.yf3{bottom:266.231867pt;}
.y14f{bottom:267.526400pt;}
.y60{bottom:269.151733pt;}
.y119{bottom:269.338933pt;}
.y88{bottom:270.020533pt;}
.yb0{bottom:270.036800pt;}
.y129{bottom:273.748400pt;}
.y16{bottom:273.920400pt;}
.y15f{bottom:275.472267pt;}
.y37{bottom:276.285867pt;}
.yd2{bottom:280.151333pt;}
.yf2{bottom:280.631867pt;}
.y17e{bottom:280.663333pt;}
.y5f{bottom:285.151733pt;}
.y118{bottom:285.338933pt;}
.y87{bottom:286.020533pt;}
.yaf{bottom:286.036800pt;}
.y15{bottom:288.320400pt;}
.y128{bottom:289.748400pt;}
.y15e{bottom:289.872133pt;}
.y36{bottom:292.285867pt;}
.yd1{bottom:294.551333pt;}
.yf1{bottom:295.031867pt;}
.y5e{bottom:301.151733pt;}
.y117{bottom:301.338933pt;}
.y86{bottom:302.020533pt;}
.yae{bottom:302.036800pt;}
.y17d{bottom:302.596667pt;}
.y14{bottom:302.720400pt;}
.yd0{bottom:308.951333pt;}
.yf0{bottom:309.431867pt;}
.y15d{bottom:311.805600pt;}
.y13{bottom:317.120400pt;}
.y5d{bottom:317.151733pt;}
.y116{bottom:317.338933pt;}
.y14e{bottom:317.542133pt;}
.y85{bottom:318.020533pt;}
.yad{bottom:318.036800pt;}
.ycf{bottom:323.351333pt;}
.yef{bottom:323.831867pt;}
.y17c{bottom:324.530000pt;}
.y15c{bottom:326.205467pt;}
.y12{bottom:331.520400pt;}
.y5c{bottom:333.151733pt;}
.y115{bottom:333.338933pt;}
.y14d{bottom:333.542133pt;}
.y84{bottom:334.020533pt;}
.yac{bottom:334.036800pt;}
.yce{bottom:337.751200pt;}
.yee{bottom:338.231867pt;}
.y17b{bottom:338.930000pt;}
.y127{bottom:343.543600pt;}
.y11{bottom:345.920400pt;}
.y35{bottom:346.081200pt;}
.y15b{bottom:348.138933pt;}
.y5b{bottom:349.151733pt;}
.y114{bottom:349.338933pt;}
.y14c{bottom:349.542133pt;}
.y83{bottom:350.020533pt;}
.yab{bottom:350.036800pt;}
.ycd{bottom:352.151333pt;}
.y126{bottom:359.543600pt;}
.y10{bottom:360.320400pt;}
.y17a{bottom:360.863333pt;}
.y5a{bottom:365.151733pt;}
.y113{bottom:365.338933pt;}
.y14b{bottom:365.542133pt;}
.y82{bottom:366.020533pt;}
.yaa{bottom:366.036800pt;}
.ycc{bottom:366.551333pt;}
.yf{bottom:374.720400pt;}
.ycb{bottom:380.951200pt;}
.y59{bottom:381.151733pt;}
.y112{bottom:381.338933pt;}
.y14a{bottom:381.542133pt;}
.y81{bottom:382.020533pt;}
.ya9{bottom:382.036800pt;}
.y179{bottom:382.796667pt;}
.yed{bottom:386.647600pt;}
.y15a{bottom:388.938933pt;}
.ye{bottom:389.120400pt;}
.y58{bottom:397.151733pt;}
.y178{bottom:397.196667pt;}
.y111{bottom:397.338933pt;}
.y149{bottom:397.542133pt;}
.y80{bottom:398.020533pt;}
.ya8{bottom:398.036800pt;}
.y34{bottom:399.876400pt;}
.yec{bottom:402.647600pt;}
.yd{bottom:403.520400pt;}
.y57{bottom:413.151733pt;}
.y110{bottom:413.338933pt;}
.y148{bottom:413.542133pt;}
.y7f{bottom:414.020533pt;}
.ya7{bottom:414.036800pt;}
.y33{bottom:414.276400pt;}
.yc{bottom:417.920400pt;}
.yeb{bottom:418.647600pt;}
.y177{bottom:419.130000pt;}
.y56{bottom:429.151733pt;}
.y10f{bottom:429.338933pt;}
.yca{bottom:429.367067pt;}
.y147{bottom:429.542133pt;}
.y7e{bottom:430.020533pt;}
.ya6{bottom:430.036800pt;}
.yb{bottom:432.320400pt;}
.y176{bottom:433.530000pt;}
.yea{bottom:434.647600pt;}
.y32{bottom:436.235467pt;}
.y55{bottom:445.151733pt;}
.y10e{bottom:445.338933pt;}
.yc9{bottom:445.367067pt;}
.y146{bottom:445.542133pt;}
.y7d{bottom:446.020533pt;}
.ya5{bottom:446.036800pt;}
.ya{bottom:446.720400pt;}
.y31{bottom:450.635467pt;}
.ye9{bottom:450.647600pt;}
.y175{bottom:455.463333pt;}
.y9{bottom:461.120400pt;}
.y54{bottom:461.151733pt;}
.y10d{bottom:461.338933pt;}
.yc8{bottom:461.367067pt;}
.y145{bottom:461.542133pt;}
.y7c{bottom:462.020533pt;}
.ya4{bottom:462.036800pt;}
.y30{bottom:465.035467pt;}
.ye8{bottom:466.647600pt;}
.y174{bottom:469.863333pt;}
.y8{bottom:475.520400pt;}
.y53{bottom:477.151733pt;}
.y10c{bottom:477.338933pt;}
.yc7{bottom:477.367067pt;}
.y144{bottom:477.542133pt;}
.y7b{bottom:478.020533pt;}
.ya3{bottom:478.036800pt;}
.y2f{bottom:479.435467pt;}
.ye7{bottom:482.647600pt;}
.y7{bottom:489.920400pt;}
.y173{bottom:491.796667pt;}
.y52{bottom:493.151733pt;}
.y10b{bottom:493.338933pt;}
.yc6{bottom:493.367067pt;}
.y143{bottom:493.542133pt;}
.y2e{bottom:493.835467pt;}
.y7a{bottom:494.020533pt;}
.ya2{bottom:494.036800pt;}
.ye6{bottom:498.647600pt;}
.y172{bottom:506.196667pt;}
.y2d{bottom:508.235467pt;}
.y51{bottom:509.151733pt;}
.y10a{bottom:509.338933pt;}
.yc5{bottom:509.367067pt;}
.y142{bottom:509.542133pt;}
.y79{bottom:510.020533pt;}
.ya1{bottom:510.036800pt;}
.y6{bottom:511.879467pt;}
.ye5{bottom:514.647600pt;}
.y2c{bottom:522.635467pt;}
.y50{bottom:525.151733pt;}
.y109{bottom:525.338933pt;}
.yc4{bottom:525.367067pt;}
.y141{bottom:525.542133pt;}
.y78{bottom:526.020533pt;}
.ya0{bottom:526.036800pt;}
.y171{bottom:528.130000pt;}
.ye4{bottom:530.647600pt;}
.y2b{bottom:537.035467pt;}
.y4f{bottom:541.151733pt;}
.y108{bottom:541.338933pt;}
.yc3{bottom:541.367067pt;}
.y140{bottom:541.542133pt;}
.y77{bottom:542.020533pt;}
.y9f{bottom:542.036800pt;}
.y170{bottom:542.530000pt;}
.ye3{bottom:546.647600pt;}
.y2a{bottom:551.435467pt;}
.y5{bottom:556.515733pt;}
.y4e{bottom:557.151733pt;}
.y107{bottom:557.338933pt;}
.yc2{bottom:557.367067pt;}
.y13f{bottom:557.542133pt;}
.y76{bottom:558.020533pt;}
.y9e{bottom:558.036800pt;}
.ye2{bottom:562.647600pt;}
.y16f{bottom:564.463333pt;}
.y29{bottom:565.835467pt;}
.y4d{bottom:573.151733pt;}
.y106{bottom:573.338933pt;}
.yc1{bottom:573.367067pt;}
.y13e{bottom:573.542133pt;}
.y75{bottom:574.020533pt;}
.y9d{bottom:574.036800pt;}
.ye1{bottom:578.647600pt;}
.y16e{bottom:578.863333pt;}
.y28{bottom:580.235467pt;}
.y4c{bottom:589.151733pt;}
.y105{bottom:589.338933pt;}
.yc0{bottom:589.367067pt;}
.y13d{bottom:589.542133pt;}
.y74{bottom:590.020533pt;}
.y9c{bottom:590.036800pt;}
.y16d{bottom:593.263333pt;}
.y27{bottom:594.635467pt;}
.ye0{bottom:594.647600pt;}
.y4b{bottom:605.151733pt;}
.y104{bottom:605.338933pt;}
.ybf{bottom:605.367067pt;}
.y13c{bottom:605.542133pt;}
.y73{bottom:606.020533pt;}
.y9b{bottom:606.036800pt;}
.y4{bottom:607.115733pt;}
.y26{bottom:609.035467pt;}
.y16c{bottom:615.196667pt;}
.y4a{bottom:621.151733pt;}
.y103{bottom:621.338933pt;}
.ybe{bottom:621.367067pt;}
.y13b{bottom:621.542133pt;}
.y72{bottom:622.020533pt;}
.y9a{bottom:622.036800pt;}
.y25{bottom:623.435467pt;}
.y16b{bottom:629.596667pt;}
.y3{bottom:632.715733pt;}
.y49{bottom:637.151733pt;}
.y102{bottom:637.338933pt;}
.ybd{bottom:637.367067pt;}
.y13a{bottom:637.542133pt;}
.y24{bottom:637.835467pt;}
.y71{bottom:638.020533pt;}
.y99{bottom:638.036800pt;}
.ydf{bottom:644.663333pt;}
.y16a{bottom:651.530000pt;}
.y23{bottom:652.235467pt;}
.y48{bottom:653.151733pt;}
.y101{bottom:653.338933pt;}
.ybc{bottom:653.367067pt;}
.y139{bottom:653.542133pt;}
.y70{bottom:654.020533pt;}
.y98{bottom:654.036800pt;}
.yde{bottom:659.063333pt;}
.y169{bottom:665.930000pt;}
.y22{bottom:666.635467pt;}
.y47{bottom:669.151733pt;}
.y100{bottom:669.338933pt;}
.ybb{bottom:669.367067pt;}
.y138{bottom:669.542133pt;}
.y2{bottom:669.649067pt;}
.y6f{bottom:670.020533pt;}
.y97{bottom:670.036800pt;}
.ydd{bottom:673.463333pt;}
.y21{bottom:681.035467pt;}
.y46{bottom:685.151733pt;}
.yff{bottom:685.338933pt;}
.yba{bottom:685.367067pt;}
.y137{bottom:685.542133pt;}
.y6e{bottom:686.020533pt;}
.y96{bottom:686.036800pt;}
.ydc{bottom:687.863333pt;}
.y1{bottom:695.249067pt;}
.y45{bottom:701.151733pt;}
.yfe{bottom:701.338933pt;}
.yb9{bottom:701.367067pt;}
.y136{bottom:701.542133pt;}
.y6d{bottom:702.020533pt;}
.y95{bottom:702.036800pt;}
.ydb{bottom:702.263333pt;}
.y20{bottom:702.994533pt;}
.y44{bottom:749.390000pt;}
.ha{height:35.195312pt;}
.h7{height:37.437500pt;}
.h8{height:37.541667pt;}
.h9{height:37.895833pt;}
.hf{height:40.161458pt;}
.h5{height:42.117188pt;}
.h6{height:42.234375pt;}
.h4{height:42.632812pt;}
.hc{height:46.796875pt;}
.h3{height:46.893750pt;}
.hd{height:46.927083pt;}
.he{height:47.369792pt;}
.hb{height:52.106771pt;}
.h2{height:62.125000pt;}
.h0{height:793.733333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.933333pt;}
.x0{left:0.000000pt;}
.x8{left:76.009467pt;}
.x9{left:103.937067pt;}
.x7{left:105.476133pt;}
.x3{left:138.415733pt;}
.x2{left:144.941733pt;}
.xd{left:147.390533pt;}
.x1{left:150.848000pt;}
.x4{left:181.681333pt;}
.xc{left:208.315733pt;}
.xb{left:216.782933pt;}
.xe{left:228.321333pt;}
.x5{left:230.031867pt;}
.xa{left:249.016400pt;}
.x6{left:256.286400pt;}
.x10{left:298.231200pt;}
.xf{left:301.571067pt;}
}




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