
    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_5ee3573f0380eb50cf7167ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ec87b5d66e87a3e256b70973.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_8fa76f6b446780aeca1aed24.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_5b866c8d069468a5c6df9aa3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_568f5735dcb6335f1e93c4c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_221e5e6ce4c61e376b7c5577.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_4c6ee21445f216198fa2e247.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_3144618236b72ffac4df233d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_bb3cfda0289e6786fca36462.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_068558d2eb2e2dbeb30b592b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_bda505d30ea11f3193da45e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ee2b5d225b1bd9c31fcdb060.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_b17f08ab4c956a53e489edc6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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;}
.ls19{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.004320px;}
.ls5{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.141120px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.269280px;}
.ls1a{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.496080px;}
.ls12{letter-spacing:8.586720px;}
.lsd{letter-spacing:9.306720px;}
.lsb{letter-spacing:9.426720px;}
.ls8{letter-spacing:10.866720px;}
.lsa{letter-spacing:17.946720px;}
.ls15{letter-spacing:19.386720px;}
.ls7{letter-spacing:20.826720px;}
.ls0{letter-spacing:30.186720px;}
.ls17{letter-spacing:102.600000px;}
.lse{letter-spacing:103.949280px;}
.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:-54.000000px;}
.wse{word-spacing:-17.573760px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.319360px;}
.ws5{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.329400px;}
.ws9{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.ws11{word-spacing:-11.160000px;}
.wsa{word-spacing:-9.724320px;}
.wsb{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._2b{margin-left:-2.339280px;}
._1{margin-left:-1.314720px;}
._0{width:1.075680px;}
._4{width:2.502720px;}
._c{width:4.016880px;}
._5{width:5.778000px;}
._6{width:7.020000px;}
._b{width:8.172720px;}
._8{width:10.006560px;}
._7{width:11.574720px;}
._f{width:13.446000px;}
._22{width:14.474160px;}
._2{width:15.858000px;}
._3{width:17.190000px;}
._9{width:18.576000px;}
._a{width:19.818000px;}
._11{width:21.155040px;}
._12{width:22.410000px;}
._19{width:23.844240px;}
._10{width:25.278480px;}
._17{width:26.354160px;}
._15{width:28.146960px;}
._16{width:29.521440px;}
._1e{width:30.776400px;}
._1a{width:32.509440px;}
._d{width:34.140000px;}
._e{width:35.470320px;}
._20{width:36.968400px;}
._14{width:38.604960px;}
._13{width:39.620880px;}
._18{width:41.235600px;}
._1c{width:44.460000px;}
._1b{width:46.050480px;}
._1f{width:47.175120px;}
._1d{width:55.278000px;}
._21{width:59.852160px;}
._24{width:90.642960px;}
._23{width:91.812960px;}
._28{width:93.027360px;}
._25{width:97.911840px;}
._26{width:102.144720px;}
._27{width:103.376880px;}
._2a{width:104.874960px;}
._29{width:105.919920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.060000px;}
.yd3{bottom:4.320000px;}
.yd5{bottom:4.500000px;}
.ydf{bottom:4.680000px;}
.yda{bottom:4.860000px;}
.ydc{bottom:8.100000px;}
.y4{bottom:58.500000px;}
.y3{bottom:78.660000px;}
.ycf{bottom:186.150000px;}
.y51{bottom:186.870000px;}
.y12f{bottom:187.770000px;}
.y38{bottom:189.570000px;}
.y10a{bottom:192.450000px;}
.ya7{bottom:196.950000px;}
.y12e{bottom:200.910000px;}
.y37{bottom:205.950000px;}
.y50{bottom:206.130000px;}
.yce{bottom:211.530000px;}
.ya6{bottom:214.050000px;}
.y109{bottom:215.670000px;}
.y12d{bottom:227.190000px;}
.ycd{bottom:227.370000px;}
.y36{bottom:231.330000px;}
.y108{bottom:233.130000px;}
.y12c{bottom:240.150000px;}
.ycc{bottom:242.850000px;}
.y35{bottom:247.710000px;}
.ya5{bottom:248.610000px;}
.y107{bottom:250.410000px;}
.y12b{bottom:253.290000px;}
.y34{bottom:264.090000px;}
.ya4{bottom:265.890000px;}
.y12a{bottom:266.430000px;}
.y106{bottom:267.690000px;}
.y129{bottom:279.570000px;}
.y33{bottom:280.470000px;}
.ya3{bottom:283.170000px;}
.y105{bottom:290.730000px;}
.y128{bottom:292.710000px;}
.y32{bottom:296.850000px;}
.ya2{bottom:300.450000px;}
.y127{bottom:305.850000px;}
.y104{bottom:308.190000px;}
.y31{bottom:313.230000px;}
.ya1{bottom:317.550000px;}
.y126{bottom:318.810000px;}
.y103{bottom:325.290000px;}
.y30{bottom:329.610000px;}
.y125{bottom:331.950000px;}
.ya0{bottom:334.830000px;}
.y124{bottom:345.090000px;}
.y2f{bottom:345.990000px;}
.y102{bottom:348.510000px;}
.y9f{bottom:352.110000px;}
.y7e{bottom:352.830000px;}
.y123{bottom:358.230000px;}
.y2e{bottom:362.415000px;}
.y101{bottom:365.835000px;}
.y9e{bottom:369.435000px;}
.y122{bottom:371.415000px;}
.y7d{bottom:378.255000px;}
.y2d{bottom:378.975000px;}
.y100{bottom:383.115000px;}
.y121{bottom:384.375000px;}
.y9d{bottom:386.715000px;}
.y7c{bottom:394.635000px;}
.y2c{bottom:395.355000px;}
.y120{bottom:397.515000px;}
.yff{bottom:400.395000px;}
.y9c{bottom:403.815000px;}
.y11f{bottom:410.655000px;}
.y7b{bottom:411.015000px;}
.y2b{bottom:411.735000px;}
.yfe{bottom:417.675000px;}
.y11e{bottom:423.795000px;}
.y9b{bottom:425.415000px;}
.y7a{bottom:427.395000px;}
.y2a{bottom:428.115000px;}
.yfd{bottom:434.955000px;}
.y11d{bottom:436.935000px;}
.y79{bottom:443.775000px;}
.y9a{bottom:448.095000px;}
.y11c{bottom:450.075000px;}
.yfc{bottom:452.055000px;}
.y29{bottom:453.495000px;}
.y78{bottom:460.155000px;}
.y11b{bottom:463.035000px;}
.y99{bottom:465.375000px;}
.yfb{bottom:469.335000px;}
.y28{bottom:469.875000px;}
.y77{bottom:476.535000px;}
.y98{bottom:482.655000px;}
.y11a{bottom:484.635000px;}
.y27{bottom:486.255000px;}
.yfa{bottom:486.615000px;}
.y76{bottom:492.915000px;}
.ycb{bottom:499.035000px;}
.y97{bottom:499.935000px;}
.y26{bottom:502.635000px;}
.y75{bottom:509.295000px;}
.yf9{bottom:509.655000px;}
.y4f{bottom:510.375000px;}
.yca{bottom:516.135000px;}
.y25{bottom:519.015000px;}
.y96{bottom:521.715000px;}
.y74{bottom:525.675000px;}
.y4e{bottom:526.755000px;}
.yf8{bottom:527.115000px;}
.y119{bottom:527.655000px;}
.yc9{bottom:533.415000px;}
.y24{bottom:535.395000px;}
.y95{bottom:538.815000px;}
.y4d{bottom:543.135000px;}
.y118{bottom:544.035000px;}
.yf7{bottom:544.395000px;}
.y73{bottom:551.415000px;}
.y23{bottom:551.775000px;}
.y94{bottom:556.095000px;}
.y4c{bottom:559.515000px;}
.yc8{bottom:559.695000px;}
.y15a{bottom:560.595000px;}
.yf6{bottom:561.675000px;}
.y22{bottom:568.155000px;}
.y72{bottom:568.695000px;}
.y93{bottom:573.375000px;}
.y159{bottom:573.735000px;}
.y4b{bottom:575.895000px;}
.yc7{bottom:576.975000px;}
.yf5{bottom:578.955000px;}
.y21{bottom:584.535000px;}
.y71{bottom:585.975000px;}
.y158{bottom:586.875000px;}
.y92{bottom:590.655000px;}
.y4a{bottom:592.275000px;}
.yc6{bottom:594.255000px;}
.yf4{bottom:596.055000px;}
.y157{bottom:600.015000px;}
.y20{bottom:600.915000px;}
.y70{bottom:603.075000px;}
.y91{bottom:607.935000px;}
.y117{bottom:611.175000px;}
.yc5{bottom:611.535000px;}
.y156{bottom:613.155000px;}
.y1f{bottom:617.295000px;}
.y49{bottom:617.655000px;}
.yf3{bottom:619.275000px;}
.y6f{bottom:620.385000px;}
.y155{bottom:626.145000px;}
.y116{bottom:627.585000px;}
.yc4{bottom:628.665000px;}
.y90{bottom:629.565000px;}
.y48{bottom:634.245000px;}
.y154{bottom:639.285000px;}
.y1e{bottom:640.005000px;}
.y115{bottom:643.965000px;}
.yf2{bottom:645.405000px;}
.yc3{bottom:645.945000px;}
.y6e{bottom:646.665000px;}
.y47{bottom:650.625000px;}
.y8f{bottom:652.245000px;}
.y153{bottom:652.425000px;}
.y114{bottom:660.345000px;}
.yf1{bottom:661.785000px;}
.yc2{bottom:663.225000px;}
.y6d{bottom:663.945000px;}
.y152{bottom:665.565000px;}
.y46{bottom:667.005000px;}
.y8e{bottom:669.345000px;}
.y113{bottom:676.725000px;}
.y1d{bottom:677.445000px;}
.yf0{bottom:678.165000px;}
.y151{bottom:678.705000px;}
.yc1{bottom:680.505000px;}
.y6c{bottom:681.225000px;}
.y8d{bottom:686.625000px;}
.y150{bottom:691.845000px;}
.y45{bottom:692.385000px;}
.y1c{bottom:692.925000px;}
.y112{bottom:693.105000px;}
.yef{bottom:694.545000px;}
.yc0{bottom:697.785000px;}
.y6b{bottom:698.325000px;}
.y8c{bottom:703.905000px;}
.y14f{bottom:704.805000px;}
.y44{bottom:708.765000px;}
.y111{bottom:709.485000px;}
.yee{bottom:710.925000px;}
.ybf{bottom:715.065000px;}
.y6a{bottom:715.605000px;}
.y14e{bottom:717.945000px;}
.y8b{bottom:721.185000px;}
.y1b{bottom:723.525000px;}
.y110{bottom:725.865000px;}
.y14d{bottom:731.085000px;}
.ybe{bottom:732.165000px;}
.y69{bottom:732.885000px;}
.y43{bottom:734.145000px;}
.yed{bottom:736.305000px;}
.y8a{bottom:738.465000px;}
.y1a{bottom:739.005000px;}
.y10f{bottom:742.245000px;}
.y14c{bottom:744.225000px;}
.ybd{bottom:749.445000px;}
.y68{bottom:750.165000px;}
.y42{bottom:750.525000px;}
.yec{bottom:752.685000px;}
.y19{bottom:754.485000px;}
.y14b{bottom:757.365000px;}
.y10e{bottom:758.625000px;}
.y89{bottom:760.065000px;}
.ybc{bottom:766.725000px;}
.y67{bottom:767.445000px;}
.yeb{bottom:769.065000px;}
.y18{bottom:770.145000px;}
.y14a{bottom:770.505000px;}
.y10d{bottom:775.005000px;}
.y41{bottom:775.905000px;}
.y88{bottom:782.565000px;}
.y149{bottom:783.465000px;}
.ybb{bottom:784.005000px;}
.y66{bottom:784.725000px;}
.yea{bottom:785.445000px;}
.y17{bottom:785.625000px;}
.y148{bottom:796.605000px;}
.y10c{bottom:797.685000px;}
.y87{bottom:799.845000px;}
.y16{bottom:801.105000px;}
.y40{bottom:801.285000px;}
.y65{bottom:801.825000px;}
.y147{bottom:809.745000px;}
.y15{bottom:816.585000px;}
.y86{bottom:817.125000px;}
.y3f{bottom:817.665000px;}
.ye9{bottom:818.205000px;}
.yba{bottom:818.385000px;}
.y64{bottom:819.105000px;}
.y146{bottom:822.885000px;}
.y14{bottom:832.245000px;}
.y3e{bottom:834.045000px;}
.y85{bottom:834.405000px;}
.ye8{bottom:834.585000px;}
.y145{bottom:836.025000px;}
.y63{bottom:836.385000px;}
.yb9{bottom:840.165000px;}
.y13{bottom:847.725000px;}
.y10b{bottom:848.985000px;}
.y3d{bottom:850.425000px;}
.ye7{bottom:850.965000px;}
.y62{bottom:853.665000px;}
.y84{bottom:856.185000px;}
.yb8{bottom:857.445000px;}
.y144{bottom:862.125000px;}
.y12{bottom:863.205000px;}
.ye6{bottom:867.345000px;}
.yb7{bottom:874.725000px;}
.y143{bottom:875.265000px;}
.y3c{bottom:875.805000px;}
.y11{bottom:878.730000px;}
.y61{bottom:879.990000px;}
.ye5{bottom:883.770000px;}
.y83{bottom:888.450000px;}
.yb6{bottom:892.050000px;}
.y3b{bottom:892.230000px;}
.y10{bottom:894.390000px;}
.y60{bottom:897.270000px;}
.y142{bottom:901.590000px;}
.ye4{bottom:905.010000px;}
.y3a{bottom:908.610000px;}
.yb5{bottom:909.330000px;}
.yf{bottom:909.870000px;}
.y5f{bottom:914.370000px;}
.y141{bottom:914.730000px;}
.y39{bottom:924.990000px;}
.ye{bottom:925.350000px;}
.yb4{bottom:926.430000px;}
.y140{bottom:927.690000px;}
.ye3{bottom:930.930000px;}
.y5e{bottom:931.650000px;}
.y82{bottom:934.710000px;}
.y13f{bottom:940.830000px;}
.yd{bottom:941.730000px;}
.yb3{bottom:943.710000px;}
.ye2{bottom:944.610000px;}
.y81{bottom:947.850000px;}
.y5d{bottom:948.930000px;}
.y13e{bottom:953.970000px;}
.yc{bottom:959.010000px;}
.y80{bottom:960.990000px;}
.ye1{bottom:962.430000px;}
.y5c{bottom:966.210000px;}
.y13d{bottom:967.110000px;}
.y7f{bottom:974.130000px;}
.yb{bottom:976.110000px;}
.yb2{bottom:978.270000px;}
.ydb{bottom:980.250000px;}
.y5b{bottom:983.490000px;}
.ya{bottom:993.390000px;}
.yb1{bottom:995.550000px;}
.ye0{bottom:997.890000px;}
.y5a{bottom:1000.590000px;}
.y13c{bottom:1006.350000px;}
.y9{bottom:1010.670000px;}
.yb0{bottom:1012.830000px;}
.yde{bottom:1015.710000px;}
.y59{bottom:1017.870000px;}
.y13b{bottom:1019.490000px;}
.y8{bottom:1027.950000px;}
.yaf{bottom:1029.930000px;}
.y13a{bottom:1032.630000px;}
.ydd{bottom:1033.530000px;}
.y58{bottom:1041.090000px;}
.y139{bottom:1045.770000px;}
.yae{bottom:1047.210000px;}
.y7{bottom:1048.470000px;}
.yd7{bottom:1051.350000px;}
.y138{bottom:1058.910000px;}
.yad{bottom:1064.490000px;}
.yd9{bottom:1068.990000px;}
.y137{bottom:1072.050000px;}
.y57{bottom:1079.070000px;}
.y136{bottom:1085.010000px;}
.yac{bottom:1086.090000px;}
.yd6{bottom:1086.810000px;}
.y6{bottom:1094.190000px;}
.y56{bottom:1095.450000px;}
.y135{bottom:1098.150000px;}
.yd4{bottom:1104.630000px;}
.yab{bottom:1108.770000px;}
.y134{bottom:1111.290000px;}
.y55{bottom:1111.830000px;}
.yd2{bottom:1122.450000px;}
.y5{bottom:1124.070000px;}
.y133{bottom:1124.430000px;}
.yaa{bottom:1126.050000px;}
.y54{bottom:1128.210000px;}
.y132{bottom:1137.600000px;}
.ya9{bottom:1143.360000px;}
.y53{bottom:1144.620000px;}
.y131{bottom:1150.740000px;}
.yd1{bottom:1151.820000px;}
.ya8{bottom:1160.460000px;}
.y52{bottom:1161.000000px;}
.y130{bottom:1163.700000px;}
.yd0{bottom:1164.240000px;}
.y2{bottom:1177.740000px;}
.y1{bottom:1195.020000px;}
.h10{height:16.920000px;}
.he{height:16.956000px;}
.h11{height:17.100000px;}
.h17{height:33.518320px;}
.h12{height:34.740000px;}
.h13{height:40.764023px;}
.h9{height:41.522695px;}
.h14{height:44.496211px;}
.h3{height:45.184219px;}
.hb{height:47.321367px;}
.ha{height:47.344922px;}
.hf{height:48.616875px;}
.hd{height:49.583118px;}
.h7{height:52.971680px;}
.h16{height:53.118281px;}
.h6{height:54.421875px;}
.h2{height:58.651172px;}
.hc{height:59.614102px;}
.h8{height:61.423863px;}
.h5{height:64.978594px;}
.h15{height:70.200000px;}
.h4{height:141.328125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:39.420000px;}
.w8{width:43.956000px;}
.w6{width:58.176000px;}
.w5{width:59.400000px;}
.w9{width:86.760000px;}
.w3{width:131.616000px;}
.w4{width:218.550000px;}
.w2{width:350.895000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:8.640000px;}
.x2a{left:12.240000px;}
.x21{left:18.720000px;}
.x29{left:22.140000px;}
.x26{left:25.770000px;}
.x28{left:29.340000px;}
.x2b{left:32.400000px;}
.x4{left:55.080000px;}
.x1e{left:65.730000px;}
.xc{left:75.600000px;}
.xe{left:76.680000px;}
.x20{left:87.840000px;}
.x14{left:89.280000px;}
.x1b{left:102.270000px;}
.x1d{left:116.130000px;}
.x2c{left:123.150000px;}
.x18{left:129.096000px;}
.x5{left:155.370000px;}
.x1c{left:164.910000px;}
.x2f{left:175.530000px;}
.xd{left:184.350000px;}
.x30{left:188.850000px;}
.x31{left:202.170000px;}
.x8{left:249.330000px;}
.x9{left:304.275000px;}
.xb{left:354.315000px;}
.x7{left:384.555000px;}
.xa{left:388.695000px;}
.x2e{left:427.395000px;}
.x1{left:429.195000px;}
.x17{left:430.635000px;}
.x3{left:442.515000px;}
.x6{left:446.655000px;}
.xf{left:460.155000px;}
.x16{left:472.755000px;}
.x19{left:475.815000px;}
.x10{left:481.755000px;}
.x32{left:492.195000px;}
.x11{left:502.665000px;}
.x27{left:518.505000px;}
.x13{left:543.525000px;}
.x2d{left:551.085000px;}
.x1a{left:562.965000px;}
.x1f{left:605.985000px;}
.x2{left:645.225000px;}
.x22{left:666.105000px;}
.x23{left:725.010000px;}
.x24{left:785.130000px;}
.x12{left:823.830000px;}
.x15{left:837.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.003840pt;}
.ls5{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.125440pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.239360pt;}
.ls1a{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.440960pt;}
.ls12{letter-spacing:7.632640pt;}
.lsd{letter-spacing:8.272640pt;}
.lsb{letter-spacing:8.379307pt;}
.ls8{letter-spacing:9.659307pt;}
.lsa{letter-spacing:15.952640pt;}
.ls15{letter-spacing:17.232640pt;}
.ls7{letter-spacing:18.512640pt;}
.ls0{letter-spacing:26.832640pt;}
.ls17{letter-spacing:91.200000pt;}
.lse{letter-spacing:92.399360pt;}
.ws4{word-spacing:-48.000000pt;}
.wse{word-spacing:-15.621120pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.728320pt;}
.ws5{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws12{word-spacing:-10.959467pt;}
.ws9{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.ws11{word-spacing:-9.920000pt;}
.wsa{word-spacing:-8.643840pt;}
.wsb{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._2b{margin-left:-2.079360pt;}
._1{margin-left:-1.168640pt;}
._0{width:0.956160pt;}
._4{width:2.224640pt;}
._c{width:3.570560pt;}
._5{width:5.136000pt;}
._6{width:6.240000pt;}
._b{width:7.264640pt;}
._8{width:8.894720pt;}
._7{width:10.288640pt;}
._f{width:11.952000pt;}
._22{width:12.865920pt;}
._2{width:14.096000pt;}
._3{width:15.280000pt;}
._9{width:16.512000pt;}
._a{width:17.616000pt;}
._11{width:18.804480pt;}
._12{width:19.920000pt;}
._19{width:21.194880pt;}
._10{width:22.469760pt;}
._17{width:23.425920pt;}
._15{width:25.019520pt;}
._16{width:26.241280pt;}
._1e{width:27.356800pt;}
._1a{width:28.897280pt;}
._d{width:30.346667pt;}
._e{width:31.529173pt;}
._20{width:32.860800pt;}
._14{width:34.315520pt;}
._13{width:35.218560pt;}
._18{width:36.653867pt;}
._1c{width:39.520000pt;}
._1b{width:40.933760pt;}
._1f{width:41.933440pt;}
._1d{width:49.136000pt;}
._21{width:53.201920pt;}
._24{width:80.571520pt;}
._23{width:81.611520pt;}
._28{width:82.690987pt;}
._25{width:87.032747pt;}
._26{width:90.795307pt;}
._27{width:91.890560pt;}
._2a{width:93.222187pt;}
._29{width:94.151040pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:2.720000pt;}
.yd3{bottom:3.840000pt;}
.yd5{bottom:4.000000pt;}
.ydf{bottom:4.160000pt;}
.yda{bottom:4.320000pt;}
.ydc{bottom:7.200000pt;}
.y4{bottom:52.000000pt;}
.y3{bottom:69.920000pt;}
.ycf{bottom:165.466667pt;}
.y51{bottom:166.106667pt;}
.y12f{bottom:166.906667pt;}
.y38{bottom:168.506667pt;}
.y10a{bottom:171.066667pt;}
.ya7{bottom:175.066667pt;}
.y12e{bottom:178.586667pt;}
.y37{bottom:183.066667pt;}
.y50{bottom:183.226667pt;}
.yce{bottom:188.026667pt;}
.ya6{bottom:190.266667pt;}
.y109{bottom:191.706667pt;}
.y12d{bottom:201.946667pt;}
.ycd{bottom:202.106667pt;}
.y36{bottom:205.626667pt;}
.y108{bottom:207.226667pt;}
.y12c{bottom:213.466667pt;}
.ycc{bottom:215.866667pt;}
.y35{bottom:220.186667pt;}
.ya5{bottom:220.986667pt;}
.y107{bottom:222.586667pt;}
.y12b{bottom:225.146667pt;}
.y34{bottom:234.746667pt;}
.ya4{bottom:236.346667pt;}
.y12a{bottom:236.826667pt;}
.y106{bottom:237.946667pt;}
.y129{bottom:248.506667pt;}
.y33{bottom:249.306667pt;}
.ya3{bottom:251.706667pt;}
.y105{bottom:258.426667pt;}
.y128{bottom:260.186667pt;}
.y32{bottom:263.866667pt;}
.ya2{bottom:267.066667pt;}
.y127{bottom:271.866667pt;}
.y104{bottom:273.946667pt;}
.y31{bottom:278.426667pt;}
.ya1{bottom:282.266667pt;}
.y126{bottom:283.386667pt;}
.y103{bottom:289.146667pt;}
.y30{bottom:292.986667pt;}
.y125{bottom:295.066667pt;}
.ya0{bottom:297.626667pt;}
.y124{bottom:306.746667pt;}
.y2f{bottom:307.546667pt;}
.y102{bottom:309.786667pt;}
.y9f{bottom:312.986667pt;}
.y7e{bottom:313.626667pt;}
.y123{bottom:318.426667pt;}
.y2e{bottom:322.146667pt;}
.y101{bottom:325.186667pt;}
.y9e{bottom:328.386667pt;}
.y122{bottom:330.146667pt;}
.y7d{bottom:336.226667pt;}
.y2d{bottom:336.866667pt;}
.y100{bottom:340.546667pt;}
.y121{bottom:341.666667pt;}
.y9d{bottom:343.746667pt;}
.y7c{bottom:350.786667pt;}
.y2c{bottom:351.426667pt;}
.y120{bottom:353.346667pt;}
.yff{bottom:355.906667pt;}
.y9c{bottom:358.946667pt;}
.y11f{bottom:365.026667pt;}
.y7b{bottom:365.346667pt;}
.y2b{bottom:365.986667pt;}
.yfe{bottom:371.266667pt;}
.y11e{bottom:376.706667pt;}
.y9b{bottom:378.146667pt;}
.y7a{bottom:379.906667pt;}
.y2a{bottom:380.546667pt;}
.yfd{bottom:386.626667pt;}
.y11d{bottom:388.386667pt;}
.y79{bottom:394.466667pt;}
.y9a{bottom:398.306667pt;}
.y11c{bottom:400.066667pt;}
.yfc{bottom:401.826667pt;}
.y29{bottom:403.106667pt;}
.y78{bottom:409.026667pt;}
.y11b{bottom:411.586667pt;}
.y99{bottom:413.666667pt;}
.yfb{bottom:417.186667pt;}
.y28{bottom:417.666667pt;}
.y77{bottom:423.586667pt;}
.y98{bottom:429.026667pt;}
.y11a{bottom:430.786667pt;}
.y27{bottom:432.226667pt;}
.yfa{bottom:432.546667pt;}
.y76{bottom:438.146667pt;}
.ycb{bottom:443.586667pt;}
.y97{bottom:444.386667pt;}
.y26{bottom:446.786667pt;}
.y75{bottom:452.706667pt;}
.yf9{bottom:453.026667pt;}
.y4f{bottom:453.666667pt;}
.yca{bottom:458.786667pt;}
.y25{bottom:461.346667pt;}
.y96{bottom:463.746667pt;}
.y74{bottom:467.266667pt;}
.y4e{bottom:468.226667pt;}
.yf8{bottom:468.546667pt;}
.y119{bottom:469.026667pt;}
.yc9{bottom:474.146667pt;}
.y24{bottom:475.906667pt;}
.y95{bottom:478.946667pt;}
.y4d{bottom:482.786667pt;}
.y118{bottom:483.586667pt;}
.yf7{bottom:483.906667pt;}
.y73{bottom:490.146667pt;}
.y23{bottom:490.466667pt;}
.y94{bottom:494.306667pt;}
.y4c{bottom:497.346667pt;}
.yc8{bottom:497.506667pt;}
.y15a{bottom:498.306667pt;}
.yf6{bottom:499.266667pt;}
.y22{bottom:505.026667pt;}
.y72{bottom:505.506667pt;}
.y93{bottom:509.666667pt;}
.y159{bottom:509.986667pt;}
.y4b{bottom:511.906667pt;}
.yc7{bottom:512.866667pt;}
.yf5{bottom:514.626667pt;}
.y21{bottom:519.586667pt;}
.y71{bottom:520.866667pt;}
.y158{bottom:521.666667pt;}
.y92{bottom:525.026667pt;}
.y4a{bottom:526.466667pt;}
.yc6{bottom:528.226667pt;}
.yf4{bottom:529.826667pt;}
.y157{bottom:533.346667pt;}
.y20{bottom:534.146667pt;}
.y70{bottom:536.066667pt;}
.y91{bottom:540.386667pt;}
.y117{bottom:543.266667pt;}
.yc5{bottom:543.586667pt;}
.y156{bottom:545.026667pt;}
.y1f{bottom:548.706667pt;}
.y49{bottom:549.026667pt;}
.yf3{bottom:550.466667pt;}
.y6f{bottom:551.453333pt;}
.y155{bottom:556.573333pt;}
.y116{bottom:557.853333pt;}
.yc4{bottom:558.813333pt;}
.y90{bottom:559.613333pt;}
.y48{bottom:563.773333pt;}
.y154{bottom:568.253333pt;}
.y1e{bottom:568.893333pt;}
.y115{bottom:572.413333pt;}
.yf2{bottom:573.693333pt;}
.yc3{bottom:574.173333pt;}
.y6e{bottom:574.813333pt;}
.y47{bottom:578.333333pt;}
.y8f{bottom:579.773333pt;}
.y153{bottom:579.933333pt;}
.y114{bottom:586.973333pt;}
.yf1{bottom:588.253333pt;}
.yc2{bottom:589.533333pt;}
.y6d{bottom:590.173333pt;}
.y152{bottom:591.613333pt;}
.y46{bottom:592.893333pt;}
.y8e{bottom:594.973333pt;}
.y113{bottom:601.533333pt;}
.y1d{bottom:602.173333pt;}
.yf0{bottom:602.813333pt;}
.y151{bottom:603.293333pt;}
.yc1{bottom:604.893333pt;}
.y6c{bottom:605.533333pt;}
.y8d{bottom:610.333333pt;}
.y150{bottom:614.973333pt;}
.y45{bottom:615.453333pt;}
.y1c{bottom:615.933333pt;}
.y112{bottom:616.093333pt;}
.yef{bottom:617.373333pt;}
.yc0{bottom:620.253333pt;}
.y6b{bottom:620.733333pt;}
.y8c{bottom:625.693333pt;}
.y14f{bottom:626.493333pt;}
.y44{bottom:630.013333pt;}
.y111{bottom:630.653333pt;}
.yee{bottom:631.933333pt;}
.ybf{bottom:635.613333pt;}
.y6a{bottom:636.093333pt;}
.y14e{bottom:638.173333pt;}
.y8b{bottom:641.053333pt;}
.y1b{bottom:643.133333pt;}
.y110{bottom:645.213333pt;}
.y14d{bottom:649.853333pt;}
.ybe{bottom:650.813333pt;}
.y69{bottom:651.453333pt;}
.y43{bottom:652.573333pt;}
.yed{bottom:654.493333pt;}
.y8a{bottom:656.413333pt;}
.y1a{bottom:656.893333pt;}
.y10f{bottom:659.773333pt;}
.y14c{bottom:661.533333pt;}
.ybd{bottom:666.173333pt;}
.y68{bottom:666.813333pt;}
.y42{bottom:667.133333pt;}
.yec{bottom:669.053333pt;}
.y19{bottom:670.653333pt;}
.y14b{bottom:673.213333pt;}
.y10e{bottom:674.333333pt;}
.y89{bottom:675.613333pt;}
.ybc{bottom:681.533333pt;}
.y67{bottom:682.173333pt;}
.yeb{bottom:683.613333pt;}
.y18{bottom:684.573333pt;}
.y14a{bottom:684.893333pt;}
.y10d{bottom:688.893333pt;}
.y41{bottom:689.693333pt;}
.y88{bottom:695.613333pt;}
.y149{bottom:696.413333pt;}
.ybb{bottom:696.893333pt;}
.y66{bottom:697.533333pt;}
.yea{bottom:698.173333pt;}
.y17{bottom:698.333333pt;}
.y148{bottom:708.093333pt;}
.y10c{bottom:709.053333pt;}
.y87{bottom:710.973333pt;}
.y16{bottom:712.093333pt;}
.y40{bottom:712.253333pt;}
.y65{bottom:712.733333pt;}
.y147{bottom:719.773333pt;}
.y15{bottom:725.853333pt;}
.y86{bottom:726.333333pt;}
.y3f{bottom:726.813333pt;}
.ye9{bottom:727.293333pt;}
.yba{bottom:727.453333pt;}
.y64{bottom:728.093333pt;}
.y146{bottom:731.453333pt;}
.y14{bottom:739.773333pt;}
.y3e{bottom:741.373333pt;}
.y85{bottom:741.693333pt;}
.ye8{bottom:741.853333pt;}
.y145{bottom:743.133333pt;}
.y63{bottom:743.453333pt;}
.yb9{bottom:746.813333pt;}
.y13{bottom:753.533333pt;}
.y10b{bottom:754.653333pt;}
.y3d{bottom:755.933333pt;}
.ye7{bottom:756.413333pt;}
.y62{bottom:758.813333pt;}
.y84{bottom:761.053333pt;}
.yb8{bottom:762.173333pt;}
.y144{bottom:766.333333pt;}
.y12{bottom:767.293333pt;}
.ye6{bottom:770.973333pt;}
.yb7{bottom:777.533333pt;}
.y143{bottom:778.013333pt;}
.y3c{bottom:778.493333pt;}
.y11{bottom:781.093333pt;}
.y61{bottom:782.213333pt;}
.ye5{bottom:785.573333pt;}
.y83{bottom:789.733333pt;}
.yb6{bottom:792.933333pt;}
.y3b{bottom:793.093333pt;}
.y10{bottom:795.013333pt;}
.y60{bottom:797.573333pt;}
.y142{bottom:801.413333pt;}
.ye4{bottom:804.453333pt;}
.y3a{bottom:807.653333pt;}
.yb5{bottom:808.293333pt;}
.yf{bottom:808.773333pt;}
.y5f{bottom:812.773333pt;}
.y141{bottom:813.093333pt;}
.y39{bottom:822.213333pt;}
.ye{bottom:822.533333pt;}
.yb4{bottom:823.493333pt;}
.y140{bottom:824.613333pt;}
.ye3{bottom:827.493333pt;}
.y5e{bottom:828.133333pt;}
.y82{bottom:830.853333pt;}
.y13f{bottom:836.293333pt;}
.yd{bottom:837.093333pt;}
.yb3{bottom:838.853333pt;}
.ye2{bottom:839.653333pt;}
.y81{bottom:842.533333pt;}
.y5d{bottom:843.493333pt;}
.y13e{bottom:847.973333pt;}
.yc{bottom:852.453333pt;}
.y80{bottom:854.213333pt;}
.ye1{bottom:855.493333pt;}
.y5c{bottom:858.853333pt;}
.y13d{bottom:859.653333pt;}
.y7f{bottom:865.893333pt;}
.yb{bottom:867.653333pt;}
.yb2{bottom:869.573333pt;}
.ydb{bottom:871.333333pt;}
.y5b{bottom:874.213333pt;}
.ya{bottom:883.013333pt;}
.yb1{bottom:884.933333pt;}
.ye0{bottom:887.013333pt;}
.y5a{bottom:889.413333pt;}
.y13c{bottom:894.533333pt;}
.y9{bottom:898.373333pt;}
.yb0{bottom:900.293333pt;}
.yde{bottom:902.853333pt;}
.y59{bottom:904.773333pt;}
.y13b{bottom:906.213333pt;}
.y8{bottom:913.733333pt;}
.yaf{bottom:915.493333pt;}
.y13a{bottom:917.893333pt;}
.ydd{bottom:918.693333pt;}
.y58{bottom:925.413333pt;}
.y139{bottom:929.573333pt;}
.yae{bottom:930.853333pt;}
.y7{bottom:931.973333pt;}
.yd7{bottom:934.533333pt;}
.y138{bottom:941.253333pt;}
.yad{bottom:946.213333pt;}
.yd9{bottom:950.213333pt;}
.y137{bottom:952.933333pt;}
.y57{bottom:959.173333pt;}
.y136{bottom:964.453333pt;}
.yac{bottom:965.413333pt;}
.yd6{bottom:966.053333pt;}
.y6{bottom:972.613333pt;}
.y56{bottom:973.733333pt;}
.y135{bottom:976.133333pt;}
.yd4{bottom:981.893333pt;}
.yab{bottom:985.573333pt;}
.y134{bottom:987.813333pt;}
.y55{bottom:988.293333pt;}
.yd2{bottom:997.733333pt;}
.y5{bottom:999.173333pt;}
.y133{bottom:999.493333pt;}
.yaa{bottom:1000.933333pt;}
.y54{bottom:1002.853333pt;}
.y132{bottom:1011.200000pt;}
.ya9{bottom:1016.320000pt;}
.y53{bottom:1017.440000pt;}
.y131{bottom:1022.880000pt;}
.yd1{bottom:1023.840000pt;}
.ya8{bottom:1031.520000pt;}
.y52{bottom:1032.000000pt;}
.y130{bottom:1034.400000pt;}
.yd0{bottom:1034.880000pt;}
.y2{bottom:1046.880000pt;}
.y1{bottom:1062.240000pt;}
.h10{height:15.040000pt;}
.he{height:15.072000pt;}
.h11{height:15.200000pt;}
.h17{height:29.794062pt;}
.h12{height:30.880000pt;}
.h13{height:36.234687pt;}
.h9{height:36.909063pt;}
.h14{height:39.552188pt;}
.h3{height:40.163750pt;}
.hb{height:42.063437pt;}
.ha{height:42.084375pt;}
.hf{height:43.215000pt;}
.hd{height:44.073883pt;}
.h7{height:47.085938pt;}
.h16{height:47.216250pt;}
.h6{height:48.375000pt;}
.h2{height:52.134375pt;}
.hc{height:52.990313pt;}
.h8{height:54.598989pt;}
.h5{height:57.758750pt;}
.h15{height:62.400000pt;}
.h4{height:125.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:35.040000pt;}
.w8{width:39.072000pt;}
.w6{width:51.712000pt;}
.w5{width:52.800000pt;}
.w9{width:77.120000pt;}
.w3{width:116.992000pt;}
.w4{width:194.266667pt;}
.w2{width:311.906667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.680000pt;}
.x2a{left:10.880000pt;}
.x21{left:16.640000pt;}
.x29{left:19.680000pt;}
.x26{left:22.906667pt;}
.x28{left:26.080000pt;}
.x2b{left:28.800000pt;}
.x4{left:48.960000pt;}
.x1e{left:58.426667pt;}
.xc{left:67.200000pt;}
.xe{left:68.160000pt;}
.x20{left:78.080000pt;}
.x14{left:79.360000pt;}
.x1b{left:90.906667pt;}
.x1d{left:103.226667pt;}
.x2c{left:109.466667pt;}
.x18{left:114.752000pt;}
.x5{left:138.106667pt;}
.x1c{left:146.586667pt;}
.x2f{left:156.026667pt;}
.xd{left:163.866667pt;}
.x30{left:167.866667pt;}
.x31{left:179.706667pt;}
.x8{left:221.626667pt;}
.x9{left:270.466667pt;}
.xb{left:314.946667pt;}
.x7{left:341.826667pt;}
.xa{left:345.506667pt;}
.x2e{left:379.906667pt;}
.x1{left:381.506667pt;}
.x17{left:382.786667pt;}
.x3{left:393.346667pt;}
.x6{left:397.026667pt;}
.xf{left:409.026667pt;}
.x16{left:420.226667pt;}
.x19{left:422.946667pt;}
.x10{left:428.226667pt;}
.x32{left:437.506667pt;}
.x11{left:446.813333pt;}
.x27{left:460.893333pt;}
.x13{left:483.133333pt;}
.x2d{left:489.853333pt;}
.x1a{left:500.413333pt;}
.x1f{left:538.653333pt;}
.x2{left:573.533333pt;}
.x22{left:592.093333pt;}
.x23{left:644.453333pt;}
.x24{left:697.893333pt;}
.x12{left:732.293333pt;}
.x15{left:744.133333pt;}
}




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