
    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_6435772c6fbdc34496d3318d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_7a8be023f21c71c3b457c45c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9bb68091f03193d1727c710b.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_84aa07e76ccb14b264231d62.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a28f8a7492e2f67459e5b085.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bf7b5eb6d2152e16fcad55c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_353997f8358f8d8434a02518.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060547;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_571cb7ba3013410f545e33e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_be990ad176e17a4705ff69c8.woff2')format("woff");}.ff9{font-family:ff9;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-9.900000px;}
.ls9{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-1.800000px;}
.ls10{letter-spacing:-0.804000px;}
.lsc{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.085200px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.292200px;}
.ls15{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.360000px;}
.ls4{letter-spacing:5.220000px;}
.lsd{letter-spacing:7.380000px;}
.ls2{letter-spacing:11.700000px;}
.ls14{letter-spacing:25.308000px;}
.ls13{letter-spacing:52.668000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.wse{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.ws8{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.980000px;}
.wsb{word-spacing:-10.905000px;}
.wsd{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.wsc{word-spacing:-9.808800px;}
.ws3{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._3{width:1.162560px;}
._9{width:2.831520px;}
._6{width:3.836160px;}
._7{width:5.616000px;}
._16{width:6.642000px;}
._b{width:7.659360px;}
._a{width:8.964000px;}
._8{width:10.422000px;}
._5{width:11.538000px;}
._d{width:15.228000px;}
._14{width:16.254000px;}
._13{width:17.550000px;}
._1e{width:18.646560px;}
._11{width:19.656000px;}
._10{width:20.952000px;}
._17{width:22.381440px;}
._c{width:24.354000px;}
._12{width:25.596000px;}
._15{width:27.288000px;}
._f{width:28.636320px;}
._e{width:29.662560px;}
._18{width:31.465440px;}
._19{width:33.156000px;}
._23{width:35.461440px;}
._1b{width:36.969120px;}
._1a{width:38.070000px;}
._1c{width:39.960000px;}
._1d{width:41.082000px;}
._22{width:45.094320px;}
._21{width:46.528560px;}
._25{width:53.028000px;}
._24{width:55.296000px;}
._20{width:77.706000px;}
._1f{width:78.732000px;}
._1{width:1625.460000px;}
._2{width:1927.132800px;}
.fc7{color:rgb(19,20,19);}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:5.205000px;}
.yd2{bottom:5.220000px;}
.ybd{bottom:5.565000px;}
.yd6{bottom:5.580000px;}
.yc3{bottom:5.745000px;}
.yd4{bottom:5.760000px;}
.y20{bottom:11.340000px;}
.y1d{bottom:14.580000px;}
.yb8{bottom:20.340000px;}
.y1f{bottom:29.160000px;}
.yf3{bottom:33.870000px;}
.yba{bottom:34.050000px;}
.yf4{bottom:34.230000px;}
.ybb{bottom:34.410000px;}
.y1c{bottom:41.400000px;}
.y4a{bottom:58.500000px;}
.y1b{bottom:59.400000px;}
.y7{bottom:76.860000px;}
.y1a{bottom:77.250000px;}
.y10b{bottom:89.640000px;}
.y106{bottom:89.820000px;}
.y86{bottom:91.800000px;}
.y38{bottom:92.160000px;}
.y19{bottom:95.070000px;}
.ycf{bottom:96.660000px;}
.y78{bottom:99.900000px;}
.y46{bottom:101.160000px;}
.y176{bottom:104.760000px;}
.y13b{bottom:104.940000px;}
.y105{bottom:107.640000px;}
.y85{bottom:109.620000px;}
.y37{bottom:110.160000px;}
.y18{bottom:112.890000px;}
.y45{bottom:119.160000px;}
.y175{bottom:121.500000px;}
.y13a{bottom:122.760000px;}
.yce{bottom:123.660000px;}
.y104{bottom:125.460000px;}
.y77{bottom:127.080000px;}
.y84{bottom:127.440000px;}
.y36{bottom:127.980000px;}
.y17{bottom:130.710000px;}
.y44{bottom:136.980000px;}
.y174{bottom:138.240000px;}
.y139{bottom:140.580000px;}
.y103{bottom:143.280000px;}
.y76{bottom:144.900000px;}
.y83{bottom:145.260000px;}
.y35{bottom:145.800000px;}
.y16{bottom:148.530000px;}
.ycd{bottom:150.840000px;}
.y43{bottom:154.800000px;}
.y173{bottom:154.980000px;}
.y102{bottom:161.100000px;}
.y34{bottom:163.620000px;}
.y15{bottom:166.530000px;}
.ycc{bottom:168.660000px;}
.y138{bottom:169.020000px;}
.y82{bottom:171.720000px;}
.y75{bottom:171.900000px;}
.y42{bottom:172.620000px;}
.y10a{bottom:178.920000px;}
.y101{bottom:179.100000px;}
.y33{bottom:181.440000px;}
.y14{bottom:184.350000px;}
.y172{bottom:188.460000px;}
.y41{bottom:190.440000px;}
.ycb{bottom:195.120000px;}
.y109{bottom:196.740000px;}
.y100{bottom:196.920000px;}
.y74{bottom:198.720000px;}
.y81{bottom:198.900000px;}
.y32{bottom:199.440000px;}
.y137{bottom:200.340000px;}
.y13{bottom:202.170000px;}
.y171{bottom:205.200000px;}
.y40{bottom:208.470000px;}
.yff{bottom:214.770000px;}
.y80{bottom:216.930000px;}
.y31{bottom:217.290000px;}
.yca{bottom:217.485000px;}
.y136{bottom:218.190000px;}
.y12{bottom:219.990000px;}
.y170{bottom:221.970000px;}
.y73{bottom:225.570000px;}
.y3f{bottom:226.290000px;}
.yfe{bottom:232.590000px;}
.y7f{bottom:234.750000px;}
.y30{bottom:235.110000px;}
.yc9{bottom:235.305000px;}
.y135{bottom:236.010000px;}
.y16f{bottom:238.710000px;}
.y108{bottom:241.590000px;}
.y3e{bottom:244.110000px;}
.y72{bottom:252.390000px;}
.y7e{bottom:252.570000px;}
.y2f{bottom:252.930000px;}
.yc8{bottom:253.305000px;}
.y134{bottom:253.830000px;}
.y16e{bottom:255.450000px;}
.y107{bottom:259.410000px;}
.yfd{bottom:261.030000px;}
.y3d{bottom:261.930000px;}
.y7d{bottom:270.390000px;}
.yc7{bottom:271.125000px;}
.y133{bottom:271.830000px;}
.y16d{bottom:272.190000px;}
.y71{bottom:279.210000px;}
.y2e{bottom:279.750000px;}
.yfc{bottom:281.385000px;}
.y7c{bottom:288.210000px;}
.y16c{bottom:288.930000px;}
.yc6{bottom:288.945000px;}
.y132{bottom:289.650000px;}
.y2d{bottom:297.570000px;}
.yfb{bottom:299.205000px;}
.y16b{bottom:305.670000px;}
.y70{bottom:306.210000px;}
.yc5{bottom:306.765000px;}
.y131{bottom:307.470000px;}
.y2c{bottom:315.570000px;}
.yfa{bottom:317.205000px;}
.y16a{bottom:322.410000px;}
.y7b{bottom:324.030000px;}
.yc4{bottom:324.585000px;}
.y130{bottom:325.290000px;}
.y6f{bottom:333.030000px;}
.y2b{bottom:333.390000px;}
.yf9{bottom:335.025000px;}
.y169{bottom:339.330000px;}
.y7a{bottom:341.850000px;}
.yc2{bottom:342.405000px;}
.y12f{bottom:343.110000px;}
.y6e{bottom:350.850000px;}
.y2a{bottom:351.210000px;}
.yf8{bottom:352.845000px;}
.y168{bottom:356.070000px;}
.yc1{bottom:360.405000px;}
.y12e{bottom:361.110000px;}
.y79{bottom:368.310000px;}
.y6d{bottom:368.670000px;}
.y29{bottom:369.030000px;}
.yf7{bottom:370.665000px;}
.y167{bottom:372.810000px;}
.ybf{bottom:378.225000px;}
.y12d{bottom:378.930000px;}
.y28{bottom:386.850000px;}
.yf6{bottom:388.485000px;}
.y166{bottom:389.550000px;}
.y6c{bottom:395.130000px;}
.ybe{bottom:396.045000px;}
.y12c{bottom:396.750000px;}
.y27{bottom:404.850000px;}
.y165{bottom:406.290000px;}
.yf5{bottom:406.305000px;}
.ybc{bottom:413.865000px;}
.y12b{bottom:414.570000px;}
.y6b{bottom:421.950000px;}
.y26{bottom:422.670000px;}
.y164{bottom:423.030000px;}
.yf2{bottom:424.305000px;}
.yb9{bottom:431.685000px;}
.y12a{bottom:432.390000px;}
.y163{bottom:439.770000px;}
.y25{bottom:440.490000px;}
.y3c{bottom:449.535000px;}
.y162{bottom:456.555000px;}
.y24{bottom:458.355000px;}
.y129{bottom:460.695000px;}
.y6a{bottom:464.475000px;}
.y3b{bottom:467.355000px;}
.yf1{bottom:471.495000px;}
.y161{bottom:473.295000px;}
.y23{bottom:476.175000px;}
.yb7{bottom:479.055000px;}
.y3a{bottom:485.175000px;}
.y160{bottom:490.035000px;}
.y128{bottom:492.195000px;}
.y22{bottom:493.995000px;}
.y39{bottom:502.995000px;}
.y15f{bottom:506.775000px;}
.y127{bottom:510.015000px;}
.yf0{bottom:519.555000px;}
.y21{bottom:522.435000px;}
.y15e{bottom:523.515000px;}
.yb6{bottom:527.115000px;}
.y126{bottom:527.835000px;}
.y15d{bottom:540.255000px;}
.yef{bottom:541.695000px;}
.y125{bottom:545.655000px;}
.yea{bottom:548.715000px;}
.y1e{bottom:548.895000px;}
.ya2{bottom:554.295000px;}
.y15c{bottom:556.995000px;}
.yee{bottom:557.715000px;}
.y124{bottom:563.475000px;}
.yb5{bottom:565.995000px;}
.ye9{bottom:566.535000px;}
.y1b1{bottom:569.955000px;}
.ya1{bottom:572.115000px;}
.y15b{bottom:573.915000px;}
.yed{bottom:575.535000px;}
.y123{bottom:581.475000px;}
.yb4{bottom:583.815000px;}
.ye8{bottom:584.355000px;}
.ya0{bottom:589.935000px;}
.y15a{bottom:590.655000px;}
.yec{bottom:593.355000px;}
.y1b0{bottom:598.935000px;}
.y122{bottom:599.295000px;}
.y11{bottom:600.015000px;}
.yb3{bottom:601.635000px;}
.ye7{bottom:602.355000px;}
.y159{bottom:607.395000px;}
.y9f{bottom:607.755000px;}
.yeb{bottom:611.355000px;}
.y193{bottom:615.675000px;}
.y121{bottom:617.115000px;}
.yb2{bottom:619.635000px;}
.y158{bottom:624.135000px;}
.y9e{bottom:625.575000px;}
.ye6{bottom:628.815000px;}
.y192{bottom:632.415000px;}
.y120{bottom:634.935000px;}
.yb1{bottom:637.455000px;}
.y157{bottom:640.875000px;}
.y191{bottom:649.155000px;}
.ye5{bottom:651.135000px;}
.y1af{bottom:651.315000px;}
.y9d{bottom:652.215000px;}
.y11f{bottom:652.755000px;}
.y156{bottom:657.615000px;}
.yb0{bottom:663.915000px;}
.y190{bottom:665.895000px;}
.y1ae{bottom:668.055000px;}
.y11e{bottom:670.575000px;}
.y155{bottom:674.355000px;}
.ye4{bottom:677.985000px;}
.y9c{bottom:679.425000px;}
.y18f{bottom:682.665000px;}
.y1ad{bottom:684.825000px;}
.y11d{bottom:688.605000px;}
.y154{bottom:691.125000px;}
.yaf{bottom:692.565000px;}
.y9b{bottom:697.245000px;}
.y18e{bottom:699.405000px;}
.y1ac{bottom:701.565000px;}
.ye3{bottom:704.805000px;}
.y11c{bottom:706.425000px;}
.y153{bottom:707.865000px;}
.y9a{bottom:715.065000px;}
.y18d{bottom:716.145000px;}
.y1ab{bottom:718.305000px;}
.yae{bottom:723.885000px;}
.y11b{bottom:724.245000px;}
.y152{bottom:724.605000px;}
.ye2{bottom:731.625000px;}
.y99{bottom:732.885000px;}
.y1aa{bottom:735.045000px;}
.y151{bottom:741.345000px;}
.yad{bottom:741.885000px;}
.y11a{bottom:742.065000px;}
.y18c{bottom:749.625000px;}
.y98{bottom:750.885000px;}
.y1a9{bottom:751.965000px;}
.y150{bottom:758.085000px;}
.ye1{bottom:758.625000px;}
.yac{bottom:759.705000px;}
.y119{bottom:759.885000px;}
.y18b{bottom:766.365000px;}
.y97{bottom:768.705000px;}
.y14f{bottom:774.825000px;}
.yab{bottom:777.525000px;}
.y118{bottom:777.885000px;}
.y18a{bottom:783.105000px;}
.ye0{bottom:785.445000px;}
.y96{bottom:786.525000px;}
.y14e{bottom:791.565000px;}
.y117{bottom:795.705000px;}
.y189{bottom:800.025000px;}
.y1a8{bottom:802.185000px;}
.yaa{bottom:803.985000px;}
.y95{bottom:804.345000px;}
.y14d{bottom:808.485000px;}
.ydf{bottom:812.265000px;}
.y188{bottom:816.765000px;}
.y1a7{bottom:818.925000px;}
.y94{bottom:822.165000px;}
.y116{bottom:822.525000px;}
.y14c{bottom:825.225000px;}
.ya9{bottom:831.165000px;}
.y187{bottom:833.505000px;}
.y1a6{bottom:835.665000px;}
.yde{bottom:839.085000px;}
.y93{bottom:839.985000px;}
.y115{bottom:840.345000px;}
.y14b{bottom:841.965000px;}
.ya8{bottom:848.985000px;}
.y186{bottom:850.245000px;}
.y1a5{bottom:852.405000px;}
.y10{bottom:856.725000px;}
.y92{bottom:857.985000px;}
.y114{bottom:858.165000px;}
.y14a{bottom:858.705000px;}
.ydd{bottom:865.905000px;}
.y5b{bottom:866.625000px;}
.ya7{bottom:866.985000px;}
.y1a4{bottom:869.145000px;}
.y149{bottom:875.445000px;}
.y113{bottom:875.985000px;}
.yf{bottom:883.545000px;}
.y185{bottom:883.725000px;}
.y91{bottom:884.445000px;}
.ya6{bottom:884.805000px;}
.y1a3{bottom:885.885000px;}
.y148{bottom:892.185000px;}
.y5a{bottom:893.625000px;}
.y112{bottom:893.985000px;}
.y69{bottom:896.865000px;}
.y184{bottom:900.465000px;}
.ya5{bottom:902.625000px;}
.y147{bottom:908.925000px;}
.y90{bottom:911.310000px;}
.y111{bottom:911.850000px;}
.y68{bottom:914.730000px;}
.ye{bottom:916.350000px;}
.y183{bottom:917.250000px;}
.y1a2{bottom:919.410000px;}
.y59{bottom:920.850000px;}
.y146{bottom:925.710000px;}
.ya4{bottom:929.130000px;}
.y110{bottom:929.670000px;}
.y67{bottom:932.550000px;}
.y182{bottom:933.990000px;}
.ydc{bottom:935.430000px;}
.y1a1{bottom:936.150000px;}
.y8f{bottom:938.490000px;}
.y58{bottom:938.670000px;}
.y145{bottom:942.450000px;}
.yd{bottom:943.170000px;}
.y10f{bottom:947.490000px;}
.y66{bottom:950.370000px;}
.y181{bottom:950.730000px;}
.y1a0{bottom:952.890000px;}
.y8e{bottom:956.310000px;}
.y57{bottom:956.490000px;}
.y144{bottom:959.190000px;}
.ydb{bottom:962.610000px;}
.yc{bottom:963.690000px;}
.y10e{bottom:965.310000px;}
.y180{bottom:967.470000px;}
.y65{bottom:968.190000px;}
.y19f{bottom:969.630000px;}
.y56{bottom:974.310000px;}
.y143{bottom:975.930000px;}
.yda{bottom:980.610000px;}
.y10d{bottom:983.310000px;}
.y17f{bottom:984.210000px;}
.y64{bottom:986.190000px;}
.y19e{bottom:986.550000px;}
.y8d{bottom:992.130000px;}
.y55{bottom:992.310000px;}
.y142{bottom:992.670000px;}
.yb{bottom:993.570000px;}
.yd9{bottom:998.430000px;}
.y17e{bottom:1000.950000px;}
.y10c{bottom:1001.130000px;}
.y19d{bottom:1003.290000px;}
.y63{bottom:1004.010000px;}
.y141{bottom:1009.410000px;}
.y8c{bottom:1009.950000px;}
.y54{bottom:1010.130000px;}
.y17d{bottom:1017.690000px;}
.y19c{bottom:1020.030000px;}
.ya{bottom:1021.470000px;}
.y62{bottom:1021.830000px;}
.yd8{bottom:1024.890000px;}
.y140{bottom:1026.150000px;}
.y8b{bottom:1027.770000px;}
.y53{bottom:1027.950000px;}
.y17c{bottom:1034.610000px;}
.y19b{bottom:1036.770000px;}
.y61{bottom:1039.650000px;}
.y13f{bottom:1043.070000px;}
.y8a{bottom:1045.590000px;}
.y52{bottom:1045.770000px;}
.yd7{bottom:1047.210000px;}
.y17b{bottom:1051.350000px;}
.y19a{bottom:1053.510000px;}
.ya3{bottom:1054.230000px;}
.y9{bottom:1056.930000px;}
.y60{bottom:1057.470000px;}
.y13e{bottom:1059.810000px;}
.y89{bottom:1063.410000px;}
.y51{bottom:1063.590000px;}
.y17a{bottom:1068.090000px;}
.y199{bottom:1070.250000px;}
.yd5{bottom:1074.030000px;}
.y5f{bottom:1075.470000px;}
.y13d{bottom:1076.550000px;}
.y50{bottom:1081.410000px;}
.y179{bottom:1084.830000px;}
.y198{bottom:1086.990000px;}
.y8{bottom:1087.350000px;}
.y5e{bottom:1093.290000px;}
.y88{bottom:1099.230000px;}
.y4f{bottom:1099.410000px;}
.yd3{bottom:1100.850000px;}
.y178{bottom:1101.570000px;}
.y197{bottom:1103.730000px;}
.y5d{bottom:1111.110000px;}
.y6{bottom:1113.270000px;}
.y4e{bottom:1117.230000px;}
.y177{bottom:1118.310000px;}
.y196{bottom:1120.470000px;}
.y13c{bottom:1121.550000px;}
.y87{bottom:1125.690000px;}
.yd1{bottom:1128.570000px;}
.y5{bottom:1132.530000px;}
.y4d{bottom:1135.050000px;}
.y195{bottom:1137.210000px;}
.y5c{bottom:1137.570000px;}
.y4{bottom:1150.920000px;}
.y4c{bottom:1152.900000px;}
.y194{bottom:1153.980000px;}
.y3{bottom:1166.220000px;}
.yd0{bottom:1170.360000px;}
.y4b{bottom:1170.720000px;}
.y2{bottom:1181.520000px;}
.y49{bottom:1183.860000px;}
.y48{bottom:1189.260000px;}
.y47{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h20{height:5.653125px;}
.h13{height:10.363359px;}
.h12{height:15.240234px;}
.h17{height:17.805000px;}
.h18{height:17.985000px;}
.h1b{height:26.805000px;}
.h1f{height:26.820000px;}
.h1c{height:26.842500px;}
.h19{height:26.850000px;}
.h1a{height:26.985000px;}
.h1d{height:27.000000px;}
.h15{height:32.925000px;}
.hb{height:35.332031px;}
.h10{height:37.705078px;}
.h11{height:40.843828px;}
.h21{height:46.461000px;}
.h16{height:46.641000px;}
.h6{height:47.344922px;}
.he{height:50.385000px;}
.h1e{height:52.971680px;}
.h7{height:52.998047px;}
.hc{height:54.421875px;}
.h22{height:55.503491px;}
.h14{height:59.092031px;}
.ha{height:60.041250px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.hf{height:72.562500px;}
.h9{height:84.898125px;}
.hd{height:241.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:101.145000px;}
.wb{width:108.036000px;}
.wf{width:121.536000px;}
.w11{width:128.190000px;}
.wd{width:134.989500px;}
.w10{width:148.521000px;}
.w8{width:156.975000px;}
.we{width:168.855000px;}
.w7{width:178.050000px;}
.w3{width:231.013500px;}
.w6{width:233.659500px;}
.w5{width:239.460000px;}
.w4{width:247.890000px;}
.wc{width:283.560000px;}
.wa{width:303.859500px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x32{left:19.980000px;}
.x28{left:28.800000px;}
.x26{left:33.645000px;}
.x47{left:34.729500px;}
.x3b{left:42.289500px;}
.x3d{left:43.590000px;}
.x41{left:45.709500px;}
.x38{left:47.190000px;}
.x2b{left:50.580000px;}
.x46{left:52.189500px;}
.x5{left:54.000000px;}
.xf{left:55.440000px;}
.x20{left:57.814500px;}
.x48{left:59.025000px;}
.x42{left:60.690000px;}
.x45{left:62.445000px;}
.x43{left:64.080000px;}
.x2a{left:66.585000px;}
.x2e{left:68.205000px;}
.x8{left:72.901500px;}
.x18{left:74.910000px;}
.x44{left:77.610000px;}
.x2c{left:78.840000px;}
.x22{left:80.848500px;}
.x29{left:82.260000px;}
.x16{left:83.340000px;}
.x14{left:87.301500px;}
.x6{left:89.676000px;}
.x21{left:92.548500px;}
.x19{left:93.628500px;}
.xa{left:95.256000px;}
.x34{left:97.185000px;}
.x1f{left:98.488500px;}
.x1c{left:101.548500px;}
.x2d{left:102.583500px;}
.x1e{left:107.850000px;}
.x23{left:111.646500px;}
.x1d{left:117.180000px;}
.x1b{left:119.730000px;}
.x36{left:122.023500px;}
.x1a{left:124.050000px;}
.x30{left:128.323500px;}
.x35{left:129.990000px;}
.x39{left:131.610000px;}
.x37{left:136.423500px;}
.x3a{left:190.290000px;}
.xd{left:225.390000px;}
.x3c{left:230.445000px;}
.x2f{left:255.630000px;}
.x1{left:259.950000px;}
.x13{left:303.195000px;}
.x12{left:308.775000px;}
.x15{left:318.315000px;}
.x2{left:320.475000px;}
.x24{left:345.315000px;}
.x3{left:353.055000px;}
.x4{left:369.795000px;}
.x3e{left:399.315000px;}
.x31{left:402.735000px;}
.xe{left:446.505000px;}
.xb{left:473.505000px;}
.x49{left:500.505000px;}
.x33{left:510.780000px;}
.xc{left:514.725000px;}
.x3f{left:520.860000px;}
.x25{left:523.380000px;}
.x4a{left:527.505000px;}
.x17{left:566.220000px;}
.x40{left:669.390000px;}
.x27{left:680.370000px;}
.x11{left:716.010000px;}
.x10{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-8.800000pt;}
.ls9{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.600000pt;}
.ls10{letter-spacing:-0.714667pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.259733pt;}
.ls15{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls4{letter-spacing:4.640000pt;}
.lsd{letter-spacing:6.560000pt;}
.ls2{letter-spacing:10.400000pt;}
.ls14{letter-spacing:22.496000pt;}
.ls13{letter-spacing:46.816000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.wse{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.ws8{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.760000pt;}
.wsb{word-spacing:-9.693333pt;}
.wsd{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.wsc{word-spacing:-8.718933pt;}
.ws3{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._3{width:1.033387pt;}
._9{width:2.516907pt;}
._6{width:3.409920pt;}
._7{width:4.992000pt;}
._16{width:5.904000pt;}
._b{width:6.808320pt;}
._a{width:7.968000pt;}
._8{width:9.264000pt;}
._5{width:10.256000pt;}
._d{width:13.536000pt;}
._14{width:14.448000pt;}
._13{width:15.600000pt;}
._1e{width:16.574720pt;}
._11{width:17.472000pt;}
._10{width:18.624000pt;}
._17{width:19.894613pt;}
._c{width:21.648000pt;}
._12{width:22.752000pt;}
._15{width:24.256000pt;}
._f{width:25.454507pt;}
._e{width:26.366720pt;}
._18{width:27.969280pt;}
._19{width:29.472000pt;}
._23{width:31.521280pt;}
._1b{width:32.861440pt;}
._1a{width:33.840000pt;}
._1c{width:35.520000pt;}
._1d{width:36.517333pt;}
._22{width:40.083840pt;}
._21{width:41.358720pt;}
._25{width:47.136000pt;}
._24{width:49.152000pt;}
._20{width:69.072000pt;}
._1f{width:69.984000pt;}
._1{width:1444.853333pt;}
._2{width:1713.006933pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:4.626667pt;}
.yd2{bottom:4.640000pt;}
.ybd{bottom:4.946667pt;}
.yd6{bottom:4.960000pt;}
.yc3{bottom:5.106667pt;}
.yd4{bottom:5.120000pt;}
.y20{bottom:10.080000pt;}
.y1d{bottom:12.960000pt;}
.yb8{bottom:18.080000pt;}
.y1f{bottom:25.920000pt;}
.yf3{bottom:30.106667pt;}
.yba{bottom:30.266667pt;}
.yf4{bottom:30.426667pt;}
.ybb{bottom:30.586667pt;}
.y1c{bottom:36.800000pt;}
.y4a{bottom:52.000000pt;}
.y1b{bottom:52.800000pt;}
.y7{bottom:68.320000pt;}
.y1a{bottom:68.666667pt;}
.y10b{bottom:79.680000pt;}
.y106{bottom:79.840000pt;}
.y86{bottom:81.600000pt;}
.y38{bottom:81.920000pt;}
.y19{bottom:84.506667pt;}
.ycf{bottom:85.920000pt;}
.y78{bottom:88.800000pt;}
.y46{bottom:89.920000pt;}
.y176{bottom:93.120000pt;}
.y13b{bottom:93.280000pt;}
.y105{bottom:95.680000pt;}
.y85{bottom:97.440000pt;}
.y37{bottom:97.920000pt;}
.y18{bottom:100.346667pt;}
.y45{bottom:105.920000pt;}
.y175{bottom:108.000000pt;}
.y13a{bottom:109.120000pt;}
.yce{bottom:109.920000pt;}
.y104{bottom:111.520000pt;}
.y77{bottom:112.960000pt;}
.y84{bottom:113.280000pt;}
.y36{bottom:113.760000pt;}
.y17{bottom:116.186667pt;}
.y44{bottom:121.760000pt;}
.y174{bottom:122.880000pt;}
.y139{bottom:124.960000pt;}
.y103{bottom:127.360000pt;}
.y76{bottom:128.800000pt;}
.y83{bottom:129.120000pt;}
.y35{bottom:129.600000pt;}
.y16{bottom:132.026667pt;}
.ycd{bottom:134.080000pt;}
.y43{bottom:137.600000pt;}
.y173{bottom:137.760000pt;}
.y102{bottom:143.200000pt;}
.y34{bottom:145.440000pt;}
.y15{bottom:148.026667pt;}
.ycc{bottom:149.920000pt;}
.y138{bottom:150.240000pt;}
.y82{bottom:152.640000pt;}
.y75{bottom:152.800000pt;}
.y42{bottom:153.440000pt;}
.y10a{bottom:159.040000pt;}
.y101{bottom:159.200000pt;}
.y33{bottom:161.280000pt;}
.y14{bottom:163.866667pt;}
.y172{bottom:167.520000pt;}
.y41{bottom:169.280000pt;}
.ycb{bottom:173.440000pt;}
.y109{bottom:174.880000pt;}
.y100{bottom:175.040000pt;}
.y74{bottom:176.640000pt;}
.y81{bottom:176.800000pt;}
.y32{bottom:177.280000pt;}
.y137{bottom:178.080000pt;}
.y13{bottom:179.706667pt;}
.y171{bottom:182.400000pt;}
.y40{bottom:185.306667pt;}
.yff{bottom:190.906667pt;}
.y80{bottom:192.826667pt;}
.y31{bottom:193.146667pt;}
.yca{bottom:193.320000pt;}
.y136{bottom:193.946667pt;}
.y12{bottom:195.546667pt;}
.y170{bottom:197.306667pt;}
.y73{bottom:200.506667pt;}
.y3f{bottom:201.146667pt;}
.yfe{bottom:206.746667pt;}
.y7f{bottom:208.666667pt;}
.y30{bottom:208.986667pt;}
.yc9{bottom:209.160000pt;}
.y135{bottom:209.786667pt;}
.y16f{bottom:212.186667pt;}
.y108{bottom:214.746667pt;}
.y3e{bottom:216.986667pt;}
.y72{bottom:224.346667pt;}
.y7e{bottom:224.506667pt;}
.y2f{bottom:224.826667pt;}
.yc8{bottom:225.160000pt;}
.y134{bottom:225.626667pt;}
.y16e{bottom:227.066667pt;}
.y107{bottom:230.586667pt;}
.yfd{bottom:232.026667pt;}
.y3d{bottom:232.826667pt;}
.y7d{bottom:240.346667pt;}
.yc7{bottom:241.000000pt;}
.y133{bottom:241.626667pt;}
.y16d{bottom:241.946667pt;}
.y71{bottom:248.186667pt;}
.y2e{bottom:248.666667pt;}
.yfc{bottom:250.120000pt;}
.y7c{bottom:256.186667pt;}
.y16c{bottom:256.826667pt;}
.yc6{bottom:256.840000pt;}
.y132{bottom:257.466667pt;}
.y2d{bottom:264.506667pt;}
.yfb{bottom:265.960000pt;}
.y16b{bottom:271.706667pt;}
.y70{bottom:272.186667pt;}
.yc5{bottom:272.680000pt;}
.y131{bottom:273.306667pt;}
.y2c{bottom:280.506667pt;}
.yfa{bottom:281.960000pt;}
.y16a{bottom:286.586667pt;}
.y7b{bottom:288.026667pt;}
.yc4{bottom:288.520000pt;}
.y130{bottom:289.146667pt;}
.y6f{bottom:296.026667pt;}
.y2b{bottom:296.346667pt;}
.yf9{bottom:297.800000pt;}
.y169{bottom:301.626667pt;}
.y7a{bottom:303.866667pt;}
.yc2{bottom:304.360000pt;}
.y12f{bottom:304.986667pt;}
.y6e{bottom:311.866667pt;}
.y2a{bottom:312.186667pt;}
.yf8{bottom:313.640000pt;}
.y168{bottom:316.506667pt;}
.yc1{bottom:320.360000pt;}
.y12e{bottom:320.986667pt;}
.y79{bottom:327.386667pt;}
.y6d{bottom:327.706667pt;}
.y29{bottom:328.026667pt;}
.yf7{bottom:329.480000pt;}
.y167{bottom:331.386667pt;}
.ybf{bottom:336.200000pt;}
.y12d{bottom:336.826667pt;}
.y28{bottom:343.866667pt;}
.yf6{bottom:345.320000pt;}
.y166{bottom:346.266667pt;}
.y6c{bottom:351.226667pt;}
.ybe{bottom:352.040000pt;}
.y12c{bottom:352.666667pt;}
.y27{bottom:359.866667pt;}
.y165{bottom:361.146667pt;}
.yf5{bottom:361.160000pt;}
.ybc{bottom:367.880000pt;}
.y12b{bottom:368.506667pt;}
.y6b{bottom:375.066667pt;}
.y26{bottom:375.706667pt;}
.y164{bottom:376.026667pt;}
.yf2{bottom:377.160000pt;}
.yb9{bottom:383.720000pt;}
.y12a{bottom:384.346667pt;}
.y163{bottom:390.906667pt;}
.y25{bottom:391.546667pt;}
.y3c{bottom:399.586667pt;}
.y162{bottom:405.826667pt;}
.y24{bottom:407.426667pt;}
.y129{bottom:409.506667pt;}
.y6a{bottom:412.866667pt;}
.y3b{bottom:415.426667pt;}
.yf1{bottom:419.106667pt;}
.y161{bottom:420.706667pt;}
.y23{bottom:423.266667pt;}
.yb7{bottom:425.826667pt;}
.y3a{bottom:431.266667pt;}
.y160{bottom:435.586667pt;}
.y128{bottom:437.506667pt;}
.y22{bottom:439.106667pt;}
.y39{bottom:447.106667pt;}
.y15f{bottom:450.466667pt;}
.y127{bottom:453.346667pt;}
.yf0{bottom:461.826667pt;}
.y21{bottom:464.386667pt;}
.y15e{bottom:465.346667pt;}
.yb6{bottom:468.546667pt;}
.y126{bottom:469.186667pt;}
.y15d{bottom:480.226667pt;}
.yef{bottom:481.506667pt;}
.y125{bottom:485.026667pt;}
.yea{bottom:487.746667pt;}
.y1e{bottom:487.906667pt;}
.ya2{bottom:492.706667pt;}
.y15c{bottom:495.106667pt;}
.yee{bottom:495.746667pt;}
.y124{bottom:500.866667pt;}
.yb5{bottom:503.106667pt;}
.ye9{bottom:503.586667pt;}
.y1b1{bottom:506.626667pt;}
.ya1{bottom:508.546667pt;}
.y15b{bottom:510.146667pt;}
.yed{bottom:511.586667pt;}
.y123{bottom:516.866667pt;}
.yb4{bottom:518.946667pt;}
.ye8{bottom:519.426667pt;}
.ya0{bottom:524.386667pt;}
.y15a{bottom:525.026667pt;}
.yec{bottom:527.426667pt;}
.y1b0{bottom:532.386667pt;}
.y122{bottom:532.706667pt;}
.y11{bottom:533.346667pt;}
.yb3{bottom:534.786667pt;}
.ye7{bottom:535.426667pt;}
.y159{bottom:539.906667pt;}
.y9f{bottom:540.226667pt;}
.yeb{bottom:543.426667pt;}
.y193{bottom:547.266667pt;}
.y121{bottom:548.546667pt;}
.yb2{bottom:550.786667pt;}
.y158{bottom:554.786667pt;}
.y9e{bottom:556.066667pt;}
.ye6{bottom:558.946667pt;}
.y192{bottom:562.146667pt;}
.y120{bottom:564.386667pt;}
.yb1{bottom:566.626667pt;}
.y157{bottom:569.666667pt;}
.y191{bottom:577.026667pt;}
.ye5{bottom:578.786667pt;}
.y1af{bottom:578.946667pt;}
.y9d{bottom:579.746667pt;}
.y11f{bottom:580.226667pt;}
.y156{bottom:584.546667pt;}
.yb0{bottom:590.146667pt;}
.y190{bottom:591.906667pt;}
.y1ae{bottom:593.826667pt;}
.y11e{bottom:596.066667pt;}
.y155{bottom:599.426667pt;}
.ye4{bottom:602.653333pt;}
.y9c{bottom:603.933333pt;}
.y18f{bottom:606.813333pt;}
.y1ad{bottom:608.733333pt;}
.y11d{bottom:612.093333pt;}
.y154{bottom:614.333333pt;}
.yaf{bottom:615.613333pt;}
.y9b{bottom:619.773333pt;}
.y18e{bottom:621.693333pt;}
.y1ac{bottom:623.613333pt;}
.ye3{bottom:626.493333pt;}
.y11c{bottom:627.933333pt;}
.y153{bottom:629.213333pt;}
.y9a{bottom:635.613333pt;}
.y18d{bottom:636.573333pt;}
.y1ab{bottom:638.493333pt;}
.yae{bottom:643.453333pt;}
.y11b{bottom:643.773333pt;}
.y152{bottom:644.093333pt;}
.ye2{bottom:650.333333pt;}
.y99{bottom:651.453333pt;}
.y1aa{bottom:653.373333pt;}
.y151{bottom:658.973333pt;}
.yad{bottom:659.453333pt;}
.y11a{bottom:659.613333pt;}
.y18c{bottom:666.333333pt;}
.y98{bottom:667.453333pt;}
.y1a9{bottom:668.413333pt;}
.y150{bottom:673.853333pt;}
.ye1{bottom:674.333333pt;}
.yac{bottom:675.293333pt;}
.y119{bottom:675.453333pt;}
.y18b{bottom:681.213333pt;}
.y97{bottom:683.293333pt;}
.y14f{bottom:688.733333pt;}
.yab{bottom:691.133333pt;}
.y118{bottom:691.453333pt;}
.y18a{bottom:696.093333pt;}
.ye0{bottom:698.173333pt;}
.y96{bottom:699.133333pt;}
.y14e{bottom:703.613333pt;}
.y117{bottom:707.293333pt;}
.y189{bottom:711.133333pt;}
.y1a8{bottom:713.053333pt;}
.yaa{bottom:714.653333pt;}
.y95{bottom:714.973333pt;}
.y14d{bottom:718.653333pt;}
.ydf{bottom:722.013333pt;}
.y188{bottom:726.013333pt;}
.y1a7{bottom:727.933333pt;}
.y94{bottom:730.813333pt;}
.y116{bottom:731.133333pt;}
.y14c{bottom:733.533333pt;}
.ya9{bottom:738.813333pt;}
.y187{bottom:740.893333pt;}
.y1a6{bottom:742.813333pt;}
.yde{bottom:745.853333pt;}
.y93{bottom:746.653333pt;}
.y115{bottom:746.973333pt;}
.y14b{bottom:748.413333pt;}
.ya8{bottom:754.653333pt;}
.y186{bottom:755.773333pt;}
.y1a5{bottom:757.693333pt;}
.y10{bottom:761.533333pt;}
.y92{bottom:762.653333pt;}
.y114{bottom:762.813333pt;}
.y14a{bottom:763.293333pt;}
.ydd{bottom:769.693333pt;}
.y5b{bottom:770.333333pt;}
.ya7{bottom:770.653333pt;}
.y1a4{bottom:772.573333pt;}
.y149{bottom:778.173333pt;}
.y113{bottom:778.653333pt;}
.yf{bottom:785.373333pt;}
.y185{bottom:785.533333pt;}
.y91{bottom:786.173333pt;}
.ya6{bottom:786.493333pt;}
.y1a3{bottom:787.453333pt;}
.y148{bottom:793.053333pt;}
.y5a{bottom:794.333333pt;}
.y112{bottom:794.653333pt;}
.y69{bottom:797.213333pt;}
.y184{bottom:800.413333pt;}
.ya5{bottom:802.333333pt;}
.y147{bottom:807.933333pt;}
.y90{bottom:810.053333pt;}
.y111{bottom:810.533333pt;}
.y68{bottom:813.093333pt;}
.ye{bottom:814.533333pt;}
.y183{bottom:815.333333pt;}
.y1a2{bottom:817.253333pt;}
.y59{bottom:818.533333pt;}
.y146{bottom:822.853333pt;}
.ya4{bottom:825.893333pt;}
.y110{bottom:826.373333pt;}
.y67{bottom:828.933333pt;}
.y182{bottom:830.213333pt;}
.ydc{bottom:831.493333pt;}
.y1a1{bottom:832.133333pt;}
.y8f{bottom:834.213333pt;}
.y58{bottom:834.373333pt;}
.y145{bottom:837.733333pt;}
.yd{bottom:838.373333pt;}
.y10f{bottom:842.213333pt;}
.y66{bottom:844.773333pt;}
.y181{bottom:845.093333pt;}
.y1a0{bottom:847.013333pt;}
.y8e{bottom:850.053333pt;}
.y57{bottom:850.213333pt;}
.y144{bottom:852.613333pt;}
.ydb{bottom:855.653333pt;}
.yc{bottom:856.613333pt;}
.y10e{bottom:858.053333pt;}
.y180{bottom:859.973333pt;}
.y65{bottom:860.613333pt;}
.y19f{bottom:861.893333pt;}
.y56{bottom:866.053333pt;}
.y143{bottom:867.493333pt;}
.yda{bottom:871.653333pt;}
.y10d{bottom:874.053333pt;}
.y17f{bottom:874.853333pt;}
.y64{bottom:876.613333pt;}
.y19e{bottom:876.933333pt;}
.y8d{bottom:881.893333pt;}
.y55{bottom:882.053333pt;}
.y142{bottom:882.373333pt;}
.yb{bottom:883.173333pt;}
.yd9{bottom:887.493333pt;}
.y17e{bottom:889.733333pt;}
.y10c{bottom:889.893333pt;}
.y19d{bottom:891.813333pt;}
.y63{bottom:892.453333pt;}
.y141{bottom:897.253333pt;}
.y8c{bottom:897.733333pt;}
.y54{bottom:897.893333pt;}
.y17d{bottom:904.613333pt;}
.y19c{bottom:906.693333pt;}
.ya{bottom:907.973333pt;}
.y62{bottom:908.293333pt;}
.yd8{bottom:911.013333pt;}
.y140{bottom:912.133333pt;}
.y8b{bottom:913.573333pt;}
.y53{bottom:913.733333pt;}
.y17c{bottom:919.653333pt;}
.y19b{bottom:921.573333pt;}
.y61{bottom:924.133333pt;}
.y13f{bottom:927.173333pt;}
.y8a{bottom:929.413333pt;}
.y52{bottom:929.573333pt;}
.yd7{bottom:930.853333pt;}
.y17b{bottom:934.533333pt;}
.y19a{bottom:936.453333pt;}
.ya3{bottom:937.093333pt;}
.y9{bottom:939.493333pt;}
.y60{bottom:939.973333pt;}
.y13e{bottom:942.053333pt;}
.y89{bottom:945.253333pt;}
.y51{bottom:945.413333pt;}
.y17a{bottom:949.413333pt;}
.y199{bottom:951.333333pt;}
.yd5{bottom:954.693333pt;}
.y5f{bottom:955.973333pt;}
.y13d{bottom:956.933333pt;}
.y50{bottom:961.253333pt;}
.y179{bottom:964.293333pt;}
.y198{bottom:966.213333pt;}
.y8{bottom:966.533333pt;}
.y5e{bottom:971.813333pt;}
.y88{bottom:977.093333pt;}
.y4f{bottom:977.253333pt;}
.yd3{bottom:978.533333pt;}
.y178{bottom:979.173333pt;}
.y197{bottom:981.093333pt;}
.y5d{bottom:987.653333pt;}
.y6{bottom:989.573333pt;}
.y4e{bottom:993.093333pt;}
.y177{bottom:994.053333pt;}
.y196{bottom:995.973333pt;}
.y13c{bottom:996.933333pt;}
.y87{bottom:1000.613333pt;}
.yd1{bottom:1003.173333pt;}
.y5{bottom:1006.693333pt;}
.y4d{bottom:1008.933333pt;}
.y195{bottom:1010.853333pt;}
.y5c{bottom:1011.173333pt;}
.y4{bottom:1023.040000pt;}
.y4c{bottom:1024.800000pt;}
.y194{bottom:1025.760000pt;}
.y3{bottom:1036.640000pt;}
.yd0{bottom:1040.320000pt;}
.y4b{bottom:1040.640000pt;}
.y2{bottom:1050.240000pt;}
.y49{bottom:1052.320000pt;}
.y48{bottom:1057.120000pt;}
.y47{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h20{height:5.025000pt;}
.h13{height:9.211875pt;}
.h12{height:13.546875pt;}
.h17{height:15.826667pt;}
.h18{height:15.986667pt;}
.h1b{height:23.826667pt;}
.h1f{height:23.840000pt;}
.h1c{height:23.860000pt;}
.h19{height:23.866667pt;}
.h1a{height:23.986667pt;}
.h1d{height:24.000000pt;}
.h15{height:29.266667pt;}
.hb{height:31.406250pt;}
.h10{height:33.515625pt;}
.h11{height:36.305625pt;}
.h21{height:41.298667pt;}
.h16{height:41.458667pt;}
.h6{height:42.084375pt;}
.he{height:44.786667pt;}
.h1e{height:47.085938pt;}
.h7{height:47.109375pt;}
.hc{height:48.375000pt;}
.h22{height:49.336436pt;}
.h14{height:52.526250pt;}
.ha{height:53.370000pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.hf{height:64.500000pt;}
.h9{height:75.465000pt;}
.hd{height:214.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:89.906667pt;}
.wb{width:96.032000pt;}
.wf{width:108.032000pt;}
.w11{width:113.946667pt;}
.wd{width:119.990667pt;}
.w10{width:132.018667pt;}
.w8{width:139.533333pt;}
.we{width:150.093333pt;}
.w7{width:158.266667pt;}
.w3{width:205.345333pt;}
.w6{width:207.697333pt;}
.w5{width:212.853333pt;}
.w4{width:220.346667pt;}
.wc{width:252.053333pt;}
.wa{width:270.097333pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x32{left:17.760000pt;}
.x28{left:25.600000pt;}
.x26{left:29.906667pt;}
.x47{left:30.870667pt;}
.x3b{left:37.590667pt;}
.x3d{left:38.746667pt;}
.x41{left:40.630667pt;}
.x38{left:41.946667pt;}
.x2b{left:44.960000pt;}
.x46{left:46.390667pt;}
.x5{left:48.000000pt;}
.xf{left:49.280000pt;}
.x20{left:51.390667pt;}
.x48{left:52.466667pt;}
.x42{left:53.946667pt;}
.x45{left:55.506667pt;}
.x43{left:56.960000pt;}
.x2a{left:59.186667pt;}
.x2e{left:60.626667pt;}
.x8{left:64.801333pt;}
.x18{left:66.586667pt;}
.x44{left:68.986667pt;}
.x2c{left:70.080000pt;}
.x22{left:71.865333pt;}
.x29{left:73.120000pt;}
.x16{left:74.080000pt;}
.x14{left:77.601333pt;}
.x6{left:79.712000pt;}
.x21{left:82.265333pt;}
.x19{left:83.225333pt;}
.xa{left:84.672000pt;}
.x34{left:86.386667pt;}
.x1f{left:87.545333pt;}
.x1c{left:90.265333pt;}
.x2d{left:91.185333pt;}
.x1e{left:95.866667pt;}
.x23{left:99.241333pt;}
.x1d{left:104.160000pt;}
.x1b{left:106.426667pt;}
.x36{left:108.465333pt;}
.x1a{left:110.266667pt;}
.x30{left:114.065333pt;}
.x35{left:115.546667pt;}
.x39{left:116.986667pt;}
.x37{left:121.265333pt;}
.x3a{left:169.146667pt;}
.xd{left:200.346667pt;}
.x3c{left:204.840000pt;}
.x2f{left:227.226667pt;}
.x1{left:231.066667pt;}
.x13{left:269.506667pt;}
.x12{left:274.466667pt;}
.x15{left:282.946667pt;}
.x2{left:284.866667pt;}
.x24{left:306.946667pt;}
.x3{left:313.826667pt;}
.x4{left:328.706667pt;}
.x3e{left:354.946667pt;}
.x31{left:357.986667pt;}
.xe{left:396.893333pt;}
.xb{left:420.893333pt;}
.x49{left:444.893333pt;}
.x33{left:454.026667pt;}
.xc{left:457.533333pt;}
.x3f{left:462.986667pt;}
.x25{left:465.226667pt;}
.x4a{left:468.893333pt;}
.x17{left:503.306667pt;}
.x40{left:595.013333pt;}
.x27{left:604.773333pt;}
.x11{left:636.453333pt;}
.x10{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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