
    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_64911577cd9baced0353ff06.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939000;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_77790ef3bf9d859bac6994d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.866000;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_21f30d99dea883f225f7be81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_5f29af42785d7da0955c9700.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_26f9bc2cf00b4335ae89e46d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.842000;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_770e9c79f69e1903177b2fd8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.880000;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_b9baf5e006ede273e23e7d06.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_d644e9ea48f44e5d88424b00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.880000;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_700cd661bc106efff0c05cb9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.880000;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);}
.v2{vertical-align:-12.987000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.000000px;}
.v1{vertical-align:19.980000px;}
.ls17{letter-spacing:-3.840000px;}
.ls7{letter-spacing:-0.975000px;}
.ls18{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000060px;}
.ls6{letter-spacing:0.069540px;}
.lsa{letter-spacing:0.069960px;}
.ls5{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.552000px;}
.ls15{letter-spacing:0.600000px;}
.ls13{letter-spacing:2.400000px;}
.ls14{letter-spacing:3.000000px;}
.ls11{letter-spacing:5.100000px;}
.ls4{letter-spacing:7.548534px;}
.lsd{letter-spacing:7.565934px;}
.lsb{letter-spacing:8.657910px;}
.ls3{letter-spacing:8.814006px;}
.ls2{letter-spacing:8.969565px;}
.ls12{letter-spacing:9.481179px;}
.lsf{letter-spacing:11.771400px;}
.lse{letter-spacing:12.689400px;}
.ls10{letter-spacing:13.931400px;}
.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;}
}
.ws2{word-spacing:-24.480000px;}
.ws10{word-spacing:-15.480000px;}
.ws0{word-spacing:-13.932000px;}
.wsf{word-spacing:-13.800000px;}
.ws19{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.200000px;}
.ws18{word-spacing:-12.600000px;}
.ws1e{word-spacing:-12.546000px;}
.wse{word-spacing:-12.480000px;}
.ws5{word-spacing:-10.140000px;}
.ws3{word-spacing:-9.024840px;}
.ws1c{word-spacing:-6.192000px;}
.ws4{word-spacing:-5.797935px;}
.ws11{word-spacing:-5.100000px;}
.ws13{word-spacing:-3.000000px;}
.ws12{word-spacing:-2.400000px;}
.ws14{word-spacing:-0.600000px;}
.ws1f{word-spacing:-0.552000px;}
.ws6{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws20{word-spacing:0.120000px;}
.wsc{word-spacing:0.180000px;}
.ws1b{word-spacing:0.240000px;}
.wsd{word-spacing:0.300000px;}
.ws15{word-spacing:0.540000px;}
.ws1a{word-spacing:0.600000px;}
.wsa{word-spacing:0.975000px;}
.ws16{word-spacing:3.840000px;}
.ws1d{word-spacing:14.502600px;}
.ws7{word-spacing:401.826000px;}
.ws9{word-spacing:462.720000px;}
.ws8{word-spacing:488.940000px;}
._19{margin-left:-11.172000px;}
._4{margin-left:-10.080000px;}
._0{margin-left:-6.600000px;}
._14{margin-left:-5.586000px;}
._3{margin-left:-4.320000px;}
._1{margin-left:-2.520000px;}
._2{margin-left:-1.200000px;}
._5{width:1.314000px;}
._b{width:2.586000px;}
._1a{width:3.606000px;}
._15{width:5.100000px;}
._18{width:27.234000px;}
._17{width:28.434000px;}
._16{width:30.300000px;}
._12{width:217.566000px;}
._7{width:229.740000px;}
._d{width:260.820000px;}
._e{width:264.780000px;}
._9{width:309.426000px;}
._a{width:322.680000px;}
._11{width:324.960000px;}
._f{width:333.180000px;}
._10{width:357.240000px;}
._c{width:363.300000px;}
._13{width:372.360000px;}
._6{width:506.100000px;}
._8{width:525.186000px;}
.fc7{color:rgb(39,47,105);}
.fca{color:rgb(137,133,119);}
.fc8{color:rgb(153,65,33);}
.fc5{color:rgb(67,82,164);}
.fc9{color:rgb(76,90,168);}
.fc6{color:rgb(35,62,153);}
.fc4{color:rgb(92,85,74);}
.fc3{color:rgb(240,86,34);}
.fc2{color:rgb(31,38,36);}
.fc1{color:rgb(137,134,126);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:22.737000px;}
.fsd{font-size:24.000000px;}
.fs7{font-size:34.980000px;}
.fs9{font-size:39.000000px;}
.fse{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fsc{font-size:49.200000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:55.200000px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.fs1{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:47.601000px;}
.y12a{bottom:92.910150px;}
.ye2{bottom:94.674300px;}
.y9f{bottom:94.782000px;}
.y24{bottom:95.075550px;}
.ye1{bottom:114.354300px;}
.y9e{bottom:114.822000px;}
.y23{bottom:114.890550px;}
.y7{bottom:116.567400px;}
.y129{bottom:119.160150px;}
.y79{bottom:119.895150px;}
.y8a{bottom:125.754300px;}
.ye0{bottom:134.034300px;}
.y22{bottom:134.705550px;}
.y9d{bottom:134.862000px;}
.y128{bottom:137.160150px;}
.y78{bottom:139.395150px;}
.y6{bottom:141.707400px;}
.y89{bottom:145.254300px;}
.y68{bottom:152.160300px;}
.ydf{bottom:153.714300px;}
.y21{bottom:154.520550px;}
.y9c{bottom:154.902000px;}
.y127{bottom:155.160150px;}
.y5{bottom:158.207400px;}
.y77{bottom:158.895150px;}
.y88{bottom:164.754300px;}
.y67{bottom:171.960300px;}
.y126{bottom:173.160150px;}
.yde{bottom:173.394300px;}
.y20{bottom:174.335550px;}
.y30{bottom:174.927000px;}
.y10f{bottom:174.936000px;}
.y4f{bottom:174.939000px;}
.y9b{bottom:174.942000px;}
.y90{bottom:174.945000px;}
.y76{bottom:178.395150px;}
.y87{bottom:184.254300px;}
.y2f{bottom:187.680000px;}
.y10e{bottom:187.689000px;}
.y4e{bottom:187.692000px;}
.y8f{bottom:187.698000px;}
.y125{bottom:191.160150px;}
.y66{bottom:191.760300px;}
.ydd{bottom:193.074300px;}
.y1f{bottom:194.150550px;}
.y9a{bottom:194.982000px;}
.y75{bottom:197.895150px;}
.y2e{bottom:200.433000px;}
.y10d{bottom:200.442000px;}
.y4d{bottom:200.445000px;}
.y8e{bottom:200.451000px;}
.y86{bottom:203.754300px;}
.ya6{bottom:209.078550px;}
.y124{bottom:209.160150px;}
.y65{bottom:211.560300px;}
.ydc{bottom:212.754300px;}
.y2d{bottom:213.186000px;}
.y10c{bottom:213.195000px;}
.y4c{bottom:213.198000px;}
.y8d{bottom:213.204000px;}
.y99{bottom:215.022000px;}
.y74{bottom:217.395150px;}
.y85{bottom:223.260150px;}
.ya5{bottom:224.078550px;}
.y1e{bottom:224.765550px;}
.y2c{bottom:225.939000px;}
.y10b{bottom:225.948000px;}
.y4b{bottom:225.951000px;}
.y8c{bottom:225.957000px;}
.y123{bottom:227.160150px;}
.y64{bottom:231.360300px;}
.y4{bottom:231.773400px;}
.ydb{bottom:232.434300px;}
.y98{bottom:235.062000px;}
.y73{bottom:236.895150px;}
.y2b{bottom:238.692000px;}
.y10a{bottom:238.701000px;}
.y4a{bottom:238.704000px;}
.ya4{bottom:239.078550px;}
.y8b{bottom:241.956750px;}
.y84{bottom:242.760150px;}
.y63{bottom:251.160300px;}
.y2a{bottom:251.445000px;}
.y109{bottom:251.454000px;}
.y49{bottom:251.457000px;}
.yda{bottom:252.114300px;}
.ya3{bottom:254.078550px;}
.y97{bottom:255.102000px;}
.y72{bottom:256.395150px;}
.y83{bottom:262.260150px;}
.y106{bottom:263.100150px;}
.y29{bottom:264.198000px;}
.y108{bottom:264.207000px;}
.y48{bottom:267.456750px;}
.y3{bottom:268.523400px;}
.y62{bottom:270.960300px;}
.y1d{bottom:271.580550px;}
.yd9{bottom:271.794300px;}
.y96{bottom:275.142000px;}
.y71{bottom:275.895150px;}
.y28{bottom:276.951000px;}
.y107{bottom:280.206750px;}
.y82{bottom:281.760150px;}
.y105{bottom:282.600150px;}
.y47{bottom:283.695000px;}
.y27{bottom:289.704000px;}
.y61{bottom:290.760300px;}
.ya9{bottom:291.164400px;}
.y1c{bottom:291.395550px;}
.yd8{bottom:291.474300px;}
.y95{bottom:295.182000px;}
.y70{bottom:295.395150px;}
.y46{bottom:296.448000px;}
.y81{bottom:301.260150px;}
.y104{bottom:302.100150px;}
.y26{bottom:302.457000px;}
.y45{bottom:309.201000px;}
.y60{bottom:310.560300px;}
.yd7{bottom:311.154300px;}
.y1b{bottom:311.210550px;}
.y6f{bottom:314.895150px;}
.y94{bottom:315.222000px;}
.y2{bottom:318.023400px;}
.y25{bottom:318.456750px;}
.y80{bottom:320.760150px;}
.y103{bottom:321.600150px;}
.y44{bottom:321.954000px;}
.ya8{bottom:327.509400px;}
.y5f{bottom:330.360300px;}
.yd6{bottom:330.834300px;}
.y1a{bottom:331.025550px;}
.y43{bottom:334.707000px;}
.y93{bottom:335.262000px;}
.y7f{bottom:340.260150px;}
.y6e{bottom:345.195150px;}
.y5e{bottom:350.160300px;}
.yd5{bottom:350.514300px;}
.y42{bottom:350.706750px;}
.y19{bottom:350.840550px;}
.y102{bottom:351.900150px;}
.y92{bottom:355.302000px;}
.y7e{bottom:359.760150px;}
.ya7{bottom:363.854400px;}
.y41{bottom:366.954000px;}
.y5d{bottom:369.960300px;}
.yd4{bottom:370.194300px;}
.y18{bottom:370.655550px;}
.y101{bottom:371.400150px;}
.y91{bottom:375.342000px;}
.y40{bottom:379.707000px;}
.y1{bottom:387.023400px;}
.y5c{bottom:389.760300px;}
.yd3{bottom:389.874300px;}
.y17{bottom:390.470550px;}
.y100{bottom:390.900150px;}
.y3f{bottom:395.706750px;}
.y6d{bottom:402.534750px;}
.yd2{bottom:409.554300px;}
.y5b{bottom:409.560300px;}
.y16{bottom:410.285550px;}
.yff{bottom:410.940150px;}
.y7b{bottom:416.937000px;}
.y6c{bottom:417.534750px;}
.ya2{bottom:418.594650px;}
.yd1{bottom:429.234300px;}
.y5a{bottom:429.360300px;}
.y7a{bottom:431.937000px;}
.y6b{bottom:432.534750px;}
.ya1{bottom:433.594650px;}
.yfe{bottom:434.760150px;}
.y15{bottom:440.900550px;}
.y6a{bottom:447.534750px;}
.ya0{bottom:448.594650px;}
.yd0{bottom:448.906800px;}
.y59{bottom:449.160300px;}
.y69{bottom:462.534750px;}
.yfd{bottom:465.120150px;}
.y58{bottom:468.960300px;}
.y12c{bottom:470.663250px;}
.ycf{bottom:479.349300px;}
.yfc{bottom:484.620150px;}
.y57{bottom:488.760300px;}
.y12b{bottom:492.408750px;}
.yce{bottom:499.029300px;}
.yfb{bottom:504.120150px;}
.ycd{bottom:518.709300px;}
.y56{bottom:519.360300px;}
.yfa{bottom:523.620150px;}
.ycc{bottom:538.389300px;}
.yf9{bottom:543.120150px;}
.y55{bottom:549.960300px;}
.ycb{bottom:558.069300px;}
.yf8{bottom:562.620150px;}
.y54{bottom:569.760300px;}
.yca{bottom:577.741800px;}
.yf7{bottom:582.120150px;}
.y122{bottom:584.799300px;}
.y53{bottom:600.360300px;}
.yf6{bottom:601.620150px;}
.yc9{bottom:602.686800px;}
.y121{bottom:604.299300px;}
.y120{bottom:623.799300px;}
.yf5{bottom:625.440150px;}
.yc8{bottom:633.166800px;}
.y11f{bottom:654.099300px;}
.yf4{bottom:655.800150px;}
.yc7{bottom:663.646800px;}
.y33{bottom:664.276800px;}
.y11e{bottom:673.524300px;}
.yf3{bottom:675.300150px;}
.y32{bottom:679.276800px;}
.yc6{bottom:683.326800px;}
.y11d{bottom:692.949300px;}
.y31{bottom:694.276800px;}
.yf2{bottom:694.800150px;}
.yc5{bottom:713.806800px;}
.yf1{bottom:714.300150px;}
.y11c{bottom:723.174300px;}
.y52{bottom:731.362500px;}
.yc4{bottom:733.486800px;}
.yf0{bottom:733.800150px;}
.y11b{bottom:742.599300px;}
.yc3{bottom:753.166800px;}
.yef{bottom:757.620150px;}
.y11a{bottom:762.024300px;}
.y51{bottom:767.707500px;}
.yc2{bottom:772.846800px;}
.yee{bottom:787.980150px;}
.y119{bottom:792.249300px;}
.yc1{bottom:792.526800px;}
.y50{bottom:804.052500px;}
.yed{bottom:807.480150px;}
.y118{bottom:811.674300px;}
.yc0{bottom:812.206800px;}
.yec{bottom:826.980150px;}
.y117{bottom:831.099300px;}
.ybf{bottom:831.886800px;}
.yb5{bottom:835.764300px;}
.yeb{bottom:846.480150px;}
.y14{bottom:847.530450px;}
.yb4{bottom:855.264300px;}
.y3e{bottom:859.200150px;}
.y116{bottom:861.324300px;}
.ybe{bottom:862.366800px;}
.y13{bottom:867.330450px;}
.yea{bottom:870.300150px;}
.yb3{bottom:874.764300px;}
.y3d{bottom:879.000150px;}
.y115{bottom:880.824300px;}
.ybd{bottom:882.046800px;}
.y12{bottom:887.130450px;}
.yb2{bottom:894.264300px;}
.y3c{bottom:898.800150px;}
.ye9{bottom:900.660150px;}
.ybc{bottom:901.726800px;}
.y11{bottom:906.930450px;}
.y114{bottom:911.124300px;}
.yb1{bottom:913.764300px;}
.y3b{bottom:918.600150px;}
.ye8{bottom:920.160150px;}
.ybb{bottom:921.406800px;}
.y10{bottom:926.730450px;}
.y113{bottom:930.624300px;}
.yb0{bottom:933.264300px;}
.y3a{bottom:938.400150px;}
.ye7{bottom:939.660150px;}
.yf{bottom:946.530450px;}
.yba{bottom:951.871800px;}
.yaf{bottom:952.764300px;}
.y39{bottom:958.200150px;}
.ye6{bottom:959.160150px;}
.y112{bottom:960.924300px;}
.ye{bottom:966.330450px;}
.yb9{bottom:971.551800px;}
.yae{bottom:972.264300px;}
.ye5{bottom:978.660150px;}
.yd{bottom:986.130450px;}
.y38{bottom:988.800150px;}
.y111{bottom:991.224300px;}
.yb8{bottom:991.231800px;}
.yad{bottom:991.764300px;}
.yc{bottom:1005.930450px;}
.y37{bottom:1008.600150px;}
.ye4{bottom:1008.960150px;}
.y110{bottom:1010.724300px;}
.yb7{bottom:1010.911800px;}
.yac{bottom:1011.264300px;}
.yb{bottom:1025.730450px;}
.y36{bottom:1028.400150px;}
.ye3{bottom:1028.460150px;}
.y7d{bottom:1029.000150px;}
.yb6{bottom:1030.591800px;}
.yab{bottom:1030.764300px;}
.y35{bottom:1048.200150px;}
.y7c{bottom:1048.500150px;}
.ya{bottom:1056.330450px;}
.yaa{bottom:1061.064300px;}
.y34{bottom:1068.000150px;}
.y8{bottom:1130.130000px;}
.hf{height:16.620747px;}
.hb{height:18.252000px;}
.hd{height:28.470000px;}
.hc{height:31.239000px;}
.h6{height:31.968000px;}
.h16{height:33.642000px;}
.he{height:35.088000px;}
.h7{height:35.964000px;}
.h5{height:38.448000px;}
.h15{height:39.409200px;}
.h4{height:39.474000px;}
.h9{height:40.200000px;}
.h14{height:40.351200px;}
.h13{height:43.416600px;}
.h10{height:43.860000px;}
.h11{height:45.526980px;}
.ha{height:45.550380px;}
.h12{height:51.672000px;}
.h3{height:61.404000px;}
.h8{height:70.176000px;}
.h1{height:87.720000px;}
.h2{height:191.808000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:109.080000px;}
.x5{left:114.485700px;}
.x7{left:115.830000px;}
.xd{left:189.878850px;}
.x4{left:270.000000px;}
.x6{left:290.685000px;}
.x8{left:310.500000px;}
.xa{left:349.724700px;}
.xb{left:700.419300px;}
.xc{left:798.608250px;}
.x9{left:837.000000px;}
.x3{left:843.750000px;}
@media print{
.v2{vertical-align:-11.544000pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.666667pt;}
.v1{vertical-align:17.760000pt;}
.ls17{letter-spacing:-3.413333pt;}
.ls7{letter-spacing:-0.866667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000053pt;}
.ls6{letter-spacing:0.061813pt;}
.lsa{letter-spacing:0.062187pt;}
.ls5{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.490667pt;}
.ls15{letter-spacing:0.533333pt;}
.ls13{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.666667pt;}
.ls11{letter-spacing:4.533333pt;}
.ls4{letter-spacing:6.709808pt;}
.lsd{letter-spacing:6.725275pt;}
.lsb{letter-spacing:7.695920pt;}
.ls3{letter-spacing:7.834672pt;}
.ls2{letter-spacing:7.972947pt;}
.ls12{letter-spacing:8.427715pt;}
.lsf{letter-spacing:10.463467pt;}
.lse{letter-spacing:11.279467pt;}
.ls10{letter-spacing:12.383467pt;}
.ws2{word-spacing:-21.760000pt;}
.ws10{word-spacing:-13.760000pt;}
.ws0{word-spacing:-12.384000pt;}
.wsf{word-spacing:-12.266667pt;}
.ws19{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.733333pt;}
.ws18{word-spacing:-11.200000pt;}
.ws1e{word-spacing:-11.152000pt;}
.wse{word-spacing:-11.093333pt;}
.ws5{word-spacing:-9.013333pt;}
.ws3{word-spacing:-8.022080pt;}
.ws1c{word-spacing:-5.504000pt;}
.ws4{word-spacing:-5.153720pt;}
.ws11{word-spacing:-4.533333pt;}
.ws13{word-spacing:-2.666667pt;}
.ws12{word-spacing:-2.133333pt;}
.ws14{word-spacing:-0.533333pt;}
.ws1f{word-spacing:-0.490667pt;}
.ws6{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws20{word-spacing:0.106667pt;}
.wsc{word-spacing:0.160000pt;}
.ws1b{word-spacing:0.213333pt;}
.wsd{word-spacing:0.266667pt;}
.ws15{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.533333pt;}
.wsa{word-spacing:0.866667pt;}
.ws16{word-spacing:3.413333pt;}
.ws1d{word-spacing:12.891200pt;}
.ws7{word-spacing:357.178667pt;}
.ws9{word-spacing:411.306667pt;}
.ws8{word-spacing:434.613333pt;}
._19{margin-left:-9.930667pt;}
._4{margin-left:-8.960000pt;}
._0{margin-left:-5.866667pt;}
._14{margin-left:-4.965333pt;}
._3{margin-left:-3.840000pt;}
._1{margin-left:-2.240000pt;}
._2{margin-left:-1.066667pt;}
._5{width:1.168000pt;}
._b{width:2.298667pt;}
._1a{width:3.205333pt;}
._15{width:4.533333pt;}
._18{width:24.208000pt;}
._17{width:25.274667pt;}
._16{width:26.933333pt;}
._12{width:193.392000pt;}
._7{width:204.213333pt;}
._d{width:231.840000pt;}
._e{width:235.360000pt;}
._9{width:275.045333pt;}
._a{width:286.826667pt;}
._11{width:288.853333pt;}
._f{width:296.160000pt;}
._10{width:317.546667pt;}
._c{width:322.933333pt;}
._13{width:330.986667pt;}
._6{width:449.866667pt;}
._8{width:466.832000pt;}
.fs8{font-size:20.210667pt;}
.fsd{font-size:21.333333pt;}
.fs7{font-size:31.093333pt;}
.fs9{font-size:34.666667pt;}
.fse{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:43.733333pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:49.066667pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.fs1{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:42.312000pt;}
.y12a{bottom:82.586800pt;}
.ye2{bottom:84.154933pt;}
.y9f{bottom:84.250667pt;}
.y24{bottom:84.511600pt;}
.ye1{bottom:101.648267pt;}
.y9e{bottom:102.064000pt;}
.y23{bottom:102.124933pt;}
.y7{bottom:103.615467pt;}
.y129{bottom:105.920133pt;}
.y79{bottom:106.573467pt;}
.y8a{bottom:111.781600pt;}
.ye0{bottom:119.141600pt;}
.y22{bottom:119.738267pt;}
.y9d{bottom:119.877333pt;}
.y128{bottom:121.920133pt;}
.y78{bottom:123.906800pt;}
.y6{bottom:125.962133pt;}
.y89{bottom:129.114933pt;}
.y68{bottom:135.253600pt;}
.ydf{bottom:136.634933pt;}
.y21{bottom:137.351600pt;}
.y9c{bottom:137.690667pt;}
.y127{bottom:137.920133pt;}
.y5{bottom:140.628800pt;}
.y77{bottom:141.240133pt;}
.y88{bottom:146.448267pt;}
.y67{bottom:152.853600pt;}
.y126{bottom:153.920133pt;}
.yde{bottom:154.128267pt;}
.y20{bottom:154.964933pt;}
.y30{bottom:155.490667pt;}
.y10f{bottom:155.498667pt;}
.y4f{bottom:155.501333pt;}
.y9b{bottom:155.504000pt;}
.y90{bottom:155.506667pt;}
.y76{bottom:158.573467pt;}
.y87{bottom:163.781600pt;}
.y2f{bottom:166.826667pt;}
.y10e{bottom:166.834667pt;}
.y4e{bottom:166.837333pt;}
.y8f{bottom:166.842667pt;}
.y125{bottom:169.920133pt;}
.y66{bottom:170.453600pt;}
.ydd{bottom:171.621600pt;}
.y1f{bottom:172.578267pt;}
.y9a{bottom:173.317333pt;}
.y75{bottom:175.906800pt;}
.y2e{bottom:178.162667pt;}
.y10d{bottom:178.170667pt;}
.y4d{bottom:178.173333pt;}
.y8e{bottom:178.178667pt;}
.y86{bottom:181.114933pt;}
.ya6{bottom:185.847600pt;}
.y124{bottom:185.920133pt;}
.y65{bottom:188.053600pt;}
.ydc{bottom:189.114933pt;}
.y2d{bottom:189.498667pt;}
.y10c{bottom:189.506667pt;}
.y4c{bottom:189.509333pt;}
.y8d{bottom:189.514667pt;}
.y99{bottom:191.130667pt;}
.y74{bottom:193.240133pt;}
.y85{bottom:198.453467pt;}
.ya5{bottom:199.180933pt;}
.y1e{bottom:199.791600pt;}
.y2c{bottom:200.834667pt;}
.y10b{bottom:200.842667pt;}
.y4b{bottom:200.845333pt;}
.y8c{bottom:200.850667pt;}
.y123{bottom:201.920133pt;}
.y64{bottom:205.653600pt;}
.y4{bottom:206.020800pt;}
.ydb{bottom:206.608267pt;}
.y98{bottom:208.944000pt;}
.y73{bottom:210.573467pt;}
.y2b{bottom:212.170667pt;}
.y10a{bottom:212.178667pt;}
.y4a{bottom:212.181333pt;}
.ya4{bottom:212.514267pt;}
.y8b{bottom:215.072667pt;}
.y84{bottom:215.786800pt;}
.y63{bottom:223.253600pt;}
.y2a{bottom:223.506667pt;}
.y109{bottom:223.514667pt;}
.y49{bottom:223.517333pt;}
.yda{bottom:224.101600pt;}
.ya3{bottom:225.847600pt;}
.y97{bottom:226.757333pt;}
.y72{bottom:227.906800pt;}
.y83{bottom:233.120133pt;}
.y106{bottom:233.866800pt;}
.y29{bottom:234.842667pt;}
.y108{bottom:234.850667pt;}
.y48{bottom:237.739333pt;}
.y3{bottom:238.687467pt;}
.y62{bottom:240.853600pt;}
.y1d{bottom:241.404933pt;}
.yd9{bottom:241.594933pt;}
.y96{bottom:244.570667pt;}
.y71{bottom:245.240133pt;}
.y28{bottom:246.178667pt;}
.y107{bottom:249.072667pt;}
.y82{bottom:250.453467pt;}
.y105{bottom:251.200133pt;}
.y47{bottom:252.173333pt;}
.y27{bottom:257.514667pt;}
.y61{bottom:258.453600pt;}
.ya9{bottom:258.812800pt;}
.y1c{bottom:259.018267pt;}
.yd8{bottom:259.088267pt;}
.y95{bottom:262.384000pt;}
.y70{bottom:262.573467pt;}
.y46{bottom:263.509333pt;}
.y81{bottom:267.786800pt;}
.y104{bottom:268.533467pt;}
.y26{bottom:268.850667pt;}
.y45{bottom:274.845333pt;}
.y60{bottom:276.053600pt;}
.yd7{bottom:276.581600pt;}
.y1b{bottom:276.631600pt;}
.y6f{bottom:279.906800pt;}
.y94{bottom:280.197333pt;}
.y2{bottom:282.687467pt;}
.y25{bottom:283.072667pt;}
.y80{bottom:285.120133pt;}
.y103{bottom:285.866800pt;}
.y44{bottom:286.181333pt;}
.ya8{bottom:291.119467pt;}
.y5f{bottom:293.653600pt;}
.yd6{bottom:294.074933pt;}
.y1a{bottom:294.244933pt;}
.y43{bottom:297.517333pt;}
.y93{bottom:298.010667pt;}
.y7f{bottom:302.453467pt;}
.y6e{bottom:306.840133pt;}
.y5e{bottom:311.253600pt;}
.yd5{bottom:311.568267pt;}
.y42{bottom:311.739333pt;}
.y19{bottom:311.858267pt;}
.y102{bottom:312.800133pt;}
.y92{bottom:315.824000pt;}
.y7e{bottom:319.786800pt;}
.ya7{bottom:323.426133pt;}
.y41{bottom:326.181333pt;}
.y5d{bottom:328.853600pt;}
.yd4{bottom:329.061600pt;}
.y18{bottom:329.471600pt;}
.y101{bottom:330.133467pt;}
.y91{bottom:333.637333pt;}
.y40{bottom:337.517333pt;}
.y1{bottom:344.020800pt;}
.y5c{bottom:346.453600pt;}
.yd3{bottom:346.554933pt;}
.y17{bottom:347.084933pt;}
.y100{bottom:347.466800pt;}
.y3f{bottom:351.739333pt;}
.y6d{bottom:357.808667pt;}
.yd2{bottom:364.048267pt;}
.y5b{bottom:364.053600pt;}
.y16{bottom:364.698267pt;}
.yff{bottom:365.280133pt;}
.y7b{bottom:370.610667pt;}
.y6c{bottom:371.142000pt;}
.ya2{bottom:372.084133pt;}
.yd1{bottom:381.541600pt;}
.y5a{bottom:381.653600pt;}
.y7a{bottom:383.944000pt;}
.y6b{bottom:384.475333pt;}
.ya1{bottom:385.417467pt;}
.yfe{bottom:386.453467pt;}
.y15{bottom:391.911600pt;}
.y6a{bottom:397.808667pt;}
.ya0{bottom:398.750800pt;}
.yd0{bottom:399.028267pt;}
.y59{bottom:399.253600pt;}
.y69{bottom:411.142000pt;}
.yfd{bottom:413.440133pt;}
.y58{bottom:416.853600pt;}
.y12c{bottom:418.367333pt;}
.ycf{bottom:426.088267pt;}
.yfc{bottom:430.773467pt;}
.y57{bottom:434.453600pt;}
.y12b{bottom:437.696667pt;}
.yce{bottom:443.581600pt;}
.yfb{bottom:448.106800pt;}
.ycd{bottom:461.074933pt;}
.y56{bottom:461.653600pt;}
.yfa{bottom:465.440133pt;}
.ycc{bottom:478.568267pt;}
.yf9{bottom:482.773467pt;}
.y55{bottom:488.853600pt;}
.ycb{bottom:496.061600pt;}
.yf8{bottom:500.106800pt;}
.y54{bottom:506.453600pt;}
.yca{bottom:513.548267pt;}
.yf7{bottom:517.440133pt;}
.y122{bottom:519.821600pt;}
.y53{bottom:533.653600pt;}
.yf6{bottom:534.773467pt;}
.yc9{bottom:535.721600pt;}
.y121{bottom:537.154933pt;}
.y120{bottom:554.488267pt;}
.yf5{bottom:555.946800pt;}
.yc8{bottom:562.814933pt;}
.y11f{bottom:581.421600pt;}
.yf4{bottom:582.933467pt;}
.yc7{bottom:589.908267pt;}
.y33{bottom:590.468267pt;}
.y11e{bottom:598.688267pt;}
.yf3{bottom:600.266800pt;}
.y32{bottom:603.801600pt;}
.yc6{bottom:607.401600pt;}
.y11d{bottom:615.954933pt;}
.y31{bottom:617.134933pt;}
.yf2{bottom:617.600133pt;}
.yc5{bottom:634.494933pt;}
.yf1{bottom:634.933467pt;}
.y11c{bottom:642.821600pt;}
.y52{bottom:650.100000pt;}
.yc4{bottom:651.988267pt;}
.yf0{bottom:652.266800pt;}
.y11b{bottom:660.088267pt;}
.yc3{bottom:669.481600pt;}
.yef{bottom:673.440133pt;}
.y11a{bottom:677.354933pt;}
.y51{bottom:682.406667pt;}
.yc2{bottom:686.974933pt;}
.yee{bottom:700.426800pt;}
.y119{bottom:704.221600pt;}
.yc1{bottom:704.468267pt;}
.y50{bottom:714.713333pt;}
.yed{bottom:717.760133pt;}
.y118{bottom:721.488267pt;}
.yc0{bottom:721.961600pt;}
.yec{bottom:735.093467pt;}
.y117{bottom:738.754933pt;}
.ybf{bottom:739.454933pt;}
.yb5{bottom:742.901600pt;}
.yeb{bottom:752.426800pt;}
.y14{bottom:753.360400pt;}
.yb4{bottom:760.234933pt;}
.y3e{bottom:763.733467pt;}
.y116{bottom:765.621600pt;}
.ybe{bottom:766.548267pt;}
.y13{bottom:770.960400pt;}
.yea{bottom:773.600133pt;}
.yb3{bottom:777.568267pt;}
.y3d{bottom:781.333467pt;}
.y115{bottom:782.954933pt;}
.ybd{bottom:784.041600pt;}
.y12{bottom:788.560400pt;}
.yb2{bottom:794.901600pt;}
.y3c{bottom:798.933467pt;}
.ye9{bottom:800.586800pt;}
.ybc{bottom:801.534933pt;}
.y11{bottom:806.160400pt;}
.y114{bottom:809.888267pt;}
.yb1{bottom:812.234933pt;}
.y3b{bottom:816.533467pt;}
.ye8{bottom:817.920133pt;}
.ybb{bottom:819.028267pt;}
.y10{bottom:823.760400pt;}
.y113{bottom:827.221600pt;}
.yb0{bottom:829.568267pt;}
.y3a{bottom:834.133467pt;}
.ye7{bottom:835.253467pt;}
.yf{bottom:841.360400pt;}
.yba{bottom:846.108267pt;}
.yaf{bottom:846.901600pt;}
.y39{bottom:851.733467pt;}
.ye6{bottom:852.586800pt;}
.y112{bottom:854.154933pt;}
.ye{bottom:858.960400pt;}
.yb9{bottom:863.601600pt;}
.yae{bottom:864.234933pt;}
.ye5{bottom:869.920133pt;}
.yd{bottom:876.560400pt;}
.y38{bottom:878.933467pt;}
.y111{bottom:881.088267pt;}
.yb8{bottom:881.094933pt;}
.yad{bottom:881.568267pt;}
.yc{bottom:894.160400pt;}
.y37{bottom:896.533467pt;}
.ye4{bottom:896.853467pt;}
.y110{bottom:898.421600pt;}
.yb7{bottom:898.588267pt;}
.yac{bottom:898.901600pt;}
.yb{bottom:911.760400pt;}
.y36{bottom:914.133467pt;}
.ye3{bottom:914.186800pt;}
.y7d{bottom:914.666800pt;}
.yb6{bottom:916.081600pt;}
.yab{bottom:916.234933pt;}
.y35{bottom:931.733467pt;}
.y7c{bottom:932.000133pt;}
.ya{bottom:938.960400pt;}
.yaa{bottom:943.168267pt;}
.y34{bottom:949.333467pt;}
.y8{bottom:1004.560000pt;}
.hf{height:14.773997pt;}
.hb{height:16.224000pt;}
.hd{height:25.306667pt;}
.hc{height:27.768000pt;}
.h6{height:28.416000pt;}
.h16{height:29.904000pt;}
.he{height:31.189333pt;}
.h7{height:31.968000pt;}
.h5{height:34.176000pt;}
.h15{height:35.030400pt;}
.h4{height:35.088000pt;}
.h9{height:35.733333pt;}
.h14{height:35.867733pt;}
.h13{height:38.592533pt;}
.h10{height:38.986667pt;}
.h11{height:40.468427pt;}
.ha{height:40.489227pt;}
.h12{height:45.930667pt;}
.h3{height:54.581333pt;}
.h8{height:62.378667pt;}
.h1{height:77.973333pt;}
.h2{height:170.496000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:96.960000pt;}
.x5{left:101.765067pt;}
.x7{left:102.960000pt;}
.xd{left:168.781200pt;}
.x4{left:240.000000pt;}
.x6{left:258.386667pt;}
.x8{left:276.000000pt;}
.xa{left:310.866400pt;}
.xb{left:622.594933pt;}
.xc{left:709.874000pt;}
.x9{left:744.000000pt;}
.x3{left:750.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; }
  