
    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_3b95ce51943b36d45d818a56.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_01f5c86f6e9943bfcfbe2dbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769043;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_3e239d6eb3a45ea0e4c0888d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_c6950dbac1a24bf357e2f5be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_0a1db1cc45f7cba3a5f92e01.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_985908a4376e6d54da1a199b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f68adea0af05d924252b345a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_83fcb1ae96965a51ab793cd9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c59870f20ea98fda4485e26.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5cf46b31e3b9759a37d48be1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_f9eee498049fea6d5e067057.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_a62081828621efed722595e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.094727;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_f5038470100704c436693be8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.769043;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_0a96cf6b8a710758e0faeb94.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_15d0acb276ea474015b5af02.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_17b420c91eca6bcce777cbcc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.925293;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-12.000000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.400000px;}
.v3{vertical-align:25.650000px;}
.lsc{letter-spacing:-2.400000px;}
.ls8{letter-spacing:-2.322000px;}
.ls10{letter-spacing:-1.632000px;}
.ls6{letter-spacing:-1.584000px;}
.ls18{letter-spacing:-1.482000px;}
.ls13{letter-spacing:-1.434000px;}
.ls3{letter-spacing:-0.930000px;}
.ls4{letter-spacing:-0.834000px;}
.ls7{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.136200px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.013980px;}
.ls0{letter-spacing:0.366600px;}
.lsd{letter-spacing:0.546600px;}
.ls9{letter-spacing:1.086000px;}
.lsa{letter-spacing:1.146000px;}
.lse{letter-spacing:1.212000px;}
.ls15{letter-spacing:1.374000px;}
.lsf{letter-spacing:1.458000px;}
.ls17{letter-spacing:1.524000px;}
.lsb{letter-spacing:1.776000px;}
.ls2{letter-spacing:2.106000px;}
.ls11{letter-spacing:2.136000px;}
.ls16{letter-spacing:2.202000px;}
.ls14{letter-spacing:2.352000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,251,0),0 0.015em rgb(255,251,0),0.015em 0 rgb(255,251,0),0 -0.015em  rgb(255,251,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,251,0);text-shadow:none;}
}
.ws3{word-spacing:-198.300000px;}
.ws9{word-spacing:-83.338200px;}
.ws8{word-spacing:-67.500000px;}
.ws23{word-spacing:-56.670600px;}
.ws0{word-spacing:-50.775600px;}
.ws13{word-spacing:-49.582500px;}
.ws12{word-spacing:-49.541250px;}
.ws10{word-spacing:-40.073700px;}
.ws14{word-spacing:-37.767300px;}
.wse{word-spacing:-34.912500px;}
.ws22{word-spacing:-34.230300px;}
.wsd{word-spacing:-32.590500px;}
.ws11{word-spacing:-32.550000px;}
.wsa{word-spacing:-30.065700px;}
.wsc{word-spacing:-30.024000px;}
.ws1{word-spacing:-29.880900px;}
.ws17{word-spacing:-28.335300px;}
.ws24{word-spacing:-26.853300px;}
.ws15{word-spacing:-26.703300px;}
.ws4{word-spacing:-24.441900px;}
.ws5{word-spacing:-23.607900px;}
.wsf{word-spacing:-6.364200px;}
.ws7{word-spacing:-1.121400px;}
.ws1e{word-spacing:-0.301800px;}
.ws20{word-spacing:-0.148800px;}
.ws1f{word-spacing:-0.148650px;}
.ws21{word-spacing:-0.121650px;}
.ws18{word-spacing:-0.108150px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:125.540850px;}
.ws19{word-spacing:800.586300px;}
.ws1c{word-spacing:817.530450px;}
.ws1a{word-spacing:823.687500px;}
.ws1d{word-spacing:885.320850px;}
.ws1b{word-spacing:946.750050px;}
.ws6{word-spacing:1158.190950px;}
.wsb{word-spacing:2491.744200px;}
._8{margin-left:-1808.407500px;}
._9{margin-left:-1441.179000px;}
._18{margin-left:-394.854900px;}
._17{margin-left:-382.134900px;}
._16{margin-left:-6.173850px;}
._a{margin-left:-4.870050px;}
._5{margin-left:-3.677100px;}
._1{margin-left:-2.595600px;}
._3{margin-left:-1.461300px;}
._2{width:1.028700px;}
._0{width:2.379300px;}
._4{width:3.661200px;}
._7{width:4.719750px;}
._15{width:5.726400px;}
._10{width:7.230450px;}
._b{width:27.132000px;}
._c{width:31.291200px;}
._f{width:32.907900px;}
._19{width:39.374400px;}
._6{width:52.046400px;}
._11{width:157.976850px;}
._13{width:228.893250px;}
._12{width:536.667600px;}
._d{width:677.920500px;}
._14{width:966.823500px;}
._e{width:2323.178850px;}
.fc10{color:rgb(119,147,60);}
.fcf{color:rgb(64,64,64);}
.fce{color:rgb(128,128,128);}
.fc0{color:rgb(255,251,0);}
.fc9{color:rgb(46,117,182);}
.fc1{color:rgb(255,255,0);}
.fc7{color:rgb(255,63,64);}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc5{color:rgb(83,83,83);}
.fc6{color:rgb(166,166,166);}
.fc8{color:rgb(36,36,36);}
.fcb{color:rgb(152,152,152);}
.fcd{color:rgb(84,130,53);}
.fc4{color:rgb(255,0,0);}
.fca{color:transparent;}
.fcc{color:rgb(255,38,0);}
.fsd{font-size:36.000000px;}
.fsa{font-size:67.500000px;}
.fs8{font-size:85.650000px;}
.fsc{font-size:90.150000px;}
.fs15{font-size:94.500000px;}
.fs13{font-size:94.650000px;}
.fsf{font-size:108.000000px;}
.fs5{font-size:108.150000px;}
.fs3{font-size:112.650000px;}
.fs2{font-size:112.800000px;}
.fse{font-size:121.650000px;}
.fs19{font-size:121.800000px;}
.fs12{font-size:126.300000px;}
.fs1a{font-size:130.650000px;}
.fs1b{font-size:130.800000px;}
.fs10{font-size:139.650000px;}
.fs11{font-size:139.800000px;}
.fs6{font-size:144.150000px;}
.fs7{font-size:144.300000px;}
.fs16{font-size:148.650000px;}
.fs17{font-size:148.800000px;}
.fs14{font-size:180.150000px;}
.fsb{font-size:180.300000px;}
.fs1{font-size:193.800000px;}
.fs4{font-size:198.300000px;}
.fs0{font-size:216.300000px;}
.fs1c{font-size:238.950000px;}
.fs18{font-size:301.800000px;}
.fs9{font-size:301.950000px;}
.y0{bottom:0.000000px;}
.y84{bottom:7.575000px;}
.y1e{bottom:9.525000px;}
.y5f{bottom:14.925000px;}
.y41{bottom:22.462500px;}
.y21{bottom:23.137500px;}
.y30{bottom:25.200000px;}
.y91{bottom:25.875000px;}
.y89{bottom:26.587500px;}
.y40{bottom:27.412500px;}
.y1d{bottom:28.687500px;}
.y8{bottom:29.625000px;}
.y7f{bottom:30.000000px;}
.y27{bottom:31.350000px;}
.y7b{bottom:31.800000px;}
.y68{bottom:32.250000px;}
.y49{bottom:33.787500px;}
.y58{bottom:35.362500px;}
.y2f{bottom:37.275000px;}
.y2b{bottom:37.875000px;}
.y16{bottom:38.737500px;}
.y4d{bottom:48.037500px;}
.y65{bottom:68.550000px;}
.y86{bottom:85.237500px;}
.y73{bottom:91.612500px;}
.y26{bottom:111.525000px;}
.y83{bottom:117.262500px;}
.y85{bottom:121.275000px;}
.y9b{bottom:121.950000px;}
.y72{bottom:124.275000px;}
.y44{bottom:125.512500px;}
.y7d{bottom:125.587500px;}
.y25{bottom:144.187500px;}
.y81{bottom:145.425000px;}
.y82{bottom:153.300000px;}
.y71{bottom:156.975000px;}
.yc{bottom:157.575000px;}
.y7{bottom:165.930000px;}
.y24{bottom:176.850000px;}
.y15{bottom:185.805000px;}
.y70{bottom:189.630000px;}
.yb{bottom:190.245000px;}
.y96{bottom:190.800000px;}
.y94{bottom:200.820000px;}
.y31{bottom:201.255000px;}
.y3b{bottom:201.450000px;}
.y35{bottom:204.255000px;}
.y48{bottom:204.705000px;}
.y2e{bottom:215.025000px;}
.y6{bottom:215.520000px;}
.y98{bottom:215.970000px;}
.y14{bottom:218.475000px;}
.y9c{bottom:219.495000px;}
.ya{bottom:222.900000px;}
.y9a{bottom:223.230000px;}
.y95{bottom:223.500000px;}
.y78{bottom:228.105000px;}
.y93{bottom:233.505000px;}
.y2c{bottom:239.925000px;}
.yf{bottom:239.970000px;}
.y3a{bottom:243.120000px;}
.y34{bottom:245.970000px;}
.y97{bottom:248.625000px;}
.y29{bottom:253.920000px;}
.y99{bottom:255.900000px;}
.y5{bottom:263.955000px;}
.y23{bottom:282.705000px;}
.y13{bottom:283.800000px;}
.y8e{bottom:286.530000px;}
.y2d{bottom:289.350000px;}
.y52{bottom:292.155000px;}
.y6d{bottom:305.925000px;}
.y77{bottom:306.225000px;}
.y12{bottom:316.455000px;}
.y9d{bottom:318.150000px;}
.y51{bottom:325.950000px;}
.y5c{bottom:330.825000px;}
.y6c{bottom:338.595000px;}
.y67{bottom:352.245000px;}
.y54{bottom:354.750000px;}
.y4{bottom:361.995000px;}
.y5b{bottom:362.370000px;}
.y8d{bottom:366.525000px;}
.y39{bottom:368.175000px;}
.y33{bottom:370.995000px;}
.y43{bottom:373.830000px;}
.y76{bottom:384.300000px;}
.y45{bottom:387.780000px;}
.y50{bottom:394.695000px;}
.y53{bottom:399.780000px;}
.y6b{bottom:403.905000px;}
.y8c{bottom:405.945000px;}
.y38{bottom:408.720000px;}
.y32{bottom:411.570000px;}
.y5a{bottom:427.725000px;}
.y4f{bottom:429.600000px;}
.y20{bottom:436.425000px;}
.y3e{bottom:448.995000px;}
.y62{bottom:456.375000px;}
.y7e{bottom:459.675000px;}
.y17{bottom:461.550000px;}
.y75{bottom:462.405000px;}
.ya0{bottom:477.495000px;}
.y3{bottom:477.870000px;}
.y37{bottom:478.320000px;}
.y11{bottom:484.575000px;}
.y8b{bottom:484.800000px;}
.y59{bottom:493.050000px;}
.y4e{bottom:497.175000px;}
.y6a{bottom:500.820000px;}
.y61{bottom:506.580000px;}
.y1a{bottom:519.000000px;}
.y28{bottom:521.700000px;}
.y8a{bottom:524.205000px;}
.y1f{bottom:526.530000px;}
.y74{bottom:527.070000px;}
.y7c{bottom:532.275000px;}
.y2{bottom:535.320000px;}
.y47{bottom:536.655000px;}
.y3d{bottom:539.100000px;}
.y9{bottom:555.825000px;}
.y9f{bottom:564.255000px;}
.y46{bottom:590.745000px;}
.ya1{bottom:598.470000px;}
.y69{bottom:598.800000px;}
.y9e{bottom:607.050000px;}
.y60{bottom:607.905000px;}
.ye{bottom:616.695000px;}
.y42{bottom:617.445000px;}
.y79{bottom:624.720000px;}
.y80{bottom:632.400000px;}
.y4c{bottom:635.025000px;}
.y1c{bottom:635.250000px;}
.y19{bottom:639.450000px;}
.y66{bottom:651.525000px;}
.y1{bottom:659.220000px;}
.yd{bottom:659.475000px;}
.y57{bottom:660.600000px;}
.y10{bottom:660.825000px;}
.y6f{bottom:675.975000px;}
.y90{bottom:677.595000px;}
.y4b{bottom:677.820000px;}
.y1b{bottom:678.030000px;}
.y18{bottom:682.245000px;}
.y3f{bottom:690.000000px;}
.y3c{bottom:693.120000px;}
.y5e{bottom:693.780000px;}
.y88{bottom:696.255000px;}
.y56{bottom:703.425000px;}
.y92{bottom:711.975000px;}
.y7a{bottom:712.425000px;}
.y64{bottom:714.750000px;}
.y22{bottom:720.630000px;}
.y6e{bottom:721.050000px;}
.y4a{bottom:721.755000px;}
.y8f{bottom:722.625000px;}
.y5d{bottom:737.745000px;}
.y87{bottom:739.095000px;}
.y36{bottom:743.070000px;}
.y55{bottom:746.220000px;}
.y2a{bottom:750.945000px;}
.y63{bottom:758.700000px;}
.h11{height:35.806641px;}
.hb{height:62.606470px;}
.hd{height:67.137451px;}
.h20{height:70.875000px;}
.h25{height:70.987500px;}
.h16{height:78.943359px;}
.h6{height:79.053003px;}
.h10{height:79.482056px;}
.h14{height:81.112500px;}
.h26{height:81.323730px;}
.h28{height:81.848218px;}
.h4{height:84.487500px;}
.h3{height:84.600000px;}
.h2b{height:88.564526px;}
.hf{height:89.665796px;}
.h2c{height:91.237500px;}
.h2d{height:91.350000px;}
.h1d{height:94.141626px;}
.h1a{height:94.725000px;}
.h18{height:97.509521px;}
.h1c{height:97.614258px;}
.h2f{height:97.987500px;}
.h30{height:98.100000px;}
.h17{height:98.532349px;}
.h19{height:98.638184px;}
.h13{height:99.453003px;}
.h15{height:104.703003px;}
.ha{height:107.569116px;}
.h21{height:108.112500px;}
.h29{height:108.221265px;}
.h22{height:108.225000px;}
.h2a{height:108.330469px;}
.h1b{height:108.394043px;}
.h9{height:110.737573px;}
.h23{height:111.487500px;}
.h24{height:111.600000px;}
.h12{height:120.996606px;}
.he{height:135.225000px;}
.h2e{height:143.375757px;}
.h2{height:145.350000px;}
.h7{height:147.598901px;}
.h8{height:147.752490px;}
.h5{height:149.112305px;}
.h1f{height:155.784009px;}
.h1e{height:155.913721px;}
.h1{height:162.225000px;}
.h31{height:206.631079px;}
.h27{height:260.980371px;}
.hc{height:261.257520px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x56{left:10.799979px;}
.x28{left:25.574979px;}
.x17{left:27.637479px;}
.x45{left:30.674979px;}
.x4b{left:32.812479px;}
.x3b{left:50.324979px;}
.x3a{left:53.362479px;}
.x4e{left:58.687479px;}
.x14{left:69.974979px;}
.x9{left:72.374979px;}
.x68{left:74.062479px;}
.x4f{left:79.987479px;}
.x34{left:81.974979px;}
.x16{left:86.024979px;}
.x43{left:114.374979px;}
.xa{left:116.062479px;}
.x2a{left:129.599979px;}
.x44{left:141.674979px;}
.x5b{left:145.424979px;}
.x49{left:157.874979px;}
.x53{left:165.449979px;}
.x6c{left:170.504979px;}
.x63{left:175.019979px;}
.x4c{left:185.474979px;}
.x62{left:194.999979px;}
.x2b{left:201.299979px;}
.x40{left:206.699979px;}
.x2c{left:224.249979px;}
.x52{left:231.794979px;}
.x1d{left:240.944979px;}
.x3f{left:255.374979px;}
.x25{left:259.799979px;}
.x4a{left:269.369979px;}
.x1e{left:271.724979px;}
.x29{left:286.469979px;}
.x61{left:293.594979px;}
.x60{left:320.699979px;}
.x26{left:323.819979px;}
.x6b{left:350.999979px;}
.x1{left:378.944979px;}
.x18{left:399.779979px;}
.x13{left:405.974979px;}
.x33{left:427.844979px;}
.x1f{left:453.344979px;}
.x6d{left:459.029979px;}
.x15{left:464.879979px;}
.x55{left:470.474979px;}
.x19{left:473.069979px;}
.x3{left:481.379979px;}
.x51{left:497.744979px;}
.x32{left:500.999979px;}
.x2{left:502.799979px;}
.x7{left:511.799979px;}
.x24{left:546.494979px;}
.x65{left:550.049979px;}
.x6{left:557.129979px;}
.x4d{left:561.149979px;}
.x64{left:570.029979px;}
.x4{left:597.254979px;}
.x41{left:652.244979px;}
.x21{left:658.319979px;}
.x5f{left:666.779979px;}
.x27{left:673.274979px;}
.x50{left:704.474979px;}
.x5{left:711.074979px;}
.x5c{left:720.569979px;}
.x46{left:721.994979px;}
.x2d{left:736.319979px;}
.x31{left:740.879979px;}
.x1b{left:761.174979px;}
.x59{left:774.629979px;}
.x12{left:785.474979px;}
.x58{left:788.399979px;}
.x6a{left:793.619979px;}
.x35{left:820.004979px;}
.xd{left:859.499979px;}
.x2f{left:861.044979px;}
.x5e{left:891.719979px;}
.x5d{left:920.024979px;}
.x36{left:946.574979px;}
.x37{left:950.324979px;}
.x30{left:955.724979px;}
.x23{left:960.044979px;}
.x5a{left:961.949979px;}
.x10{left:965.849979px;}
.x42{left:977.744979px;}
.x47{left:982.724979px;}
.x2e{left:986.744979px;}
.x3c{left:988.949979px;}
.xc{left:991.274979px;}
.xe{left:995.894979px;}
.x3e{left:1005.404979px;}
.x3d{left:1006.919979px;}
.xf{left:1010.129979px;}
.x57{left:1024.544979px;}
.x69{left:1027.994979px;}
.x8{left:1046.519979px;}
.x11{left:1051.424979px;}
.x66{left:1075.199979px;}
.x1a{left:1148.294979px;}
.x67{left:1163.849979px;}
.x22{left:1180.799979px;}
.xb{left:1183.319979px;}
.x54{left:1202.594979px;}
.x48{left:1259.969979px;}
.x39{left:1316.699979px;}
.x1c{left:1317.944979px;}
.x38{left:1320.374979px;}
.x20{left:1327.649979px;}
@media print{
.v4{vertical-align:-10.666667pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.133333pt;}
.v3{vertical-align:22.800000pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls8{letter-spacing:-2.064000pt;}
.ls10{letter-spacing:-1.450667pt;}
.ls6{letter-spacing:-1.408000pt;}
.ls18{letter-spacing:-1.317333pt;}
.ls13{letter-spacing:-1.274667pt;}
.ls3{letter-spacing:-0.826667pt;}
.ls4{letter-spacing:-0.741333pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.121067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.012427pt;}
.ls0{letter-spacing:0.325867pt;}
.lsd{letter-spacing:0.485867pt;}
.ls9{letter-spacing:0.965333pt;}
.lsa{letter-spacing:1.018667pt;}
.lse{letter-spacing:1.077333pt;}
.ls15{letter-spacing:1.221333pt;}
.lsf{letter-spacing:1.296000pt;}
.ls17{letter-spacing:1.354667pt;}
.lsb{letter-spacing:1.578667pt;}
.ls2{letter-spacing:1.872000pt;}
.ls11{letter-spacing:1.898667pt;}
.ls16{letter-spacing:1.957333pt;}
.ls14{letter-spacing:2.090667pt;}
.ws3{word-spacing:-176.266667pt;}
.ws9{word-spacing:-74.078400pt;}
.ws8{word-spacing:-60.000000pt;}
.ws23{word-spacing:-50.373867pt;}
.ws0{word-spacing:-45.133867pt;}
.ws13{word-spacing:-44.073333pt;}
.ws12{word-spacing:-44.036667pt;}
.ws10{word-spacing:-35.621067pt;}
.ws14{word-spacing:-33.570933pt;}
.wse{word-spacing:-31.033333pt;}
.ws22{word-spacing:-30.426933pt;}
.wsd{word-spacing:-28.969333pt;}
.ws11{word-spacing:-28.933333pt;}
.wsa{word-spacing:-26.725067pt;}
.wsc{word-spacing:-26.688000pt;}
.ws1{word-spacing:-26.560800pt;}
.ws17{word-spacing:-25.186933pt;}
.ws24{word-spacing:-23.869600pt;}
.ws15{word-spacing:-23.736267pt;}
.ws4{word-spacing:-21.726133pt;}
.ws5{word-spacing:-20.984800pt;}
.wsf{word-spacing:-5.657067pt;}
.ws7{word-spacing:-0.996800pt;}
.ws1e{word-spacing:-0.268267pt;}
.ws20{word-spacing:-0.132267pt;}
.ws1f{word-spacing:-0.132133pt;}
.ws21{word-spacing:-0.108133pt;}
.ws18{word-spacing:-0.096133pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:111.591867pt;}
.ws19{word-spacing:711.632267pt;}
.ws1c{word-spacing:726.693733pt;}
.ws1a{word-spacing:732.166667pt;}
.ws1d{word-spacing:786.951867pt;}
.ws1b{word-spacing:841.555600pt;}
.ws6{word-spacing:1029.503067pt;}
.wsb{word-spacing:2214.883733pt;}
._8{margin-left:-1607.473333pt;}
._9{margin-left:-1281.048000pt;}
._18{margin-left:-350.982133pt;}
._17{margin-left:-339.675467pt;}
._16{margin-left:-5.487867pt;}
._a{margin-left:-4.328933pt;}
._5{margin-left:-3.268533pt;}
._1{margin-left:-2.307200pt;}
._3{margin-left:-1.298933pt;}
._2{width:0.914400pt;}
._0{width:2.114933pt;}
._4{width:3.254400pt;}
._7{width:4.195333pt;}
._15{width:5.090133pt;}
._10{width:6.427067pt;}
._b{width:24.117333pt;}
._c{width:27.814400pt;}
._f{width:29.251467pt;}
._19{width:34.999467pt;}
._6{width:46.263467pt;}
._11{width:140.423867pt;}
._13{width:203.460667pt;}
._12{width:477.037867pt;}
._d{width:602.596000pt;}
._14{width:859.398667pt;}
._e{width:2065.047867pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:60.000000pt;}
.fs8{font-size:76.133333pt;}
.fsc{font-size:80.133333pt;}
.fs15{font-size:84.000000pt;}
.fs13{font-size:84.133333pt;}
.fsf{font-size:96.000000pt;}
.fs5{font-size:96.133333pt;}
.fs3{font-size:100.133333pt;}
.fs2{font-size:100.266667pt;}
.fse{font-size:108.133333pt;}
.fs19{font-size:108.266667pt;}
.fs12{font-size:112.266667pt;}
.fs1a{font-size:116.133333pt;}
.fs1b{font-size:116.266667pt;}
.fs10{font-size:124.133333pt;}
.fs11{font-size:124.266667pt;}
.fs6{font-size:128.133333pt;}
.fs7{font-size:128.266667pt;}
.fs16{font-size:132.133333pt;}
.fs17{font-size:132.266667pt;}
.fs14{font-size:160.133333pt;}
.fsb{font-size:160.266667pt;}
.fs1{font-size:172.266667pt;}
.fs4{font-size:176.266667pt;}
.fs0{font-size:192.266667pt;}
.fs1c{font-size:212.400000pt;}
.fs18{font-size:268.266667pt;}
.fs9{font-size:268.400000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:6.733333pt;}
.y1e{bottom:8.466667pt;}
.y5f{bottom:13.266667pt;}
.y41{bottom:19.966667pt;}
.y21{bottom:20.566667pt;}
.y30{bottom:22.400000pt;}
.y91{bottom:23.000000pt;}
.y89{bottom:23.633333pt;}
.y40{bottom:24.366667pt;}
.y1d{bottom:25.500000pt;}
.y8{bottom:26.333333pt;}
.y7f{bottom:26.666667pt;}
.y27{bottom:27.866667pt;}
.y7b{bottom:28.266667pt;}
.y68{bottom:28.666667pt;}
.y49{bottom:30.033333pt;}
.y58{bottom:31.433333pt;}
.y2f{bottom:33.133333pt;}
.y2b{bottom:33.666667pt;}
.y16{bottom:34.433333pt;}
.y4d{bottom:42.700000pt;}
.y65{bottom:60.933333pt;}
.y86{bottom:75.766667pt;}
.y73{bottom:81.433333pt;}
.y26{bottom:99.133333pt;}
.y83{bottom:104.233333pt;}
.y85{bottom:107.800000pt;}
.y9b{bottom:108.400000pt;}
.y72{bottom:110.466667pt;}
.y44{bottom:111.566667pt;}
.y7d{bottom:111.633333pt;}
.y25{bottom:128.166667pt;}
.y81{bottom:129.266667pt;}
.y82{bottom:136.266667pt;}
.y71{bottom:139.533333pt;}
.yc{bottom:140.066667pt;}
.y7{bottom:147.493333pt;}
.y24{bottom:157.200000pt;}
.y15{bottom:165.160000pt;}
.y70{bottom:168.560000pt;}
.yb{bottom:169.106667pt;}
.y96{bottom:169.600000pt;}
.y94{bottom:178.506667pt;}
.y31{bottom:178.893333pt;}
.y3b{bottom:179.066667pt;}
.y35{bottom:181.560000pt;}
.y48{bottom:181.960000pt;}
.y2e{bottom:191.133333pt;}
.y6{bottom:191.573333pt;}
.y98{bottom:191.973333pt;}
.y14{bottom:194.200000pt;}
.y9c{bottom:195.106667pt;}
.ya{bottom:198.133333pt;}
.y9a{bottom:198.426667pt;}
.y95{bottom:198.666667pt;}
.y78{bottom:202.760000pt;}
.y93{bottom:207.560000pt;}
.y2c{bottom:213.266667pt;}
.yf{bottom:213.306667pt;}
.y3a{bottom:216.106667pt;}
.y34{bottom:218.640000pt;}
.y97{bottom:221.000000pt;}
.y29{bottom:225.706667pt;}
.y99{bottom:227.466667pt;}
.y5{bottom:234.626667pt;}
.y23{bottom:251.293333pt;}
.y13{bottom:252.266667pt;}
.y8e{bottom:254.693333pt;}
.y2d{bottom:257.200000pt;}
.y52{bottom:259.693333pt;}
.y6d{bottom:271.933333pt;}
.y77{bottom:272.200000pt;}
.y12{bottom:281.293333pt;}
.y9d{bottom:282.800000pt;}
.y51{bottom:289.733333pt;}
.y5c{bottom:294.066667pt;}
.y6c{bottom:300.973333pt;}
.y67{bottom:313.106667pt;}
.y54{bottom:315.333333pt;}
.y4{bottom:321.773333pt;}
.y5b{bottom:322.106667pt;}
.y8d{bottom:325.800000pt;}
.y39{bottom:327.266667pt;}
.y33{bottom:329.773333pt;}
.y43{bottom:332.293333pt;}
.y76{bottom:341.600000pt;}
.y45{bottom:344.693333pt;}
.y50{bottom:350.840000pt;}
.y53{bottom:355.360000pt;}
.y6b{bottom:359.026667pt;}
.y8c{bottom:360.840000pt;}
.y38{bottom:363.306667pt;}
.y32{bottom:365.840000pt;}
.y5a{bottom:380.200000pt;}
.y4f{bottom:381.866667pt;}
.y20{bottom:387.933333pt;}
.y3e{bottom:399.106667pt;}
.y62{bottom:405.666667pt;}
.y7e{bottom:408.600000pt;}
.y17{bottom:410.266667pt;}
.y75{bottom:411.026667pt;}
.ya0{bottom:424.440000pt;}
.y3{bottom:424.773333pt;}
.y37{bottom:425.173333pt;}
.y11{bottom:430.733333pt;}
.y8b{bottom:430.933333pt;}
.y59{bottom:438.266667pt;}
.y4e{bottom:441.933333pt;}
.y6a{bottom:445.173333pt;}
.y61{bottom:450.293333pt;}
.y1a{bottom:461.333333pt;}
.y28{bottom:463.733333pt;}
.y8a{bottom:465.960000pt;}
.y1f{bottom:468.026667pt;}
.y74{bottom:468.506667pt;}
.y7c{bottom:473.133333pt;}
.y2{bottom:475.840000pt;}
.y47{bottom:477.026667pt;}
.y3d{bottom:479.200000pt;}
.y9{bottom:494.066667pt;}
.y9f{bottom:501.560000pt;}
.y46{bottom:525.106667pt;}
.ya1{bottom:531.973333pt;}
.y69{bottom:532.266667pt;}
.y9e{bottom:539.600000pt;}
.y60{bottom:540.360000pt;}
.ye{bottom:548.173333pt;}
.y42{bottom:548.840000pt;}
.y79{bottom:555.306667pt;}
.y80{bottom:562.133333pt;}
.y4c{bottom:564.466667pt;}
.y1c{bottom:564.666667pt;}
.y19{bottom:568.400000pt;}
.y66{bottom:579.133333pt;}
.y1{bottom:585.973333pt;}
.yd{bottom:586.200000pt;}
.y57{bottom:587.200000pt;}
.y10{bottom:587.400000pt;}
.y6f{bottom:600.866667pt;}
.y90{bottom:602.306667pt;}
.y4b{bottom:602.506667pt;}
.y1b{bottom:602.693333pt;}
.y18{bottom:606.440000pt;}
.y3f{bottom:613.333333pt;}
.y3c{bottom:616.106667pt;}
.y5e{bottom:616.693333pt;}
.y88{bottom:618.893333pt;}
.y56{bottom:625.266667pt;}
.y92{bottom:632.866667pt;}
.y7a{bottom:633.266667pt;}
.y64{bottom:635.333333pt;}
.y22{bottom:640.560000pt;}
.y6e{bottom:640.933333pt;}
.y4a{bottom:641.560000pt;}
.y8f{bottom:642.333333pt;}
.y5d{bottom:655.773333pt;}
.y87{bottom:656.973333pt;}
.y36{bottom:660.506667pt;}
.y55{bottom:663.306667pt;}
.y2a{bottom:667.506667pt;}
.y63{bottom:674.400000pt;}
.h11{height:31.828125pt;}
.hb{height:55.650195pt;}
.hd{height:59.677734pt;}
.h20{height:63.000000pt;}
.h25{height:63.100000pt;}
.h16{height:70.171875pt;}
.h6{height:70.269336pt;}
.h10{height:70.650716pt;}
.h14{height:72.100000pt;}
.h26{height:72.287760pt;}
.h28{height:72.753971pt;}
.h4{height:75.100000pt;}
.h3{height:75.200000pt;}
.h2b{height:78.724023pt;}
.hf{height:79.702930pt;}
.h2c{height:81.100000pt;}
.h2d{height:81.200000pt;}
.h1d{height:83.681445pt;}
.h1a{height:84.200000pt;}
.h18{height:86.675130pt;}
.h1c{height:86.768229pt;}
.h2f{height:87.100000pt;}
.h30{height:87.200000pt;}
.h17{height:87.584310pt;}
.h19{height:87.678385pt;}
.h13{height:88.402669pt;}
.h15{height:93.069336pt;}
.ha{height:95.616992pt;}
.h21{height:96.100000pt;}
.h29{height:96.196680pt;}
.h22{height:96.200000pt;}
.h2a{height:96.293750pt;}
.h1b{height:96.350260pt;}
.h9{height:98.433398pt;}
.h23{height:99.100000pt;}
.h24{height:99.200000pt;}
.h12{height:107.552539pt;}
.he{height:120.200000pt;}
.h2e{height:127.445117pt;}
.h2{height:129.200000pt;}
.h7{height:131.199023pt;}
.h8{height:131.335547pt;}
.h5{height:132.544271pt;}
.h1f{height:138.474674pt;}
.h1e{height:138.589974pt;}
.h1{height:144.200000pt;}
.h31{height:183.672070pt;}
.h27{height:231.982552pt;}
.hc{height:232.228906pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x56{left:9.599981pt;}
.x28{left:22.733314pt;}
.x17{left:24.566648pt;}
.x45{left:27.266648pt;}
.x4b{left:29.166648pt;}
.x3b{left:44.733314pt;}
.x3a{left:47.433314pt;}
.x4e{left:52.166648pt;}
.x14{left:62.199981pt;}
.x9{left:64.333314pt;}
.x68{left:65.833314pt;}
.x4f{left:71.099981pt;}
.x34{left:72.866648pt;}
.x16{left:76.466648pt;}
.x43{left:101.666648pt;}
.xa{left:103.166648pt;}
.x2a{left:115.199981pt;}
.x44{left:125.933314pt;}
.x5b{left:129.266648pt;}
.x49{left:140.333314pt;}
.x53{left:147.066648pt;}
.x6c{left:151.559981pt;}
.x63{left:155.573314pt;}
.x4c{left:164.866648pt;}
.x62{left:173.333314pt;}
.x2b{left:178.933314pt;}
.x40{left:183.733314pt;}
.x2c{left:199.333314pt;}
.x52{left:206.039981pt;}
.x1d{left:214.173314pt;}
.x3f{left:226.999981pt;}
.x25{left:230.933314pt;}
.x4a{left:239.439981pt;}
.x1e{left:241.533314pt;}
.x29{left:254.639981pt;}
.x61{left:260.973314pt;}
.x60{left:285.066648pt;}
.x26{left:287.839981pt;}
.x6b{left:311.999981pt;}
.x1{left:336.839981pt;}
.x18{left:355.359981pt;}
.x13{left:360.866648pt;}
.x33{left:380.306648pt;}
.x1f{left:402.973314pt;}
.x6d{left:408.026648pt;}
.x15{left:413.226648pt;}
.x55{left:418.199981pt;}
.x19{left:420.506648pt;}
.x3{left:427.893314pt;}
.x51{left:442.439981pt;}
.x32{left:445.333314pt;}
.x2{left:446.933314pt;}
.x7{left:454.933314pt;}
.x24{left:485.773314pt;}
.x65{left:488.933314pt;}
.x6{left:495.226648pt;}
.x4d{left:498.799981pt;}
.x64{left:506.693314pt;}
.x4{left:530.893314pt;}
.x41{left:579.773314pt;}
.x21{left:585.173314pt;}
.x5f{left:592.693314pt;}
.x27{left:598.466648pt;}
.x50{left:626.199981pt;}
.x5{left:632.066648pt;}
.x5c{left:640.506648pt;}
.x46{left:641.773314pt;}
.x2d{left:654.506648pt;}
.x31{left:658.559981pt;}
.x1b{left:676.599981pt;}
.x59{left:688.559981pt;}
.x12{left:698.199981pt;}
.x58{left:700.799981pt;}
.x6a{left:705.439981pt;}
.x35{left:728.893314pt;}
.xd{left:763.999981pt;}
.x2f{left:765.373314pt;}
.x5e{left:792.639981pt;}
.x5d{left:817.799981pt;}
.x36{left:841.399981pt;}
.x37{left:844.733314pt;}
.x30{left:849.533314pt;}
.x23{left:853.373314pt;}
.x5a{left:855.066648pt;}
.x10{left:858.533314pt;}
.x42{left:869.106648pt;}
.x47{left:873.533314pt;}
.x2e{left:877.106648pt;}
.x3c{left:879.066648pt;}
.xc{left:881.133314pt;}
.xe{left:885.239981pt;}
.x3e{left:893.693314pt;}
.x3d{left:895.039981pt;}
.xf{left:897.893314pt;}
.x57{left:910.706648pt;}
.x69{left:913.773314pt;}
.x8{left:930.239981pt;}
.x11{left:934.599981pt;}
.x66{left:955.733314pt;}
.x1a{left:1020.706648pt;}
.x67{left:1034.533314pt;}
.x22{left:1049.599981pt;}
.xb{left:1051.839981pt;}
.x54{left:1068.973314pt;}
.x48{left:1119.973314pt;}
.x39{left:1170.399981pt;}
.x1c{left:1171.506648pt;}
.x38{left:1173.666648pt;}
.x20{left:1180.133314pt;}
}




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