
    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_77b435c9f9c9f3b5ebdbf353.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_17f08e4478ef0f69a07c87cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_88814fa76ae258377c5d1569.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_23e7b33e2133f9052f8bdd2d.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ae932083f83925086565b2da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_437b866e9cb0e539bc1293ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936035;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_e50d7cc262b89c56d2dacb92.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1b{letter-spacing:-0.414000px;}
.ls11{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.172200px;}
.ls12{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.041040px;}
.lsa{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.126720px;}
.ls7{letter-spacing:0.140400px;}
.lsc{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.175200px;}
.lsb{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.186600px;}
.ls8{letter-spacing:0.198000px;}
.lse{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.219360px;}
.ls2{letter-spacing:0.243360px;}
.ls18{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.479520px;}
.ls1{letter-spacing:0.751680px;}
.ls4{letter-spacing:5.076000px;}
.ls19{letter-spacing:128.826720px;}
.ls13{letter-spacing:168.654240px;}
.lsd{letter-spacing:328.494240px;}
.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;}
}
.ws8{word-spacing:-16.488000px;}
.wsc{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.692360px;}
.wsb{word-spacing:-13.680960px;}
.ws1{word-spacing:-13.646160px;}
.ws0{word-spacing:-13.505760px;}
.wse{word-spacing:-13.464720px;}
.ws7{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.398360px;}
.wsa{word-spacing:-13.333560px;}
.ws3{word-spacing:-12.402000px;}
.ws5{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.186000px;}
.ws2{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._34{margin-left:-3.465840px;}
._6{margin-left:-2.390400px;}
._1{margin-left:-1.010880px;}
._2{width:1.254720px;}
._17{width:2.350080px;}
._11{width:3.508560px;}
._d{width:4.599120px;}
._c{width:6.095520px;}
._9{width:8.086320px;}
._8{width:9.184320px;}
._14{width:10.977840px;}
._3{width:12.029760px;}
._f{width:14.578560px;}
._e{width:15.896160px;}
._10{width:17.031600px;}
._13{width:18.227280px;}
._12{width:19.242720px;}
._5{width:20.736960px;}
._4{width:21.931920px;}
._1f{width:23.426160px;}
._7{width:24.501600px;}
._a{width:26.059920px;}
._2f{width:27.310560px;}
._1b{width:28.728000px;}
._18{width:29.862000px;}
._b{width:30.955680px;}
._38{width:32.628960px;}
._20{width:33.704880px;}
._21{width:34.839120px;}
._36{width:35.916000px;}
._28{width:36.931680px;}
._27{width:38.545200px;}
._2b{width:39.919920px;}
._2a{width:41.592960px;}
._29{width:42.668640px;}
._16{width:45.178560px;}
._15{width:46.433520px;}
._35{width:48.405600px;}
._26{width:49.839840px;}
._3c{width:51.274080px;}
._33{width:53.664720px;}
._22{width:55.576800px;}
._31{width:56.592960px;}
._30{width:57.668640px;}
._2e{width:60.298080px;}
._3d{width:63.285840px;}
._32{width:67.767840px;}
._2d{width:70.696080px;}
._39{width:74.162160px;}
._24{width:82.708080px;}
._25{width:83.843280px;}
._23{width:87.190080px;}
._3a{width:102.798000px;}
._1a{width:113.832000px;}
._19{width:115.058880px;}
._37{width:117.846720px;}
._2c{width:168.654240px;}
._3b{width:542.561040px;}
._1c{width:849.917520px;}
._1e{width:1059.435360px;}
._1d{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y64{bottom:-1135.950000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.060000px;}
.y3a{bottom:3.960000px;}
.yd{bottom:4.005000px;}
.y63{bottom:8.640000px;}
.ye8{bottom:18.180000px;}
.y39{bottom:22.140000px;}
.y62{bottom:26.460000px;}
.y38{bottom:40.500000px;}
.ye2{bottom:42.120000px;}
.y61{bottom:44.280000px;}
.y3{bottom:56.520000px;}
.y67{bottom:57.060000px;}
.y37{bottom:58.860000px;}
.y60{bottom:62.130000px;}
.y68{bottom:71.820000px;}
.y36{bottom:77.070000px;}
.y5f{bottom:79.950000px;}
.ye{bottom:88.380000px;}
.y35{bottom:95.430000px;}
.y3b{bottom:96.840000px;}
.y5e{bottom:97.590000px;}
.y34{bottom:113.790000px;}
.y5d{bottom:115.410000px;}
.yc6{bottom:121.860000px;}
.y33{bottom:132.150000px;}
.y5c{bottom:133.230000px;}
.y9e{bottom:133.920000px;}
.y111{bottom:135.720000px;}
.ydf{bottom:139.320000px;}
.y13d{bottom:139.860000px;}
.yc5{bottom:140.220000px;}
.y32{bottom:150.330000px;}
.y5b{bottom:151.050000px;}
.y9d{bottom:152.130000px;}
.y110{bottom:153.930000px;}
.yde{bottom:157.710000px;}
.y13c{bottom:158.070000px;}
.yc4{bottom:158.430000px;}
.y31{bottom:168.690000px;}
.y5a{bottom:168.870000px;}
.y9c{bottom:170.490000px;}
.y10f{bottom:172.290000px;}
.ydd{bottom:176.070000px;}
.y13b{bottom:176.430000px;}
.yc3{bottom:176.790000px;}
.y59{bottom:186.510000px;}
.y30{bottom:187.050000px;}
.y9b{bottom:188.850000px;}
.y10e{bottom:190.650000px;}
.ydc{bottom:194.430000px;}
.y13a{bottom:194.790000px;}
.yc2{bottom:195.150000px;}
.y2f{bottom:205.410000px;}
.y9a{bottom:207.030000px;}
.y10d{bottom:208.830000px;}
.ydb{bottom:212.610000px;}
.y58{bottom:213.150000px;}
.yc1{bottom:213.510000px;}
.y2e{bottom:223.590000px;}
.y99{bottom:225.390000px;}
.y10c{bottom:227.190000px;}
.yda{bottom:230.970000px;}
.y139{bottom:231.330000px;}
.yc0{bottom:231.690000px;}
.y2d{bottom:241.950000px;}
.y10b{bottom:242.310000px;}
.y98{bottom:243.750000px;}
.yd9{bottom:249.330000px;}
.y138{bottom:249.690000px;}
.ybf{bottom:250.050000px;}
.y159{bottom:251.130000px;}
.y2c{bottom:260.310000px;}
.y10a{bottom:261.390000px;}
.y97{bottom:262.110000px;}
.yd8{bottom:267.690000px;}
.y137{bottom:268.050000px;}
.ybe{bottom:268.410000px;}
.y158{bottom:272.370000px;}
.y2b{bottom:278.490000px;}
.y96{bottom:280.290000px;}
.y109{bottom:280.470000px;}
.ybd{bottom:282.810000px;}
.yd7{bottom:285.870000px;}
.y136{bottom:286.410000px;}
.y157{bottom:293.610000px;}
.y2a{bottom:296.850000px;}
.y57{bottom:297.570000px;}
.y95{bottom:298.650000px;}
.y108{bottom:299.550000px;}
.yd6{bottom:304.230000px;}
.y135{bottom:304.590000px;}
.y156{bottom:314.850000px;}
.y29{bottom:315.255000px;}
.y94{bottom:317.010000px;}
.y107{bottom:318.630000px;}
.yd5{bottom:322.590000px;}
.y134{bottom:322.950000px;}
.y56{bottom:327.495000px;}
.y28{bottom:333.615000px;}
.y93{bottom:335.370000px;}
.y155{bottom:335.910000px;}
.y106{bottom:337.710000px;}
.yd4{bottom:340.770000px;}
.y133{bottom:341.310000px;}
.y27{bottom:351.795000px;}
.y92{bottom:353.550000px;}
.y154{bottom:357.150000px;}
.y55{bottom:357.195000px;}
.yd3{bottom:359.130000px;}
.y132{bottom:359.490000px;}
.y105{bottom:360.570000px;}
.y26{bottom:370.155000px;}
.y91{bottom:371.910000px;}
.yd2{bottom:377.490000px;}
.y131{bottom:377.850000px;}
.y153{bottom:378.390000px;}
.y104{bottom:378.930000px;}
.y54{bottom:387.075000px;}
.y25{bottom:388.515000px;}
.y90{bottom:390.270000px;}
.yd1{bottom:395.850000px;}
.y130{bottom:396.210000px;}
.y103{bottom:397.290000px;}
.y152{bottom:399.630000px;}
.y24{bottom:406.875000px;}
.y8f{bottom:408.495000px;}
.yd0{bottom:414.075000px;}
.y12f{bottom:414.615000px;}
.y102{bottom:415.695000px;}
.y53{bottom:416.775000px;}
.y151{bottom:420.915000px;}
.y23{bottom:425.055000px;}
.y8e{bottom:426.855000px;}
.ycf{bottom:432.435000px;}
.y12e{bottom:432.795000px;}
.y101{bottom:433.875000px;}
.y150{bottom:442.155000px;}
.y22{bottom:443.415000px;}
.y8d{bottom:445.215000px;}
.y52{bottom:446.655000px;}
.yce{bottom:450.795000px;}
.y12d{bottom:451.155000px;}
.y100{bottom:452.235000px;}
.y21{bottom:461.775000px;}
.y14f{bottom:463.215000px;}
.y8c{bottom:463.575000px;}
.ycd{bottom:468.975000px;}
.y12c{bottom:469.515000px;}
.yff{bottom:470.595000px;}
.y51{bottom:476.355000px;}
.y20{bottom:479.955000px;}
.y8b{bottom:481.755000px;}
.y14e{bottom:484.455000px;}
.ycc{bottom:487.335000px;}
.y12b{bottom:487.875000px;}
.yfe{bottom:488.955000px;}
.y1f{bottom:498.315000px;}
.y8a{bottom:500.115000px;}
.yfd{bottom:503.895000px;}
.ycb{bottom:505.695000px;}
.y12a{bottom:506.055000px;}
.y50{bottom:506.235000px;}
.y1e{bottom:516.675000px;}
.y89{bottom:518.475000px;}
.yfc{bottom:522.975000px;}
.yca{bottom:524.055000px;}
.y129{bottom:524.415000px;}
.y14d{bottom:526.935000px;}
.y1d{bottom:535.035000px;}
.y4f{bottom:535.935000px;}
.y88{bottom:536.655000px;}
.yfb{bottom:542.055000px;}
.yc9{bottom:542.235000px;}
.y128{bottom:542.775000px;}
.y14c{bottom:548.175000px;}
.y1c{bottom:553.215000px;}
.y87{bottom:555.015000px;}
.yc8{bottom:560.595000px;}
.y127{bottom:560.955000px;}
.yfa{bottom:561.135000px;}
.y4e{bottom:565.845000px;}
.y14b{bottom:569.415000px;}
.y1b{bottom:571.605000px;}
.y86{bottom:573.375000px;}
.yc7{bottom:578.955000px;}
.y126{bottom:579.315000px;}
.yf9{bottom:580.215000px;}
.y1a{bottom:589.965000px;}
.y14a{bottom:590.475000px;}
.y85{bottom:591.735000px;}
.y4d{bottom:595.545000px;}
.ybc{bottom:597.315000px;}
.y125{bottom:597.675000px;}
.yf8{bottom:603.255000px;}
.y19{bottom:608.325000px;}
.y84{bottom:609.915000px;}
.y149{bottom:611.715000px;}
.y4c{bottom:611.925000px;}
.ybb{bottom:615.495000px;}
.y124{bottom:616.035000px;}
.yf7{bottom:621.615000px;}
.y18{bottom:626.505000px;}
.y83{bottom:628.275000px;}
.y4b{bottom:628.485000px;}
.yba{bottom:630.615000px;}
.y148{bottom:632.955000px;}
.y123{bottom:634.215000px;}
.yf1{bottom:639.795000px;}
.y17{bottom:644.865000px;}
.y82{bottom:646.635000px;}
.yf6{bottom:647.895000px;}
.yb9{bottom:649.725000px;}
.y122{bottom:652.605000px;}
.y147{bottom:654.225000px;}
.yf0{bottom:658.185000px;}
.y4a{bottom:661.425000px;}
.y16{bottom:663.225000px;}
.y81{bottom:665.025000px;}
.yf5{bottom:666.285000px;}
.yb8{bottom:668.805000px;}
.y121{bottom:670.965000px;}
.y146{bottom:675.465000px;}
.yef{bottom:676.545000px;}
.y49{bottom:677.805000px;}
.y15{bottom:681.405000px;}
.y80{bottom:683.205000px;}
.yf4{bottom:684.465000px;}
.yb7{bottom:687.885000px;}
.y120{bottom:689.145000px;}
.y48{bottom:694.365000px;}
.yee{bottom:694.905000px;}
.y145{bottom:696.705000px;}
.y14{bottom:699.765000px;}
.y7f{bottom:701.565000px;}
.yf3{bottom:702.825000px;}
.yb6{bottom:706.965000px;}
.y11f{bottom:707.505000px;}
.y47{bottom:710.745000px;}
.yed{bottom:713.085000px;}
.y144{bottom:717.765000px;}
.y13{bottom:718.125000px;}
.y7e{bottom:719.925000px;}
.y11e{bottom:725.865000px;}
.yb5{bottom:726.045000px;}
.y46{bottom:727.305000px;}
.yf2{bottom:731.265000px;}
.yec{bottom:731.445000px;}
.y12{bottom:736.485000px;}
.y7d{bottom:738.105000px;}
.y143{bottom:739.005000px;}
.y45{bottom:743.865000px;}
.y11d{bottom:744.225000px;}
.yb4{bottom:745.125000px;}
.yeb{bottom:749.805000px;}
.y11{bottom:754.665000px;}
.y7c{bottom:756.465000px;}
.y11c{bottom:759.345000px;}
.y44{bottom:760.245000px;}
.yb3{bottom:767.985000px;}
.y10{bottom:773.025000px;}
.y7b{bottom:774.825000px;}
.y11b{bottom:778.245000px;}
.y142{bottom:781.485000px;}
.y43{bottom:785.625000px;}
.yb2{bottom:786.345000px;}
.yf{bottom:791.385000px;}
.y7a{bottom:793.185000px;}
.y11a{bottom:797.325000px;}
.y141{bottom:802.725000px;}
.yb1{bottom:804.705000px;}
.y79{bottom:811.365000px;}
.y42{bottom:815.730000px;}
.y119{bottom:816.405000px;}
.yb0{bottom:823.065000px;}
.y140{bottom:823.965000px;}
.y78{bottom:829.725000px;}
.y118{bottom:835.485000px;}
.yaf{bottom:841.245000px;}
.y13f{bottom:845.025000px;}
.y41{bottom:845.430000px;}
.y77{bottom:848.085000px;}
.y117{bottom:858.525000px;}
.yae{bottom:859.605000px;}
.y40{bottom:863.070000px;}
.y13e{bottom:866.265000px;}
.y76{bottom:866.445000px;}
.y116{bottom:876.885000px;}
.yad{bottom:877.965000px;}
.y3f{bottom:880.890000px;}
.y75{bottom:884.625000px;}
.yc{bottom:893.985000px;}
.y115{bottom:895.065000px;}
.yac{bottom:896.145000px;}
.y3e{bottom:898.710000px;}
.y74{bottom:903.030000px;}
.y114{bottom:913.470000px;}
.yab{bottom:914.550000px;}
.y3d{bottom:916.350000px;}
.yb{bottom:916.890000px;}
.y73{bottom:921.390000px;}
.yaa{bottom:929.670000px;}
.y113{bottom:931.830000px;}
.yea{bottom:932.910000px;}
.ya{bottom:936.510000px;}
.y72{bottom:939.570000px;}
.y3c{bottom:942.270000px;}
.y112{bottom:946.230000px;}
.ya9{bottom:948.750000px;}
.ye9{bottom:951.270000px;}
.y9{bottom:954.870000px;}
.y71{bottom:957.930000px;}
.ye7{bottom:966.390000px;}
.ya8{bottom:967.830000px;}
.y8{bottom:973.230000px;}
.y70{bottom:976.290000px;}
.ye4{bottom:985.290000px;}
.ya7{bottom:986.910000px;}
.y7{bottom:991.410000px;}
.y6f{bottom:994.650000px;}
.ye6{bottom:1004.370000px;}
.ya6{bottom:1005.990000px;}
.y6{bottom:1011.390000px;}
.y6e{bottom:1012.830000px;}
.ye5{bottom:1023.450000px;}
.ya5{bottom:1025.070000px;}
.y6d{bottom:1031.190000px;}
.y5{bottom:1037.130000px;}
.ye1{bottom:1042.530000px;}
.ya4{bottom:1043.970000px;}
.y6c{bottom:1049.550000px;}
.y4{bottom:1061.610000px;}
.ya3{bottom:1063.050000px;}
.y6b{bottom:1063.950000px;}
.ya2{bottom:1067.910000px;}
.ye3{bottom:1080.690000px;}
.y2{bottom:1082.310000px;}
.ya1{bottom:1086.090000px;}
.ye0{bottom:1099.770000px;}
.y1{bottom:1102.110000px;}
.ya0{bottom:1104.450000px;}
.y9f{bottom:1122.810000px;}
.y6a{bottom:1140.990000px;}
.y66{bottom:1159.020000px;}
.y65{bottom:1175.940000px;}
.h11{height:18.180000px;}
.h10{height:18.360000px;}
.h7{height:18.396000px;}
.hd{height:20.160000px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.ha{height:55.291992px;}
.h12{height:56.520000px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.h2{height:65.884219px;}
.hf{height:73.080000px;}
.he{height:73.722656px;}
.h13{height:83.787539px;}
.h4{height:86.255508px;}
.h8{height:805.605000px;}
.h9{height:956.670000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:49.500000px;}
.we{width:68.580000px;}
.wa{width:70.380000px;}
.w19{width:81.720000px;}
.w15{width:86.760000px;}
.w14{width:109.116000px;}
.w11{width:128.700000px;}
.wc{width:129.780000px;}
.wd{width:131.976000px;}
.w1b{width:139.176000px;}
.w1c{width:141.660000px;}
.w17{width:154.650000px;}
.w18{width:157.170000px;}
.wf{width:171.180000px;}
.w8{width:175.170000px;}
.w13{width:184.710000px;}
.w9{width:200.550000px;}
.w4{width:216.750000px;}
.w7{width:272.730000px;}
.w16{width:325.470000px;}
.w12{width:338.430000px;}
.wb{width:388.515000px;}
.w10{width:420.045000px;}
.w1a{width:438.915000px;}
.w3{width:478.515000px;}
.w6{width:723.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x5{left:10.800000px;}
.x1{left:84.995987px;}
.x26{left:97.235987px;}
.x14{left:111.815987px;}
.x8{left:145.655987px;}
.x15{left:176.429987px;}
.x28{left:187.949987px;}
.x6{left:202.005000px;}
.xf{left:203.789987px;}
.x27{left:210.089987px;}
.x1d{left:211.349987px;}
.x16{left:248.249987px;}
.xb{left:250.229987px;}
.x17{left:257.790000px;}
.x7{left:265.575000px;}
.x21{left:281.234987px;}
.xc{left:359.535000px;}
.x22{left:412.275000px;}
.x13{left:420.194987px;}
.x25{left:422.534987px;}
.x1e{left:425.235000px;}
.xa{left:473.144987px;}
.x10{left:475.305000px;}
.x1a{left:486.284987px;}
.x1c{left:490.604987px;}
.x1b{left:499.064987px;}
.x29{left:525.705000px;}
.xd{left:535.605000px;}
.x23{left:567.645000px;}
.x4{left:586.545000px;}
.x11{left:605.805000px;}
.x1f{left:610.665000px;}
.x2a{left:665.610000px;}
.x18{left:678.570000px;}
.x20{left:720.510000px;}
.x24{left:725.550000px;}
.xe{left:736.890000px;}
.x12{left:738.690000px;}
.x9{left:756.330000px;}
.x19{left:803.849987px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.368000pt;}
.ls11{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.153067pt;}
.ls12{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.036480pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.112640pt;}
.ls7{letter-spacing:0.124800pt;}
.lsc{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.155733pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.165867pt;}
.ls8{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.194987pt;}
.ls2{letter-spacing:0.216320pt;}
.ls18{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.426240pt;}
.ls1{letter-spacing:0.668160pt;}
.ls4{letter-spacing:4.512000pt;}
.ls19{letter-spacing:114.512640pt;}
.ls13{letter-spacing:149.914880pt;}
.lsd{letter-spacing:291.994880pt;}
.ws8{word-spacing:-14.656000pt;}
.wsc{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.170987pt;}
.wsb{word-spacing:-12.160853pt;}
.ws1{word-spacing:-12.129920pt;}
.ws0{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.968640pt;}
.ws7{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.909653pt;}
.wsa{word-spacing:-11.852053pt;}
.ws3{word-spacing:-11.024000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.832000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._34{margin-left:-3.080747pt;}
._6{margin-left:-2.124800pt;}
._1{margin-left:-0.898560pt;}
._2{width:1.115307pt;}
._17{width:2.088960pt;}
._11{width:3.118720pt;}
._d{width:4.088107pt;}
._c{width:5.418240pt;}
._9{width:7.187840pt;}
._8{width:8.163840pt;}
._14{width:9.758080pt;}
._3{width:10.693120pt;}
._f{width:12.958720pt;}
._e{width:14.129920pt;}
._10{width:15.139200pt;}
._13{width:16.202027pt;}
._12{width:17.104640pt;}
._5{width:18.432853pt;}
._4{width:19.495040pt;}
._1f{width:20.823253pt;}
._7{width:21.779200pt;}
._a{width:23.164373pt;}
._2f{width:24.276053pt;}
._1b{width:25.536000pt;}
._18{width:26.544000pt;}
._b{width:27.516160pt;}
._38{width:29.003520pt;}
._20{width:29.959893pt;}
._21{width:30.968107pt;}
._36{width:31.925333pt;}
._28{width:32.828160pt;}
._27{width:34.262400pt;}
._2b{width:35.484373pt;}
._2a{width:36.971520pt;}
._29{width:37.927680pt;}
._16{width:40.158720pt;}
._15{width:41.274240pt;}
._35{width:43.027200pt;}
._26{width:44.302080pt;}
._3c{width:45.576960pt;}
._33{width:47.701973pt;}
._22{width:49.401600pt;}
._31{width:50.304853pt;}
._30{width:51.261013pt;}
._2e{width:53.598293pt;}
._3d{width:56.254080pt;}
._32{width:60.238080pt;}
._2d{width:62.840960pt;}
._39{width:65.921920pt;}
._24{width:73.518293pt;}
._25{width:74.527360pt;}
._23{width:77.502293pt;}
._3a{width:91.376000pt;}
._1a{width:101.184000pt;}
._19{width:102.274560pt;}
._37{width:104.752640pt;}
._2c{width:149.914880pt;}
._3b{width:482.276480pt;}
._1c{width:755.482240pt;}
._1e{width:941.720320pt;}
._1d{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y64{bottom:-1009.733333pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:2.720000pt;}
.y3a{bottom:3.520000pt;}
.yd{bottom:3.560000pt;}
.y63{bottom:7.680000pt;}
.ye8{bottom:16.160000pt;}
.y39{bottom:19.680000pt;}
.y62{bottom:23.520000pt;}
.y38{bottom:36.000000pt;}
.ye2{bottom:37.440000pt;}
.y61{bottom:39.360000pt;}
.y3{bottom:50.240000pt;}
.y67{bottom:50.720000pt;}
.y37{bottom:52.320000pt;}
.y60{bottom:55.226667pt;}
.y68{bottom:63.840000pt;}
.y36{bottom:68.506667pt;}
.y5f{bottom:71.066667pt;}
.ye{bottom:78.560000pt;}
.y35{bottom:84.826667pt;}
.y3b{bottom:86.080000pt;}
.y5e{bottom:86.746667pt;}
.y34{bottom:101.146667pt;}
.y5d{bottom:102.586667pt;}
.yc6{bottom:108.320000pt;}
.y33{bottom:117.466667pt;}
.y5c{bottom:118.426667pt;}
.y9e{bottom:119.040000pt;}
.y111{bottom:120.640000pt;}
.ydf{bottom:123.840000pt;}
.y13d{bottom:124.320000pt;}
.yc5{bottom:124.640000pt;}
.y32{bottom:133.626667pt;}
.y5b{bottom:134.266667pt;}
.y9d{bottom:135.226667pt;}
.y110{bottom:136.826667pt;}
.yde{bottom:140.186667pt;}
.y13c{bottom:140.506667pt;}
.yc4{bottom:140.826667pt;}
.y31{bottom:149.946667pt;}
.y5a{bottom:150.106667pt;}
.y9c{bottom:151.546667pt;}
.y10f{bottom:153.146667pt;}
.ydd{bottom:156.506667pt;}
.y13b{bottom:156.826667pt;}
.yc3{bottom:157.146667pt;}
.y59{bottom:165.786667pt;}
.y30{bottom:166.266667pt;}
.y9b{bottom:167.866667pt;}
.y10e{bottom:169.466667pt;}
.ydc{bottom:172.826667pt;}
.y13a{bottom:173.146667pt;}
.yc2{bottom:173.466667pt;}
.y2f{bottom:182.586667pt;}
.y9a{bottom:184.026667pt;}
.y10d{bottom:185.626667pt;}
.ydb{bottom:188.986667pt;}
.y58{bottom:189.466667pt;}
.yc1{bottom:189.786667pt;}
.y2e{bottom:198.746667pt;}
.y99{bottom:200.346667pt;}
.y10c{bottom:201.946667pt;}
.yda{bottom:205.306667pt;}
.y139{bottom:205.626667pt;}
.yc0{bottom:205.946667pt;}
.y2d{bottom:215.066667pt;}
.y10b{bottom:215.386667pt;}
.y98{bottom:216.666667pt;}
.yd9{bottom:221.626667pt;}
.y138{bottom:221.946667pt;}
.ybf{bottom:222.266667pt;}
.y159{bottom:223.226667pt;}
.y2c{bottom:231.386667pt;}
.y10a{bottom:232.346667pt;}
.y97{bottom:232.986667pt;}
.yd8{bottom:237.946667pt;}
.y137{bottom:238.266667pt;}
.ybe{bottom:238.586667pt;}
.y158{bottom:242.106667pt;}
.y2b{bottom:247.546667pt;}
.y96{bottom:249.146667pt;}
.y109{bottom:249.306667pt;}
.ybd{bottom:251.386667pt;}
.yd7{bottom:254.106667pt;}
.y136{bottom:254.586667pt;}
.y157{bottom:260.986667pt;}
.y2a{bottom:263.866667pt;}
.y57{bottom:264.506667pt;}
.y95{bottom:265.466667pt;}
.y108{bottom:266.266667pt;}
.yd6{bottom:270.426667pt;}
.y135{bottom:270.746667pt;}
.y156{bottom:279.866667pt;}
.y29{bottom:280.226667pt;}
.y94{bottom:281.786667pt;}
.y107{bottom:283.226667pt;}
.yd5{bottom:286.746667pt;}
.y134{bottom:287.066667pt;}
.y56{bottom:291.106667pt;}
.y28{bottom:296.546667pt;}
.y93{bottom:298.106667pt;}
.y155{bottom:298.586667pt;}
.y106{bottom:300.186667pt;}
.yd4{bottom:302.906667pt;}
.y133{bottom:303.386667pt;}
.y27{bottom:312.706667pt;}
.y92{bottom:314.266667pt;}
.y154{bottom:317.466667pt;}
.y55{bottom:317.506667pt;}
.yd3{bottom:319.226667pt;}
.y132{bottom:319.546667pt;}
.y105{bottom:320.506667pt;}
.y26{bottom:329.026667pt;}
.y91{bottom:330.586667pt;}
.yd2{bottom:335.546667pt;}
.y131{bottom:335.866667pt;}
.y153{bottom:336.346667pt;}
.y104{bottom:336.826667pt;}
.y54{bottom:344.066667pt;}
.y25{bottom:345.346667pt;}
.y90{bottom:346.906667pt;}
.yd1{bottom:351.866667pt;}
.y130{bottom:352.186667pt;}
.y103{bottom:353.146667pt;}
.y152{bottom:355.226667pt;}
.y24{bottom:361.666667pt;}
.y8f{bottom:363.106667pt;}
.yd0{bottom:368.066667pt;}
.y12f{bottom:368.546667pt;}
.y102{bottom:369.506667pt;}
.y53{bottom:370.466667pt;}
.y151{bottom:374.146667pt;}
.y23{bottom:377.826667pt;}
.y8e{bottom:379.426667pt;}
.ycf{bottom:384.386667pt;}
.y12e{bottom:384.706667pt;}
.y101{bottom:385.666667pt;}
.y150{bottom:393.026667pt;}
.y22{bottom:394.146667pt;}
.y8d{bottom:395.746667pt;}
.y52{bottom:397.026667pt;}
.yce{bottom:400.706667pt;}
.y12d{bottom:401.026667pt;}
.y100{bottom:401.986667pt;}
.y21{bottom:410.466667pt;}
.y14f{bottom:411.746667pt;}
.y8c{bottom:412.066667pt;}
.ycd{bottom:416.866667pt;}
.y12c{bottom:417.346667pt;}
.yff{bottom:418.306667pt;}
.y51{bottom:423.426667pt;}
.y20{bottom:426.626667pt;}
.y8b{bottom:428.226667pt;}
.y14e{bottom:430.626667pt;}
.ycc{bottom:433.186667pt;}
.y12b{bottom:433.666667pt;}
.yfe{bottom:434.626667pt;}
.y1f{bottom:442.946667pt;}
.y8a{bottom:444.546667pt;}
.yfd{bottom:447.906667pt;}
.ycb{bottom:449.506667pt;}
.y12a{bottom:449.826667pt;}
.y50{bottom:449.986667pt;}
.y1e{bottom:459.266667pt;}
.y89{bottom:460.866667pt;}
.yfc{bottom:464.866667pt;}
.yca{bottom:465.826667pt;}
.y129{bottom:466.146667pt;}
.y14d{bottom:468.386667pt;}
.y1d{bottom:475.586667pt;}
.y4f{bottom:476.386667pt;}
.y88{bottom:477.026667pt;}
.yfb{bottom:481.826667pt;}
.yc9{bottom:481.986667pt;}
.y128{bottom:482.466667pt;}
.y14c{bottom:487.266667pt;}
.y1c{bottom:491.746667pt;}
.y87{bottom:493.346667pt;}
.yc8{bottom:498.306667pt;}
.y127{bottom:498.626667pt;}
.yfa{bottom:498.786667pt;}
.y4e{bottom:502.973333pt;}
.y14b{bottom:506.146667pt;}
.y1b{bottom:508.093333pt;}
.y86{bottom:509.666667pt;}
.yc7{bottom:514.626667pt;}
.y126{bottom:514.946667pt;}
.yf9{bottom:515.746667pt;}
.y1a{bottom:524.413333pt;}
.y14a{bottom:524.866667pt;}
.y85{bottom:525.986667pt;}
.y4d{bottom:529.373333pt;}
.ybc{bottom:530.946667pt;}
.y125{bottom:531.266667pt;}
.yf8{bottom:536.226667pt;}
.y19{bottom:540.733333pt;}
.y84{bottom:542.146667pt;}
.y149{bottom:543.746667pt;}
.y4c{bottom:543.933333pt;}
.ybb{bottom:547.106667pt;}
.y124{bottom:547.586667pt;}
.yf7{bottom:552.546667pt;}
.y18{bottom:556.893333pt;}
.y83{bottom:558.466667pt;}
.y4b{bottom:558.653333pt;}
.yba{bottom:560.546667pt;}
.y148{bottom:562.626667pt;}
.y123{bottom:563.746667pt;}
.yf1{bottom:568.706667pt;}
.y17{bottom:573.213333pt;}
.y82{bottom:574.786667pt;}
.yf6{bottom:575.906667pt;}
.yb9{bottom:577.533333pt;}
.y122{bottom:580.093333pt;}
.y147{bottom:581.533333pt;}
.yf0{bottom:585.053333pt;}
.y4a{bottom:587.933333pt;}
.y16{bottom:589.533333pt;}
.y81{bottom:591.133333pt;}
.yf5{bottom:592.253333pt;}
.yb8{bottom:594.493333pt;}
.y121{bottom:596.413333pt;}
.y146{bottom:600.413333pt;}
.yef{bottom:601.373333pt;}
.y49{bottom:602.493333pt;}
.y15{bottom:605.693333pt;}
.y80{bottom:607.293333pt;}
.yf4{bottom:608.413333pt;}
.yb7{bottom:611.453333pt;}
.y120{bottom:612.573333pt;}
.y48{bottom:617.213333pt;}
.yee{bottom:617.693333pt;}
.y145{bottom:619.293333pt;}
.y14{bottom:622.013333pt;}
.y7f{bottom:623.613333pt;}
.yf3{bottom:624.733333pt;}
.yb6{bottom:628.413333pt;}
.y11f{bottom:628.893333pt;}
.y47{bottom:631.773333pt;}
.yed{bottom:633.853333pt;}
.y144{bottom:638.013333pt;}
.y13{bottom:638.333333pt;}
.y7e{bottom:639.933333pt;}
.y11e{bottom:645.213333pt;}
.yb5{bottom:645.373333pt;}
.y46{bottom:646.493333pt;}
.yf2{bottom:650.013333pt;}
.yec{bottom:650.173333pt;}
.y12{bottom:654.653333pt;}
.y7d{bottom:656.093333pt;}
.y143{bottom:656.893333pt;}
.y45{bottom:661.213333pt;}
.y11d{bottom:661.533333pt;}
.yb4{bottom:662.333333pt;}
.yeb{bottom:666.493333pt;}
.y11{bottom:670.813333pt;}
.y7c{bottom:672.413333pt;}
.y11c{bottom:674.973333pt;}
.y44{bottom:675.773333pt;}
.yb3{bottom:682.653333pt;}
.y10{bottom:687.133333pt;}
.y7b{bottom:688.733333pt;}
.y11b{bottom:691.773333pt;}
.y142{bottom:694.653333pt;}
.y43{bottom:698.333333pt;}
.yb2{bottom:698.973333pt;}
.yf{bottom:703.453333pt;}
.y7a{bottom:705.053333pt;}
.y11a{bottom:708.733333pt;}
.y141{bottom:713.533333pt;}
.yb1{bottom:715.293333pt;}
.y79{bottom:721.213333pt;}
.y42{bottom:725.093333pt;}
.y119{bottom:725.693333pt;}
.yb0{bottom:731.613333pt;}
.y140{bottom:732.413333pt;}
.y78{bottom:737.533333pt;}
.y118{bottom:742.653333pt;}
.yaf{bottom:747.773333pt;}
.y13f{bottom:751.133333pt;}
.y41{bottom:751.493333pt;}
.y77{bottom:753.853333pt;}
.y117{bottom:763.133333pt;}
.yae{bottom:764.093333pt;}
.y40{bottom:767.173333pt;}
.y13e{bottom:770.013333pt;}
.y76{bottom:770.173333pt;}
.y116{bottom:779.453333pt;}
.yad{bottom:780.413333pt;}
.y3f{bottom:783.013333pt;}
.y75{bottom:786.333333pt;}
.yc{bottom:794.653333pt;}
.y115{bottom:795.613333pt;}
.yac{bottom:796.573333pt;}
.y3e{bottom:798.853333pt;}
.y74{bottom:802.693333pt;}
.y114{bottom:811.973333pt;}
.yab{bottom:812.933333pt;}
.y3d{bottom:814.533333pt;}
.yb{bottom:815.013333pt;}
.y73{bottom:819.013333pt;}
.yaa{bottom:826.373333pt;}
.y113{bottom:828.293333pt;}
.yea{bottom:829.253333pt;}
.ya{bottom:832.453333pt;}
.y72{bottom:835.173333pt;}
.y3c{bottom:837.573333pt;}
.y112{bottom:841.093333pt;}
.ya9{bottom:843.333333pt;}
.ye9{bottom:845.573333pt;}
.y9{bottom:848.773333pt;}
.y71{bottom:851.493333pt;}
.ye7{bottom:859.013333pt;}
.ya8{bottom:860.293333pt;}
.y8{bottom:865.093333pt;}
.y70{bottom:867.813333pt;}
.ye4{bottom:875.813333pt;}
.ya7{bottom:877.253333pt;}
.y7{bottom:881.253333pt;}
.y6f{bottom:884.133333pt;}
.ye6{bottom:892.773333pt;}
.ya6{bottom:894.213333pt;}
.y6{bottom:899.013333pt;}
.y6e{bottom:900.293333pt;}
.ye5{bottom:909.733333pt;}
.ya5{bottom:911.173333pt;}
.y6d{bottom:916.613333pt;}
.y5{bottom:921.893333pt;}
.ye1{bottom:926.693333pt;}
.ya4{bottom:927.973333pt;}
.y6c{bottom:932.933333pt;}
.y4{bottom:943.653333pt;}
.ya3{bottom:944.933333pt;}
.y6b{bottom:945.733333pt;}
.ya2{bottom:949.253333pt;}
.ye3{bottom:960.613333pt;}
.y2{bottom:962.053333pt;}
.ya1{bottom:965.413333pt;}
.ye0{bottom:977.573333pt;}
.y1{bottom:979.653333pt;}
.ya0{bottom:981.733333pt;}
.y9f{bottom:998.053333pt;}
.y6a{bottom:1014.213333pt;}
.y66{bottom:1030.240000pt;}
.y65{bottom:1045.280000pt;}
.h11{height:16.160000pt;}
.h10{height:16.320000pt;}
.h7{height:16.352000pt;}
.hd{height:17.920000pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.ha{height:49.148438pt;}
.h12{height:50.240000pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.h2{height:58.563750pt;}
.hf{height:64.960000pt;}
.he{height:65.531250pt;}
.h13{height:74.477812pt;}
.h4{height:76.671562pt;}
.h8{height:716.093333pt;}
.h9{height:850.373333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.000000pt;}
.we{width:60.960000pt;}
.wa{width:62.560000pt;}
.w19{width:72.640000pt;}
.w15{width:77.120000pt;}
.w14{width:96.992000pt;}
.w11{width:114.400000pt;}
.wc{width:115.360000pt;}
.wd{width:117.312000pt;}
.w1b{width:123.712000pt;}
.w1c{width:125.920000pt;}
.w17{width:137.466667pt;}
.w18{width:139.706667pt;}
.wf{width:152.160000pt;}
.w8{width:155.706667pt;}
.w13{width:164.186667pt;}
.w9{width:178.266667pt;}
.w4{width:192.666667pt;}
.w7{width:242.426667pt;}
.w16{width:289.306667pt;}
.w12{width:300.826667pt;}
.wb{width:345.346667pt;}
.w10{width:373.373333pt;}
.w1a{width:390.146667pt;}
.w3{width:425.346667pt;}
.w6{width:642.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x5{left:9.600000pt;}
.x1{left:75.551988pt;}
.x26{left:86.431988pt;}
.x14{left:99.391988pt;}
.x8{left:129.471988pt;}
.x15{left:156.826655pt;}
.x28{left:167.066655pt;}
.x6{left:179.560000pt;}
.xf{left:181.146655pt;}
.x27{left:186.746655pt;}
.x1d{left:187.866655pt;}
.x16{left:220.666655pt;}
.xb{left:222.426655pt;}
.x17{left:229.146667pt;}
.x7{left:236.066667pt;}
.x21{left:249.986655pt;}
.xc{left:319.586667pt;}
.x22{left:366.466667pt;}
.x13{left:373.506655pt;}
.x25{left:375.586655pt;}
.x1e{left:377.986667pt;}
.xa{left:420.573322pt;}
.x10{left:422.493333pt;}
.x1a{left:432.253322pt;}
.x1c{left:436.093322pt;}
.x1b{left:443.613322pt;}
.x29{left:467.293333pt;}
.xd{left:476.093333pt;}
.x23{left:504.573333pt;}
.x4{left:521.373333pt;}
.x11{left:538.493333pt;}
.x1f{left:542.813333pt;}
.x2a{left:591.653333pt;}
.x18{left:603.173333pt;}
.x20{left:640.453333pt;}
.x24{left:644.933333pt;}
.xe{left:655.013333pt;}
.x12{left:656.613333pt;}
.x9{left:672.293333pt;}
.x19{left:714.533322pt;}
.x2{left:718.239988pt;}
}




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