
    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_b0dcb20e440effc0606d21a5.woff')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_eede65e4c49c61caf979ff6f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9907401c1bfab5f339c3db1f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_155c310cc31ab997fe0d7ab4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_2e6fe5f35f3be0fc2bddce45.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a73632b4dc8c74efc924529a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_34f35b70c5872dac724184e8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_1d32aeebe4179514824702db.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls4{letter-spacing:-0.852000px;}
.lsa{letter-spacing:-0.590400px;}
.ls1b{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.193200px;}
.ls9{letter-spacing:-0.132600px;}
.ls2{letter-spacing:-0.115200px;}
.lsb{letter-spacing:-0.048960px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.031680px;}
.ls18{letter-spacing:0.089280px;}
.ls5{letter-spacing:0.089400px;}
.ls6{letter-spacing:0.129600px;}
.ls1a{letter-spacing:0.132480px;}
.ls12{letter-spacing:0.132600px;}
.ls15{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.178800px;}
.ls13{letter-spacing:0.190080px;}
.ls0{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.233400px;}
.ls19{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.354000px;}
.ls8{letter-spacing:0.371400px;}
.lse{letter-spacing:23.321280px;}
.ls17{letter-spacing:23.345280px;}
.ls7{letter-spacing:69.401280px;}
.ls14{letter-spacing:69.425280px;}
.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;}
}
.ws6{word-spacing:-15.341640px;}
.ws9{word-spacing:-15.324240px;}
.wsf{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.203640px;}
.wse{word-spacing:-15.149040px;}
.wsd{word-spacing:-15.102840px;}
.ws8{word-spacing:-15.099840px;}
.ws4{word-spacing:-15.059640px;}
.wsa{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.855040px;}
.wsb{word-spacing:-14.777040px;}
.ws3{word-spacing:-14.754240px;}
.ws10{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.379840px;}
.ws1{word-spacing:-0.270000px;}
.ws0{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.523520px;}
._2{width:1.059840px;}
._5{width:3.047040px;}
._6{width:4.438080px;}
._1{width:5.895360px;}
._3{width:7.352640px;}
._c{width:8.375040px;}
._a{width:10.068480px;}
._9{width:11.592000px;}
._4{width:13.248000px;}
._7{width:16.234080px;}
._b{width:17.378400px;}
._8{width:18.480960px;}
._d{width:21.395520px;}
._e{width:23.051520px;}
._f{width:849.185760px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(43,86,129);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:4.500000px;}
.ye1{bottom:4.680000px;}
.y120{bottom:22.500000px;}
.ye0{bottom:24.660000px;}
.y153{bottom:24.690000px;}
.yf4{bottom:24.840000px;}
.y14b{bottom:24.885000px;}
.y11f{bottom:42.840000px;}
.ydf{bottom:44.820000px;}
.y152{bottom:44.850000px;}
.yf3{bottom:45.000000px;}
.y126{bottom:45.045000px;}
.y11e{bottom:62.820000px;}
.y122{bottom:64.980000px;}
.y103{bottom:65.010000px;}
.y14a{bottom:65.025000px;}
.yfe{bottom:65.160000px;}
.yf2{bottom:65.190000px;}
.y125{bottom:65.205000px;}
.y11d{bottom:82.980000px;}
.y135{bottom:85.140000px;}
.y102{bottom:85.170000px;}
.y106{bottom:85.320000px;}
.yf1{bottom:85.350000px;}
.yfd{bottom:85.365000px;}
.y11c{bottom:103.140000px;}
.y134{bottom:105.300000px;}
.y101{bottom:105.330000px;}
.y150{bottom:105.345000px;}
.y105{bottom:105.480000px;}
.yf0{bottom:105.510000px;}
.yfc{bottom:105.525000px;}
.y136{bottom:110.700000px;}
.y121{bottom:111.420000px;}
.ydd{bottom:113.220000px;}
.y52{bottom:113.580000px;}
.y15e{bottom:114.840000px;}
.y14c{bottom:119.340000px;}
.y9f{bottom:119.880000px;}
.y7a{bottom:120.420000px;}
.yc0{bottom:122.220000px;}
.y11b{bottom:123.300000px;}
.yef{bottom:125.490000px;}
.yfb{bottom:125.505000px;}
.y10e{bottom:125.670000px;}
.y197{bottom:130.860000px;}
.y51{bottom:133.740000px;}
.y15d{bottom:135.720000px;}
.y100{bottom:139.500000px;}
.y9e{bottom:141.660000px;}
.y11a{bottom:143.460000px;}
.y79{bottom:143.640000px;}
.ybf{bottom:144.000000px;}
.yee{bottom:145.650000px;}
.yfa{bottom:145.665000px;}
.y10d{bottom:145.830000px;}
.ydc{bottom:146.880000px;}
.y28{bottom:147.960000px;}
.y196{bottom:150.840000px;}
.y50{bottom:153.900000px;}
.y9d{bottom:163.440000px;}
.y119{bottom:163.620000px;}
.yed{bottom:165.810000px;}
.yf9{bottom:165.825000px;}
.y140{bottom:165.990000px;}
.y78{bottom:166.680000px;}
.ydb{bottom:168.660000px;}
.y27{bottom:169.740000px;}
.y195{bottom:171.000000px;}
.y4f{bottom:174.060000px;}
.y15c{bottom:176.760000px;}
.ybe{bottom:177.660000px;}
.y118{bottom:183.780000px;}
.y9c{bottom:185.040000px;}
.yec{bottom:185.970000px;}
.yf8{bottom:185.985000px;}
.yda{bottom:190.470000px;}
.y194{bottom:191.190000px;}
.y26{bottom:191.370000px;}
.y110{bottom:192.810000px;}
.y4e{bottom:194.250000px;}
.y15b{bottom:197.670000px;}
.ybd{bottom:199.470000px;}
.y77{bottom:200.550000px;}
.y117{bottom:203.940000px;}
.yeb{bottom:206.130000px;}
.yf7{bottom:206.145000px;}
.y9b{bottom:206.850000px;}
.y193{bottom:211.350000px;}
.yd9{bottom:212.070000px;}
.y25{bottom:213.150000px;}
.y4d{bottom:214.230000px;}
.y15a{bottom:218.550000px;}
.ybc{bottom:221.250000px;}
.y116{bottom:224.145000px;}
.y133{bottom:226.125000px;}
.yea{bottom:226.290000px;}
.yf6{bottom:226.305000px;}
.y9a{bottom:228.630000px;}
.y192{bottom:231.510000px;}
.yd8{bottom:233.850000px;}
.y4c{bottom:234.390000px;}
.y24{bottom:234.930000px;}
.y76{bottom:238.530000px;}
.ybb{bottom:242.850000px;}
.y115{bottom:244.305000px;}
.y132{bottom:246.285000px;}
.ye9{bottom:246.450000px;}
.y124{bottom:246.465000px;}
.y99{bottom:250.410000px;}
.y191{bottom:251.670000px;}
.y4b{bottom:254.550000px;}
.y23{bottom:256.710000px;}
.y75{bottom:261.750000px;}
.y114{bottom:264.285000px;}
.yba{bottom:264.630000px;}
.y131{bottom:266.445000px;}
.ye8{bottom:266.610000px;}
.yd7{bottom:267.690000px;}
.y190{bottom:271.830000px;}
.y98{bottom:272.010000px;}
.y4a{bottom:274.710000px;}
.y22{bottom:278.310000px;}
.y159{bottom:279.750000px;}
.y113{bottom:284.445000px;}
.y74{bottom:284.970000px;}
.yb9{bottom:286.410000px;}
.y130{bottom:286.605000px;}
.y10c{bottom:286.770000px;}
.ye7{bottom:286.815000px;}
.yd6{bottom:289.290000px;}
.y18f{bottom:291.990000px;}
.y127{bottom:292.890000px;}
.y49{bottom:294.870000px;}
.y21{bottom:300.090000px;}
.y158{bottom:300.630000px;}
.y112{bottom:304.605000px;}
.y12f{bottom:306.765000px;}
.ye6{bottom:306.975000px;}
.y97{bottom:307.290000px;}
.y73{bottom:308.190000px;}
.yd5{bottom:311.070000px;}
.y18e{bottom:312.150000px;}
.y48{bottom:315.030000px;}
.yff{bottom:321.510000px;}
.y20{bottom:321.870000px;}
.y111{bottom:324.765000px;}
.y12e{bottom:326.925000px;}
.ye5{bottom:326.955000px;}
.y10b{bottom:327.135000px;}
.yb8{bottom:329.970000px;}
.y96{bottom:330.330000px;}
.y72{bottom:331.230000px;}
.y18d{bottom:332.310000px;}
.yd4{bottom:332.850000px;}
.y47{bottom:335.190000px;}
.yf5{bottom:342.390000px;}
.y1f{bottom:343.650000px;}
.y10a{bottom:347.115000px;}
.y13f{bottom:347.295000px;}
.yb7{bottom:351.570000px;}
.y18c{bottom:352.290000px;}
.y95{bottom:353.550000px;}
.y71{bottom:354.450000px;}
.yd3{bottom:354.630000px;}
.y46{bottom:355.350000px;}
.y157{bottom:361.830000px;}
.y1e{bottom:365.250000px;}
.y109{bottom:367.275000px;}
.y13e{bottom:367.455000px;}
.y18b{bottom:372.450000px;}
.yb6{bottom:373.350000px;}
.y45{bottom:375.510000px;}
.yd2{bottom:376.230000px;}
.y94{bottom:376.770000px;}
.y1d{bottom:387.030000px;}
.y108{bottom:387.435000px;}
.y70{bottom:388.290000px;}
.y18a{bottom:392.610000px;}
.y44{bottom:395.670000px;}
.y93{bottom:399.810000px;}
.y156{bottom:401.070000px;}
.y149{bottom:402.150000px;}
.yb5{bottom:407.010000px;}
.y12d{bottom:407.595000px;}
.y1c{bottom:408.855000px;}
.y6f{bottom:409.935000px;}
.yd1{bottom:410.115000px;}
.y189{bottom:412.815000px;}
.y43{bottom:415.695000px;}
.y16d{bottom:423.255000px;}
.y12c{bottom:427.575000px;}
.y13d{bottom:427.755000px;}
.yb4{bottom:428.835000px;}
.y1b{bottom:430.635000px;}
.y6e{bottom:431.715000px;}
.y188{bottom:432.975000px;}
.y92{bottom:433.695000px;}
.y155{bottom:434.775000px;}
.y42{bottom:435.855000px;}
.yd0{bottom:443.775000px;}
.y12b{bottom:447.735000px;}
.y13c{bottom:447.915000px;}
.yb3{bottom:450.615000px;}
.y154{bottom:450.975000px;}
.y1a{bottom:452.235000px;}
.y187{bottom:453.135000px;}
.y41{bottom:456.015000px;}
.y16c{bottom:457.095000px;}
.y6d{bottom:465.375000px;}
.ycf{bottom:465.555000px;}
.y12a{bottom:467.895000px;}
.y13b{bottom:468.075000px;}
.y91{bottom:471.675000px;}
.yb2{bottom:472.395000px;}
.y186{bottom:473.295000px;}
.y19{bottom:474.015000px;}
.y40{bottom:476.175000px;}
.y148{bottom:483.555000px;}
.y6c{bottom:487.155000px;}
.yce{bottom:487.335000px;}
.y129{bottom:488.055000px;}
.y13a{bottom:488.235000px;}
.y16b{bottom:490.755000px;}
.y185{bottom:493.455000px;}
.yb1{bottom:493.995000px;}
.y90{bottom:494.895000px;}
.y18{bottom:495.795000px;}
.y3f{bottom:496.335000px;}
.y128{bottom:508.215000px;}
.y139{bottom:508.395000px;}
.y6b{bottom:508.935000px;}
.y184{bottom:513.615000px;}
.y141{bottom:514.515000px;}
.yb0{bottom:515.775000px;}
.y3e{bottom:516.495000px;}
.y17{bottom:517.575000px;}
.y8f{bottom:518.115000px;}
.y16a{bottom:524.415000px;}
.y6a{bottom:530.715000px;}
.y10f{bottom:533.775000px;}
.y16{bottom:539.175000px;}
.y8e{bottom:541.335000px;}
.y169{bottom:546.195000px;}
.yaf{bottom:549.615000px;}
.y3d{bottom:550.155000px;}
.ycd{bottom:552.495000px;}
.y183{bottom:553.755000px;}
.y107{bottom:554.655000px;}
.y138{bottom:555.375000px;}
.y69{bottom:564.375000px;}
.y8d{bottom:564.555000px;}
.y147{bottom:564.735000px;}
.y168{bottom:567.975000px;}
.y15{bottom:573.015000px;}
.y182{bottom:573.915000px;}
.ycc{bottom:574.275000px;}
.yae{bottom:583.275000px;}
.y3c{bottom:583.995000px;}
.ye4{bottom:584.895000px;}
.y68{bottom:586.155000px;}
.y8c{bottom:587.595000px;}
.y181{bottom:594.075000px;}
.ycb{bottom:595.875000px;}
.y167{bottom:601.635000px;}
.yad{bottom:605.055000px;}
.y3b{bottom:605.775000px;}
.y14{bottom:606.675000px;}
.y67{bottom:607.935000px;}
.y8b{bottom:610.815000px;}
.y151{bottom:613.695000px;}
.y180{bottom:614.235000px;}
.yca{bottom:617.655000px;}
.yac{bottom:626.835000px;}
.y3a{bottom:627.375000px;}
.y13{bottom:628.455000px;}
.y66{bottom:629.535000px;}
.y17f{bottom:634.425000px;}
.y166{bottom:635.505000px;}
.yc9{bottom:639.465000px;}
.y8a{bottom:644.505000px;}
.yab{bottom:648.465000px;}
.y39{bottom:649.185000px;}
.y12{bottom:650.265000px;}
.y65{bottom:651.345000px;}
.y165{bottom:651.705000px;}
.y17e{bottom:654.585000px;}
.y146{bottom:666.285000px;}
.yaa{bottom:670.245000px;}
.y38{bottom:670.965000px;}
.y11{bottom:671.865000px;}
.y64{bottom:673.125000px;}
.y17d{bottom:674.745000px;}
.y89{bottom:682.485000px;}
.ya9{bottom:692.025000px;}
.y37{bottom:692.745000px;}
.y10{bottom:693.645000px;}
.y63{bottom:694.905000px;}
.y88{bottom:705.885000px;}
.ya8{bottom:713.805000px;}
.y36{bottom:714.345000px;}
.y17c{bottom:715.065000px;}
.yf{bottom:715.425000px;}
.yc8{bottom:716.685000px;}
.y62{bottom:728.565000px;}
.y87{bottom:729.105000px;}
.y17b{bottom:735.045000px;}
.ya7{bottom:735.405000px;}
.ye{bottom:737.205000px;}
.yc7{bottom:738.465000px;}
.y35{bottom:748.185000px;}
.y164{bottom:753.225000px;}
.y17a{bottom:755.205000px;}
.ya6{bottom:757.185000px;}
.yd{bottom:758.985000px;}
.yc6{bottom:760.065000px;}
.y61{bottom:762.405000px;}
.y86{bottom:762.765000px;}
.y145{bottom:767.805000px;}
.y34{bottom:769.965000px;}
.y179{bottom:775.365000px;}
.y14f{bottom:775.545000px;}
.yc5{bottom:781.845000px;}
.y60{bottom:782.385000px;}
.y85{bottom:784.545000px;}
.ya5{bottom:791.025000px;}
.y33{bottom:791.565000px;}
.yc{bottom:792.645000px;}
.y178{bottom:795.525000px;}
.y5f{bottom:802.545000px;}
.yc4{bottom:803.625000px;}
.y84{bottom:806.325000px;}
.y32{bottom:813.345000px;}
.y163{bottom:814.245000px;}
.y177{bottom:815.685000px;}
.y123{bottom:817.305000px;}
.y5e{bottom:822.705000px;}
.ya4{bottom:824.685000px;}
.yc3{bottom:825.405000px;}
.yb{bottom:826.305000px;}
.y31{bottom:835.125000px;}
.y176{bottom:835.845000px;}
.y83{bottom:839.985000px;}
.y5d{bottom:842.865000px;}
.yc2{bottom:847.005000px;}
.y175{bottom:856.050000px;}
.y30{bottom:856.950000px;}
.ya{bottom:860.190000px;}
.y82{bottom:861.810000px;}
.y5c{bottom:863.070000px;}
.yc1{bottom:868.830000px;}
.y144{bottom:869.190000px;}
.y162{bottom:875.490000px;}
.y174{bottom:876.210000px;}
.y2f{bottom:878.550000px;}
.y5b{bottom:883.230000px;}
.ya3{bottom:890.610000px;}
.y9{bottom:893.130000px;}
.y173{bottom:896.370000px;}
.y81{bottom:899.790000px;}
.y2e{bottom:900.330000px;}
.y5a{bottom:903.390000px;}
.ya2{bottom:912.390000px;}
.y172{bottom:916.530000px;}
.y14e{bottom:917.250000px;}
.y2d{bottom:922.110000px;}
.y80{bottom:923.190000px;}
.y59{bottom:923.550000px;}
.y8{bottom:924.090000px;}
.ye2{bottom:928.230000px;}
.y199{bottom:928.590000px;}
.y143{bottom:930.390000px;}
.ya1{bottom:933.990000px;}
.y171{bottom:936.510000px;}
.y7{bottom:943.350000px;}
.y58{bottom:943.710000px;}
.y2c{bottom:943.890000px;}
.y7f{bottom:946.230000px;}
.yde{bottom:949.110000px;}
.ya0{bottom:955.770000px;}
.y170{bottom:956.670000px;}
.y104{bottom:958.290000px;}
.y198{bottom:963.690000px;}
.y57{bottom:963.870000px;}
.y7e{bottom:969.450000px;}
.y6{bottom:975.750000px;}
.y16f{bottom:976.830000px;}
.y2b{bottom:977.550000px;}
.y56{bottom:983.850000px;}
.y142{bottom:991.590000px;}
.y7d{bottom:992.670000px;}
.y16e{bottom:996.990000px;}
.y161{bottom:997.170000px;}
.y2a{bottom:999.330000px;}
.y55{bottom:1004.010000px;}
.y5{bottom:1009.050000px;}
.y160{bottom:1018.050000px;}
.y14d{bottom:1018.770000px;}
.y29{bottom:1020.930000px;}
.y54{bottom:1024.170000px;}
.y7c{bottom:1026.330000px;}
.y137{bottom:1030.830000px;}
.y15f{bottom:1038.930000px;}
.y4{bottom:1042.710000px;}
.y53{bottom:1044.330000px;}
.y7b{bottom:1064.310000px;}
.y3{bottom:1064.490000px;}
.y2{bottom:1099.260000px;}
.y1{bottom:1119.420000px;}
.h6{height:19.980000px;}
.h9{height:20.160000px;}
.h1c{height:20.196000px;}
.h12{height:40.140000px;}
.h1d{height:40.320000px;}
.h1e{height:40.356000px;}
.h5{height:60.300000px;}
.h13{height:60.480000px;}
.h19{height:60.516000px;}
.h3{height:65.010937px;}
.h1{height:65.884219px;}
.h2{height:67.824844px;}
.h4{height:68.084282px;}
.h17{height:80.460000px;}
.he{height:80.496000px;}
.h20{height:100.620000px;}
.h14{height:100.656000px;}
.h15{height:100.800000px;}
.h16{height:100.836000px;}
.h1f{height:120.960000px;}
.hb{height:120.996000px;}
.h1a{height:140.976000px;}
.h1b{height:161.130000px;}
.ha{height:181.290000px;}
.h8{height:241.770000px;}
.hf{height:261.975000px;}
.h18{height:282.090000px;}
.hd{height:340.230000px;}
.h7{height:342.435000px;}
.hc{height:402.915000px;}
.h10{height:523.695000px;}
.h11{height:523.905000px;}
.h0{height:1188.000000px;}
.w4{width:170.490000px;}
.w6{width:171.930000px;}
.w5{width:173.370000px;}
.w7{width:199.650000px;}
.w2{width:272.550000px;}
.w1{width:282.855000px;}
.w9{width:357.195000px;}
.w8{width:359.715000px;}
.w3{width:556.125000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:7.776000px;}
.x9{left:34.740000px;}
.xa{left:61.740000px;}
.x6{left:100.260000px;}
.x2{left:108.036000px;}
.x3{left:135.036000px;}
.x4{left:162.030000px;}
.xc{left:271.470000px;}
.x8{left:383.835000px;}
.xd{left:445.575000px;}
.xf{left:460.695000px;}
.xe{left:618.225000px;}
.x5{left:667.725000px;}
.xb{left:793.410000px;}
.x1{left:801.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.757333pt;}
.lsa{letter-spacing:-0.524800pt;}
.ls1b{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.171733pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls2{letter-spacing:-0.102400pt;}
.lsb{letter-spacing:-0.043520pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.028160pt;}
.ls18{letter-spacing:0.079360pt;}
.ls5{letter-spacing:0.079467pt;}
.ls6{letter-spacing:0.115200pt;}
.ls1a{letter-spacing:0.117760pt;}
.ls12{letter-spacing:0.117867pt;}
.ls15{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.158933pt;}
.ls13{letter-spacing:0.168960pt;}
.ls0{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.207467pt;}
.ls19{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.314667pt;}
.ls8{letter-spacing:0.330133pt;}
.lse{letter-spacing:20.730027pt;}
.ls17{letter-spacing:20.751360pt;}
.ls7{letter-spacing:61.690027pt;}
.ls14{letter-spacing:61.711360pt;}
.ws6{word-spacing:-13.637013pt;}
.ws9{word-spacing:-13.621547pt;}
.wsf{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.514347pt;}
.wse{word-spacing:-13.465813pt;}
.wsd{word-spacing:-13.424747pt;}
.ws8{word-spacing:-13.422080pt;}
.ws4{word-spacing:-13.386347pt;}
.wsa{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.204480pt;}
.wsb{word-spacing:-13.135147pt;}
.ws3{word-spacing:-13.114880pt;}
.ws10{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.782080pt;}
.ws1{word-spacing:-0.240000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.354240pt;}
._2{width:0.942080pt;}
._5{width:2.708480pt;}
._6{width:3.944960pt;}
._1{width:5.240320pt;}
._3{width:6.535680pt;}
._c{width:7.444480pt;}
._a{width:8.949760pt;}
._9{width:10.304000pt;}
._4{width:11.776000pt;}
._7{width:14.430293pt;}
._b{width:15.447467pt;}
._8{width:16.427520pt;}
._d{width:19.018240pt;}
._e{width:20.490240pt;}
._f{width:754.831787pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:4.000000pt;}
.ye1{bottom:4.160000pt;}
.y120{bottom:20.000000pt;}
.ye0{bottom:21.920000pt;}
.y153{bottom:21.946667pt;}
.yf4{bottom:22.080000pt;}
.y14b{bottom:22.120000pt;}
.y11f{bottom:38.080000pt;}
.ydf{bottom:39.840000pt;}
.y152{bottom:39.866667pt;}
.yf3{bottom:40.000000pt;}
.y126{bottom:40.040000pt;}
.y11e{bottom:55.840000pt;}
.y122{bottom:57.760000pt;}
.y103{bottom:57.786667pt;}
.y14a{bottom:57.800000pt;}
.yfe{bottom:57.920000pt;}
.yf2{bottom:57.946667pt;}
.y125{bottom:57.960000pt;}
.y11d{bottom:73.760000pt;}
.y135{bottom:75.680000pt;}
.y102{bottom:75.706667pt;}
.y106{bottom:75.840000pt;}
.yf1{bottom:75.866667pt;}
.yfd{bottom:75.880000pt;}
.y11c{bottom:91.680000pt;}
.y134{bottom:93.600000pt;}
.y101{bottom:93.626667pt;}
.y150{bottom:93.640000pt;}
.y105{bottom:93.760000pt;}
.yf0{bottom:93.786667pt;}
.yfc{bottom:93.800000pt;}
.y136{bottom:98.400000pt;}
.y121{bottom:99.040000pt;}
.ydd{bottom:100.640000pt;}
.y52{bottom:100.960000pt;}
.y15e{bottom:102.080000pt;}
.y14c{bottom:106.080000pt;}
.y9f{bottom:106.560000pt;}
.y7a{bottom:107.040000pt;}
.yc0{bottom:108.640000pt;}
.y11b{bottom:109.600000pt;}
.yef{bottom:111.546667pt;}
.yfb{bottom:111.560000pt;}
.y10e{bottom:111.706667pt;}
.y197{bottom:116.320000pt;}
.y51{bottom:118.880000pt;}
.y15d{bottom:120.640000pt;}
.y100{bottom:124.000000pt;}
.y9e{bottom:125.920000pt;}
.y11a{bottom:127.520000pt;}
.y79{bottom:127.680000pt;}
.ybf{bottom:128.000000pt;}
.yee{bottom:129.466667pt;}
.yfa{bottom:129.480000pt;}
.y10d{bottom:129.626667pt;}
.ydc{bottom:130.560000pt;}
.y28{bottom:131.520000pt;}
.y196{bottom:134.080000pt;}
.y50{bottom:136.800000pt;}
.y9d{bottom:145.280000pt;}
.y119{bottom:145.440000pt;}
.yed{bottom:147.386667pt;}
.yf9{bottom:147.400000pt;}
.y140{bottom:147.546667pt;}
.y78{bottom:148.160000pt;}
.ydb{bottom:149.920000pt;}
.y27{bottom:150.880000pt;}
.y195{bottom:152.000000pt;}
.y4f{bottom:154.720000pt;}
.y15c{bottom:157.120000pt;}
.ybe{bottom:157.920000pt;}
.y118{bottom:163.360000pt;}
.y9c{bottom:164.480000pt;}
.yec{bottom:165.306667pt;}
.yf8{bottom:165.320000pt;}
.yda{bottom:169.306667pt;}
.y194{bottom:169.946667pt;}
.y26{bottom:170.106667pt;}
.y110{bottom:171.386667pt;}
.y4e{bottom:172.666667pt;}
.y15b{bottom:175.706667pt;}
.ybd{bottom:177.306667pt;}
.y77{bottom:178.266667pt;}
.y117{bottom:181.280000pt;}
.yeb{bottom:183.226667pt;}
.yf7{bottom:183.240000pt;}
.y9b{bottom:183.866667pt;}
.y193{bottom:187.866667pt;}
.yd9{bottom:188.506667pt;}
.y25{bottom:189.466667pt;}
.y4d{bottom:190.426667pt;}
.y15a{bottom:194.266667pt;}
.ybc{bottom:196.666667pt;}
.y116{bottom:199.240000pt;}
.y133{bottom:201.000000pt;}
.yea{bottom:201.146667pt;}
.yf6{bottom:201.160000pt;}
.y9a{bottom:203.226667pt;}
.y192{bottom:205.786667pt;}
.yd8{bottom:207.866667pt;}
.y4c{bottom:208.346667pt;}
.y24{bottom:208.826667pt;}
.y76{bottom:212.026667pt;}
.ybb{bottom:215.866667pt;}
.y115{bottom:217.160000pt;}
.y132{bottom:218.920000pt;}
.ye9{bottom:219.066667pt;}
.y124{bottom:219.080000pt;}
.y99{bottom:222.586667pt;}
.y191{bottom:223.706667pt;}
.y4b{bottom:226.266667pt;}
.y23{bottom:228.186667pt;}
.y75{bottom:232.666667pt;}
.y114{bottom:234.920000pt;}
.yba{bottom:235.226667pt;}
.y131{bottom:236.840000pt;}
.ye8{bottom:236.986667pt;}
.yd7{bottom:237.946667pt;}
.y190{bottom:241.626667pt;}
.y98{bottom:241.786667pt;}
.y4a{bottom:244.186667pt;}
.y22{bottom:247.386667pt;}
.y159{bottom:248.666667pt;}
.y113{bottom:252.840000pt;}
.y74{bottom:253.306667pt;}
.yb9{bottom:254.586667pt;}
.y130{bottom:254.760000pt;}
.y10c{bottom:254.906667pt;}
.ye7{bottom:254.946667pt;}
.yd6{bottom:257.146667pt;}
.y18f{bottom:259.546667pt;}
.y127{bottom:260.346667pt;}
.y49{bottom:262.106667pt;}
.y21{bottom:266.746667pt;}
.y158{bottom:267.226667pt;}
.y112{bottom:270.760000pt;}
.y12f{bottom:272.680000pt;}
.ye6{bottom:272.866667pt;}
.y97{bottom:273.146667pt;}
.y73{bottom:273.946667pt;}
.yd5{bottom:276.506667pt;}
.y18e{bottom:277.466667pt;}
.y48{bottom:280.026667pt;}
.yff{bottom:285.786667pt;}
.y20{bottom:286.106667pt;}
.y111{bottom:288.680000pt;}
.y12e{bottom:290.600000pt;}
.ye5{bottom:290.626667pt;}
.y10b{bottom:290.786667pt;}
.yb8{bottom:293.306667pt;}
.y96{bottom:293.626667pt;}
.y72{bottom:294.426667pt;}
.y18d{bottom:295.386667pt;}
.yd4{bottom:295.866667pt;}
.y47{bottom:297.946667pt;}
.yf5{bottom:304.346667pt;}
.y1f{bottom:305.466667pt;}
.y10a{bottom:308.546667pt;}
.y13f{bottom:308.706667pt;}
.yb7{bottom:312.506667pt;}
.y18c{bottom:313.146667pt;}
.y95{bottom:314.266667pt;}
.y71{bottom:315.066667pt;}
.yd3{bottom:315.226667pt;}
.y46{bottom:315.866667pt;}
.y157{bottom:321.626667pt;}
.y1e{bottom:324.666667pt;}
.y109{bottom:326.466667pt;}
.y13e{bottom:326.626667pt;}
.y18b{bottom:331.066667pt;}
.yb6{bottom:331.866667pt;}
.y45{bottom:333.786667pt;}
.yd2{bottom:334.426667pt;}
.y94{bottom:334.906667pt;}
.y1d{bottom:344.026667pt;}
.y108{bottom:344.386667pt;}
.y70{bottom:345.146667pt;}
.y18a{bottom:348.986667pt;}
.y44{bottom:351.706667pt;}
.y93{bottom:355.386667pt;}
.y156{bottom:356.506667pt;}
.y149{bottom:357.466667pt;}
.yb5{bottom:361.786667pt;}
.y12d{bottom:362.306667pt;}
.y1c{bottom:363.426667pt;}
.y6f{bottom:364.386667pt;}
.yd1{bottom:364.546667pt;}
.y189{bottom:366.946667pt;}
.y43{bottom:369.506667pt;}
.y16d{bottom:376.226667pt;}
.y12c{bottom:380.066667pt;}
.y13d{bottom:380.226667pt;}
.yb4{bottom:381.186667pt;}
.y1b{bottom:382.786667pt;}
.y6e{bottom:383.746667pt;}
.y188{bottom:384.866667pt;}
.y92{bottom:385.506667pt;}
.y155{bottom:386.466667pt;}
.y42{bottom:387.426667pt;}
.yd0{bottom:394.466667pt;}
.y12b{bottom:397.986667pt;}
.y13c{bottom:398.146667pt;}
.yb3{bottom:400.546667pt;}
.y154{bottom:400.866667pt;}
.y1a{bottom:401.986667pt;}
.y187{bottom:402.786667pt;}
.y41{bottom:405.346667pt;}
.y16c{bottom:406.306667pt;}
.y6d{bottom:413.666667pt;}
.ycf{bottom:413.826667pt;}
.y12a{bottom:415.906667pt;}
.y13b{bottom:416.066667pt;}
.y91{bottom:419.266667pt;}
.yb2{bottom:419.906667pt;}
.y186{bottom:420.706667pt;}
.y19{bottom:421.346667pt;}
.y40{bottom:423.266667pt;}
.y148{bottom:429.826667pt;}
.y6c{bottom:433.026667pt;}
.yce{bottom:433.186667pt;}
.y129{bottom:433.826667pt;}
.y13a{bottom:433.986667pt;}
.y16b{bottom:436.226667pt;}
.y185{bottom:438.626667pt;}
.yb1{bottom:439.106667pt;}
.y90{bottom:439.906667pt;}
.y18{bottom:440.706667pt;}
.y3f{bottom:441.186667pt;}
.y128{bottom:451.746667pt;}
.y139{bottom:451.906667pt;}
.y6b{bottom:452.386667pt;}
.y184{bottom:456.546667pt;}
.y141{bottom:457.346667pt;}
.yb0{bottom:458.466667pt;}
.y3e{bottom:459.106667pt;}
.y17{bottom:460.066667pt;}
.y8f{bottom:460.546667pt;}
.y16a{bottom:466.146667pt;}
.y6a{bottom:471.746667pt;}
.y10f{bottom:474.466667pt;}
.y16{bottom:479.266667pt;}
.y8e{bottom:481.186667pt;}
.y169{bottom:485.506667pt;}
.yaf{bottom:488.546667pt;}
.y3d{bottom:489.026667pt;}
.ycd{bottom:491.106667pt;}
.y183{bottom:492.226667pt;}
.y107{bottom:493.026667pt;}
.y138{bottom:493.666667pt;}
.y69{bottom:501.666667pt;}
.y8d{bottom:501.826667pt;}
.y147{bottom:501.986667pt;}
.y168{bottom:504.866667pt;}
.y15{bottom:509.346667pt;}
.y182{bottom:510.146667pt;}
.ycc{bottom:510.466667pt;}
.yae{bottom:518.466667pt;}
.y3c{bottom:519.106667pt;}
.ye4{bottom:519.906667pt;}
.y68{bottom:521.026667pt;}
.y8c{bottom:522.306667pt;}
.y181{bottom:528.066667pt;}
.ycb{bottom:529.666667pt;}
.y167{bottom:534.786667pt;}
.yad{bottom:537.826667pt;}
.y3b{bottom:538.466667pt;}
.y14{bottom:539.266667pt;}
.y67{bottom:540.386667pt;}
.y8b{bottom:542.946667pt;}
.y151{bottom:545.506667pt;}
.y180{bottom:545.986667pt;}
.yca{bottom:549.026667pt;}
.yac{bottom:557.186667pt;}
.y3a{bottom:557.666667pt;}
.y13{bottom:558.626667pt;}
.y66{bottom:559.586667pt;}
.y17f{bottom:563.933333pt;}
.y166{bottom:564.893333pt;}
.yc9{bottom:568.413333pt;}
.y8a{bottom:572.893333pt;}
.yab{bottom:576.413333pt;}
.y39{bottom:577.053333pt;}
.y12{bottom:578.013333pt;}
.y65{bottom:578.973333pt;}
.y165{bottom:579.293333pt;}
.y17e{bottom:581.853333pt;}
.y146{bottom:592.253333pt;}
.yaa{bottom:595.773333pt;}
.y38{bottom:596.413333pt;}
.y11{bottom:597.213333pt;}
.y64{bottom:598.333333pt;}
.y17d{bottom:599.773333pt;}
.y89{bottom:606.653333pt;}
.ya9{bottom:615.133333pt;}
.y37{bottom:615.773333pt;}
.y10{bottom:616.573333pt;}
.y63{bottom:617.693333pt;}
.y88{bottom:627.453333pt;}
.ya8{bottom:634.493333pt;}
.y36{bottom:634.973333pt;}
.y17c{bottom:635.613333pt;}
.yf{bottom:635.933333pt;}
.yc8{bottom:637.053333pt;}
.y62{bottom:647.613333pt;}
.y87{bottom:648.093333pt;}
.y17b{bottom:653.373333pt;}
.ya7{bottom:653.693333pt;}
.ye{bottom:655.293333pt;}
.yc7{bottom:656.413333pt;}
.y35{bottom:665.053333pt;}
.y164{bottom:669.533333pt;}
.y17a{bottom:671.293333pt;}
.ya6{bottom:673.053333pt;}
.yd{bottom:674.653333pt;}
.yc6{bottom:675.613333pt;}
.y61{bottom:677.693333pt;}
.y86{bottom:678.013333pt;}
.y145{bottom:682.493333pt;}
.y34{bottom:684.413333pt;}
.y179{bottom:689.213333pt;}
.y14f{bottom:689.373333pt;}
.yc5{bottom:694.973333pt;}
.y60{bottom:695.453333pt;}
.y85{bottom:697.373333pt;}
.ya5{bottom:703.133333pt;}
.y33{bottom:703.613333pt;}
.yc{bottom:704.573333pt;}
.y178{bottom:707.133333pt;}
.y5f{bottom:713.373333pt;}
.yc4{bottom:714.333333pt;}
.y84{bottom:716.733333pt;}
.y32{bottom:722.973333pt;}
.y163{bottom:723.773333pt;}
.y177{bottom:725.053333pt;}
.y123{bottom:726.493333pt;}
.y5e{bottom:731.293333pt;}
.ya4{bottom:733.053333pt;}
.yc3{bottom:733.693333pt;}
.yb{bottom:734.493333pt;}
.y31{bottom:742.333333pt;}
.y176{bottom:742.973333pt;}
.y83{bottom:746.653333pt;}
.y5d{bottom:749.213333pt;}
.yc2{bottom:752.893333pt;}
.y175{bottom:760.933333pt;}
.y30{bottom:761.733333pt;}
.ya{bottom:764.613333pt;}
.y82{bottom:766.053333pt;}
.y5c{bottom:767.173333pt;}
.yc1{bottom:772.293333pt;}
.y144{bottom:772.613333pt;}
.y162{bottom:778.213333pt;}
.y174{bottom:778.853333pt;}
.y2f{bottom:780.933333pt;}
.y5b{bottom:785.093333pt;}
.ya3{bottom:791.653333pt;}
.y9{bottom:793.893333pt;}
.y173{bottom:796.773333pt;}
.y81{bottom:799.813333pt;}
.y2e{bottom:800.293333pt;}
.y5a{bottom:803.013333pt;}
.ya2{bottom:811.013333pt;}
.y172{bottom:814.693333pt;}
.y14e{bottom:815.333333pt;}
.y2d{bottom:819.653333pt;}
.y80{bottom:820.613333pt;}
.y59{bottom:820.933333pt;}
.y8{bottom:821.413333pt;}
.ye2{bottom:825.093333pt;}
.y199{bottom:825.413333pt;}
.y143{bottom:827.013333pt;}
.ya1{bottom:830.213333pt;}
.y171{bottom:832.453333pt;}
.y7{bottom:838.533333pt;}
.y58{bottom:838.853333pt;}
.y2c{bottom:839.013333pt;}
.y7f{bottom:841.093333pt;}
.yde{bottom:843.653333pt;}
.ya0{bottom:849.573333pt;}
.y170{bottom:850.373333pt;}
.y104{bottom:851.813333pt;}
.y198{bottom:856.613333pt;}
.y57{bottom:856.773333pt;}
.y7e{bottom:861.733333pt;}
.y6{bottom:867.333333pt;}
.y16f{bottom:868.293333pt;}
.y2b{bottom:868.933333pt;}
.y56{bottom:874.533333pt;}
.y142{bottom:881.413333pt;}
.y7d{bottom:882.373333pt;}
.y16e{bottom:886.213333pt;}
.y161{bottom:886.373333pt;}
.y2a{bottom:888.293333pt;}
.y55{bottom:892.453333pt;}
.y5{bottom:896.933333pt;}
.y160{bottom:904.933333pt;}
.y14d{bottom:905.573333pt;}
.y29{bottom:907.493333pt;}
.y54{bottom:910.373333pt;}
.y7c{bottom:912.293333pt;}
.y137{bottom:916.293333pt;}
.y15f{bottom:923.493333pt;}
.y4{bottom:926.853333pt;}
.y53{bottom:928.293333pt;}
.y7b{bottom:946.053333pt;}
.y3{bottom:946.213333pt;}
.y2{bottom:977.120000pt;}
.y1{bottom:995.040000pt;}
.h6{height:17.760000pt;}
.h9{height:17.920000pt;}
.h1c{height:17.952000pt;}
.h12{height:35.680000pt;}
.h1d{height:35.840000pt;}
.h1e{height:35.872000pt;}
.h5{height:53.600000pt;}
.h13{height:53.760000pt;}
.h19{height:53.792000pt;}
.h3{height:57.787500pt;}
.h1{height:58.563750pt;}
.h2{height:60.288750pt;}
.h4{height:60.519362pt;}
.h17{height:71.520000pt;}
.he{height:71.552000pt;}
.h20{height:89.440000pt;}
.h14{height:89.472000pt;}
.h15{height:89.600000pt;}
.h16{height:89.632000pt;}
.h1f{height:107.520000pt;}
.hb{height:107.552000pt;}
.h1a{height:125.312000pt;}
.h1b{height:143.226667pt;}
.ha{height:161.146667pt;}
.h8{height:214.906667pt;}
.hf{height:232.866667pt;}
.h18{height:250.746667pt;}
.hd{height:302.426667pt;}
.h7{height:304.386667pt;}
.hc{height:358.146667pt;}
.h10{height:465.506667pt;}
.h11{height:465.693333pt;}
.h0{height:1056.000000pt;}
.w4{width:151.546667pt;}
.w6{width:152.826667pt;}
.w5{width:154.106667pt;}
.w7{width:177.466667pt;}
.w2{width:242.266667pt;}
.w1{width:251.426667pt;}
.w9{width:317.506667pt;}
.w8{width:319.746667pt;}
.w3{width:494.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.912000pt;}
.x9{left:30.880000pt;}
.xa{left:54.880000pt;}
.x6{left:89.120000pt;}
.x2{left:96.032000pt;}
.x3{left:120.032000pt;}
.x4{left:144.026667pt;}
.xc{left:241.306667pt;}
.x8{left:341.186667pt;}
.xd{left:396.066667pt;}
.xf{left:409.506667pt;}
.xe{left:549.533333pt;}
.x5{left:593.533333pt;}
.xb{left:705.253333pt;}
.x1{left:712.773333pt;}
}




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