
    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_de7e4028a52c2ac8b71901ac.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_32fe572a2dd495a7102d7575.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_98365282d1c60b1440c53021.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_b3fbc05f4a479dca158f21d2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8de8ec15c057745bd4bd3801.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_781cfc3bf8078628cce6d3a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_443b88835fd85b0f0be5dd01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877930;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_50a7cff37dfabfb5616965fc.woff2')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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2a39e7d774a645fb92b23ec8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_464bd1a920ee1c537ed360d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.044640px;}
.ls7{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls5{letter-spacing:4.104000px;}
.ls12{letter-spacing:31.104000px;}
.lsd{letter-spacing:33.984000px;}
.ls9{letter-spacing:54.864000px;}
.lsf{letter-spacing:64.224000px;}
.ls10{letter-spacing:198.000000px;}
.ls3{letter-spacing:837.534720px;}
.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:-72.000000px;}
.ws0{word-spacing:-36.144000px;}
.ws5{word-spacing:-24.300000px;}
.ws1{word-spacing:-23.984640px;}
.ws9{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-16.476000px;}
._13{margin-left:-14.424000px;}
._17{margin-left:-12.480000px;}
._15{margin-left:-10.752000px;}
._5{margin-left:-8.658000px;}
._16{margin-left:-6.432000px;}
._3{margin-left:-4.752000px;}
._2{margin-left:-3.502080px;}
._1{margin-left:-2.492880px;}
._0{margin-left:-1.249920px;}
._4{width:1.050000px;}
._a{width:2.334000px;}
._6{width:4.104000px;}
._7{width:5.256000px;}
._9{width:6.924000px;}
._b{width:8.424000px;}
._c{width:9.648000px;}
._18{width:10.872000px;}
._11{width:12.600000px;}
._12{width:13.752000px;}
._1a{width:14.808000px;}
._19{width:15.840000px;}
._1b{width:16.920000px;}
._8{width:20.088000px;}
._10{width:21.240000px;}
._1e{width:22.753920px;}
._1c{width:23.808000px;}
._1d{width:24.936000px;}
._21{width:25.992000px;}
._f{width:28.008000px;}
._e{width:29.100000px;}
._2c{width:31.561920px;}
._28{width:32.688000px;}
._27{width:33.768000px;}
._d{width:36.072000px;}
._1f{width:37.296000px;}
._23{width:88.896000px;}
._24{width:90.066000px;}
._25{width:178.056000px;}
._2a{width:189.432000px;}
._2b{width:190.944000px;}
._22{width:194.376000px;}
._26{width:245.064000px;}
._20{width:368.784000px;}
._29{width:876.792000px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:3.960000px;}
.yf1{bottom:15.300000px;}
.yfb{bottom:24.660000px;}
.y123{bottom:24.705000px;}
.y105{bottom:45.360000px;}
.yfa{bottom:45.405000px;}
.y102{bottom:55.074000px;}
.y18{bottom:56.880000px;}
.y11e{bottom:59.034000px;}
.y104{bottom:66.060000px;}
.yf9{bottom:66.105000px;}
.y101{bottom:75.774000px;}
.y17{bottom:77.616000px;}
.y11d{bottom:79.734000px;}
.y103{bottom:86.760000px;}
.y10d{bottom:86.790000px;}
.yf8{bottom:86.805000px;}
.y100{bottom:96.474000px;}
.y11c{bottom:100.434000px;}
.y108{bottom:107.460000px;}
.y10c{bottom:107.490000px;}
.yf7{bottom:107.505000px;}
.ycd{bottom:116.676000px;}
.yff{bottom:117.174000px;}
.y12{bottom:120.456000px;}
.y11b{bottom:121.134000px;}
.y5c{bottom:123.516000px;}
.y10b{bottom:128.190000px;}
.yf6{bottom:128.205000px;}
.y77{bottom:130.536000px;}
.ye6{bottom:132.696000px;}
.y10e{bottom:135.756000px;}
.yfe{bottom:137.874000px;}
.y11a{bottom:141.834000px;}
.y43{bottom:142.416000px;}
.yb3{bottom:144.576000px;}
.yfd{bottom:146.736000px;}
.ycc{bottom:147.636000px;}
.yf5{bottom:148.905000px;}
.y119{bottom:162.534000px;}
.y147{bottom:163.290000px;}
.ye4{bottom:163.650000px;}
.y11{bottom:166.710000px;}
.y5b{bottom:167.430000px;}
.y15f{bottom:168.330000px;}
.yf4{bottom:169.605000px;}
.y42{bottom:173.370000px;}
.yb2{bottom:175.530000px;}
.y76{bottom:176.790000px;}
.ycb{bottom:178.590000px;}
.y118{bottom:183.234000px;}
.y95{bottom:184.350000px;}
.yf3{bottom:190.305000px;}
.y14c{bottom:194.250000px;}
.y146{bottom:194.430000px;}
.y131{bottom:194.610000px;}
.ycf{bottom:194.790000px;}
.y15e{bottom:199.290000px;}
.y5a{bottom:203.250000px;}
.y117{bottom:203.979000px;}
.y41{bottom:204.510000px;}
.yb1{bottom:206.670000px;}
.yca{bottom:209.730000px;}
.y122{bottom:211.005000px;}
.y10{bottom:212.970000px;}
.y94{bottom:215.490000px;}
.y75{bottom:223.050000px;}
.y116{bottom:224.679000px;}
.y145{bottom:225.390000px;}
.yce{bottom:225.570000px;}
.ye3{bottom:225.750000px;}
.y15d{bottom:230.430000px;}
.y121{bottom:231.705000px;}
.y14b{bottom:233.130000px;}
.y40{bottom:235.470000px;}
.yb0{bottom:237.630000px;}
.yc9{bottom:240.690000px;}
.y16c{bottom:240.870000px;}
.yf{bottom:244.290000px;}
.y115{bottom:245.379000px;}
.y93{bottom:246.450000px;}
.y120{bottom:252.405000px;}
.y144{bottom:256.530000px;}
.y130{bottom:256.710000px;}
.ye2{bottom:256.890000px;}
.y15c{bottom:261.390000px;}
.y114{bottom:266.079000px;}
.y3f{bottom:266.610000px;}
.yaf{bottom:268.770000px;}
.y74{bottom:269.310000px;}
.yc8{bottom:271.830000px;}
.ye{bottom:275.610000px;}
.y92{bottom:277.590000px;}
.y16b{bottom:279.750000px;}
.y113{bottom:286.779000px;}
.y143{bottom:287.490000px;}
.y12f{bottom:287.670000px;}
.ye1{bottom:287.850000px;}
.y59{bottom:290.730000px;}
.y15b{bottom:292.530000px;}
.y3e{bottom:297.570000px;}
.yae{bottom:299.730000px;}
.yf2{bottom:302.070000px;}
.yc7{bottom:302.790000px;}
.y112{bottom:307.479000px;}
.y91{bottom:308.550000px;}
.y14a{bottom:310.710000px;}
.y73{bottom:315.570000px;}
.y16a{bottom:318.450000px;}
.y142{bottom:318.630000px;}
.y12e{bottom:318.810000px;}
.ye0{bottom:318.990000px;}
.yd{bottom:321.870000px;}
.y15a{bottom:323.490000px;}
.y58{bottom:326.910000px;}
.y111{bottom:328.179000px;}
.y3d{bottom:328.710000px;}
.yad{bottom:330.870000px;}
.yc6{bottom:333.930000px;}
.y90{bottom:339.735000px;}
.y110{bottom:348.879000px;}
.y149{bottom:349.455000px;}
.y141{bottom:349.635000px;}
.y12d{bottom:349.815000px;}
.ydf{bottom:349.995000px;}
.y159{bottom:354.675000px;}
.y169{bottom:357.375000px;}
.y3c{bottom:359.715000px;}
.yac{bottom:361.875000px;}
.y72{bottom:362.055000px;}
.yc5{bottom:364.935000px;}
.y57{bottom:365.835000px;}
.yc{bottom:368.175000px;}
.y10f{bottom:369.579000px;}
.y8f{bottom:370.695000px;}
.y140{bottom:380.775000px;}
.y12c{bottom:380.955000px;}
.yde{bottom:381.135000px;}
.y158{bottom:385.635000px;}
.y148{bottom:388.335000px;}
.y3b{bottom:390.855000px;}
.yab{bottom:392.835000px;}
.yc4{bottom:396.075000px;}
.y56{bottom:396.795000px;}
.y8e{bottom:401.835000px;}
.y71{bottom:408.315000px;}
.y13f{bottom:411.735000px;}
.ye5{bottom:411.915000px;}
.ydd{bottom:412.095000px;}
.y157{bottom:416.775000px;}
.yb{bottom:418.935000px;}
.y3a{bottom:421.815000px;}
.yaa{bottom:423.975000px;}
.yc3{bottom:427.035000px;}
.y55{bottom:427.935000px;}
.y8d{bottom:432.795000px;}
.y168{bottom:434.955000px;}
.y13e{bottom:442.875000px;}
.y12b{bottom:443.055000px;}
.ydc{bottom:443.235000px;}
.y70{bottom:444.495000px;}
.y156{bottom:447.735000px;}
.y39{bottom:452.955000px;}
.ya9{bottom:454.935000px;}
.yc2{bottom:458.175000px;}
.y54{bottom:458.895000px;}
.y8c{bottom:463.935000px;}
.y167{bottom:473.655000px;}
.y13d{bottom:473.835000px;}
.y12a{bottom:474.015000px;}
.ydb{bottom:474.195000px;}
.ya{bottom:478.695000px;}
.y155{bottom:478.875000px;}
.y38{bottom:483.915000px;}
.y6f{bottom:485.535000px;}
.ya8{bottom:486.075000px;}
.yc1{bottom:489.135000px;}
.y53{bottom:490.035000px;}
.y8b{bottom:494.895000px;}
.y13c{bottom:504.975000px;}
.yda{bottom:505.155000px;}
.yf0{bottom:509.835000px;}
.y166{bottom:512.535000px;}
.y37{bottom:515.055000px;}
.ya7{bottom:517.035000px;}
.y9{bottom:517.755000px;}
.yc0{bottom:520.275000px;}
.y52{bottom:520.995000px;}
.y10a{bottom:522.795000px;}
.y8a{bottom:525.855000px;}
.y6e{bottom:529.635000px;}
.y13b{bottom:535.935000px;}
.y129{bottom:536.115000px;}
.yd9{bottom:536.295000px;}
.y154{bottom:540.975000px;}
.y36{bottom:546.015000px;}
.ya6{bottom:548.175000px;}
.ybf{bottom:551.235000px;}
.y165{bottom:551.415000px;}
.y51{bottom:552.135000px;}
.y89{bottom:556.995000px;}
.y6d{bottom:560.955000px;}
.y13a{bottom:567.075000px;}
.yd8{bottom:567.255000px;}
.y8{bottom:571.935000px;}
.y35{bottom:577.155000px;}
.ya5{bottom:579.135000px;}
.ybe{bottom:582.375000px;}
.y50{bottom:583.095000px;}
.y88{bottom:587.955000px;}
.y164{bottom:590.115000px;}
.y6c{bottom:592.275000px;}
.y139{bottom:598.035000px;}
.y128{bottom:598.215000px;}
.yd7{bottom:598.395000px;}
.y153{bottom:603.075000px;}
.y34{bottom:608.145000px;}
.ya4{bottom:610.305000px;}
.ybd{bottom:613.365000px;}
.y4f{bottom:614.085000px;}
.y87{bottom:619.125000px;}
.y6b{bottom:623.625000px;}
.y7{bottom:628.305000px;}
.y163{bottom:629.025000px;}
.y138{bottom:629.205000px;}
.yd6{bottom:629.385000px;}
.y152{bottom:634.065000px;}
.y127{bottom:637.125000px;}
.y33{bottom:639.285000px;}
.ya3{bottom:641.265000px;}
.ybc{bottom:644.505000px;}
.y4e{bottom:645.225000px;}
.y86{bottom:650.085000px;}
.y6a{bottom:654.945000px;}
.y137{bottom:660.165000px;}
.yd5{bottom:660.525000px;}
.y16d{bottom:663.225000px;}
.y151{bottom:665.205000px;}
.y162{bottom:667.725000px;}
.y109{bottom:668.625000px;}
.y32{bottom:670.245000px;}
.ya2{bottom:672.225000px;}
.ybb{bottom:675.465000px;}
.y126{bottom:675.825000px;}
.y4d{bottom:676.185000px;}
.y85{bottom:681.225000px;}
.y69{bottom:686.265000px;}
.y6{bottom:690.225000px;}
.y136{bottom:691.305000px;}
.yd4{bottom:691.485000px;}
.y150{bottom:696.165000px;}
.y31{bottom:701.385000px;}
.yba{bottom:706.605000px;}
.y4c{bottom:707.325000px;}
.y84{bottom:712.185000px;}
.y125{bottom:714.705000px;}
.y68{bottom:717.405000px;}
.y135{bottom:722.265000px;}
.yd3{bottom:722.625000px;}
.ya1{bottom:723.165000px;}
.y14f{bottom:727.305000px;}
.y124{bottom:732.165000px;}
.y30{bottom:732.345000px;}
.y24{bottom:732.885000px;}
.yb9{bottom:737.565000px;}
.y4b{bottom:738.285000px;}
.y83{bottom:743.325000px;}
.y5{bottom:745.305000px;}
.y67{bottom:748.725000px;}
.y107{bottom:752.145000px;}
.y134{bottom:753.405000px;}
.yd2{bottom:753.585000px;}
.y14e{bottom:758.265000px;}
.y2f{bottom:763.485000px;}
.yb8{bottom:768.705000px;}
.y4a{bottom:769.425000px;}
.y82{bottom:774.285000px;}
.y23{bottom:779.145000px;}
.y66{bottom:780.045000px;}
.y161{bottom:784.185000px;}
.y133{bottom:784.365000px;}
.yd1{bottom:784.725000px;}
.y14d{bottom:789.405000px;}
.y4{bottom:791.745000px;}
.ya0{bottom:795.705000px;}
.yb7{bottom:799.665000px;}
.y49{bottom:800.385000px;}
.y2e{bottom:802.185000px;}
.y81{bottom:805.425000px;}
.y65{bottom:811.365000px;}
.y22{bottom:815.505000px;}
.yd0{bottom:815.685000px;}
.yef{bottom:820.365000px;}
.y160{bottom:823.065000px;}
.y9f{bottom:827.925000px;}
.yb6{bottom:830.805000px;}
.y2d{bottom:833.325000px;}
.y48{bottom:836.205000px;}
.y80{bottom:836.385000px;}
.y64{bottom:842.685000px;}
.y21{bottom:846.465000px;}
.y3{bottom:849.705000px;}
.yee{bottom:851.505000px;}
.y11f{bottom:857.085000px;}
.y9e{bottom:860.505000px;}
.yb5{bottom:861.765000px;}
.y7f{bottom:867.525000px;}
.y2c{bottom:872.070000px;}
.y63{bottom:874.050000px;}
.y47{bottom:875.130000px;}
.y20{bottom:877.650000px;}
.yed{bottom:882.510000px;}
.y2{bottom:888.630000px;}
.y9d{bottom:891.510000px;}
.yb4{bottom:892.950000px;}
.y7e{bottom:898.530000px;}
.y62{bottom:905.370000px;}
.y46{bottom:906.090000px;}
.y1f{bottom:908.610000px;}
.y2b{bottom:910.950000px;}
.yec{bottom:913.650000px;}
.y1{bottom:923.550000px;}
.y9c{bottom:923.910000px;}
.y7d{bottom:929.670000px;}
.y61{bottom:936.690000px;}
.y106{bottom:939.210000px;}
.y1e{bottom:939.750000px;}
.y2a{bottom:941.910000px;}
.yeb{bottom:944.610000px;}
.y9b{bottom:955.050000px;}
.y7c{bottom:960.630000px;}
.y60{bottom:968.010000px;}
.y1d{bottom:970.710000px;}
.y132{bottom:975.570000px;}
.yea{bottom:975.750000px;}
.y29{bottom:980.790000px;}
.y9a{bottom:986.010000px;}
.y7b{bottom:991.770000px;}
.y5f{bottom:999.330000px;}
.y1c{bottom:1001.850000px;}
.ye9{bottom:1006.710000px;}
.y28{bottom:1011.750000px;}
.y45{bottom:1016.610000px;}
.y99{bottom:1017.150000px;}
.y7a{bottom:1022.730000px;}
.y5e{bottom:1030.650000px;}
.y1b{bottom:1032.810000px;}
.ye8{bottom:1037.850000px;}
.y44{bottom:1047.570000px;}
.y98{bottom:1048.110000px;}
.y27{bottom:1050.630000px;}
.y79{bottom:1053.690000px;}
.y5d{bottom:1054.770000px;}
.y1a{bottom:1063.950000px;}
.ye7{bottom:1068.810000px;}
.y97{bottom:1079.250000px;}
.y26{bottom:1086.450000px;}
.y78{bottom:1104.630000px;}
.y19{bottom:1104.990000px;}
.y96{bottom:1110.030000px;}
.y25{bottom:1110.210000px;}
.y16{bottom:1130.910000px;}
.y15{bottom:1151.640000px;}
.y14{bottom:1172.340000px;}
.y13{bottom:1193.040000px;}
.h10{height:32.040000px;}
.hf{height:64.546875px;}
.h4{height:66.585938px;}
.ha{height:70.628906px;}
.h2{height:70.664062px;}
.hc{height:71.613281px;}
.h9{height:72.562500px;}
.he{height:74.004654px;}
.h14{height:82.800000px;}
.hb{height:83.322422px;}
.h7{height:88.559297px;}
.hd{height:96.508125px;}
.h8{height:98.426190px;}
.h13{height:103.500000px;}
.h6{height:111.198516px;}
.h19{height:124.200000px;}
.h5{height:133.171875px;}
.h3{height:144.491484px;}
.h16{height:144.936000px;}
.h12{height:154.620000px;}
.h15{height:186.330000px;}
.h11{height:207.030000px;}
.h18{height:269.130000px;}
.h17{height:386.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:158.430000px;}
.w5{width:222.510000px;}
.w4{width:297.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x1d{left:34.740000px;}
.x1e{left:61.740000px;}
.x5{left:127.655987px;}
.x15{left:144.215987px;}
.x6{left:151.409987px;}
.x18{left:154.649987px;}
.xb{left:158.789987px;}
.x19{left:181.649987px;}
.x7{left:185.249987px;}
.x3{left:203.969987px;}
.x16{left:212.789987px;}
.xf{left:227.369987px;}
.x10{left:243.389987px;}
.x4{left:285.914987px;}
.x1b{left:287.535000px;}
.x9{left:292.574987px;}
.xa{left:313.094987px;}
.xc{left:334.694987px;}
.x12{left:349.454987px;}
.xd{left:367.814987px;}
.x8{left:383.294987px;}
.x2{left:446.474987px;}
.x13{left:453.854987px;}
.x11{left:548.024987px;}
.x1c{left:585.285000px;}
.x1{left:642.884987px;}
.x17{left:747.509987px;}
.xe{left:756.509987px;}
.x14{left:765.509987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.039680pt;}
.ls7{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls5{letter-spacing:3.648000pt;}
.ls12{letter-spacing:27.648000pt;}
.lsd{letter-spacing:30.208000pt;}
.ls9{letter-spacing:48.768000pt;}
.lsf{letter-spacing:57.088000pt;}
.ls10{letter-spacing:176.000000pt;}
.ls3{letter-spacing:744.475307pt;}
.ws7{word-spacing:-64.000000pt;}
.ws0{word-spacing:-32.128000pt;}
.ws5{word-spacing:-21.600000pt;}
.ws1{word-spacing:-21.319680pt;}
.ws9{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-14.645333pt;}
._13{margin-left:-12.821333pt;}
._17{margin-left:-11.093333pt;}
._15{margin-left:-9.557333pt;}
._5{margin-left:-7.696000pt;}
._16{margin-left:-5.717333pt;}
._3{margin-left:-4.224000pt;}
._2{margin-left:-3.112960pt;}
._1{margin-left:-2.215893pt;}
._0{margin-left:-1.111040pt;}
._4{width:0.933333pt;}
._a{width:2.074667pt;}
._6{width:3.648000pt;}
._7{width:4.672000pt;}
._9{width:6.154667pt;}
._b{width:7.488000pt;}
._c{width:8.576000pt;}
._18{width:9.664000pt;}
._11{width:11.200000pt;}
._12{width:12.224000pt;}
._1a{width:13.162667pt;}
._19{width:14.080000pt;}
._1b{width:15.040000pt;}
._8{width:17.856000pt;}
._10{width:18.880000pt;}
._1e{width:20.225707pt;}
._1c{width:21.162667pt;}
._1d{width:22.165333pt;}
._21{width:23.104000pt;}
._f{width:24.896000pt;}
._e{width:25.866667pt;}
._2c{width:28.055040pt;}
._28{width:29.056000pt;}
._27{width:30.016000pt;}
._d{width:32.064000pt;}
._1f{width:33.152000pt;}
._23{width:79.018667pt;}
._24{width:80.058667pt;}
._25{width:158.272000pt;}
._2a{width:168.384000pt;}
._2b{width:169.728000pt;}
._22{width:172.778667pt;}
._26{width:217.834667pt;}
._20{width:327.808000pt;}
._29{width:779.370667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:3.520000pt;}
.yf1{bottom:13.600000pt;}
.yfb{bottom:21.920000pt;}
.y123{bottom:21.960000pt;}
.y105{bottom:40.320000pt;}
.yfa{bottom:40.360000pt;}
.y102{bottom:48.954667pt;}
.y18{bottom:50.560000pt;}
.y11e{bottom:52.474667pt;}
.y104{bottom:58.720000pt;}
.yf9{bottom:58.760000pt;}
.y101{bottom:67.354667pt;}
.y17{bottom:68.992000pt;}
.y11d{bottom:70.874667pt;}
.y103{bottom:77.120000pt;}
.y10d{bottom:77.146667pt;}
.yf8{bottom:77.160000pt;}
.y100{bottom:85.754667pt;}
.y11c{bottom:89.274667pt;}
.y108{bottom:95.520000pt;}
.y10c{bottom:95.546667pt;}
.yf7{bottom:95.560000pt;}
.ycd{bottom:103.712000pt;}
.yff{bottom:104.154667pt;}
.y12{bottom:107.072000pt;}
.y11b{bottom:107.674667pt;}
.y5c{bottom:109.792000pt;}
.y10b{bottom:113.946667pt;}
.yf6{bottom:113.960000pt;}
.y77{bottom:116.032000pt;}
.ye6{bottom:117.952000pt;}
.y10e{bottom:120.672000pt;}
.yfe{bottom:122.554667pt;}
.y11a{bottom:126.074667pt;}
.y43{bottom:126.592000pt;}
.yb3{bottom:128.512000pt;}
.yfd{bottom:130.432000pt;}
.ycc{bottom:131.232000pt;}
.yf5{bottom:132.360000pt;}
.y119{bottom:144.474667pt;}
.y147{bottom:145.146667pt;}
.ye4{bottom:145.466667pt;}
.y11{bottom:148.186667pt;}
.y5b{bottom:148.826667pt;}
.y15f{bottom:149.626667pt;}
.yf4{bottom:150.760000pt;}
.y42{bottom:154.106667pt;}
.yb2{bottom:156.026667pt;}
.y76{bottom:157.146667pt;}
.ycb{bottom:158.746667pt;}
.y118{bottom:162.874667pt;}
.y95{bottom:163.866667pt;}
.yf3{bottom:169.160000pt;}
.y14c{bottom:172.666667pt;}
.y146{bottom:172.826667pt;}
.y131{bottom:172.986667pt;}
.ycf{bottom:173.146667pt;}
.y15e{bottom:177.146667pt;}
.y5a{bottom:180.666667pt;}
.y117{bottom:181.314667pt;}
.y41{bottom:181.786667pt;}
.yb1{bottom:183.706667pt;}
.yca{bottom:186.426667pt;}
.y122{bottom:187.560000pt;}
.y10{bottom:189.306667pt;}
.y94{bottom:191.546667pt;}
.y75{bottom:198.266667pt;}
.y116{bottom:199.714667pt;}
.y145{bottom:200.346667pt;}
.yce{bottom:200.506667pt;}
.ye3{bottom:200.666667pt;}
.y15d{bottom:204.826667pt;}
.y121{bottom:205.960000pt;}
.y14b{bottom:207.226667pt;}
.y40{bottom:209.306667pt;}
.yb0{bottom:211.226667pt;}
.yc9{bottom:213.946667pt;}
.y16c{bottom:214.106667pt;}
.yf{bottom:217.146667pt;}
.y115{bottom:218.114667pt;}
.y93{bottom:219.066667pt;}
.y120{bottom:224.360000pt;}
.y144{bottom:228.026667pt;}
.y130{bottom:228.186667pt;}
.ye2{bottom:228.346667pt;}
.y15c{bottom:232.346667pt;}
.y114{bottom:236.514667pt;}
.y3f{bottom:236.986667pt;}
.yaf{bottom:238.906667pt;}
.y74{bottom:239.386667pt;}
.yc8{bottom:241.626667pt;}
.ye{bottom:244.986667pt;}
.y92{bottom:246.746667pt;}
.y16b{bottom:248.666667pt;}
.y113{bottom:254.914667pt;}
.y143{bottom:255.546667pt;}
.y12f{bottom:255.706667pt;}
.ye1{bottom:255.866667pt;}
.y59{bottom:258.426667pt;}
.y15b{bottom:260.026667pt;}
.y3e{bottom:264.506667pt;}
.yae{bottom:266.426667pt;}
.yf2{bottom:268.506667pt;}
.yc7{bottom:269.146667pt;}
.y112{bottom:273.314667pt;}
.y91{bottom:274.266667pt;}
.y14a{bottom:276.186667pt;}
.y73{bottom:280.506667pt;}
.y16a{bottom:283.066667pt;}
.y142{bottom:283.226667pt;}
.y12e{bottom:283.386667pt;}
.ye0{bottom:283.546667pt;}
.yd{bottom:286.106667pt;}
.y15a{bottom:287.546667pt;}
.y58{bottom:290.586667pt;}
.y111{bottom:291.714667pt;}
.y3d{bottom:292.186667pt;}
.yad{bottom:294.106667pt;}
.yc6{bottom:296.826667pt;}
.y90{bottom:301.986667pt;}
.y110{bottom:310.114667pt;}
.y149{bottom:310.626667pt;}
.y141{bottom:310.786667pt;}
.y12d{bottom:310.946667pt;}
.ydf{bottom:311.106667pt;}
.y159{bottom:315.266667pt;}
.y169{bottom:317.666667pt;}
.y3c{bottom:319.746667pt;}
.yac{bottom:321.666667pt;}
.y72{bottom:321.826667pt;}
.yc5{bottom:324.386667pt;}
.y57{bottom:325.186667pt;}
.yc{bottom:327.266667pt;}
.y10f{bottom:328.514667pt;}
.y8f{bottom:329.506667pt;}
.y140{bottom:338.466667pt;}
.y12c{bottom:338.626667pt;}
.yde{bottom:338.786667pt;}
.y158{bottom:342.786667pt;}
.y148{bottom:345.186667pt;}
.y3b{bottom:347.426667pt;}
.yab{bottom:349.186667pt;}
.yc4{bottom:352.066667pt;}
.y56{bottom:352.706667pt;}
.y8e{bottom:357.186667pt;}
.y71{bottom:362.946667pt;}
.y13f{bottom:365.986667pt;}
.ye5{bottom:366.146667pt;}
.ydd{bottom:366.306667pt;}
.y157{bottom:370.466667pt;}
.yb{bottom:372.386667pt;}
.y3a{bottom:374.946667pt;}
.yaa{bottom:376.866667pt;}
.yc3{bottom:379.586667pt;}
.y55{bottom:380.386667pt;}
.y8d{bottom:384.706667pt;}
.y168{bottom:386.626667pt;}
.y13e{bottom:393.666667pt;}
.y12b{bottom:393.826667pt;}
.ydc{bottom:393.986667pt;}
.y70{bottom:395.106667pt;}
.y156{bottom:397.986667pt;}
.y39{bottom:402.626667pt;}
.ya9{bottom:404.386667pt;}
.yc2{bottom:407.266667pt;}
.y54{bottom:407.906667pt;}
.y8c{bottom:412.386667pt;}
.y167{bottom:421.026667pt;}
.y13d{bottom:421.186667pt;}
.y12a{bottom:421.346667pt;}
.ydb{bottom:421.506667pt;}
.ya{bottom:425.506667pt;}
.y155{bottom:425.666667pt;}
.y38{bottom:430.146667pt;}
.y6f{bottom:431.586667pt;}
.ya8{bottom:432.066667pt;}
.yc1{bottom:434.786667pt;}
.y53{bottom:435.586667pt;}
.y8b{bottom:439.906667pt;}
.y13c{bottom:448.866667pt;}
.yda{bottom:449.026667pt;}
.yf0{bottom:453.186667pt;}
.y166{bottom:455.586667pt;}
.y37{bottom:457.826667pt;}
.ya7{bottom:459.586667pt;}
.y9{bottom:460.226667pt;}
.yc0{bottom:462.466667pt;}
.y52{bottom:463.106667pt;}
.y10a{bottom:464.706667pt;}
.y8a{bottom:467.426667pt;}
.y6e{bottom:470.786667pt;}
.y13b{bottom:476.386667pt;}
.y129{bottom:476.546667pt;}
.yd9{bottom:476.706667pt;}
.y154{bottom:480.866667pt;}
.y36{bottom:485.346667pt;}
.ya6{bottom:487.266667pt;}
.ybf{bottom:489.986667pt;}
.y165{bottom:490.146667pt;}
.y51{bottom:490.786667pt;}
.y89{bottom:495.106667pt;}
.y6d{bottom:498.626667pt;}
.y13a{bottom:504.066667pt;}
.yd8{bottom:504.226667pt;}
.y8{bottom:508.386667pt;}
.y35{bottom:513.026667pt;}
.ya5{bottom:514.786667pt;}
.ybe{bottom:517.666667pt;}
.y50{bottom:518.306667pt;}
.y88{bottom:522.626667pt;}
.y164{bottom:524.546667pt;}
.y6c{bottom:526.466667pt;}
.y139{bottom:531.586667pt;}
.y128{bottom:531.746667pt;}
.yd7{bottom:531.906667pt;}
.y153{bottom:536.066667pt;}
.y34{bottom:540.573333pt;}
.ya4{bottom:542.493333pt;}
.ybd{bottom:545.213333pt;}
.y4f{bottom:545.853333pt;}
.y87{bottom:550.333333pt;}
.y6b{bottom:554.333333pt;}
.y7{bottom:558.493333pt;}
.y163{bottom:559.133333pt;}
.y138{bottom:559.293333pt;}
.yd6{bottom:559.453333pt;}
.y152{bottom:563.613333pt;}
.y127{bottom:566.333333pt;}
.y33{bottom:568.253333pt;}
.ya3{bottom:570.013333pt;}
.ybc{bottom:572.893333pt;}
.y4e{bottom:573.533333pt;}
.y86{bottom:577.853333pt;}
.y6a{bottom:582.173333pt;}
.y137{bottom:586.813333pt;}
.yd5{bottom:587.133333pt;}
.y16d{bottom:589.533333pt;}
.y151{bottom:591.293333pt;}
.y162{bottom:593.533333pt;}
.y109{bottom:594.333333pt;}
.y32{bottom:595.773333pt;}
.ya2{bottom:597.533333pt;}
.ybb{bottom:600.413333pt;}
.y126{bottom:600.733333pt;}
.y4d{bottom:601.053333pt;}
.y85{bottom:605.533333pt;}
.y69{bottom:610.013333pt;}
.y6{bottom:613.533333pt;}
.y136{bottom:614.493333pt;}
.yd4{bottom:614.653333pt;}
.y150{bottom:618.813333pt;}
.y31{bottom:623.453333pt;}
.yba{bottom:628.093333pt;}
.y4c{bottom:628.733333pt;}
.y84{bottom:633.053333pt;}
.y125{bottom:635.293333pt;}
.y68{bottom:637.693333pt;}
.y135{bottom:642.013333pt;}
.yd3{bottom:642.333333pt;}
.ya1{bottom:642.813333pt;}
.y14f{bottom:646.493333pt;}
.y124{bottom:650.813333pt;}
.y30{bottom:650.973333pt;}
.y24{bottom:651.453333pt;}
.yb9{bottom:655.613333pt;}
.y4b{bottom:656.253333pt;}
.y83{bottom:660.733333pt;}
.y5{bottom:662.493333pt;}
.y67{bottom:665.533333pt;}
.y107{bottom:668.573333pt;}
.y134{bottom:669.693333pt;}
.yd2{bottom:669.853333pt;}
.y14e{bottom:674.013333pt;}
.y2f{bottom:678.653333pt;}
.yb8{bottom:683.293333pt;}
.y4a{bottom:683.933333pt;}
.y82{bottom:688.253333pt;}
.y23{bottom:692.573333pt;}
.y66{bottom:693.373333pt;}
.y161{bottom:697.053333pt;}
.y133{bottom:697.213333pt;}
.yd1{bottom:697.533333pt;}
.y14d{bottom:701.693333pt;}
.y4{bottom:703.773333pt;}
.ya0{bottom:707.293333pt;}
.yb7{bottom:710.813333pt;}
.y49{bottom:711.453333pt;}
.y2e{bottom:713.053333pt;}
.y81{bottom:715.933333pt;}
.y65{bottom:721.213333pt;}
.y22{bottom:724.893333pt;}
.yd0{bottom:725.053333pt;}
.yef{bottom:729.213333pt;}
.y160{bottom:731.613333pt;}
.y9f{bottom:735.933333pt;}
.yb6{bottom:738.493333pt;}
.y2d{bottom:740.733333pt;}
.y48{bottom:743.293333pt;}
.y80{bottom:743.453333pt;}
.y64{bottom:749.053333pt;}
.y21{bottom:752.413333pt;}
.y3{bottom:755.293333pt;}
.yee{bottom:756.893333pt;}
.y11f{bottom:761.853333pt;}
.y9e{bottom:764.893333pt;}
.yb5{bottom:766.013333pt;}
.y7f{bottom:771.133333pt;}
.y2c{bottom:775.173333pt;}
.y63{bottom:776.933333pt;}
.y47{bottom:777.893333pt;}
.y20{bottom:780.133333pt;}
.yed{bottom:784.453333pt;}
.y2{bottom:789.893333pt;}
.y9d{bottom:792.453333pt;}
.yb4{bottom:793.733333pt;}
.y7e{bottom:798.693333pt;}
.y62{bottom:804.773333pt;}
.y46{bottom:805.413333pt;}
.y1f{bottom:807.653333pt;}
.y2b{bottom:809.733333pt;}
.yec{bottom:812.133333pt;}
.y1{bottom:820.933333pt;}
.y9c{bottom:821.253333pt;}
.y7d{bottom:826.373333pt;}
.y61{bottom:832.613333pt;}
.y106{bottom:834.853333pt;}
.y1e{bottom:835.333333pt;}
.y2a{bottom:837.253333pt;}
.yeb{bottom:839.653333pt;}
.y9b{bottom:848.933333pt;}
.y7c{bottom:853.893333pt;}
.y60{bottom:860.453333pt;}
.y1d{bottom:862.853333pt;}
.y132{bottom:867.173333pt;}
.yea{bottom:867.333333pt;}
.y29{bottom:871.813333pt;}
.y9a{bottom:876.453333pt;}
.y7b{bottom:881.573333pt;}
.y5f{bottom:888.293333pt;}
.y1c{bottom:890.533333pt;}
.ye9{bottom:894.853333pt;}
.y28{bottom:899.333333pt;}
.y45{bottom:903.653333pt;}
.y99{bottom:904.133333pt;}
.y7a{bottom:909.093333pt;}
.y5e{bottom:916.133333pt;}
.y1b{bottom:918.053333pt;}
.ye8{bottom:922.533333pt;}
.y44{bottom:931.173333pt;}
.y98{bottom:931.653333pt;}
.y27{bottom:933.893333pt;}
.y79{bottom:936.613333pt;}
.y5d{bottom:937.573333pt;}
.y1a{bottom:945.733333pt;}
.ye7{bottom:950.053333pt;}
.y97{bottom:959.333333pt;}
.y26{bottom:965.733333pt;}
.y78{bottom:981.893333pt;}
.y19{bottom:982.213333pt;}
.y96{bottom:986.693333pt;}
.y25{bottom:986.853333pt;}
.y16{bottom:1005.253333pt;}
.y15{bottom:1023.680000pt;}
.y14{bottom:1042.080000pt;}
.y13{bottom:1060.480000pt;}
.h10{height:28.480000pt;}
.hf{height:57.375000pt;}
.h4{height:59.187500pt;}
.ha{height:62.781250pt;}
.h2{height:62.812500pt;}
.hc{height:63.656250pt;}
.h9{height:64.500000pt;}
.he{height:65.781915pt;}
.h14{height:73.600000pt;}
.hb{height:74.064375pt;}
.h7{height:78.719375pt;}
.hd{height:85.785000pt;}
.h8{height:87.489947pt;}
.h13{height:92.000000pt;}
.h6{height:98.843125pt;}
.h19{height:110.400000pt;}
.h5{height:118.375000pt;}
.h3{height:128.436875pt;}
.h16{height:128.832000pt;}
.h12{height:137.440000pt;}
.h15{height:165.626667pt;}
.h11{height:184.026667pt;}
.h18{height:239.226667pt;}
.h17{height:343.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:140.826667pt;}
.w5{width:197.786667pt;}
.w4{width:264.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x1d{left:30.880000pt;}
.x1e{left:54.880000pt;}
.x5{left:113.471988pt;}
.x15{left:128.191988pt;}
.x6{left:134.586655pt;}
.x18{left:137.466655pt;}
.xb{left:141.146655pt;}
.x19{left:161.466655pt;}
.x7{left:164.666655pt;}
.x3{left:181.306655pt;}
.x16{left:189.146655pt;}
.xf{left:202.106655pt;}
.x10{left:216.346655pt;}
.x4{left:254.146655pt;}
.x1b{left:255.586667pt;}
.x9{left:260.066655pt;}
.xa{left:278.306655pt;}
.xc{left:297.506655pt;}
.x12{left:310.626655pt;}
.xd{left:326.946655pt;}
.x8{left:340.706655pt;}
.x2{left:396.866655pt;}
.x13{left:403.426655pt;}
.x11{left:487.133322pt;}
.x1c{left:520.253333pt;}
.x1{left:571.453322pt;}
.x17{left:664.453322pt;}
.xe{left:672.453322pt;}
.x14{left:680.453322pt;}
}




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