
    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_4d026c7a074b76b4eec699ec.woff')format("woff");}.ff1{font-family:ff1;line-height:1.166992;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_bf02dc3a97aa23332d6196d1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_0eaf1804dd54ed97c1ed86f4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.124512;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_4a251976d92c0c95b162ea93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_fe9bdd36c9bcd7b4e8624221.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.084000px;}
.ls1{letter-spacing:0.168000px;}
.ls0{letter-spacing:0.228000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-48.024000px;}
.ws7{word-spacing:-29.232000px;}
.ws4{word-spacing:-27.144000px;}
.ws1{word-spacing:-25.056000px;}
.ws3{word-spacing:-22.968000px;}
.ws2{word-spacing:-20.922000px;}
.ws8{word-spacing:-19.020000px;}
.ws9{word-spacing:-18.792000px;}
.ws6{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-413.796000px;}
._2{margin-left:-48.978000px;}
._0{margin-left:-1.008000px;}
._1{width:1.098000px;}
._3{width:2.772000px;}
._6{width:4.206000px;}
._7{width:6.402000px;}
._8{width:7.548000px;}
._a{width:8.592000px;}
._b{width:9.780000px;}
._c{width:10.980000px;}
._9{width:15.960000px;}
._5{width:367.554000px;}
.fc4{color:rgb(7,55,99);}
.fc3{color:rgb(0,0,128);}
.fc5{color:rgb(12,52,61);}
.fc2{color:rgb(17,85,204);}
.fc6{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(67,67,67);}
.fs8{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs0{font-size:138.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1f{bottom:33.991500px;}
.y3b{bottom:45.991500px;}
.y1e{bottom:120.391500px;}
.yf7{bottom:125.491500px;}
.y175{bottom:129.091500px;}
.y13c{bottom:129.841500px;}
.y128{bottom:131.641500px;}
.y15e{bottom:137.191500px;}
.y6e{bottom:138.241500px;}
.y85{bottom:143.641500px;}
.y1d{bottom:149.191500px;}
.y1a4{bottom:153.841500px;}
.yf6{bottom:154.291500px;}
.y13b{bottom:157.291500px;}
.y174{bottom:157.891500px;}
.y127{bottom:160.441500px;}
.y158{bottom:162.691500px;}
.y15d{bottom:165.991500px;}
.y6d{bottom:167.041500px;}
.yaa{bottom:170.941500px;}
.y84{bottom:172.441500px;}
.y96{bottom:176.791500px;}
.y1c{bottom:177.991500px;}
.y1a3{bottom:182.641500px;}
.yf5{bottom:183.091500px;}
.y13a{bottom:186.091500px;}
.y173{bottom:186.691500px;}
.y126{bottom:189.241500px;}
.y157{bottom:191.491500px;}
.ybb{bottom:194.791500px;}
.y6c{bottom:195.841500px;}
.ya9{bottom:199.741500px;}
.y83{bottom:201.241500px;}
.y1bb{bottom:202.141500px;}
.y95{bottom:205.591500px;}
.y1b{bottom:206.791500px;}
.y1a2{bottom:211.441500px;}
.yf4{bottom:211.891500px;}
.yd0{bottom:212.791500px;}
.y139{bottom:214.891500px;}
.y172{bottom:215.491500px;}
.y125{bottom:218.041500px;}
.y156{bottom:220.291500px;}
.yba{bottom:223.591500px;}
.y6b{bottom:224.641500px;}
.y3a{bottom:225.691500px;}
.y1ba{bottom:228.391500px;}
.ya8{bottom:228.541500px;}
.y82{bottom:230.041500px;}
.y94{bottom:234.391500px;}
.y1a{bottom:235.591500px;}
.y1a1{bottom:240.241500px;}
.yf3{bottom:240.691500px;}
.ycf{bottom:241.591500px;}
.y138{bottom:243.691500px;}
.y171{bottom:244.291500px;}
.y155{bottom:249.091500px;}
.y124{bottom:249.241500px;}
.y110{bottom:252.241500px;}
.yb9{bottom:252.391500px;}
.y6a{bottom:253.441500px;}
.y39{bottom:254.491500px;}
.ya7{bottom:257.341500px;}
.y81{bottom:258.841500px;}
.y93{bottom:263.191500px;}
.y19{bottom:266.791500px;}
.y1a0{bottom:269.041500px;}
.yce{bottom:270.391500px;}
.yf2{bottom:271.891500px;}
.y56{bottom:272.341500px;}
.y137{bottom:272.491500px;}
.y170{bottom:273.091500px;}
.y154{bottom:277.891500px;}
.y10f{bottom:281.041500px;}
.yb8{bottom:281.191500px;}
.y69{bottom:282.241500px;}
.y38{bottom:283.291500px;}
.y15c{bottom:283.741500px;}
.ya6{bottom:286.141500px;}
.y80{bottom:290.041500px;}
.y92{bottom:291.991500px;}
.y1b9{bottom:292.291500px;}
.y195{bottom:295.141500px;}
.y19f{bottom:297.841500px;}
.ycd{bottom:299.191500px;}
.y55{bottom:301.141500px;}
.y136{bottom:301.291500px;}
.y16f{bottom:304.291500px;}
.y153{bottom:309.091500px;}
.y123{bottom:309.241500px;}
.y10e{bottom:309.841500px;}
.yb7{bottom:309.991500px;}
.y68{bottom:311.041500px;}
.y37{bottom:312.091500px;}
.yd6{bottom:314.941500px;}
.ya5{bottom:317.341500px;}
.y188{bottom:317.491500px;}
.y91{bottom:320.791500px;}
.y194{bottom:323.941500px;}
.y19e{bottom:326.641500px;}
.y18{bottom:326.791500px;}
.y1b8{bottom:327.241500px;}
.ycc{bottom:327.991500px;}
.y54{bottom:329.941500px;}
.yf1{bottom:331.891500px;}
.y135{bottom:332.641500px;}
.y122{bottom:338.041500px;}
.y10d{bottom:338.641500px;}
.y36{bottom:340.891500px;}
.yb6{bottom:341.341500px;}
.y67{bottom:342.391500px;}
.yd5{bottom:343.741500px;}
.y187{bottom:346.291500px;}
.y7f{bottom:350.041500px;}
.y90{bottom:351.991500px;}
.y193{bottom:352.741500px;}
.y17{bottom:355.591500px;}
.y16e{bottom:356.641500px;}
.ycb{bottom:356.791500px;}
.y152{bottom:357.541500px;}
.y19d{bottom:357.841500px;}
.y53{bottom:358.741500px;}
.yf0{bottom:360.691500px;}
.y121{bottom:366.841500px;}
.y10c{bottom:367.441500px;}
.y1b7{bottom:368.791500px;}
.y35{bottom:369.691500px;}
.yd4{bottom:372.541500px;}
.yf8{bottom:374.941500px;}
.y186{bottom:375.091500px;}
.ya4{bottom:377.341500px;}
.y7e{bottom:378.841500px;}
.y192{bottom:381.541500px;}
.y151{bottom:381.991500px;}
.y16{bottom:384.391500px;}
.y16d{bottom:385.441500px;}
.y52{bottom:387.541500px;}
.yca{bottom:387.991500px;}
.yef{bottom:389.491500px;}
.y134{bottom:392.641500px;}
.y120{bottom:395.641500px;}
.y10b{bottom:396.241500px;}
.y1b6{bottom:397.591500px;}
.y34{bottom:398.491500px;}
.yb5{bottom:401.341500px;}
.y66{bottom:402.691500px;}
.yd3{bottom:403.741500px;}
.y185{bottom:403.891500px;}
.ya3{bottom:406.141500px;}
.y7d{bottom:407.641500px;}
.y191{bottom:410.341500px;}
.y8f{bottom:411.991500px;}
.y15{bottom:413.191500px;}
.y16c{bottom:414.241500px;}
.y19c{bottom:416.641500px;}
.yee{bottom:418.291500px;}
.y51{bottom:418.891500px;}
.y133{bottom:421.441500px;}
.y11f{bottom:426.991500px;}
.y10a{bottom:427.441500px;}
.y33{bottom:429.841500px;}
.yb4{bottom:430.141500px;}
.y65{bottom:431.491500px;}
.y159{bottom:432.541500px;}
.y184{bottom:432.691500px;}
.ya2{bottom:434.941500px;}
.y7c{bottom:436.441500px;}
.y8e{bottom:440.791500px;}
.y190{bottom:441.691500px;}
.y14{bottom:441.991500px;}
.y1b5{bottom:442.291500px;}
.y16b{bottom:443.041500px;}
.y19b{bottom:444.091500px;}
.yed{bottom:447.091500px;}
.yc9{bottom:447.991500px;}
.y132{bottom:450.241500px;}
.y150{bottom:453.391500px;}
.yb3{bottom:458.941500px;}
.y64{bottom:460.291500px;}
.yd8{bottom:461.341500px;}
.y183{bottom:461.491500px;}
.ya1{bottom:463.741500px;}
.y7b{bottom:465.241500px;}
.y1b4{bottom:468.391500px;}
.y8d{bottom:469.591500px;}
.y13{bottom:470.791500px;}
.y16a{bottom:471.841500px;}
.y19a{bottom:472.891500px;}
.yc8{bottom:476.791500px;}
.y50{bottom:478.891500px;}
.y131{bottom:479.041500px;}
.y11e{bottom:479.191500px;}
.yec{bottom:480.241500px;}
.y14f{bottom:482.191500px;}
.y109{bottom:487.441500px;}
.yb2{bottom:487.741500px;}
.y63{bottom:489.091500px;}
.y32{bottom:489.841500px;}
.y15b{bottom:490.141500px;}
.ya0{bottom:492.541500px;}
.y182{bottom:492.841500px;}
.y7a{bottom:494.041500px;}
.y1b3{bottom:494.641500px;}
.y8c{bottom:498.391500px;}
.y169{bottom:500.641500px;}
.y18f{bottom:501.691500px;}
.y12{bottom:502.141500px;}
.yeb{bottom:504.391500px;}
.yc7{bottom:505.591500px;}
.y4f{bottom:507.691500px;}
.y130{bottom:507.841500px;}
.y11d{bottom:507.991500px;}
.y14e{bottom:510.991500px;}
.y108{bottom:516.241500px;}
.y197{bottom:516.541500px;}
.y62{bottom:517.891500px;}
.y31{bottom:518.641500px;}
.yb1{bottom:518.941500px;}
.y9f{bottom:521.341500px;}
.y79{bottom:522.841500px;}
.y8b{bottom:527.191500px;}
.y18e{bottom:530.491500px;}
.y168{bottom:531.841500px;}
.yc6{bottom:534.391500px;}
.y4e{bottom:536.491500px;}
.y12f{bottom:536.641500px;}
.y11c{bottom:536.791500px;}
.y1b2{bottom:539.191500px;}
.y14d{bottom:539.791500px;}
.y107{bottom:545.041500px;}
.y30{bottom:547.441500px;}
.y196{bottom:547.741500px;}
.y61{bottom:549.241500px;}
.yd2{bottom:550.141500px;}
.y78{bottom:551.641500px;}
.y9e{bottom:552.691500px;}
.y181{bottom:552.841500px;}
.y11{bottom:553.591500px;}
.y8a{bottom:555.991500px;}
.y18d{bottom:559.291500px;}
.yc5{bottom:563.191500px;}
.yea{bottom:564.391500px;}
.y4d{bottom:565.291500px;}
.y12e{bottom:565.441500px;}
.y11b{bottom:565.591500px;}
.y14c{bottom:568.591500px;}
.y106{bottom:573.841500px;}
.y2f{bottom:576.241500px;}
.y10{bottom:578.041500px;}
.yb0{bottom:578.941500px;}
.y180{bottom:581.641500px;}
.y77{bottom:582.991500px;}
.y167{bottom:584.191500px;}
.y89{bottom:587.341500px;}
.y18c{bottom:588.091500px;}
.ye9{bottom:593.191500px;}
.y4c{bottom:594.091500px;}
.y11a{bottom:594.391500px;}
.yc4{bottom:594.541500px;}
.y12d{bottom:596.641500px;}
.y14b{bottom:599.791500px;}
.y105{bottom:602.641500px;}
.y2e{bottom:607.441500px;}
.yaf{bottom:607.741500px;}
.y60{bottom:609.241500px;}
.y17f{bottom:610.441500px;}
.y9d{bottom:612.691500px;}
.y166{bottom:612.991500px;}
.y18b{bottom:616.891500px;}
.y199{bottom:619.291500px;}
.ye8{bottom:621.991500px;}
.y4b{bottom:622.891500px;}
.y119{bottom:623.191500px;}
.y104{bottom:631.441500px;}
.yae{bottom:636.541500px;}
.y5f{bottom:638.041500px;}
.y17e{bottom:639.241500px;}
.y9c{bottom:641.491500px;}
.y165{bottom:641.791500px;}
.y88{bottom:642.391500px;}
.y76{bottom:642.991500px;}
.y18a{bottom:648.091500px;}
.y12c{bottom:649.141500px;}
.ye7{bottom:650.791500px;}
.y118{bottom:651.991500px;}
.y4a{bottom:654.091500px;}
.yc3{bottom:654.541500px;}
.yf{bottom:656.341500px;}
.y14a{bottom:659.791500px;}
.y103{bottom:660.241500px;}
.yad{bottom:665.341500px;}
.y5e{bottom:666.841500px;}
.yd1{bottom:667.891500px;}
.y9b{bottom:670.291500px;}
.y17d{bottom:670.441500px;}
.y164{bottom:670.591500px;}
.y2d{bottom:671.191500px;}
.y75{bottom:671.791500px;}
.y12b{bottom:677.941500px;}
.y198{bottom:679.291500px;}
.y117{bottom:680.791500px;}
.ye6{bottom:682.141500px;}
.y1b1{bottom:683.191500px;}
.yc2{bottom:683.341500px;}
.ye{bottom:685.141500px;}
.y149{bottom:688.591500px;}
.y102{bottom:691.591500px;}
.yac{bottom:694.141500px;}
.y2c{bottom:695.641500px;}
.yd7{bottom:696.691500px;}
.y9a{bottom:699.091500px;}
.y163{bottom:699.391500px;}
.y74{bottom:700.591500px;}
.y12a{bottom:706.741500px;}
.y189{bottom:708.091500px;}
.y1b0{bottom:711.991500px;}
.yc1{bottom:712.141500px;}
.yd{bottom:713.941500px;}
.y49{bottom:714.091500px;}
.y148{bottom:717.391500px;}
.y5d{bottom:724.441500px;}
.yab{bottom:725.491500px;}
.y99{bottom:727.891500px;}
.y162{bottom:728.191500px;}
.y73{bottom:729.391500px;}
.y17c{bottom:730.441500px;}
.y129{bottom:735.541500px;}
.ye5{bottom:736.891500px;}
.y1af{bottom:740.791500px;}
.yc0{bottom:740.941500px;}
.yc{bottom:742.741500px;}
.y48{bottom:742.891500px;}
.y147{bottom:746.191500px;}
.y101{bottom:751.591500px;}
.y5c{bottom:753.241500px;}
.y87{bottom:756.691500px;}
.y72{bottom:758.191500px;}
.y17b{bottom:759.241500px;}
.y161{bottom:759.391500px;}
.y116{bottom:764.341500px;}
.ye4{bottom:765.691500px;}
.y1ae{bottom:769.591500px;}
.ybf{bottom:769.741500px;}
.yb{bottom:771.541500px;}
.y47{bottom:771.691500px;}
.y146{bottom:774.991500px;}
.y100{bottom:780.391500px;}
.y5b{bottom:784.441500px;}
.y2b{bottom:785.491500px;}
.y17a{bottom:788.041500px;}
.y71{bottom:789.391500px;}
.y115{bottom:793.141500px;}
.ye3{bottom:794.491500px;}
.y1ad{bottom:798.391500px;}
.ya{bottom:800.341500px;}
.y46{bottom:800.491500px;}
.ybe{bottom:800.941500px;}
.y145{bottom:806.341500px;}
.yff{bottom:809.191500px;}
.y2a{bottom:814.291500px;}
.y179{bottom:816.841500px;}
.y114{bottom:821.941500px;}
.ye2{bottom:823.291500px;}
.y1ac{bottom:827.191500px;}
.y9{bottom:829.141500px;}
.y45{bottom:829.291500px;}
.yfe{bottom:837.991500px;}
.y5a{bottom:839.491500px;}
.y29{bottom:843.091500px;}
.y70{bottom:844.441500px;}
.y98{bottom:845.491500px;}
.y178{bottom:845.641500px;}
.y113{bottom:850.741500px;}
.ybd{bottom:852.391500px;}
.ye1{bottom:854.641500px;}
.y1ab{bottom:855.991500px;}
.y44{bottom:858.091500px;}
.y8{bottom:863.341500px;}
.y144{bottom:864.991500px;}
.y59{bottom:868.291500px;}
.yfd{bottom:869.191500px;}
.y28{bottom:871.891500px;}
.y6f{bottom:872.491500px;}
.y15a{bottom:874.291500px;}
.ybc{bottom:876.841500px;}
.y177{bottom:876.991500px;}
.y112{bottom:879.541500px;}
.y1aa{bottom:887.191500px;}
.y43{bottom:889.441500px;}
.y143{bottom:892.441500px;}
.y27{bottom:900.691500px;}
.y86{bottom:903.091500px;}
.y97{bottom:905.491500px;}
.y111{bottom:910.891500px;}
.ye0{bottom:914.641500px;}
.y142{bottom:921.241500px;}
.y7{bottom:924.691500px;}
.y160{bottom:929.491500px;}
.y26{bottom:931.891500px;}
.y58{bottom:934.291500px;}
.yfc{bottom:934.891500px;}
.y176{bottom:935.641500px;}
.ydf{bottom:943.441500px;}
.y42{bottom:949.441500px;}
.y141{bottom:950.041500px;}
.y1a9{bottom:952.891500px;}
.y6{bottom:953.491500px;}
.y15f{bottom:960.691500px;}
.y57{bottom:963.091500px;}
.yfb{bottom:963.691500px;}
.yde{bottom:972.241500px;}
.y41{bottom:978.241500px;}
.y140{bottom:978.841500px;}
.y1a8{bottom:981.691500px;}
.y5{bottom:982.291500px;}
.y25{bottom:991.891500px;}
.yfa{bottom:992.491500px;}
.ydd{bottom:1001.041500px;}
.y40{bottom:1007.041500px;}
.y13f{bottom:1007.641500px;}
.y1a7{bottom:1010.491500px;}
.y4{bottom:1011.091500px;}
.y24{bottom:1020.691500px;}
.yf9{bottom:1025.491500px;}
.ydc{bottom:1029.841500px;}
.y3f{bottom:1035.841500px;}
.y13e{bottom:1036.441500px;}
.y1a6{bottom:1039.291500px;}
.y23{bottom:1049.491500px;}
.ydb{bottom:1061.041500px;}
.y3e{bottom:1067.041500px;}
.y13d{bottom:1067.791500px;}
.y3{bottom:1070.041500px;}
.y1a5{bottom:1070.491500px;}
.y22{bottom:1078.291500px;}
.y21{bottom:1107.091500px;}
.y3d{bottom:1109.341500px;}
.yda{bottom:1112.491500px;}
.y2{bottom:1118.491500px;}
.y3c{bottom:1135.591500px;}
.yd9{bottom:1136.941500px;}
.y20{bottom:1138.441500px;}
.ha{height:54.433594px;}
.hc{height:55.634766px;}
.hd{height:55.869141px;}
.h5{height:61.198242px;}
.h6{height:61.456055px;}
.h9{height:65.320312px;}
.h4{height:67.042969px;}
.h8{height:72.629883px;}
.h7{height:78.216797px;}
.hb{height:83.803711px;}
.h3{height:145.259766px;}
.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;}
.x1{left:81.900000px;}
.x15{left:85.200000px;}
.x3{left:103.950000px;}
.x13{left:108.150000px;}
.x16{left:129.450000px;}
.x14{left:152.400000px;}
.xa{left:181.200000px;}
.x9{left:187.650000px;}
.xb{left:194.700000px;}
.x6{left:199.800000px;}
.x8{left:215.700000px;}
.x5{left:224.250000px;}
.x7{left:258.000000px;}
.x2{left:322.500000px;}
.x4{left:381.150000px;}
.xf{left:489.750000px;}
.x12{left:494.700000px;}
.x11{left:499.650000px;}
.xe{left:532.650000px;}
.xd{left:541.500000px;}
.x10{left:561.150000px;}
.xc{left:563.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.074667pt;}
.ls1{letter-spacing:0.149333pt;}
.ls0{letter-spacing:0.202667pt;}
.ws0{word-spacing:-42.688000pt;}
.ws7{word-spacing:-25.984000pt;}
.ws4{word-spacing:-24.128000pt;}
.ws1{word-spacing:-22.272000pt;}
.ws3{word-spacing:-20.416000pt;}
.ws2{word-spacing:-18.597333pt;}
.ws8{word-spacing:-16.906667pt;}
.ws9{word-spacing:-16.704000pt;}
.ws6{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-367.818667pt;}
._2{margin-left:-43.536000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.976000pt;}
._3{width:2.464000pt;}
._6{width:3.738667pt;}
._7{width:5.690667pt;}
._8{width:6.709333pt;}
._a{width:7.637333pt;}
._b{width:8.693333pt;}
._c{width:9.760000pt;}
._9{width:14.186667pt;}
._5{width:326.714667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs0{font-size:122.666667pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1f{bottom:30.214667pt;}
.y3b{bottom:40.881333pt;}
.y1e{bottom:107.014667pt;}
.yf7{bottom:111.548000pt;}
.y175{bottom:114.748000pt;}
.y13c{bottom:115.414667pt;}
.y128{bottom:117.014667pt;}
.y15e{bottom:121.948000pt;}
.y6e{bottom:122.881333pt;}
.y85{bottom:127.681333pt;}
.y1d{bottom:132.614667pt;}
.y1a4{bottom:136.748000pt;}
.yf6{bottom:137.148000pt;}
.y13b{bottom:139.814667pt;}
.y174{bottom:140.348000pt;}
.y127{bottom:142.614667pt;}
.y158{bottom:144.614667pt;}
.y15d{bottom:147.548000pt;}
.y6d{bottom:148.481333pt;}
.yaa{bottom:151.948000pt;}
.y84{bottom:153.281333pt;}
.y96{bottom:157.148000pt;}
.y1c{bottom:158.214667pt;}
.y1a3{bottom:162.348000pt;}
.yf5{bottom:162.748000pt;}
.y13a{bottom:165.414667pt;}
.y173{bottom:165.948000pt;}
.y126{bottom:168.214667pt;}
.y157{bottom:170.214667pt;}
.ybb{bottom:173.148000pt;}
.y6c{bottom:174.081333pt;}
.ya9{bottom:177.548000pt;}
.y83{bottom:178.881333pt;}
.y1bb{bottom:179.681333pt;}
.y95{bottom:182.748000pt;}
.y1b{bottom:183.814667pt;}
.y1a2{bottom:187.948000pt;}
.yf4{bottom:188.348000pt;}
.yd0{bottom:189.148000pt;}
.y139{bottom:191.014667pt;}
.y172{bottom:191.548000pt;}
.y125{bottom:193.814667pt;}
.y156{bottom:195.814667pt;}
.yba{bottom:198.748000pt;}
.y6b{bottom:199.681333pt;}
.y3a{bottom:200.614667pt;}
.y1ba{bottom:203.014667pt;}
.ya8{bottom:203.148000pt;}
.y82{bottom:204.481333pt;}
.y94{bottom:208.348000pt;}
.y1a{bottom:209.414667pt;}
.y1a1{bottom:213.548000pt;}
.yf3{bottom:213.948000pt;}
.ycf{bottom:214.748000pt;}
.y138{bottom:216.614667pt;}
.y171{bottom:217.148000pt;}
.y155{bottom:221.414667pt;}
.y124{bottom:221.548000pt;}
.y110{bottom:224.214667pt;}
.yb9{bottom:224.348000pt;}
.y6a{bottom:225.281333pt;}
.y39{bottom:226.214667pt;}
.ya7{bottom:228.748000pt;}
.y81{bottom:230.081333pt;}
.y93{bottom:233.948000pt;}
.y19{bottom:237.148000pt;}
.y1a0{bottom:239.148000pt;}
.yce{bottom:240.348000pt;}
.yf2{bottom:241.681333pt;}
.y56{bottom:242.081333pt;}
.y137{bottom:242.214667pt;}
.y170{bottom:242.748000pt;}
.y154{bottom:247.014667pt;}
.y10f{bottom:249.814667pt;}
.yb8{bottom:249.948000pt;}
.y69{bottom:250.881333pt;}
.y38{bottom:251.814667pt;}
.y15c{bottom:252.214667pt;}
.ya6{bottom:254.348000pt;}
.y80{bottom:257.814667pt;}
.y92{bottom:259.548000pt;}
.y1b9{bottom:259.814667pt;}
.y195{bottom:262.348000pt;}
.y19f{bottom:264.748000pt;}
.ycd{bottom:265.948000pt;}
.y55{bottom:267.681333pt;}
.y136{bottom:267.814667pt;}
.y16f{bottom:270.481333pt;}
.y153{bottom:274.748000pt;}
.y123{bottom:274.881333pt;}
.y10e{bottom:275.414667pt;}
.yb7{bottom:275.548000pt;}
.y68{bottom:276.481333pt;}
.y37{bottom:277.414667pt;}
.yd6{bottom:279.948000pt;}
.ya5{bottom:282.081333pt;}
.y188{bottom:282.214667pt;}
.y91{bottom:285.148000pt;}
.y194{bottom:287.948000pt;}
.y19e{bottom:290.348000pt;}
.y18{bottom:290.481333pt;}
.y1b8{bottom:290.881333pt;}
.ycc{bottom:291.548000pt;}
.y54{bottom:293.281333pt;}
.yf1{bottom:295.014667pt;}
.y135{bottom:295.681333pt;}
.y122{bottom:300.481333pt;}
.y10d{bottom:301.014667pt;}
.y36{bottom:303.014667pt;}
.yb6{bottom:303.414667pt;}
.y67{bottom:304.348000pt;}
.yd5{bottom:305.548000pt;}
.y187{bottom:307.814667pt;}
.y7f{bottom:311.148000pt;}
.y90{bottom:312.881333pt;}
.y193{bottom:313.548000pt;}
.y17{bottom:316.081333pt;}
.y16e{bottom:317.014667pt;}
.ycb{bottom:317.148000pt;}
.y152{bottom:317.814667pt;}
.y19d{bottom:318.081333pt;}
.y53{bottom:318.881333pt;}
.yf0{bottom:320.614667pt;}
.y121{bottom:326.081333pt;}
.y10c{bottom:326.614667pt;}
.y1b7{bottom:327.814667pt;}
.y35{bottom:328.614667pt;}
.yd4{bottom:331.148000pt;}
.yf8{bottom:333.281333pt;}
.y186{bottom:333.414667pt;}
.ya4{bottom:335.414667pt;}
.y7e{bottom:336.748000pt;}
.y192{bottom:339.148000pt;}
.y151{bottom:339.548000pt;}
.y16{bottom:341.681333pt;}
.y16d{bottom:342.614667pt;}
.y52{bottom:344.481333pt;}
.yca{bottom:344.881333pt;}
.yef{bottom:346.214667pt;}
.y134{bottom:349.014667pt;}
.y120{bottom:351.681333pt;}
.y10b{bottom:352.214667pt;}
.y1b6{bottom:353.414667pt;}
.y34{bottom:354.214667pt;}
.yb5{bottom:356.748000pt;}
.y66{bottom:357.948000pt;}
.yd3{bottom:358.881333pt;}
.y185{bottom:359.014667pt;}
.ya3{bottom:361.014667pt;}
.y7d{bottom:362.348000pt;}
.y191{bottom:364.748000pt;}
.y8f{bottom:366.214667pt;}
.y15{bottom:367.281333pt;}
.y16c{bottom:368.214667pt;}
.y19c{bottom:370.348000pt;}
.yee{bottom:371.814667pt;}
.y51{bottom:372.348000pt;}
.y133{bottom:374.614667pt;}
.y11f{bottom:379.548000pt;}
.y10a{bottom:379.948000pt;}
.y33{bottom:382.081333pt;}
.yb4{bottom:382.348000pt;}
.y65{bottom:383.548000pt;}
.y159{bottom:384.481333pt;}
.y184{bottom:384.614667pt;}
.ya2{bottom:386.614667pt;}
.y7c{bottom:387.948000pt;}
.y8e{bottom:391.814667pt;}
.y190{bottom:392.614667pt;}
.y14{bottom:392.881333pt;}
.y1b5{bottom:393.148000pt;}
.y16b{bottom:393.814667pt;}
.y19b{bottom:394.748000pt;}
.yed{bottom:397.414667pt;}
.yc9{bottom:398.214667pt;}
.y132{bottom:400.214667pt;}
.y150{bottom:403.014667pt;}
.yb3{bottom:407.948000pt;}
.y64{bottom:409.148000pt;}
.yd8{bottom:410.081333pt;}
.y183{bottom:410.214667pt;}
.ya1{bottom:412.214667pt;}
.y7b{bottom:413.548000pt;}
.y1b4{bottom:416.348000pt;}
.y8d{bottom:417.414667pt;}
.y13{bottom:418.481333pt;}
.y16a{bottom:419.414667pt;}
.y19a{bottom:420.348000pt;}
.yc8{bottom:423.814667pt;}
.y50{bottom:425.681333pt;}
.y131{bottom:425.814667pt;}
.y11e{bottom:425.948000pt;}
.yec{bottom:426.881333pt;}
.y14f{bottom:428.614667pt;}
.y109{bottom:433.281333pt;}
.yb2{bottom:433.548000pt;}
.y63{bottom:434.748000pt;}
.y32{bottom:435.414667pt;}
.y15b{bottom:435.681333pt;}
.ya0{bottom:437.814667pt;}
.y182{bottom:438.081333pt;}
.y7a{bottom:439.148000pt;}
.y1b3{bottom:439.681333pt;}
.y8c{bottom:443.014667pt;}
.y169{bottom:445.014667pt;}
.y18f{bottom:445.948000pt;}
.y12{bottom:446.348000pt;}
.yeb{bottom:448.348000pt;}
.yc7{bottom:449.414667pt;}
.y4f{bottom:451.281333pt;}
.y130{bottom:451.414667pt;}
.y11d{bottom:451.548000pt;}
.y14e{bottom:454.214667pt;}
.y108{bottom:458.881333pt;}
.y197{bottom:459.148000pt;}
.y62{bottom:460.348000pt;}
.y31{bottom:461.014667pt;}
.yb1{bottom:461.281333pt;}
.y9f{bottom:463.414667pt;}
.y79{bottom:464.748000pt;}
.y8b{bottom:468.614667pt;}
.y18e{bottom:471.548000pt;}
.y168{bottom:472.748000pt;}
.yc6{bottom:475.014667pt;}
.y4e{bottom:476.881333pt;}
.y12f{bottom:477.014667pt;}
.y11c{bottom:477.148000pt;}
.y1b2{bottom:479.281333pt;}
.y14d{bottom:479.814667pt;}
.y107{bottom:484.481333pt;}
.y30{bottom:486.614667pt;}
.y196{bottom:486.881333pt;}
.y61{bottom:488.214667pt;}
.yd2{bottom:489.014667pt;}
.y78{bottom:490.348000pt;}
.y9e{bottom:491.281333pt;}
.y181{bottom:491.414667pt;}
.y11{bottom:492.081333pt;}
.y8a{bottom:494.214667pt;}
.y18d{bottom:497.148000pt;}
.yc5{bottom:500.614667pt;}
.yea{bottom:501.681333pt;}
.y4d{bottom:502.481333pt;}
.y12e{bottom:502.614667pt;}
.y11b{bottom:502.748000pt;}
.y14c{bottom:505.414667pt;}
.y106{bottom:510.081333pt;}
.y2f{bottom:512.214667pt;}
.y10{bottom:513.814667pt;}
.yb0{bottom:514.614667pt;}
.y180{bottom:517.014667pt;}
.y77{bottom:518.214667pt;}
.y167{bottom:519.281333pt;}
.y89{bottom:522.081333pt;}
.y18c{bottom:522.748000pt;}
.ye9{bottom:527.281333pt;}
.y4c{bottom:528.081333pt;}
.y11a{bottom:528.348000pt;}
.yc4{bottom:528.481333pt;}
.y12d{bottom:530.348000pt;}
.y14b{bottom:533.148000pt;}
.y105{bottom:535.681333pt;}
.y2e{bottom:539.948000pt;}
.yaf{bottom:540.214667pt;}
.y60{bottom:541.548000pt;}
.y17f{bottom:542.614667pt;}
.y9d{bottom:544.614667pt;}
.y166{bottom:544.881333pt;}
.y18b{bottom:548.348000pt;}
.y199{bottom:550.481333pt;}
.ye8{bottom:552.881333pt;}
.y4b{bottom:553.681333pt;}
.y119{bottom:553.948000pt;}
.y104{bottom:561.281333pt;}
.yae{bottom:565.814667pt;}
.y5f{bottom:567.148000pt;}
.y17e{bottom:568.214667pt;}
.y9c{bottom:570.214667pt;}
.y165{bottom:570.481333pt;}
.y88{bottom:571.014667pt;}
.y76{bottom:571.548000pt;}
.y18a{bottom:576.081333pt;}
.y12c{bottom:577.014667pt;}
.ye7{bottom:578.481333pt;}
.y118{bottom:579.548000pt;}
.y4a{bottom:581.414667pt;}
.yc3{bottom:581.814667pt;}
.yf{bottom:583.414667pt;}
.y14a{bottom:586.481333pt;}
.y103{bottom:586.881333pt;}
.yad{bottom:591.414667pt;}
.y5e{bottom:592.748000pt;}
.yd1{bottom:593.681333pt;}
.y9b{bottom:595.814667pt;}
.y17d{bottom:595.948000pt;}
.y164{bottom:596.081333pt;}
.y2d{bottom:596.614667pt;}
.y75{bottom:597.148000pt;}
.y12b{bottom:602.614667pt;}
.y198{bottom:603.814667pt;}
.y117{bottom:605.148000pt;}
.ye6{bottom:606.348000pt;}
.y1b1{bottom:607.281333pt;}
.yc2{bottom:607.414667pt;}
.ye{bottom:609.014667pt;}
.y149{bottom:612.081333pt;}
.y102{bottom:614.748000pt;}
.yac{bottom:617.014667pt;}
.y2c{bottom:618.348000pt;}
.yd7{bottom:619.281333pt;}
.y9a{bottom:621.414667pt;}
.y163{bottom:621.681333pt;}
.y74{bottom:622.748000pt;}
.y12a{bottom:628.214667pt;}
.y189{bottom:629.414667pt;}
.y1b0{bottom:632.881333pt;}
.yc1{bottom:633.014667pt;}
.yd{bottom:634.614667pt;}
.y49{bottom:634.748000pt;}
.y148{bottom:637.681333pt;}
.y5d{bottom:643.948000pt;}
.yab{bottom:644.881333pt;}
.y99{bottom:647.014667pt;}
.y162{bottom:647.281333pt;}
.y73{bottom:648.348000pt;}
.y17c{bottom:649.281333pt;}
.y129{bottom:653.814667pt;}
.ye5{bottom:655.014667pt;}
.y1af{bottom:658.481333pt;}
.yc0{bottom:658.614667pt;}
.yc{bottom:660.214667pt;}
.y48{bottom:660.348000pt;}
.y147{bottom:663.281333pt;}
.y101{bottom:668.081333pt;}
.y5c{bottom:669.548000pt;}
.y87{bottom:672.614667pt;}
.y72{bottom:673.948000pt;}
.y17b{bottom:674.881333pt;}
.y161{bottom:675.014667pt;}
.y116{bottom:679.414667pt;}
.ye4{bottom:680.614667pt;}
.y1ae{bottom:684.081333pt;}
.ybf{bottom:684.214667pt;}
.yb{bottom:685.814667pt;}
.y47{bottom:685.948000pt;}
.y146{bottom:688.881333pt;}
.y100{bottom:693.681333pt;}
.y5b{bottom:697.281333pt;}
.y2b{bottom:698.214667pt;}
.y17a{bottom:700.481333pt;}
.y71{bottom:701.681333pt;}
.y115{bottom:705.014667pt;}
.ye3{bottom:706.214667pt;}
.y1ad{bottom:709.681333pt;}
.ya{bottom:711.414667pt;}
.y46{bottom:711.548000pt;}
.ybe{bottom:711.948000pt;}
.y145{bottom:716.748000pt;}
.yff{bottom:719.281333pt;}
.y2a{bottom:723.814667pt;}
.y179{bottom:726.081333pt;}
.y114{bottom:730.614667pt;}
.ye2{bottom:731.814667pt;}
.y1ac{bottom:735.281333pt;}
.y9{bottom:737.014667pt;}
.y45{bottom:737.148000pt;}
.yfe{bottom:744.881333pt;}
.y5a{bottom:746.214667pt;}
.y29{bottom:749.414667pt;}
.y70{bottom:750.614667pt;}
.y98{bottom:751.548000pt;}
.y178{bottom:751.681333pt;}
.y113{bottom:756.214667pt;}
.ybd{bottom:757.681333pt;}
.ye1{bottom:759.681333pt;}
.y1ab{bottom:760.881333pt;}
.y44{bottom:762.748000pt;}
.y8{bottom:767.414667pt;}
.y144{bottom:768.881333pt;}
.y59{bottom:771.814667pt;}
.yfd{bottom:772.614667pt;}
.y28{bottom:775.014667pt;}
.y6f{bottom:775.548000pt;}
.y15a{bottom:777.148000pt;}
.ybc{bottom:779.414667pt;}
.y177{bottom:779.548000pt;}
.y112{bottom:781.814667pt;}
.y1aa{bottom:788.614667pt;}
.y43{bottom:790.614667pt;}
.y143{bottom:793.281333pt;}
.y27{bottom:800.614667pt;}
.y86{bottom:802.748000pt;}
.y97{bottom:804.881333pt;}
.y111{bottom:809.681333pt;}
.ye0{bottom:813.014667pt;}
.y142{bottom:818.881333pt;}
.y7{bottom:821.948000pt;}
.y160{bottom:826.214667pt;}
.y26{bottom:828.348000pt;}
.y58{bottom:830.481333pt;}
.yfc{bottom:831.014667pt;}
.y176{bottom:831.681333pt;}
.ydf{bottom:838.614667pt;}
.y42{bottom:843.948000pt;}
.y141{bottom:844.481333pt;}
.y1a9{bottom:847.014667pt;}
.y6{bottom:847.548000pt;}
.y15f{bottom:853.948000pt;}
.y57{bottom:856.081333pt;}
.yfb{bottom:856.614667pt;}
.yde{bottom:864.214667pt;}
.y41{bottom:869.548000pt;}
.y140{bottom:870.081333pt;}
.y1a8{bottom:872.614667pt;}
.y5{bottom:873.148000pt;}
.y25{bottom:881.681333pt;}
.yfa{bottom:882.214667pt;}
.ydd{bottom:889.814667pt;}
.y40{bottom:895.148000pt;}
.y13f{bottom:895.681333pt;}
.y1a7{bottom:898.214667pt;}
.y4{bottom:898.748000pt;}
.y24{bottom:907.281333pt;}
.yf9{bottom:911.548000pt;}
.ydc{bottom:915.414667pt;}
.y3f{bottom:920.748000pt;}
.y13e{bottom:921.281333pt;}
.y1a6{bottom:923.814667pt;}
.y23{bottom:932.881333pt;}
.ydb{bottom:943.148000pt;}
.y3e{bottom:948.481333pt;}
.y13d{bottom:949.148000pt;}
.y3{bottom:951.148000pt;}
.y1a5{bottom:951.548000pt;}
.y22{bottom:958.481333pt;}
.y21{bottom:984.081333pt;}
.y3d{bottom:986.081333pt;}
.yda{bottom:988.881333pt;}
.y2{bottom:994.214667pt;}
.y3c{bottom:1009.414667pt;}
.yd9{bottom:1010.614667pt;}
.y20{bottom:1011.948000pt;}
.ha{height:48.385417pt;}
.hc{height:49.453125pt;}
.hd{height:49.661458pt;}
.h5{height:54.398438pt;}
.h6{height:54.627604pt;}
.h9{height:58.062500pt;}
.h4{height:59.593750pt;}
.h8{height:64.559896pt;}
.h7{height:69.526042pt;}
.hb{height:74.492188pt;}
.h3{height:129.119792pt;}
.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;}
.x1{left:72.800000pt;}
.x15{left:75.733333pt;}
.x3{left:92.400000pt;}
.x13{left:96.133333pt;}
.x16{left:115.066667pt;}
.x14{left:135.466667pt;}
.xa{left:161.066667pt;}
.x9{left:166.800000pt;}
.xb{left:173.066667pt;}
.x6{left:177.600000pt;}
.x8{left:191.733333pt;}
.x5{left:199.333333pt;}
.x7{left:229.333333pt;}
.x2{left:286.666667pt;}
.x4{left:338.800000pt;}
.xf{left:435.333333pt;}
.x12{left:439.733333pt;}
.x11{left:444.133333pt;}
.xe{left:473.466667pt;}
.xd{left:481.333333pt;}
.x10{left:498.800000pt;}
.xc{left:500.533333pt;}
}




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