
    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_32031bcced0cf62a87bc1e16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2a94ce93a7b3585cfe19d213.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_dc189ddf21ece6bf10dca770.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_2289591f7b2a27e4d8587fe5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_d7ac70030d013ad6ffe0935d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_9ede85b1d73f33e6dd17b621.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_9104bd40d97edf1869b4ae81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_c0bb5a07e5a122aba0ed5f00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_e00872cfef94ce1b7eaa577f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.052734;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_62093e12f69eea9dcd7e17b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_6f86f5c7ec0371e930a5381f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v2{vertical-align:-14.400000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v5{vertical-align:48.000000px;}
.v4{vertical-align:54.570000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls2a{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.192000px;}
.ls26{letter-spacing:-0.168000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.012000px;}
.ls1d{letter-spacing:-0.000006px;}
.ls22{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000003px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.168000px;}
.lse{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls14{letter-spacing:0.438000px;}
.ls4{letter-spacing:0.600000px;}
.lsf{letter-spacing:1.392000px;}
.ls11{letter-spacing:1.560000px;}
.ls12{letter-spacing:2.112000px;}
.lsd{letter-spacing:3.000000px;}
.ls10{letter-spacing:3.216000px;}
.ls28{letter-spacing:6.060000px;}
.ls1a{letter-spacing:15.816000px;}
.ls19{letter-spacing:16.416000px;}
.ls17{letter-spacing:20.016000px;}
.ls18{letter-spacing:20.358000px;}
.lsc{letter-spacing:21.540000px;}
.ls24{letter-spacing:22.800000px;}
.ls1b{letter-spacing:24.558000px;}
.ls29{letter-spacing:30.984000px;}
.ls27{letter-spacing:57.780000px;}
.ls1c{letter-spacing:198.252000px;}
.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;}
}
.ws11{word-spacing:-72.000003px;}
.ws12{word-spacing:-72.000000px;}
.ws14{word-spacing:-71.999997px;}
.ws16{word-spacing:-56.184000px;}
.ws13{word-spacing:-55.008000px;}
.ws10{word-spacing:-50.544000px;}
.wsb{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.192000px;}
.wse{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.999994px;}
.ws18{word-spacing:-17.832000px;}
.ws17{word-spacing:-17.808000px;}
.ws15{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wsd{word-spacing:-12.000000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-4.680000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._8{width:2.130000px;}
._23{width:3.516000px;}
._11{width:4.680000px;}
._9{width:5.832000px;}
._5{width:6.912000px;}
._4{width:8.406000px;}
._12{width:9.936000px;}
._22{width:11.664000px;}
._26{width:12.744000px;}
._27{width:14.640000px;}
._7{width:15.768000px;}
._6{width:16.776000px;}
._4b{width:17.958000px;}
._a{width:19.296000px;}
._b{width:20.478000px;}
._21{width:21.486000px;}
._e{width:22.680000px;}
._f{width:23.814000px;}
._4d{width:24.984000px;}
._18{width:25.992000px;}
._19{width:27.576000px;}
._1b{width:28.776000px;}
._10{width:30.096000px;}
._1a{width:31.512000px;}
._c{width:33.408000px;}
._d{width:34.632000px;}
._17{width:35.814000px;}
._1c{width:37.122000px;}
._15{width:39.024000px;}
._13{width:40.824000px;}
._14{width:41.832000px;}
._40{width:43.344000px;}
._36{width:44.424000px;}
._1f{width:45.792000px;}
._20{width:47.016000px;}
._41{width:48.096000px;}
._2c{width:49.206000px;}
._33{width:50.616000px;}
._2e{width:51.624000px;}
._28{width:53.712000px;}
._29{width:55.080000px;}
._16{width:56.160000px;}
._37{width:57.600000px;}
._38{width:59.112000px;}
._50{width:60.408000px;}
._51{width:61.632000px;}
._39{width:63.720000px;}
._43{width:64.890000px;}
._3e{width:65.952000px;}
._3f{width:67.248000px;}
._2d{width:69.192000px;}
._1e{width:70.848000px;}
._53{width:72.720000px;}
._57{width:73.728000px;}
._3a{width:75.096000px;}
._3b{width:76.464000px;}
._52{width:77.790000px;}
._4a{width:79.056000px;}
._49{width:80.064000px;}
._34{width:85.536000px;}
._35{width:87.120000px;}
._31{width:89.424000px;}
._44{width:90.792000px;}
._47{width:93.024000px;}
._30{width:94.248000px;}
._58{width:95.964000px;}
._46{width:96.984000px;}
._3d{width:98.256000px;}
._3c{width:99.312000px;}
._48{width:103.320000px;}
._2a{width:108.864000px;}
._2b{width:110.160000px;}
._45{width:111.240000px;}
._54{width:112.896000px;}
._4e{width:115.056000px;}
._4f{width:116.064000px;}
._42{width:117.216000px;}
._2f{width:122.328000px;}
._55{width:125.064000px;}
._56{width:126.576000px;}
._24{width:129.960000px;}
._25{width:131.688000px;}
._4c{width:138.384000px;}
._32{width:174.240000px;}
._59{width:206.712000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.ye0{bottom:3.885000px;}
.y1d{bottom:3.900000px;}
.y1f{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y57{bottom:14.235000px;}
.y47{bottom:14.250000px;}
.ydb{bottom:14.265000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y1c{bottom:24.600000px;}
.ydd{bottom:24.615000px;}
.y9{bottom:33.900000px;}
.y46{bottom:34.950000px;}
.yda{bottom:34.965000px;}
.ye3{bottom:34.995000px;}
.y5{bottom:36.000000px;}
.y1b{bottom:45.300000px;}
.ydc{bottom:45.315000px;}
.ye5{bottom:45.345000px;}
.y4b{bottom:55.650000px;}
.y56{bottom:55.680000px;}
.ye2{bottom:55.695000px;}
.y3{bottom:57.637500px;}
.y1a{bottom:66.000000px;}
.y53{bottom:66.030000px;}
.ye4{bottom:66.045000px;}
.y4a{bottom:76.350000px;}
.y55{bottom:76.380000px;}
.ye6{bottom:76.395000px;}
.y2{bottom:81.637500px;}
.y19{bottom:86.700000px;}
.y59{bottom:86.730000px;}
.y4f{bottom:86.745000px;}
.ydf{bottom:97.050000px;}
.y54{bottom:97.080000px;}
.y4c{bottom:97.095000px;}
.y18{bottom:107.400000px;}
.y58{bottom:107.430000px;}
.y4e{bottom:107.445000px;}
.y3c{bottom:115.837500px;}
.y62{bottom:119.437500px;}
.ya5{bottom:122.137500px;}
.yc8{bottom:126.487500px;}
.yd8{bottom:126.637500px;}
.y17{bottom:128.100000px;}
.y4d{bottom:128.130000px;}
.yf7{bottom:128.437500px;}
.yc7{bottom:138.487500px;}
.y3b{bottom:139.687500px;}
.y61{bottom:143.137500px;}
.ya4{bottom:145.987500px;}
.y16{bottom:148.800000px;}
.yd7{bottom:150.495000px;}
.yf6{bottom:152.295000px;}
.y3a{bottom:163.395000px;}
.y60{bottom:166.995000px;}
.y15{bottom:169.500000px;}
.ya3{bottom:169.845000px;}
.yc6{bottom:173.895000px;}
.yd6{bottom:174.345000px;}
.yf5{bottom:175.995000px;}
.y39{bottom:187.245000px;}
.y5f{bottom:190.845000px;}
.ya2{bottom:193.545000px;}
.yc5{bottom:197.595000px;}
.yd5{bottom:198.195000px;}
.yf4{bottom:199.830000px;}
.y38{bottom:211.095000px;}
.y5e{bottom:214.545000px;}
.ya1{bottom:217.395000px;}
.yc4{bottom:221.445000px;}
.yd4{bottom:221.895000px;}
.yf3{bottom:223.695000px;}
.y37{bottom:234.795000px;}
.y5d{bottom:238.395000px;}
.ya0{bottom:241.245000px;}
.yc3{bottom:245.295000px;}
.yd3{bottom:245.745000px;}
.yf2{bottom:247.395000px;}
.y36{bottom:258.645000px;}
.y5c{bottom:262.245000px;}
.y9f{bottom:264.945000px;}
.yc2{bottom:268.995000px;}
.yd2{bottom:269.595000px;}
.yf1{bottom:271.245000px;}
.y35{bottom:282.495000px;}
.y5b{bottom:285.945000px;}
.y9e{bottom:288.795000px;}
.yc1{bottom:292.845000px;}
.yd1{bottom:293.295000px;}
.yf0{bottom:295.095000px;}
.y34{bottom:306.195000px;}
.y5a{bottom:309.795000px;}
.y9d{bottom:312.645000px;}
.yc0{bottom:316.695000px;}
.yd0{bottom:317.130000px;}
.yef{bottom:318.795000px;}
.y52{bottom:327.345000px;}
.y33{bottom:330.045000px;}
.y9c{bottom:336.495000px;}
.y83{bottom:338.595000px;}
.ybf{bottom:340.545000px;}
.ycf{bottom:340.995000px;}
.yee{bottom:342.645000px;}
.y32{bottom:353.880000px;}
.y9b{bottom:360.195000px;}
.y82{bottom:362.445000px;}
.ybe{bottom:364.245000px;}
.yce{bottom:364.695000px;}
.yed{bottom:366.495000px;}
.y31{bottom:377.595000px;}
.y9a{bottom:384.075000px;}
.y81{bottom:386.325000px;}
.ybd{bottom:388.125000px;}
.ycd{bottom:388.575000px;}
.yec{bottom:390.225000px;}
.y30{bottom:401.475000px;}
.y99{bottom:407.925000px;}
.y80{bottom:410.025000px;}
.ybc{bottom:411.975000px;}
.ycc{bottom:412.425000px;}
.yeb{bottom:414.075000px;}
.y2f{bottom:425.325000px;}
.y98{bottom:431.625000px;}
.y7f{bottom:433.875000px;}
.ybb{bottom:435.675000px;}
.ycb{bottom:436.125000px;}
.yea{bottom:437.925000px;}
.y2e{bottom:449.025000px;}
.y51{bottom:452.325000px;}
.y97{bottom:455.475000px;}
.y7e{bottom:457.725000px;}
.yba{bottom:459.525000px;}
.yca{bottom:459.975000px;}
.ye9{bottom:461.625000px;}
.y2d{bottom:472.875000px;}
.y96{bottom:479.325000px;}
.y7d{bottom:481.425000px;}
.yb9{bottom:483.525000px;}
.yc9{bottom:483.825000px;}
.ye8{bottom:485.475000px;}
.y2c{bottom:496.725000px;}
.y95{bottom:503.025000px;}
.y7c{bottom:505.275000px;}
.yb8{bottom:507.525000px;}
.y2b{bottom:520.575000px;}
.y94{bottom:526.875000px;}
.y7b{bottom:529.125000px;}
.yb7{bottom:531.375000px;}
.y2a{bottom:544.275000px;}
.y93{bottom:550.725000px;}
.y7a{bottom:552.825000px;}
.yb6{bottom:555.225000px;}
.y50{bottom:556.575000px;}
.y29{bottom:568.125000px;}
.y92{bottom:574.425000px;}
.y79{bottom:576.675000px;}
.yb5{bottom:579.075000px;}
.y28{bottom:591.975000px;}
.y91{bottom:598.275000px;}
.y78{bottom:600.525000px;}
.yb4{bottom:602.775000px;}
.ye7{bottom:607.275000px;}
.y27{bottom:615.675000px;}
.y90{bottom:622.125000px;}
.y77{bottom:624.225000px;}
.yb3{bottom:626.625000px;}
.y26{bottom:639.525000px;}
.y8f{bottom:645.825000px;}
.y76{bottom:648.075000px;}
.yb2{bottom:650.475000px;}
.y49{bottom:660.825000px;}
.y25{bottom:663.375000px;}
.y8e{bottom:669.675000px;}
.y75{bottom:671.925000px;}
.yb1{bottom:674.175000px;}
.y24{bottom:687.075000px;}
.y8d{bottom:693.525000px;}
.y74{bottom:695.625000px;}
.yb0{bottom:698.025000px;}
.y23{bottom:710.925000px;}
.ye1{bottom:711.525000px;}
.y8c{bottom:717.225000px;}
.y73{bottom:719.475000px;}
.yaf{bottom:721.875000px;}
.y22{bottom:734.775000px;}
.y8b{bottom:741.120000px;}
.y72{bottom:743.370000px;}
.yae{bottom:745.620000px;}
.y8a{bottom:764.970000px;}
.y71{bottom:767.220000px;}
.y21{bottom:767.520000px;}
.yad{bottom:769.470000px;}
.y20{bottom:784.320000px;}
.y89{bottom:788.820000px;}
.y70{bottom:790.920000px;}
.yac{bottom:793.320000px;}
.y48{bottom:806.520000px;}
.y88{bottom:812.520000px;}
.y6f{bottom:814.770000px;}
.yde{bottom:815.820000px;}
.yab{bottom:817.020000px;}
.y1e{bottom:825.705000px;}
.y87{bottom:836.370000px;}
.y6e{bottom:838.620000px;}
.yaa{bottom:840.870000px;}
.y14{bottom:846.420000px;}
.y86{bottom:860.205000px;}
.y6d{bottom:862.320000px;}
.ya9{bottom:864.720000px;}
.y85{bottom:883.920000px;}
.y6c{bottom:886.170000px;}
.ya8{bottom:888.420000px;}
.y45{bottom:890.070000px;}
.y84{bottom:903.870000px;}
.y6b{bottom:910.020000px;}
.ya7{bottom:912.270000px;}
.y6a{bottom:933.720000px;}
.ya6{bottom:936.120000px;}
.y69{bottom:957.570000px;}
.y44{bottom:959.970000px;}
.yd9{bottom:961.455000px;}
.y68{bottom:981.420000px;}
.y43{bottom:983.670000px;}
.y67{bottom:1005.270000px;}
.y42{bottom:1007.520000px;}
.y66{bottom:1029.570000px;}
.y41{bottom:1031.370000px;}
.y13{bottom:1036.320000px;}
.y65{bottom:1053.870000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y64{bottom:1078.170000px;}
.y3f{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y63{bottom:1102.500000px;}
.y3e{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y3d{bottom:1126.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h10{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h13{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h18{height:60.679688px;}
.h12{height:62.100000px;}
.hb{height:64.546875px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h11{height:70.628906px;}
.hc{height:70.664062px;}
.ha{height:72.562500px;}
.h1d{height:74.004654px;}
.h2{height:82.441406px;}
.h14{height:82.785000px;}
.h16{height:103.500000px;}
.h1c{height:103.537500px;}
.h19{height:115.249688px;}
.h1a{height:118.664062px;}
.h17{height:124.237500px;}
.h1b{height:144.900000px;}
.h15{height:144.937500px;}
.he{height:186.300000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:87.637500px;}
.wc{width:88.500000px;}
.wf{width:98.250000px;}
.we{width:107.100000px;}
.w9{width:108.187500px;}
.wb{width:127.537500px;}
.wa{width:146.550000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x18{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1c{left:51.450000px;}
.x27{left:69.449987px;}
.x10{left:87.149987px;}
.x19{left:95.699987px;}
.x17{left:100.200000px;}
.x16{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1d{left:160.395000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x1e{left:307.695000px;}
.x1f{left:436.424987px;}
.x12{left:448.724987px;}
.x1a{left:457.274987px;}
.x23{left:466.125000px;}
.x28{left:484.124987px;}
.x1b{left:510.374987px;}
.x14{left:551.174987px;}
.x24{left:555.375000px;}
.x11{left:559.124987px;}
.x20{left:564.974987px;}
.x21{left:571.874987px;}
.xc{left:625.425000px;}
.x25{left:643.770000px;}
.x22{left:676.619987px;}
.x13{left:701.654987px;}
.xf{left:713.655000px;}
.x26{left:751.620000px;}
.x2{left:819.119987px;}
.x15{left:850.619987px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v5{vertical-align:42.666667pt;}
.v4{vertical-align:48.506667pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls2a{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.170667pt;}
.ls26{letter-spacing:-0.149333pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls1d{letter-spacing:-0.000005pt;}
.ls22{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000003pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.149333pt;}
.lse{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls14{letter-spacing:0.389333pt;}
.ls4{letter-spacing:0.533333pt;}
.lsf{letter-spacing:1.237333pt;}
.ls11{letter-spacing:1.386667pt;}
.ls12{letter-spacing:1.877333pt;}
.lsd{letter-spacing:2.666667pt;}
.ls10{letter-spacing:2.858667pt;}
.ls28{letter-spacing:5.386667pt;}
.ls1a{letter-spacing:14.058667pt;}
.ls19{letter-spacing:14.592000pt;}
.ls17{letter-spacing:17.792000pt;}
.ls18{letter-spacing:18.096000pt;}
.lsc{letter-spacing:19.146667pt;}
.ls24{letter-spacing:20.266667pt;}
.ls1b{letter-spacing:21.829333pt;}
.ls29{letter-spacing:27.541333pt;}
.ls27{letter-spacing:51.360000pt;}
.ls1c{letter-spacing:176.224000pt;}
.ws11{word-spacing:-64.000003pt;}
.ws12{word-spacing:-64.000000pt;}
.ws14{word-spacing:-63.999997pt;}
.ws16{word-spacing:-49.941333pt;}
.ws13{word-spacing:-48.896000pt;}
.ws10{word-spacing:-44.928000pt;}
.wsb{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.170667pt;}
.wse{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.999995pt;}
.ws18{word-spacing:-15.850667pt;}
.ws17{word-spacing:-15.829333pt;}
.ws15{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wsd{word-spacing:-10.666667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-4.160000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._8{width:1.893333pt;}
._23{width:3.125333pt;}
._11{width:4.160000pt;}
._9{width:5.184000pt;}
._5{width:6.144000pt;}
._4{width:7.472000pt;}
._12{width:8.832000pt;}
._22{width:10.368000pt;}
._26{width:11.328000pt;}
._27{width:13.013333pt;}
._7{width:14.016000pt;}
._6{width:14.912000pt;}
._4b{width:15.962667pt;}
._a{width:17.152000pt;}
._b{width:18.202667pt;}
._21{width:19.098667pt;}
._e{width:20.160000pt;}
._f{width:21.168000pt;}
._4d{width:22.208000pt;}
._18{width:23.104000pt;}
._19{width:24.512000pt;}
._1b{width:25.578667pt;}
._10{width:26.752000pt;}
._1a{width:28.010667pt;}
._c{width:29.696000pt;}
._d{width:30.784000pt;}
._17{width:31.834667pt;}
._1c{width:32.997333pt;}
._15{width:34.688000pt;}
._13{width:36.288000pt;}
._14{width:37.184000pt;}
._40{width:38.528000pt;}
._36{width:39.488000pt;}
._1f{width:40.704000pt;}
._20{width:41.792000pt;}
._41{width:42.752000pt;}
._2c{width:43.738667pt;}
._33{width:44.992000pt;}
._2e{width:45.888000pt;}
._28{width:47.744000pt;}
._29{width:48.960000pt;}
._16{width:49.920000pt;}
._37{width:51.200000pt;}
._38{width:52.544000pt;}
._50{width:53.696000pt;}
._51{width:54.784000pt;}
._39{width:56.640000pt;}
._43{width:57.680000pt;}
._3e{width:58.624000pt;}
._3f{width:59.776000pt;}
._2d{width:61.504000pt;}
._1e{width:62.976000pt;}
._53{width:64.640000pt;}
._57{width:65.536000pt;}
._3a{width:66.752000pt;}
._3b{width:67.968000pt;}
._52{width:69.146667pt;}
._4a{width:70.272000pt;}
._49{width:71.168000pt;}
._34{width:76.032000pt;}
._35{width:77.440000pt;}
._31{width:79.488000pt;}
._44{width:80.704000pt;}
._47{width:82.688000pt;}
._30{width:83.776000pt;}
._58{width:85.301333pt;}
._46{width:86.208000pt;}
._3d{width:87.338667pt;}
._3c{width:88.277333pt;}
._48{width:91.840000pt;}
._2a{width:96.768000pt;}
._2b{width:97.920000pt;}
._45{width:98.880000pt;}
._54{width:100.352000pt;}
._4e{width:102.272000pt;}
._4f{width:103.168000pt;}
._42{width:104.192000pt;}
._2f{width:108.736000pt;}
._55{width:111.168000pt;}
._56{width:112.512000pt;}
._24{width:115.520000pt;}
._25{width:117.056000pt;}
._4c{width:123.008000pt;}
._32{width:154.880000pt;}
._59{width:183.744000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.ye0{bottom:3.453333pt;}
.y1d{bottom:3.466667pt;}
.y1f{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y57{bottom:12.653333pt;}
.y47{bottom:12.666667pt;}
.ydb{bottom:12.680000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y1c{bottom:21.866667pt;}
.ydd{bottom:21.880000pt;}
.y9{bottom:30.133333pt;}
.y46{bottom:31.066667pt;}
.yda{bottom:31.080000pt;}
.ye3{bottom:31.106667pt;}
.y5{bottom:32.000000pt;}
.y1b{bottom:40.266667pt;}
.ydc{bottom:40.280000pt;}
.ye5{bottom:40.306667pt;}
.y4b{bottom:49.466667pt;}
.y56{bottom:49.493333pt;}
.ye2{bottom:49.506667pt;}
.y3{bottom:51.233333pt;}
.y1a{bottom:58.666667pt;}
.y53{bottom:58.693333pt;}
.ye4{bottom:58.706667pt;}
.y4a{bottom:67.866667pt;}
.y55{bottom:67.893333pt;}
.ye6{bottom:67.906667pt;}
.y2{bottom:72.566667pt;}
.y19{bottom:77.066667pt;}
.y59{bottom:77.093333pt;}
.y4f{bottom:77.106667pt;}
.ydf{bottom:86.266667pt;}
.y54{bottom:86.293333pt;}
.y4c{bottom:86.306667pt;}
.y18{bottom:95.466667pt;}
.y58{bottom:95.493333pt;}
.y4e{bottom:95.506667pt;}
.y3c{bottom:102.966667pt;}
.y62{bottom:106.166667pt;}
.ya5{bottom:108.566667pt;}
.yc8{bottom:112.433333pt;}
.yd8{bottom:112.566667pt;}
.y17{bottom:113.866667pt;}
.y4d{bottom:113.893333pt;}
.yf7{bottom:114.166667pt;}
.yc7{bottom:123.100000pt;}
.y3b{bottom:124.166667pt;}
.y61{bottom:127.233333pt;}
.ya4{bottom:129.766667pt;}
.y16{bottom:132.266667pt;}
.yd7{bottom:133.773333pt;}
.yf6{bottom:135.373333pt;}
.y3a{bottom:145.240000pt;}
.y60{bottom:148.440000pt;}
.y15{bottom:150.666667pt;}
.ya3{bottom:150.973333pt;}
.yc6{bottom:154.573333pt;}
.yd6{bottom:154.973333pt;}
.yf5{bottom:156.440000pt;}
.y39{bottom:166.440000pt;}
.y5f{bottom:169.640000pt;}
.ya2{bottom:172.040000pt;}
.yc5{bottom:175.640000pt;}
.yd5{bottom:176.173333pt;}
.yf4{bottom:177.626667pt;}
.y38{bottom:187.640000pt;}
.y5e{bottom:190.706667pt;}
.ya1{bottom:193.240000pt;}
.yc4{bottom:196.840000pt;}
.yd4{bottom:197.240000pt;}
.yf3{bottom:198.840000pt;}
.y37{bottom:208.706667pt;}
.y5d{bottom:211.906667pt;}
.ya0{bottom:214.440000pt;}
.yc3{bottom:218.040000pt;}
.yd3{bottom:218.440000pt;}
.yf2{bottom:219.906667pt;}
.y36{bottom:229.906667pt;}
.y5c{bottom:233.106667pt;}
.y9f{bottom:235.506667pt;}
.yc2{bottom:239.106667pt;}
.yd2{bottom:239.640000pt;}
.yf1{bottom:241.106667pt;}
.y35{bottom:251.106667pt;}
.y5b{bottom:254.173333pt;}
.y9e{bottom:256.706667pt;}
.yc1{bottom:260.306667pt;}
.yd1{bottom:260.706667pt;}
.yf0{bottom:262.306667pt;}
.y34{bottom:272.173333pt;}
.y5a{bottom:275.373333pt;}
.y9d{bottom:277.906667pt;}
.yc0{bottom:281.506667pt;}
.yd0{bottom:281.893333pt;}
.yef{bottom:283.373333pt;}
.y52{bottom:290.973333pt;}
.y33{bottom:293.373333pt;}
.y9c{bottom:299.106667pt;}
.y83{bottom:300.973333pt;}
.ybf{bottom:302.706667pt;}
.ycf{bottom:303.106667pt;}
.yee{bottom:304.573333pt;}
.y32{bottom:314.560000pt;}
.y9b{bottom:320.173333pt;}
.y82{bottom:322.173333pt;}
.ybe{bottom:323.773333pt;}
.yce{bottom:324.173333pt;}
.yed{bottom:325.773333pt;}
.y31{bottom:335.640000pt;}
.y9a{bottom:341.400000pt;}
.y81{bottom:343.400000pt;}
.ybd{bottom:345.000000pt;}
.ycd{bottom:345.400000pt;}
.yec{bottom:346.866667pt;}
.y30{bottom:356.866667pt;}
.y99{bottom:362.600000pt;}
.y80{bottom:364.466667pt;}
.ybc{bottom:366.200000pt;}
.ycc{bottom:366.600000pt;}
.yeb{bottom:368.066667pt;}
.y2f{bottom:378.066667pt;}
.y98{bottom:383.666667pt;}
.y7f{bottom:385.666667pt;}
.ybb{bottom:387.266667pt;}
.ycb{bottom:387.666667pt;}
.yea{bottom:389.266667pt;}
.y2e{bottom:399.133333pt;}
.y51{bottom:402.066667pt;}
.y97{bottom:404.866667pt;}
.y7e{bottom:406.866667pt;}
.yba{bottom:408.466667pt;}
.yca{bottom:408.866667pt;}
.ye9{bottom:410.333333pt;}
.y2d{bottom:420.333333pt;}
.y96{bottom:426.066667pt;}
.y7d{bottom:427.933333pt;}
.yb9{bottom:429.800000pt;}
.yc9{bottom:430.066667pt;}
.ye8{bottom:431.533333pt;}
.y2c{bottom:441.533333pt;}
.y95{bottom:447.133333pt;}
.y7c{bottom:449.133333pt;}
.yb8{bottom:451.133333pt;}
.y2b{bottom:462.733333pt;}
.y94{bottom:468.333333pt;}
.y7b{bottom:470.333333pt;}
.yb7{bottom:472.333333pt;}
.y2a{bottom:483.800000pt;}
.y93{bottom:489.533333pt;}
.y7a{bottom:491.400000pt;}
.yb6{bottom:493.533333pt;}
.y50{bottom:494.733333pt;}
.y29{bottom:505.000000pt;}
.y92{bottom:510.600000pt;}
.y79{bottom:512.600000pt;}
.yb5{bottom:514.733333pt;}
.y28{bottom:526.200000pt;}
.y91{bottom:531.800000pt;}
.y78{bottom:533.800000pt;}
.yb4{bottom:535.800000pt;}
.ye7{bottom:539.800000pt;}
.y27{bottom:547.266667pt;}
.y90{bottom:553.000000pt;}
.y77{bottom:554.866667pt;}
.yb3{bottom:557.000000pt;}
.y26{bottom:568.466667pt;}
.y8f{bottom:574.066667pt;}
.y76{bottom:576.066667pt;}
.yb2{bottom:578.200000pt;}
.y49{bottom:587.400000pt;}
.y25{bottom:589.666667pt;}
.y8e{bottom:595.266667pt;}
.y75{bottom:597.266667pt;}
.yb1{bottom:599.266667pt;}
.y24{bottom:610.733333pt;}
.y8d{bottom:616.466667pt;}
.y74{bottom:618.333333pt;}
.yb0{bottom:620.466667pt;}
.y23{bottom:631.933333pt;}
.ye1{bottom:632.466667pt;}
.y8c{bottom:637.533333pt;}
.y73{bottom:639.533333pt;}
.yaf{bottom:641.666667pt;}
.y22{bottom:653.133333pt;}
.y8b{bottom:658.773333pt;}
.y72{bottom:660.773333pt;}
.yae{bottom:662.773333pt;}
.y8a{bottom:679.973333pt;}
.y71{bottom:681.973333pt;}
.y21{bottom:682.240000pt;}
.yad{bottom:683.973333pt;}
.y20{bottom:697.173333pt;}
.y89{bottom:701.173333pt;}
.y70{bottom:703.040000pt;}
.yac{bottom:705.173333pt;}
.y48{bottom:716.906667pt;}
.y88{bottom:722.240000pt;}
.y6f{bottom:724.240000pt;}
.yde{bottom:725.173333pt;}
.yab{bottom:726.240000pt;}
.y1e{bottom:733.960000pt;}
.y87{bottom:743.440000pt;}
.y6e{bottom:745.440000pt;}
.yaa{bottom:747.440000pt;}
.y14{bottom:752.373333pt;}
.y86{bottom:764.626667pt;}
.y6d{bottom:766.506667pt;}
.ya9{bottom:768.640000pt;}
.y85{bottom:785.706667pt;}
.y6c{bottom:787.706667pt;}
.ya8{bottom:789.706667pt;}
.y45{bottom:791.173333pt;}
.y84{bottom:803.440000pt;}
.y6b{bottom:808.906667pt;}
.ya7{bottom:810.906667pt;}
.y6a{bottom:829.973333pt;}
.ya6{bottom:832.106667pt;}
.y69{bottom:851.173333pt;}
.y44{bottom:853.306667pt;}
.yd9{bottom:854.626667pt;}
.y68{bottom:872.373333pt;}
.y43{bottom:874.373333pt;}
.y67{bottom:893.573333pt;}
.y42{bottom:895.573333pt;}
.y66{bottom:915.173333pt;}
.y41{bottom:916.773333pt;}
.y13{bottom:921.173333pt;}
.y65{bottom:936.773333pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y64{bottom:958.373333pt;}
.y3f{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y63{bottom:980.000000pt;}
.y3e{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y3d{bottom:1001.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h10{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h13{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h18{height:53.937500pt;}
.h12{height:55.200000pt;}
.hb{height:57.375000pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h11{height:62.781250pt;}
.hc{height:62.812500pt;}
.ha{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h2{height:73.281250pt;}
.h14{height:73.586667pt;}
.h16{height:92.000000pt;}
.h1c{height:92.033333pt;}
.h19{height:102.444167pt;}
.h1a{height:105.479167pt;}
.h17{height:110.433333pt;}
.h1b{height:128.800000pt;}
.h15{height:128.833333pt;}
.he{height:165.600000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:77.900000pt;}
.wc{width:78.666667pt;}
.wf{width:87.333333pt;}
.we{width:95.200000pt;}
.w9{width:96.166667pt;}
.wb{width:113.366667pt;}
.wa{width:130.266667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x18{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1c{left:45.733333pt;}
.x27{left:61.733322pt;}
.x10{left:77.466655pt;}
.x19{left:85.066655pt;}
.x17{left:89.066667pt;}
.x16{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1d{left:142.573333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x1e{left:273.506667pt;}
.x1f{left:387.933322pt;}
.x12{left:398.866655pt;}
.x1a{left:406.466655pt;}
.x23{left:414.333333pt;}
.x28{left:430.333322pt;}
.x1b{left:453.666655pt;}
.x14{left:489.933322pt;}
.x24{left:493.666667pt;}
.x11{left:496.999988pt;}
.x20{left:502.199988pt;}
.x21{left:508.333322pt;}
.xc{left:555.933333pt;}
.x25{left:572.240000pt;}
.x22{left:601.439988pt;}
.x13{left:623.693322pt;}
.xf{left:634.360000pt;}
.x26{left:668.106667pt;}
.x2{left:728.106655pt;}
.x15{left:756.106655pt;}
}




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