
    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_e5bb9f9badef08f478a4c909.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.066406;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_c52e4827144cfcfd89ffd790.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992188;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_196a60924da423b908f26c3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5b866adefad7ffe279b720a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a5976499567e2dad5f07a6e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992188;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_2765d4d3a056a500345618e4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_24d816b873a1325aff0f12f0.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_f14a30153692e57990d388a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_1eb02bb9a23c3234e3440fa7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-31.500000px;}
.v5{vertical-align:-4.380000px;}
.v1{vertical-align:-2.700000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.500000px;}
.v3{vertical-align:31.500000px;}
.ls15{letter-spacing:-8.640000px;}
.ls19{letter-spacing:-8.580000px;}
.ls26{letter-spacing:-3.966000px;}
.ls12{letter-spacing:-3.102000px;}
.lsd{letter-spacing:-2.952000px;}
.ls16{letter-spacing:-2.316000px;}
.ls1e{letter-spacing:-1.632000px;}
.ls2a{letter-spacing:-1.584000px;}
.ls10{letter-spacing:-0.580200px;}
.ls11{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.137400px;}
.ls1f{letter-spacing:-0.075000px;}
.ls31{letter-spacing:-0.070800px;}
.ls1a{letter-spacing:-0.013920px;}
.ls32{letter-spacing:-0.006300px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.009300px;}
.ls1{letter-spacing:0.012600px;}
.ls29{letter-spacing:0.024000px;}
.ls20{letter-spacing:0.048600px;}
.ls18{letter-spacing:0.054300px;}
.ls9{letter-spacing:0.069300px;}
.ls27{letter-spacing:0.072600px;}
.ls7{letter-spacing:0.129300px;}
.ls2{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.189300px;}
.ls3{letter-spacing:0.194100px;}
.ls5{letter-spacing:0.228000px;}
.lsa{letter-spacing:0.249300px;}
.lsb{letter-spacing:0.348000px;}
.ls25{letter-spacing:0.384600px;}
.ls3b{letter-spacing:0.482400px;}
.ls38{letter-spacing:0.594600px;}
.ls37{letter-spacing:0.654600px;}
.ls39{letter-spacing:0.690000px;}
.ls2e{letter-spacing:0.731550px;}
.ls35{letter-spacing:0.858000px;}
.ls21{letter-spacing:0.942000px;}
.ls2b{letter-spacing:1.422000px;}
.ls1c{letter-spacing:1.434000px;}
.lsf{letter-spacing:1.728000px;}
.lse{letter-spacing:1.878000px;}
.ls1d{letter-spacing:2.442000px;}
.ls1b{letter-spacing:2.484000px;}
.lsc{letter-spacing:55.747500px;}
.ls6{letter-spacing:55.927500px;}
.ls14{letter-spacing:65.572500px;}
.ls13{letter-spacing:68.722500px;}
.ls2c{letter-spacing:70.297500px;}
.ls2d{letter-spacing:74.872500px;}
.ls24{letter-spacing:76.500000px;}
.ls23{letter-spacing:76.567500px;}
.ls22{letter-spacing:76.597500px;}
.ls36{letter-spacing:105.330000px;}
.ls34{letter-spacing:105.420000px;}
.ls3a{letter-spacing:112.261500px;}
.ls2f{letter-spacing:119.520000px;}
.ls30{letter-spacing:119.572500px;}
.ls3c{letter-spacing:122.722500px;}
.ls28{letter-spacing:124.297500px;}
.ls33{letter-spacing:129.022500px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(13,51,81),0 0.015em rgb(13,51,81),0.015em 0 rgb(13,51,81),0 -0.015em  rgb(13,51,81);}
.sc2{text-shadow:-0.015em 0 rgb(255,105,47),0 0.015em rgb(255,105,47),0.015em 0 rgb(255,105,47),0 -0.015em  rgb(255,105,47);}
.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,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(13,51,81);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,105,47);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws15{word-spacing:-112.811400px;}
.wsb{word-spacing:-63.159600px;}
.ws4{word-spacing:-33.818700px;}
.ws10{word-spacing:-31.487700px;}
.ws2{word-spacing:-31.316700px;}
.ws7{word-spacing:-30.065700px;}
.ws8{word-spacing:-30.051780px;}
.wsf{word-spacing:-28.481700px;}
.wsc{word-spacing:-28.433700px;}
.wse{word-spacing:-25.061700px;}
.ws9{word-spacing:-22.500000px;}
.wsa{word-spacing:-22.499700px;}
.ws13{word-spacing:-20.057700px;}
.ws11{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.982700px;}
.ws14{word-spacing:-3.309600px;}
.ws6{word-spacing:-2.781300px;}
.ws3{word-spacing:-2.753700px;}
.ws16{word-spacing:-1.373700px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:4.573200px;}
.ws12{word-spacing:1338.649350px;}
.ws1{word-spacing:1598.486100px;}
._13{margin-left:-18.614700px;}
._12{margin-left:-14.718600px;}
._14{margin-left:-13.418700px;}
._16{margin-left:-12.014400px;}
._f{margin-left:-10.245300px;}
._10{margin-left:-8.574150px;}
._11{margin-left:-7.132200px;}
._1{margin-left:-5.406750px;}
._2{margin-left:-4.325400px;}
._0{margin-left:-3.244050px;}
._3{margin-left:-1.802250px;}
._5{width:1.081350px;}
._7{width:2.883750px;}
._9{width:4.325550px;}
._c{width:5.610900px;}
._d{width:7.540950px;}
._1b{width:8.595750px;}
._19{width:11.749650px;}
._8{width:14.931150px;}
._18{width:22.676250px;}
._17{width:26.277600px;}
._6{width:29.364900px;}
._1e{width:30.399000px;}
._1f{width:31.435050px;}
._e{width:32.454600px;}
._1d{width:33.603750px;}
._15{width:35.319750px;}
._1a{width:36.905550px;}
._4{width:80.133150px;}
._1c{width:1414.376100px;}
._a{width:1484.558850px;}
._b{width:1643.918850px;}
.fc6{color:rgb(255,215,3);}
.fc4{color:rgb(0,49,82);}
.fc7{color:rgb(0,179,255);}
.fc2{color:rgb(13,51,81);}
.fc5{color:rgb(119,126,136);}
.fc1{color:rgb(255,105,47);}
.fc8{color:rgb(31,31,31);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:58.650000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fs11{font-size:85.650000px;}
.fs7{font-size:90.000000px;}
.fs9{font-size:90.150000px;}
.fs13{font-size:94.500000px;}
.fs8{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fsb{font-size:112.650000px;}
.fs1{font-size:121.650000px;}
.fs10{font-size:121.800000px;}
.fse{font-size:144.150000px;}
.fsc{font-size:144.300000px;}
.fs12{font-size:148.650000px;}
.fs4{font-size:193.800000px;}
.fs3{font-size:270.450000px;}
.fs0{font-size:360.450000px;}
.fsd{font-size:482.100000px;}
.fsf{font-size:482.250000px;}
.y0{bottom:0.000000px;}
.y92{bottom:15.900000px;}
.y1f{bottom:17.362500px;}
.y1e{bottom:17.887500px;}
.y84{bottom:24.300000px;}
.y9a{bottom:29.250000px;}
.y5{bottom:33.825000px;}
.ycf{bottom:36.712500px;}
.y91{bottom:37.312500px;}
.y53{bottom:48.375000px;}
.y99{bottom:50.662500px;}
.y83{bottom:56.962500px;}
.y49{bottom:58.500000px;}
.y90{bottom:58.725000px;}
.y5d{bottom:59.625000px;}
.yac{bottom:61.125000px;}
.y98{bottom:72.075000px;}
.y37{bottom:81.000000px;}
.y55{bottom:86.175000px;}
.y54{bottom:103.125000px;}
.y42{bottom:103.425000px;}
.y33{bottom:103.530000px;}
.y57{bottom:103.725000px;}
.y35{bottom:104.175000px;}
.y65{bottom:106.875000px;}
.y52{bottom:118.837500px;}
.y13{bottom:119.550000px;}
.yd1{bottom:120.075000px;}
.ye7{bottom:130.725000px;}
.y9e{bottom:131.775000px;}
.y44{bottom:135.000000px;}
.yc4{bottom:137.550000px;}
.y50{bottom:151.500000px;}
.y25{bottom:155.220000px;}
.yab{bottom:156.525000px;}
.y51{bottom:159.420000px;}
.y12{bottom:160.095000px;}
.ydc{bottom:167.355000px;}
.y19{bottom:174.750000px;}
.yff{bottom:178.425000px;}
.yfa{bottom:180.375000px;}
.ye6{bottom:183.645000px;}
.yca{bottom:187.125000px;}
.yf0{bottom:190.095000px;}
.y4f{bottom:194.100000px;}
.yf7{bottom:196.230000px;}
.y11{bottom:199.530000px;}
.y46{bottom:200.145000px;}
.y68{bottom:200.445000px;}
.y4c{bottom:200.925000px;}
.y5b{bottom:201.225000px;}
.yaa{bottom:206.100000px;}
.yd3{bottom:208.005000px;}
.yc9{bottom:208.500000px;}
.yfe{bottom:211.095000px;}
.yc3{bottom:213.030000px;}
.y18{bottom:214.155000px;}
.y24{bottom:220.545000px;}
.ye5{bottom:220.845000px;}
.ydb{bottom:221.445000px;}
.yf6{bottom:222.150000px;}
.yef{bottom:222.750000px;}
.ya1{bottom:223.455000px;}
.yb4{bottom:224.775000px;}
.y4e{bottom:226.755000px;}
.y45{bottom:232.800000px;}
.y66{bottom:233.100000px;}
.y4a{bottom:233.625000px;}
.y59{bottom:233.925000px;}
.y8f{bottom:235.845000px;}
.y6a{bottom:236.250000px;}
.y30{bottom:237.195000px;}
.y10{bottom:238.950000px;}
.yfd{bottom:243.750000px;}
.yf9{bottom:245.700000px;}
.yf5{bottom:246.945000px;}
.ya9{bottom:254.520000px;}
.y17{bottom:254.745000px;}
.yee{bottom:255.450000px;}
.y4d{bottom:259.425000px;}
.yd0{bottom:263.880000px;}
.y41{bottom:264.375000px;}
.yc2{bottom:264.870000px;}
.y8e{bottom:267.375000px;}
.y23{bottom:268.980000px;}
.yf4{bottom:271.725000px;}
.ye4{bottom:272.670000px;}
.yfc{bottom:276.450000px;}
.yf8{bottom:278.370000px;}
.yb3{bottom:278.850000px;}
.yf{bottom:279.525000px;}
.y75{bottom:285.675000px;}
.yc8{bottom:286.245000px;}
.yed{bottom:288.120000px;}
.yda{bottom:290.130000px;}
.y2f{bottom:291.270000px;}
.y4b{bottom:292.125000px;}
.y16{bottom:294.150000px;}
.yf3{bottom:297.630000px;}
.y8d{bottom:300.030000px;}
.yc1{bottom:302.025000px;}
.ya8{bottom:302.955000px;}
.y6b{bottom:307.320000px;}
.ye3{bottom:310.950000px;}
.y6d{bottom:314.070000px;}
.y69{bottom:315.225000px;}
.y58{bottom:318.375000px;}
.ye{bottom:318.945000px;}
.y74{bottom:321.750000px;}
.y15{bottom:326.820000px;}
.y22{bottom:332.070000px;}
.y8c{bottom:332.700000px;}
.yb2{bottom:332.925000px;}
.y48{bottom:335.145000px;}
.y67{bottom:339.975000px;}
.yc0{bottom:340.350000px;}
.yfb{bottom:343.725000px;}
.yd9{bottom:344.220000px;}
.y2e{bottom:345.345000px;}
.ya7{bottom:351.405000px;}
.ya0{bottom:354.150000px;}
.y73{bottom:357.780000px;}
.yec{bottom:358.545000px;}
.yd{bottom:359.475000px;}
.ye2{bottom:362.775000px;}
.yc7{bottom:364.020000px;}
.y8b{bottom:365.400000px;}
.y14{bottom:367.395000px;}
.y3{bottom:367.650000px;}
.y47{bottom:367.800000px;}
.yeb{bottom:368.025000px;}
.y43{bottom:375.720000px;}
.yce{bottom:378.495000px;}
.y28{bottom:378.720000px;}
.y21{bottom:379.380000px;}
.yb1{bottom:387.000000px;}
.y72{bottom:391.575000px;}
.ybf{bottom:392.175000px;}
.y3d{bottom:394.275000px;}
.yc6{bottom:396.675000px;}
.y8a{bottom:398.070000px;}
.yc{bottom:398.925000px;}
.y2d{bottom:399.405000px;}
.ya{bottom:406.800000px;}
.ye1{bottom:407.850000px;}
.y40{bottom:411.075000px;}
.ycd{bottom:411.150000px;}
.yd8{bottom:414.075000px;}
.ya6{bottom:415.620000px;}
.yea{bottom:422.100000px;}
.yd2{bottom:424.155000px;}
.y3b{bottom:426.975000px;}
.y62{bottom:427.320000px;}
.ybe{bottom:430.455000px;}
.y97{bottom:437.700000px;}
.y103{bottom:438.495000px;}
.y9{bottom:439.470000px;}
.yb8{bottom:441.000000px;}
.yb0{bottom:441.075000px;}
.y3f{bottom:442.620000px;}
.y102{bottom:444.630000px;}
.y6c{bottom:444.750000px;}
.y5c{bottom:448.875000px;}
.ye0{bottom:452.880000px;}
.y71{bottom:453.330000px;}
.y2c{bottom:453.495000px;}
.y64{bottom:454.275000px;}
.y39{bottom:459.630000px;}
.y60{bottom:459.975000px;}
.ya5{bottom:464.070000px;}
.ybd{bottom:467.655000px;}
.yd7{bottom:468.150000px;}
.y34{bottom:469.125000px;}
.y96{bottom:469.245000px;}
.y7e{bottom:470.850000px;}
.y3e{bottom:475.275000px;}
.y2{bottom:475.800000px;}
.y9f{bottom:483.675000px;}
.y63{bottom:486.945000px;}
.y70{bottom:489.375000px;}
.ye9{bottom:491.970000px;}
.y89{bottom:492.195000px;}
.y38{bottom:492.300000px;}
.y5e{bottom:492.675000px;}
.y56{bottom:493.875000px;}
.yb7{bottom:495.075000px;}
.yaf{bottom:495.120000px;}
.ycc{bottom:495.405000px;}
.y101{bottom:496.455000px;}
.ydf{bottom:497.955000px;}
.y79{bottom:498.030000px;}
.y82{bottom:501.600000px;}
.y95{bottom:501.900000px;}
.y8{bottom:503.700000px;}
.ybc{bottom:504.825000px;}
.y7d{bottom:506.880000px;}
.y2b{bottom:507.570000px;}
.y3c{bottom:507.975000px;}
.ya4{bottom:512.505000px;}
.y32{bottom:513.000000px;}
.yf2{bottom:513.330000px;}
.y61{bottom:519.600000px;}
.y88{bottom:524.850000px;}
.y6f{bottom:525.450000px;}
.yf1{bottom:534.750000px;}
.y78{bottom:536.325000px;}
.yd6{bottom:536.880000px;}
.y3a{bottom:540.630000px;}
.ybb{bottom:541.995000px;}
.y81{bottom:542.130000px;}
.y9c{bottom:546.225000px;}
.yb6{bottom:549.150000px;}
.yae{bottom:549.195000px;}
.yde{bottom:550.905000px;}
.y5f{bottom:552.300000px;}
.yd4{bottom:554.025000px;}
.y1b{bottom:555.720000px;}
.y7c{bottom:556.470000px;}
.y5a{bottom:560.175000px;}
.ye8{bottom:560.655000px;}
.ya3{bottom:560.970000px;}
.y2a{bottom:561.630000px;}
.y100{bottom:562.905000px;}
.y94{bottom:567.255000px;}
.y9b{bottom:572.130000px;}
.y36{bottom:573.300000px;}
.y77{bottom:573.525000px;}
.yc5{bottom:576.945000px;}
.yba{bottom:580.320000px;}
.y6e{bottom:581.880000px;}
.y80{bottom:582.720000px;}
.y1d{bottom:583.845000px;}
.y1{bottom:583.950000px;}
.y6{bottom:584.625000px;}
.y1a{bottom:585.000000px;}
.yb{bottom:585.030000px;}
.ydd{bottom:588.075000px;}
.y87{bottom:590.220000px;}
.yd5{bottom:590.955000px;}
.y7b{bottom:591.375000px;}
.ycb{bottom:593.820000px;}
.y93{bottom:599.925000px;}
.yb5{bottom:603.225000px;}
.yad{bottom:603.255000px;}
.ya2{bottom:610.500000px;}
.y76{bottom:611.820000px;}
.yb9{bottom:617.475000px;}
.y9d{bottom:619.620000px;}
.y86{bottom:622.875000px;}
.y7f{bottom:623.250000px;}
.y1c{bottom:624.225000px;}
.y7a{bottom:627.405000px;}
.y85{bottom:629.595000px;}
.y7{bottom:690.450000px;}
.y4{bottom:716.175000px;}
.y31{bottom:727.755000px;}
.y26{bottom:728.400000px;}
.y29{bottom:742.995000px;}
.y20{bottom:748.845000px;}
.y27{bottom:765.870000px;}
.hc{height:45.848950px;}
.h28{height:53.231763px;}
.h2d{height:54.253418px;}
.h29{height:56.285156px;}
.hd{height:56.402417px;}
.h23{height:64.404785px;}
.h2a{height:66.955884px;}
.h26{height:70.356445px;}
.h25{height:70.473706px;}
.h7{height:71.613281px;}
.h6{height:71.762476px;}
.h2c{height:73.874268px;}
.h2b{height:73.991528px;}
.h13{height:81.323730px;}
.ha{height:82.413281px;}
.h3{height:84.544995px;}
.h15{height:87.785156px;}
.h19{height:87.902417px;}
.h1e{height:88.022417px;}
.he{height:88.062817px;}
.h8{height:89.516602px;}
.hb{height:89.665796px;}
.h22{height:91.475098px;}
.h21{height:91.587891px;}
.h9{height:94.141626px;}
.h2{height:95.098462px;}
.h24{height:95.215723px;}
.h11{height:108.394043px;}
.hf{height:108.506836px;}
.h27{height:111.777832px;}
.h20{height:140.560327px;}
.h5{height:188.973926px;}
.h12{height:227.250000px;}
.h14{height:228.375000px;}
.h4{height:263.715161px;}
.h1{height:351.473950px;}
.h1b{height:373.500000px;}
.h17{height:454.500000px;}
.h18{height:455.625000px;}
.h10{height:470.094580px;}
.h1f{height:470.240845px;}
.h1c{height:470.250000px;}
.h1a{height:707.625000px;}
.h16{height:729.000000px;}
.h1d{height:750.375000px;}
.h0{height:810.000000px;}
.w4{width:430.875000px;}
.w5{width:432.000000px;}
.w2{width:434.250000px;}
.w3{width:435.375000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:10.875000px;}
.x17{left:11.880000px;}
.x2d{left:30.974979px;}
.x3c{left:36.824979px;}
.x3d{left:42.749979px;}
.x10{left:49.912479px;}
.x12{left:53.174979px;}
.x14{left:56.250000px;}
.x2e{left:58.012479px;}
.x29{left:63.037479px;}
.xe{left:65.474979px;}
.x27{left:67.462479px;}
.x28{left:68.512479px;}
.x4c{left:71.212479px;}
.x3{left:72.374979px;}
.xc{left:74.774979px;}
.x4{left:80.024979px;}
.x13{left:84.262479px;}
.xf{left:92.512479px;}
.x4f{left:94.012479px;}
.x4a{left:95.549979px;}
.x34{left:97.987479px;}
.x26{left:100.762479px;}
.x51{left:105.674979px;}
.x4d{left:111.749979px;}
.x53{left:116.287479px;}
.x52{left:119.924979px;}
.x4e{left:125.249979px;}
.x37{left:126.487479px;}
.x4b{left:136.087479px;}
.x3e{left:137.624979px;}
.x1{left:139.574979px;}
.x67{left:143.887479px;}
.x50{left:145.424979px;}
.x5{left:163.004979px;}
.x38{left:167.024979px;}
.x3a{left:172.799979px;}
.x1c{left:184.244979px;}
.x1e{left:190.229979px;}
.x25{left:196.844979px;}
.x1d{left:211.244979px;}
.x20{left:249.075000px;}
.x3f{left:265.544979px;}
.x42{left:267.119979px;}
.x43{left:279.074979px;}
.x40{left:345.374979px;}
.x41{left:384.299979px;}
.x57{left:412.244979px;}
.x54{left:425.624979px;}
.x23{left:432.524979px;}
.x56{left:442.469979px;}
.x58{left:462.674979px;}
.x55{left:469.724979px;}
.x59{left:475.349979px;}
.x16{left:489.375000px;}
.x21{left:504.000000px;}
.x9{left:507.224979px;}
.x6{left:515.024979px;}
.x3b{left:524.069979px;}
.x35{left:533.444979px;}
.x30{left:562.199979px;}
.x19{left:576.329979px;}
.x31{left:589.229979px;}
.xa{left:595.244979px;}
.x1a{left:628.379979px;}
.x45{left:715.694979px;}
.x44{left:719.354979px;}
.x46{left:722.279979px;}
.x1f{left:729.449979px;}
.x2c{left:735.599979px;}
.x2a{left:740.024979px;}
.x2b{left:741.074979px;}
.x5c{left:748.574979px;}
.x2{left:753.644979px;}
.x5b{left:769.574979px;}
.x5a{left:772.244979px;}
.x5d{left:784.619979px;}
.x5e{left:793.619979px;}
.x5f{left:804.899979px;}
.x18{left:923.625000px;}
.x22{left:934.875000px;}
.x1b{left:969.194979px;}
.x24{left:980.369979px;}
.x7{left:995.069979px;}
.x47{left:1020.299979px;}
.x32{left:1022.474979px;}
.x33{left:1049.474979px;}
.x39{left:1060.949979px;}
.x8{left:1080.224979px;}
.x61{left:1086.704979px;}
.x60{left:1101.824979px;}
.x62{left:1104.749979px;}
.x65{left:1124.849979px;}
.x63{left:1127.249979px;}
.x64{left:1139.249979px;}
.x66{left:1153.529979px;}
.x49{left:1215.104979px;}
.x48{left:1252.469979px;}
.xb{left:1280.879979px;}
.xd{left:1352.444979px;}
.x2f{left:1374.044979px;}
.x36{left:1375.349979px;}
.x11{left:1383.974979px;}
@media print{
.v4{vertical-align:-28.000000pt;}
.v5{vertical-align:-3.893333pt;}
.v1{vertical-align:-2.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.000000pt;}
.v3{vertical-align:28.000000pt;}
.ls15{letter-spacing:-7.680000pt;}
.ls19{letter-spacing:-7.626667pt;}
.ls26{letter-spacing:-3.525333pt;}
.ls12{letter-spacing:-2.757333pt;}
.lsd{letter-spacing:-2.624000pt;}
.ls16{letter-spacing:-2.058667pt;}
.ls1e{letter-spacing:-1.450667pt;}
.ls2a{letter-spacing:-1.408000pt;}
.ls10{letter-spacing:-0.515733pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.122133pt;}
.ls1f{letter-spacing:-0.066667pt;}
.ls31{letter-spacing:-0.062933pt;}
.ls1a{letter-spacing:-0.012373pt;}
.ls32{letter-spacing:-0.005600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008267pt;}
.ls1{letter-spacing:0.011200pt;}
.ls29{letter-spacing:0.021333pt;}
.ls20{letter-spacing:0.043200pt;}
.ls18{letter-spacing:0.048267pt;}
.ls9{letter-spacing:0.061600pt;}
.ls27{letter-spacing:0.064533pt;}
.ls7{letter-spacing:0.114933pt;}
.ls2{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.168267pt;}
.ls3{letter-spacing:0.172533pt;}
.ls5{letter-spacing:0.202667pt;}
.lsa{letter-spacing:0.221600pt;}
.lsb{letter-spacing:0.309333pt;}
.ls25{letter-spacing:0.341867pt;}
.ls3b{letter-spacing:0.428800pt;}
.ls38{letter-spacing:0.528533pt;}
.ls37{letter-spacing:0.581867pt;}
.ls39{letter-spacing:0.613333pt;}
.ls2e{letter-spacing:0.650267pt;}
.ls35{letter-spacing:0.762667pt;}
.ls21{letter-spacing:0.837333pt;}
.ls2b{letter-spacing:1.264000pt;}
.ls1c{letter-spacing:1.274667pt;}
.lsf{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.669333pt;}
.ls1d{letter-spacing:2.170667pt;}
.ls1b{letter-spacing:2.208000pt;}
.lsc{letter-spacing:49.553333pt;}
.ls6{letter-spacing:49.713333pt;}
.ls14{letter-spacing:58.286667pt;}
.ls13{letter-spacing:61.086667pt;}
.ls2c{letter-spacing:62.486667pt;}
.ls2d{letter-spacing:66.553333pt;}
.ls24{letter-spacing:68.000000pt;}
.ls23{letter-spacing:68.060000pt;}
.ls22{letter-spacing:68.086667pt;}
.ls36{letter-spacing:93.626667pt;}
.ls34{letter-spacing:93.706667pt;}
.ls3a{letter-spacing:99.788000pt;}
.ls2f{letter-spacing:106.240000pt;}
.ls30{letter-spacing:106.286667pt;}
.ls3c{letter-spacing:109.086667pt;}
.ls28{letter-spacing:110.486667pt;}
.ls33{letter-spacing:114.686667pt;}
.ws15{word-spacing:-100.276800pt;}
.wsb{word-spacing:-56.141867pt;}
.ws4{word-spacing:-30.061067pt;}
.ws10{word-spacing:-27.989067pt;}
.ws2{word-spacing:-27.837067pt;}
.ws7{word-spacing:-26.725067pt;}
.ws8{word-spacing:-26.712693pt;}
.wsf{word-spacing:-25.317067pt;}
.wsc{word-spacing:-25.274400pt;}
.wse{word-spacing:-22.277067pt;}
.ws9{word-spacing:-20.000000pt;}
.wsa{word-spacing:-19.999733pt;}
.ws13{word-spacing:-17.829067pt;}
.ws11{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.762400pt;}
.ws14{word-spacing:-2.941867pt;}
.ws6{word-spacing:-2.472267pt;}
.ws3{word-spacing:-2.447733pt;}
.ws16{word-spacing:-1.221067pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:4.065067pt;}
.ws12{word-spacing:1189.910533pt;}
.ws1{word-spacing:1420.876533pt;}
._13{margin-left:-16.546400pt;}
._12{margin-left:-13.083200pt;}
._14{margin-left:-11.927733pt;}
._16{margin-left:-10.679467pt;}
._f{margin-left:-9.106933pt;}
._10{margin-left:-7.621467pt;}
._11{margin-left:-6.339733pt;}
._1{margin-left:-4.806000pt;}
._2{margin-left:-3.844800pt;}
._0{margin-left:-2.883600pt;}
._3{margin-left:-1.602000pt;}
._5{width:0.961200pt;}
._7{width:2.563333pt;}
._9{width:3.844933pt;}
._c{width:4.987467pt;}
._d{width:6.703067pt;}
._1b{width:7.640667pt;}
._19{width:10.444133pt;}
._8{width:13.272133pt;}
._18{width:20.156667pt;}
._17{width:23.357867pt;}
._6{width:26.102133pt;}
._1e{width:27.021333pt;}
._1f{width:27.942267pt;}
._e{width:28.848533pt;}
._1d{width:29.870000pt;}
._15{width:31.395333pt;}
._1a{width:32.804933pt;}
._4{width:71.229467pt;}
._1c{width:1257.223200pt;}
._a{width:1319.607867pt;}
._b{width:1461.261200pt;}
.fsa{font-size:52.133333pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fs11{font-size:76.133333pt;}
.fs7{font-size:80.000000pt;}
.fs9{font-size:80.133333pt;}
.fs13{font-size:84.000000pt;}
.fs8{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fsb{font-size:100.133333pt;}
.fs1{font-size:108.133333pt;}
.fs10{font-size:108.266667pt;}
.fse{font-size:128.133333pt;}
.fsc{font-size:128.266667pt;}
.fs12{font-size:132.133333pt;}
.fs4{font-size:172.266667pt;}
.fs3{font-size:240.400000pt;}
.fs0{font-size:320.400000pt;}
.fsd{font-size:428.533333pt;}
.fsf{font-size:428.666667pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:14.133333pt;}
.y1f{bottom:15.433333pt;}
.y1e{bottom:15.900000pt;}
.y84{bottom:21.600000pt;}
.y9a{bottom:26.000000pt;}
.y5{bottom:30.066667pt;}
.ycf{bottom:32.633333pt;}
.y91{bottom:33.166667pt;}
.y53{bottom:43.000000pt;}
.y99{bottom:45.033333pt;}
.y83{bottom:50.633333pt;}
.y49{bottom:52.000000pt;}
.y90{bottom:52.200000pt;}
.y5d{bottom:53.000000pt;}
.yac{bottom:54.333333pt;}
.y98{bottom:64.066667pt;}
.y37{bottom:72.000000pt;}
.y55{bottom:76.600000pt;}
.y54{bottom:91.666667pt;}
.y42{bottom:91.933333pt;}
.y33{bottom:92.026667pt;}
.y57{bottom:92.200000pt;}
.y35{bottom:92.600000pt;}
.y65{bottom:95.000000pt;}
.y52{bottom:105.633333pt;}
.y13{bottom:106.266667pt;}
.yd1{bottom:106.733333pt;}
.ye7{bottom:116.200000pt;}
.y9e{bottom:117.133333pt;}
.y44{bottom:120.000000pt;}
.yc4{bottom:122.266667pt;}
.y50{bottom:134.666667pt;}
.y25{bottom:137.973333pt;}
.yab{bottom:139.133333pt;}
.y51{bottom:141.706667pt;}
.y12{bottom:142.306667pt;}
.ydc{bottom:148.760000pt;}
.y19{bottom:155.333333pt;}
.yff{bottom:158.600000pt;}
.yfa{bottom:160.333333pt;}
.ye6{bottom:163.240000pt;}
.yca{bottom:166.333333pt;}
.yf0{bottom:168.973333pt;}
.y4f{bottom:172.533333pt;}
.yf7{bottom:174.426667pt;}
.y11{bottom:177.360000pt;}
.y46{bottom:177.906667pt;}
.y68{bottom:178.173333pt;}
.y4c{bottom:178.600000pt;}
.y5b{bottom:178.866667pt;}
.yaa{bottom:183.200000pt;}
.yd3{bottom:184.893333pt;}
.yc9{bottom:185.333333pt;}
.yfe{bottom:187.640000pt;}
.yc3{bottom:189.360000pt;}
.y18{bottom:190.360000pt;}
.y24{bottom:196.040000pt;}
.ye5{bottom:196.306667pt;}
.ydb{bottom:196.840000pt;}
.yf6{bottom:197.466667pt;}
.yef{bottom:198.000000pt;}
.ya1{bottom:198.626667pt;}
.yb4{bottom:199.800000pt;}
.y4e{bottom:201.560000pt;}
.y45{bottom:206.933333pt;}
.y66{bottom:207.200000pt;}
.y4a{bottom:207.666667pt;}
.y59{bottom:207.933333pt;}
.y8f{bottom:209.640000pt;}
.y6a{bottom:210.000000pt;}
.y30{bottom:210.840000pt;}
.y10{bottom:212.400000pt;}
.yfd{bottom:216.666667pt;}
.yf9{bottom:218.400000pt;}
.yf5{bottom:219.506667pt;}
.ya9{bottom:226.240000pt;}
.y17{bottom:226.440000pt;}
.yee{bottom:227.066667pt;}
.y4d{bottom:230.600000pt;}
.yd0{bottom:234.560000pt;}
.y41{bottom:235.000000pt;}
.yc2{bottom:235.440000pt;}
.y8e{bottom:237.666667pt;}
.y23{bottom:239.093333pt;}
.yf4{bottom:241.533333pt;}
.ye4{bottom:242.373333pt;}
.yfc{bottom:245.733333pt;}
.yf8{bottom:247.440000pt;}
.yb3{bottom:247.866667pt;}
.yf{bottom:248.466667pt;}
.y75{bottom:253.933333pt;}
.yc8{bottom:254.440000pt;}
.yed{bottom:256.106667pt;}
.yda{bottom:257.893333pt;}
.y2f{bottom:258.906667pt;}
.y4b{bottom:259.666667pt;}
.y16{bottom:261.466667pt;}
.yf3{bottom:264.560000pt;}
.y8d{bottom:266.693333pt;}
.yc1{bottom:268.466667pt;}
.ya8{bottom:269.293333pt;}
.y6b{bottom:273.173333pt;}
.ye3{bottom:276.400000pt;}
.y6d{bottom:279.173333pt;}
.y69{bottom:280.200000pt;}
.y58{bottom:283.000000pt;}
.ye{bottom:283.506667pt;}
.y74{bottom:286.000000pt;}
.y15{bottom:290.506667pt;}
.y22{bottom:295.173333pt;}
.y8c{bottom:295.733333pt;}
.yb2{bottom:295.933333pt;}
.y48{bottom:297.906667pt;}
.y67{bottom:302.200000pt;}
.yc0{bottom:302.533333pt;}
.yfb{bottom:305.533333pt;}
.yd9{bottom:305.973333pt;}
.y2e{bottom:306.973333pt;}
.ya7{bottom:312.360000pt;}
.ya0{bottom:314.800000pt;}
.y73{bottom:318.026667pt;}
.yec{bottom:318.706667pt;}
.yd{bottom:319.533333pt;}
.ye2{bottom:322.466667pt;}
.yc7{bottom:323.573333pt;}
.y8b{bottom:324.800000pt;}
.y14{bottom:326.573333pt;}
.y3{bottom:326.800000pt;}
.y47{bottom:326.933333pt;}
.yeb{bottom:327.133333pt;}
.y43{bottom:333.973333pt;}
.yce{bottom:336.440000pt;}
.y28{bottom:336.640000pt;}
.y21{bottom:337.226667pt;}
.yb1{bottom:344.000000pt;}
.y72{bottom:348.066667pt;}
.ybf{bottom:348.600000pt;}
.y3d{bottom:350.466667pt;}
.yc6{bottom:352.600000pt;}
.y8a{bottom:353.840000pt;}
.yc{bottom:354.600000pt;}
.y2d{bottom:355.026667pt;}
.ya{bottom:361.600000pt;}
.ye1{bottom:362.533333pt;}
.y40{bottom:365.400000pt;}
.ycd{bottom:365.466667pt;}
.yd8{bottom:368.066667pt;}
.ya6{bottom:369.440000pt;}
.yea{bottom:375.200000pt;}
.yd2{bottom:377.026667pt;}
.y3b{bottom:379.533333pt;}
.y62{bottom:379.840000pt;}
.ybe{bottom:382.626667pt;}
.y97{bottom:389.066667pt;}
.y103{bottom:389.773333pt;}
.y9{bottom:390.640000pt;}
.yb8{bottom:392.000000pt;}
.yb0{bottom:392.066667pt;}
.y3f{bottom:393.440000pt;}
.y102{bottom:395.226667pt;}
.y6c{bottom:395.333333pt;}
.y5c{bottom:399.000000pt;}
.ye0{bottom:402.560000pt;}
.y71{bottom:402.960000pt;}
.y2c{bottom:403.106667pt;}
.y64{bottom:403.800000pt;}
.y39{bottom:408.560000pt;}
.y60{bottom:408.866667pt;}
.ya5{bottom:412.506667pt;}
.ybd{bottom:415.693333pt;}
.yd7{bottom:416.133333pt;}
.y34{bottom:417.000000pt;}
.y96{bottom:417.106667pt;}
.y7e{bottom:418.533333pt;}
.y3e{bottom:422.466667pt;}
.y2{bottom:422.933333pt;}
.y9f{bottom:429.933333pt;}
.y63{bottom:432.840000pt;}
.y70{bottom:435.000000pt;}
.ye9{bottom:437.306667pt;}
.y89{bottom:437.506667pt;}
.y38{bottom:437.600000pt;}
.y5e{bottom:437.933333pt;}
.y56{bottom:439.000000pt;}
.yb7{bottom:440.066667pt;}
.yaf{bottom:440.106667pt;}
.ycc{bottom:440.360000pt;}
.y101{bottom:441.293333pt;}
.ydf{bottom:442.626667pt;}
.y79{bottom:442.693333pt;}
.y82{bottom:445.866667pt;}
.y95{bottom:446.133333pt;}
.y8{bottom:447.733333pt;}
.ybc{bottom:448.733333pt;}
.y7d{bottom:450.560000pt;}
.y2b{bottom:451.173333pt;}
.y3c{bottom:451.533333pt;}
.ya4{bottom:455.560000pt;}
.y32{bottom:456.000000pt;}
.yf2{bottom:456.293333pt;}
.y61{bottom:461.866667pt;}
.y88{bottom:466.533333pt;}
.y6f{bottom:467.066667pt;}
.yf1{bottom:475.333333pt;}
.y78{bottom:476.733333pt;}
.yd6{bottom:477.226667pt;}
.y3a{bottom:480.560000pt;}
.ybb{bottom:481.773333pt;}
.y81{bottom:481.893333pt;}
.y9c{bottom:485.533333pt;}
.yb6{bottom:488.133333pt;}
.yae{bottom:488.173333pt;}
.yde{bottom:489.693333pt;}
.y5f{bottom:490.933333pt;}
.yd4{bottom:492.466667pt;}
.y1b{bottom:493.973333pt;}
.y7c{bottom:494.640000pt;}
.y5a{bottom:497.933333pt;}
.ye8{bottom:498.360000pt;}
.ya3{bottom:498.640000pt;}
.y2a{bottom:499.226667pt;}
.y100{bottom:500.360000pt;}
.y94{bottom:504.226667pt;}
.y9b{bottom:508.560000pt;}
.y36{bottom:509.600000pt;}
.y77{bottom:509.800000pt;}
.yc5{bottom:512.840000pt;}
.yba{bottom:515.840000pt;}
.y6e{bottom:517.226667pt;}
.y80{bottom:517.973333pt;}
.y1d{bottom:518.973333pt;}
.y1{bottom:519.066667pt;}
.y6{bottom:519.666667pt;}
.y1a{bottom:520.000000pt;}
.yb{bottom:520.026667pt;}
.ydd{bottom:522.733333pt;}
.y87{bottom:524.640000pt;}
.yd5{bottom:525.293333pt;}
.y7b{bottom:525.666667pt;}
.ycb{bottom:527.840000pt;}
.y93{bottom:533.266667pt;}
.yb5{bottom:536.200000pt;}
.yad{bottom:536.226667pt;}
.ya2{bottom:542.666667pt;}
.y76{bottom:543.840000pt;}
.yb9{bottom:548.866667pt;}
.y9d{bottom:550.773333pt;}
.y86{bottom:553.666667pt;}
.y7f{bottom:554.000000pt;}
.y1c{bottom:554.866667pt;}
.y7a{bottom:557.693333pt;}
.y85{bottom:559.640000pt;}
.y7{bottom:613.733333pt;}
.y4{bottom:636.600000pt;}
.y31{bottom:646.893333pt;}
.y26{bottom:647.466667pt;}
.y29{bottom:660.440000pt;}
.y20{bottom:665.640000pt;}
.y27{bottom:680.773333pt;}
.hc{height:40.754622pt;}
.h28{height:47.317122pt;}
.h2d{height:48.225260pt;}
.h29{height:50.031250pt;}
.hd{height:50.135482pt;}
.h23{height:57.248698pt;}
.h2a{height:59.516341pt;}
.h26{height:62.539062pt;}
.h25{height:62.643294pt;}
.h7{height:63.656250pt;}
.h6{height:63.788867pt;}
.h2c{height:65.666016pt;}
.h2b{height:65.770247pt;}
.h13{height:72.287760pt;}
.ha{height:73.256250pt;}
.h3{height:75.151107pt;}
.h15{height:78.031250pt;}
.h19{height:78.135482pt;}
.h1e{height:78.242148pt;}
.he{height:78.278060pt;}
.h8{height:79.570312pt;}
.hb{height:79.702930pt;}
.h22{height:81.311198pt;}
.h21{height:81.411458pt;}
.h9{height:83.681445pt;}
.h2{height:84.531966pt;}
.h24{height:84.636198pt;}
.h11{height:96.350260pt;}
.hf{height:96.450521pt;}
.h27{height:99.358073pt;}
.h20{height:124.942513pt;}
.h5{height:167.976823pt;}
.h12{height:202.000000pt;}
.h14{height:203.000000pt;}
.h4{height:234.413477pt;}
.h1{height:312.421289pt;}
.h1b{height:332.000000pt;}
.h17{height:404.000000pt;}
.h18{height:405.000000pt;}
.h10{height:417.861849pt;}
.h1f{height:417.991862pt;}
.h1c{height:418.000000pt;}
.h1a{height:629.000000pt;}
.h16{height:648.000000pt;}
.h1d{height:667.000000pt;}
.h0{height:720.000000pt;}
.w4{width:383.000000pt;}
.w5{width:384.000000pt;}
.w2{width:386.000000pt;}
.w3{width:387.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.666667pt;}
.x17{left:10.560000pt;}
.x2d{left:27.533314pt;}
.x3c{left:32.733314pt;}
.x3d{left:37.999981pt;}
.x10{left:44.366648pt;}
.x12{left:47.266648pt;}
.x14{left:50.000000pt;}
.x2e{left:51.566648pt;}
.x29{left:56.033314pt;}
.xe{left:58.199981pt;}
.x27{left:59.966648pt;}
.x28{left:60.899981pt;}
.x4c{left:63.299981pt;}
.x3{left:64.333314pt;}
.xc{left:66.466648pt;}
.x4{left:71.133314pt;}
.x13{left:74.899981pt;}
.xf{left:82.233314pt;}
.x4f{left:83.566648pt;}
.x4a{left:84.933314pt;}
.x34{left:87.099981pt;}
.x26{left:89.566648pt;}
.x51{left:93.933314pt;}
.x4d{left:99.333314pt;}
.x53{left:103.366648pt;}
.x52{left:106.599981pt;}
.x4e{left:111.333314pt;}
.x37{left:112.433314pt;}
.x4b{left:120.966648pt;}
.x3e{left:122.333314pt;}
.x1{left:124.066648pt;}
.x67{left:127.899981pt;}
.x50{left:129.266648pt;}
.x5{left:144.893314pt;}
.x38{left:148.466648pt;}
.x3a{left:153.599981pt;}
.x1c{left:163.773314pt;}
.x1e{left:169.093314pt;}
.x25{left:174.973314pt;}
.x1d{left:187.773314pt;}
.x20{left:221.400000pt;}
.x3f{left:236.039981pt;}
.x42{left:237.439981pt;}
.x43{left:248.066648pt;}
.x40{left:306.999981pt;}
.x41{left:341.599981pt;}
.x57{left:366.439981pt;}
.x54{left:378.333314pt;}
.x23{left:384.466648pt;}
.x56{left:393.306648pt;}
.x58{left:411.266648pt;}
.x55{left:417.533314pt;}
.x59{left:422.533314pt;}
.x16{left:435.000000pt;}
.x21{left:448.000000pt;}
.x9{left:450.866648pt;}
.x6{left:457.799981pt;}
.x3b{left:465.839981pt;}
.x35{left:474.173314pt;}
.x30{left:499.733314pt;}
.x19{left:512.293314pt;}
.x31{left:523.759981pt;}
.xa{left:529.106648pt;}
.x1a{left:558.559981pt;}
.x45{left:636.173314pt;}
.x44{left:639.426648pt;}
.x46{left:642.026648pt;}
.x1f{left:648.399981pt;}
.x2c{left:653.866648pt;}
.x2a{left:657.799981pt;}
.x2b{left:658.733314pt;}
.x5c{left:665.399981pt;}
.x2{left:669.906648pt;}
.x5b{left:684.066648pt;}
.x5a{left:686.439981pt;}
.x5d{left:697.439981pt;}
.x5e{left:705.439981pt;}
.x5f{left:715.466648pt;}
.x18{left:821.000000pt;}
.x22{left:831.000000pt;}
.x1b{left:861.506648pt;}
.x24{left:871.439981pt;}
.x7{left:884.506648pt;}
.x47{left:906.933314pt;}
.x32{left:908.866648pt;}
.x33{left:932.866648pt;}
.x39{left:943.066648pt;}
.x8{left:960.199981pt;}
.x61{left:965.959981pt;}
.x60{left:979.399981pt;}
.x62{left:981.999981pt;}
.x65{left:999.866648pt;}
.x63{left:1001.999981pt;}
.x64{left:1012.666648pt;}
.x66{left:1025.359981pt;}
.x49{left:1080.093314pt;}
.x48{left:1113.306648pt;}
.xb{left:1138.559981pt;}
.xd{left:1202.173314pt;}
.x2f{left:1221.373314pt;}
.x36{left:1222.533314pt;}
.x11{left:1230.199981pt;}
}




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