
    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_f6e24d36823c24060c8a7d32.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_481950d36879055413d60c80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_530ea4ccb92447fac6d5ff16.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_89719364438a8e0f118ccfe5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_98be53653fae5f373233d67d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_0cd65fed0ef740251856ada6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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:23.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.ls1{letter-spacing:1.500000px;}
.ls2{letter-spacing:82.440000px;}
.ls3{letter-spacing:83.340000px;}
.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;}
}
.ws4{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.000000px;}
.ws7{word-spacing:-9.600000px;}
.ws8{word-spacing:-8.700000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:10.500000px;}
.ws6{word-spacing:12.360000px;}
.ws5{word-spacing:22.140000px;}
.ws1{word-spacing:32.220000px;}
._a{margin-left:-1.044000px;}
._4{width:1.896000px;}
._3{width:2.946000px;}
._6{width:4.482000px;}
._2{width:5.670000px;}
._9{width:6.858000px;}
._1{width:7.980000px;}
._7{width:9.354000px;}
._8{width:10.950000px;}
._e{width:11.958000px;}
._f{width:13.140000px;}
._0{width:14.460000px;}
._5{width:16.320000px;}
._13{width:17.412000px;}
._12{width:18.420000px;}
._10{width:20.244000px;}
._11{width:21.336000px;}
._14{width:22.584000px;}
._d{width:23.628000px;}
._b{width:24.708000px;}
._c{width:26.364000px;}
._17{width:28.428000px;}
._18{width:30.072000px;}
._1a{width:32.820000px;}
._1b{width:33.840000px;}
._16{width:34.872000px;}
._15{width:35.916000px;}
._1c{width:37.044000px;}
._1d{width:38.340000px;}
._20{width:42.456000px;}
._1e{width:48.828000px;}
._1f{width:50.040000px;}
._21{width:52.032000px;}
._19{width:105.228000px;}
.fc3{color:rgb(56,96,237);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.800000px;}
.fs5{font-size:38.400000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y44{bottom:88.291500px;}
.y43{bottom:105.616500px;}
.y159{bottom:108.916500px;}
.y80{bottom:111.091500px;}
.y133{bottom:111.466500px;}
.y17f{bottom:114.766500px;}
.y42{bottom:122.941500px;}
.y9d{bottom:124.066500px;}
.y158{bottom:125.416500px;}
.y7f{bottom:127.591500px;}
.y17e{bottom:132.091500px;}
.yd4{bottom:133.891500px;}
.y104{bottom:139.966500px;}
.y41{bottom:140.266500px;}
.y9c{bottom:140.566500px;}
.y157{bottom:141.916500px;}
.y132{bottom:143.416500px;}
.y122{bottom:143.941500px;}
.y7e{bottom:144.091500px;}
.y17d{bottom:149.416500px;}
.yd3{bottom:150.391500px;}
.y9b{bottom:157.066500px;}
.y40{bottom:157.591500px;}
.y156{bottom:158.416500px;}
.y131{bottom:159.916500px;}
.y121{bottom:160.441500px;}
.y7d{bottom:160.591500px;}
.y17c{bottom:166.741500px;}
.yd2{bottom:166.816500px;}
.y103{bottom:169.291500px;}
.y9a{bottom:173.566500px;}
.y3f{bottom:174.916500px;}
.y120{bottom:176.941500px;}
.y7c{bottom:177.091500px;}
.y155{bottom:183.841500px;}
.y17b{bottom:184.066500px;}
.yd1{bottom:184.141500px;}
.y102{bottom:185.791500px;}
.y99{bottom:190.066500px;}
.y11f{bottom:193.441500px;}
.y7b{bottom:193.591500px;}
.y154{bottom:200.341500px;}
.y17a{bottom:201.391500px;}
.yd0{bottom:201.466500px;}
.y101{bottom:202.291500px;}
.y98{bottom:206.566500px;}
.y11e{bottom:209.941500px;}
.y7a{bottom:210.091500px;}
.y153{bottom:216.841500px;}
.y100{bottom:218.716500px;}
.ycf{bottom:218.791500px;}
.y97{bottom:223.066500px;}
.y79{bottom:226.591500px;}
.y152{bottom:233.341500px;}
.yff{bottom:235.216500px;}
.y3e{bottom:235.291500px;}
.y11d{bottom:235.366500px;}
.y179{bottom:236.041500px;}
.yce{bottom:236.116500px;}
.y96{bottom:239.566500px;}
.y78{bottom:243.091500px;}
.y151{bottom:249.841500px;}
.yfe{bottom:251.716500px;}
.y3d{bottom:251.791500px;}
.y11c{bottom:251.866500px;}
.y178{bottom:253.366500px;}
.ycd{bottom:253.441500px;}
.y2b{bottom:257.641500px;}
.y77{bottom:259.591500px;}
.y150{bottom:266.341500px;}
.yfd{bottom:268.216500px;}
.y3c{bottom:268.291500px;}
.y11b{bottom:268.366500px;}
.y95{bottom:270.241500px;}
.ycc{bottom:270.766500px;}
.y2a{bottom:273.166500px;}
.y130{bottom:273.241500px;}
.y177{bottom:276.691500px;}
.y14f{bottom:282.841500px;}
.yfc{bottom:284.716500px;}
.y3b{bottom:284.791500px;}
.y11a{bottom:284.866500px;}
.y76{bottom:285.016500px;}
.y12f{bottom:285.616500px;}
.y29{bottom:288.691500px;}
.ycb{bottom:297.091500px;}
.y14e{bottom:299.341500px;}
.yfb{bottom:301.141500px;}
.y3a{bottom:301.291500px;}
.y119{bottom:301.366500px;}
.y75{bottom:301.516500px;}
.y28{bottom:304.216500px;}
.y176{bottom:306.016500px;}
.yca{bottom:313.591500px;}
.y14d{bottom:315.841500px;}
.y12e{bottom:316.816500px;}
.yfa{bottom:317.641500px;}
.y39{bottom:317.791500px;}
.y118{bottom:317.866500px;}
.y74{bottom:318.016500px;}
.y27{bottom:319.741500px;}
.y175{bottom:322.516500px;}
.yc9{bottom:330.091500px;}
.y12d{bottom:333.316500px;}
.yf9{bottom:334.141500px;}
.y38{bottom:334.291500px;}
.y117{bottom:334.366500px;}
.y73{bottom:334.516500px;}
.y26{bottom:335.266500px;}
.y174{bottom:339.016500px;}
.y14c{bottom:341.266500px;}
.yc8{bottom:346.591500px;}
.y12c{bottom:349.816500px;}
.yf8{bottom:350.566500px;}
.y25{bottom:350.791500px;}
.y116{bottom:350.866500px;}
.y72{bottom:351.016500px;}
.y173{bottom:355.516500px;}
.y14b{bottom:357.766500px;}
.yc7{bottom:363.091500px;}
.y24{bottom:366.316500px;}
.y37{bottom:367.291500px;}
.y115{bottom:367.366500px;}
.y71{bottom:367.516500px;}
.yf7{bottom:367.891500px;}
.y172{bottom:372.016500px;}
.y14a{bottom:374.266500px;}
.yc6{bottom:379.591500px;}
.y23{bottom:381.841500px;}
.y12b{bottom:382.816500px;}
.y36{bottom:383.791500px;}
.y114{bottom:383.866500px;}
.y70{bottom:384.016500px;}
.yf6{bottom:385.216500px;}
.y171{bottom:388.516500px;}
.y149{bottom:390.766500px;}
.yc5{bottom:396.091500px;}
.y22{bottom:397.366500px;}
.y12a{bottom:399.316500px;}
.y35{bottom:400.291500px;}
.y113{bottom:400.366500px;}
.y6f{bottom:400.516500px;}
.yf5{bottom:402.541500px;}
.y170{bottom:405.016500px;}
.y148{bottom:407.266500px;}
.yc4{bottom:412.591500px;}
.y21{bottom:412.891500px;}
.y129{bottom:415.816500px;}
.y34{bottom:416.791500px;}
.y112{bottom:416.866500px;}
.y6e{bottom:417.016500px;}
.yf4{bottom:419.866500px;}
.y147{bottom:423.766500px;}
.y20{bottom:428.416500px;}
.yc3{bottom:429.091500px;}
.y16f{bottom:430.441500px;}
.y128{bottom:432.316500px;}
.y33{bottom:433.291500px;}
.y111{bottom:433.366500px;}
.y6d{bottom:433.516500px;}
.yf3{bottom:437.191500px;}
.y146{bottom:440.266500px;}
.y94{bottom:442.441500px;}
.y1f{bottom:443.941500px;}
.yc2{bottom:445.591500px;}
.y16e{bottom:446.941500px;}
.y127{bottom:448.816500px;}
.y32{bottom:449.791500px;}
.y110{bottom:449.866500px;}
.y6c{bottom:450.016500px;}
.yf2{bottom:454.516500px;}
.y93{bottom:458.941500px;}
.y1e{bottom:459.466500px;}
.yc1{bottom:462.091500px;}
.y16d{bottom:463.441500px;}
.y145{bottom:465.691500px;}
.y31{bottom:466.291500px;}
.y10f{bottom:466.366500px;}
.y6b{bottom:466.516500px;}
.y1d{bottom:474.991500px;}
.y92{bottom:475.441500px;}
.yc0{bottom:478.591500px;}
.y16c{bottom:479.941500px;}
.yf1{bottom:480.841500px;}
.y144{bottom:482.191500px;}
.y30{bottom:482.791500px;}
.y10e{bottom:482.866500px;}
.y6a{bottom:483.016500px;}
.y1c{bottom:490.516500px;}
.ybf{bottom:495.091500px;}
.y16b{bottom:496.441500px;}
.yf0{bottom:497.341500px;}
.y143{bottom:498.691500px;}
.y2f{bottom:499.291500px;}
.y10d{bottom:499.366500px;}
.y69{bottom:499.516500px;}
.y91{bottom:500.866500px;}
.y1b{bottom:506.041500px;}
.ybe{bottom:511.591500px;}
.y16a{bottom:512.941500px;}
.yef{bottom:513.841500px;}
.y142{bottom:515.191500px;}
.y2e{bottom:515.791500px;}
.y10c{bottom:515.866500px;}
.y68{bottom:516.016500px;}
.y90{bottom:517.366500px;}
.y1a{bottom:521.566500px;}
.y169{bottom:529.441500px;}
.yee{bottom:530.341500px;}
.y141{bottom:531.691500px;}
.y2d{bottom:532.291500px;}
.y10b{bottom:532.366500px;}
.y67{bottom:532.516500px;}
.y8f{bottom:533.866500px;}
.ybd{bottom:537.016500px;}
.y19{bottom:537.091500px;}
.y168{bottom:545.941500px;}
.yed{bottom:546.841500px;}
.y140{bottom:548.191500px;}
.y10a{bottom:548.866500px;}
.y66{bottom:549.016500px;}
.y8e{bottom:550.366500px;}
.y18{bottom:552.616500px;}
.ybc{bottom:553.516500px;}
.y2c{bottom:554.716500px;}
.y167{bottom:562.441500px;}
.yec{bottom:563.341500px;}
.y13f{bottom:564.691500px;}
.y65{bottom:565.516500px;}
.y8d{bottom:566.866500px;}
.y17{bottom:568.141500px;}
.ybb{bottom:570.016500px;}
.y166{bottom:578.941500px;}
.y13e{bottom:581.191500px;}
.y8c{bottom:583.366500px;}
.y16{bottom:583.666500px;}
.yba{bottom:586.516500px;}
.yeb{bottom:588.766500px;}
.y64{bottom:590.941500px;}
.y165{bottom:595.441500px;}
.y13d{bottom:597.691500px;}
.y15{bottom:599.191500px;}
.y8b{bottom:599.866500px;}
.yb9{bottom:603.016500px;}
.yea{bottom:605.266500px;}
.y63{bottom:607.441500px;}
.y164{bottom:611.941500px;}
.y13c{bottom:614.191500px;}
.y14{bottom:614.716500px;}
.y8a{bottom:616.366500px;}
.yb8{bottom:619.516500px;}
.y62{bottom:623.941500px;}
.y163{bottom:628.441500px;}
.ye9{bottom:630.691500px;}
.y89{bottom:632.866500px;}
.yb7{bottom:636.016500px;}
.y61{bottom:640.441500px;}
.y19e{bottom:642.691500px;}
.y162{bottom:644.941500px;}
.ye8{bottom:647.191500px;}
.y13{bottom:647.566500px;}
.y88{bottom:649.366500px;}
.yb6{bottom:652.516500px;}
.y19d{bottom:656.191500px;}
.y60{bottom:656.941500px;}
.y12{bottom:663.091500px;}
.ye7{bottom:663.691500px;}
.y87{bottom:665.866500px;}
.y1bd{bottom:668.116500px;}
.yb5{bottom:669.016500px;}
.y19c{bottom:669.691500px;}
.y161{bottom:670.366500px;}
.y5f{bottom:673.441500px;}
.y11{bottom:678.616500px;}
.ye6{bottom:680.191500px;}
.y86{bottom:682.366500px;}
.y1bc{bottom:685.366500px;}
.y160{bottom:686.866500px;}
.y19b{bottom:686.941500px;}
.y5e{bottom:689.941500px;}
.y10{bottom:694.141500px;}
.yb4{bottom:694.441500px;}
.ye5{bottom:696.691500px;}
.y85{bottom:698.866500px;}
.y19a{bottom:700.441500px;}
.y15f{bottom:703.366500px;}
.y5d{bottom:706.441500px;}
.yf{bottom:709.666500px;}
.yb3{bottom:710.941500px;}
.y1bb{bottom:712.366500px;}
.ye4{bottom:713.191500px;}
.y199{bottom:713.941500px;}
.y84{bottom:715.366500px;}
.y15e{bottom:719.866500px;}
.y5c{bottom:722.941500px;}
.y1ba{bottom:725.866500px;}
.yb2{bottom:727.441500px;}
.ye3{bottom:729.691500px;}
.y83{bottom:731.866500px;}
.y1b9{bottom:739.366500px;}
.y5b{bottom:739.441500px;}
.y198{bottom:740.941500px;}
.y15d{bottom:742.291500px;}
.yb1{bottom:743.941500px;}
.ye{bottom:746.191500px;}
.y82{bottom:748.366500px;}
.y197{bottom:754.441500px;}
.y5a{bottom:755.941500px;}
.y1b8{bottom:756.616500px;}
.yb0{bottom:760.441500px;}
.yd{bottom:761.716500px;}
.ye2{bottom:762.691500px;}
.y81{bottom:764.866500px;}
.y1b7{bottom:770.116500px;}
.y15c{bottom:771.616500px;}
.y196{bottom:771.691500px;}
.yaf{bottom:776.941500px;}
.yc{bottom:777.241500px;}
.ye1{bottom:779.191500px;}
.y59{bottom:781.366500px;}
.y1b6{bottom:783.616500px;}
.y195{bottom:785.191500px;}
.y126{bottom:787.291500px;}
.y15b{bottom:788.116500px;}
.yb{bottom:792.766500px;}
.yae{bottom:793.441500px;}
.y13b{bottom:795.691500px;}
.y1b5{bottom:797.116500px;}
.y58{bottom:797.866500px;}
.y194{bottom:798.691500px;}
.y125{bottom:799.666500px;}
.ye0{bottom:804.616500px;}
.ya{bottom:808.291500px;}
.y1b4{bottom:810.616500px;}
.y13a{bottom:812.191500px;}
.y57{bottom:814.366500px;}
.yad{bottom:818.866500px;}
.ydf{bottom:821.116500px;}
.y1b3{bottom:827.866500px;}
.y139{bottom:828.691500px;}
.y193{bottom:829.441500px;}
.y56{bottom:830.866500px;}
.yac{bottom:835.366500px;}
.yde{bottom:837.616500px;}
.y1b2{bottom:841.366500px;}
.y192{bottom:842.941500px;}
.y138{bottom:845.191500px;}
.y55{bottom:847.366500px;}
.yab{bottom:851.866500px;}
.ydd{bottom:854.116500px;}
.y1b1{bottom:854.866500px;}
.y191{bottom:856.441500px;}
.y137{bottom:861.691500px;}
.y54{bottom:863.866500px;}
.yaa{bottom:868.366500px;}
.y190{bottom:869.941500px;}
.ydc{bottom:870.616500px;}
.y9{bottom:873.091500px;}
.y136{bottom:878.191500px;}
.y53{bottom:880.366500px;}
.ya9{bottom:884.866500px;}
.y1b0{bottom:885.616500px;}
.ydb{bottom:887.116500px;}
.y18f{bottom:887.191500px;}
.y8{bottom:890.416500px;}
.y109{bottom:895.216500px;}
.y52{bottom:896.866500px;}
.y1af{bottom:899.116500px;}
.y18e{bottom:900.691500px;}
.ya8{bottom:901.366500px;}
.yda{bottom:903.616500px;}
.y124{bottom:905.791500px;}
.y108{bottom:907.591500px;}
.y7{bottom:907.741500px;}
.y1ae{bottom:912.616500px;}
.y51{bottom:913.366500px;}
.y18d{bottom:914.191500px;}
.y135{bottom:920.116500px;}
.y123{bottom:922.291500px;}
.ya7{bottom:923.791500px;}
.y6{bottom:925.066500px;}
.y1ad{bottom:926.116500px;}
.y18c{bottom:927.691500px;}
.yd9{bottom:929.041500px;}
.y50{bottom:929.866500px;}
.y15a{bottom:936.616500px;}
.y107{bottom:938.791500px;}
.y1ac{bottom:939.616500px;}
.y18b{bottom:941.191500px;}
.yd8{bottom:945.541500px;}
.y4f{bottom:946.366500px;}
.ya6{bottom:953.116500px;}
.y18a{bottom:954.691500px;}
.y106{bottom:955.291500px;}
.y1ab{bottom:956.866500px;}
.yd7{bottom:962.041500px;}
.y4e{bottom:962.866500px;}
.y189{bottom:968.191500px;}
.ya5{bottom:969.616500px;}
.y1aa{bottom:970.366500px;}
.y105{bottom:971.791500px;}
.yd6{bottom:978.541500px;}
.y188{bottom:981.691500px;}
.y1a9{bottom:983.866500px;}
.ya4{bottom:986.116500px;}
.y4d{bottom:988.291500px;}
.yd5{bottom:995.041500px;}
.y1a8{bottom:997.366500px;}
.y187{bottom:998.941500px;}
.y5{bottom:999.541500px;}
.y4c{bottom:1004.791500px;}
.y1a7{bottom:1010.866500px;}
.ya3{bottom:1011.541500px;}
.y186{bottom:1012.441500px;}
.y4b{bottom:1021.291500px;}
.y1a6{bottom:1024.366500px;}
.y185{bottom:1025.941500px;}
.ya2{bottom:1028.041500px;}
.y4{bottom:1034.041500px;}
.y4a{bottom:1037.791500px;}
.y1a5{bottom:1037.866500px;}
.y184{bottom:1039.441500px;}
.ya1{bottom:1044.541500px;}
.y1a4{bottom:1051.366500px;}
.y49{bottom:1054.291500px;}
.y183{bottom:1056.691500px;}
.ya0{bottom:1061.041500px;}
.y1a3{bottom:1064.866500px;}
.y134{bottom:1069.966500px;}
.y182{bottom:1070.191500px;}
.y48{bottom:1070.791500px;}
.y1a2{bottom:1082.116500px;}
.y181{bottom:1083.691500px;}
.y9f{bottom:1086.466500px;}
.y47{bottom:1087.291500px;}
.y1a1{bottom:1095.616500px;}
.y180{bottom:1097.191500px;}
.y9e{bottom:1102.966500px;}
.y46{bottom:1103.791500px;}
.y1a0{bottom:1109.116500px;}
.y45{bottom:1120.291500px;}
.y19f{bottom:1122.616500px;}
.y3{bottom:1146.391500px;}
.y2{bottom:1163.716500px;}
.hd{height:24.179883px;}
.hc{height:33.351562px;}
.he{height:34.945312px;}
.h9{height:36.571289px;}
.h8{height:36.597656px;}
.h7{height:37.494141px;}
.h6{height:37.520508px;}
.h5{height:40.634766px;}
.hf{height:40.664062px;}
.h3{height:41.660156px;}
.ha{height:41.689453px;}
.hb{height:47.579883px;}
.h4{height:83.320312px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:85.200000px;}
.x35{left:94.500000px;}
.x20{left:106.500000px;}
.xa{left:107.775000px;}
.x3e{left:112.200000px;}
.x7{left:117.600000px;}
.x3{left:123.375000px;}
.x1f{left:126.900000px;}
.x2f{left:128.100000px;}
.x9{left:131.175000px;}
.xb{left:132.900000px;}
.xe{left:133.950000px;}
.x6{left:142.200000px;}
.x4{left:149.250000px;}
.x31{left:154.950000px;}
.xd{left:158.400000px;}
.xc{left:170.400000px;}
.xf{left:172.050000px;}
.x30{left:177.450000px;}
.x32{left:181.725000px;}
.x3d{left:217.875000px;}
.x29{left:221.325000px;}
.x8{left:244.275000px;}
.x2{left:247.275000px;}
.x16{left:359.625000px;}
.x28{left:374.100000px;}
.x14{left:377.250000px;}
.x17{left:385.800000px;}
.x13{left:386.850000px;}
.x36{left:392.100000px;}
.x19{left:395.250000px;}
.x10{left:399.750000px;}
.x15{left:413.625000px;}
.x18{left:423.900000px;}
.x11{left:427.800000px;}
.x12{left:437.550000px;}
.x2c{left:449.475000px;}
.x22{left:470.775000px;}
.x3f{left:476.475000px;}
.x1{left:480.075000px;}
.x37{left:487.950000px;}
.x39{left:489.675000px;}
.x21{left:491.325000px;}
.x24{left:492.375000px;}
.x3c{left:500.550000px;}
.x2d{left:518.625000px;}
.x27{left:523.425000px;}
.x34{left:536.550000px;}
.x33{left:546.000000px;}
.x3b{left:564.450000px;}
.x3a{left:578.625000px;}
.x23{left:581.175000px;}
.x2a{left:597.900000px;}
.x1e{left:623.850000px;}
.x1c{left:637.650000px;}
.x1a{left:640.725000px;}
.x1b{left:650.625000px;}
.x26{left:661.725000px;}
.x25{left:673.350000px;}
.x1d{left:675.750000px;}
.x5{left:708.825000px;}
.x38{left:714.975000px;}
.x2e{left:754.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls1{letter-spacing:1.333333pt;}
.ls2{letter-spacing:73.280000pt;}
.ls3{letter-spacing:74.080000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws7{word-spacing:-8.533333pt;}
.ws8{word-spacing:-7.733333pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:9.333333pt;}
.ws6{word-spacing:10.986667pt;}
.ws5{word-spacing:19.680000pt;}
.ws1{word-spacing:28.640000pt;}
._a{margin-left:-0.928000pt;}
._4{width:1.685333pt;}
._3{width:2.618667pt;}
._6{width:3.984000pt;}
._2{width:5.040000pt;}
._9{width:6.096000pt;}
._1{width:7.093333pt;}
._7{width:8.314667pt;}
._8{width:9.733333pt;}
._e{width:10.629333pt;}
._f{width:11.680000pt;}
._0{width:12.853333pt;}
._5{width:14.506667pt;}
._13{width:15.477333pt;}
._12{width:16.373333pt;}
._10{width:17.994667pt;}
._11{width:18.965333pt;}
._14{width:20.074667pt;}
._d{width:21.002667pt;}
._b{width:21.962667pt;}
._c{width:23.434667pt;}
._17{width:25.269333pt;}
._18{width:26.730667pt;}
._1a{width:29.173333pt;}
._1b{width:30.080000pt;}
._16{width:30.997333pt;}
._15{width:31.925333pt;}
._1c{width:32.928000pt;}
._1d{width:34.080000pt;}
._20{width:37.738667pt;}
._1e{width:43.402667pt;}
._1f{width:44.480000pt;}
._21{width:46.250667pt;}
._19{width:93.536000pt;}
.fs4{font-size:30.933333pt;}
.fs5{font-size:34.133333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y44{bottom:78.481333pt;}
.y43{bottom:93.881333pt;}
.y159{bottom:96.814667pt;}
.y80{bottom:98.748000pt;}
.y133{bottom:99.081333pt;}
.y17f{bottom:102.014667pt;}
.y42{bottom:109.281333pt;}
.y9d{bottom:110.281333pt;}
.y158{bottom:111.481333pt;}
.y7f{bottom:113.414667pt;}
.y17e{bottom:117.414667pt;}
.yd4{bottom:119.014667pt;}
.y104{bottom:124.414667pt;}
.y41{bottom:124.681333pt;}
.y9c{bottom:124.948000pt;}
.y157{bottom:126.148000pt;}
.y132{bottom:127.481333pt;}
.y122{bottom:127.948000pt;}
.y7e{bottom:128.081333pt;}
.y17d{bottom:132.814667pt;}
.yd3{bottom:133.681333pt;}
.y9b{bottom:139.614667pt;}
.y40{bottom:140.081333pt;}
.y156{bottom:140.814667pt;}
.y131{bottom:142.148000pt;}
.y121{bottom:142.614667pt;}
.y7d{bottom:142.748000pt;}
.y17c{bottom:148.214667pt;}
.yd2{bottom:148.281333pt;}
.y103{bottom:150.481333pt;}
.y9a{bottom:154.281333pt;}
.y3f{bottom:155.481333pt;}
.y120{bottom:157.281333pt;}
.y7c{bottom:157.414667pt;}
.y155{bottom:163.414667pt;}
.y17b{bottom:163.614667pt;}
.yd1{bottom:163.681333pt;}
.y102{bottom:165.148000pt;}
.y99{bottom:168.948000pt;}
.y11f{bottom:171.948000pt;}
.y7b{bottom:172.081333pt;}
.y154{bottom:178.081333pt;}
.y17a{bottom:179.014667pt;}
.yd0{bottom:179.081333pt;}
.y101{bottom:179.814667pt;}
.y98{bottom:183.614667pt;}
.y11e{bottom:186.614667pt;}
.y7a{bottom:186.748000pt;}
.y153{bottom:192.748000pt;}
.y100{bottom:194.414667pt;}
.ycf{bottom:194.481333pt;}
.y97{bottom:198.281333pt;}
.y79{bottom:201.414667pt;}
.y152{bottom:207.414667pt;}
.yff{bottom:209.081333pt;}
.y3e{bottom:209.148000pt;}
.y11d{bottom:209.214667pt;}
.y179{bottom:209.814667pt;}
.yce{bottom:209.881333pt;}
.y96{bottom:212.948000pt;}
.y78{bottom:216.081333pt;}
.y151{bottom:222.081333pt;}
.yfe{bottom:223.748000pt;}
.y3d{bottom:223.814667pt;}
.y11c{bottom:223.881333pt;}
.y178{bottom:225.214667pt;}
.ycd{bottom:225.281333pt;}
.y2b{bottom:229.014667pt;}
.y77{bottom:230.748000pt;}
.y150{bottom:236.748000pt;}
.yfd{bottom:238.414667pt;}
.y3c{bottom:238.481333pt;}
.y11b{bottom:238.548000pt;}
.y95{bottom:240.214667pt;}
.ycc{bottom:240.681333pt;}
.y2a{bottom:242.814667pt;}
.y130{bottom:242.881333pt;}
.y177{bottom:245.948000pt;}
.y14f{bottom:251.414667pt;}
.yfc{bottom:253.081333pt;}
.y3b{bottom:253.148000pt;}
.y11a{bottom:253.214667pt;}
.y76{bottom:253.348000pt;}
.y12f{bottom:253.881333pt;}
.y29{bottom:256.614667pt;}
.ycb{bottom:264.081333pt;}
.y14e{bottom:266.081333pt;}
.yfb{bottom:267.681333pt;}
.y3a{bottom:267.814667pt;}
.y119{bottom:267.881333pt;}
.y75{bottom:268.014667pt;}
.y28{bottom:270.414667pt;}
.y176{bottom:272.014667pt;}
.yca{bottom:278.748000pt;}
.y14d{bottom:280.748000pt;}
.y12e{bottom:281.614667pt;}
.yfa{bottom:282.348000pt;}
.y39{bottom:282.481333pt;}
.y118{bottom:282.548000pt;}
.y74{bottom:282.681333pt;}
.y27{bottom:284.214667pt;}
.y175{bottom:286.681333pt;}
.yc9{bottom:293.414667pt;}
.y12d{bottom:296.281333pt;}
.yf9{bottom:297.014667pt;}
.y38{bottom:297.148000pt;}
.y117{bottom:297.214667pt;}
.y73{bottom:297.348000pt;}
.y26{bottom:298.014667pt;}
.y174{bottom:301.348000pt;}
.y14c{bottom:303.348000pt;}
.yc8{bottom:308.081333pt;}
.y12c{bottom:310.948000pt;}
.yf8{bottom:311.614667pt;}
.y25{bottom:311.814667pt;}
.y116{bottom:311.881333pt;}
.y72{bottom:312.014667pt;}
.y173{bottom:316.014667pt;}
.y14b{bottom:318.014667pt;}
.yc7{bottom:322.748000pt;}
.y24{bottom:325.614667pt;}
.y37{bottom:326.481333pt;}
.y115{bottom:326.548000pt;}
.y71{bottom:326.681333pt;}
.yf7{bottom:327.014667pt;}
.y172{bottom:330.681333pt;}
.y14a{bottom:332.681333pt;}
.yc6{bottom:337.414667pt;}
.y23{bottom:339.414667pt;}
.y12b{bottom:340.281333pt;}
.y36{bottom:341.148000pt;}
.y114{bottom:341.214667pt;}
.y70{bottom:341.348000pt;}
.yf6{bottom:342.414667pt;}
.y171{bottom:345.348000pt;}
.y149{bottom:347.348000pt;}
.yc5{bottom:352.081333pt;}
.y22{bottom:353.214667pt;}
.y12a{bottom:354.948000pt;}
.y35{bottom:355.814667pt;}
.y113{bottom:355.881333pt;}
.y6f{bottom:356.014667pt;}
.yf5{bottom:357.814667pt;}
.y170{bottom:360.014667pt;}
.y148{bottom:362.014667pt;}
.yc4{bottom:366.748000pt;}
.y21{bottom:367.014667pt;}
.y129{bottom:369.614667pt;}
.y34{bottom:370.481333pt;}
.y112{bottom:370.548000pt;}
.y6e{bottom:370.681333pt;}
.yf4{bottom:373.214667pt;}
.y147{bottom:376.681333pt;}
.y20{bottom:380.814667pt;}
.yc3{bottom:381.414667pt;}
.y16f{bottom:382.614667pt;}
.y128{bottom:384.281333pt;}
.y33{bottom:385.148000pt;}
.y111{bottom:385.214667pt;}
.y6d{bottom:385.348000pt;}
.yf3{bottom:388.614667pt;}
.y146{bottom:391.348000pt;}
.y94{bottom:393.281333pt;}
.y1f{bottom:394.614667pt;}
.yc2{bottom:396.081333pt;}
.y16e{bottom:397.281333pt;}
.y127{bottom:398.948000pt;}
.y32{bottom:399.814667pt;}
.y110{bottom:399.881333pt;}
.y6c{bottom:400.014667pt;}
.yf2{bottom:404.014667pt;}
.y93{bottom:407.948000pt;}
.y1e{bottom:408.414667pt;}
.yc1{bottom:410.748000pt;}
.y16d{bottom:411.948000pt;}
.y145{bottom:413.948000pt;}
.y31{bottom:414.481333pt;}
.y10f{bottom:414.548000pt;}
.y6b{bottom:414.681333pt;}
.y1d{bottom:422.214667pt;}
.y92{bottom:422.614667pt;}
.yc0{bottom:425.414667pt;}
.y16c{bottom:426.614667pt;}
.yf1{bottom:427.414667pt;}
.y144{bottom:428.614667pt;}
.y30{bottom:429.148000pt;}
.y10e{bottom:429.214667pt;}
.y6a{bottom:429.348000pt;}
.y1c{bottom:436.014667pt;}
.ybf{bottom:440.081333pt;}
.y16b{bottom:441.281333pt;}
.yf0{bottom:442.081333pt;}
.y143{bottom:443.281333pt;}
.y2f{bottom:443.814667pt;}
.y10d{bottom:443.881333pt;}
.y69{bottom:444.014667pt;}
.y91{bottom:445.214667pt;}
.y1b{bottom:449.814667pt;}
.ybe{bottom:454.748000pt;}
.y16a{bottom:455.948000pt;}
.yef{bottom:456.748000pt;}
.y142{bottom:457.948000pt;}
.y2e{bottom:458.481333pt;}
.y10c{bottom:458.548000pt;}
.y68{bottom:458.681333pt;}
.y90{bottom:459.881333pt;}
.y1a{bottom:463.614667pt;}
.y169{bottom:470.614667pt;}
.yee{bottom:471.414667pt;}
.y141{bottom:472.614667pt;}
.y2d{bottom:473.148000pt;}
.y10b{bottom:473.214667pt;}
.y67{bottom:473.348000pt;}
.y8f{bottom:474.548000pt;}
.ybd{bottom:477.348000pt;}
.y19{bottom:477.414667pt;}
.y168{bottom:485.281333pt;}
.yed{bottom:486.081333pt;}
.y140{bottom:487.281333pt;}
.y10a{bottom:487.881333pt;}
.y66{bottom:488.014667pt;}
.y8e{bottom:489.214667pt;}
.y18{bottom:491.214667pt;}
.ybc{bottom:492.014667pt;}
.y2c{bottom:493.081333pt;}
.y167{bottom:499.948000pt;}
.yec{bottom:500.748000pt;}
.y13f{bottom:501.948000pt;}
.y65{bottom:502.681333pt;}
.y8d{bottom:503.881333pt;}
.y17{bottom:505.014667pt;}
.ybb{bottom:506.681333pt;}
.y166{bottom:514.614667pt;}
.y13e{bottom:516.614667pt;}
.y8c{bottom:518.548000pt;}
.y16{bottom:518.814667pt;}
.yba{bottom:521.348000pt;}
.yeb{bottom:523.348000pt;}
.y64{bottom:525.281333pt;}
.y165{bottom:529.281333pt;}
.y13d{bottom:531.281333pt;}
.y15{bottom:532.614667pt;}
.y8b{bottom:533.214667pt;}
.yb9{bottom:536.014667pt;}
.yea{bottom:538.014667pt;}
.y63{bottom:539.948000pt;}
.y164{bottom:543.948000pt;}
.y13c{bottom:545.948000pt;}
.y14{bottom:546.414667pt;}
.y8a{bottom:547.881333pt;}
.yb8{bottom:550.681333pt;}
.y62{bottom:554.614667pt;}
.y163{bottom:558.614667pt;}
.ye9{bottom:560.614667pt;}
.y89{bottom:562.548000pt;}
.yb7{bottom:565.348000pt;}
.y61{bottom:569.281333pt;}
.y19e{bottom:571.281333pt;}
.y162{bottom:573.281333pt;}
.ye8{bottom:575.281333pt;}
.y13{bottom:575.614667pt;}
.y88{bottom:577.214667pt;}
.yb6{bottom:580.014667pt;}
.y19d{bottom:583.281333pt;}
.y60{bottom:583.948000pt;}
.y12{bottom:589.414667pt;}
.ye7{bottom:589.948000pt;}
.y87{bottom:591.881333pt;}
.y1bd{bottom:593.881333pt;}
.yb5{bottom:594.681333pt;}
.y19c{bottom:595.281333pt;}
.y161{bottom:595.881333pt;}
.y5f{bottom:598.614667pt;}
.y11{bottom:603.214667pt;}
.ye6{bottom:604.614667pt;}
.y86{bottom:606.548000pt;}
.y1bc{bottom:609.214667pt;}
.y160{bottom:610.548000pt;}
.y19b{bottom:610.614667pt;}
.y5e{bottom:613.281333pt;}
.y10{bottom:617.014667pt;}
.yb4{bottom:617.281333pt;}
.ye5{bottom:619.281333pt;}
.y85{bottom:621.214667pt;}
.y19a{bottom:622.614667pt;}
.y15f{bottom:625.214667pt;}
.y5d{bottom:627.948000pt;}
.yf{bottom:630.814667pt;}
.yb3{bottom:631.948000pt;}
.y1bb{bottom:633.214667pt;}
.ye4{bottom:633.948000pt;}
.y199{bottom:634.614667pt;}
.y84{bottom:635.881333pt;}
.y15e{bottom:639.881333pt;}
.y5c{bottom:642.614667pt;}
.y1ba{bottom:645.214667pt;}
.yb2{bottom:646.614667pt;}
.ye3{bottom:648.614667pt;}
.y83{bottom:650.548000pt;}
.y1b9{bottom:657.214667pt;}
.y5b{bottom:657.281333pt;}
.y198{bottom:658.614667pt;}
.y15d{bottom:659.814667pt;}
.yb1{bottom:661.281333pt;}
.ye{bottom:663.281333pt;}
.y82{bottom:665.214667pt;}
.y197{bottom:670.614667pt;}
.y5a{bottom:671.948000pt;}
.y1b8{bottom:672.548000pt;}
.yb0{bottom:675.948000pt;}
.yd{bottom:677.081333pt;}
.ye2{bottom:677.948000pt;}
.y81{bottom:679.881333pt;}
.y1b7{bottom:684.548000pt;}
.y15c{bottom:685.881333pt;}
.y196{bottom:685.948000pt;}
.yaf{bottom:690.614667pt;}
.yc{bottom:690.881333pt;}
.ye1{bottom:692.614667pt;}
.y59{bottom:694.548000pt;}
.y1b6{bottom:696.548000pt;}
.y195{bottom:697.948000pt;}
.y126{bottom:699.814667pt;}
.y15b{bottom:700.548000pt;}
.yb{bottom:704.681333pt;}
.yae{bottom:705.281333pt;}
.y13b{bottom:707.281333pt;}
.y1b5{bottom:708.548000pt;}
.y58{bottom:709.214667pt;}
.y194{bottom:709.948000pt;}
.y125{bottom:710.814667pt;}
.ye0{bottom:715.214667pt;}
.ya{bottom:718.481333pt;}
.y1b4{bottom:720.548000pt;}
.y13a{bottom:721.948000pt;}
.y57{bottom:723.881333pt;}
.yad{bottom:727.881333pt;}
.ydf{bottom:729.881333pt;}
.y1b3{bottom:735.881333pt;}
.y139{bottom:736.614667pt;}
.y193{bottom:737.281333pt;}
.y56{bottom:738.548000pt;}
.yac{bottom:742.548000pt;}
.yde{bottom:744.548000pt;}
.y1b2{bottom:747.881333pt;}
.y192{bottom:749.281333pt;}
.y138{bottom:751.281333pt;}
.y55{bottom:753.214667pt;}
.yab{bottom:757.214667pt;}
.ydd{bottom:759.214667pt;}
.y1b1{bottom:759.881333pt;}
.y191{bottom:761.281333pt;}
.y137{bottom:765.948000pt;}
.y54{bottom:767.881333pt;}
.yaa{bottom:771.881333pt;}
.y190{bottom:773.281333pt;}
.ydc{bottom:773.881333pt;}
.y9{bottom:776.081333pt;}
.y136{bottom:780.614667pt;}
.y53{bottom:782.548000pt;}
.ya9{bottom:786.548000pt;}
.y1b0{bottom:787.214667pt;}
.ydb{bottom:788.548000pt;}
.y18f{bottom:788.614667pt;}
.y8{bottom:791.481333pt;}
.y109{bottom:795.748000pt;}
.y52{bottom:797.214667pt;}
.y1af{bottom:799.214667pt;}
.y18e{bottom:800.614667pt;}
.ya8{bottom:801.214667pt;}
.yda{bottom:803.214667pt;}
.y124{bottom:805.148000pt;}
.y108{bottom:806.748000pt;}
.y7{bottom:806.881333pt;}
.y1ae{bottom:811.214667pt;}
.y51{bottom:811.881333pt;}
.y18d{bottom:812.614667pt;}
.y135{bottom:817.881333pt;}
.y123{bottom:819.814667pt;}
.ya7{bottom:821.148000pt;}
.y6{bottom:822.281333pt;}
.y1ad{bottom:823.214667pt;}
.y18c{bottom:824.614667pt;}
.yd9{bottom:825.814667pt;}
.y50{bottom:826.548000pt;}
.y15a{bottom:832.548000pt;}
.y107{bottom:834.481333pt;}
.y1ac{bottom:835.214667pt;}
.y18b{bottom:836.614667pt;}
.yd8{bottom:840.481333pt;}
.y4f{bottom:841.214667pt;}
.ya6{bottom:847.214667pt;}
.y18a{bottom:848.614667pt;}
.y106{bottom:849.148000pt;}
.y1ab{bottom:850.548000pt;}
.yd7{bottom:855.148000pt;}
.y4e{bottom:855.881333pt;}
.y189{bottom:860.614667pt;}
.ya5{bottom:861.881333pt;}
.y1aa{bottom:862.548000pt;}
.y105{bottom:863.814667pt;}
.yd6{bottom:869.814667pt;}
.y188{bottom:872.614667pt;}
.y1a9{bottom:874.548000pt;}
.ya4{bottom:876.548000pt;}
.y4d{bottom:878.481333pt;}
.yd5{bottom:884.481333pt;}
.y1a8{bottom:886.548000pt;}
.y187{bottom:887.948000pt;}
.y5{bottom:888.481333pt;}
.y4c{bottom:893.148000pt;}
.y1a7{bottom:898.548000pt;}
.ya3{bottom:899.148000pt;}
.y186{bottom:899.948000pt;}
.y4b{bottom:907.814667pt;}
.y1a6{bottom:910.548000pt;}
.y185{bottom:911.948000pt;}
.ya2{bottom:913.814667pt;}
.y4{bottom:919.148000pt;}
.y4a{bottom:922.481333pt;}
.y1a5{bottom:922.548000pt;}
.y184{bottom:923.948000pt;}
.ya1{bottom:928.481333pt;}
.y1a4{bottom:934.548000pt;}
.y49{bottom:937.148000pt;}
.y183{bottom:939.281333pt;}
.ya0{bottom:943.148000pt;}
.y1a3{bottom:946.548000pt;}
.y134{bottom:951.081333pt;}
.y182{bottom:951.281333pt;}
.y48{bottom:951.814667pt;}
.y1a2{bottom:961.881333pt;}
.y181{bottom:963.281333pt;}
.y9f{bottom:965.748000pt;}
.y47{bottom:966.481333pt;}
.y1a1{bottom:973.881333pt;}
.y180{bottom:975.281333pt;}
.y9e{bottom:980.414667pt;}
.y46{bottom:981.148000pt;}
.y1a0{bottom:985.881333pt;}
.y45{bottom:995.814667pt;}
.y19f{bottom:997.881333pt;}
.y3{bottom:1019.014667pt;}
.y2{bottom:1034.414667pt;}
.hd{height:21.493229pt;}
.hc{height:29.645833pt;}
.he{height:31.062500pt;}
.h9{height:32.507812pt;}
.h8{height:32.531250pt;}
.h7{height:33.328125pt;}
.h6{height:33.351562pt;}
.h5{height:36.119792pt;}
.hf{height:36.145833pt;}
.h3{height:37.031250pt;}
.ha{height:37.057292pt;}
.hb{height:42.293229pt;}
.h4{height:74.062500pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:75.733333pt;}
.x35{left:84.000000pt;}
.x20{left:94.666667pt;}
.xa{left:95.800000pt;}
.x3e{left:99.733333pt;}
.x7{left:104.533333pt;}
.x3{left:109.666667pt;}
.x1f{left:112.800000pt;}
.x2f{left:113.866667pt;}
.x9{left:116.600000pt;}
.xb{left:118.133333pt;}
.xe{left:119.066667pt;}
.x6{left:126.400000pt;}
.x4{left:132.666667pt;}
.x31{left:137.733333pt;}
.xd{left:140.800000pt;}
.xc{left:151.466667pt;}
.xf{left:152.933333pt;}
.x30{left:157.733333pt;}
.x32{left:161.533333pt;}
.x3d{left:193.666667pt;}
.x29{left:196.733333pt;}
.x8{left:217.133333pt;}
.x2{left:219.800000pt;}
.x16{left:319.666667pt;}
.x28{left:332.533333pt;}
.x14{left:335.333333pt;}
.x17{left:342.933333pt;}
.x13{left:343.866667pt;}
.x36{left:348.533333pt;}
.x19{left:351.333333pt;}
.x10{left:355.333333pt;}
.x15{left:367.666667pt;}
.x18{left:376.800000pt;}
.x11{left:380.266667pt;}
.x12{left:388.933333pt;}
.x2c{left:399.533333pt;}
.x22{left:418.466667pt;}
.x3f{left:423.533333pt;}
.x1{left:426.733333pt;}
.x37{left:433.733333pt;}
.x39{left:435.266667pt;}
.x21{left:436.733333pt;}
.x24{left:437.666667pt;}
.x3c{left:444.933333pt;}
.x2d{left:461.000000pt;}
.x27{left:465.266667pt;}
.x34{left:476.933333pt;}
.x33{left:485.333333pt;}
.x3b{left:501.733333pt;}
.x3a{left:514.333333pt;}
.x23{left:516.600000pt;}
.x2a{left:531.466667pt;}
.x1e{left:554.533333pt;}
.x1c{left:566.800000pt;}
.x1a{left:569.533333pt;}
.x1b{left:578.333333pt;}
.x26{left:588.200000pt;}
.x25{left:598.533333pt;}
.x1d{left:600.666667pt;}
.x5{left:630.066667pt;}
.x38{left:635.533333pt;}
.x2e{left:671.000000pt;}
}




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