
    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_83de228d80463bf02def8d4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_0c72de679108b8e8db3d696e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_59af30f9133c8205d6317a1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_84c48cb1c9b1d37095c64ab9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8b42c1600ca6ea11decfbcc7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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_3a192048bcf6e8f0d4cea117.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966797;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_d75a431c685b886041047ec9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764160;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_5b65b5ec512d40ad6ae09340.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_4071b00a7871f52d50ed2e7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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;}
.m3{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250049,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:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls19{letter-spacing:-3.576000px;}
.ls3d{letter-spacing:-3.192000px;}
.ls3c{letter-spacing:-3.054000px;}
.ls3f{letter-spacing:-2.694000px;}
.ls18{letter-spacing:-2.646000px;}
.ls3e{letter-spacing:-2.034000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.349200px;}
.ls26{letter-spacing:-0.312600px;}
.ls1d{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.286800px;}
.ls14{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.252000px;}
.ls33{letter-spacing:-0.232200px;}
.ls2c{letter-spacing:-0.223800px;}
.ls2d{letter-spacing:-0.184800px;}
.ls1{letter-spacing:-0.172200px;}
.ls2{letter-spacing:-0.141000px;}
.ls17{letter-spacing:-0.118800px;}
.ls38{letter-spacing:-0.117600px;}
.ls24{letter-spacing:-0.103200px;}
.ls15{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.063600px;}
.ls2a{letter-spacing:-0.026640px;}
.ls28{letter-spacing:-0.002160px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.014940px;}
.ls2b{letter-spacing:0.026640px;}
.ls32{letter-spacing:0.100200px;}
.ls2f{letter-spacing:0.108000px;}
.ls3a{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.171600px;}
.ls34{letter-spacing:0.174240px;}
.ls27{letter-spacing:0.186600px;}
.ls3b{letter-spacing:0.229800px;}
.ls8{letter-spacing:0.241800px;}
.ls1f{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.267000px;}
.ls37{letter-spacing:0.278400px;}
.ls10{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.332400px;}
.ls39{letter-spacing:0.344400px;}
.lsc{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.387990px;}
.ls22{letter-spacing:0.396000px;}
.ls29{letter-spacing:0.422400px;}
.ls2e{letter-spacing:0.540000px;}
.ls1a{letter-spacing:5.091006px;}
.ls1b{letter-spacing:6.589144px;}
.lsd{letter-spacing:24.120000px;}
.ls4{letter-spacing:37.440000px;}
.ls6{letter-spacing:38.160000px;}
.ls31{letter-spacing:67.252128px;}
.ls30{letter-spacing:67.318080px;}
.ls5{letter-spacing:79.180128px;}
.ls3{letter-spacing:79.246080px;}
.lsf{letter-spacing:81.114048px;}
.lsb{letter-spacing:81.180000px;}
.lsa{letter-spacing:95.668128px;}
.lse{letter-spacing:95.734080px;}
.ls35{letter-spacing:96.064128px;}
.ls36{letter-spacing:96.130080px;}
.ls16{letter-spacing:100.476000px;}
.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:-46.301760px;}
.wsd{word-spacing:-46.182960px;}
.ws26{word-spacing:-45.992304px;}
.ws10{word-spacing:-42.725760px;}
.ws2{word-spacing:-39.744000px;}
.ws2f{word-spacing:-39.551544px;}
.ws3{word-spacing:-38.184216px;}
.ws4{word-spacing:-37.877760px;}
.ws7{word-spacing:-37.814160px;}
.ws2a{word-spacing:-33.368160px;}
.ws34{word-spacing:-33.290160px;}
.ws27{word-spacing:-33.225984px;}
.ws32{word-spacing:-33.224160px;}
.ws35{word-spacing:-33.215016px;}
.ws2c{word-spacing:-33.212880px;}
.wse{word-spacing:-33.186240px;}
.ws2b{word-spacing:-33.159600px;}
.ws29{word-spacing:-33.132360px;}
.ws28{word-spacing:-33.000156px;}
.ws31{word-spacing:-32.985216px;}
.ws30{word-spacing:-32.945760px;}
.ws33{word-spacing:-32.828160px;}
.ws0{word-spacing:-32.804760px;}
.ws3a{word-spacing:-30.251760px;}
.ws25{word-spacing:-30.204000px;}
.ws23{word-spacing:-30.132000px;}
.ws2d{word-spacing:-30.096000px;}
.ws2e{word-spacing:-29.847744px;}
.ws22{word-spacing:-29.808000px;}
.wsf{word-spacing:-29.592000px;}
.ws24{word-spacing:-29.556000px;}
.ws9{word-spacing:-28.389840px;}
.wsa{word-spacing:-28.257984px;}
.wsc{word-spacing:-24.660000px;}
.wsb{word-spacing:-24.390000px;}
.ws39{word-spacing:-19.864080px;}
.ws20{word-spacing:-19.584000px;}
.ws17{word-spacing:-18.772183px;}
.ws1d{word-spacing:-18.656281px;}
.ws19{word-spacing:-18.633965px;}
.ws12{word-spacing:-18.298455px;}
.ws1a{word-spacing:-13.776595px;}
.ws13{word-spacing:-9.174216px;}
.ws14{word-spacing:-4.432841px;}
.ws1b{word-spacing:-2.423066px;}
.ws8{word-spacing:-0.985680px;}
.ws36{word-spacing:-0.120384px;}
.ws18{word-spacing:-0.067526px;}
.ws1e{word-spacing:-0.067109px;}
.ws1f{word-spacing:-0.067029px;}
.ws15{word-spacing:-0.065901px;}
.ws16{word-spacing:-0.065822px;}
.ws1{word-spacing:0.000000px;}
.ws21{word-spacing:0.288000px;}
.ws1c{word-spacing:2.678738px;}
.ws37{word-spacing:2.933616px;}
.ws38{word-spacing:3.071616px;}
.ws5{word-spacing:179.522976px;}
.ws6{word-spacing:549.055200px;}
._12{margin-left:-3836.820000px;}
._e{margin-left:-10.159874px;}
._c{margin-left:-7.616827px;}
._b{margin-left:-6.040155px;}
._6{margin-left:-4.863456px;}
._7{margin-left:-3.543264px;}
._4{margin-left:-2.211840px;}
._2{margin-left:-1.202400px;}
._1{width:1.084320px;}
._0{width:2.180928px;}
._8{width:3.185603px;}
._9{width:4.981052px;}
._f{width:5.984622px;}
._a{width:7.023009px;}
._10{width:9.446927px;}
._d{width:19.924317px;}
._11{width:48.278640px;}
._5{width:372.522720px;}
._3{width:528.202560px;}
.fcb{color:transparent;}
.fca{color:rgb(191,144,0);}
.fc8{color:rgb(5,99,193);}
.fc6{color:rgb(4,77,106);}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(255,0,0);}
.fc9{color:rgb(255,255,255);}
.fc7{color:rgb(166,166,166);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,63,95);}
.fs11{font-size:65.821780px;}
.fs12{font-size:65.900609px;}
.fs16{font-size:67.028651px;}
.fs15{font-size:67.108925px;}
.fs14{font-size:67.525838px;}
.fs13{font-size:67.606707px;}
.fs4{font-size:72.000000px;}
.fs19{font-size:79.920000px;}
.fsf{font-size:90.000000px;}
.fse{font-size:90.144000px;}
.fsd{font-size:95.760000px;}
.fsb{font-size:102.240000px;}
.fsc{font-size:102.384000px;}
.fs10{font-size:108.000000px;}
.fs18{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs17{font-size:120.384000px;}
.fsa{font-size:138.240000px;}
.fs9{font-size:138.384000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs5{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs2{font-size:198.144000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y68{bottom:7.792650px;}
.y93{bottom:9.900000px;}
.y41{bottom:14.000263px;}
.y40{bottom:14.000266px;}
.y73{bottom:14.241916px;}
.y5c{bottom:14.356822px;}
.y6f{bottom:16.816767px;}
.y43{bottom:17.764309px;}
.y8{bottom:22.140000px;}
.y7{bottom:22.212000px;}
.y3f{bottom:35.086885px;}
.y72{bottom:35.715167px;}
.y5b{bottom:36.009568px;}
.y66{bottom:38.290017px;}
.y60{bottom:39.527373px;}
.y2d{bottom:40.428000px;}
.y71{bottom:57.208486px;}
.y5a{bottom:57.642097px;}
.y95{bottom:58.320000px;}
.y3e{bottom:66.716812px;}
.y36{bottom:68.400149px;}
.y34{bottom:68.441205px;}
.y70{bottom:69.657619px;}
.y6d{bottom:69.677688px;}
.y65{bottom:69.721170px;}
.y59{bottom:70.174317px;}
.y1a{bottom:71.280000px;}
.y2c{bottom:73.404000px;}
.y76{bottom:77.979340px;}
.y3d{bottom:87.819853px;}
.y94{bottom:90.720000px;}
.y7d{bottom:94.284000px;}
.y6{bottom:95.688000px;}
.y75{bottom:99.389041px;}
.y88{bottom:99.504000px;}
.y6e{bottom:100.175055px;}
.y58{bottom:100.909683px;}
.y61{bottom:102.708097px;}
.y2b{bottom:107.064000px;}
.y19{bottom:111.960000px;}
.y6c{bottom:121.648306px;}
.y57{bottom:122.559059px;}
.y7c{bottom:126.684000px;}
.y5{bottom:131.724000px;}
.y6a{bottom:134.114163px;}
.y63{bottom:134.140921px;}
.y56{bottom:135.091279px;}
.y52{bottom:135.116550px;}
.y4e{bottom:135.119077px;}
.y49{bottom:135.135925px;}
.y87{bottom:135.504000px;}
.y6b{bottom:143.121556px;}
.y64{bottom:145.654598px;}
.y3c{bottom:150.611663px;}
.y67{bottom:155.587414px;}
.y62{bottom:155.630896px;}
.y55{bottom:156.723808px;}
.y51{bottom:156.749079px;}
.y4b{bottom:156.768454px;}
.y48{bottom:156.785300px;}
.y45{bottom:156.785302px;}
.y2a{bottom:160.350000px;}
.y46{bottom:160.425000px;}
.y74{bottom:165.798914px;}
.y4{bottom:167.730000px;}
.y54{bottom:169.525310px;}
.y86{bottom:171.510000px;}
.y3a{bottom:171.714704px;}
.y42{bottom:175.188066px;}
.y79{bottom:181.110000px;}
.y29{bottom:184.290000px;}
.y69{bottom:186.084781px;}
.y53{bottom:187.481916px;}
.y5d{bottom:190.733528px;}
.y97{bottom:190.980000px;}
.y78{bottom:202.710000px;}
.y85{bottom:207.510000px;}
.y50{bottom:212.790368px;}
.y39{bottom:213.887941px;}
.y18{bottom:216.210000px;}
.y28{bottom:217.230000px;}
.y4f{bottom:230.746975px;}
.y96{bottom:234.210000px;}
.y5f{bottom:234.891517px;}
.y38{bottom:234.999193px;}
.y84{bottom:243.540000px;}
.y77{bottom:245.910000px;}
.y27{bottom:251.100000px;}
.y4d{bottom:256.052899px;}
.y3{bottom:256.470000px;}
.y4c{bottom:274.028881px;}
.y5e{bottom:277.465817px;}
.yf{bottom:278.250000px;}
.y37{bottom:279.105000px;}
.y83{bottom:279.540000px;}
.y17{bottom:279.570000px;}
.y4a{bottom:299.317957px;}
.y26{bottom:304.380000px;}
.y82{bottom:315.540000px;}
.y16{bottom:320.475000px;}
.y25{bottom:337.320000px;}
.y47{bottom:338.943314px;}
.y44{bottom:342.583015px;}
.ye{bottom:348.660000px;}
.y81{bottom:351.540000px;}
.y24{bottom:361.260000px;}
.y3b{bottom:361.275458px;}
.y2{bottom:377.070000px;}
.y15{bottom:383.835000px;}
.y80{bottom:387.570000px;}
.y23{bottom:394.950000px;}
.yd{bottom:396.540000px;}
.y14{bottom:424.695000px;}
.y1{bottom:441.900000px;}
.y22{bottom:448.770000px;}
.y8d{bottom:452.445000px;}
.y13{bottom:465.555000px;}
.yc{bottom:466.920000px;}
.y21{bottom:474.330000px;}
.y8c{bottom:484.890000px;}
.y92{bottom:500.115000px;}
.y20{bottom:500.250000px;}
.y35{bottom:508.487644px;}
.y12{bottom:528.765000px;}
.y30{bottom:534.495000px;}
.yb{bottom:537.330000px;}
.y91{bottom:541.155000px;}
.y8b{bottom:549.690000px;}
.y1f{bottom:554.475000px;}
.y11{bottom:569.625000px;}
.y33{bottom:571.254820px;}
.y2f{bottom:576.000000px;}
.y1e{bottom:581.475000px;}
.y8a{bottom:582.090000px;}
.y90{bottom:582.195000px;}
.y7b{bottom:587.310000px;}
.y1d{bottom:608.655000px;}
.y89{bottom:614.490000px;}
.y2e{bottom:615.960000px;}
.y7a{bottom:619.710000px;}
.y8f{bottom:623.235000px;}
.y10{bottom:633.030000px;}
.y8e{bottom:662.145000px;}
.y1c{bottom:662.835000px;}
.y32{bottom:690.405000px;}
.ya{bottom:704.805000px;}
.y7f{bottom:707.010000px;}
.y1b{bottom:726.660000px;}
.y31{bottom:735.810000px;}
.y9{bottom:750.165000px;}
.y7e{bottom:752.400000px;}
.h1c{height:49.462754px;}
.h17{height:49.494893px;}
.h1b{height:49.521991px;}
.h1a{height:49.554169px;}
.h34{height:50.369675px;}
.h2b{height:50.402404px;}
.h33{height:50.429998px;}
.h2a{height:50.462766px;}
.h28{height:50.743293px;}
.h20{height:50.776265px;}
.h1e{height:50.837075px;}
.h5{height:62.261719px;}
.h35{height:62.296875px;}
.h12{height:77.827148px;}
.h13{height:77.951672px;}
.h10{height:82.808086px;}
.hd{height:88.411641px;}
.he{height:88.461562px;}
.hf{height:88.536164px;}
.h11{height:88.586156px;}
.h16{height:88.879131px;}
.h3b{height:89.171156px;}
.h15{height:93.392578px;}
.h36{height:93.445312px;}
.h38{height:93.569906px;}
.h32{height:94.917119px;}
.h27{height:95.630436px;}
.h4{height:103.977070px;}
.h14{height:104.035781px;}
.h3a{height:104.101594px;}
.h37{height:104.160375px;}
.h3c{height:105.110508px;}
.h31{height:116.390370px;}
.hc{height:119.542500px;}
.hb{height:119.667023px;}
.h9{height:124.523438px;}
.h8{height:124.593750px;}
.ha{height:124.647961px;}
.h39{height:124.718344px;}
.h2c{height:133.455249px;}
.h30{height:137.863620px;}
.h6{height:145.151719px;}
.h7{height:145.276312px;}
.h18{height:147.606348px;}
.h2f{height:150.312754px;}
.h25{height:151.427713px;}
.h3{height:171.441000px;}
.h29{height:176.401750px;}
.h1d{height:177.706985px;}
.h26{height:203.790554px;}
.h2{height:207.448594px;}
.h1{height:207.573187px;}
.h21{height:220.972043px;}
.h2d{height:240.819829px;}
.h22{height:264.237101px;}
.h24{height:268.690668px;}
.h2e{height:271.317197px;}
.h23{height:302.855416px;}
.h1f{height:359.865000px;}
.h19{height:381.028951px;}
.h0{height:810.000000px;}
.w2{width:730.922287px;}
.w3{width:730.922293px;}
.w4{width:733.080000px;}
.w9{width:736.155406px;}
.w8{width:736.155429px;}
.wa{width:740.470950px;}
.w7{width:741.434241px;}
.w5{width:741.434258px;}
.w6{width:748.813188px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xe{left:4.433997px;}
.x11{left:23.253930px;}
.x10{left:28.673277px;}
.xf{left:32.338726px;}
.x19{left:33.478255px;}
.x8{left:58.319979px;}
.xb{left:60.911979px;}
.x7{left:62.099979px;}
.xd{left:63.312679px;}
.x1f{left:67.427979px;}
.x4{left:73.799979px;}
.x5{left:75.095979px;}
.x17{left:78.459585px;}
.x25{left:90.899979px;}
.xc{left:93.959979px;}
.x26{left:97.451979px;}
.x9{left:105.299979px;}
.x1{left:114.119979px;}
.x23{left:121.427979px;}
.x12{left:123.479030px;}
.xa{left:135.899979px;}
.x18{left:169.834071px;}
.x15{left:179.638978px;}
.x16{left:184.617290px;}
.x1d{left:371.096901px;}
.x6{left:392.114979px;}
.x14{left:429.865370px;}
.x21{left:535.244979px;}
.x13{left:641.273124px;}
.x1e{left:647.050616px;}
.x1b{left:653.333073px;}
.x1a{left:654.562910px;}
.x1c{left:677.976767px;}
.x24{left:789.374979px;}
.x20{left:866.984979px;}
.x22{left:881.489979px;}
.x3{left:1381.319979px;}
.x2{left:1419.479979px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls19{letter-spacing:-3.178667pt;}
.ls3d{letter-spacing:-2.837333pt;}
.ls3c{letter-spacing:-2.714667pt;}
.ls3f{letter-spacing:-2.394667pt;}
.ls18{letter-spacing:-2.352000pt;}
.ls3e{letter-spacing:-1.808000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.310400pt;}
.ls26{letter-spacing:-0.277867pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.254933pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls33{letter-spacing:-0.206400pt;}
.ls2c{letter-spacing:-0.198933pt;}
.ls2d{letter-spacing:-0.164267pt;}
.ls1{letter-spacing:-0.153067pt;}
.ls2{letter-spacing:-0.125333pt;}
.ls17{letter-spacing:-0.105600pt;}
.ls38{letter-spacing:-0.104533pt;}
.ls24{letter-spacing:-0.091733pt;}
.ls15{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls2a{letter-spacing:-0.023680pt;}
.ls28{letter-spacing:-0.001920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.013280pt;}
.ls2b{letter-spacing:0.023680pt;}
.ls32{letter-spacing:0.089067pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls3a{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.152533pt;}
.ls34{letter-spacing:0.154880pt;}
.ls27{letter-spacing:0.165867pt;}
.ls3b{letter-spacing:0.204267pt;}
.ls8{letter-spacing:0.214933pt;}
.ls1f{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.237333pt;}
.ls37{letter-spacing:0.247467pt;}
.ls10{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.295467pt;}
.ls39{letter-spacing:0.306133pt;}
.lsc{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.344880pt;}
.ls22{letter-spacing:0.352000pt;}
.ls29{letter-spacing:0.375467pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:4.525339pt;}
.ls1b{letter-spacing:5.857017pt;}
.lsd{letter-spacing:21.440000pt;}
.ls4{letter-spacing:33.280000pt;}
.ls6{letter-spacing:33.920000pt;}
.ls31{letter-spacing:59.779669pt;}
.ls30{letter-spacing:59.838293pt;}
.ls5{letter-spacing:70.382336pt;}
.ls3{letter-spacing:70.440960pt;}
.lsf{letter-spacing:72.101376pt;}
.lsb{letter-spacing:72.160000pt;}
.lsa{letter-spacing:85.038336pt;}
.lse{letter-spacing:85.096960pt;}
.ls35{letter-spacing:85.390336pt;}
.ls36{letter-spacing:85.448960pt;}
.ls16{letter-spacing:89.312000pt;}
.ws11{word-spacing:-41.157120pt;}
.wsd{word-spacing:-41.051520pt;}
.ws26{word-spacing:-40.882048pt;}
.ws10{word-spacing:-37.978453pt;}
.ws2{word-spacing:-35.328000pt;}
.ws2f{word-spacing:-35.156928pt;}
.ws3{word-spacing:-33.941525pt;}
.ws4{word-spacing:-33.669120pt;}
.ws7{word-spacing:-33.612587pt;}
.ws2a{word-spacing:-29.660587pt;}
.ws34{word-spacing:-29.591253pt;}
.ws27{word-spacing:-29.534208pt;}
.ws32{word-spacing:-29.532587pt;}
.ws35{word-spacing:-29.524459pt;}
.ws2c{word-spacing:-29.522560pt;}
.wse{word-spacing:-29.498880pt;}
.ws2b{word-spacing:-29.475200pt;}
.ws29{word-spacing:-29.450987pt;}
.ws28{word-spacing:-29.333472pt;}
.ws31{word-spacing:-29.320192pt;}
.ws30{word-spacing:-29.285120pt;}
.ws33{word-spacing:-29.180587pt;}
.ws0{word-spacing:-29.159787pt;}
.ws3a{word-spacing:-26.890453pt;}
.ws25{word-spacing:-26.848000pt;}
.ws23{word-spacing:-26.784000pt;}
.ws2d{word-spacing:-26.752000pt;}
.ws2e{word-spacing:-26.531328pt;}
.ws22{word-spacing:-26.496000pt;}
.wsf{word-spacing:-26.304000pt;}
.ws24{word-spacing:-26.272000pt;}
.ws9{word-spacing:-25.235413pt;}
.wsa{word-spacing:-25.118208pt;}
.wsc{word-spacing:-21.920000pt;}
.wsb{word-spacing:-21.680000pt;}
.ws39{word-spacing:-17.656960pt;}
.ws20{word-spacing:-17.408000pt;}
.ws17{word-spacing:-16.686385pt;}
.ws1d{word-spacing:-16.583361pt;}
.ws19{word-spacing:-16.563525pt;}
.ws12{word-spacing:-16.265293pt;}
.ws1a{word-spacing:-12.245863pt;}
.ws13{word-spacing:-8.154859pt;}
.ws14{word-spacing:-3.940303pt;}
.ws1b{word-spacing:-2.153836pt;}
.ws8{word-spacing:-0.876160pt;}
.ws36{word-spacing:-0.107008pt;}
.ws18{word-spacing:-0.060023pt;}
.ws1e{word-spacing:-0.059652pt;}
.ws1f{word-spacing:-0.059581pt;}
.ws15{word-spacing:-0.058578pt;}
.ws16{word-spacing:-0.058508pt;}
.ws1{word-spacing:0.000000pt;}
.ws21{word-spacing:0.256000pt;}
.ws1c{word-spacing:2.381100pt;}
.ws37{word-spacing:2.607659pt;}
.ws38{word-spacing:2.730325pt;}
.ws5{word-spacing:159.575979pt;}
.ws6{word-spacing:488.049067pt;}
._12{margin-left:-3410.506667pt;}
._e{margin-left:-9.030999pt;}
._c{margin-left:-6.770513pt;}
._b{margin-left:-5.369027pt;}
._6{margin-left:-4.323072pt;}
._7{margin-left:-3.149568pt;}
._4{margin-left:-1.966080pt;}
._2{margin-left:-1.068800pt;}
._1{width:0.963840pt;}
._0{width:1.938603pt;}
._8{width:2.831647pt;}
._9{width:4.427602pt;}
._f{width:5.319664pt;}
._a{width:6.242675pt;}
._10{width:8.397268pt;}
._d{width:17.710504pt;}
._11{width:42.914347pt;}
._5{width:331.131307pt;}
._3{width:469.513387pt;}
.fs11{font-size:58.508249pt;}
.fs12{font-size:58.578319pt;}
.fs16{font-size:59.581023pt;}
.fs15{font-size:59.652378pt;}
.fs14{font-size:60.022967pt;}
.fs13{font-size:60.094851pt;}
.fs4{font-size:64.000000pt;}
.fs19{font-size:71.040000pt;}
.fsf{font-size:80.000000pt;}
.fse{font-size:80.128000pt;}
.fsd{font-size:85.120000pt;}
.fsb{font-size:90.880000pt;}
.fsc{font-size:91.008000pt;}
.fs10{font-size:96.000000pt;}
.fs18{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs17{font-size:107.008000pt;}
.fsa{font-size:122.880000pt;}
.fs9{font-size:123.008000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs5{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs2{font-size:176.128000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:6.926800pt;}
.y93{bottom:8.800000pt;}
.y41{bottom:12.444678pt;}
.y40{bottom:12.444681pt;}
.y73{bottom:12.659481pt;}
.y5c{bottom:12.761620pt;}
.y6f{bottom:14.948237pt;}
.y43{bottom:15.790496pt;}
.y8{bottom:19.680000pt;}
.y7{bottom:19.744000pt;}
.y3f{bottom:31.188342pt;}
.y72{bottom:31.746815pt;}
.y5b{bottom:32.008505pt;}
.y66{bottom:34.035571pt;}
.y60{bottom:35.135442pt;}
.y2d{bottom:35.936000pt;}
.y71{bottom:50.851987pt;}
.y5a{bottom:51.237420pt;}
.y95{bottom:51.840000pt;}
.y3e{bottom:59.303833pt;}
.y36{bottom:60.800132pt;}
.y34{bottom:60.836627pt;}
.y70{bottom:61.917884pt;}
.y6d{bottom:61.935723pt;}
.y65{bottom:61.974373pt;}
.y59{bottom:62.377170pt;}
.y1a{bottom:63.360000pt;}
.y2c{bottom:65.248000pt;}
.y76{bottom:69.314969pt;}
.y3d{bottom:78.062091pt;}
.y94{bottom:80.640000pt;}
.y7d{bottom:83.808000pt;}
.y6{bottom:85.056000pt;}
.y75{bottom:88.345814pt;}
.y88{bottom:88.448000pt;}
.y6e{bottom:89.044494pt;}
.y58{bottom:89.697496pt;}
.y61{bottom:91.296086pt;}
.y2b{bottom:95.168000pt;}
.y19{bottom:99.520000pt;}
.y6c{bottom:108.131827pt;}
.y57{bottom:108.941386pt;}
.y7c{bottom:112.608000pt;}
.y5{bottom:117.088000pt;}
.y6a{bottom:119.212590pt;}
.y63{bottom:119.236374pt;}
.y56{bottom:120.081137pt;}
.y52{bottom:120.103600pt;}
.y4e{bottom:120.105847pt;}
.y49{bottom:120.120822pt;}
.y87{bottom:120.448000pt;}
.y6b{bottom:127.219161pt;}
.y64{bottom:129.470754pt;}
.y3c{bottom:133.877034pt;}
.y67{bottom:138.299923pt;}
.y62{bottom:138.338574pt;}
.y55{bottom:139.310051pt;}
.y51{bottom:139.332515pt;}
.y4b{bottom:139.349737pt;}
.y48{bottom:139.364711pt;}
.y45{bottom:139.364713pt;}
.y2a{bottom:142.533333pt;}
.y46{bottom:142.600000pt;}
.y74{bottom:147.376813pt;}
.y4{bottom:149.093333pt;}
.y54{bottom:150.689164pt;}
.y86{bottom:152.453333pt;}
.y3a{bottom:152.635293pt;}
.y42{bottom:155.722726pt;}
.y79{bottom:160.986667pt;}
.y29{bottom:163.813333pt;}
.y69{bottom:165.408694pt;}
.y53{bottom:166.650592pt;}
.y5d{bottom:169.540913pt;}
.y97{bottom:169.760000pt;}
.y78{bottom:180.186667pt;}
.y85{bottom:184.453333pt;}
.y50{bottom:189.146993pt;}
.y39{bottom:190.122614pt;}
.y18{bottom:192.186667pt;}
.y28{bottom:193.093333pt;}
.y4f{bottom:205.108422pt;}
.y96{bottom:208.186667pt;}
.y5f{bottom:208.792460pt;}
.y38{bottom:208.888171pt;}
.y84{bottom:216.480000pt;}
.y77{bottom:218.586667pt;}
.y27{bottom:223.200000pt;}
.y4d{bottom:227.602576pt;}
.y3{bottom:227.973333pt;}
.y4c{bottom:243.581228pt;}
.y5e{bottom:246.636282pt;}
.yf{bottom:247.333333pt;}
.y37{bottom:248.093333pt;}
.y83{bottom:248.480000pt;}
.y17{bottom:248.506667pt;}
.y4a{bottom:266.060406pt;}
.y26{bottom:270.560000pt;}
.y82{bottom:280.480000pt;}
.y16{bottom:284.866667pt;}
.y25{bottom:299.840000pt;}
.y47{bottom:301.282946pt;}
.y44{bottom:304.518235pt;}
.ye{bottom:309.920000pt;}
.y81{bottom:312.480000pt;}
.y24{bottom:321.120000pt;}
.y3b{bottom:321.133741pt;}
.y2{bottom:335.173333pt;}
.y15{bottom:341.186667pt;}
.y80{bottom:344.506667pt;}
.y23{bottom:351.066667pt;}
.yd{bottom:352.480000pt;}
.y14{bottom:377.506667pt;}
.y1{bottom:392.800000pt;}
.y22{bottom:398.906667pt;}
.y8d{bottom:402.173333pt;}
.y13{bottom:413.826667pt;}
.yc{bottom:415.040000pt;}
.y21{bottom:421.626667pt;}
.y8c{bottom:431.013333pt;}
.y92{bottom:444.546667pt;}
.y20{bottom:444.666667pt;}
.y35{bottom:451.989017pt;}
.y12{bottom:470.013333pt;}
.y30{bottom:475.106667pt;}
.yb{bottom:477.626667pt;}
.y91{bottom:481.026667pt;}
.y8b{bottom:488.613333pt;}
.y1f{bottom:492.866667pt;}
.y11{bottom:506.333333pt;}
.y33{bottom:507.782062pt;}
.y2f{bottom:512.000000pt;}
.y1e{bottom:516.866667pt;}
.y8a{bottom:517.413333pt;}
.y90{bottom:517.506667pt;}
.y7b{bottom:522.053333pt;}
.y1d{bottom:541.026667pt;}
.y89{bottom:546.213333pt;}
.y2e{bottom:547.520000pt;}
.y7a{bottom:550.853333pt;}
.y8f{bottom:553.986667pt;}
.y10{bottom:562.693333pt;}
.y8e{bottom:588.573333pt;}
.y1c{bottom:589.186667pt;}
.y32{bottom:613.693333pt;}
.ya{bottom:626.493333pt;}
.y7f{bottom:628.453333pt;}
.y1b{bottom:645.920000pt;}
.y31{bottom:654.053333pt;}
.y9{bottom:666.813333pt;}
.y7e{bottom:668.800000pt;}
.h1c{height:43.966892pt;}
.h17{height:43.995461pt;}
.h1b{height:44.019547pt;}
.h1a{height:44.048150pt;}
.h34{height:44.773044pt;}
.h2b{height:44.802137pt;}
.h33{height:44.826665pt;}
.h2a{height:44.855792pt;}
.h28{height:45.105150pt;}
.h20{height:45.134458pt;}
.h1e{height:45.188511pt;}
.h5{height:55.343750pt;}
.h35{height:55.375000pt;}
.h12{height:69.179688pt;}
.h13{height:69.290375pt;}
.h10{height:73.607188pt;}
.hd{height:78.588125pt;}
.he{height:78.632500pt;}
.hf{height:78.698813pt;}
.h11{height:78.743250pt;}
.h16{height:79.003672pt;}
.h3b{height:79.263250pt;}
.h15{height:83.015625pt;}
.h36{height:83.062500pt;}
.h38{height:83.173250pt;}
.h32{height:84.370773pt;}
.h27{height:85.004832pt;}
.h4{height:92.424062pt;}
.h14{height:92.476250pt;}
.h3a{height:92.534750pt;}
.h37{height:92.587000pt;}
.h3c{height:93.431563pt;}
.h31{height:103.458106pt;}
.hc{height:106.260000pt;}
.hb{height:106.370688pt;}
.h9{height:110.687500pt;}
.h8{height:110.750000pt;}
.ha{height:110.798187pt;}
.h39{height:110.860750pt;}
.h2c{height:118.626888pt;}
.h30{height:122.545440pt;}
.h6{height:129.023750pt;}
.h7{height:129.134500pt;}
.h18{height:131.205643pt;}
.h2f{height:133.611337pt;}
.h25{height:134.602412pt;}
.h3{height:152.392000pt;}
.h29{height:156.801556pt;}
.h1d{height:157.961765pt;}
.h26{height:181.147159pt;}
.h2{height:184.398750pt;}
.h1{height:184.509500pt;}
.h21{height:196.419594pt;}
.h2d{height:214.062071pt;}
.h22{height:234.877424pt;}
.h24{height:238.836149pt;}
.h2e{height:241.170842pt;}
.h23{height:269.204814pt;}
.h1f{height:319.880000pt;}
.h19{height:338.692401pt;}
.h0{height:720.000000pt;}
.w2{width:649.708699pt;}
.w3{width:649.708705pt;}
.w4{width:651.626667pt;}
.w9{width:654.360361pt;}
.w8{width:654.360381pt;}
.wa{width:658.196400pt;}
.w7{width:659.052659pt;}
.w5{width:659.052674pt;}
.w6{width:665.611722pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.941331pt;}
.x11{left:20.670160pt;}
.x10{left:25.487357pt;}
.xf{left:28.745534pt;}
.x19{left:29.758449pt;}
.x8{left:51.839981pt;}
.xb{left:54.143981pt;}
.x7{left:55.199981pt;}
.xd{left:56.277937pt;}
.x1f{left:59.935981pt;}
.x4{left:65.599981pt;}
.x5{left:66.751981pt;}
.x17{left:69.741853pt;}
.x25{left:80.799981pt;}
.xc{left:83.519981pt;}
.x26{left:86.623981pt;}
.x9{left:93.599981pt;}
.x1{left:101.439981pt;}
.x23{left:107.935981pt;}
.x12{left:109.759137pt;}
.xa{left:120.799981pt;}
.x18{left:150.963619pt;}
.x15{left:159.679092pt;}
.x16{left:164.104258pt;}
.x1d{left:329.863912pt;}
.x6{left:348.546648pt;}
.x14{left:382.102552pt;}
.x21{left:475.773314pt;}
.x13{left:570.020554pt;}
.x1e{left:575.156103pt;}
.x1b{left:580.740509pt;}
.x1a{left:581.833698pt;}
.x1c{left:602.646016pt;}
.x24{left:701.666648pt;}
.x20{left:770.653314pt;}
.x22{left:783.546648pt;}
.x3{left:1227.839981pt;}
.x2{left:1261.759981pt;}
}




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