
    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_b9ae6148d111e206655be779.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_349f2830bdda5c46ab0e3b0b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ffc4df851ae575a47193fd40.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_19a6d3d223a82e30db6da791.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_205beb2fa19611d9ffcd5ddd.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_3f67ee49437b18a1743488ac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_13f76aff9261d80a93f5a0db.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_851dba928b12dcd42f26188f.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-2.700000px;}
.lsa{letter-spacing:-2.520000px;}
.ls8{letter-spacing:-1.980000px;}
.ls13{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.223800px;}
.ls7{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.324000px;}
.lse{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.468000px;}
.ls4{letter-spacing:13.140000px;}
.ls3{letter-spacing:23.940000px;}
.ls16{letter-spacing:25.308000px;}
.ls10{letter-spacing:49.788000px;}
.ls15{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsd{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.716000px;}
.ws7{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.906000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.ws6{word-spacing:-9.540000px;}
.ws5{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-3.058800px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._c{width:2.675040px;}
._11{width:4.328640px;}
._d{width:5.346000px;}
._e{width:6.346080px;}
._f{width:7.963920px;}
._9{width:8.964000px;}
._a{width:9.990000px;}
._b{width:11.182320px;}
._12{width:12.420000px;}
._19{width:14.634000px;}
._8{width:16.182720px;}
._7{width:17.832960px;}
._1f{width:19.278000px;}
._10{width:20.736000px;}
._25{width:22.381920px;}
._3{width:23.479200px;}
._15{width:24.611040px;}
._16{width:25.770960px;}
._18{width:27.756000px;}
._23{width:28.827360px;}
._31{width:29.978640px;}
._17{width:31.212000px;}
._1a{width:32.670000px;}
._1e{width:33.858000px;}
._26{width:35.676000px;}
._1b{width:37.638000px;}
._33{width:38.686320px;}
._1c{width:39.744000px;}
._21{width:40.932000px;}
._32{width:42.012000px;}
._30{width:43.814640px;}
._24{width:46.008000px;}
._13{width:47.210400px;}
._14{width:48.214080px;}
._22{width:49.518000px;}
._5{width:51.217200px;}
._4{width:52.940160px;}
._2f{width:54.868320px;}
._20{width:57.834000px;}
._29{width:60.264000px;}
._34{width:61.817040px;}
._27{width:62.910000px;}
._28{width:64.044000px;}
._2b{width:69.822000px;}
._2a{width:71.280000px;}
._2d{width:73.926000px;}
._2e{width:75.762000px;}
._1d{width:80.490000px;}
._2c{width:82.458000px;}
._2{width:391.237080px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs9{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:2.865000px;}
.yea{bottom:2.880000px;}
.yf9{bottom:3.045000px;}
.yf3{bottom:3.225000px;}
.yee{bottom:3.405000px;}
.y30{bottom:3.780000px;}
.y33{bottom:4.500000px;}
.y119{bottom:5.220000px;}
.y11b{bottom:5.400000px;}
.y11e{bottom:5.580000px;}
.y11c{bottom:5.760000px;}
.yf0{bottom:18.345000px;}
.yec{bottom:18.525000px;}
.yf2{bottom:18.705000px;}
.yed{bottom:18.885000px;}
.y32{bottom:20.160000px;}
.y2f{bottom:21.060000px;}
.yf5{bottom:34.005000px;}
.yf6{bottom:34.365000px;}
.y2e{bottom:38.160000px;}
.y5a{bottom:58.500000px;}
.y2d{bottom:63.360000px;}
.y4{bottom:76.860000px;}
.y59{bottom:77.220000px;}
.y2c{bottom:81.180000px;}
.y49{bottom:93.600000px;}
.y14b{bottom:94.680000px;}
.y106{bottom:95.400000px;}
.y94{bottom:96.840000px;}
.y2b{bottom:99.000000px;}
.y56{bottom:102.420000px;}
.y100{bottom:104.400000px;}
.y6{bottom:105.120000px;}
.y48{bottom:111.420000px;}
.y14a{bottom:112.500000px;}
.y105{bottom:113.400000px;}
.y93{bottom:114.840000px;}
.y2a{bottom:117.000000px;}
.y188{bottom:117.900000px;}
.y13e{bottom:118.620000px;}
.y55{bottom:120.240000px;}
.yff{bottom:122.400000px;}
.yc1{bottom:126.540000px;}
.y47{bottom:129.240000px;}
.y149{bottom:130.320000px;}
.y104{bottom:131.220000px;}
.y92{bottom:132.660000px;}
.y29{bottom:134.820000px;}
.y187{bottom:135.720000px;}
.y13d{bottom:136.440000px;}
.yfe{bottom:140.220000px;}
.yc0{bottom:144.360000px;}
.y54{bottom:146.880000px;}
.y46{bottom:147.240000px;}
.y162{bottom:150.480000px;}
.y186{bottom:153.720000px;}
.y13c{bottom:154.260000px;}
.y148{bottom:156.780000px;}
.y103{bottom:157.680000px;}
.yfd{bottom:158.040000px;}
.y28{bottom:158.610000px;}
.y91{bottom:159.480000px;}
.ybf{bottom:162.180000px;}
.y45{bottom:165.060000px;}
.y161{bottom:168.300000px;}
.y185{bottom:171.540000px;}
.y13b{bottom:172.080000px;}
.y53{bottom:174.060000px;}
.yfc{bottom:175.860000px;}
.y27{bottom:176.610000px;}
.ybe{bottom:180.000000px;}
.y44{bottom:182.880000px;}
.y147{bottom:183.600000px;}
.y102{bottom:184.860000px;}
.y90{bottom:185.940000px;}
.y160{bottom:186.120000px;}
.y184{bottom:189.360000px;}
.y52{bottom:191.880000px;}
.y26{bottom:194.430000px;}
.ybd{bottom:198.000000px;}
.y13a{bottom:198.900000px;}
.yfb{bottom:202.320000px;}
.y101{bottom:202.680000px;}
.y15f{bottom:203.940000px;}
.y183{bottom:207.210000px;}
.y43{bottom:209.730000px;}
.y25{bottom:212.250000px;}
.y146{bottom:212.430000px;}
.y8f{bottom:213.150000px;}
.y15e{bottom:221.970000px;}
.ybc{bottom:224.490000px;}
.yfa{bottom:224.850000px;}
.y182{bottom:225.030000px;}
.y139{bottom:225.930000px;}
.y42{bottom:227.550000px;}
.y24{bottom:230.070000px;}
.y8e{bottom:230.970000px;}
.yf8{bottom:236.385000px;}
.y15d{bottom:239.790000px;}
.y181{bottom:243.030000px;}
.y138{bottom:243.750000px;}
.y41{bottom:245.370000px;}
.y23{bottom:247.890000px;}
.y8d{bottom:248.970000px;}
.ybb{bottom:251.670000px;}
.y15c{bottom:257.610000px;}
.y180{bottom:260.850000px;}
.y137{bottom:261.570000px;}
.y40{bottom:263.370000px;}
.y22{bottom:265.890000px;}
.y8c{bottom:266.790000px;}
.yba{bottom:269.490000px;}
.y15b{bottom:275.430000px;}
.yf7{bottom:277.245000px;}
.y17f{bottom:278.670000px;}
.y136{bottom:279.390000px;}
.y3f{bottom:281.190000px;}
.y8b{bottom:284.610000px;}
.yb9{bottom:287.310000px;}
.y21{bottom:289.650000px;}
.y15a{bottom:293.250000px;}
.y17e{bottom:296.490000px;}
.y135{bottom:297.210000px;}
.y3e{bottom:299.010000px;}
.y8a{bottom:302.430000px;}
.yb8{bottom:305.130000px;}
.y20{bottom:307.470000px;}
.y159{bottom:311.070000px;}
.y17d{bottom:314.310000px;}
.y134{bottom:315.030000px;}
.y3d{bottom:316.830000px;}
.yf4{bottom:318.105000px;}
.y89{bottom:320.250000px;}
.yb7{bottom:323.130000px;}
.y1f{bottom:325.290000px;}
.y51{bottom:325.830000px;}
.y16{bottom:327.990000px;}
.y158{bottom:329.070000px;}
.y17c{bottom:332.130000px;}
.y133{bottom:333.030000px;}
.y3c{bottom:334.650000px;}
.y88{bottom:338.070000px;}
.yb6{bottom:340.950000px;}
.y1e{bottom:343.110000px;}
.y50{bottom:343.650000px;}
.y157{bottom:346.890000px;}
.y17b{bottom:350.130000px;}
.y15{bottom:350.850000px;}
.y3b{bottom:352.650000px;}
.y87{bottom:356.070000px;}
.y1d{bottom:361.110000px;}
.y4f{bottom:361.650000px;}
.y156{bottom:364.710000px;}
.yb5{bottom:367.770000px;}
.y17a{bottom:367.950000px;}
.y132{bottom:368.670000px;}
.y3a{bottom:370.470000px;}
.y14{bottom:373.755000px;}
.y86{bottom:373.890000px;}
.yef{bottom:374.445000px;}
.y1c{bottom:378.975000px;}
.y4e{bottom:379.470000px;}
.y155{bottom:382.530000px;}
.yb4{bottom:385.590000px;}
.y179{bottom:385.770000px;}
.y131{bottom:386.490000px;}
.y39{bottom:388.290000px;}
.y85{bottom:391.710000px;}
.y145{bottom:395.490000px;}
.y13{bottom:396.255000px;}
.y4d{bottom:397.290000px;}
.y154{bottom:400.350000px;}
.y1b{bottom:402.735000px;}
.yb3{bottom:403.410000px;}
.y178{bottom:403.590000px;}
.y38{bottom:406.110000px;}
.y84{bottom:409.530000px;}
.y130{bottom:413.310000px;}
.y4c{bottom:415.110000px;}
.yeb{bottom:415.125000px;}
.y153{bottom:418.350000px;}
.y12{bottom:419.115000px;}
.y1a{bottom:420.735000px;}
.yb2{bottom:421.410000px;}
.y37{bottom:423.930000px;}
.y83{bottom:427.350000px;}
.y12f{bottom:431.310000px;}
.y4b{bottom:432.930000px;}
.y19{bottom:438.555000px;}
.yb1{bottom:439.230000px;}
.y177{bottom:439.410000px;}
.y36{bottom:441.795000px;}
.y11{bottom:442.155000px;}
.y152{bottom:445.215000px;}
.y82{bottom:445.395000px;}
.y12e{bottom:449.175000px;}
.y4a{bottom:450.795000px;}
.y10{bottom:455.835000px;}
.ye9{bottom:456.015000px;}
.y18{bottom:456.375000px;}
.yb0{bottom:457.095000px;}
.y176{bottom:457.275000px;}
.y151{bottom:463.035000px;}
.y81{bottom:463.215000px;}
.y35{bottom:463.575000px;}
.y12d{bottom:466.995000px;}
.y34{bottom:468.975000px;}
.y17{bottom:474.195000px;}
.yaf{bottom:474.915000px;}
.y175{bottom:475.095000px;}
.yf{bottom:478.515000px;}
.y80{bottom:481.035000px;}
.y12c{bottom:484.815000px;}
.y150{bottom:489.495000px;}
.ye8{bottom:492.015000px;}
.ye{bottom:492.375000px;}
.yae{bottom:492.735000px;}
.y174{bottom:492.915000px;}
.y144{bottom:493.455000px;}
.y31{bottom:495.255000px;}
.y7f{bottom:498.855000px;}
.y12b{bottom:502.635000px;}
.yad{bottom:510.555000px;}
.y173{bottom:510.735000px;}
.y7e{bottom:516.675000px;}
.y143{bottom:520.635000px;}
.ye7{bottom:528.195000px;}
.yac{bottom:528.555000px;}
.y12a{bottom:529.095000px;}
.y7d{bottom:534.495000px;}
.y142{bottom:538.455000px;}
.yd{bottom:538.995000px;}
.ye6{bottom:546.015000px;}
.yab{bottom:546.375000px;}
.y172{bottom:546.555000px;}
.y7c{bottom:552.495000px;}
.y129{bottom:556.455000px;}
.ye5{bottom:563.835000px;}
.yaa{bottom:564.195000px;}
.y171{bottom:564.375000px;}
.y7b{bottom:570.315000px;}
.y128{bottom:574.275000px;}
.ye4{bottom:581.655000px;}
.ya9{bottom:582.015000px;}
.y170{bottom:582.195000px;}
.y7a{bottom:588.135000px;}
.y127{bottom:592.095000px;}
.ycc{bottom:592.455000px;}
.ye3{bottom:599.655000px;}
.ya8{bottom:599.835000px;}
.y16f{bottom:600.015000px;}
.y79{bottom:605.955000px;}
.y126{bottom:609.915000px;}
.ye2{bottom:617.475000px;}
.y16e{bottom:617.835000px;}
.y78{bottom:623.775000px;}
.ya7{bottom:626.295000px;}
.y125{bottom:627.735000px;}
.y16d{bottom:635.655000px;}
.y77{bottom:641.775000px;}
.ye1{bottom:643.935000px;}
.y124{bottom:645.735000px;}
.y14f{bottom:650.775000px;}
.y16c{bottom:653.655000px;}
.ya6{bottom:655.095000px;}
.y76{bottom:659.595000px;}
.y123{bottom:663.555000px;}
.y14e{bottom:668.595000px;}
.ye0{bottom:671.115000px;}
.y16b{bottom:671.475000px;}
.y75{bottom:677.445000px;}
.y122{bottom:681.405000px;}
.ya5{bottom:686.445000px;}
.ydf{bottom:688.965000px;}
.y16a{bottom:689.325000px;}
.y141{bottom:690.405000px;}
.y74{bottom:695.265000px;}
.y121{bottom:699.225000px;}
.ya4{bottom:704.265000px;}
.y196{bottom:705.705000px;}
.yde{bottom:706.965000px;}
.y169{bottom:707.145000px;}
.y140{bottom:708.225000px;}
.y73{bottom:713.085000px;}
.y120{bottom:717.045000px;}
.ya3{bottom:722.085000px;}
.ydd{bottom:724.785000px;}
.y168{bottom:724.965000px;}
.y13f{bottom:726.045000px;}
.y72{bottom:730.905000px;}
.ya2{bottom:739.905000px;}
.ydc{bottom:742.605000px;}
.y195{bottom:746.385000px;}
.y11f{bottom:748.005000px;}
.y71{bottom:748.905000px;}
.y167{bottom:753.405000px;}
.ya1{bottom:757.905000px;}
.ydb{bottom:760.425000px;}
.y70{bottom:766.725000px;}
.y194{bottom:766.905000px;}
.ya0{bottom:775.725000px;}
.y6f{bottom:784.545000px;}
.y166{bottom:784.725000px;}
.y193{bottom:784.905000px;}
.yda{bottom:786.885000px;}
.y9f{bottom:793.545000px;}
.y14d{bottom:802.185000px;}
.y165{bottom:802.545000px;}
.y192{bottom:802.725000px;}
.y11d{bottom:803.265000px;}
.y6e{bottom:811.365000px;}
.yd9{bottom:815.685000px;}
.y9e{bottom:820.365000px;}
.y191{bottom:820.545000px;}
.ycb{bottom:829.185000px;}
.y14c{bottom:829.365000px;}
.y11a{bottom:830.805000px;}
.y6d{bottom:837.825000px;}
.y9d{bottom:838.185000px;}
.y190{bottom:838.365000px;}
.yd8{bottom:847.005000px;}
.yca{bottom:847.185000px;}
.y9c{bottom:856.185000px;}
.y118{bottom:858.525000px;}
.yd7{bottom:864.825000px;}
.yc9{bottom:865.005000px;}
.y6c{bottom:865.185000px;}
.y9b{bottom:874.005000px;}
.y18f{bottom:874.185000px;}
.yd6{bottom:882.645000px;}
.yc8{bottom:882.825000px;}
.y6b{bottom:883.005000px;}
.y117{bottom:891.465000px;}
.y9a{bottom:891.825000px;}
.y18e{bottom:892.005000px;}
.yc7{bottom:900.645000px;}
.y6a{bottom:900.825000px;}
.yd5{bottom:909.465000px;}
.y99{bottom:909.645000px;}
.y18d{bottom:909.825000px;}
.y69{bottom:918.690000px;}
.y114{bottom:921.570000px;}
.yc6{bottom:927.150000px;}
.yd4{bottom:927.330000px;}
.y98{bottom:927.510000px;}
.y18c{bottom:927.690000px;}
.y68{bottom:936.510000px;}
.y113{bottom:939.390000px;}
.y97{bottom:945.330000px;}
.y18b{bottom:945.510000px;}
.y67{bottom:954.330000px;}
.y112{bottom:957.390000px;}
.y96{bottom:963.330000px;}
.yd3{bottom:972.150000px;}
.y66{bottom:972.330000px;}
.y111{bottom:975.210000px;}
.y116{bottom:981.150000px;}
.y18a{bottom:981.330000px;}
.y95{bottom:989.790000px;}
.yd2{bottom:989.970000px;}
.y65{bottom:990.150000px;}
.y110{bottom:993.030000px;}
.y189{bottom:999.150000px;}
.y115{bottom:1007.610000px;}
.yc5{bottom:1007.970000px;}
.y10f{bottom:1010.850000px;}
.yd1{bottom:1016.790000px;}
.y64{bottom:1016.970000px;}
.yc4{bottom:1025.790000px;}
.y10e{bottom:1028.670000px;}
.y63{bottom:1034.790000px;}
.yc3{bottom:1043.610000px;}
.y10d{bottom:1046.490000px;}
.y62{bottom:1052.610000px;}
.yc2{bottom:1061.610000px;}
.yc{bottom:1063.590000px;}
.y10c{bottom:1064.490000px;}
.y61{bottom:1070.610000px;}
.yd0{bottom:1079.430000px;}
.yb{bottom:1081.770000px;}
.y10b{bottom:1082.310000px;}
.y60{bottom:1088.430000px;}
.ycf{bottom:1097.250000px;}
.y10a{bottom:1100.130000px;}
.y5f{bottom:1106.250000px;}
.ya{bottom:1108.050000px;}
.y5{bottom:1112.940000px;}
.yce{bottom:1115.070000px;}
.y109{bottom:1117.950000px;}
.y5e{bottom:1124.070000px;}
.y9{bottom:1132.350000px;}
.ycd{bottom:1132.890000px;}
.y5d{bottom:1141.890000px;}
.y108{bottom:1144.770000px;}
.y164{bottom:1150.740000px;}
.y5c{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y107{bottom:1173.240000px;}
.y163{bottom:1177.380000px;}
.y5b{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y58{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y57{bottom:1198.080000px;}
.h12{height:5.805000px;}
.h15{height:17.666016px;}
.h18{height:24.465000px;}
.h1d{height:26.820000px;}
.h1e{height:27.000000px;}
.hb{height:35.332031px;}
.h17{height:38.759766px;}
.h1a{height:39.945000px;}
.h1c{height:40.125000px;}
.h19{height:40.161000px;}
.h10{height:43.005000px;}
.h5{height:47.344922px;}
.h14{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.hd{height:48.616875px;}
.hf{height:52.998047px;}
.h13{height:54.421875px;}
.h16{height:55.503491px;}
.h1b{height:55.605000px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.he{height:60.226875px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:512.340000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.wd{width:104.250000px;}
.wa{width:152.989500px;}
.w6{width:170.668500px;}
.w9{width:191.910000px;}
.w3{width:210.133500px;}
.w8{width:211.155000px;}
.wc{width:211.875000px;}
.w7{width:224.520000px;}
.wb{width:228.120000px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x3{left:12.090000px;}
.xb{left:18.394500px;}
.x18{left:46.261500px;}
.x1{left:54.000000px;}
.x6{left:57.420000px;}
.xa{left:72.901500px;}
.x13{left:81.000000px;}
.xe{left:95.256000px;}
.x1d{left:96.706500px;}
.x14{left:108.036000px;}
.x1c{left:158.970000px;}
.x19{left:217.845000px;}
.x1e{left:250.425000px;}
.xc{left:283.755000px;}
.x9{left:297.615000px;}
.x8{left:306.795000px;}
.x17{left:312.735000px;}
.x7{left:353.235000px;}
.x21{left:434.055000px;}
.x12{left:438.195000px;}
.x1a{left:443.100000px;}
.xf{left:473.505000px;}
.x1f{left:479.460000px;}
.x15{left:500.505000px;}
.x10{left:514.725000px;}
.x16{left:527.505000px;}
.x1b{left:654.990000px;}
.x11{left:680.550000px;}
.x20{left:692.250000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-2.400000pt;}
.lsa{letter-spacing:-2.240000pt;}
.ls8{letter-spacing:-1.760000pt;}
.ls13{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.198933pt;}
.ls7{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.416000pt;}
.ls4{letter-spacing:11.680000pt;}
.ls3{letter-spacing:21.280000pt;}
.ls16{letter-spacing:22.496000pt;}
.ls10{letter-spacing:44.256000pt;}
.ls15{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsd{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.192000pt;}
.ws7{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.472000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.ws6{word-spacing:-8.480000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-2.718933pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._c{width:2.377813pt;}
._11{width:3.847680pt;}
._d{width:4.752000pt;}
._e{width:5.640960pt;}
._f{width:7.079040pt;}
._9{width:7.968000pt;}
._a{width:8.880000pt;}
._b{width:9.939840pt;}
._12{width:11.040000pt;}
._19{width:13.008000pt;}
._8{width:14.384640pt;}
._7{width:15.851520pt;}
._1f{width:17.136000pt;}
._10{width:18.432000pt;}
._25{width:19.895040pt;}
._3{width:20.870400pt;}
._15{width:21.876480pt;}
._16{width:22.907520pt;}
._18{width:24.672000pt;}
._23{width:25.624320pt;}
._31{width:26.647680pt;}
._17{width:27.744000pt;}
._1a{width:29.040000pt;}
._1e{width:30.096000pt;}
._26{width:31.712000pt;}
._1b{width:33.456000pt;}
._33{width:34.387840pt;}
._1c{width:35.328000pt;}
._21{width:36.384000pt;}
._32{width:37.344000pt;}
._30{width:38.946347pt;}
._24{width:40.896000pt;}
._13{width:41.964800pt;}
._14{width:42.856960pt;}
._22{width:44.016000pt;}
._5{width:45.526400pt;}
._4{width:47.057920pt;}
._2f{width:48.771840pt;}
._20{width:51.408000pt;}
._29{width:53.568000pt;}
._34{width:54.948480pt;}
._27{width:55.920000pt;}
._28{width:56.928000pt;}
._2b{width:62.064000pt;}
._2a{width:63.360000pt;}
._2d{width:65.712000pt;}
._2e{width:67.344000pt;}
._1d{width:71.546667pt;}
._2c{width:73.296000pt;}
._2{width:347.766293pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:2.546667pt;}
.yea{bottom:2.560000pt;}
.yf9{bottom:2.706667pt;}
.yf3{bottom:2.866667pt;}
.yee{bottom:3.026667pt;}
.y30{bottom:3.360000pt;}
.y33{bottom:4.000000pt;}
.y119{bottom:4.640000pt;}
.y11b{bottom:4.800000pt;}
.y11e{bottom:4.960000pt;}
.y11c{bottom:5.120000pt;}
.yf0{bottom:16.306667pt;}
.yec{bottom:16.466667pt;}
.yf2{bottom:16.626667pt;}
.yed{bottom:16.786667pt;}
.y32{bottom:17.920000pt;}
.y2f{bottom:18.720000pt;}
.yf5{bottom:30.226667pt;}
.yf6{bottom:30.546667pt;}
.y2e{bottom:33.920000pt;}
.y5a{bottom:52.000000pt;}
.y2d{bottom:56.320000pt;}
.y4{bottom:68.320000pt;}
.y59{bottom:68.640000pt;}
.y2c{bottom:72.160000pt;}
.y49{bottom:83.200000pt;}
.y14b{bottom:84.160000pt;}
.y106{bottom:84.800000pt;}
.y94{bottom:86.080000pt;}
.y2b{bottom:88.000000pt;}
.y56{bottom:91.040000pt;}
.y100{bottom:92.800000pt;}
.y6{bottom:93.440000pt;}
.y48{bottom:99.040000pt;}
.y14a{bottom:100.000000pt;}
.y105{bottom:100.800000pt;}
.y93{bottom:102.080000pt;}
.y2a{bottom:104.000000pt;}
.y188{bottom:104.800000pt;}
.y13e{bottom:105.440000pt;}
.y55{bottom:106.880000pt;}
.yff{bottom:108.800000pt;}
.yc1{bottom:112.480000pt;}
.y47{bottom:114.880000pt;}
.y149{bottom:115.840000pt;}
.y104{bottom:116.640000pt;}
.y92{bottom:117.920000pt;}
.y29{bottom:119.840000pt;}
.y187{bottom:120.640000pt;}
.y13d{bottom:121.280000pt;}
.yfe{bottom:124.640000pt;}
.yc0{bottom:128.320000pt;}
.y54{bottom:130.560000pt;}
.y46{bottom:130.880000pt;}
.y162{bottom:133.760000pt;}
.y186{bottom:136.640000pt;}
.y13c{bottom:137.120000pt;}
.y148{bottom:139.360000pt;}
.y103{bottom:140.160000pt;}
.yfd{bottom:140.480000pt;}
.y28{bottom:140.986667pt;}
.y91{bottom:141.760000pt;}
.ybf{bottom:144.160000pt;}
.y45{bottom:146.720000pt;}
.y161{bottom:149.600000pt;}
.y185{bottom:152.480000pt;}
.y13b{bottom:152.960000pt;}
.y53{bottom:154.720000pt;}
.yfc{bottom:156.320000pt;}
.y27{bottom:156.986667pt;}
.ybe{bottom:160.000000pt;}
.y44{bottom:162.560000pt;}
.y147{bottom:163.200000pt;}
.y102{bottom:164.320000pt;}
.y90{bottom:165.280000pt;}
.y160{bottom:165.440000pt;}
.y184{bottom:168.320000pt;}
.y52{bottom:170.560000pt;}
.y26{bottom:172.826667pt;}
.ybd{bottom:176.000000pt;}
.y13a{bottom:176.800000pt;}
.yfb{bottom:179.840000pt;}
.y101{bottom:180.160000pt;}
.y15f{bottom:181.280000pt;}
.y183{bottom:184.186667pt;}
.y43{bottom:186.426667pt;}
.y25{bottom:188.666667pt;}
.y146{bottom:188.826667pt;}
.y8f{bottom:189.466667pt;}
.y15e{bottom:197.306667pt;}
.ybc{bottom:199.546667pt;}
.yfa{bottom:199.866667pt;}
.y182{bottom:200.026667pt;}
.y139{bottom:200.826667pt;}
.y42{bottom:202.266667pt;}
.y24{bottom:204.506667pt;}
.y8e{bottom:205.306667pt;}
.yf8{bottom:210.120000pt;}
.y15d{bottom:213.146667pt;}
.y181{bottom:216.026667pt;}
.y138{bottom:216.666667pt;}
.y41{bottom:218.106667pt;}
.y23{bottom:220.346667pt;}
.y8d{bottom:221.306667pt;}
.ybb{bottom:223.706667pt;}
.y15c{bottom:228.986667pt;}
.y180{bottom:231.866667pt;}
.y137{bottom:232.506667pt;}
.y40{bottom:234.106667pt;}
.y22{bottom:236.346667pt;}
.y8c{bottom:237.146667pt;}
.yba{bottom:239.546667pt;}
.y15b{bottom:244.826667pt;}
.yf7{bottom:246.440000pt;}
.y17f{bottom:247.706667pt;}
.y136{bottom:248.346667pt;}
.y3f{bottom:249.946667pt;}
.y8b{bottom:252.986667pt;}
.yb9{bottom:255.386667pt;}
.y21{bottom:257.466667pt;}
.y15a{bottom:260.666667pt;}
.y17e{bottom:263.546667pt;}
.y135{bottom:264.186667pt;}
.y3e{bottom:265.786667pt;}
.y8a{bottom:268.826667pt;}
.yb8{bottom:271.226667pt;}
.y20{bottom:273.306667pt;}
.y159{bottom:276.506667pt;}
.y17d{bottom:279.386667pt;}
.y134{bottom:280.026667pt;}
.y3d{bottom:281.626667pt;}
.yf4{bottom:282.760000pt;}
.y89{bottom:284.666667pt;}
.yb7{bottom:287.226667pt;}
.y1f{bottom:289.146667pt;}
.y51{bottom:289.626667pt;}
.y16{bottom:291.546667pt;}
.y158{bottom:292.506667pt;}
.y17c{bottom:295.226667pt;}
.y133{bottom:296.026667pt;}
.y3c{bottom:297.466667pt;}
.y88{bottom:300.506667pt;}
.yb6{bottom:303.066667pt;}
.y1e{bottom:304.986667pt;}
.y50{bottom:305.466667pt;}
.y157{bottom:308.346667pt;}
.y17b{bottom:311.226667pt;}
.y15{bottom:311.866667pt;}
.y3b{bottom:313.466667pt;}
.y87{bottom:316.506667pt;}
.y1d{bottom:320.986667pt;}
.y4f{bottom:321.466667pt;}
.y156{bottom:324.186667pt;}
.yb5{bottom:326.906667pt;}
.y17a{bottom:327.066667pt;}
.y132{bottom:327.706667pt;}
.y3a{bottom:329.306667pt;}
.y14{bottom:332.226667pt;}
.y86{bottom:332.346667pt;}
.yef{bottom:332.840000pt;}
.y1c{bottom:336.866667pt;}
.y4e{bottom:337.306667pt;}
.y155{bottom:340.026667pt;}
.yb4{bottom:342.746667pt;}
.y179{bottom:342.906667pt;}
.y131{bottom:343.546667pt;}
.y39{bottom:345.146667pt;}
.y85{bottom:348.186667pt;}
.y145{bottom:351.546667pt;}
.y13{bottom:352.226667pt;}
.y4d{bottom:353.146667pt;}
.y154{bottom:355.866667pt;}
.y1b{bottom:357.986667pt;}
.yb3{bottom:358.586667pt;}
.y178{bottom:358.746667pt;}
.y38{bottom:360.986667pt;}
.y84{bottom:364.026667pt;}
.y130{bottom:367.386667pt;}
.y4c{bottom:368.986667pt;}
.yeb{bottom:369.000000pt;}
.y153{bottom:371.866667pt;}
.y12{bottom:372.546667pt;}
.y1a{bottom:373.986667pt;}
.yb2{bottom:374.586667pt;}
.y37{bottom:376.826667pt;}
.y83{bottom:379.866667pt;}
.y12f{bottom:383.386667pt;}
.y4b{bottom:384.826667pt;}
.y19{bottom:389.826667pt;}
.yb1{bottom:390.426667pt;}
.y177{bottom:390.586667pt;}
.y36{bottom:392.706667pt;}
.y11{bottom:393.026667pt;}
.y152{bottom:395.746667pt;}
.y82{bottom:395.906667pt;}
.y12e{bottom:399.266667pt;}
.y4a{bottom:400.706667pt;}
.y10{bottom:405.186667pt;}
.ye9{bottom:405.346667pt;}
.y18{bottom:405.666667pt;}
.yb0{bottom:406.306667pt;}
.y176{bottom:406.466667pt;}
.y151{bottom:411.586667pt;}
.y81{bottom:411.746667pt;}
.y35{bottom:412.066667pt;}
.y12d{bottom:415.106667pt;}
.y34{bottom:416.866667pt;}
.y17{bottom:421.506667pt;}
.yaf{bottom:422.146667pt;}
.y175{bottom:422.306667pt;}
.yf{bottom:425.346667pt;}
.y80{bottom:427.586667pt;}
.y12c{bottom:430.946667pt;}
.y150{bottom:435.106667pt;}
.ye8{bottom:437.346667pt;}
.ye{bottom:437.666667pt;}
.yae{bottom:437.986667pt;}
.y174{bottom:438.146667pt;}
.y144{bottom:438.626667pt;}
.y31{bottom:440.226667pt;}
.y7f{bottom:443.426667pt;}
.y12b{bottom:446.786667pt;}
.yad{bottom:453.826667pt;}
.y173{bottom:453.986667pt;}
.y7e{bottom:459.266667pt;}
.y143{bottom:462.786667pt;}
.ye7{bottom:469.506667pt;}
.yac{bottom:469.826667pt;}
.y12a{bottom:470.306667pt;}
.y7d{bottom:475.106667pt;}
.y142{bottom:478.626667pt;}
.yd{bottom:479.106667pt;}
.ye6{bottom:485.346667pt;}
.yab{bottom:485.666667pt;}
.y172{bottom:485.826667pt;}
.y7c{bottom:491.106667pt;}
.y129{bottom:494.626667pt;}
.ye5{bottom:501.186667pt;}
.yaa{bottom:501.506667pt;}
.y171{bottom:501.666667pt;}
.y7b{bottom:506.946667pt;}
.y128{bottom:510.466667pt;}
.ye4{bottom:517.026667pt;}
.ya9{bottom:517.346667pt;}
.y170{bottom:517.506667pt;}
.y7a{bottom:522.786667pt;}
.y127{bottom:526.306667pt;}
.ycc{bottom:526.626667pt;}
.ye3{bottom:533.026667pt;}
.ya8{bottom:533.186667pt;}
.y16f{bottom:533.346667pt;}
.y79{bottom:538.626667pt;}
.y126{bottom:542.146667pt;}
.ye2{bottom:548.866667pt;}
.y16e{bottom:549.186667pt;}
.y78{bottom:554.466667pt;}
.ya7{bottom:556.706667pt;}
.y125{bottom:557.986667pt;}
.y16d{bottom:565.026667pt;}
.y77{bottom:570.466667pt;}
.ye1{bottom:572.386667pt;}
.y124{bottom:573.986667pt;}
.y14f{bottom:578.466667pt;}
.y16c{bottom:581.026667pt;}
.ya6{bottom:582.306667pt;}
.y76{bottom:586.306667pt;}
.y123{bottom:589.826667pt;}
.y14e{bottom:594.306667pt;}
.ye0{bottom:596.546667pt;}
.y16b{bottom:596.866667pt;}
.y75{bottom:602.173333pt;}
.y122{bottom:605.693333pt;}
.ya5{bottom:610.173333pt;}
.ydf{bottom:612.413333pt;}
.y16a{bottom:612.733333pt;}
.y141{bottom:613.693333pt;}
.y74{bottom:618.013333pt;}
.y121{bottom:621.533333pt;}
.ya4{bottom:626.013333pt;}
.y196{bottom:627.293333pt;}
.yde{bottom:628.413333pt;}
.y169{bottom:628.573333pt;}
.y140{bottom:629.533333pt;}
.y73{bottom:633.853333pt;}
.y120{bottom:637.373333pt;}
.ya3{bottom:641.853333pt;}
.ydd{bottom:644.253333pt;}
.y168{bottom:644.413333pt;}
.y13f{bottom:645.373333pt;}
.y72{bottom:649.693333pt;}
.ya2{bottom:657.693333pt;}
.ydc{bottom:660.093333pt;}
.y195{bottom:663.453333pt;}
.y11f{bottom:664.893333pt;}
.y71{bottom:665.693333pt;}
.y167{bottom:669.693333pt;}
.ya1{bottom:673.693333pt;}
.ydb{bottom:675.933333pt;}
.y70{bottom:681.533333pt;}
.y194{bottom:681.693333pt;}
.ya0{bottom:689.533333pt;}
.y6f{bottom:697.373333pt;}
.y166{bottom:697.533333pt;}
.y193{bottom:697.693333pt;}
.yda{bottom:699.453333pt;}
.y9f{bottom:705.373333pt;}
.y14d{bottom:713.053333pt;}
.y165{bottom:713.373333pt;}
.y192{bottom:713.533333pt;}
.y11d{bottom:714.013333pt;}
.y6e{bottom:721.213333pt;}
.yd9{bottom:725.053333pt;}
.y9e{bottom:729.213333pt;}
.y191{bottom:729.373333pt;}
.ycb{bottom:737.053333pt;}
.y14c{bottom:737.213333pt;}
.y11a{bottom:738.493333pt;}
.y6d{bottom:744.733333pt;}
.y9d{bottom:745.053333pt;}
.y190{bottom:745.213333pt;}
.yd8{bottom:752.893333pt;}
.yca{bottom:753.053333pt;}
.y9c{bottom:761.053333pt;}
.y118{bottom:763.133333pt;}
.yd7{bottom:768.733333pt;}
.yc9{bottom:768.893333pt;}
.y6c{bottom:769.053333pt;}
.y9b{bottom:776.893333pt;}
.y18f{bottom:777.053333pt;}
.yd6{bottom:784.573333pt;}
.yc8{bottom:784.733333pt;}
.y6b{bottom:784.893333pt;}
.y117{bottom:792.413333pt;}
.y9a{bottom:792.733333pt;}
.y18e{bottom:792.893333pt;}
.yc7{bottom:800.573333pt;}
.y6a{bottom:800.733333pt;}
.yd5{bottom:808.413333pt;}
.y99{bottom:808.573333pt;}
.y18d{bottom:808.733333pt;}
.y69{bottom:816.613333pt;}
.y114{bottom:819.173333pt;}
.yc6{bottom:824.133333pt;}
.yd4{bottom:824.293333pt;}
.y98{bottom:824.453333pt;}
.y18c{bottom:824.613333pt;}
.y68{bottom:832.453333pt;}
.y113{bottom:835.013333pt;}
.y97{bottom:840.293333pt;}
.y18b{bottom:840.453333pt;}
.y67{bottom:848.293333pt;}
.y112{bottom:851.013333pt;}
.y96{bottom:856.293333pt;}
.yd3{bottom:864.133333pt;}
.y66{bottom:864.293333pt;}
.y111{bottom:866.853333pt;}
.y116{bottom:872.133333pt;}
.y18a{bottom:872.293333pt;}
.y95{bottom:879.813333pt;}
.yd2{bottom:879.973333pt;}
.y65{bottom:880.133333pt;}
.y110{bottom:882.693333pt;}
.y189{bottom:888.133333pt;}
.y115{bottom:895.653333pt;}
.yc5{bottom:895.973333pt;}
.y10f{bottom:898.533333pt;}
.yd1{bottom:903.813333pt;}
.y64{bottom:903.973333pt;}
.yc4{bottom:911.813333pt;}
.y10e{bottom:914.373333pt;}
.y63{bottom:919.813333pt;}
.yc3{bottom:927.653333pt;}
.y10d{bottom:930.213333pt;}
.y62{bottom:935.653333pt;}
.yc2{bottom:943.653333pt;}
.yc{bottom:945.413333pt;}
.y10c{bottom:946.213333pt;}
.y61{bottom:951.653333pt;}
.yd0{bottom:959.493333pt;}
.yb{bottom:961.573333pt;}
.y10b{bottom:962.053333pt;}
.y60{bottom:967.493333pt;}
.ycf{bottom:975.333333pt;}
.y10a{bottom:977.893333pt;}
.y5f{bottom:983.333333pt;}
.ya{bottom:984.933333pt;}
.y5{bottom:989.280000pt;}
.yce{bottom:991.173333pt;}
.y109{bottom:993.733333pt;}
.y5e{bottom:999.173333pt;}
.y9{bottom:1006.533333pt;}
.ycd{bottom:1007.013333pt;}
.y5d{bottom:1015.013333pt;}
.y108{bottom:1017.573333pt;}
.y164{bottom:1022.880000pt;}
.y5c{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y107{bottom:1042.880000pt;}
.y163{bottom:1046.560000pt;}
.y5b{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y58{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y57{bottom:1064.960000pt;}
.h12{height:5.160000pt;}
.h15{height:15.703125pt;}
.h18{height:21.746667pt;}
.h1d{height:23.840000pt;}
.h1e{height:24.000000pt;}
.hb{height:31.406250pt;}
.h17{height:34.453125pt;}
.h1a{height:35.506667pt;}
.h1c{height:35.666667pt;}
.h19{height:35.698667pt;}
.h10{height:38.226667pt;}
.h5{height:42.084375pt;}
.h14{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.hd{height:43.215000pt;}
.hf{height:47.109375pt;}
.h13{height:48.375000pt;}
.h16{height:49.336436pt;}
.h1b{height:49.426667pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.he{height:53.535000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:455.413333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.wd{width:92.666667pt;}
.wa{width:135.990667pt;}
.w6{width:151.705333pt;}
.w9{width:170.586667pt;}
.w3{width:186.785333pt;}
.w8{width:187.693333pt;}
.wc{width:188.333333pt;}
.w7{width:199.573333pt;}
.wb{width:202.773333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x3{left:10.746667pt;}
.xb{left:16.350667pt;}
.x18{left:41.121333pt;}
.x1{left:48.000000pt;}
.x6{left:51.040000pt;}
.xa{left:64.801333pt;}
.x13{left:72.000000pt;}
.xe{left:84.672000pt;}
.x1d{left:85.961333pt;}
.x14{left:96.032000pt;}
.x1c{left:141.306667pt;}
.x19{left:193.640000pt;}
.x1e{left:222.600000pt;}
.xc{left:252.226667pt;}
.x9{left:264.546667pt;}
.x8{left:272.706667pt;}
.x17{left:277.986667pt;}
.x7{left:313.986667pt;}
.x21{left:385.826667pt;}
.x12{left:389.506667pt;}
.x1a{left:393.866667pt;}
.xf{left:420.893333pt;}
.x1f{left:426.186667pt;}
.x15{left:444.893333pt;}
.x10{left:457.533333pt;}
.x16{left:468.893333pt;}
.x1b{left:582.213333pt;}
.x11{left:604.933333pt;}
.x20{left:615.333333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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