
    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_c2825326e78257d1aca0d28e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_085a9f733a4ce09426db7519.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_ce6f23b089f6f737b774b9d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_f0fb808b751c2407b5242af0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_c21e5f221a074398f7dd0511.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_3fe9b6cd67aa8ad5c8d33172.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_370beef816b22f046ce6635a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_214ded8bf14f4e747838ca4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120605;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_69e3eaa97d1be169749e5420.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_70fbba18ccfa5f1990f7dd96.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.lse{letter-spacing:-1.908000px;}
.ls14{letter-spacing:-1.590000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls7{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.ls6{letter-spacing:-0.486600px;}
.ls13{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.012000px;}
.lsc{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.213120px;}
.ls0{letter-spacing:0.498240px;}
.ls12{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls1d{letter-spacing:3.600000px;}
.ls17{letter-spacing:3.720000px;}
.ls8{letter-spacing:3.938400px;}
.ls15{letter-spacing:4.058400px;}
.lsd{letter-spacing:5.040000px;}
.ls20{letter-spacing:5.472000px;}
.ls9{letter-spacing:5.780160px;}
.lsa{letter-spacing:6.240000px;}
.lsb{letter-spacing:6.480000px;}
.ls21{letter-spacing:13.680000px;}
.ls10{letter-spacing:15.120000px;}
.ls1c{letter-spacing:16.560000px;}
.ls11{letter-spacing:56.880000px;}
.ls16{letter-spacing:73.728000px;}
.ls1f{letter-spacing:98.760000px;}
.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;}
.wse{word-spacing:-66.240000px;}
.ws1{word-spacing:-24.120000px;}
.ws12{word-spacing:-23.472000px;}
.ws7{word-spacing:-21.360000px;}
.wsf{word-spacing:-20.880000px;}
.wsa{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.064000px;}
.wsb{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.970000px;}
.ws4{word-spacing:-14.633400px;}
.ws8{word-spacing:-13.212000px;}
.ws0{word-spacing:-13.182000px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-4.248000px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:4.072800px;}
._11{width:5.076000px;}
._9{width:6.108000px;}
._8{width:7.788000px;}
._a{width:9.504000px;}
._b{width:11.088000px;}
._10{width:12.720000px;}
._1a{width:13.776000px;}
._19{width:14.832000px;}
._13{width:15.840000px;}
._e{width:16.920000px;}
._22{width:18.204480px;}
._1b{width:19.368000px;}
._21{width:20.491200px;}
._1f{width:21.528000px;}
._20{width:22.536000px;}
._16{width:23.616000px;}
._17{width:24.638400px;}
._18{width:26.352000px;}
._12{width:28.464000px;}
._d{width:29.976000px;}
._c{width:31.548000px;}
._1d{width:32.832000px;}
._1c{width:34.704000px;}
._25{width:35.808000px;}
._15{width:42.912000px;}
._14{width:44.280000px;}
._2a{width:50.184000px;}
._2b{width:51.252000px;}
._1e{width:56.814240px;}
._29{width:85.392000px;}
._26{width:98.712000px;}
._28{width:215.352000px;}
._27{width:216.360000px;}
._24{width:273.367200px;}
._23{width:274.392000px;}
._2c{width:380.160000px;}
._2d{width:381.384000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fcd{color:rgb(51,51,51);}
.fc9{color:rgb(5,99,193);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(255,255,255);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fca{color:rgb(58,58,58);}
.fcb{color:rgb(34,34,34);}
.fc7{color:rgb(32,33,36);}
.fcc{color:rgb(72,72,72);}
.fc0{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc8{color:rgb(19,19,20);}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.ye{bottom:43.560000px;}
.yc{bottom:68.400000px;}
.ya{bottom:94.716000px;}
.y79{bottom:130.356000px;}
.yb9{bottom:131.076000px;}
.ybd{bottom:133.236000px;}
.y95{bottom:140.436000px;}
.ye5{bottom:141.876000px;}
.ycc{bottom:146.556000px;}
.y78{bottom:147.636000px;}
.y114{bottom:150.510000px;}
.y5e{bottom:152.670000px;}
.ycb{bottom:163.470000px;}
.yfa{bottom:167.790000px;}
.ya4{bottom:168.870000px;}
.y22{bottom:169.230000px;}
.yb8{bottom:172.110000px;}
.ye4{bottom:172.830000px;}
.y77{bottom:173.550000px;}
.y94{bottom:174.630000px;}
.y5d{bottom:178.590000px;}
.y113{bottom:181.470000px;}
.y41{bottom:182.910000px;}
.ybc{bottom:185.070000px;}
.ya3{bottom:187.590000px;}
.y93{bottom:197.715000px;}
.yf9{bottom:198.795000px;}
.y76{bottom:199.515000px;}
.y21{bottom:200.595000px;}
.yca{bottom:203.115000px;}
.y5c{bottom:204.555000px;}
.yb7{bottom:208.155000px;}
.y40{bottom:213.915000px;}
.yeb{bottom:216.435000px;}
.ye3{bottom:225.075000px;}
.y75{bottom:225.435000px;}
.y92{bottom:226.155000px;}
.y112{bottom:227.955000px;}
.yc9{bottom:229.035000px;}
.yf8{bottom:229.755000px;}
.y5b{bottom:230.115000px;}
.ybb{bottom:237.315000px;}
.y3f{bottom:244.875000px;}
.y20{bottom:247.035000px;}
.yb6{bottom:248.835000px;}
.y74{bottom:251.355000px;}
.y91{bottom:254.955000px;}
.y5a{bottom:256.035000px;}
.y73{bottom:256.755000px;}
.y90{bottom:260.355000px;}
.y59{bottom:261.435000px;}
.ya2{bottom:268.275000px;}
.y72{bottom:268.635000px;}
.y8f{bottom:273.675000px;}
.y111{bottom:274.395000px;}
.y3e{bottom:276.195000px;}
.ye2{bottom:277.275000px;}
.y1f{bottom:277.995000px;}
.yc8{bottom:294.195000px;}
.yb5{bottom:295.635000px;}
.ya1{bottom:299.235000px;}
.yc7{bottom:299.595000px;}
.y110{bottom:305.715000px;}
.y3d{bottom:307.155000px;}
.yf7{bottom:307.515000px;}
.ye1{bottom:308.235000px;}
.yb4{bottom:321.555000px;}
.y1e{bottom:324.465000px;}
.y58{bottom:328.785000px;}
.ya0{bottom:330.225000px;}
.y8e{bottom:335.265000px;}
.y3c{bottom:338.145000px;}
.yf6{bottom:338.505000px;}
.ye0{bottom:339.225000px;}
.yc6{bottom:341.025000px;}
.yb3{bottom:347.505000px;}
.y71{bottom:351.465000px;}
.y10f{bottom:352.185000px;}
.y1d{bottom:355.425000px;}
.y57{bottom:359.745000px;}
.y9f{bottom:361.545000px;}
.y8c{bottom:366.225000px;}
.yc5{bottom:366.945000px;}
.yc4{bottom:372.345000px;}
.y8d{bottom:373.065000px;}
.yb2{bottom:373.425000px;}
.yb1{bottom:378.825000px;}
.y70{bottom:382.425000px;}
.y10e{bottom:383.505000px;}
.yf5{bottom:384.945000px;}
.y1c{bottom:386.745000px;}
.y3b{bottom:390.345000px;}
.y56{bottom:391.065000px;}
.ydf{bottom:391.425000px;}
.yea{bottom:392.505000px;}
.yc3{bottom:405.105000px;}
.yb0{bottom:411.585000px;}
.y9e{bottom:413.385000px;}
.yf4{bottom:415.905000px;}
.y1b{bottom:417.705000px;}
.y8b{bottom:418.425000px;}
.y3a{bottom:421.305000px;}
.y55{bottom:422.025000px;}
.yde{bottom:422.385000px;}
.y10d{bottom:429.585000px;}
.y6f{bottom:434.625000px;}
.y9d{bottom:444.705000px;}
.y1a{bottom:448.665000px;}
.y8a{bottom:449.430000px;}
.y39{bottom:452.310000px;}
.ydd{bottom:453.390000px;}
.y10c{bottom:460.950000px;}
.yf3{bottom:462.750000px;}
.y6e{bottom:465.630000px;}
.y54{bottom:474.270000px;}
.y9c{bottom:475.710000px;}
.y19{bottom:479.670000px;}
.y89{bottom:480.390000px;}
.y38{bottom:483.270000px;}
.yf2{bottom:493.710000px;}
.y6d{bottom:496.590000px;}
.ydc{bottom:505.590000px;}
.y9b{bottom:506.670000px;}
.y10b{bottom:507.390000px;}
.y88{bottom:511.710000px;}
.y37{bottom:514.590000px;}
.yf1{bottom:524.670000px;}
.y18{bottom:526.470000px;}
.y6c{bottom:527.550000px;}
.y53{bottom:528.630000px;}
.yc2{bottom:535.110000px;}
.ydb{bottom:536.550000px;}
.y9a{bottom:537.630000px;}
.y10a{bottom:538.350000px;}
.y87{bottom:542.670000px;}
.y36{bottom:545.550000px;}
.yba{bottom:558.870000px;}
.y17{bottom:559.950000px;}
.y52{bottom:565.350000px;}
.yda{bottom:567.510000px;}
.ye9{bottom:568.590000px;}
.y109{bottom:569.670000px;}
.yf0{bottom:571.110000px;}
.yaf{bottom:573.630000px;}
.y35{bottom:576.540000px;}
.y6b{bottom:579.780000px;}
.y99{bottom:589.860000px;}
.y86{bottom:594.540000px;}
.y16{bottom:596.340000px;}
.yef{bottom:602.100000px;}
.yae{bottom:604.620000px;}
.y6a{bottom:610.740000px;}
.y108{bottom:615.780000px;}
.y51{bottom:619.740000px;}
.yc1{bottom:620.820000px;}
.y34{bottom:631.260000px;}
.yee{bottom:633.420000px;}
.yac{bottom:635.940000px;}
.y69{bottom:641.700000px;}
.yad{bottom:642.780000px;}
.y107{bottom:647.100000px;}
.y15{bottom:647.460000px;}
.y85{bottom:649.260000px;}
.yd9{bottom:650.700000px;}
.ybf{bottom:651.780000px;}
.yc0{bottom:658.620000px;}
.yed{bottom:670.500000px;}
.y50{bottom:671.580000px;}
.y68{bottom:673.020000px;}
.y106{bottom:678.060000px;}
.yd8{bottom:681.660000px;}
.ye8{bottom:683.100000px;}
.y33{bottom:683.460000px;}
.y14{bottom:684.180000px;}
.yab{bottom:687.780000px;}
.y4f{bottom:702.930000px;}
.y67{bottom:704.010000px;}
.y105{bottom:709.050000px;}
.ye7{bottom:714.090000px;}
.yec{bottom:724.890000px;}
.y32{bottom:732.810000px;}
.y4e{bottom:733.890000px;}
.y84{bottom:734.970000px;}
.y13{bottom:735.330000px;}
.yaa{bottom:742.530000px;}
.y104{bottom:753.690000px;}
.y66{bottom:755.850000px;}
.y31{bottom:763.770000px;}
.yd7{bottom:764.850000px;}
.y4d{bottom:765.210000px;}
.y83{bottom:765.930000px;}
.y103{bottom:784.650000px;}
.y98{bottom:787.170000px;}
.y12{bottom:789.330000px;}
.y119{bottom:789.690000px;}
.y82{bottom:797.250000px;}
.y65{bottom:808.050000px;}
.y30{bottom:810.210000px;}
.y102{bottom:815.610000px;}
.yd6{bottom:817.050000px;}
.y4c{bottom:817.410000px;}
.y97{bottom:818.130000px;}
.y81{bottom:828.255000px;}
.y11{bottom:830.775000px;}
.y118{bottom:836.535000px;}
.y64{bottom:839.055000px;}
.y2f{bottom:841.575000px;}
.y4b{bottom:848.415000px;}
.y96{bottom:849.135000px;}
.ya9{bottom:859.215000px;}
.y101{bottom:860.295000px;}
.yd5{bottom:868.935000px;}
.y63{bottom:870.375000px;}
.y10{bottom:872.175000px;}
.y4a{bottom:879.735000px;}
.y80{bottom:880.095000px;}
.y117{bottom:885.855000px;}
.y2e{bottom:888.015000px;}
.ya8{bottom:890.175000px;}
.y100{bottom:891.255000px;}
.yd4{bottom:899.895000px;}
.y62{bottom:901.335000px;}
.y48{bottom:911.055000px;}
.y7f{bottom:911.415000px;}
.yf{bottom:915.375000px;}
.y116{bottom:916.815000px;}
.y49{bottom:917.895000px;}
.y2d{bottom:918.975000px;}
.yff{bottom:922.575000px;}
.yd3{bottom:931.215000px;}
.y61{bottom:932.295000px;}
.y9{bottom:941.295000px;}
.y7e{bottom:942.375000px;}
.y115{bottom:948.135000px;}
.y2c{bottom:949.935000px;}
.yfe{bottom:953.565000px;}
.y8{bottom:958.605000px;}
.yd2{bottom:962.565000px;}
.y47{bottom:963.285000px;}
.y7{bottom:972.645000px;}
.y7d{bottom:973.365000px;}
.y2b{bottom:980.925000px;}
.y60{bottom:984.525000px;}
.ybe{bottom:994.245000px;}
.yfd{bottom:1000.005000px;}
.y7c{bottom:1004.325000px;}
.y2a{bottom:1012.245000px;}
.yd1{bottom:1014.765000px;}
.y46{bottom:1015.485000px;}
.ye6{bottom:1025.565000px;}
.y6{bottom:1027.365000px;}
.yfc{bottom:1030.965000px;}
.ya6{bottom:1035.645000px;}
.ya7{bottom:1042.485000px;}
.y29{bottom:1043.205000px;}
.yd0{bottom:1045.725000px;}
.y45{bottom:1046.445000px;}
.y5{bottom:1052.205000px;}
.y7b{bottom:1056.525000px;}
.yfb{bottom:1061.925000px;}
.y4{bottom:1072.725000px;}
.ycf{bottom:1077.045000px;}
.y44{bottom:1077.405000px;}
.y28{bottom:1080.330000px;}
.ya5{bottom:1087.530000px;}
.y3{bottom:1094.010000px;}
.yce{bottom:1108.050000px;}
.y43{bottom:1108.770000px;}
.y2{bottom:1114.530000px;}
.y7a{bottom:1115.610000px;}
.y27{bottom:1120.650000px;}
.y1{bottom:1131.450000px;}
.ycd{bottom:1139.370000px;}
.y42{bottom:1139.730000px;}
.y5f{bottom:1146.570000px;}
.y26{bottom:1166.370000px;}
.y25{bottom:1180.410000px;}
.y24{bottom:1201.290000px;}
.y23{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hf{height:34.114922px;}
.h17{height:34.595859px;}
.h15{height:37.090547px;}
.h11{height:38.671172px;}
.h5{height:39.997969px;}
.he{height:41.696016px;}
.h16{height:44.031094px;}
.h10{height:47.264766px;}
.h7{height:48.013594px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.h13{height:58.121719px;}
.h14{height:58.833281px;}
.h12{height:60.155156px;}
.hc{height:63.175781px;}
.h3{height:63.949219px;}
.ha{height:69.674766px;}
.hd{height:73.283906px;}
.hb{height:74.181094px;}
.h9{height:85.691953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w5{width:341.430000px;}
.w1{width:892.500000px;}
.w7{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.xb{left:111.635987px;}
.xc{left:119.555987px;}
.x1c{left:138.671973px;}
.x1d{left:144.071987px;}
.xe{left:180.794987px;}
.x13{left:228.344973px;}
.x14{left:234.464987px;}
.x2{left:254.264987px;}
.x1e{left:257.144973px;}
.x1f{left:263.264987px;}
.x17{left:268.304973px;}
.x6{left:274.064987px;}
.x1a{left:302.144973px;}
.xa{left:304.350000px;}
.x1b{left:308.309987px;}
.x12{left:322.349987px;}
.x22{left:334.589973px;}
.x23{left:340.709987px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.xd{left:387.149987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.xf{left:447.660000px;}
.x20{left:456.659973px;}
.x21{left:462.779987px;}
.x15{left:571.529973px;}
.x10{left:573.734973px;}
.x16{left:577.694987px;}
.x11{left:579.854987px;}
.x18{left:618.374973px;}
.x19{left:624.494987px;}
.x1{left:786.929987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.lse{letter-spacing:-1.696000pt;}
.ls14{letter-spacing:-1.413333pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls6{letter-spacing:-0.432533pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.010667pt;}
.lsc{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.189440pt;}
.ls0{letter-spacing:0.442880pt;}
.ls12{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.306667pt;}
.ls8{letter-spacing:3.500800pt;}
.ls15{letter-spacing:3.607467pt;}
.lsd{letter-spacing:4.480000pt;}
.ls20{letter-spacing:4.864000pt;}
.ls9{letter-spacing:5.137920pt;}
.lsa{letter-spacing:5.546667pt;}
.lsb{letter-spacing:5.760000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls10{letter-spacing:13.440000pt;}
.ls1c{letter-spacing:14.720000pt;}
.ls11{letter-spacing:50.560000pt;}
.ls16{letter-spacing:65.536000pt;}
.ls1f{letter-spacing:87.786667pt;}
.ws6{word-spacing:-64.000000pt;}
.wse{word-spacing:-58.880000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws12{word-spacing:-20.864000pt;}
.ws7{word-spacing:-18.986667pt;}
.wsf{word-spacing:-18.560000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.168000pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.313067pt;}
.ws9{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.306667pt;}
.ws4{word-spacing:-13.007467pt;}
.ws8{word-spacing:-11.744000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-3.776000pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:3.620267pt;}
._11{width:4.512000pt;}
._9{width:5.429333pt;}
._8{width:6.922667pt;}
._a{width:8.448000pt;}
._b{width:9.856000pt;}
._10{width:11.306667pt;}
._1a{width:12.245333pt;}
._19{width:13.184000pt;}
._13{width:14.080000pt;}
._e{width:15.040000pt;}
._22{width:16.181760pt;}
._1b{width:17.216000pt;}
._21{width:18.214400pt;}
._1f{width:19.136000pt;}
._20{width:20.032000pt;}
._16{width:20.992000pt;}
._17{width:21.900800pt;}
._18{width:23.424000pt;}
._12{width:25.301333pt;}
._d{width:26.645333pt;}
._c{width:28.042667pt;}
._1d{width:29.184000pt;}
._1c{width:30.848000pt;}
._25{width:31.829333pt;}
._15{width:38.144000pt;}
._14{width:39.360000pt;}
._2a{width:44.608000pt;}
._2b{width:45.557333pt;}
._1e{width:50.501547pt;}
._29{width:75.904000pt;}
._26{width:87.744000pt;}
._28{width:191.424000pt;}
._27{width:192.320000pt;}
._24{width:242.993067pt;}
._23{width:243.904000pt;}
._2c{width:337.920000pt;}
._2d{width:339.008000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.ye{bottom:38.720000pt;}
.yc{bottom:60.800000pt;}
.ya{bottom:84.192000pt;}
.y79{bottom:115.872000pt;}
.yb9{bottom:116.512000pt;}
.ybd{bottom:118.432000pt;}
.y95{bottom:124.832000pt;}
.ye5{bottom:126.112000pt;}
.ycc{bottom:130.272000pt;}
.y78{bottom:131.232000pt;}
.y114{bottom:133.786667pt;}
.y5e{bottom:135.706667pt;}
.ycb{bottom:145.306667pt;}
.yfa{bottom:149.146667pt;}
.ya4{bottom:150.106667pt;}
.y22{bottom:150.426667pt;}
.yb8{bottom:152.986667pt;}
.ye4{bottom:153.626667pt;}
.y77{bottom:154.266667pt;}
.y94{bottom:155.226667pt;}
.y5d{bottom:158.746667pt;}
.y113{bottom:161.306667pt;}
.y41{bottom:162.586667pt;}
.ybc{bottom:164.506667pt;}
.ya3{bottom:166.746667pt;}
.y93{bottom:175.746667pt;}
.yf9{bottom:176.706667pt;}
.y76{bottom:177.346667pt;}
.y21{bottom:178.306667pt;}
.yca{bottom:180.546667pt;}
.y5c{bottom:181.826667pt;}
.yb7{bottom:185.026667pt;}
.y40{bottom:190.146667pt;}
.yeb{bottom:192.386667pt;}
.ye3{bottom:200.066667pt;}
.y75{bottom:200.386667pt;}
.y92{bottom:201.026667pt;}
.y112{bottom:202.626667pt;}
.yc9{bottom:203.586667pt;}
.yf8{bottom:204.226667pt;}
.y5b{bottom:204.546667pt;}
.ybb{bottom:210.946667pt;}
.y3f{bottom:217.666667pt;}
.y20{bottom:219.586667pt;}
.yb6{bottom:221.186667pt;}
.y74{bottom:223.426667pt;}
.y91{bottom:226.626667pt;}
.y5a{bottom:227.586667pt;}
.y73{bottom:228.226667pt;}
.y90{bottom:231.426667pt;}
.y59{bottom:232.386667pt;}
.ya2{bottom:238.466667pt;}
.y72{bottom:238.786667pt;}
.y8f{bottom:243.266667pt;}
.y111{bottom:243.906667pt;}
.y3e{bottom:245.506667pt;}
.ye2{bottom:246.466667pt;}
.y1f{bottom:247.106667pt;}
.yc8{bottom:261.506667pt;}
.yb5{bottom:262.786667pt;}
.ya1{bottom:265.986667pt;}
.yc7{bottom:266.306667pt;}
.y110{bottom:271.746667pt;}
.y3d{bottom:273.026667pt;}
.yf7{bottom:273.346667pt;}
.ye1{bottom:273.986667pt;}
.yb4{bottom:285.826667pt;}
.y1e{bottom:288.413333pt;}
.y58{bottom:292.253333pt;}
.ya0{bottom:293.533333pt;}
.y8e{bottom:298.013333pt;}
.y3c{bottom:300.573333pt;}
.yf6{bottom:300.893333pt;}
.ye0{bottom:301.533333pt;}
.yc6{bottom:303.133333pt;}
.yb3{bottom:308.893333pt;}
.y71{bottom:312.413333pt;}
.y10f{bottom:313.053333pt;}
.y1d{bottom:315.933333pt;}
.y57{bottom:319.773333pt;}
.y9f{bottom:321.373333pt;}
.y8c{bottom:325.533333pt;}
.yc5{bottom:326.173333pt;}
.yc4{bottom:330.973333pt;}
.y8d{bottom:331.613333pt;}
.yb2{bottom:331.933333pt;}
.yb1{bottom:336.733333pt;}
.y70{bottom:339.933333pt;}
.y10e{bottom:340.893333pt;}
.yf5{bottom:342.173333pt;}
.y1c{bottom:343.773333pt;}
.y3b{bottom:346.973333pt;}
.y56{bottom:347.613333pt;}
.ydf{bottom:347.933333pt;}
.yea{bottom:348.893333pt;}
.yc3{bottom:360.093333pt;}
.yb0{bottom:365.853333pt;}
.y9e{bottom:367.453333pt;}
.yf4{bottom:369.693333pt;}
.y1b{bottom:371.293333pt;}
.y8b{bottom:371.933333pt;}
.y3a{bottom:374.493333pt;}
.y55{bottom:375.133333pt;}
.yde{bottom:375.453333pt;}
.y10d{bottom:381.853333pt;}
.y6f{bottom:386.333333pt;}
.y9d{bottom:395.293333pt;}
.y1a{bottom:398.813333pt;}
.y8a{bottom:399.493333pt;}
.y39{bottom:402.053333pt;}
.ydd{bottom:403.013333pt;}
.y10c{bottom:409.733333pt;}
.yf3{bottom:411.333333pt;}
.y6e{bottom:413.893333pt;}
.y54{bottom:421.573333pt;}
.y9c{bottom:422.853333pt;}
.y19{bottom:426.373333pt;}
.y89{bottom:427.013333pt;}
.y38{bottom:429.573333pt;}
.yf2{bottom:438.853333pt;}
.y6d{bottom:441.413333pt;}
.ydc{bottom:449.413333pt;}
.y9b{bottom:450.373333pt;}
.y10b{bottom:451.013333pt;}
.y88{bottom:454.853333pt;}
.y37{bottom:457.413333pt;}
.yf1{bottom:466.373333pt;}
.y18{bottom:467.973333pt;}
.y6c{bottom:468.933333pt;}
.y53{bottom:469.893333pt;}
.yc2{bottom:475.653333pt;}
.ydb{bottom:476.933333pt;}
.y9a{bottom:477.893333pt;}
.y10a{bottom:478.533333pt;}
.y87{bottom:482.373333pt;}
.y36{bottom:484.933333pt;}
.yba{bottom:496.773333pt;}
.y17{bottom:497.733333pt;}
.y52{bottom:502.533333pt;}
.yda{bottom:504.453333pt;}
.ye9{bottom:505.413333pt;}
.y109{bottom:506.373333pt;}
.yf0{bottom:507.653333pt;}
.yaf{bottom:509.893333pt;}
.y35{bottom:512.480000pt;}
.y6b{bottom:515.360000pt;}
.y99{bottom:524.320000pt;}
.y86{bottom:528.480000pt;}
.y16{bottom:530.080000pt;}
.yef{bottom:535.200000pt;}
.yae{bottom:537.440000pt;}
.y6a{bottom:542.880000pt;}
.y108{bottom:547.360000pt;}
.y51{bottom:550.880000pt;}
.yc1{bottom:551.840000pt;}
.y34{bottom:561.120000pt;}
.yee{bottom:563.040000pt;}
.yac{bottom:565.280000pt;}
.y69{bottom:570.400000pt;}
.yad{bottom:571.360000pt;}
.y107{bottom:575.200000pt;}
.y15{bottom:575.520000pt;}
.y85{bottom:577.120000pt;}
.yd9{bottom:578.400000pt;}
.ybf{bottom:579.360000pt;}
.yc0{bottom:585.440000pt;}
.yed{bottom:596.000000pt;}
.y50{bottom:596.960000pt;}
.y68{bottom:598.240000pt;}
.y106{bottom:602.720000pt;}
.yd8{bottom:605.920000pt;}
.ye8{bottom:607.200000pt;}
.y33{bottom:607.520000pt;}
.y14{bottom:608.160000pt;}
.yab{bottom:611.360000pt;}
.y4f{bottom:624.826667pt;}
.y67{bottom:625.786667pt;}
.y105{bottom:630.266667pt;}
.ye7{bottom:634.746667pt;}
.yec{bottom:644.346667pt;}
.y32{bottom:651.386667pt;}
.y4e{bottom:652.346667pt;}
.y84{bottom:653.306667pt;}
.y13{bottom:653.626667pt;}
.yaa{bottom:660.026667pt;}
.y104{bottom:669.946667pt;}
.y66{bottom:671.866667pt;}
.y31{bottom:678.906667pt;}
.yd7{bottom:679.866667pt;}
.y4d{bottom:680.186667pt;}
.y83{bottom:680.826667pt;}
.y103{bottom:697.466667pt;}
.y98{bottom:699.706667pt;}
.y12{bottom:701.626667pt;}
.y119{bottom:701.946667pt;}
.y82{bottom:708.666667pt;}
.y65{bottom:718.266667pt;}
.y30{bottom:720.186667pt;}
.y102{bottom:724.986667pt;}
.yd6{bottom:726.266667pt;}
.y4c{bottom:726.586667pt;}
.y97{bottom:727.226667pt;}
.y81{bottom:736.226667pt;}
.y11{bottom:738.466667pt;}
.y118{bottom:743.586667pt;}
.y64{bottom:745.826667pt;}
.y2f{bottom:748.066667pt;}
.y4b{bottom:754.146667pt;}
.y96{bottom:754.786667pt;}
.ya9{bottom:763.746667pt;}
.y101{bottom:764.706667pt;}
.yd5{bottom:772.386667pt;}
.y63{bottom:773.666667pt;}
.y10{bottom:775.266667pt;}
.y4a{bottom:781.986667pt;}
.y80{bottom:782.306667pt;}
.y117{bottom:787.426667pt;}
.y2e{bottom:789.346667pt;}
.ya8{bottom:791.266667pt;}
.y100{bottom:792.226667pt;}
.yd4{bottom:799.906667pt;}
.y62{bottom:801.186667pt;}
.y48{bottom:809.826667pt;}
.y7f{bottom:810.146667pt;}
.yf{bottom:813.666667pt;}
.y116{bottom:814.946667pt;}
.y49{bottom:815.906667pt;}
.y2d{bottom:816.866667pt;}
.yff{bottom:820.066667pt;}
.yd3{bottom:827.746667pt;}
.y61{bottom:828.706667pt;}
.y9{bottom:836.706667pt;}
.y7e{bottom:837.666667pt;}
.y115{bottom:842.786667pt;}
.y2c{bottom:844.386667pt;}
.yfe{bottom:847.613333pt;}
.y8{bottom:852.093333pt;}
.yd2{bottom:855.613333pt;}
.y47{bottom:856.253333pt;}
.y7{bottom:864.573333pt;}
.y7d{bottom:865.213333pt;}
.y2b{bottom:871.933333pt;}
.y60{bottom:875.133333pt;}
.ybe{bottom:883.773333pt;}
.yfd{bottom:888.893333pt;}
.y7c{bottom:892.733333pt;}
.y2a{bottom:899.773333pt;}
.yd1{bottom:902.013333pt;}
.y46{bottom:902.653333pt;}
.ye6{bottom:911.613333pt;}
.y6{bottom:913.213333pt;}
.yfc{bottom:916.413333pt;}
.ya6{bottom:920.573333pt;}
.ya7{bottom:926.653333pt;}
.y29{bottom:927.293333pt;}
.yd0{bottom:929.533333pt;}
.y45{bottom:930.173333pt;}
.y5{bottom:935.293333pt;}
.y7b{bottom:939.133333pt;}
.yfb{bottom:943.933333pt;}
.y4{bottom:953.533333pt;}
.ycf{bottom:957.373333pt;}
.y44{bottom:957.693333pt;}
.y28{bottom:960.293333pt;}
.ya5{bottom:966.693333pt;}
.y3{bottom:972.453333pt;}
.yce{bottom:984.933333pt;}
.y43{bottom:985.573333pt;}
.y2{bottom:990.693333pt;}
.y7a{bottom:991.653333pt;}
.y27{bottom:996.133333pt;}
.y1{bottom:1005.733333pt;}
.ycd{bottom:1012.773333pt;}
.y42{bottom:1013.093333pt;}
.y5f{bottom:1019.173333pt;}
.y26{bottom:1036.773333pt;}
.y25{bottom:1049.253333pt;}
.y24{bottom:1067.813333pt;}
.y23{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hf{height:30.324375pt;}
.h17{height:30.751875pt;}
.h15{height:32.969375pt;}
.h11{height:34.374375pt;}
.h5{height:35.553750pt;}
.he{height:37.063125pt;}
.h16{height:39.138750pt;}
.h10{height:42.013125pt;}
.h7{height:42.678750pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.h13{height:51.663750pt;}
.h14{height:52.296250pt;}
.h12{height:53.471250pt;}
.hc{height:56.156250pt;}
.h3{height:56.843750pt;}
.ha{height:61.933125pt;}
.hd{height:65.141250pt;}
.hb{height:65.938750pt;}
.h9{height:76.170625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w5{width:303.493333pt;}
.w1{width:793.333333pt;}
.w7{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.xb{left:99.231988pt;}
.xc{left:106.271988pt;}
.x1c{left:123.263976pt;}
.x1d{left:128.063988pt;}
.xe{left:160.706655pt;}
.x13{left:202.973310pt;}
.x14{left:208.413322pt;}
.x2{left:226.013322pt;}
.x1e{left:228.573310pt;}
.x1f{left:234.013322pt;}
.x17{left:238.493310pt;}
.x6{left:243.613322pt;}
.x1a{left:268.573310pt;}
.xa{left:270.533333pt;}
.x1b{left:274.053322pt;}
.x12{left:286.533322pt;}
.x22{left:297.413310pt;}
.x23{left:302.853322pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.xd{left:344.133322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.xf{left:397.920000pt;}
.x20{left:405.919976pt;}
.x21{left:411.359988pt;}
.x15{left:508.026643pt;}
.x10{left:509.986643pt;}
.x16{left:513.506655pt;}
.x11{left:515.426655pt;}
.x18{left:549.666643pt;}
.x19{left:555.106655pt;}
.x1{left:699.493322pt;}
}




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