
    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_30a17b690af4668d3f0eb084.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_5becc1c70d61d733e4d18fa8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.736816;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_31194369b6be1b8f1fdc632c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041504;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_9ba63b83236ed85b44580dc4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.041504;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_a0659913105ada8e595e17ac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_d027ee0b6e4a2c41b312793b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_b2a8a0572f98b9732d081c51.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_33bda590f1f1a962543d9898.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls4e{letter-spacing:-0.936000px;}
.ls37{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.648000px;}
.ls36{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.312000px;}
.ls6{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls3b{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000001px;}
.lse{letter-spacing:0.063600px;}
.lsb{letter-spacing:0.072000px;}
.ls33{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls3c{letter-spacing:0.180720px;}
.ls34{letter-spacing:0.198600px;}
.lsf{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.243360px;}
.ls4b{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.487440px;}
.ls46{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.648000px;}
.ls4a{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.936000px;}
.ls40{letter-spacing:1.207440px;}
.ls15{letter-spacing:1.368000px;}
.ls26{letter-spacing:1.656000px;}
.ls1e{letter-spacing:1.927440px;}
.ls21{letter-spacing:2.088000px;}
.ls1f{letter-spacing:2.647440px;}
.ls3{letter-spacing:2.808000px;}
.ls1b{letter-spacing:3.096000px;}
.ls45{letter-spacing:3.276000px;}
.ls1d{letter-spacing:3.528000px;}
.ls2{letter-spacing:4.248000px;}
.ls3f{letter-spacing:4.536000px;}
.ls2f{letter-spacing:5.256000px;}
.ls2e{letter-spacing:5.976000px;}
.ls48{letter-spacing:6.408000px;}
.ls2c{letter-spacing:7.848000px;}
.ls28{letter-spacing:8.136000px;}
.ls4d{letter-spacing:8.568000px;}
.ls24{letter-spacing:8.856000px;}
.ls27{letter-spacing:9.288000px;}
.ls23{letter-spacing:9.576000px;}
.ls22{letter-spacing:10.008000px;}
.lsd{letter-spacing:11.448000px;}
.ls38{letter-spacing:11.736000px;}
.ls43{letter-spacing:12.168000px;}
.ls3d{letter-spacing:12.456000px;}
.ls31{letter-spacing:12.636000px;}
.ls47{letter-spacing:12.888000px;}
.ls3e{letter-spacing:13.176000px;}
.ls1{letter-spacing:13.608000px;}
.ls39{letter-spacing:13.896000px;}
.lsc{letter-spacing:14.328000px;}
.lsa{letter-spacing:15.048000px;}
.ls2b{letter-spacing:15.336000px;}
.ls2d{letter-spacing:15.516000px;}
.ls12{letter-spacing:16.327440px;}
.ls17{letter-spacing:16.488000px;}
.ls44{letter-spacing:18.336000px;}
.ls4c{letter-spacing:20.088000px;}
.ls32{letter-spacing:20.376000px;}
.ls20{letter-spacing:20.808000px;}
.ls18{letter-spacing:22.248000px;}
.ls3a{letter-spacing:22.536000px;}
.ls16{letter-spacing:24.408000px;}
.ls14{letter-spacing:28.008000px;}
.ls30{letter-spacing:33.048000px;}
.ls49{letter-spacing:58.248000px;}
.ls0{letter-spacing:65.448000px;}
.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;}
}
.ws7{word-spacing:-20.592000px;}
.ws4{word-spacing:-20.448000px;}
.ws5{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.232001px;}
.ws0{word-spacing:-20.232000px;}
.wsb{word-spacing:-20.160000px;}
.ws9{word-spacing:-20.088000px;}
.ws17{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.944000px;}
.wsd{word-spacing:-19.872000px;}
.wsf{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.512000px;}
.ws1a{word-spacing:-19.296000px;}
.ws16{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.783997px;}
.ws11{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.496000px;}
.ws14{word-spacing:-17.152560px;}
.wsa{word-spacing:-16.792560px;}
.wse{word-spacing:-14.760720px;}
.ws15{word-spacing:-14.448720px;}
.ws18{word-spacing:-8.064000px;}
.ws19{word-spacing:-7.992000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-5.400000px;}
._19{margin-left:-4.248000px;}
._7{margin-left:-2.504400px;}
._3{margin-left:-1.263600px;}
._0{width:1.135440px;}
._8{width:2.692560px;}
._6{width:3.960000px;}
._5{width:5.472000px;}
._17{width:6.525120px;}
._16{width:7.560000px;}
._e{width:8.568000px;}
._a{width:9.576000px;}
._b{width:10.600560px;}
._15{width:11.952000px;}
._c{width:13.536000px;}
._13{width:14.688000px;}
._14{width:15.732000px;}
._22{width:16.788000px;}
._18{width:17.856000px;}
._12{width:19.080000px;}
._21{width:20.488560px;}
._9{width:21.792000px;}
._1b{width:22.965120px;}
._1f{width:24.912000px;}
._27{width:25.936560px;}
._11{width:27.072000px;}
._1d{width:28.368000px;}
._1e{width:29.592000px;}
._28{width:31.608000px;}
._d{width:33.048000px;}
._26{width:34.128000px;}
._10{width:35.136000px;}
._f{width:36.360000px;}
._25{width:38.316000px;}
._23{width:39.600000px;}
._24{width:40.608000px;}
._1a{width:42.192000px;}
._29{width:43.240560px;}
._20{width:50.832000px;}
._2a{width:59.304000px;}
._4{width:65.016000px;}
._1{width:295.482000px;}
._2{width:642.828720px;}
._2b{width:843.924000px;}
.fc5{color:rgb(31,78,121);}
.fc4{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:47.736000px;}
.y3{bottom:70.956000px;}
.y2{bottom:88.776000px;}
.y1{bottom:111.276000px;}
.y2a{bottom:130.536000px;}
.y29{bottom:136.476000px;}
.y13c{bottom:137.016000px;}
.yb8{bottom:138.096000px;}
.y50{bottom:138.276000px;}
.yf1{bottom:138.636000px;}
.y28{bottom:147.456000px;}
.y66{bottom:153.390000px;}
.y27{bottom:164.190000px;}
.yd4{bottom:164.370000px;}
.y65{bottom:164.550000px;}
.y13b{bottom:167.250000px;}
.y4f{bottom:168.510000px;}
.yb7{bottom:168.690000px;}
.yf0{bottom:169.050000px;}
.y26{bottom:170.130000px;}
.yd3{bottom:170.310000px;}
.y89{bottom:180.930000px;}
.y10e{bottom:181.110000px;}
.y25{bottom:181.470000px;}
.yd2{bottom:181.650000px;}
.y171{bottom:185.070000px;}
.y10d{bottom:187.050000px;}
.y13a{bottom:197.310000px;}
.y88{bottom:197.670000px;}
.y64{bottom:197.850000px;}
.y128{bottom:198.030000px;}
.y10c{bottom:198.390000px;}
.y4e{bottom:198.750000px;}
.yef{bottom:199.290000px;}
.y9b{bottom:203.790000px;}
.y127{bottom:203.970000px;}
.y87{bottom:214.590000px;}
.y9a{bottom:214.950000px;}
.y126{bottom:215.310000px;}
.y24{bottom:215.490000px;}
.y86{bottom:220.530000px;}
.y139{bottom:227.550000px;}
.yd1{bottom:227.910000px;}
.y63{bottom:228.450000px;}
.y4d{bottom:228.990000px;}
.yee{bottom:229.350000px;}
.y85{bottom:231.870000px;}
.y170{bottom:245.190000px;}
.y23{bottom:245.730000px;}
.y154{bottom:248.790000px;}
.y99{bottom:257.430000px;}
.y138{bottom:257.610000px;}
.yd0{bottom:258.150000px;}
.y62{bottom:258.690000px;}
.yb6{bottom:259.050000px;}
.y4c{bottom:259.230000px;}
.yed{bottom:259.410000px;}
.y125{bottom:259.590000px;}
.y16f{bottom:275.475000px;}
.y22{bottom:276.015000px;}
.y153{bottom:286.995000px;}
.y98{bottom:287.535000px;}
.ycf{bottom:288.255000px;}
.y61{bottom:288.975000px;}
.yb5{bottom:289.155000px;}
.y4b{bottom:289.515000px;}
.y124{bottom:289.695000px;}
.y16e{bottom:305.535000px;}
.y21{bottom:306.255000px;}
.y84{bottom:316.335000px;}
.y152{bottom:317.415000px;}
.y97{bottom:317.595000px;}
.y10b{bottom:317.775000px;}
.y137{bottom:318.495000px;}
.yce{bottom:318.855000px;}
.y60{bottom:319.215000px;}
.y4a{bottom:319.575000px;}
.yb4{bottom:319.755000px;}
.yec{bottom:320.115000px;}
.y20{bottom:336.495000px;}
.y16d{bottom:343.515000px;}
.y83{bottom:346.395000px;}
.y151{bottom:347.655000px;}
.y10a{bottom:347.835000px;}
.y95{bottom:348.195000px;}
.y136{bottom:348.735000px;}
.ycd{bottom:349.095000px;}
.y5f{bottom:349.455000px;}
.y49{bottom:349.815000px;}
.y123{bottom:350.175000px;}
.yeb{bottom:350.535000px;}
.y96{bottom:355.755000px;}
.y1f{bottom:366.555000px;}
.y16c{bottom:373.935000px;}
.y81{bottom:376.635000px;}
.y150{bottom:377.895000px;}
.y109{bottom:378.075000px;}
.y94{bottom:378.435000px;}
.y135{bottom:378.975000px;}
.ycc{bottom:379.335000px;}
.y5e{bottom:379.695000px;}
.y48{bottom:380.055000px;}
.y121{bottom:380.775000px;}
.yea{bottom:380.955000px;}
.y82{bottom:384.195000px;}
.y122{bottom:388.335000px;}
.y1e{bottom:396.795000px;}
.y80{bottom:407.055000px;}
.y108{bottom:408.135000px;}
.y93{bottom:408.855000px;}
.y134{bottom:409.215000px;}
.ycb{bottom:409.395000px;}
.y5d{bottom:409.755000px;}
.yb3{bottom:410.115000px;}
.y47{bottom:410.295000px;}
.y120{bottom:411.195000px;}
.ye9{bottom:411.375000px;}
.y16b{bottom:411.915000px;}
.y1d{bottom:427.035000px;}
.y7f{bottom:437.295000px;}
.y14f{bottom:438.195000px;}
.y107{bottom:438.555000px;}
.y92{bottom:439.095000px;}
.y133{bottom:439.275000px;}
.yca{bottom:439.815000px;}
.y5c{bottom:439.995000px;}
.yb2{bottom:440.175000px;}
.y46{bottom:440.535000px;}
.y11f{bottom:441.615000px;}
.ye8{bottom:441.795000px;}
.y16a{bottom:442.335000px;}
.y1c{bottom:457.275000px;}
.y7e{bottom:467.535000px;}
.y14e{bottom:468.435000px;}
.y106{bottom:468.975000px;}
.y91{bottom:469.515000px;}
.y132{bottom:469.875000px;}
.yb1{bottom:470.055000px;}
.y5b{bottom:470.235000px;}
.yc9{bottom:470.415000px;}
.y45{bottom:470.775000px;}
.ye7{bottom:472.035000px;}
.y169{bottom:472.755000px;}
.y1b{bottom:487.515000px;}
.y7d{bottom:497.595000px;}
.y14d{bottom:498.855000px;}
.y105{bottom:499.035000px;}
.y90{bottom:499.935000px;}
.yb0{bottom:500.115000px;}
.y5a{bottom:500.475000px;}
.y44{bottom:501.015000px;}
.ye6{bottom:501.735000px;}
.y11e{bottom:502.635000px;}
.y168{bottom:502.995000px;}
.y1a{bottom:517.755000px;}
.y7c{bottom:528.015000px;}
.y14c{bottom:529.095000px;}
.y104{bottom:529.275000px;}
.yaf{bottom:530.175000px;}
.y8f{bottom:530.355000px;}
.yc8{bottom:530.535000px;}
.y59{bottom:530.715000px;}
.y43{bottom:531.075000px;}
.ye5{bottom:531.975000px;}
.y11d{bottom:532.695000px;}
.y167{bottom:533.235000px;}
.y19{bottom:547.995000px;}
.y7b{bottom:558.645000px;}
.y14b{bottom:559.185000px;}
.y103{bottom:559.725000px;}
.yae{bottom:560.265000px;}
.y131{bottom:560.445000px;}
.y58{bottom:560.805000px;}
.y42{bottom:561.345000px;}
.ye4{bottom:562.245000px;}
.y11c{bottom:563.145000px;}
.y166{bottom:563.505000px;}
.y17{bottom:578.265000px;}
.y18{bottom:585.825000px;}
.y7a{bottom:588.885000px;}
.y14a{bottom:589.785000px;}
.y102{bottom:589.965000px;}
.yad{bottom:590.505000px;}
.y130{bottom:590.685000px;}
.y57{bottom:591.225000px;}
.y41{bottom:591.405000px;}
.ye3{bottom:592.305000px;}
.y11b{bottom:593.385000px;}
.y165{bottom:593.745000px;}
.y16{bottom:608.325000px;}
.y79{bottom:619.125000px;}
.y101{bottom:620.025000px;}
.yac{bottom:620.205000px;}
.y12f{bottom:621.105000px;}
.y56{bottom:621.465000px;}
.y8d{bottom:621.645000px;}
.y40{bottom:621.825000px;}
.ye2{bottom:622.725000px;}
.y11a{bottom:623.085000px;}
.y164{bottom:623.985000px;}
.y8e{bottom:629.205000px;}
.y15{bottom:638.565000px;}
.y77{bottom:649.185000px;}
.y149{bottom:650.085000px;}
.yab{bottom:650.265000px;}
.y100{bottom:650.625000px;}
.y12e{bottom:651.345000px;}
.y55{bottom:651.705000px;}
.yc7{bottom:651.885000px;}
.y3f{bottom:652.065000px;}
.ye1{bottom:653.145000px;}
.y163{bottom:654.225000px;}
.y78{bottom:656.745000px;}
.y14{bottom:668.625000px;}
.y76{bottom:679.785000px;}
.y148{bottom:680.685000px;}
.yaa{bottom:680.865000px;}
.y12d{bottom:681.405000px;}
.y54{bottom:681.945000px;}
.y3e{bottom:682.305000px;}
.y119{bottom:683.385000px;}
.ye0{bottom:683.745000px;}
.y162{bottom:684.465000px;}
.y12{bottom:699.225000px;}
.y13{bottom:706.785000px;}
.y75{bottom:710.025000px;}
.y147{bottom:710.745000px;}
.yfe{bottom:710.925000px;}
.ya9{bottom:711.285000px;}
.y52{bottom:712.005000px;}
.y3d{bottom:712.545000px;}
.yc6{bottom:712.725000px;}
.y118{bottom:713.085000px;}
.ydf{bottom:713.805000px;}
.y161{bottom:714.525000px;}
.yff{bottom:718.485000px;}
.y53{bottom:719.565000px;}
.y11{bottom:729.645000px;}
.y74{bottom:740.265000px;}
.yfd{bottom:741.345000px;}
.ya8{bottom:741.705000px;}
.y12c{bottom:742.245000px;}
.y51{bottom:742.425000px;}
.y3c{bottom:742.785000px;}
.y117{bottom:742.965000px;}
.yc5{bottom:743.325000px;}
.yde{bottom:744.045000px;}
.y160{bottom:744.945000px;}
.y10{bottom:759.885000px;}
.y73{bottom:770.325000px;}
.y146{bottom:771.405000px;}
.yfc{bottom:771.585000px;}
.ya7{bottom:772.305000px;}
.y12b{bottom:772.485000px;}
.y116{bottom:772.665000px;}
.y8c{bottom:772.845000px;}
.y3b{bottom:773.025000px;}
.yc4{bottom:773.385000px;}
.ydd{bottom:774.105000px;}
.y15f{bottom:775.545000px;}
.yf{bottom:790.125000px;}
.y72{bottom:800.925000px;}
.yfb{bottom:801.645000px;}
.y145{bottom:801.825000px;}
.ya6{bottom:802.545000px;}
.y115{bottom:802.725000px;}
.y8b{bottom:803.085000px;}
.y3a{bottom:803.265000px;}
.yc2{bottom:803.805000px;}
.ydc{bottom:804.525000px;}
.y15e{bottom:805.785000px;}
.yc3{bottom:811.365000px;}
.ye{bottom:820.365000px;}
.y71{bottom:831.165000px;}
.yfa{bottom:832.065000px;}
.y144{bottom:832.425000px;}
.ya5{bottom:832.605000px;}
.y12a{bottom:832.965000px;}
.y39{bottom:833.325000px;}
.yc1{bottom:834.225000px;}
.ydb{bottom:835.125000px;}
.y15d{bottom:835.845000px;}
.yd{bottom:850.650000px;}
.y70{bottom:861.270000px;}
.yf9{bottom:862.350000px;}
.y143{bottom:862.530000px;}
.y114{bottom:863.070000px;}
.ya4{bottom:863.250000px;}
.y38{bottom:863.610000px;}
.yc0{bottom:864.510000px;}
.yda{bottom:865.230000px;}
.y15c{bottom:866.130000px;}
.yc{bottom:880.890000px;}
.y6f{bottom:891.690000px;}
.yf8{bottom:892.410000px;}
.y142{bottom:893.130000px;}
.ya3{bottom:893.310000px;}
.y8a{bottom:893.670000px;}
.y37{bottom:893.850000px;}
.ybf{bottom:894.750000px;}
.yd9{bottom:895.290000px;}
.y15b{bottom:896.370000px;}
.yb{bottom:911.130000px;}
.y6e{bottom:922.110000px;}
.yf7{bottom:922.830000px;}
.y141{bottom:923.370000px;}
.ya2{bottom:923.550000px;}
.y113{bottom:923.730000px;}
.y36{bottom:924.090000px;}
.ybe{bottom:924.810000px;}
.yd8{bottom:925.530000px;}
.y15a{bottom:926.610000px;}
.ya{bottom:941.190000px;}
.y6d{bottom:952.530000px;}
.yf6{bottom:953.250000px;}
.y140{bottom:953.610000px;}
.y129{bottom:953.790000px;}
.ya1{bottom:953.970000px;}
.y112{bottom:954.150000px;}
.y35{bottom:954.330000px;}
.ybd{bottom:954.870000px;}
.yd7{bottom:955.590000px;}
.y159{bottom:956.850000px;}
.y9{bottom:980.610000px;}
.y6c{bottom:982.950000px;}
.y13f{bottom:983.670000px;}
.yf5{bottom:983.850000px;}
.y111{bottom:984.210000px;}
.ya0{bottom:984.390000px;}
.y34{bottom:984.570000px;}
.ybc{bottom:984.930000px;}
.yd6{bottom:985.290000px;}
.y158{bottom:987.090000px;}
.y6b{bottom:1013.550000px;}
.yf4{bottom:1013.910000px;}
.y13e{bottom:1014.090000px;}
.y110{bottom:1014.450000px;}
.y33{bottom:1014.810000px;}
.y9f{bottom:1014.990000px;}
.yd5{bottom:1015.170000px;}
.ybb{bottom:1015.530000px;}
.y157{bottom:1017.330000px;}
.y8{bottom:1022.730000px;}
.y6a{bottom:1043.970000px;}
.yf3{bottom:1044.510000px;}
.y13d{bottom:1044.690000px;}
.y32{bottom:1045.050000px;}
.y9e{bottom:1045.230000px;}
.yba{bottom:1045.590000px;}
.y156{bottom:1047.390000px;}
.y7{bottom:1063.410000px;}
.y69{bottom:1074.390000px;}
.yf2{bottom:1074.750000px;}
.y31{bottom:1075.110000px;}
.y9d{bottom:1075.470000px;}
.y155{bottom:1076.190000px;}
.y6{bottom:1101.570000px;}
.y68{bottom:1104.810000px;}
.yb9{bottom:1105.170000px;}
.y30{bottom:1105.350000px;}
.y9c{bottom:1105.530000px;}
.y10f{bottom:1112.370000px;}
.y67{bottom:1135.260000px;}
.y2f{bottom:1135.620000px;}
.y5{bottom:1139.760000px;}
.y2e{bottom:1154.700000px;}
.y2d{bottom:1174.140000px;}
.y2c{bottom:1190.880000px;}
.y2b{bottom:1207.800000px;}
.h9{height:30.568359px;}
.hb{height:33.766875px;}
.h7{height:35.459297px;}
.ha{height:50.743477px;}
.h3{height:52.066406px;}
.hc{height:56.245781px;}
.h4{height:58.218750px;}
.h2{height:61.136719px;}
.h8{height:65.884219px;}
.h5{height:71.529961px;}
.h6{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.x9{left:150.487500px;}
.xa{left:155.010000px;}
.x20{left:159.510000px;}
.xe{left:161.130000px;}
.x17{left:165.630000px;}
.x2{left:171.930000px;}
.x1d{left:181.650000px;}
.x1c{left:189.930000px;}
.xb{left:197.490000px;}
.x15{left:232.027500px;}
.x16{left:237.270000px;}
.x13{left:252.727500px;}
.x14{left:257.970000px;}
.x3{left:310.035000px;}
.x4{left:313.792500px;}
.x5{left:319.035000px;}
.x8{left:324.075000px;}
.x1a{left:358.252500px;}
.x1b{left:363.675000px;}
.x11{left:459.592500px;}
.x12{left:464.835000px;}
.x18{left:491.842500px;}
.x19{left:497.265000px;}
.x24{left:534.525000px;}
.xd{left:582.765000px;}
.x6{left:608.122500px;}
.x7{left:613.365000px;}
.x25{left:616.785000px;}
.x23{left:624.705000px;}
.x22{left:667.050000px;}
.x21{left:679.650000px;}
.x1e{left:737.767500px;}
.x1f{left:748.230000px;}
.xf{left:794.647500px;}
.x10{left:800.070000px;}
.xc{left:808.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls4e{letter-spacing:-0.832000pt;}
.ls37{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls36{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.277333pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls3b{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000001pt;}
.lse{letter-spacing:0.056533pt;}
.lsb{letter-spacing:0.064000pt;}
.ls33{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls3c{letter-spacing:0.160640pt;}
.ls34{letter-spacing:0.176533pt;}
.lsf{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.216320pt;}
.ls4b{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.433280pt;}
.ls46{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls4a{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls40{letter-spacing:1.073280pt;}
.ls15{letter-spacing:1.216000pt;}
.ls26{letter-spacing:1.472000pt;}
.ls1e{letter-spacing:1.713280pt;}
.ls21{letter-spacing:1.856000pt;}
.ls1f{letter-spacing:2.353280pt;}
.ls3{letter-spacing:2.496000pt;}
.ls1b{letter-spacing:2.752000pt;}
.ls45{letter-spacing:2.912000pt;}
.ls1d{letter-spacing:3.136000pt;}
.ls2{letter-spacing:3.776000pt;}
.ls3f{letter-spacing:4.032000pt;}
.ls2f{letter-spacing:4.672000pt;}
.ls2e{letter-spacing:5.312000pt;}
.ls48{letter-spacing:5.696000pt;}
.ls2c{letter-spacing:6.976000pt;}
.ls28{letter-spacing:7.232000pt;}
.ls4d{letter-spacing:7.616000pt;}
.ls24{letter-spacing:7.872000pt;}
.ls27{letter-spacing:8.256000pt;}
.ls23{letter-spacing:8.512000pt;}
.ls22{letter-spacing:8.896000pt;}
.lsd{letter-spacing:10.176000pt;}
.ls38{letter-spacing:10.432000pt;}
.ls43{letter-spacing:10.816000pt;}
.ls3d{letter-spacing:11.072000pt;}
.ls31{letter-spacing:11.232000pt;}
.ls47{letter-spacing:11.456000pt;}
.ls3e{letter-spacing:11.712000pt;}
.ls1{letter-spacing:12.096000pt;}
.ls39{letter-spacing:12.352000pt;}
.lsc{letter-spacing:12.736000pt;}
.lsa{letter-spacing:13.376000pt;}
.ls2b{letter-spacing:13.632000pt;}
.ls2d{letter-spacing:13.792000pt;}
.ls12{letter-spacing:14.513280pt;}
.ls17{letter-spacing:14.656000pt;}
.ls44{letter-spacing:16.298667pt;}
.ls4c{letter-spacing:17.856000pt;}
.ls32{letter-spacing:18.112000pt;}
.ls20{letter-spacing:18.496000pt;}
.ls18{letter-spacing:19.776000pt;}
.ls3a{letter-spacing:20.032000pt;}
.ls16{letter-spacing:21.696000pt;}
.ls14{letter-spacing:24.896000pt;}
.ls30{letter-spacing:29.376000pt;}
.ls49{letter-spacing:51.776000pt;}
.ls0{letter-spacing:58.176000pt;}
.ws7{word-spacing:-18.304000pt;}
.ws4{word-spacing:-18.176000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.984001pt;}
.ws0{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws9{word-spacing:-17.856000pt;}
.ws17{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.728000pt;}
.wsd{word-spacing:-17.664000pt;}
.wsf{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.344000pt;}
.ws1a{word-spacing:-17.152000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.807997pt;}
.ws11{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws14{word-spacing:-15.246720pt;}
.wsa{word-spacing:-14.926720pt;}
.wse{word-spacing:-13.120640pt;}
.ws15{word-spacing:-12.843307pt;}
.ws18{word-spacing:-7.168000pt;}
.ws19{word-spacing:-7.104000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-4.800000pt;}
._19{margin-left:-3.776000pt;}
._7{margin-left:-2.226133pt;}
._3{margin-left:-1.123200pt;}
._0{width:1.009280pt;}
._8{width:2.393387pt;}
._6{width:3.520000pt;}
._5{width:4.864000pt;}
._17{width:5.800107pt;}
._16{width:6.720000pt;}
._e{width:7.616000pt;}
._a{width:8.512000pt;}
._b{width:9.422720pt;}
._15{width:10.624000pt;}
._c{width:12.032000pt;}
._13{width:13.056000pt;}
._14{width:13.984000pt;}
._22{width:14.922667pt;}
._18{width:15.872000pt;}
._12{width:16.960000pt;}
._21{width:18.212053pt;}
._9{width:19.370667pt;}
._1b{width:20.413440pt;}
._1f{width:22.144000pt;}
._27{width:23.054720pt;}
._11{width:24.064000pt;}
._1d{width:25.216000pt;}
._1e{width:26.304000pt;}
._28{width:28.096000pt;}
._d{width:29.376000pt;}
._26{width:30.336000pt;}
._10{width:31.232000pt;}
._f{width:32.320000pt;}
._25{width:34.058667pt;}
._23{width:35.200000pt;}
._24{width:36.096000pt;}
._1a{width:37.504000pt;}
._29{width:38.436053pt;}
._20{width:45.184000pt;}
._2a{width:52.714667pt;}
._4{width:57.792000pt;}
._1{width:262.650667pt;}
._2{width:571.403307pt;}
._2b{width:750.154667pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:42.432000pt;}
.y3{bottom:63.072000pt;}
.y2{bottom:78.912000pt;}
.y1{bottom:98.912000pt;}
.y2a{bottom:116.032000pt;}
.y29{bottom:121.312000pt;}
.y13c{bottom:121.792000pt;}
.yb8{bottom:122.752000pt;}
.y50{bottom:122.912000pt;}
.yf1{bottom:123.232000pt;}
.y28{bottom:131.072000pt;}
.y66{bottom:136.346667pt;}
.y27{bottom:145.946667pt;}
.yd4{bottom:146.106667pt;}
.y65{bottom:146.266667pt;}
.y13b{bottom:148.666667pt;}
.y4f{bottom:149.786667pt;}
.yb7{bottom:149.946667pt;}
.yf0{bottom:150.266667pt;}
.y26{bottom:151.226667pt;}
.yd3{bottom:151.386667pt;}
.y89{bottom:160.826667pt;}
.y10e{bottom:160.986667pt;}
.y25{bottom:161.306667pt;}
.yd2{bottom:161.466667pt;}
.y171{bottom:164.506667pt;}
.y10d{bottom:166.266667pt;}
.y13a{bottom:175.386667pt;}
.y88{bottom:175.706667pt;}
.y64{bottom:175.866667pt;}
.y128{bottom:176.026667pt;}
.y10c{bottom:176.346667pt;}
.y4e{bottom:176.666667pt;}
.yef{bottom:177.146667pt;}
.y9b{bottom:181.146667pt;}
.y127{bottom:181.306667pt;}
.y87{bottom:190.746667pt;}
.y9a{bottom:191.066667pt;}
.y126{bottom:191.386667pt;}
.y24{bottom:191.546667pt;}
.y86{bottom:196.026667pt;}
.y139{bottom:202.266667pt;}
.yd1{bottom:202.586667pt;}
.y63{bottom:203.066667pt;}
.y4d{bottom:203.546667pt;}
.yee{bottom:203.866667pt;}
.y85{bottom:206.106667pt;}
.y170{bottom:217.946667pt;}
.y23{bottom:218.426667pt;}
.y154{bottom:221.146667pt;}
.y99{bottom:228.826667pt;}
.y138{bottom:228.986667pt;}
.yd0{bottom:229.466667pt;}
.y62{bottom:229.946667pt;}
.yb6{bottom:230.266667pt;}
.y4c{bottom:230.426667pt;}
.yed{bottom:230.586667pt;}
.y125{bottom:230.746667pt;}
.y16f{bottom:244.866667pt;}
.y22{bottom:245.346667pt;}
.y153{bottom:255.106667pt;}
.y98{bottom:255.586667pt;}
.ycf{bottom:256.226667pt;}
.y61{bottom:256.866667pt;}
.yb5{bottom:257.026667pt;}
.y4b{bottom:257.346667pt;}
.y124{bottom:257.506667pt;}
.y16e{bottom:271.586667pt;}
.y21{bottom:272.226667pt;}
.y84{bottom:281.186667pt;}
.y152{bottom:282.146667pt;}
.y97{bottom:282.306667pt;}
.y10b{bottom:282.466667pt;}
.y137{bottom:283.106667pt;}
.yce{bottom:283.426667pt;}
.y60{bottom:283.746667pt;}
.y4a{bottom:284.066667pt;}
.yb4{bottom:284.226667pt;}
.yec{bottom:284.546667pt;}
.y20{bottom:299.106667pt;}
.y16d{bottom:305.346667pt;}
.y83{bottom:307.906667pt;}
.y151{bottom:309.026667pt;}
.y10a{bottom:309.186667pt;}
.y95{bottom:309.506667pt;}
.y136{bottom:309.986667pt;}
.ycd{bottom:310.306667pt;}
.y5f{bottom:310.626667pt;}
.y49{bottom:310.946667pt;}
.y123{bottom:311.266667pt;}
.yeb{bottom:311.586667pt;}
.y96{bottom:316.226667pt;}
.y1f{bottom:325.826667pt;}
.y16c{bottom:332.386667pt;}
.y81{bottom:334.786667pt;}
.y150{bottom:335.906667pt;}
.y109{bottom:336.066667pt;}
.y94{bottom:336.386667pt;}
.y135{bottom:336.866667pt;}
.ycc{bottom:337.186667pt;}
.y5e{bottom:337.506667pt;}
.y48{bottom:337.826667pt;}
.y121{bottom:338.466667pt;}
.yea{bottom:338.626667pt;}
.y82{bottom:341.506667pt;}
.y122{bottom:345.186667pt;}
.y1e{bottom:352.706667pt;}
.y80{bottom:361.826667pt;}
.y108{bottom:362.786667pt;}
.y93{bottom:363.426667pt;}
.y134{bottom:363.746667pt;}
.ycb{bottom:363.906667pt;}
.y5d{bottom:364.226667pt;}
.yb3{bottom:364.546667pt;}
.y47{bottom:364.706667pt;}
.y120{bottom:365.506667pt;}
.ye9{bottom:365.666667pt;}
.y16b{bottom:366.146667pt;}
.y1d{bottom:379.586667pt;}
.y7f{bottom:388.706667pt;}
.y14f{bottom:389.506667pt;}
.y107{bottom:389.826667pt;}
.y92{bottom:390.306667pt;}
.y133{bottom:390.466667pt;}
.yca{bottom:390.946667pt;}
.y5c{bottom:391.106667pt;}
.yb2{bottom:391.266667pt;}
.y46{bottom:391.586667pt;}
.y11f{bottom:392.546667pt;}
.ye8{bottom:392.706667pt;}
.y16a{bottom:393.186667pt;}
.y1c{bottom:406.466667pt;}
.y7e{bottom:415.586667pt;}
.y14e{bottom:416.386667pt;}
.y106{bottom:416.866667pt;}
.y91{bottom:417.346667pt;}
.y132{bottom:417.666667pt;}
.yb1{bottom:417.826667pt;}
.y5b{bottom:417.986667pt;}
.yc9{bottom:418.146667pt;}
.y45{bottom:418.466667pt;}
.ye7{bottom:419.586667pt;}
.y169{bottom:420.226667pt;}
.y1b{bottom:433.346667pt;}
.y7d{bottom:442.306667pt;}
.y14d{bottom:443.426667pt;}
.y105{bottom:443.586667pt;}
.y90{bottom:444.386667pt;}
.yb0{bottom:444.546667pt;}
.y5a{bottom:444.866667pt;}
.y44{bottom:445.346667pt;}
.ye6{bottom:445.986667pt;}
.y11e{bottom:446.786667pt;}
.y168{bottom:447.106667pt;}
.y1a{bottom:460.226667pt;}
.y7c{bottom:469.346667pt;}
.y14c{bottom:470.306667pt;}
.y104{bottom:470.466667pt;}
.yaf{bottom:471.266667pt;}
.y8f{bottom:471.426667pt;}
.yc8{bottom:471.586667pt;}
.y59{bottom:471.746667pt;}
.y43{bottom:472.066667pt;}
.ye5{bottom:472.866667pt;}
.y11d{bottom:473.506667pt;}
.y167{bottom:473.986667pt;}
.y19{bottom:487.106667pt;}
.y7b{bottom:496.573333pt;}
.y14b{bottom:497.053333pt;}
.y103{bottom:497.533333pt;}
.yae{bottom:498.013333pt;}
.y131{bottom:498.173333pt;}
.y58{bottom:498.493333pt;}
.y42{bottom:498.973333pt;}
.ye4{bottom:499.773333pt;}
.y11c{bottom:500.573333pt;}
.y166{bottom:500.893333pt;}
.y17{bottom:514.013333pt;}
.y18{bottom:520.733333pt;}
.y7a{bottom:523.453333pt;}
.y14a{bottom:524.253333pt;}
.y102{bottom:524.413333pt;}
.yad{bottom:524.893333pt;}
.y130{bottom:525.053333pt;}
.y57{bottom:525.533333pt;}
.y41{bottom:525.693333pt;}
.ye3{bottom:526.493333pt;}
.y11b{bottom:527.453333pt;}
.y165{bottom:527.773333pt;}
.y16{bottom:540.733333pt;}
.y79{bottom:550.333333pt;}
.y101{bottom:551.133333pt;}
.yac{bottom:551.293333pt;}
.y12f{bottom:552.093333pt;}
.y56{bottom:552.413333pt;}
.y8d{bottom:552.573333pt;}
.y40{bottom:552.733333pt;}
.ye2{bottom:553.533333pt;}
.y11a{bottom:553.853333pt;}
.y164{bottom:554.653333pt;}
.y8e{bottom:559.293333pt;}
.y15{bottom:567.613333pt;}
.y77{bottom:577.053333pt;}
.y149{bottom:577.853333pt;}
.yab{bottom:578.013333pt;}
.y100{bottom:578.333333pt;}
.y12e{bottom:578.973333pt;}
.y55{bottom:579.293333pt;}
.yc7{bottom:579.453333pt;}
.y3f{bottom:579.613333pt;}
.ye1{bottom:580.573333pt;}
.y163{bottom:581.533333pt;}
.y78{bottom:583.773333pt;}
.y14{bottom:594.333333pt;}
.y76{bottom:604.253333pt;}
.y148{bottom:605.053333pt;}
.yaa{bottom:605.213333pt;}
.y12d{bottom:605.693333pt;}
.y54{bottom:606.173333pt;}
.y3e{bottom:606.493333pt;}
.y119{bottom:607.453333pt;}
.ye0{bottom:607.773333pt;}
.y162{bottom:608.413333pt;}
.y12{bottom:621.533333pt;}
.y13{bottom:628.253333pt;}
.y75{bottom:631.133333pt;}
.y147{bottom:631.773333pt;}
.yfe{bottom:631.933333pt;}
.ya9{bottom:632.253333pt;}
.y52{bottom:632.893333pt;}
.y3d{bottom:633.373333pt;}
.yc6{bottom:633.533333pt;}
.y118{bottom:633.853333pt;}
.ydf{bottom:634.493333pt;}
.y161{bottom:635.133333pt;}
.yff{bottom:638.653333pt;}
.y53{bottom:639.613333pt;}
.y11{bottom:648.573333pt;}
.y74{bottom:658.013333pt;}
.yfd{bottom:658.973333pt;}
.ya8{bottom:659.293333pt;}
.y12c{bottom:659.773333pt;}
.y51{bottom:659.933333pt;}
.y3c{bottom:660.253333pt;}
.y117{bottom:660.413333pt;}
.yc5{bottom:660.733333pt;}
.yde{bottom:661.373333pt;}
.y160{bottom:662.173333pt;}
.y10{bottom:675.453333pt;}
.y73{bottom:684.733333pt;}
.y146{bottom:685.693333pt;}
.yfc{bottom:685.853333pt;}
.ya7{bottom:686.493333pt;}
.y12b{bottom:686.653333pt;}
.y116{bottom:686.813333pt;}
.y8c{bottom:686.973333pt;}
.y3b{bottom:687.133333pt;}
.yc4{bottom:687.453333pt;}
.ydd{bottom:688.093333pt;}
.y15f{bottom:689.373333pt;}
.yf{bottom:702.333333pt;}
.y72{bottom:711.933333pt;}
.yfb{bottom:712.573333pt;}
.y145{bottom:712.733333pt;}
.ya6{bottom:713.373333pt;}
.y115{bottom:713.533333pt;}
.y8b{bottom:713.853333pt;}
.y3a{bottom:714.013333pt;}
.yc2{bottom:714.493333pt;}
.ydc{bottom:715.133333pt;}
.y15e{bottom:716.253333pt;}
.yc3{bottom:721.213333pt;}
.ye{bottom:729.213333pt;}
.y71{bottom:738.813333pt;}
.yfa{bottom:739.613333pt;}
.y144{bottom:739.933333pt;}
.ya5{bottom:740.093333pt;}
.y12a{bottom:740.413333pt;}
.y39{bottom:740.733333pt;}
.yc1{bottom:741.533333pt;}
.ydb{bottom:742.333333pt;}
.y15d{bottom:742.973333pt;}
.yd{bottom:756.133333pt;}
.y70{bottom:765.573333pt;}
.yf9{bottom:766.533333pt;}
.y143{bottom:766.693333pt;}
.y114{bottom:767.173333pt;}
.ya4{bottom:767.333333pt;}
.y38{bottom:767.653333pt;}
.yc0{bottom:768.453333pt;}
.yda{bottom:769.093333pt;}
.y15c{bottom:769.893333pt;}
.yc{bottom:783.013333pt;}
.y6f{bottom:792.613333pt;}
.yf8{bottom:793.253333pt;}
.y142{bottom:793.893333pt;}
.ya3{bottom:794.053333pt;}
.y8a{bottom:794.373333pt;}
.y37{bottom:794.533333pt;}
.ybf{bottom:795.333333pt;}
.yd9{bottom:795.813333pt;}
.y15b{bottom:796.773333pt;}
.yb{bottom:809.893333pt;}
.y6e{bottom:819.653333pt;}
.yf7{bottom:820.293333pt;}
.y141{bottom:820.773333pt;}
.ya2{bottom:820.933333pt;}
.y113{bottom:821.093333pt;}
.y36{bottom:821.413333pt;}
.ybe{bottom:822.053333pt;}
.yd8{bottom:822.693333pt;}
.y15a{bottom:823.653333pt;}
.ya{bottom:836.613333pt;}
.y6d{bottom:846.693333pt;}
.yf6{bottom:847.333333pt;}
.y140{bottom:847.653333pt;}
.y129{bottom:847.813333pt;}
.ya1{bottom:847.973333pt;}
.y112{bottom:848.133333pt;}
.y35{bottom:848.293333pt;}
.ybd{bottom:848.773333pt;}
.yd7{bottom:849.413333pt;}
.y159{bottom:850.533333pt;}
.y9{bottom:871.653333pt;}
.y6c{bottom:873.733333pt;}
.y13f{bottom:874.373333pt;}
.yf5{bottom:874.533333pt;}
.y111{bottom:874.853333pt;}
.ya0{bottom:875.013333pt;}
.y34{bottom:875.173333pt;}
.ybc{bottom:875.493333pt;}
.yd6{bottom:875.813333pt;}
.y158{bottom:877.413333pt;}
.y6b{bottom:900.933333pt;}
.yf4{bottom:901.253333pt;}
.y13e{bottom:901.413333pt;}
.y110{bottom:901.733333pt;}
.y33{bottom:902.053333pt;}
.y9f{bottom:902.213333pt;}
.yd5{bottom:902.373333pt;}
.ybb{bottom:902.693333pt;}
.y157{bottom:904.293333pt;}
.y8{bottom:909.093333pt;}
.y6a{bottom:927.973333pt;}
.yf3{bottom:928.453333pt;}
.y13d{bottom:928.613333pt;}
.y32{bottom:928.933333pt;}
.y9e{bottom:929.093333pt;}
.yba{bottom:929.413333pt;}
.y156{bottom:931.013333pt;}
.y7{bottom:945.253333pt;}
.y69{bottom:955.013333pt;}
.yf2{bottom:955.333333pt;}
.y31{bottom:955.653333pt;}
.y9d{bottom:955.973333pt;}
.y155{bottom:956.613333pt;}
.y6{bottom:979.173333pt;}
.y68{bottom:982.053333pt;}
.yb9{bottom:982.373333pt;}
.y30{bottom:982.533333pt;}
.y9c{bottom:982.693333pt;}
.y10f{bottom:988.773333pt;}
.y67{bottom:1009.120000pt;}
.y2f{bottom:1009.440000pt;}
.y5{bottom:1013.120000pt;}
.y2e{bottom:1026.400000pt;}
.y2d{bottom:1043.680000pt;}
.y2c{bottom:1058.560000pt;}
.y2b{bottom:1073.600000pt;}
.h9{height:27.171875pt;}
.hb{height:30.015000pt;}
.h7{height:31.519375pt;}
.ha{height:45.105313pt;}
.h3{height:46.281250pt;}
.hc{height:49.996250pt;}
.h4{height:51.750000pt;}
.h2{height:54.343750pt;}
.h8{height:58.563750pt;}
.h5{height:63.582187pt;}
.h6{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.x9{left:133.766667pt;}
.xa{left:137.786667pt;}
.x20{left:141.786667pt;}
.xe{left:143.226667pt;}
.x17{left:147.226667pt;}
.x2{left:152.826667pt;}
.x1d{left:161.466667pt;}
.x1c{left:168.826667pt;}
.xb{left:175.546667pt;}
.x15{left:206.246667pt;}
.x16{left:210.906667pt;}
.x13{left:224.646667pt;}
.x14{left:229.306667pt;}
.x3{left:275.586667pt;}
.x4{left:278.926667pt;}
.x5{left:283.586667pt;}
.x8{left:288.066667pt;}
.x1a{left:318.446667pt;}
.x1b{left:323.266667pt;}
.x11{left:408.526667pt;}
.x12{left:413.186667pt;}
.x18{left:437.193333pt;}
.x19{left:442.013333pt;}
.x24{left:475.133333pt;}
.xd{left:518.013333pt;}
.x6{left:540.553333pt;}
.x7{left:545.213333pt;}
.x25{left:548.253333pt;}
.x23{left:555.293333pt;}
.x22{left:592.933333pt;}
.x21{left:604.133333pt;}
.x1e{left:655.793333pt;}
.x1f{left:665.093333pt;}
.xf{left:706.353333pt;}
.x10{left:711.173333pt;}
.xc{left:718.373333pt;}
}




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