
    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_5a0d5e4dc42e7c85813da8ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_30a187cdd40475fb9682bb48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c07d616a88dfe1467ba5b3af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_1de25d759f3e8d469847e248.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_2753c102a2874002016f2400.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a9b7a26f634bf2ab945d0348.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsa{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls13{letter-spacing:-0.457800px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls15{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.498240px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.840000px;}
.lsb{letter-spacing:3.720000px;}
.lsd{letter-spacing:12.240000px;}
.lse{letter-spacing:15.120000px;}
.ls10{letter-spacing:33.264000px;}
.lsf{letter-spacing:33.408000px;}
.ls16{letter-spacing:50.556000px;}
.lsc{letter-spacing:54.876000px;}
.ls12{letter-spacing:68.319840px;}
.ls8{letter-spacing:158.700000px;}
.ls1{letter-spacing:408.396000px;}
.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:-72.000000px;}
.wsa{word-spacing:-54.720000px;}
.wsb{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.948000px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.182000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-7.485120px;}
._e{margin-left:-4.405440px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.456960px;}
._7{width:5.216640px;}
._9{width:6.359040px;}
._a{width:8.346240px;}
._d{width:9.374400px;}
._14{width:10.584000px;}
._12{width:12.156480px;}
._13{width:13.867200px;}
._15{width:15.552000px;}
._10{width:17.020800px;}
._f{width:18.264960px;}
._11{width:20.012160px;}
._17{width:21.960000px;}
._16{width:23.472000px;}
._1a{width:24.811200px;}
._19{width:25.848000px;}
._18{width:27.288000px;}
._1c{width:28.704000px;}
._1b{width:29.808000px;}
._23{width:31.344000px;}
._b{width:33.756480px;}
._c{width:35.622720px;}
._1d{width:37.584000px;}
._1e{width:38.592000px;}
._20{width:43.200000px;}
._1f{width:44.640000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._21{width:846.456000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y4a{bottom:3.240000px;}
.yf7{bottom:3.600000px;}
.ydd{bottom:4.680000px;}
.y2e{bottom:11.880000px;}
.y146{bottom:12.960000px;}
.yfd{bottom:13.320000px;}
.yf9{bottom:13.710000px;}
.y10d{bottom:16.920000px;}
.y115{bottom:16.950000px;}
.y111{bottom:17.280000px;}
.y49{bottom:20.520000px;}
.y148{bottom:22.320000px;}
.y14c{bottom:22.680000px;}
.y154{bottom:22.710000px;}
.y113{bottom:23.400000px;}
.y131{bottom:27.360000px;}
.y145{bottom:32.040000px;}
.y10f{bottom:33.840000px;}
.y130{bottom:37.440000px;}
.y129{bottom:37.470000px;}
.y2d{bottom:37.845000px;}
.y147{bottom:41.400000px;}
.y153{bottom:41.430000px;}
.ye{bottom:43.560000px;}
.y112{bottom:43.950000px;}
.y48{bottom:55.470000px;}
.y12a{bottom:57.990000px;}
.y14b{bottom:60.510000px;}
.y2c{bottom:63.765000px;}
.yc{bottom:68.400000px;}
.y14a{bottom:79.590000px;}
.y47{bottom:81.390000px;}
.y2b{bottom:89.685000px;}
.ya{bottom:94.716000px;}
.y14f{bottom:98.310000px;}
.y2a{bottom:115.245000px;}
.y46{bottom:116.310000px;}
.y14e{bottom:117.390000px;}
.ya6{bottom:136.116000px;}
.y185{bottom:137.556000px;}
.y192{bottom:140.796000px;}
.y29{bottom:141.165000px;}
.y45{bottom:141.870000px;}
.yc1{bottom:151.230000px;}
.y55{bottom:153.030000px;}
.y8e{bottom:153.750000px;}
.y1ad{bottom:156.630000px;}
.y73{bottom:159.870000px;}
.y1f{bottom:161.310000px;}
.yf5{bottom:161.670000px;}
.yd8{bottom:166.710000px;}
.ya5{bottom:167.070000px;}
.y28{bottom:167.115000px;}
.y44{bottom:167.790000px;}
.y184{bottom:168.510000px;}
.y191{bottom:172.110000px;}
.y1c0{bottom:176.070000px;}
.y159{bottom:178.950000px;}
.yc0{bottom:182.190000px;}
.y54{bottom:183.990000px;}
.y8d{bottom:184.710000px;}
.y142{bottom:185.070000px;}
.y167{bottom:186.150000px;}
.y1ac{bottom:187.950000px;}
.y72{bottom:190.830000px;}
.yf4{bottom:192.630000px;}
.y10b{bottom:192.990000px;}
.y27{bottom:193.035000px;}
.y43{bottom:193.740000px;}
.yd7{bottom:197.715000px;}
.ya4{bottom:198.075000px;}
.y158{bottom:199.515000px;}
.y183{bottom:199.875000px;}
.y190{bottom:203.115000px;}
.ybf{bottom:213.555000px;}
.y141{bottom:216.075000px;}
.y166{bottom:217.155000px;}
.y26{bottom:218.955000px;}
.y1bf{bottom:219.315000px;}
.y42{bottom:219.660000px;}
.yf3{bottom:223.995000px;}
.y53{bottom:227.235000px;}
.y8c{bottom:227.955000px;}
.yd6{bottom:228.675000px;}
.ya3{bottom:229.035000px;}
.y182{bottom:230.835000px;}
.y157{bottom:232.275000px;}
.y71{bottom:234.075000px;}
.y10a{bottom:235.875000px;}
.y25{bottom:244.875000px;}
.y41{bottom:245.580000px;}
.y140{bottom:247.035000px;}
.y165{bottom:248.115000px;}
.y1be{bottom:250.275000px;}
.ybe{bottom:256.395000px;}
.y52{bottom:258.195000px;}
.yd5{bottom:259.635000px;}
.y156{bottom:261.795000px;}
.y70{bottom:265.035000px;}
.yf2{bottom:266.835000px;}
.y24{bottom:270.795000px;}
.y40{bottom:271.500000px;}
.ya2{bottom:272.235000px;}
.y181{bottom:273.675000px;}
.y13f{bottom:277.995000px;}
.ybd{bottom:287.355000px;}
.y51{bottom:289.155000px;}
.yd4{bottom:290.955000px;}
.y155{bottom:291.675000px;}
.y1bd{bottom:293.475000px;}
.y6f{bottom:295.995000px;}
.y23{bottom:296.400000px;}
.y164{bottom:297.075000px;}
.y3f{bottom:297.420000px;}
.yf1{bottom:297.795000px;}
.y109{bottom:298.155000px;}
.y8b{bottom:301.755000px;}
.ya1{bottom:303.195000px;}
.y180{bottom:304.995000px;}
.y152{bottom:306.075000px;}
.ybc{bottom:318.675000px;}
.y50{bottom:320.475000px;}
.y13e{bottom:321.195000px;}
.yd3{bottom:321.915000px;}
.y22{bottom:322.320000px;}
.y3e{bottom:323.025000px;}
.y1bc{bottom:324.465000px;}
.y127{bottom:325.185000px;}
.y18f{bottom:327.345000px;}
.y163{bottom:328.425000px;}
.yf0{bottom:329.145000px;}
.y8a{bottom:333.105000px;}
.ya0{bottom:334.185000px;}
.y17f{bottom:335.985000px;}
.y6e{bottom:339.225000px;}
.y21{bottom:348.240000px;}
.y3d{bottom:348.945000px;}
.ybb{bottom:349.665000px;}
.y4f{bottom:351.465000px;}
.y13d{bottom:352.185000px;}
.yd2{bottom:352.905000px;}
.y18e{bottom:358.305000px;}
.y162{bottom:359.385000px;}
.yef{bottom:360.105000px;}
.y89{bottom:364.065000px;}
.y9f{bottom:365.505000px;}
.y17e{bottom:366.945000px;}
.y1bb{bottom:367.305000px;}
.y126{bottom:368.385000px;}
.y6d{bottom:370.185000px;}
.y1ab{bottom:370.545000px;}
.y108{bottom:372.345000px;}
.y3c{bottom:374.865000px;}
.yb3{bottom:379.905000px;}
.yba{bottom:380.625000px;}
.y4e{bottom:382.425000px;}
.y13c{bottom:383.145000px;}
.yd1{bottom:383.865000px;}
.y20{bottom:385.320000px;}
.y18d{bottom:389.265000px;}
.y161{bottom:390.345000px;}
.yee{bottom:391.065000px;}
.y88{bottom:395.025000px;}
.y9e{bottom:396.465000px;}
.y17d{bottom:397.905000px;}
.y1ba{bottom:398.625000px;}
.y125{bottom:399.345000px;}
.y3b{bottom:400.785000px;}
.y6c{bottom:401.505000px;}
.y151{bottom:401.865000px;}
.y107{bottom:403.305000px;}
.yb2{bottom:411.225000px;}
.y4d{bottom:413.385000px;}
.yb9{bottom:414.465000px;}
.yd0{bottom:415.185000px;}
.y18c{bottom:420.225000px;}
.y1aa{bottom:420.585000px;}
.y160{bottom:421.305000px;}
.y3a{bottom:426.735000px;}
.y9d{bottom:427.425000px;}
.y17c{bottom:429.225000px;}
.y6b{bottom:432.465000px;}
.yed{bottom:434.265000px;}
.yb8{bottom:435.345000px;}
.y87{bottom:438.225000px;}
.y1b9{bottom:441.465000px;}
.yb1{bottom:442.185000px;}
.y124{bottom:442.545000px;}
.y4c{bottom:444.705000px;}
.y13b{bottom:445.425000px;}
.ycf{bottom:446.145000px;}
.y18b{bottom:451.590000px;}
.y1a9{bottom:451.950000px;}
.y39{bottom:452.655000px;}
.yb7{bottom:456.270000px;}
.y150{bottom:459.510000px;}
.y6a{bottom:463.470000px;}
.yec{bottom:465.270000px;}
.y86{bottom:469.230000px;}
.y9c{bottom:470.670000px;}
.y17b{bottom:472.110000px;}
.y1b8{bottom:472.470000px;}
.yb0{bottom:473.190000px;}
.y123{bottom:473.550000px;}
.y13a{bottom:476.430000px;}
.yb6{bottom:476.790000px;}
.yce{bottom:477.150000px;}
.y18a{bottom:482.550000px;}
.y1a8{bottom:482.910000px;}
.y4b{bottom:487.950000px;}
.y38{bottom:489.735000px;}
.yeb{bottom:496.230000px;}
.yb5{bottom:497.670000px;}
.y85{bottom:500.190000px;}
.y9b{bottom:501.630000px;}
.y17a{bottom:503.070000px;}
.y122{bottom:504.510000px;}
.y69{bottom:506.670000px;}
.y139{bottom:507.390000px;}
.ycd{bottom:508.110000px;}
.y15f{bottom:513.510000px;}
.y1a7{bottom:513.870000px;}
.y1b7{bottom:515.670000px;}
.yaf{bottom:516.390000px;}
.y14d{bottom:517.110000px;}
.y33{bottom:526.110000px;}
.y37{bottom:527.535000px;}
.yea{bottom:527.550000px;}
.y138{bottom:528.630000px;}
.y84{bottom:531.510000px;}
.y9a{bottom:532.590000px;}
.y179{bottom:534.390000px;}
.y121{bottom:535.830000px;}
.yb4{bottom:536.550000px;}
.y68{bottom:537.630000px;}
.ycc{bottom:539.430000px;}
.y15e{bottom:544.470000px;}
.y1a6{bottom:544.830000px;}
.y1b6{bottom:546.630000px;}
.yae{bottom:547.350000px;}
.y137{bottom:549.150000px;}
.y36{bottom:553.500000px;}
.y83{bottom:562.470000px;}
.y99{bottom:563.550000px;}
.y178{bottom:565.350000px;}
.y120{bottom:566.790000px;}
.y67{bottom:568.590000px;}
.y136{bottom:570.030000px;}
.ycb{bottom:570.390000px;}
.y15d{bottom:575.820000px;}
.y1a5{bottom:576.180000px;}
.y1e{bottom:578.340000px;}
.y135{bottom:587.340000px;}
.y35{bottom:588.420000px;}
.y1b5{bottom:589.860000px;}
.y82{bottom:593.460000px;}
.y98{bottom:594.900000px;}
.y1d{bottom:595.620000px;}
.y177{bottom:596.340000px;}
.y66{bottom:599.580000px;}
.yca{bottom:601.380000px;}
.y106{bottom:601.740000px;}
.y15c{bottom:606.780000px;}
.y1a4{bottom:607.140000px;}
.yad{bottom:609.300000px;}
.y11f{bottom:609.660000px;}
.y1c{bottom:612.180000px;}
.y34{bottom:614.340000px;}
.y134{bottom:620.460000px;}
.y81{bottom:624.420000px;}
.y1b{bottom:625.860000px;}
.y176{bottom:627.300000px;}
.y65{bottom:630.900000px;}
.yc9{bottom:632.340000px;}
.ye9{bottom:632.700000px;}
.y189{bottom:637.740000px;}
.y1a3{bottom:638.100000px;}
.yac{bottom:640.620000px;}
.y11e{bottom:640.980000px;}
.y1a{bottom:648.900000px;}
.y15b{bottom:649.620000px;}
.y149{bottom:650.700000px;}
.y133{bottom:653.940000px;}
.y80{bottom:655.380000px;}
.y175{bottom:658.620000px;}
.y64{bottom:661.860000px;}
.y19{bottom:662.580000px;}
.ye8{bottom:663.660000px;}
.y1b4{bottom:664.020000px;}
.yc8{bottom:666.180000px;}
.y97{bottom:668.700000px;}
.y1a2{bottom:669.060000px;}
.yab{bottom:671.580000px;}
.y11d{bottom:671.940000px;}
.y15a{bottom:680.940000px;}
.y18{bottom:685.980000px;}
.y7f{bottom:686.700000px;}
.y132{bottom:687.060000px;}
.y174{bottom:689.580000px;}
.y63{bottom:692.820000px;}
.ye7{bottom:694.620000px;}
.y188{bottom:700.020000px;}
.y1a1{bottom:700.380000px;}
.yaa{bottom:702.570000px;}
.y17{bottom:703.290000px;}
.y1b3{bottom:706.890000px;}
.yc7{bottom:709.410000px;}
.y96{bottom:711.930000px;}
.y11c{bottom:714.810000px;}
.y7e{bottom:717.690000px;}
.y12f{bottom:720.210000px;}
.y16{bottom:722.370000px;}
.y62{bottom:723.810000px;}
.ye6{bottom:725.610000px;}
.y105{bottom:725.970000px;}
.y187{bottom:731.010000px;}
.y1a0{bottom:731.370000px;}
.y173{bottom:732.450000px;}
.ya9{bottom:733.530000px;}
.y1b2{bottom:737.850000px;}
.yc6{bottom:740.370000px;}
.y95{bottom:742.890000px;}
.y11b{bottom:746.130000px;}
.y144{bottom:746.490000px;}
.y7d{bottom:749.010000px;}
.y15{bottom:749.730000px;}
.y61{bottom:755.130000px;}
.y104{bottom:756.930000px;}
.y186{bottom:761.970000px;}
.y19f{bottom:762.330000px;}
.y172{bottom:763.770000px;}
.ya8{bottom:764.850000px;}
.ye5{bottom:768.810000px;}
.yc5{bottom:771.330000px;}
.y94{bottom:773.850000px;}
.y11a{bottom:777.090000px;}
.y14{bottom:777.450000px;}
.y1b1{bottom:781.050000px;}
.y60{bottom:786.090000px;}
.y103{bottom:787.890000px;}
.ye4{bottom:789.690000px;}
.y7c{bottom:792.930000px;}
.y19e{bottom:793.290000px;}
.y171{bottom:794.730000px;}
.ya7{bottom:799.050000px;}
.yc4{bottom:802.290000px;}
.y13{bottom:805.170000px;}
.y12e{bottom:807.330000px;}
.y119{bottom:808.050000px;}
.y102{bottom:808.770000px;}
.ye3{bottom:810.570000px;}
.y1b0{bottom:812.010000px;}
.y93{bottom:817.050000px;}
.y7b{bottom:824.250000px;}
.y19d{bottom:824.610000px;}
.y170{bottom:825.690000px;}
.ye2{bottom:827.895000px;}
.y5f{bottom:828.975000px;}
.y101{bottom:829.695000px;}
.y12{bottom:832.575000px;}
.yc3{bottom:833.655000px;}
.y143{bottom:836.175000px;}
.y12d{bottom:840.495000px;}
.y92{bottom:848.055000px;}
.y100{bottom:849.495000px;}
.ye1{bottom:850.215000px;}
.y118{bottom:851.295000px;}
.y7a{bottom:855.255000px;}
.y19c{bottom:855.615000px;}
.y16f{bottom:856.695000px;}
.y11{bottom:860.295000px;}
.yff{bottom:864.255000px;}
.yc2{bottom:867.135000px;}
.y117{bottom:872.175000px;}
.ye0{bottom:872.535000px;}
.y12c{bottom:873.615000px;}
.y91{bottom:879.375000px;}
.yfc{bottom:884.055000px;}
.y1af{bottom:886.215000px;}
.y19b{bottom:886.575000px;}
.y10{bottom:888.015000px;}
.y5e{bottom:891.255000px;}
.y116{bottom:893.055000px;}
.ydf{bottom:894.855000px;}
.y79{bottom:898.095000px;}
.yfe{bottom:903.855000px;}
.y12b{bottom:906.735000px;}
.y90{bottom:910.335000px;}
.yf{bottom:915.375000px;}
.yde{bottom:917.175000px;}
.y19a{bottom:917.535000px;}
.y16e{bottom:918.975000px;}
.y5d{bottom:922.215000px;}
.yfb{bottom:923.295000px;}
.y78{bottom:929.415000px;}
.ydc{bottom:939.495000px;}
.y128{bottom:940.215000px;}
.y9{bottom:941.295000px;}
.yf8{bottom:943.095000px;}
.y114{bottom:943.455000px;}
.y199{bottom:948.855000px;}
.y16d{bottom:949.935000px;}
.y5c{bottom:953.205000px;}
.y8{bottom:958.605000px;}
.y77{bottom:960.405000px;}
.yfa{bottom:962.925000px;}
.y8f{bottom:972.285000px;}
.y7{bottom:972.645000px;}
.y10e{bottom:976.605000px;}
.y198{bottom:979.845000px;}
.y16c{bottom:980.925000px;}
.yf6{bottom:982.725000px;}
.y5b{bottom:984.525000px;}
.y1ae{bottom:991.365000px;}
.ydb{bottom:994.245000px;}
.y76{bottom:1003.245000px;}
.y110{bottom:1010.085000px;}
.y197{bottom:1010.805000px;}
.y16b{bottom:1012.245000px;}
.y5a{bottom:1015.485000px;}
.yda{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.y75{bottom:1034.565000px;}
.y196{bottom:1041.765000px;}
.y10c{bottom:1043.205000px;}
.y59{bottom:1046.445000px;}
.y5{bottom:1052.205000px;}
.yd9{bottom:1059.405000px;}
.y74{bottom:1065.525000px;}
.y4{bottom:1072.725000px;}
.y195{bottom:1073.085000px;}
.y16a{bottom:1074.165000px;}
.y58{bottom:1077.405000px;}
.y3{bottom:1094.010000px;}
.y194{bottom:1104.090000px;}
.y169{bottom:1105.170000px;}
.y57{bottom:1108.770000px;}
.y2{bottom:1114.530000px;}
.y1{bottom:1131.450000px;}
.y193{bottom:1138.290000px;}
.y168{bottom:1139.370000px;}
.y56{bottom:1139.730000px;}
.y32{bottom:1166.370000px;}
.y31{bottom:1180.410000px;}
.y30{bottom:1201.290000px;}
.y2f{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h12{height:18.720000px;}
.h16{height:19.080000px;}
.h17{height:19.116000px;}
.h11{height:21.600000px;}
.h10{height:21.636000px;}
.h1a{height:32.400000px;}
.h1e{height:32.436000px;}
.h1c{height:32.760000px;}
.h18{height:38.520000px;}
.h15{height:38.916000px;}
.h5{height:41.627812px;}
.hb{height:41.696016px;}
.h2{height:44.828437px;}
.h19{height:46.009688px;}
.h7{height:48.013594px;}
.h14{height:49.097812px;}
.h20{height:52.920000px;}
.h4{height:53.067656px;}
.ha{height:53.298281px;}
.h3{height:53.367188px;}
.hf{height:54.773438px;}
.h21{height:56.880000px;}
.h24{height:56.916000px;}
.h13{height:58.121719px;}
.he{height:63.175781px;}
.h1d{height:65.556000px;}
.h1b{height:65.880000px;}
.h9{height:71.512031px;}
.h1f{height:73.476000px;}
.h22{height:94.716000px;}
.h23{height:132.876000px;}
.hc{height:411.225000px;}
.hd{height:628.380000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:74.160000px;}
.w18{width:74.196000px;}
.w17{width:76.716000px;}
.w11{width:77.436000px;}
.w19{width:81.396000px;}
.w12{width:84.276000px;}
.w1b{width:90.396000px;}
.w9{width:101.196000px;}
.wd{width:101.556000px;}
.w14{width:124.992000px;}
.w1c{width:125.676000px;}
.we{width:127.152000px;}
.wa{width:128.916000px;}
.w16{width:153.075000px;}
.wb{width:181.155000px;}
.wc{width:262.185000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w10{width:403.350000px;}
.wf{width:444.060000px;}
.w8{width:481.530000px;}
.w13{width:553.530000px;}
.w15{width:679.245000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3b{left:7.560000px;}
.x9{left:8.640000px;}
.x1f{left:10.440000px;}
.x59{left:12.600000px;}
.x36{left:13.680000px;}
.x31{left:14.790000px;}
.x58{left:16.605000px;}
.x33{left:17.640000px;}
.x53{left:18.720000px;}
.x24{left:20.520000px;}
.x5b{left:22.680000px;}
.x25{left:23.796000px;}
.x55{left:24.876000px;}
.x3c{left:25.965000px;}
.x35{left:27.405000px;}
.x57{left:29.205000px;}
.x4f{left:30.240000px;}
.x34{left:31.365000px;}
.x54{left:32.796000px;}
.x2c{left:34.236000px;}
.x21{left:36.396000px;}
.x4b{left:38.556000px;}
.x4c{left:40.356000px;}
.x22{left:41.760000px;}
.x32{left:44.685000px;}
.x26{left:46.080000px;}
.x23{left:48.960000px;}
.x29{left:51.120000px;}
.x27{left:53.280000px;}
.x56{left:54.759000px;}
.x5a{left:59.439000px;}
.x43{left:72.030000px;}
.x45{left:73.479000px;}
.x2e{left:81.045000px;}
.x49{left:84.279000px;}
.x4a{left:99.039000px;}
.x7{left:106.235987px;}
.xe{left:107.315987px;}
.x3f{left:110.915987px;}
.x12{left:113.795987px;}
.xf{left:117.395987px;}
.x10{left:125.315987px;}
.xc{left:131.471987px;}
.x13{left:132.551987px;}
.x44{left:136.509000px;}
.xb{left:145.151987px;}
.x48{left:156.669000px;}
.x1b{left:160.274987px;}
.x38{left:164.955000px;}
.x3d{left:173.955000px;}
.x14{left:180.794987px;}
.x37{left:187.274987px;}
.x46{left:192.669000px;}
.x1d{left:204.234000px;}
.x11{left:212.474987px;}
.x3e{left:214.274987px;}
.x28{left:222.594000px;}
.x42{left:232.674000px;}
.x1c{left:234.824987px;}
.x40{left:242.394000px;}
.x2a{left:245.984987px;}
.x2{left:254.264987px;}
.x18{left:258.584987px;}
.x4d{left:260.745000px;}
.x47{left:267.234000px;}
.x6{left:274.064987px;}
.x2d{left:288.825000px;}
.xa{left:304.350000px;}
.x2b{left:328.469987px;}
.x4e{left:338.190000px;}
.x16{left:339.984000px;}
.x1a{left:341.069987px;}
.xd{left:359.789987px;}
.x5{left:362.669987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x50{left:413.460000px;}
.x8{left:446.579987px;}
.x15{left:447.660000px;}
.x19{left:459.899987px;}
.x51{left:495.570000px;}
.x2f{left:552.090000px;}
.x39{left:563.970000px;}
.x52{left:570.450000px;}
.x1e{left:589.215000px;}
.x3a{left:642.135000px;}
.x30{left:654.375000px;}
.x41{left:661.215000px;}
.x20{left:691.125000px;}
.x1{left:786.929987px;}
.x17{left:788.009987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls15{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.746667pt;}
.lsb{letter-spacing:3.306667pt;}
.lsd{letter-spacing:10.880000pt;}
.lse{letter-spacing:13.440000pt;}
.ls10{letter-spacing:29.568000pt;}
.lsf{letter-spacing:29.696000pt;}
.ls16{letter-spacing:44.938667pt;}
.lsc{letter-spacing:48.778667pt;}
.ls12{letter-spacing:60.728747pt;}
.ls8{letter-spacing:141.066667pt;}
.ls1{letter-spacing:363.018667pt;}
.ws6{word-spacing:-64.000000pt;}
.wsa{word-spacing:-48.640000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.176000pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws2{word-spacing:-11.717333pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-6.653440pt;}
._e{margin-left:-3.915947pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.072853pt;}
._7{width:4.637013pt;}
._9{width:5.652480pt;}
._a{width:7.418880pt;}
._d{width:8.332800pt;}
._14{width:9.408000pt;}
._12{width:10.805760pt;}
._13{width:12.326400pt;}
._15{width:13.824000pt;}
._10{width:15.129600pt;}
._f{width:16.235520pt;}
._11{width:17.788587pt;}
._17{width:19.520000pt;}
._16{width:20.864000pt;}
._1a{width:22.054400pt;}
._19{width:22.976000pt;}
._18{width:24.256000pt;}
._1c{width:25.514667pt;}
._1b{width:26.496000pt;}
._23{width:27.861333pt;}
._b{width:30.005760pt;}
._c{width:31.664640pt;}
._1d{width:33.408000pt;}
._1e{width:34.304000pt;}
._20{width:38.400000pt;}
._1f{width:39.680000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._21{width:752.405333pt;}
._3{width:1414.378667pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y4a{bottom:2.880000pt;}
.yf7{bottom:3.200000pt;}
.ydd{bottom:4.160000pt;}
.y2e{bottom:10.560000pt;}
.y146{bottom:11.520000pt;}
.yfd{bottom:11.840000pt;}
.yf9{bottom:12.186667pt;}
.y10d{bottom:15.040000pt;}
.y115{bottom:15.066667pt;}
.y111{bottom:15.360000pt;}
.y49{bottom:18.240000pt;}
.y148{bottom:19.840000pt;}
.y14c{bottom:20.160000pt;}
.y154{bottom:20.186667pt;}
.y113{bottom:20.800000pt;}
.y131{bottom:24.320000pt;}
.y145{bottom:28.480000pt;}
.y10f{bottom:30.080000pt;}
.y130{bottom:33.280000pt;}
.y129{bottom:33.306667pt;}
.y2d{bottom:33.640000pt;}
.y147{bottom:36.800000pt;}
.y153{bottom:36.826667pt;}
.ye{bottom:38.720000pt;}
.y112{bottom:39.066667pt;}
.y48{bottom:49.306667pt;}
.y12a{bottom:51.546667pt;}
.y14b{bottom:53.786667pt;}
.y2c{bottom:56.680000pt;}
.yc{bottom:60.800000pt;}
.y14a{bottom:70.746667pt;}
.y47{bottom:72.346667pt;}
.y2b{bottom:79.720000pt;}
.ya{bottom:84.192000pt;}
.y14f{bottom:87.386667pt;}
.y2a{bottom:102.440000pt;}
.y46{bottom:103.386667pt;}
.y14e{bottom:104.346667pt;}
.ya6{bottom:120.992000pt;}
.y185{bottom:122.272000pt;}
.y192{bottom:125.152000pt;}
.y29{bottom:125.480000pt;}
.y45{bottom:126.106667pt;}
.yc1{bottom:134.426667pt;}
.y55{bottom:136.026667pt;}
.y8e{bottom:136.666667pt;}
.y1ad{bottom:139.226667pt;}
.y73{bottom:142.106667pt;}
.y1f{bottom:143.386667pt;}
.yf5{bottom:143.706667pt;}
.yd8{bottom:148.186667pt;}
.ya5{bottom:148.506667pt;}
.y28{bottom:148.546667pt;}
.y44{bottom:149.146667pt;}
.y184{bottom:149.786667pt;}
.y191{bottom:152.986667pt;}
.y1c0{bottom:156.506667pt;}
.y159{bottom:159.066667pt;}
.yc0{bottom:161.946667pt;}
.y54{bottom:163.546667pt;}
.y8d{bottom:164.186667pt;}
.y142{bottom:164.506667pt;}
.y167{bottom:165.466667pt;}
.y1ac{bottom:167.066667pt;}
.y72{bottom:169.626667pt;}
.yf4{bottom:171.226667pt;}
.y10b{bottom:171.546667pt;}
.y27{bottom:171.586667pt;}
.y43{bottom:172.213333pt;}
.yd7{bottom:175.746667pt;}
.ya4{bottom:176.066667pt;}
.y158{bottom:177.346667pt;}
.y183{bottom:177.666667pt;}
.y190{bottom:180.546667pt;}
.ybf{bottom:189.826667pt;}
.y141{bottom:192.066667pt;}
.y166{bottom:193.026667pt;}
.y26{bottom:194.626667pt;}
.y1bf{bottom:194.946667pt;}
.y42{bottom:195.253333pt;}
.yf3{bottom:199.106667pt;}
.y53{bottom:201.986667pt;}
.y8c{bottom:202.626667pt;}
.yd6{bottom:203.266667pt;}
.ya3{bottom:203.586667pt;}
.y182{bottom:205.186667pt;}
.y157{bottom:206.466667pt;}
.y71{bottom:208.066667pt;}
.y10a{bottom:209.666667pt;}
.y25{bottom:217.666667pt;}
.y41{bottom:218.293333pt;}
.y140{bottom:219.586667pt;}
.y165{bottom:220.546667pt;}
.y1be{bottom:222.466667pt;}
.ybe{bottom:227.906667pt;}
.y52{bottom:229.506667pt;}
.yd5{bottom:230.786667pt;}
.y156{bottom:232.706667pt;}
.y70{bottom:235.586667pt;}
.yf2{bottom:237.186667pt;}
.y24{bottom:240.706667pt;}
.y40{bottom:241.333333pt;}
.ya2{bottom:241.986667pt;}
.y181{bottom:243.266667pt;}
.y13f{bottom:247.106667pt;}
.ybd{bottom:255.426667pt;}
.y51{bottom:257.026667pt;}
.yd4{bottom:258.626667pt;}
.y155{bottom:259.266667pt;}
.y1bd{bottom:260.866667pt;}
.y6f{bottom:263.106667pt;}
.y23{bottom:263.466667pt;}
.y164{bottom:264.066667pt;}
.y3f{bottom:264.373333pt;}
.yf1{bottom:264.706667pt;}
.y109{bottom:265.026667pt;}
.y8b{bottom:268.226667pt;}
.ya1{bottom:269.506667pt;}
.y180{bottom:271.106667pt;}
.y152{bottom:272.066667pt;}
.ybc{bottom:283.266667pt;}
.y50{bottom:284.866667pt;}
.y13e{bottom:285.506667pt;}
.yd3{bottom:286.146667pt;}
.y22{bottom:286.506667pt;}
.y3e{bottom:287.133333pt;}
.y1bc{bottom:288.413333pt;}
.y127{bottom:289.053333pt;}
.y18f{bottom:290.973333pt;}
.y163{bottom:291.933333pt;}
.yf0{bottom:292.573333pt;}
.y8a{bottom:296.093333pt;}
.ya0{bottom:297.053333pt;}
.y17f{bottom:298.653333pt;}
.y6e{bottom:301.533333pt;}
.y21{bottom:309.546667pt;}
.y3d{bottom:310.173333pt;}
.ybb{bottom:310.813333pt;}
.y4f{bottom:312.413333pt;}
.y13d{bottom:313.053333pt;}
.yd2{bottom:313.693333pt;}
.y18e{bottom:318.493333pt;}
.y162{bottom:319.453333pt;}
.yef{bottom:320.093333pt;}
.y89{bottom:323.613333pt;}
.y9f{bottom:324.893333pt;}
.y17e{bottom:326.173333pt;}
.y1bb{bottom:326.493333pt;}
.y126{bottom:327.453333pt;}
.y6d{bottom:329.053333pt;}
.y1ab{bottom:329.373333pt;}
.y108{bottom:330.973333pt;}
.y3c{bottom:333.213333pt;}
.yb3{bottom:337.693333pt;}
.yba{bottom:338.333333pt;}
.y4e{bottom:339.933333pt;}
.y13c{bottom:340.573333pt;}
.yd1{bottom:341.213333pt;}
.y20{bottom:342.506667pt;}
.y18d{bottom:346.013333pt;}
.y161{bottom:346.973333pt;}
.yee{bottom:347.613333pt;}
.y88{bottom:351.133333pt;}
.y9e{bottom:352.413333pt;}
.y17d{bottom:353.693333pt;}
.y1ba{bottom:354.333333pt;}
.y125{bottom:354.973333pt;}
.y3b{bottom:356.253333pt;}
.y6c{bottom:356.893333pt;}
.y151{bottom:357.213333pt;}
.y107{bottom:358.493333pt;}
.yb2{bottom:365.533333pt;}
.y4d{bottom:367.453333pt;}
.yb9{bottom:368.413333pt;}
.yd0{bottom:369.053333pt;}
.y18c{bottom:373.533333pt;}
.y1aa{bottom:373.853333pt;}
.y160{bottom:374.493333pt;}
.y3a{bottom:379.320000pt;}
.y9d{bottom:379.933333pt;}
.y17c{bottom:381.533333pt;}
.y6b{bottom:384.413333pt;}
.yed{bottom:386.013333pt;}
.yb8{bottom:386.973333pt;}
.y87{bottom:389.533333pt;}
.y1b9{bottom:392.413333pt;}
.yb1{bottom:393.053333pt;}
.y124{bottom:393.373333pt;}
.y4c{bottom:395.293333pt;}
.y13b{bottom:395.933333pt;}
.ycf{bottom:396.573333pt;}
.y18b{bottom:401.413333pt;}
.y1a9{bottom:401.733333pt;}
.y39{bottom:402.360000pt;}
.yb7{bottom:405.573333pt;}
.y150{bottom:408.453333pt;}
.y6a{bottom:411.973333pt;}
.yec{bottom:413.573333pt;}
.y86{bottom:417.093333pt;}
.y9c{bottom:418.373333pt;}
.y17b{bottom:419.653333pt;}
.y1b8{bottom:419.973333pt;}
.yb0{bottom:420.613333pt;}
.y123{bottom:420.933333pt;}
.y13a{bottom:423.493333pt;}
.yb6{bottom:423.813333pt;}
.yce{bottom:424.133333pt;}
.y18a{bottom:428.933333pt;}
.y1a8{bottom:429.253333pt;}
.y4b{bottom:433.733333pt;}
.y38{bottom:435.320000pt;}
.yeb{bottom:441.093333pt;}
.yb5{bottom:442.373333pt;}
.y85{bottom:444.613333pt;}
.y9b{bottom:445.893333pt;}
.y17a{bottom:447.173333pt;}
.y122{bottom:448.453333pt;}
.y69{bottom:450.373333pt;}
.y139{bottom:451.013333pt;}
.ycd{bottom:451.653333pt;}
.y15f{bottom:456.453333pt;}
.y1a7{bottom:456.773333pt;}
.y1b7{bottom:458.373333pt;}
.yaf{bottom:459.013333pt;}
.y14d{bottom:459.653333pt;}
.y33{bottom:467.653333pt;}
.y37{bottom:468.920000pt;}
.yea{bottom:468.933333pt;}
.y138{bottom:469.893333pt;}
.y84{bottom:472.453333pt;}
.y9a{bottom:473.413333pt;}
.y179{bottom:475.013333pt;}
.y121{bottom:476.293333pt;}
.yb4{bottom:476.933333pt;}
.y68{bottom:477.893333pt;}
.ycc{bottom:479.493333pt;}
.y15e{bottom:483.973333pt;}
.y1a6{bottom:484.293333pt;}
.y1b6{bottom:485.893333pt;}
.yae{bottom:486.533333pt;}
.y137{bottom:488.133333pt;}
.y36{bottom:492.000000pt;}
.y83{bottom:499.973333pt;}
.y99{bottom:500.933333pt;}
.y178{bottom:502.533333pt;}
.y120{bottom:503.813333pt;}
.y67{bottom:505.413333pt;}
.y136{bottom:506.693333pt;}
.ycb{bottom:507.013333pt;}
.y15d{bottom:511.840000pt;}
.y1a5{bottom:512.160000pt;}
.y1e{bottom:514.080000pt;}
.y135{bottom:522.080000pt;}
.y35{bottom:523.040000pt;}
.y1b5{bottom:524.320000pt;}
.y82{bottom:527.520000pt;}
.y98{bottom:528.800000pt;}
.y1d{bottom:529.440000pt;}
.y177{bottom:530.080000pt;}
.y66{bottom:532.960000pt;}
.yca{bottom:534.560000pt;}
.y106{bottom:534.880000pt;}
.y15c{bottom:539.360000pt;}
.y1a4{bottom:539.680000pt;}
.yad{bottom:541.600000pt;}
.y11f{bottom:541.920000pt;}
.y1c{bottom:544.160000pt;}
.y34{bottom:546.080000pt;}
.y134{bottom:551.520000pt;}
.y81{bottom:555.040000pt;}
.y1b{bottom:556.320000pt;}
.y176{bottom:557.600000pt;}
.y65{bottom:560.800000pt;}
.yc9{bottom:562.080000pt;}
.ye9{bottom:562.400000pt;}
.y189{bottom:566.880000pt;}
.y1a3{bottom:567.200000pt;}
.yac{bottom:569.440000pt;}
.y11e{bottom:569.760000pt;}
.y1a{bottom:576.800000pt;}
.y15b{bottom:577.440000pt;}
.y149{bottom:578.400000pt;}
.y133{bottom:581.280000pt;}
.y80{bottom:582.560000pt;}
.y175{bottom:585.440000pt;}
.y64{bottom:588.320000pt;}
.y19{bottom:588.960000pt;}
.ye8{bottom:589.920000pt;}
.y1b4{bottom:590.240000pt;}
.yc8{bottom:592.160000pt;}
.y97{bottom:594.400000pt;}
.y1a2{bottom:594.720000pt;}
.yab{bottom:596.960000pt;}
.y11d{bottom:597.280000pt;}
.y15a{bottom:605.280000pt;}
.y18{bottom:609.760000pt;}
.y7f{bottom:610.400000pt;}
.y132{bottom:610.720000pt;}
.y174{bottom:612.960000pt;}
.y63{bottom:615.840000pt;}
.ye7{bottom:617.440000pt;}
.y188{bottom:622.240000pt;}
.y1a1{bottom:622.560000pt;}
.yaa{bottom:624.506667pt;}
.y17{bottom:625.146667pt;}
.y1b3{bottom:628.346667pt;}
.yc7{bottom:630.586667pt;}
.y96{bottom:632.826667pt;}
.y11c{bottom:635.386667pt;}
.y7e{bottom:637.946667pt;}
.y12f{bottom:640.186667pt;}
.y16{bottom:642.106667pt;}
.y62{bottom:643.386667pt;}
.ye6{bottom:644.986667pt;}
.y105{bottom:645.306667pt;}
.y187{bottom:649.786667pt;}
.y1a0{bottom:650.106667pt;}
.y173{bottom:651.066667pt;}
.ya9{bottom:652.026667pt;}
.y1b2{bottom:655.866667pt;}
.yc6{bottom:658.106667pt;}
.y95{bottom:660.346667pt;}
.y11b{bottom:663.226667pt;}
.y144{bottom:663.546667pt;}
.y7d{bottom:665.786667pt;}
.y15{bottom:666.426667pt;}
.y61{bottom:671.226667pt;}
.y104{bottom:672.826667pt;}
.y186{bottom:677.306667pt;}
.y19f{bottom:677.626667pt;}
.y172{bottom:678.906667pt;}
.ya8{bottom:679.866667pt;}
.ye5{bottom:683.386667pt;}
.yc5{bottom:685.626667pt;}
.y94{bottom:687.866667pt;}
.y11a{bottom:690.746667pt;}
.y14{bottom:691.066667pt;}
.y1b1{bottom:694.266667pt;}
.y60{bottom:698.746667pt;}
.y103{bottom:700.346667pt;}
.ye4{bottom:701.946667pt;}
.y7c{bottom:704.826667pt;}
.y19e{bottom:705.146667pt;}
.y171{bottom:706.426667pt;}
.ya7{bottom:710.266667pt;}
.yc4{bottom:713.146667pt;}
.y13{bottom:715.706667pt;}
.y12e{bottom:717.626667pt;}
.y119{bottom:718.266667pt;}
.y102{bottom:718.906667pt;}
.ye3{bottom:720.506667pt;}
.y1b0{bottom:721.786667pt;}
.y93{bottom:726.266667pt;}
.y7b{bottom:732.666667pt;}
.y19d{bottom:732.986667pt;}
.y170{bottom:733.946667pt;}
.ye2{bottom:735.906667pt;}
.y5f{bottom:736.866667pt;}
.y101{bottom:737.506667pt;}
.y12{bottom:740.066667pt;}
.yc3{bottom:741.026667pt;}
.y143{bottom:743.266667pt;}
.y12d{bottom:747.106667pt;}
.y92{bottom:753.826667pt;}
.y100{bottom:755.106667pt;}
.ye1{bottom:755.746667pt;}
.y118{bottom:756.706667pt;}
.y7a{bottom:760.226667pt;}
.y19c{bottom:760.546667pt;}
.y16f{bottom:761.506667pt;}
.y11{bottom:764.706667pt;}
.yff{bottom:768.226667pt;}
.yc2{bottom:770.786667pt;}
.y117{bottom:775.266667pt;}
.ye0{bottom:775.586667pt;}
.y12c{bottom:776.546667pt;}
.y91{bottom:781.666667pt;}
.yfc{bottom:785.826667pt;}
.y1af{bottom:787.746667pt;}
.y19b{bottom:788.066667pt;}
.y10{bottom:789.346667pt;}
.y5e{bottom:792.226667pt;}
.y116{bottom:793.826667pt;}
.ydf{bottom:795.426667pt;}
.y79{bottom:798.306667pt;}
.yfe{bottom:803.426667pt;}
.y12b{bottom:805.986667pt;}
.y90{bottom:809.186667pt;}
.yf{bottom:813.666667pt;}
.yde{bottom:815.266667pt;}
.y19a{bottom:815.586667pt;}
.y16e{bottom:816.866667pt;}
.y5d{bottom:819.746667pt;}
.yfb{bottom:820.706667pt;}
.y78{bottom:826.146667pt;}
.ydc{bottom:835.106667pt;}
.y128{bottom:835.746667pt;}
.y9{bottom:836.706667pt;}
.yf8{bottom:838.306667pt;}
.y114{bottom:838.626667pt;}
.y199{bottom:843.426667pt;}
.y16d{bottom:844.386667pt;}
.y5c{bottom:847.293333pt;}
.y8{bottom:852.093333pt;}
.y77{bottom:853.693333pt;}
.yfa{bottom:855.933333pt;}
.y8f{bottom:864.253333pt;}
.y7{bottom:864.573333pt;}
.y10e{bottom:868.093333pt;}
.y198{bottom:870.973333pt;}
.y16c{bottom:871.933333pt;}
.yf6{bottom:873.533333pt;}
.y5b{bottom:875.133333pt;}
.y1ae{bottom:881.213333pt;}
.ydb{bottom:883.773333pt;}
.y76{bottom:891.773333pt;}
.y110{bottom:897.853333pt;}
.y197{bottom:898.493333pt;}
.y16b{bottom:899.773333pt;}
.y5a{bottom:902.653333pt;}
.yda{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.y75{bottom:919.613333pt;}
.y196{bottom:926.013333pt;}
.y10c{bottom:927.293333pt;}
.y59{bottom:930.173333pt;}
.y5{bottom:935.293333pt;}
.yd9{bottom:941.693333pt;}
.y74{bottom:947.133333pt;}
.y4{bottom:953.533333pt;}
.y195{bottom:953.853333pt;}
.y16a{bottom:954.813333pt;}
.y58{bottom:957.693333pt;}
.y3{bottom:972.453333pt;}
.y194{bottom:981.413333pt;}
.y169{bottom:982.373333pt;}
.y57{bottom:985.573333pt;}
.y2{bottom:990.693333pt;}
.y1{bottom:1005.733333pt;}
.y193{bottom:1011.813333pt;}
.y168{bottom:1012.773333pt;}
.y56{bottom:1013.093333pt;}
.y32{bottom:1036.773333pt;}
.y31{bottom:1049.253333pt;}
.y30{bottom:1067.813333pt;}
.y2f{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h12{height:16.640000pt;}
.h16{height:16.960000pt;}
.h17{height:16.992000pt;}
.h11{height:19.200000pt;}
.h10{height:19.232000pt;}
.h1a{height:28.800000pt;}
.h1e{height:28.832000pt;}
.h1c{height:29.120000pt;}
.h18{height:34.240000pt;}
.h15{height:34.592000pt;}
.h5{height:37.002500pt;}
.hb{height:37.063125pt;}
.h2{height:39.847500pt;}
.h19{height:40.897500pt;}
.h7{height:42.678750pt;}
.h14{height:43.642500pt;}
.h20{height:47.040000pt;}
.h4{height:47.171250pt;}
.ha{height:47.376250pt;}
.h3{height:47.437500pt;}
.hf{height:48.687500pt;}
.h21{height:50.560000pt;}
.h24{height:50.592000pt;}
.h13{height:51.663750pt;}
.he{height:56.156250pt;}
.h1d{height:58.272000pt;}
.h1b{height:58.560000pt;}
.h9{height:63.566250pt;}
.h1f{height:65.312000pt;}
.h22{height:84.192000pt;}
.h23{height:118.112000pt;}
.hc{height:365.533333pt;}
.hd{height:558.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:65.920000pt;}
.w18{width:65.952000pt;}
.w17{width:68.192000pt;}
.w11{width:68.832000pt;}
.w19{width:72.352000pt;}
.w12{width:74.912000pt;}
.w1b{width:80.352000pt;}
.w9{width:89.952000pt;}
.wd{width:90.272000pt;}
.w14{width:111.104000pt;}
.w1c{width:111.712000pt;}
.we{width:113.024000pt;}
.wa{width:114.592000pt;}
.w16{width:136.066667pt;}
.wb{width:161.026667pt;}
.wc{width:233.053333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w10{width:358.533333pt;}
.wf{width:394.720000pt;}
.w8{width:428.026667pt;}
.w13{width:492.026667pt;}
.w15{width:603.773333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3b{left:6.720000pt;}
.x9{left:7.680000pt;}
.x1f{left:9.280000pt;}
.x59{left:11.200000pt;}
.x36{left:12.160000pt;}
.x31{left:13.146667pt;}
.x58{left:14.760000pt;}
.x33{left:15.680000pt;}
.x53{left:16.640000pt;}
.x24{left:18.240000pt;}
.x5b{left:20.160000pt;}
.x25{left:21.152000pt;}
.x55{left:22.112000pt;}
.x3c{left:23.080000pt;}
.x35{left:24.360000pt;}
.x57{left:25.960000pt;}
.x4f{left:26.880000pt;}
.x34{left:27.880000pt;}
.x54{left:29.152000pt;}
.x2c{left:30.432000pt;}
.x21{left:32.352000pt;}
.x4b{left:34.272000pt;}
.x4c{left:35.872000pt;}
.x22{left:37.120000pt;}
.x32{left:39.720000pt;}
.x26{left:40.960000pt;}
.x23{left:43.520000pt;}
.x29{left:45.440000pt;}
.x27{left:47.360000pt;}
.x56{left:48.674667pt;}
.x5a{left:52.834667pt;}
.x43{left:64.026667pt;}
.x45{left:65.314667pt;}
.x2e{left:72.040000pt;}
.x49{left:74.914667pt;}
.x4a{left:88.034667pt;}
.x7{left:94.431988pt;}
.xe{left:95.391988pt;}
.x3f{left:98.591988pt;}
.x12{left:101.151988pt;}
.xf{left:104.351988pt;}
.x10{left:111.391988pt;}
.xc{left:116.863988pt;}
.x13{left:117.823988pt;}
.x44{left:121.341333pt;}
.xb{left:129.023988pt;}
.x48{left:139.261333pt;}
.x1b{left:142.466655pt;}
.x38{left:146.626667pt;}
.x3d{left:154.626667pt;}
.x14{left:160.706655pt;}
.x37{left:166.466655pt;}
.x46{left:171.261333pt;}
.x1d{left:181.541333pt;}
.x11{left:188.866655pt;}
.x3e{left:190.466655pt;}
.x28{left:197.861333pt;}
.x42{left:206.821333pt;}
.x1c{left:208.733322pt;}
.x40{left:215.461333pt;}
.x2a{left:218.653322pt;}
.x2{left:226.013322pt;}
.x18{left:229.853322pt;}
.x4d{left:231.773333pt;}
.x47{left:237.541333pt;}
.x6{left:243.613322pt;}
.x2d{left:256.733333pt;}
.xa{left:270.533333pt;}
.x2b{left:291.973322pt;}
.x4e{left:300.613333pt;}
.x16{left:302.208000pt;}
.x1a{left:303.173322pt;}
.xd{left:319.813322pt;}
.x5{left:322.373322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x50{left:367.520000pt;}
.x8{left:396.959988pt;}
.x15{left:397.920000pt;}
.x19{left:408.799988pt;}
.x51{left:440.506667pt;}
.x2f{left:490.746667pt;}
.x39{left:501.306667pt;}
.x52{left:507.066667pt;}
.x1e{left:523.746667pt;}
.x3a{left:570.786667pt;}
.x30{left:581.666667pt;}
.x41{left:587.746667pt;}
.x20{left:614.333333pt;}
.x1{left:699.493322pt;}
.x17{left:700.453322pt;}
}




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