
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2e2c982502f73aa61c2daf22.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_558c4d5957a3d29ac0c9afeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_55dc0e25e30c063d24a00158.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_f63cda67819268187547f053.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_739b3d6f0e3da4b909296151.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_5297d62973f00531ef3292bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dd51df82a36a043832f2f930.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_a330cb58c655feb9145b80fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e2954975229b170f6cdac6de.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.747559;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;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.205800px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.139200px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.239040px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.624000px;}
.lse{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.792000px;}
.ls0{letter-spacing:2.880000px;}
.ls5{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws7{word-spacing:-23.726400px;}
.ws1{word-spacing:-21.060000px;}
.wsa{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.136000px;}
.ws6{word-spacing:-16.527000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-4.812000px;}
._12{margin-left:-3.780000px;}
._d{margin-left:-2.340000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._7{width:5.616000px;}
._1b{width:6.684000px;}
._18{width:7.776000px;}
._c{width:8.784000px;}
._b{width:10.080000px;}
._11{width:11.724000px;}
._19{width:13.164000px;}
._17{width:14.190000px;}
._14{width:15.762000px;}
._15{width:16.926000px;}
._e{width:19.656000px;}
._10{width:20.736000px;}
._f{width:21.888000px;}
._a{width:23.040000px;}
._13{width:24.120000px;}
._9{width:25.218000px;}
._8{width:26.352000px;}
._1d{width:27.930000px;}
._1c{width:28.944000px;}
._27{width:30.420000px;}
._20{width:32.184000px;}
._23{width:33.696000px;}
._24{width:35.712000px;}
._22{width:37.296000px;}
._21{width:38.664000px;}
._28{width:40.032000px;}
._29{width:41.316000px;}
._26{width:44.784000px;}
._25{width:45.864000px;}
._1f{width:56.826000px;}
._1e{width:57.888000px;}
._2c{width:60.048000px;}
._36{width:67.248000px;}
._35{width:68.304000px;}
._6{width:71.472000px;}
._39{width:75.096000px;}
._3f{width:81.828000px;}
._3e{width:83.304000px;}
._41{width:86.418000px;}
._40{width:87.696000px;}
._33{width:91.152000px;}
._34{width:92.904000px;}
._3d{width:97.464000px;}
._31{width:133.428000px;}
._30{width:134.568000px;}
._32{width:139.824000px;}
._38{width:163.872000px;}
._37{width:165.648000px;}
._3b{width:171.828000px;}
._3a{width:173.160000px;}
._3c{width:174.324000px;}
._42{width:181.440000px;}
._2b{width:192.240000px;}
._2a{width:193.584000px;}
._2f{width:226.728000px;}
._2e{width:227.952000px;}
._43{width:243.864000px;}
._44{width:244.884000px;}
._2d{width:438.636000px;}
._5{width:470.916000px;}
._16{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:1.800000px;}
.y37{bottom:8.100000px;}
.y33{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y36{bottom:67.680000px;}
.y34{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y32{bottom:122.580000px;}
.y125{bottom:136.080000px;}
.y3{bottom:137.520000px;}
.yd2{bottom:142.920000px;}
.y13c{bottom:144.000000px;}
.yfb{bottom:144.720000px;}
.y90{bottom:145.080000px;}
.y66{bottom:146.340000px;}
.y183{bottom:151.380000px;}
.yad{bottom:153.570000px;}
.y15b{bottom:154.110000px;}
.y124{bottom:156.450000px;}
.y2f{bottom:160.770000px;}
.yd1{bottom:163.110000px;}
.y13b{bottom:164.370000px;}
.yfa{bottom:164.910000px;}
.y8f{bottom:165.450000px;}
.y65{bottom:166.530000px;}
.y182{bottom:171.750000px;}
.yac{bottom:173.910000px;}
.y15a{bottom:174.450000px;}
.y123{bottom:176.610000px;}
.y2e{bottom:180.930000px;}
.yd0{bottom:183.450000px;}
.y13a{bottom:184.530000px;}
.yf9{bottom:185.250000px;}
.y64{bottom:186.870000px;}
.yab{bottom:194.250000px;}
.y8e{bottom:194.610000px;}
.y122{bottom:196.950000px;}
.y181{bottom:200.910000px;}
.ycf{bottom:203.610000px;}
.y139{bottom:204.870000px;}
.yf8{bottom:205.410000px;}
.y63{bottom:207.030000px;}
.y2d{bottom:210.090000px;}
.y163{bottom:212.610000px;}
.y1a2{bottom:213.690000px;}
.yaa{bottom:214.410000px;}
.y159{bottom:214.950000px;}
.y121{bottom:217.110000px;}
.y180{bottom:221.250000px;}
.y8d{bottom:223.770000px;}
.yce{bottom:223.950000px;}
.y149{bottom:227.370000px;}
.y162{bottom:232.950000px;}
.y138{bottom:234.030000px;}
.yf7{bottom:234.570000px;}
.ya9{bottom:234.750000px;}
.y158{bottom:235.110000px;}
.y62{bottom:236.190000px;}
.y120{bottom:237.450000px;}
.y2c{bottom:240.330000px;}
.y17f{bottom:241.410000px;}
.y8c{bottom:244.110000px;}
.y148{bottom:247.530000px;}
.y161{bottom:253.110000px;}
.y137{bottom:254.370000px;}
.ya8{bottom:254.910000px;}
.y157{bottom:255.450000px;}
.y61{bottom:256.530000px;}
.y11f{bottom:257.610000px;}
.y8b{bottom:264.450000px;}
.y17e{bottom:270.570000px;}
.y2b{bottom:272.010000px;}
.y136{bottom:274.530000px;}
.ya7{bottom:275.250000px;}
.y156{bottom:275.610000px;}
.y147{bottom:276.690000px;}
.y60{bottom:276.870000px;}
.y11e{bottom:277.950000px;}
.y160{bottom:283.170000px;}
.y1a1{bottom:283.530000px;}
.y8a{bottom:284.610000px;}
.y17d{bottom:290.910000px;}
.ycd{bottom:293.610000px;}
.y135{bottom:294.870000px;}
.ya6{bottom:295.410000px;}
.y155{bottom:295.950000px;}
.y5f{bottom:297.030000px;}
.y11d{bottom:298.110000px;}
.y2a{bottom:301.350000px;}
.y1a0{bottom:303.870000px;}
.y89{bottom:304.950000px;}
.ycc{bottom:313.950000px;}
.y134{bottom:315.030000px;}
.yf6{bottom:315.750000px;}
.y5e{bottom:317.370000px;}
.y17c{bottom:320.070000px;}
.y29{bottom:321.690000px;}
.y1aa{bottom:324.030000px;}
.ya5{bottom:324.570000px;}
.y88{bottom:325.110000px;}
.y11c{bottom:327.270000px;}
.y19f{bottom:333.030000px;}
.ycb{bottom:334.110000px;}
.y133{bottom:335.370000px;}
.yf5{bottom:335.910000px;}
.y5d{bottom:337.530000px;}
.y17b{bottom:340.410000px;}
.y28{bottom:341.850000px;}
.y15f{bottom:344.190000px;}
.ya4{bottom:344.910000px;}
.y87{bottom:345.450000px;}
.y11b{bottom:347.610000px;}
.y1a9{bottom:353.190000px;}
.y19e{bottom:353.370000px;}
.yca{bottom:354.450000px;}
.y132{bottom:355.530000px;}
.yf4{bottom:356.250000px;}
.y146{bottom:357.870000px;}
.y17a{bottom:360.750000px;}
.y27{bottom:362.190000px;}
.ya3{bottom:365.250000px;}
.y86{bottom:365.610000px;}
.y5c{bottom:366.690000px;}
.y19d{bottom:373.530000px;}
.y15e{bottom:374.250000px;}
.yc9{bottom:374.610000px;}
.y131{bottom:375.870000px;}
.yf3{bottom:376.410000px;}
.y11a{bottom:376.770000px;}
.y145{bottom:378.030000px;}
.y179{bottom:380.910000px;}
.ya2{bottom:385.410000px;}
.ydc{bottom:385.950000px;}
.y5b{bottom:387.030000px;}
.y26{bottom:391.350000px;}
.y85{bottom:394.770000px;}
.yc8{bottom:394.950000px;}
.y119{bottom:397.110000px;}
.y144{bottom:398.370000px;}
.y178{bottom:401.295000px;}
.y19c{bottom:402.735000px;}
.y130{bottom:405.075000px;}
.yf2{bottom:405.615000px;}
.ya1{bottom:405.795000px;}
.y154{bottom:406.155000px;}
.y5a{bottom:407.415000px;}
.y84{bottom:415.155000px;}
.y118{bottom:417.495000px;}
.y25{bottom:420.555000px;}
.y19b{bottom:423.075000px;}
.y12f{bottom:425.415000px;}
.yf1{bottom:425.955000px;}
.ya0{bottom:426.135000px;}
.y153{bottom:426.495000px;}
.y59{bottom:427.575000px;}
.y177{bottom:430.455000px;}
.y15d{bottom:435.315000px;}
.y83{bottom:435.495000px;}
.y117{bottom:437.655000px;}
.y24{bottom:440.895000px;}
.y19a{bottom:443.415000px;}
.yc7{bottom:444.315000px;}
.y12e{bottom:445.575000px;}
.yf0{bottom:446.295000px;}
.y152{bottom:446.655000px;}
.y58{bottom:447.915000px;}
.y176{bottom:450.795000px;}
.y1a8{bottom:452.235000px;}
.y82{bottom:455.655000px;}
.y116{bottom:457.995000px;}
.y199{bottom:463.575000px;}
.yc6{bottom:464.655000px;}
.y15c{bottom:465.555000px;}
.y12d{bottom:465.915000px;}
.yef{bottom:466.455000px;}
.y151{bottom:466.995000px;}
.y57{bottom:468.075000px;}
.y23{bottom:470.055000px;}
.y175{bottom:471.135000px;}
.y1a7{bottom:472.575000px;}
.y81{bottom:475.995000px;}
.y115{bottom:478.155000px;}
.yc5{bottom:484.995000px;}
.y12c{bottom:486.075000px;}
.yee{bottom:486.795000px;}
.y56{bottom:488.415000px;}
.y198{bottom:492.735000px;}
.y1a6{bottom:492.915000px;}
.y80{bottom:496.155000px;}
.y9f{bottom:497.235000px;}
.y22{bottom:499.395000px;}
.y174{bottom:501.735000px;}
.yc4{bottom:505.155000px;}
.y12b{bottom:506.415000px;}
.yed{bottom:506.955000px;}
.y114{bottom:507.315000px;}
.y143{bottom:508.575000px;}
.y197{bottom:513.075000px;}
.y7f{bottom:516.495000px;}
.y55{bottom:517.575000px;}
.y21{bottom:519.735000px;}
.y173{bottom:522.075000px;}
.yc3{bottom:525.495000px;}
.y9e{bottom:526.575000px;}
.yec{bottom:527.295000px;}
.y142{bottom:528.915000px;}
.y196{bottom:533.415000px;}
.y7e{bottom:536.655000px;}
.y113{bottom:537.555000px;}
.y54{bottom:537.915000px;}
.y20{bottom:539.895000px;}
.y1a5{bottom:542.235000px;}
.y172{bottom:542.415000px;}
.yc2{bottom:545.655000px;}
.y9d{bottom:546.915000px;}
.yeb{bottom:547.455000px;}
.y141{bottom:549.075000px;}
.y7d{bottom:556.995000px;}
.y53{bottom:558.075000px;}
.y1f{bottom:560.235000px;}
.y195{bottom:562.575000px;}
.yc1{bottom:565.995000px;}
.y9c{bottom:567.075000px;}
.y112{bottom:569.235000px;}
.y140{bottom:569.415000px;}
.y171{bottom:571.575000px;}
.yea{bottom:576.615000px;}
.y7c{bottom:577.155000px;}
.y52{bottom:578.415000px;}
.y1e{bottom:580.395000px;}
.y194{bottom:582.915000px;}
.yc0{bottom:586.155000px;}
.y9b{bottom:587.415000px;}
.y1a4{bottom:591.735000px;}
.y170{bottom:591.915000px;}
.y12a{bottom:596.235000px;}
.ye9{bottom:596.955000px;}
.ydb{bottom:597.495000px;}
.y111{bottom:598.575000px;}
.y1d{bottom:600.735000px;}
.y193{bottom:603.075000px;}
.y7b{bottom:606.315000px;}
.ybf{bottom:606.495000px;}
.y51{bottom:607.575000px;}
.y16f{bottom:612.075000px;}
.y129{bottom:616.575000px;}
.ye8{bottom:617.295000px;}
.y150{bottom:617.655000px;}
.y110{bottom:618.915000px;}
.y1c{bottom:620.895000px;}
.y7a{bottom:626.655000px;}
.y9a{bottom:627.915000px;}
.y192{bottom:632.235000px;}
.ybe{bottom:635.655000px;}
.y50{bottom:636.735000px;}
.y128{bottom:636.915000px;}
.ye7{bottom:637.455000px;}
.y10f{bottom:639.075000px;}
.y1b{bottom:641.235000px;}
.y79{bottom:646.995000px;}
.y14f{bottom:647.715000px;}
.y99{bottom:648.075000px;}
.y191{bottom:652.605000px;}
.ybd{bottom:656.025000px;}
.y4f{bottom:657.105000px;}
.ye6{bottom:657.825000px;}
.y10e{bottom:659.445000px;}
.y1a{bottom:661.425000px;}
.y16e{bottom:661.605000px;}
.y78{bottom:667.185000px;}
.y98{bottom:668.445000px;}
.y190{bottom:672.945000px;}
.ybc{bottom:676.185000px;}
.y4e{bottom:677.445000px;}
.ye5{bottom:677.985000px;}
.y10d{bottom:679.605000px;}
.y19{bottom:681.765000px;}
.y16d{bottom:681.945000px;}
.y77{bottom:687.525000px;}
.y97{bottom:688.605000px;}
.ybb{bottom:696.525000px;}
.y4d{bottom:697.605000px;}
.y1b7{bottom:698.505000px;}
.y10c{bottom:699.945000px;}
.y18{bottom:701.925000px;}
.y18f{bottom:702.105000px;}
.ye4{bottom:707.145000px;}
.y76{bottom:707.685000px;}
.y14e{bottom:708.765000px;}
.y96{bottom:708.945000px;}
.y16c{bottom:711.105000px;}
.yba{bottom:716.685000px;}
.y13f{bottom:717.765000px;}
.y4c{bottom:717.945000px;}
.y10b{bottom:720.105000px;}
.y17{bottom:722.265000px;}
.y18e{bottom:722.445000px;}
.y75{bottom:728.025000px;}
.y14d{bottom:729.105000px;}
.y16b{bottom:731.445000px;}
.y1b6{bottom:732.165000px;}
.ye3{bottom:736.485000px;}
.yb9{bottom:737.025000px;}
.y4b{bottom:738.105000px;}
.y16{bottom:742.425000px;}
.y18d{bottom:742.605000px;}
.y74{bottom:748.185000px;}
.y10a{bottom:749.265000px;}
.y14c{bottom:749.445000px;}
.y16a{bottom:751.605000px;}
.ye2{bottom:756.825000px;}
.yb8{bottom:757.185000px;}
.y4a{bottom:758.445000px;}
.y1b5{bottom:761.505000px;}
.y15{bottom:762.765000px;}
.y73{bottom:768.525000px;}
.y109{bottom:769.605000px;}
.y18c{bottom:771.765000px;}
.y169{bottom:771.945000px;}
.ye1{bottom:776.985000px;}
.yb7{bottom:777.525000px;}
.y49{bottom:778.605000px;}
.y1b4{bottom:781.845000px;}
.y14{bottom:782.925000px;}
.y127{bottom:787.605000px;}
.y72{bottom:788.685000px;}
.y108{bottom:789.945000px;}
.y18b{bottom:792.105000px;}
.ye0{bottom:797.325000px;}
.y48{bottom:798.945000px;}
.y168{bottom:801.105000px;}
.y13{bottom:803.265000px;}
.y1b3{bottom:803.445000px;}
.yb6{bottom:806.685000px;}
.y126{bottom:807.945000px;}
.y71{bottom:809.025000px;}
.y107{bottom:810.105000px;}
.y18a{bottom:812.445000px;}
.ydf{bottom:817.485000px;}
.yda{bottom:817.845000px;}
.y95{bottom:819.105000px;}
.y167{bottom:821.445000px;}
.y12{bottom:823.425000px;}
.yb5{bottom:827.025000px;}
.y47{bottom:828.105000px;}
.y106{bottom:830.445000px;}
.y1b2{bottom:832.605000px;}
.yde{bottom:837.825000px;}
.y70{bottom:838.185000px;}
.y94{bottom:839.445000px;}
.y166{bottom:841.605000px;}
.y11{bottom:843.765000px;}
.yb4{bottom:847.185000px;}
.y46{bottom:848.445000px;}
.y105{bottom:850.605000px;}
.y1b1{bottom:852.945000px;}
.yd9{bottom:858.525000px;}
.y93{bottom:859.605000px;}
.y189{bottom:861.945000px;}
.ydd{bottom:867.165000px;}
.yb3{bottom:867.525000px;}
.y6f{bottom:868.245000px;}
.y45{bottom:868.605000px;}
.y165{bottom:870.765000px;}
.y104{bottom:870.945000px;}
.y1b0{bottom:873.105000px;}
.y10{bottom:873.645000px;}
.yd8{bottom:878.685000px;}
.y13e{bottom:879.945000px;}
.y188{bottom:882.105000px;}
.yb2{bottom:887.685000px;}
.y92{bottom:888.765000px;}
.y44{bottom:888.945000px;}
.y103{bottom:891.105000px;}
.yd7{bottom:899.070000px;}
.y6e{bottom:900.150000px;}
.y1af{bottom:902.310000px;}
.yf{bottom:905.550000px;}
.yb1{bottom:908.070000px;}
.y43{bottom:909.150000px;}
.y187{bottom:911.310000px;}
.y164{bottom:911.490000px;}
.yd6{bottom:919.230000px;}
.y102{bottom:920.310000px;}
.y14b{bottom:920.490000px;}
.yb0{bottom:928.230000px;}
.y6d{bottom:929.310000px;}
.y42{bottom:929.490000px;}
.y186{bottom:931.650000px;}
.ye{bottom:934.710000px;}
.y101{bottom:940.650000px;}
.yd5{bottom:948.390000px;}
.y41{bottom:949.650000px;}
.y185{bottom:951.990000px;}
.yd{bottom:955.230000px;}
.yaf{bottom:958.290000px;}
.y1a3{bottom:960.810000px;}
.y100{bottom:960.990000px;}
.y14a{bottom:969.810000px;}
.y40{bottom:969.990000px;}
.y1ae{bottom:972.150000px;}
.yd4{bottom:978.630000px;}
.yff{bottom:981.150000px;}
.y6c{bottom:990.150000px;}
.yc{bottom:997.530000px;}
.y3f{bottom:999.150000px;}
.y1ad{bottom:1001.310000px;}
.yfe{bottom:1001.490000px;}
.yd3{bottom:1010.310000px;}
.y6b{bottom:1010.490000px;}
.yae{bottom:1019.310000px;}
.y3e{bottom:1019.490000px;}
.yfd{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.y6a{bottom:1030.650000px;}
.y3d{bottom:1039.650000px;}
.yfc{bottom:1041.990000px;}
.y184{bottom:1050.810000px;}
.y69{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.y91{bottom:1059.810000px;}
.y3c{bottom:1059.990000px;}
.y68{bottom:1071.150000px;}
.y3b{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y13d{bottom:1091.490000px;}
.y67{bottom:1100.310000px;}
.y3a{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y1ac{bottom:1111.650000px;}
.y39{bottom:1120.650000px;}
.y1ab{bottom:1140.810000px;}
.y38{bottom:1140.990000px;}
.y31{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y30{bottom:1196.280000px;}
.hd{height:22.500000px;}
.hf{height:24.120000px;}
.h3{height:36.571289px;}
.hb{height:41.610234px;}
.hc{height:47.796328px;}
.h8{height:48.761719px;}
.h4{height:50.132812px;}
.h7{height:56.437031px;}
.h9{height:57.051211px;}
.ha{height:59.439023px;}
.h10{height:60.679688px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:10.800000px;}
.x3{left:106.415987px;}
.x4{left:140.975987px;}
.x16{left:148.895987px;}
.x5{left:173.909987px;}
.xb{left:180.209987px;}
.x6{left:189.749987px;}
.xe{left:241.049987px;}
.x11{left:277.454987px;}
.xf{left:343.874987px;}
.x10{left:347.834987px;}
.x14{left:358.454987px;}
.x13{left:363.494987px;}
.x8{left:365.294987px;}
.x7{left:371.054987px;}
.xa{left:390.134987px;}
.x12{left:396.074987px;}
.x15{left:397.694987px;}
.x9{left:409.394987px;}
.x1{left:446.504987px;}
.x2{left:786.749987px;}
.xc{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.182933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.123733pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.212480pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.554667pt;}
.lse{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls5{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws7{word-spacing:-21.090133pt;}
.ws1{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.232000pt;}
.ws6{word-spacing:-14.690667pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-4.277333pt;}
._12{margin-left:-3.360000pt;}
._d{margin-left:-2.080000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._7{width:4.992000pt;}
._1b{width:5.941333pt;}
._18{width:6.912000pt;}
._c{width:7.808000pt;}
._b{width:8.960000pt;}
._11{width:10.421333pt;}
._19{width:11.701333pt;}
._17{width:12.613333pt;}
._14{width:14.010667pt;}
._15{width:15.045333pt;}
._e{width:17.472000pt;}
._10{width:18.432000pt;}
._f{width:19.456000pt;}
._a{width:20.480000pt;}
._13{width:21.440000pt;}
._9{width:22.416000pt;}
._8{width:23.424000pt;}
._1d{width:24.826667pt;}
._1c{width:25.728000pt;}
._27{width:27.040000pt;}
._20{width:28.608000pt;}
._23{width:29.952000pt;}
._24{width:31.744000pt;}
._22{width:33.152000pt;}
._21{width:34.368000pt;}
._28{width:35.584000pt;}
._29{width:36.725333pt;}
._26{width:39.808000pt;}
._25{width:40.768000pt;}
._1f{width:50.512000pt;}
._1e{width:51.456000pt;}
._2c{width:53.376000pt;}
._36{width:59.776000pt;}
._35{width:60.714667pt;}
._6{width:63.530667pt;}
._39{width:66.752000pt;}
._3f{width:72.736000pt;}
._3e{width:74.048000pt;}
._41{width:76.816000pt;}
._40{width:77.952000pt;}
._33{width:81.024000pt;}
._34{width:82.581333pt;}
._3d{width:86.634667pt;}
._31{width:118.602667pt;}
._30{width:119.616000pt;}
._32{width:124.288000pt;}
._38{width:145.664000pt;}
._37{width:147.242667pt;}
._3b{width:152.736000pt;}
._3a{width:153.920000pt;}
._3c{width:154.954667pt;}
._42{width:161.280000pt;}
._2b{width:170.880000pt;}
._2a{width:172.074667pt;}
._2f{width:201.536000pt;}
._2e{width:202.624000pt;}
._43{width:216.768000pt;}
._44{width:217.674667pt;}
._2d{width:389.898667pt;}
._5{width:418.592000pt;}
._16{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:1.600000pt;}
.y37{bottom:7.200000pt;}
.y33{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y36{bottom:60.160000pt;}
.y34{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y32{bottom:108.960000pt;}
.y125{bottom:120.960000pt;}
.y3{bottom:122.240000pt;}
.yd2{bottom:127.040000pt;}
.y13c{bottom:128.000000pt;}
.yfb{bottom:128.640000pt;}
.y90{bottom:128.960000pt;}
.y66{bottom:130.080000pt;}
.y183{bottom:134.560000pt;}
.yad{bottom:136.506667pt;}
.y15b{bottom:136.986667pt;}
.y124{bottom:139.066667pt;}
.y2f{bottom:142.906667pt;}
.yd1{bottom:144.986667pt;}
.y13b{bottom:146.106667pt;}
.yfa{bottom:146.586667pt;}
.y8f{bottom:147.066667pt;}
.y65{bottom:148.026667pt;}
.y182{bottom:152.666667pt;}
.yac{bottom:154.586667pt;}
.y15a{bottom:155.066667pt;}
.y123{bottom:156.986667pt;}
.y2e{bottom:160.826667pt;}
.yd0{bottom:163.066667pt;}
.y13a{bottom:164.026667pt;}
.yf9{bottom:164.666667pt;}
.y64{bottom:166.106667pt;}
.yab{bottom:172.666667pt;}
.y8e{bottom:172.986667pt;}
.y122{bottom:175.066667pt;}
.y181{bottom:178.586667pt;}
.ycf{bottom:180.986667pt;}
.y139{bottom:182.106667pt;}
.yf8{bottom:182.586667pt;}
.y63{bottom:184.026667pt;}
.y2d{bottom:186.746667pt;}
.y163{bottom:188.986667pt;}
.y1a2{bottom:189.946667pt;}
.yaa{bottom:190.586667pt;}
.y159{bottom:191.066667pt;}
.y121{bottom:192.986667pt;}
.y180{bottom:196.666667pt;}
.y8d{bottom:198.906667pt;}
.yce{bottom:199.066667pt;}
.y149{bottom:202.106667pt;}
.y162{bottom:207.066667pt;}
.y138{bottom:208.026667pt;}
.yf7{bottom:208.506667pt;}
.ya9{bottom:208.666667pt;}
.y158{bottom:208.986667pt;}
.y62{bottom:209.946667pt;}
.y120{bottom:211.066667pt;}
.y2c{bottom:213.626667pt;}
.y17f{bottom:214.586667pt;}
.y8c{bottom:216.986667pt;}
.y148{bottom:220.026667pt;}
.y161{bottom:224.986667pt;}
.y137{bottom:226.106667pt;}
.ya8{bottom:226.586667pt;}
.y157{bottom:227.066667pt;}
.y61{bottom:228.026667pt;}
.y11f{bottom:228.986667pt;}
.y8b{bottom:235.066667pt;}
.y17e{bottom:240.506667pt;}
.y2b{bottom:241.786667pt;}
.y136{bottom:244.026667pt;}
.ya7{bottom:244.666667pt;}
.y156{bottom:244.986667pt;}
.y147{bottom:245.946667pt;}
.y60{bottom:246.106667pt;}
.y11e{bottom:247.066667pt;}
.y160{bottom:251.706667pt;}
.y1a1{bottom:252.026667pt;}
.y8a{bottom:252.986667pt;}
.y17d{bottom:258.586667pt;}
.ycd{bottom:260.986667pt;}
.y135{bottom:262.106667pt;}
.ya6{bottom:262.586667pt;}
.y155{bottom:263.066667pt;}
.y5f{bottom:264.026667pt;}
.y11d{bottom:264.986667pt;}
.y2a{bottom:267.866667pt;}
.y1a0{bottom:270.106667pt;}
.y89{bottom:271.066667pt;}
.ycc{bottom:279.066667pt;}
.y134{bottom:280.026667pt;}
.yf6{bottom:280.666667pt;}
.y5e{bottom:282.106667pt;}
.y17c{bottom:284.506667pt;}
.y29{bottom:285.946667pt;}
.y1aa{bottom:288.026667pt;}
.ya5{bottom:288.506667pt;}
.y88{bottom:288.986667pt;}
.y11c{bottom:290.906667pt;}
.y19f{bottom:296.026667pt;}
.ycb{bottom:296.986667pt;}
.y133{bottom:298.106667pt;}
.yf5{bottom:298.586667pt;}
.y5d{bottom:300.026667pt;}
.y17b{bottom:302.586667pt;}
.y28{bottom:303.866667pt;}
.y15f{bottom:305.946667pt;}
.ya4{bottom:306.586667pt;}
.y87{bottom:307.066667pt;}
.y11b{bottom:308.986667pt;}
.y1a9{bottom:313.946667pt;}
.y19e{bottom:314.106667pt;}
.yca{bottom:315.066667pt;}
.y132{bottom:316.026667pt;}
.yf4{bottom:316.666667pt;}
.y146{bottom:318.106667pt;}
.y17a{bottom:320.666667pt;}
.y27{bottom:321.946667pt;}
.ya3{bottom:324.666667pt;}
.y86{bottom:324.986667pt;}
.y5c{bottom:325.946667pt;}
.y19d{bottom:332.026667pt;}
.y15e{bottom:332.666667pt;}
.yc9{bottom:332.986667pt;}
.y131{bottom:334.106667pt;}
.yf3{bottom:334.586667pt;}
.y11a{bottom:334.906667pt;}
.y145{bottom:336.026667pt;}
.y179{bottom:338.586667pt;}
.ya2{bottom:342.586667pt;}
.ydc{bottom:343.066667pt;}
.y5b{bottom:344.026667pt;}
.y26{bottom:347.866667pt;}
.y85{bottom:350.906667pt;}
.yc8{bottom:351.066667pt;}
.y119{bottom:352.986667pt;}
.y144{bottom:354.106667pt;}
.y178{bottom:356.706667pt;}
.y19c{bottom:357.986667pt;}
.y130{bottom:360.066667pt;}
.yf2{bottom:360.546667pt;}
.ya1{bottom:360.706667pt;}
.y154{bottom:361.026667pt;}
.y5a{bottom:362.146667pt;}
.y84{bottom:369.026667pt;}
.y118{bottom:371.106667pt;}
.y25{bottom:373.826667pt;}
.y19b{bottom:376.066667pt;}
.y12f{bottom:378.146667pt;}
.yf1{bottom:378.626667pt;}
.ya0{bottom:378.786667pt;}
.y153{bottom:379.106667pt;}
.y59{bottom:380.066667pt;}
.y177{bottom:382.626667pt;}
.y15d{bottom:386.946667pt;}
.y83{bottom:387.106667pt;}
.y117{bottom:389.026667pt;}
.y24{bottom:391.906667pt;}
.y19a{bottom:394.146667pt;}
.yc7{bottom:394.946667pt;}
.y12e{bottom:396.066667pt;}
.yf0{bottom:396.706667pt;}
.y152{bottom:397.026667pt;}
.y58{bottom:398.146667pt;}
.y176{bottom:400.706667pt;}
.y1a8{bottom:401.986667pt;}
.y82{bottom:405.026667pt;}
.y116{bottom:407.106667pt;}
.y199{bottom:412.066667pt;}
.yc6{bottom:413.026667pt;}
.y15c{bottom:413.826667pt;}
.y12d{bottom:414.146667pt;}
.yef{bottom:414.626667pt;}
.y151{bottom:415.106667pt;}
.y57{bottom:416.066667pt;}
.y23{bottom:417.826667pt;}
.y175{bottom:418.786667pt;}
.y1a7{bottom:420.066667pt;}
.y81{bottom:423.106667pt;}
.y115{bottom:425.026667pt;}
.yc5{bottom:431.106667pt;}
.y12c{bottom:432.066667pt;}
.yee{bottom:432.706667pt;}
.y56{bottom:434.146667pt;}
.y198{bottom:437.986667pt;}
.y1a6{bottom:438.146667pt;}
.y80{bottom:441.026667pt;}
.y9f{bottom:441.986667pt;}
.y22{bottom:443.906667pt;}
.y174{bottom:445.986667pt;}
.yc4{bottom:449.026667pt;}
.y12b{bottom:450.146667pt;}
.yed{bottom:450.626667pt;}
.y114{bottom:450.946667pt;}
.y143{bottom:452.066667pt;}
.y197{bottom:456.066667pt;}
.y7f{bottom:459.106667pt;}
.y55{bottom:460.066667pt;}
.y21{bottom:461.986667pt;}
.y173{bottom:464.066667pt;}
.yc3{bottom:467.106667pt;}
.y9e{bottom:468.066667pt;}
.yec{bottom:468.706667pt;}
.y142{bottom:470.146667pt;}
.y196{bottom:474.146667pt;}
.y7e{bottom:477.026667pt;}
.y113{bottom:477.826667pt;}
.y54{bottom:478.146667pt;}
.y20{bottom:479.906667pt;}
.y1a5{bottom:481.986667pt;}
.y172{bottom:482.146667pt;}
.yc2{bottom:485.026667pt;}
.y9d{bottom:486.146667pt;}
.yeb{bottom:486.626667pt;}
.y141{bottom:488.066667pt;}
.y7d{bottom:495.106667pt;}
.y53{bottom:496.066667pt;}
.y1f{bottom:497.986667pt;}
.y195{bottom:500.066667pt;}
.yc1{bottom:503.106667pt;}
.y9c{bottom:504.066667pt;}
.y112{bottom:505.986667pt;}
.y140{bottom:506.146667pt;}
.y171{bottom:508.066667pt;}
.yea{bottom:512.546667pt;}
.y7c{bottom:513.026667pt;}
.y52{bottom:514.146667pt;}
.y1e{bottom:515.906667pt;}
.y194{bottom:518.146667pt;}
.yc0{bottom:521.026667pt;}
.y9b{bottom:522.146667pt;}
.y1a4{bottom:525.986667pt;}
.y170{bottom:526.146667pt;}
.y12a{bottom:529.986667pt;}
.ye9{bottom:530.626667pt;}
.ydb{bottom:531.106667pt;}
.y111{bottom:532.066667pt;}
.y1d{bottom:533.986667pt;}
.y193{bottom:536.066667pt;}
.y7b{bottom:538.946667pt;}
.ybf{bottom:539.106667pt;}
.y51{bottom:540.066667pt;}
.y16f{bottom:544.066667pt;}
.y129{bottom:548.066667pt;}
.ye8{bottom:548.706667pt;}
.y150{bottom:549.026667pt;}
.y110{bottom:550.146667pt;}
.y1c{bottom:551.906667pt;}
.y7a{bottom:557.026667pt;}
.y9a{bottom:558.146667pt;}
.y192{bottom:561.986667pt;}
.ybe{bottom:565.026667pt;}
.y50{bottom:565.986667pt;}
.y128{bottom:566.146667pt;}
.ye7{bottom:566.626667pt;}
.y10f{bottom:568.066667pt;}
.y1b{bottom:569.986667pt;}
.y79{bottom:575.106667pt;}
.y14f{bottom:575.746667pt;}
.y99{bottom:576.066667pt;}
.y191{bottom:580.093333pt;}
.ybd{bottom:583.133333pt;}
.y4f{bottom:584.093333pt;}
.ye6{bottom:584.733333pt;}
.y10e{bottom:586.173333pt;}
.y1a{bottom:587.933333pt;}
.y16e{bottom:588.093333pt;}
.y78{bottom:593.053333pt;}
.y98{bottom:594.173333pt;}
.y190{bottom:598.173333pt;}
.ybc{bottom:601.053333pt;}
.y4e{bottom:602.173333pt;}
.ye5{bottom:602.653333pt;}
.y10d{bottom:604.093333pt;}
.y19{bottom:606.013333pt;}
.y16d{bottom:606.173333pt;}
.y77{bottom:611.133333pt;}
.y97{bottom:612.093333pt;}
.ybb{bottom:619.133333pt;}
.y4d{bottom:620.093333pt;}
.y1b7{bottom:620.893333pt;}
.y10c{bottom:622.173333pt;}
.y18{bottom:623.933333pt;}
.y18f{bottom:624.093333pt;}
.ye4{bottom:628.573333pt;}
.y76{bottom:629.053333pt;}
.y14e{bottom:630.013333pt;}
.y96{bottom:630.173333pt;}
.y16c{bottom:632.093333pt;}
.yba{bottom:637.053333pt;}
.y13f{bottom:638.013333pt;}
.y4c{bottom:638.173333pt;}
.y10b{bottom:640.093333pt;}
.y17{bottom:642.013333pt;}
.y18e{bottom:642.173333pt;}
.y75{bottom:647.133333pt;}
.y14d{bottom:648.093333pt;}
.y16b{bottom:650.173333pt;}
.y1b6{bottom:650.813333pt;}
.ye3{bottom:654.653333pt;}
.yb9{bottom:655.133333pt;}
.y4b{bottom:656.093333pt;}
.y16{bottom:659.933333pt;}
.y18d{bottom:660.093333pt;}
.y74{bottom:665.053333pt;}
.y10a{bottom:666.013333pt;}
.y14c{bottom:666.173333pt;}
.y16a{bottom:668.093333pt;}
.ye2{bottom:672.733333pt;}
.yb8{bottom:673.053333pt;}
.y4a{bottom:674.173333pt;}
.y1b5{bottom:676.893333pt;}
.y15{bottom:678.013333pt;}
.y73{bottom:683.133333pt;}
.y109{bottom:684.093333pt;}
.y18c{bottom:686.013333pt;}
.y169{bottom:686.173333pt;}
.ye1{bottom:690.653333pt;}
.yb7{bottom:691.133333pt;}
.y49{bottom:692.093333pt;}
.y1b4{bottom:694.973333pt;}
.y14{bottom:695.933333pt;}
.y127{bottom:700.093333pt;}
.y72{bottom:701.053333pt;}
.y108{bottom:702.173333pt;}
.y18b{bottom:704.093333pt;}
.ye0{bottom:708.733333pt;}
.y48{bottom:710.173333pt;}
.y168{bottom:712.093333pt;}
.y13{bottom:714.013333pt;}
.y1b3{bottom:714.173333pt;}
.yb6{bottom:717.053333pt;}
.y126{bottom:718.173333pt;}
.y71{bottom:719.133333pt;}
.y107{bottom:720.093333pt;}
.y18a{bottom:722.173333pt;}
.ydf{bottom:726.653333pt;}
.yda{bottom:726.973333pt;}
.y95{bottom:728.093333pt;}
.y167{bottom:730.173333pt;}
.y12{bottom:731.933333pt;}
.yb5{bottom:735.133333pt;}
.y47{bottom:736.093333pt;}
.y106{bottom:738.173333pt;}
.y1b2{bottom:740.093333pt;}
.yde{bottom:744.733333pt;}
.y70{bottom:745.053333pt;}
.y94{bottom:746.173333pt;}
.y166{bottom:748.093333pt;}
.y11{bottom:750.013333pt;}
.yb4{bottom:753.053333pt;}
.y46{bottom:754.173333pt;}
.y105{bottom:756.093333pt;}
.y1b1{bottom:758.173333pt;}
.yd9{bottom:763.133333pt;}
.y93{bottom:764.093333pt;}
.y189{bottom:766.173333pt;}
.ydd{bottom:770.813333pt;}
.yb3{bottom:771.133333pt;}
.y6f{bottom:771.773333pt;}
.y45{bottom:772.093333pt;}
.y165{bottom:774.013333pt;}
.y104{bottom:774.173333pt;}
.y1b0{bottom:776.093333pt;}
.y10{bottom:776.573333pt;}
.yd8{bottom:781.053333pt;}
.y13e{bottom:782.173333pt;}
.y188{bottom:784.093333pt;}
.yb2{bottom:789.053333pt;}
.y92{bottom:790.013333pt;}
.y44{bottom:790.173333pt;}
.y103{bottom:792.093333pt;}
.yd7{bottom:799.173333pt;}
.y6e{bottom:800.133333pt;}
.y1af{bottom:802.053333pt;}
.yf{bottom:804.933333pt;}
.yb1{bottom:807.173333pt;}
.y43{bottom:808.133333pt;}
.y187{bottom:810.053333pt;}
.y164{bottom:810.213333pt;}
.yd6{bottom:817.093333pt;}
.y102{bottom:818.053333pt;}
.y14b{bottom:818.213333pt;}
.yb0{bottom:825.093333pt;}
.y6d{bottom:826.053333pt;}
.y42{bottom:826.213333pt;}
.y186{bottom:828.133333pt;}
.ye{bottom:830.853333pt;}
.y101{bottom:836.133333pt;}
.yd5{bottom:843.013333pt;}
.y41{bottom:844.133333pt;}
.y185{bottom:846.213333pt;}
.yd{bottom:849.093333pt;}
.yaf{bottom:851.813333pt;}
.y1a3{bottom:854.053333pt;}
.y100{bottom:854.213333pt;}
.y14a{bottom:862.053333pt;}
.y40{bottom:862.213333pt;}
.y1ae{bottom:864.133333pt;}
.yd4{bottom:869.893333pt;}
.yff{bottom:872.133333pt;}
.y6c{bottom:880.133333pt;}
.yc{bottom:886.693333pt;}
.y3f{bottom:888.133333pt;}
.y1ad{bottom:890.053333pt;}
.yfe{bottom:890.213333pt;}
.yd3{bottom:898.053333pt;}
.y6b{bottom:898.213333pt;}
.yae{bottom:906.053333pt;}
.y3e{bottom:906.213333pt;}
.yfd{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.y6a{bottom:916.133333pt;}
.y3d{bottom:924.133333pt;}
.yfc{bottom:926.213333pt;}
.y184{bottom:934.053333pt;}
.y69{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.y91{bottom:942.053333pt;}
.y3c{bottom:942.213333pt;}
.y68{bottom:952.133333pt;}
.y3b{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y13d{bottom:970.213333pt;}
.y67{bottom:978.053333pt;}
.y3a{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y1ac{bottom:988.133333pt;}
.y39{bottom:996.133333pt;}
.y1ab{bottom:1014.053333pt;}
.y38{bottom:1014.213333pt;}
.y31{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y30{bottom:1063.360000pt;}
.hd{height:20.000000pt;}
.hf{height:21.440000pt;}
.h3{height:32.507812pt;}
.hb{height:36.986875pt;}
.hc{height:42.485625pt;}
.h8{height:43.343750pt;}
.h4{height:44.562500pt;}
.h7{height:50.166250pt;}
.h9{height:50.712187pt;}
.ha{height:52.834688pt;}
.h10{height:53.937500pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.600000pt;}
.x3{left:94.591988pt;}
.x4{left:125.311988pt;}
.x16{left:132.351988pt;}
.x5{left:154.586655pt;}
.xb{left:160.186655pt;}
.x6{left:168.666655pt;}
.xe{left:214.266655pt;}
.x11{left:246.626655pt;}
.xf{left:305.666655pt;}
.x10{left:309.186655pt;}
.x14{left:318.626655pt;}
.x13{left:323.106655pt;}
.x8{left:324.706655pt;}
.x7{left:329.826655pt;}
.xa{left:346.786655pt;}
.x12{left:352.066655pt;}
.x15{left:353.506655pt;}
.x9{left:363.906655pt;}
.x1{left:396.893322pt;}
.x2{left:699.333322pt;}
.xc{left:701.413333pt;}
}




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