
    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_6cd12e91eb7504384844a799.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_c47f55fdb2778eae718de984.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_56a78db9509c764f99d8d2a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.099121;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_abe79a722f27b2711e6cd224.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.965000;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_0fa2fe0f896a8c12cdf8bdbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_e3d95a3451dba71511f0bf57.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b66fc33f14f9ac41f4e7a16b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.848145;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_60558f3afa8f0d8901d6c1f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.023000;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_4ed82fafb7b88ff5cd5ee20c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_f97b5dc1f0b70b5296cd6e2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896000;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_3d6248db9bf9837a21ffece1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ebd5a50e9c3432059a5c3c75.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_50c05fa7d6cbba3085e34564.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fabc2815a80188e02898623e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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:fff;src:url('chunks/assets/font_73af8f5f2ef079c2be2a9230.woff2')format("woff");}.fff{font-family:fff;line-height:0.898438;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.205281,0.142688,-0.142688,0.205281,0,0);-ms-transform:matrix(0.205281,0.142688,-0.142688,0.205281,0,0);-webkit-transform:matrix(0.205281,0.142688,-0.142688,0.205281,0,0);}
.m1{transform:matrix(0.238616,-0.074581,0.074581,0.238616,0,0);-ms-transform:matrix(0.238616,-0.074581,0.074581,0.238616,0,0);-webkit-transform:matrix(0.238616,-0.074581,0.074581,0.238616,0,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);}
.v9{vertical-align:-20.831544px;}
.v2{vertical-align:-17.039796px;}
.v7{vertical-align:-16.000002px;}
.v5{vertical-align:-13.887696px;}
.v3{vertical-align:-11.075868px;}
.v4{vertical-align:-9.846600px;}
.v1{vertical-align:-3.120600px;}
.v8{vertical-align:-1.704000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:3.075000px;}
.vd{vertical-align:7.780440px;}
.vb{vertical-align:24.277200px;}
.v6{vertical-align:26.026200px;}
.vc{vertical-align:27.802200px;}
.va{vertical-align:35.753910px;}
.lsb{letter-spacing:-14.376000px;}
.ls8{letter-spacing:-10.200000px;}
.ls13{letter-spacing:-0.104400px;}
.lsc{letter-spacing:-0.076800px;}
.ls10{letter-spacing:-0.033600px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000008px;}
.ls12{letter-spacing:0.000011px;}
.ls3{letter-spacing:0.000212px;}
.ls1{letter-spacing:0.000240px;}
.ls4{letter-spacing:0.030000px;}
.lsd{letter-spacing:0.043200px;}
.lsa{letter-spacing:0.048000px;}
.lse{letter-spacing:7.200000px;}
.ls5{letter-spacing:12.321000px;}
.ls6{letter-spacing:12.325800px;}
.ls7{letter-spacing:16.405800px;}
.lsf{letter-spacing:21.900000px;}
.ls11{letter-spacing:166.599000px;}
.ls9{letter-spacing:170.850000px;}
.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;}
}
.ws8{word-spacing:-131.580000px;}
.wsc{word-spacing:-83.400000px;}
.ws16{word-spacing:-78.396000px;}
.ws9{word-spacing:-75.060000px;}
.ws13{word-spacing:-68.388000px;}
.ws2{word-spacing:-66.720000px;}
.ws7{word-spacing:-61.716000px;}
.wse{word-spacing:-59.784000px;}
.wsa{word-spacing:-53.376000px;}
.ws19{word-spacing:-52.263994px;}
.ws3{word-spacing:-50.040000px;}
.ws1{word-spacing:-44.480006px;}
.ws5{word-spacing:-38.364000px;}
.wsb{word-spacing:-35.583994px;}
.ws4{word-spacing:-28.911994px;}
.ws12{word-spacing:-27.000000px;}
.ws1a{word-spacing:-0.456000px;}
.ws14{word-spacing:-0.324000px;}
.wsd{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.282000px;}
.ws1b{word-spacing:-0.246000px;}
.ws6{word-spacing:-0.222000px;}
.wsf{word-spacing:-0.210000px;}
.ws17{word-spacing:-0.188000px;}
.ws10{word-spacing:-0.180000px;}
.ws15{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-25.650000px;}
._15{margin-left:-22.773600px;}
._f{margin-left:-21.312000px;}
._1{margin-left:-18.155160px;}
._c{margin-left:-16.405800px;}
._8{margin-left:-12.321000px;}
._e{margin-left:-11.100000px;}
._5{margin-left:-9.900000px;}
._11{margin-left:-8.580000px;}
._10{margin-left:-5.400000px;}
._0{margin-left:-3.888000px;}
._4{margin-left:-2.028600px;}
._14{width:1.111200px;}
._2{width:2.941200px;}
._12{width:5.197800px;}
._3{width:6.634800px;}
._13{width:14.400000px;}
._b{width:25.308000px;}
._7{width:47.907600px;}
._a{width:57.298200px;}
._d{width:102.786000px;}
._9{width:104.850600px;}
._6{width:556.678611px;}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(94,94,94);}
.fc2{color:rgb(255,255,255);}
.fc5{color:rgb(213,213,213);}
.fcb{color:rgb(35,35,35);}
.fcc{color:rgb(17,17,17);}
.fc3{color:transparent;}
.fc8{color:rgb(146,146,146);}
.fc6{color:rgb(27,27,32);}
.fcd{color:rgb(26,25,25);}
.fc4{color:rgb(242,114,0);}
.fc7{color:rgb(254,174,0);}
.fca{color:rgb(0,77,128);}
.fc9{color:rgb(54,57,41);}
.fs14{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs8{font-size:103.999980px;}
.fs1c{font-size:108.000000px;}
.fs19{font-size:120.000000px;}
.fs1e{font-size:126.000000px;}
.fs11{font-size:127.999980px;}
.fsa{font-size:138.000000px;}
.fsb{font-size:144.000000px;}
.fs1f{font-size:150.000000px;}
.fs7{font-size:156.000000px;}
.fs5{font-size:160.000020px;}
.fsf{font-size:162.000000px;}
.fs1d{font-size:168.000000px;}
.fs6{font-size:180.000000px;}
.fs23{font-size:187.999980px;}
.fs10{font-size:192.000000px;}
.fs18{font-size:210.000000px;}
.fs0{font-size:216.000000px;}
.fsc{font-size:222.000000px;}
.fs4{font-size:240.000000px;}
.fs1b{font-size:246.000000px;}
.fs15{font-size:252.000000px;}
.fs24{font-size:258.000000px;}
.fse{font-size:270.000000px;}
.fs22{font-size:282.000000px;}
.fs13{font-size:288.000000px;}
.fs12{font-size:300.000000px;}
.fs16{font-size:312.000000px;}
.fs20{font-size:324.000000px;}
.fs3{font-size:342.000000px;}
.fs21{font-size:346.860000px;}
.fs17{font-size:369.000000px;}
.fs25{font-size:450.000000px;}
.fs1a{font-size:456.000000px;}
.fs2{font-size:480.000009px;}
.fs1{font-size:490.680000px;}
.fsd{font-size:510.000000px;}
.fs26{font-size:522.000000px;}
.fs27{font-size:600.000000px;}
.y0{bottom:0.000000px;}
.y91{bottom:16.304700px;}
.ya1{bottom:19.959150px;}
.y2f{bottom:23.671020px;}
.y97{bottom:23.694600px;}
.y32{bottom:26.112000px;}
.y34{bottom:26.112150px;}
.y52{bottom:26.770845px;}
.y93{bottom:26.994300px;}
.y7a{bottom:27.942900px;}
.y67{bottom:29.478450px;}
.y6d{bottom:32.056650px;}
.y8f{bottom:33.456165px;}
.y47{bottom:33.531450px;}
.y61{bottom:36.848100px;}
.y58{bottom:39.841950px;}
.y2d{bottom:39.842100px;}
.y3a{bottom:40.800150px;}
.y37{bottom:40.800300px;}
.y9c{bottom:42.507300px;}
.y8d{bottom:48.492750px;}
.ya4{bottom:53.224200px;}
.y87{bottom:62.016300px;}
.y3e{bottom:64.773300px;}
.y96{bottom:65.694600px;}
.y4a{bottom:69.360300px;}
.y41{bottom:70.209450px;}
.y27{bottom:72.238200px;}
.y7{bottom:78.175500px;}
.y9{bottom:78.972450px;}
.y78{bottom:79.749000px;}
.y7b{bottom:80.821050px;}
.y51{bottom:81.578835px;}
.y3d{bottom:90.273300px;}
.y66{bottom:92.478450px;}
.y6c{bottom:95.056650px;}
.y40{bottom:95.709450px;}
.y1d{bottom:105.735345px;}
.ya3{bottom:107.794350px;}
.y95{bottom:110.734800px;}
.y9b{bottom:117.507300px;}
.yd{bottom:119.292390px;}
.y57{bottom:120.841950px;}
.y2c{bottom:120.842100px;}
.y8e{bottom:131.134500px;}
.y39{bottom:132.300150px;}
.y36{bottom:132.300300px;}
.y2e{bottom:132.398130px;}
.y65{bottom:155.478450px;}
.y6b{bottom:158.056650px;}
.y25{bottom:164.864850px;}
.y48{bottom:167.614050px;}
.y1a{bottom:173.367450px;}
.yc{bottom:192.072600px;}
.y9a{bottom:192.507300px;}
.y19{bottom:196.380450px;}
.y70{bottom:197.488800px;}
.y30{bottom:198.659850px;}
.y56{bottom:201.841950px;}
.y2b{bottom:201.842100px;}
.y64{bottom:218.478450px;}
.y6a{bottom:221.056650px;}
.y24{bottom:230.864850px;}
.y38{bottom:235.713750px;}
.y18{bottom:257.341350px;}
.y99{bottom:267.507300px;}
.y17{bottom:280.354350px;}
.y55{bottom:282.841950px;}
.y2a{bottom:282.842100px;}
.y69{bottom:284.056650px;}
.y3f{bottom:285.672300px;}
.y53{bottom:290.960550px;}
.y23{bottom:296.864850px;}
.y9f{bottom:299.668500px;}
.y60{bottom:305.791650px;}
.yb{bottom:336.072600px;}
.y31{bottom:353.990550px;}
.y22{bottom:362.864850px;}
.y5d{bottom:363.841500px;}
.y54{bottom:363.841950px;}
.y29{bottom:363.842100px;}
.y16{bottom:367.168800px;}
.y62{bottom:379.805850px;}
.y15{bottom:390.181800px;}
.ya2{bottom:402.628050px;}
.y2{bottom:421.288200px;}
.y21{bottom:431.326500px;}
.y6f{bottom:455.905500px;}
.ya{bottom:480.072600px;}
.y1{bottom:487.288200px;}
.y77{bottom:544.749750px;}
.y83{bottom:559.177950px;}
.y6e{bottom:564.606300px;}
.yb1{bottom:567.659400px;}
.y43{bottom:569.949300px;}
.y8c{bottom:604.215600px;}
.ya0{bottom:611.809500px;}
.y7d{bottom:615.127800px;}
.y76{bottom:617.208750px;}
.y20{bottom:626.864850px;}
.y68{bottom:640.146000px;}
.y42{bottom:644.949300px;}
.yb0{bottom:650.159400px;}
.y8b{bottom:668.715600px;}
.y5{bottom:678.162450px;}
.y9e{bottom:678.862350px;}
.yb3{bottom:679.963200px;}
.y92{bottom:686.168400px;}
.y1f{bottom:692.864850px;}
.y7c{bottom:693.636600px;}
.y82{bottom:704.711550px;}
.yaf{bottom:732.659400px;}
.y8a{bottom:733.215600px;}
.y12{bottom:737.639250px;}
.ya6{bottom:747.650100px;}
.y98{bottom:757.815600px;}
.y1e{bottom:761.326500px;}
.y33{bottom:765.749850px;}
.y89{bottom:797.715600px;}
.y35{bottom:805.712400px;}
.yae{bottom:815.159400px;}
.y10{bottom:817.954950px;}
.y1b{bottom:821.571450px;}
.y4{bottom:825.162450px;}
.y11{bottom:833.947500px;}
.y75{bottom:834.585750px;}
.y45{bottom:843.656850px;}
.y88{bottom:862.215600px;}
.y90{bottom:880.368000px;}
.ya5{bottom:891.828750px;}
.yad{bottom:904.749750px;}
.y5f{bottom:906.053700px;}
.y74{bottom:907.044750px;}
.y44{bottom:918.656850px;}
.y6{bottom:919.691250px;}
.y50{bottom:930.744900px;}
.y28{bottom:945.068700px;}
.y3{bottom:972.162450px;}
.y85{bottom:973.651800px;}
.yac{bottom:980.840700px;}
.y5b{bottom:986.158650px;}
.y13{bottom:986.664750px;}
.y3c{bottom:988.623600px;}
.y84{bottom:1006.135800px;}
.y46{bottom:1009.192500px;}
.y4f{bottom:1026.744900px;}
.y63{bottom:1028.763600px;}
.ya9{bottom:1035.509850px;}
.yab{bottom:1047.162900px;}
.y73{bottom:1071.699000px;}
.y5e{bottom:1073.703150px;}
.y14{bottom:1085.892750px;}
.y5a{bottom:1089.726300px;}
.y4b{bottom:1099.420950px;}
.y1c{bottom:1108.414050px;}
.y94{bottom:1111.013400px;}
.ya8{bottom:1113.509850px;}
.y4e{bottom:1122.744900px;}
.y81{bottom:1139.805900px;}
.y5c{bottom:1146.586500px;}
.y72{bottom:1158.240900px;}
.y7e{bottom:1190.400900px;}
.ya7{bottom:1191.509850px;}
.y59{bottom:1202.226300px;}
.y80{bottom:1217.175150px;}
.y4d{bottom:1218.744900px;}
.y71{bottom:1244.782950px;}
.yf{bottom:1251.754500px;}
.y79{bottom:1287.564450px;}
.yb2{bottom:1294.648800px;}
.y9d{bottom:1295.591100px;}
.y3b{bottom:1295.887650px;}
.y7f{bottom:1296.109950px;}
.ye{bottom:1300.480500px;}
.y49{bottom:1359.266850px;}
.yb4{bottom:1389.319800px;}
.y86{bottom:1403.527200px;}
.y4c{bottom:1406.762550px;}
.y8{bottom:1418.561400px;}
.y26{bottom:1419.935550px;}
.yaa{bottom:1427.143500px;}
.h1c{height:61.404000px;}
.hb{height:65.790000px;}
.h45{height:66.843630px;}
.h3c{height:74.225880px;}
.h14{height:75.206205px;}
.h23{height:79.594950px;}
.h16{height:87.108030px;}
.h34{height:87.720000px;}
.h2e{height:92.081070px;}
.hc{height:100.878000px;}
.hd{height:105.264000px;}
.h3f{height:105.758789px;}
.h42{height:109.650000px;}
.h1f{height:111.697290px;}
.h3b{height:112.482422px;}
.h44{height:113.040001px;}
.ha{height:114.036000px;}
.h15{height:118.422000px;}
.h26{height:118.450200px;}
.h9{height:131.580000px;}
.h17{height:140.352000px;}
.h3e{height:141.011719px;}
.h2f{height:153.510000px;}
.he{height:156.527344px;}
.h37{height:157.896000px;}
.h28{height:161.156250px;}
.hf{height:162.282000px;}
.h2c{height:164.850000px;}
.h3d{height:167.706300px;}
.h1b{height:169.271250px;}
.h1{height:169.560000px;}
.h8{height:175.440000px;}
.h49{height:178.256836px;}
.h41{height:179.826000px;}
.h2a{height:181.300781px;}
.h1d{height:182.605800px;}
.h1e{height:184.212000px;}
.h39{height:193.110000px;}
.h4b{height:196.185000px;}
.h10{height:200.064450px;}
.h5{height:201.438600px;}
.h25{height:201.445312px;}
.h7{height:202.320000px;}
.h13{height:203.850000px;}
.h35{height:205.944150px;}
.h38{height:209.332500px;}
.h33{height:210.528000px;}
.h21{height:213.237450px;}
.h1a{height:213.328125px;}
.h2b{height:220.160100px;}
.h32{height:224.376000px;}
.h31{height:226.080000px;}
.h18{height:227.700000px;}
.h20{height:230.490150px;}
.h46{height:234.868200px;}
.h19{height:235.500000px;}
.h22{height:244.920000px;}
.h30{height:250.002000px;}
.h48{height:250.432920px;}
.h47{height:254.340000px;}
.h24{height:263.466000px;}
.h2d{height:268.470000px;}
.h27{height:283.160100px;}
.h6{height:287.059570px;}
.h3a{height:314.942550px;}
.h40{height:345.705150px;}
.h29{height:348.738300px;}
.h4a{height:353.250000px;}
.h36{height:357.960000px;}
.h2{height:363.457793px;}
.h4{height:376.800007px;}
.h4c{height:386.657227px;}
.h43{height:394.771350px;}
.h11{height:400.350000px;}
.h12{height:445.129050px;}
.h4d{height:471.000000px;}
.h3{height:700.308750px;}
.h0{height:1620.000000px;}
.w15{width:68.925300px;}
.w8{width:169.271250px;}
.wf{width:169.473600px;}
.w9{width:182.605800px;}
.w1a{width:376.931100px;}
.w3{width:417.866850px;}
.w17{width:430.846500px;}
.wb{width:450.086700px;}
.w10{width:477.191400px;}
.w18{width:478.317300px;}
.w12{width:487.083150px;}
.w4{width:490.668000px;}
.w5{width:512.908050px;}
.w11{width:518.923500px;}
.w19{width:520.146000px;}
.w7{width:602.703600px;}
.we{width:611.269200px;}
.w16{width:613.840350px;}
.w2{width:636.806400px;}
.w6{width:734.925000px;}
.wa{width:837.146100px;}
.w13{width:849.205650px;}
.wd{width:1058.373750px;}
.w1b{width:1139.206950px;}
.wc{width:1167.206550px;}
.w1{width:1720.986300px;}
.w14{width:2141.209500px;}
.w1c{width:2806.864500px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x36{left:3.459325px;}
.x6b{left:10.921500px;}
.x23{left:15.054000px;}
.x63{left:16.879500px;}
.x5d{left:18.327000px;}
.x1b{left:20.064000px;}
.x27{left:23.100000px;}
.x6d{left:24.138000px;}
.x64{left:29.468700px;}
.x4c{left:32.751000px;}
.x4b{left:36.829500px;}
.x37{left:37.995050px;}
.x1f{left:39.015690px;}
.x1{left:42.811680px;}
.x2{left:44.020680px;}
.x50{left:46.068300px;}
.x2d{left:47.160000px;}
.x47{left:49.384800px;}
.x48{left:54.716700px;}
.x58{left:56.557650px;}
.x2b{left:60.325350px;}
.x3f{left:62.039265px;}
.x76{left:64.809135px;}
.x6f{left:69.155955px;}
.x1c{left:74.064000px;}
.x5e{left:77.072955px;}
.x33{left:82.594050px;}
.x52{left:89.908200px;}
.x5b{left:91.291635px;}
.x26{left:93.900000px;}
.x4{left:96.035550px;}
.x1d{left:101.064000px;}
.x1e{left:104.043915px;}
.x35{left:105.469500px;}
.x67{left:107.579400px;}
.x49{left:109.654200px;}
.x6{left:113.579940px;}
.x31{left:129.203910px;}
.x30{left:135.629910px;}
.x62{left:137.011650px;}
.x51{left:143.216850px;}
.x16{left:144.943005px;}
.x66{left:148.599900px;}
.x29{left:149.874345px;}
.x3{left:155.212200px;}
.x3d{left:159.244650px;}
.x5f{left:163.990650px;}
.x3b{left:168.682650px;}
.x7{left:173.580000px;}
.x61{left:181.531050px;}
.x3c{left:182.839650px;}
.x2e{left:213.709500px;}
.x72{left:231.567450px;}
.x4f{left:235.927650px;}
.x3a{left:258.421650px;}
.x20{left:263.233350px;}
.x3e{left:275.718900px;}
.x2f{left:283.104000px;}
.x2a{left:300.559950px;}
.x70{left:335.981100px;}
.x2c{left:361.598100px;}
.x4e{left:416.462850px;}
.x60{left:417.709800px;}
.x73{left:469.247100px;}
.x5c{left:515.803950px;}
.x4d{left:519.472800px;}
.x54{left:533.580600px;}
.x68{left:587.434050px;}
.x6e{left:615.837000px;}
.x32{left:635.362500px;}
.x41{left:637.310250px;}
.x71{left:740.567100px;}
.x42{left:755.646600px;}
.x5{left:778.084650px;}
.x65{left:804.917850px;}
.x53{left:863.858250px;}
.x5a{left:866.979000px;}
.x55{left:903.145500px;}
.x39{left:910.813050px;}
.x43{left:963.717000px;}
.x46{left:1011.841500px;}
.x77{left:1026.600000px;}
.x74{left:1045.810650px;}
.x75{left:1072.810650px;}
.x19{left:1120.989600px;}
.x57{left:1449.220350px;}
.x56{left:1519.882500px;}
.x15{left:1534.960500px;}
.x6c{left:1616.221500px;}
.x34{left:1644.064500px;}
.xd{left:1650.880500px;}
.x17{left:1676.748000px;}
.x18{left:1703.748000px;}
.xa{left:1716.405000px;}
.xb{left:1723.063500px;}
.x69{left:1789.429500px;}
.xc{left:1813.086000px;}
.x12{left:1827.255000px;}
.x13{left:1841.014500px;}
.xf{left:1896.661500px;}
.xe{left:1906.236000px;}
.x21{left:1922.326500px;}
.x8{left:1945.986000px;}
.x25{left:2092.452000px;}
.x9{left:2139.849000px;}
.x28{left:2145.159000px;}
.x1a{left:2172.082500px;}
.x38{left:2198.149500px;}
.x44{left:2204.430000px;}
.x11{left:2206.510500px;}
.x4a{left:2210.236500px;}
.x10{left:2225.040000px;}
.x24{left:2234.031000px;}
.x40{left:2242.713000px;}
.x22{left:2339.475000px;}
.x6a{left:2387.479500px;}
.x45{left:2422.869000px;}
.x59{left:2473.159500px;}
.x14{left:2531.686500px;}
@media print{
.v9{vertical-align:-18.516928pt;}
.v2{vertical-align:-15.146485pt;}
.v7{vertical-align:-14.222224pt;}
.v5{vertical-align:-12.344619pt;}
.v3{vertical-align:-9.845216pt;}
.v4{vertical-align:-8.752533pt;}
.v1{vertical-align:-2.773867pt;}
.v8{vertical-align:-1.514667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:2.733333pt;}
.vd{vertical-align:6.915947pt;}
.vb{vertical-align:21.579733pt;}
.v6{vertical-align:23.134400pt;}
.vc{vertical-align:24.713067pt;}
.va{vertical-align:31.781253pt;}
.lsb{letter-spacing:-12.778667pt;}
.ls8{letter-spacing:-9.066667pt;}
.ls13{letter-spacing:-0.092800pt;}
.lsc{letter-spacing:-0.068267pt;}
.ls10{letter-spacing:-0.029867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000008pt;}
.ls12{letter-spacing:0.000010pt;}
.ls3{letter-spacing:0.000188pt;}
.ls1{letter-spacing:0.000213pt;}
.ls4{letter-spacing:0.026667pt;}
.lsd{letter-spacing:0.038400pt;}
.lsa{letter-spacing:0.042667pt;}
.lse{letter-spacing:6.400000pt;}
.ls5{letter-spacing:10.952000pt;}
.ls6{letter-spacing:10.956267pt;}
.ls7{letter-spacing:14.582933pt;}
.lsf{letter-spacing:19.466667pt;}
.ls11{letter-spacing:148.088000pt;}
.ls9{letter-spacing:151.866667pt;}
.ws8{word-spacing:-116.960000pt;}
.wsc{word-spacing:-74.133333pt;}
.ws16{word-spacing:-69.685333pt;}
.ws9{word-spacing:-66.720000pt;}
.ws13{word-spacing:-60.789333pt;}
.ws2{word-spacing:-59.306667pt;}
.ws7{word-spacing:-54.858667pt;}
.wse{word-spacing:-53.141333pt;}
.wsa{word-spacing:-47.445333pt;}
.ws19{word-spacing:-46.456884pt;}
.ws3{word-spacing:-44.480000pt;}
.ws1{word-spacing:-39.537783pt;}
.ws5{word-spacing:-34.101333pt;}
.wsb{word-spacing:-31.630217pt;}
.ws4{word-spacing:-25.699551pt;}
.ws12{word-spacing:-24.000000pt;}
.ws1a{word-spacing:-0.405333pt;}
.ws14{word-spacing:-0.288000pt;}
.wsd{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.250667pt;}
.ws1b{word-spacing:-0.218667pt;}
.ws6{word-spacing:-0.197333pt;}
.wsf{word-spacing:-0.186667pt;}
.ws17{word-spacing:-0.167111pt;}
.ws10{word-spacing:-0.160000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-22.800000pt;}
._15{margin-left:-20.243200pt;}
._f{margin-left:-18.944000pt;}
._1{margin-left:-16.137920pt;}
._c{margin-left:-14.582933pt;}
._8{margin-left:-10.952000pt;}
._e{margin-left:-9.866667pt;}
._5{margin-left:-8.800000pt;}
._11{margin-left:-7.626667pt;}
._10{margin-left:-4.800000pt;}
._0{margin-left:-3.456000pt;}
._4{margin-left:-1.803200pt;}
._14{width:0.987733pt;}
._2{width:2.614400pt;}
._12{width:4.620267pt;}
._3{width:5.897600pt;}
._13{width:12.800000pt;}
._b{width:22.496000pt;}
._7{width:42.584533pt;}
._a{width:50.931733pt;}
._d{width:91.365333pt;}
._9{width:93.200533pt;}
._6{width:494.825432pt;}
.fs14{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs8{font-size:92.444427pt;}
.fs1c{font-size:96.000000pt;}
.fs19{font-size:106.666667pt;}
.fs1e{font-size:112.000000pt;}
.fs11{font-size:113.777760pt;}
.fsa{font-size:122.666667pt;}
.fsb{font-size:128.000000pt;}
.fs1f{font-size:133.333333pt;}
.fs7{font-size:138.666667pt;}
.fs5{font-size:142.222240pt;}
.fsf{font-size:144.000000pt;}
.fs1d{font-size:149.333333pt;}
.fs6{font-size:160.000000pt;}
.fs23{font-size:167.111093pt;}
.fs10{font-size:170.666667pt;}
.fs18{font-size:186.666667pt;}
.fs0{font-size:192.000000pt;}
.fsc{font-size:197.333333pt;}
.fs4{font-size:213.333333pt;}
.fs1b{font-size:218.666667pt;}
.fs15{font-size:224.000000pt;}
.fs24{font-size:229.333333pt;}
.fse{font-size:240.000000pt;}
.fs22{font-size:250.666667pt;}
.fs13{font-size:256.000000pt;}
.fs12{font-size:266.666667pt;}
.fs16{font-size:277.333333pt;}
.fs20{font-size:288.000000pt;}
.fs3{font-size:304.000000pt;}
.fs21{font-size:308.320000pt;}
.fs17{font-size:328.000000pt;}
.fs25{font-size:400.000000pt;}
.fs1a{font-size:405.333333pt;}
.fs2{font-size:426.666674pt;}
.fs1{font-size:436.160000pt;}
.fsd{font-size:453.333333pt;}
.fs26{font-size:464.000000pt;}
.fs27{font-size:533.333333pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:14.493067pt;}
.ya1{bottom:17.741467pt;}
.y2f{bottom:21.040907pt;}
.y97{bottom:21.061867pt;}
.y32{bottom:23.210667pt;}
.y34{bottom:23.210800pt;}
.y52{bottom:23.796307pt;}
.y93{bottom:23.994933pt;}
.y7a{bottom:24.838133pt;}
.y67{bottom:26.203067pt;}
.y6d{bottom:28.494800pt;}
.y8f{bottom:29.738813pt;}
.y47{bottom:29.805733pt;}
.y61{bottom:32.753867pt;}
.y58{bottom:35.415067pt;}
.y2d{bottom:35.415200pt;}
.y3a{bottom:36.266800pt;}
.y37{bottom:36.266933pt;}
.y9c{bottom:37.784267pt;}
.y8d{bottom:43.104667pt;}
.ya4{bottom:47.310400pt;}
.y87{bottom:55.125600pt;}
.y3e{bottom:57.576267pt;}
.y96{bottom:58.395200pt;}
.y4a{bottom:61.653600pt;}
.y41{bottom:62.408400pt;}
.y27{bottom:64.211733pt;}
.y7{bottom:69.489333pt;}
.y9{bottom:70.197733pt;}
.y78{bottom:70.888000pt;}
.y7b{bottom:71.840933pt;}
.y51{bottom:72.514520pt;}
.y3d{bottom:80.242933pt;}
.y66{bottom:82.203067pt;}
.y6c{bottom:84.494800pt;}
.y40{bottom:85.075067pt;}
.y1d{bottom:93.986973pt;}
.ya3{bottom:95.817200pt;}
.y95{bottom:98.430933pt;}
.y9b{bottom:104.450933pt;}
.yd{bottom:106.037680pt;}
.y57{bottom:107.415067pt;}
.y2c{bottom:107.415200pt;}
.y8e{bottom:116.564000pt;}
.y39{bottom:117.600133pt;}
.y36{bottom:117.600267pt;}
.y2e{bottom:117.687227pt;}
.y65{bottom:138.203067pt;}
.y6b{bottom:140.494800pt;}
.y25{bottom:146.546533pt;}
.y48{bottom:148.990267pt;}
.y1a{bottom:154.104400pt;}
.yc{bottom:170.731200pt;}
.y9a{bottom:171.117600pt;}
.y19{bottom:174.560400pt;}
.y70{bottom:175.545600pt;}
.y30{bottom:176.586533pt;}
.y56{bottom:179.415067pt;}
.y2b{bottom:179.415200pt;}
.y64{bottom:194.203067pt;}
.y6a{bottom:196.494800pt;}
.y24{bottom:205.213200pt;}
.y38{bottom:209.523333pt;}
.y18{bottom:228.747867pt;}
.y99{bottom:237.784267pt;}
.y17{bottom:249.203867pt;}
.y55{bottom:251.415067pt;}
.y2a{bottom:251.415200pt;}
.y69{bottom:252.494800pt;}
.y3f{bottom:253.930933pt;}
.y53{bottom:258.631600pt;}
.y23{bottom:263.879867pt;}
.y9f{bottom:266.372000pt;}
.y60{bottom:271.814800pt;}
.yb{bottom:298.731200pt;}
.y31{bottom:314.658267pt;}
.y22{bottom:322.546533pt;}
.y5d{bottom:323.414667pt;}
.y54{bottom:323.415067pt;}
.y29{bottom:323.415200pt;}
.y16{bottom:326.372267pt;}
.y62{bottom:337.605200pt;}
.y15{bottom:346.828267pt;}
.ya2{bottom:357.891600pt;}
.y2{bottom:374.478400pt;}
.y21{bottom:383.401333pt;}
.y6f{bottom:405.249333pt;}
.ya{bottom:426.731200pt;}
.y1{bottom:433.145067pt;}
.y77{bottom:484.222000pt;}
.y83{bottom:497.047067pt;}
.y6e{bottom:501.872267pt;}
.yb1{bottom:504.586133pt;}
.y43{bottom:506.621600pt;}
.y8c{bottom:537.080533pt;}
.ya0{bottom:543.830667pt;}
.y7d{bottom:546.780267pt;}
.y76{bottom:548.630000pt;}
.y20{bottom:557.213200pt;}
.y68{bottom:569.018667pt;}
.y42{bottom:573.288267pt;}
.yb0{bottom:577.919467pt;}
.y8b{bottom:594.413867pt;}
.y5{bottom:602.811067pt;}
.y9e{bottom:603.433200pt;}
.yb3{bottom:604.411733pt;}
.y92{bottom:609.927467pt;}
.y1f{bottom:615.879867pt;}
.y7c{bottom:616.565867pt;}
.y82{bottom:626.410267pt;}
.yaf{bottom:651.252800pt;}
.y8a{bottom:651.747200pt;}
.y12{bottom:655.679333pt;}
.ya6{bottom:664.577867pt;}
.y98{bottom:673.613867pt;}
.y1e{bottom:676.734667pt;}
.y33{bottom:680.666533pt;}
.y89{bottom:709.080533pt;}
.y35{bottom:716.188800pt;}
.yae{bottom:724.586133pt;}
.y10{bottom:727.071067pt;}
.y1b{bottom:730.285733pt;}
.y4{bottom:733.477733pt;}
.y11{bottom:741.286667pt;}
.y75{bottom:741.854000pt;}
.y45{bottom:749.917200pt;}
.y88{bottom:766.413867pt;}
.y90{bottom:782.549333pt;}
.ya5{bottom:792.736667pt;}
.yad{bottom:804.222000pt;}
.y5f{bottom:805.381067pt;}
.y74{bottom:806.262000pt;}
.y44{bottom:816.583867pt;}
.y6{bottom:817.503333pt;}
.y50{bottom:827.328800pt;}
.y28{bottom:840.061067pt;}
.y3{bottom:864.144400pt;}
.y85{bottom:865.468267pt;}
.yac{bottom:871.858400pt;}
.y5b{bottom:876.585467pt;}
.y13{bottom:877.035333pt;}
.y3c{bottom:878.776533pt;}
.y84{bottom:894.342933pt;}
.y46{bottom:897.060000pt;}
.y4f{bottom:912.662133pt;}
.y63{bottom:914.456533pt;}
.ya9{bottom:920.453200pt;}
.yab{bottom:930.811467pt;}
.y73{bottom:952.621333pt;}
.y5e{bottom:954.402800pt;}
.y14{bottom:965.238000pt;}
.y5a{bottom:968.645600pt;}
.y4b{bottom:977.263067pt;}
.y1c{bottom:985.256933pt;}
.y94{bottom:987.567467pt;}
.ya8{bottom:989.786533pt;}
.y4e{bottom:997.995467pt;}
.y81{bottom:1013.160800pt;}
.y5c{bottom:1019.188000pt;}
.y72{bottom:1029.547467pt;}
.y7e{bottom:1058.134133pt;}
.ya7{bottom:1059.119867pt;}
.y59{bottom:1068.645600pt;}
.y80{bottom:1081.933467pt;}
.y4d{bottom:1083.328800pt;}
.y71{bottom:1106.473733pt;}
.yf{bottom:1112.670667pt;}
.y79{bottom:1144.501733pt;}
.yb2{bottom:1150.798933pt;}
.y9d{bottom:1151.636533pt;}
.y3b{bottom:1151.900133pt;}
.y7f{bottom:1152.097733pt;}
.ye{bottom:1155.982667pt;}
.y49{bottom:1208.237200pt;}
.yb4{bottom:1234.950933pt;}
.y86{bottom:1247.579733pt;}
.y4c{bottom:1250.455600pt;}
.y8{bottom:1260.943467pt;}
.y26{bottom:1262.164933pt;}
.yaa{bottom:1268.572000pt;}
.h1c{height:54.581333pt;}
.hb{height:58.480000pt;}
.h45{height:59.416560pt;}
.h3c{height:65.978560pt;}
.h14{height:66.849960pt;}
.h23{height:70.751067pt;}
.h16{height:77.429360pt;}
.h34{height:77.973333pt;}
.h2e{height:81.849840pt;}
.hc{height:89.669333pt;}
.hd{height:93.568000pt;}
.h3f{height:94.007812pt;}
.h42{height:97.466667pt;}
.h1f{height:99.286480pt;}
.h3b{height:99.984375pt;}
.h44{height:100.480001pt;}
.ha{height:101.365333pt;}
.h15{height:105.264000pt;}
.h26{height:105.289067pt;}
.h9{height:116.960000pt;}
.h17{height:124.757333pt;}
.h3e{height:125.343750pt;}
.h2f{height:136.453333pt;}
.he{height:139.135417pt;}
.h37{height:140.352000pt;}
.h28{height:143.250000pt;}
.hf{height:144.250667pt;}
.h2c{height:146.533333pt;}
.h3d{height:149.072267pt;}
.h1b{height:150.463333pt;}
.h1{height:150.720000pt;}
.h8{height:155.946667pt;}
.h49{height:158.450521pt;}
.h41{height:159.845333pt;}
.h2a{height:161.156250pt;}
.h1d{height:162.316267pt;}
.h1e{height:163.744000pt;}
.h39{height:171.653333pt;}
.h4b{height:174.386667pt;}
.h10{height:177.835067pt;}
.h5{height:179.056533pt;}
.h25{height:179.062500pt;}
.h7{height:179.840000pt;}
.h13{height:181.200000pt;}
.h35{height:183.061467pt;}
.h38{height:186.073333pt;}
.h33{height:187.136000pt;}
.h21{height:189.544400pt;}
.h1a{height:189.625000pt;}
.h2b{height:195.697867pt;}
.h32{height:199.445333pt;}
.h31{height:200.960000pt;}
.h18{height:202.400000pt;}
.h20{height:204.880133pt;}
.h46{height:208.771733pt;}
.h19{height:209.333333pt;}
.h22{height:217.706667pt;}
.h30{height:222.224000pt;}
.h48{height:222.607040pt;}
.h47{height:226.080000pt;}
.h24{height:234.192000pt;}
.h2d{height:238.640000pt;}
.h27{height:251.697867pt;}
.h6{height:255.164062pt;}
.h3a{height:279.948933pt;}
.h40{height:307.293467pt;}
.h29{height:309.989600pt;}
.h4a{height:314.000000pt;}
.h36{height:318.186667pt;}
.h2{height:323.073594pt;}
.h4{height:334.933339pt;}
.h4c{height:343.695312pt;}
.h43{height:350.907867pt;}
.h11{height:355.866667pt;}
.h12{height:395.670267pt;}
.h4d{height:418.666667pt;}
.h3{height:622.496667pt;}
.h0{height:1440.000000pt;}
.w15{width:61.266933pt;}
.w8{width:150.463333pt;}
.wf{width:150.643200pt;}
.w9{width:162.316267pt;}
.w1a{width:335.049867pt;}
.w3{width:371.437200pt;}
.w17{width:382.974667pt;}
.wb{width:400.077067pt;}
.w10{width:424.170133pt;}
.w18{width:425.170933pt;}
.w12{width:432.962800pt;}
.w4{width:436.149333pt;}
.w5{width:455.918267pt;}
.w11{width:461.265333pt;}
.w19{width:462.352000pt;}
.w7{width:535.736533pt;}
.we{width:543.350400pt;}
.w16{width:545.635867pt;}
.w2{width:566.050133pt;}
.w6{width:653.266667pt;}
.wa{width:744.129867pt;}
.w13{width:754.849467pt;}
.wd{width:940.776667pt;}
.w1b{width:1012.628400pt;}
.wc{width:1037.516933pt;}
.w1{width:1529.765600pt;}
.w14{width:1903.297333pt;}
.w1c{width:2494.990667pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x36{left:3.074956pt;}
.x6b{left:9.708000pt;}
.x23{left:13.381333pt;}
.x63{left:15.004000pt;}
.x5d{left:16.290667pt;}
.x1b{left:17.834667pt;}
.x27{left:20.533333pt;}
.x6d{left:21.456000pt;}
.x64{left:26.194400pt;}
.x4c{left:29.112000pt;}
.x4b{left:32.737333pt;}
.x37{left:33.773377pt;}
.x1f{left:34.680613pt;}
.x1{left:38.054827pt;}
.x2{left:39.129493pt;}
.x50{left:40.949600pt;}
.x2d{left:41.920000pt;}
.x47{left:43.897600pt;}
.x48{left:48.637067pt;}
.x58{left:50.273467pt;}
.x2b{left:53.622533pt;}
.x3f{left:55.146013pt;}
.x76{left:57.608120pt;}
.x6f{left:61.471960pt;}
.x1c{left:65.834667pt;}
.x5e{left:68.509293pt;}
.x33{left:73.416933pt;}
.x52{left:79.918400pt;}
.x5b{left:81.148120pt;}
.x26{left:83.466667pt;}
.x4{left:85.364933pt;}
.x1d{left:89.834667pt;}
.x1e{left:92.483480pt;}
.x35{left:93.750667pt;}
.x67{left:95.626133pt;}
.x49{left:97.470400pt;}
.x6{left:100.959947pt;}
.x31{left:114.847920pt;}
.x30{left:120.559920pt;}
.x62{left:121.788133pt;}
.x51{left:127.303867pt;}
.x16{left:128.838227pt;}
.x66{left:132.088800pt;}
.x29{left:133.221640pt;}
.x3{left:137.966400pt;}
.x3d{left:141.550800pt;}
.x5f{left:145.769467pt;}
.x3b{left:149.940133pt;}
.x7{left:154.293333pt;}
.x61{left:161.360933pt;}
.x3c{left:162.524133pt;}
.x2e{left:189.964000pt;}
.x72{left:205.837733pt;}
.x4f{left:209.713467pt;}
.x3a{left:229.708133pt;}
.x20{left:233.985200pt;}
.x3e{left:245.083467pt;}
.x2f{left:251.648000pt;}
.x2a{left:267.164400pt;}
.x70{left:298.649867pt;}
.x2c{left:321.420533pt;}
.x4e{left:370.189200pt;}
.x60{left:371.297600pt;}
.x73{left:417.108533pt;}
.x5c{left:458.492400pt;}
.x4d{left:461.753600pt;}
.x54{left:474.293867pt;}
.x68{left:522.163600pt;}
.x6e{left:547.410667pt;}
.x32{left:564.766667pt;}
.x41{left:566.498000pt;}
.x71{left:658.281867pt;}
.x42{left:671.685867pt;}
.x5{left:691.630800pt;}
.x65{left:715.482533pt;}
.x53{left:767.874000pt;}
.x5a{left:770.648000pt;}
.x55{left:802.796000pt;}
.x39{left:809.611600pt;}
.x43{left:856.637333pt;}
.x46{left:899.414667pt;}
.x77{left:912.533333pt;}
.x74{left:929.609467pt;}
.x75{left:953.609467pt;}
.x19{left:996.435200pt;}
.x57{left:1288.195867pt;}
.x56{left:1351.006667pt;}
.x15{left:1364.409333pt;}
.x6c{left:1436.641333pt;}
.x34{left:1461.390667pt;}
.xd{left:1467.449333pt;}
.x17{left:1490.442667pt;}
.x18{left:1514.442667pt;}
.xa{left:1525.693333pt;}
.xb{left:1531.612000pt;}
.x69{left:1590.604000pt;}
.xc{left:1611.632000pt;}
.x12{left:1624.226667pt;}
.x13{left:1636.457333pt;}
.xf{left:1685.921333pt;}
.xe{left:1694.432000pt;}
.x21{left:1708.734667pt;}
.x8{left:1729.765333pt;}
.x25{left:1859.957333pt;}
.x9{left:1902.088000pt;}
.x28{left:1906.808000pt;}
.x1a{left:1930.740000pt;}
.x38{left:1953.910667pt;}
.x44{left:1959.493333pt;}
.x11{left:1961.342667pt;}
.x4a{left:1964.654667pt;}
.x10{left:1977.813333pt;}
.x24{left:1985.805333pt;}
.x40{left:1993.522667pt;}
.x22{left:2079.533333pt;}
.x6a{left:2122.204000pt;}
.x45{left:2153.661333pt;}
.x59{left:2198.364000pt;}
.x14{left:2250.388000pt;}
}




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