
    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_4a00fac04801c8091ee29a52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_748a575abd3480658dde5166.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_4c44a0e813f19264391cd5f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_c977fd27adb6ac62eac1d608.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.961914;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_214336ec3b7704836cecea50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_d59ad44ad66ff1a0972e1c22.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.754883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-126.240000px;}
.v4{vertical-align:-25.200000px;}
.v1{vertical-align:-9.660000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:43.380000px;}
.v6{vertical-align:88.560000px;}
.v7{vertical-align:107.280000px;}
.ls16{letter-spacing:-0.418800px;}
.ls5{letter-spacing:-0.384000px;}
.ls28{letter-spacing:-0.378600px;}
.ls1d{letter-spacing:-0.367800px;}
.ls1b{letter-spacing:-0.350400px;}
.ls2c{letter-spacing:-0.346800px;}
.ls1f{letter-spacing:-0.306600px;}
.ls8{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.280200px;}
.ls21{letter-spacing:-0.223800px;}
.ls31{letter-spacing:-0.208200px;}
.ls30{letter-spacing:-0.189600px;}
.lsa{letter-spacing:-0.187800px;}
.ls2{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.117600px;}
.ls1{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.058740px;}
.ls1c{letter-spacing:-0.043920px;}
.lsb{letter-spacing:-0.037440px;}
.ls29{letter-spacing:-0.026640px;}
.ls1a{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.018720px;}
.ls26{letter-spacing:0.026460px;}
.ls7{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.125400px;}
.ls24{letter-spacing:0.151800px;}
.lsc{letter-spacing:0.175800px;}
.ls6{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.247800px;}
.lsd{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.341400px;}
.ls23{letter-spacing:0.396000px;}
.ls2a{letter-spacing:0.424200px;}
.ls18{letter-spacing:22.922496px;}
.ls17{letter-spacing:23.002560px;}
.ls14{letter-spacing:23.495040px;}
.ls2e{letter-spacing:29.952000px;}
.ls2d{letter-spacing:29.991936px;}
.ls25{letter-spacing:33.226560px;}
.ls12{letter-spacing:39.600000px;}
.ls3{letter-spacing:40.095936px;}
.ls13{letter-spacing:40.997376px;}
.ls22{letter-spacing:57.549600px;}
.ls1e{letter-spacing:57.600000px;}
.lsf{letter-spacing:124.125600px;}
.ls11{letter-spacing:124.149600px;}
.lse{letter-spacing:124.176000px;}
.ls10{letter-spacing:124.200000px;}
.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;}
}
.ws22{word-spacing:-73.477440px;}
.ws3{word-spacing:-40.072032px;}
.ws18{word-spacing:-40.032000px;}
.ws50{word-spacing:-39.848232px;}
.ws3d{word-spacing:-33.466752px;}
.ws25{word-spacing:-33.426720px;}
.ws28{word-spacing:-30.064032px;}
.ws9{word-spacing:-30.024000px;}
.ws34{word-spacing:-26.621280px;}
.ws39{word-spacing:-23.544120px;}
.ws11{word-spacing:-23.458752px;}
.wsf{word-spacing:-23.418720px;}
.ws2c{word-spacing:-20.304000px;}
.ws2d{word-spacing:-20.016000px;}
.ws33{word-spacing:-15.012000px;}
.ws3a{word-spacing:-3.240000px;}
.wsd{word-spacing:-3.044160px;}
.ws23{word-spacing:-2.740896px;}
.ws38{word-spacing:-2.730000px;}
.ws36{word-spacing:-2.481120px;}
.ws3b{word-spacing:-2.352000px;}
.ws37{word-spacing:-2.322000px;}
.ws3e{word-spacing:-2.001600px;}
.ws21{word-spacing:-1.948032px;}
.ws4d{word-spacing:-1.376208px;}
.ws40{word-spacing:-1.304160px;}
.ws13{word-spacing:-1.224000px;}
.ws43{word-spacing:-1.191528px;}
.ws17{word-spacing:-1.152000px;}
.wse{word-spacing:-1.099080px;}
.ws4c{word-spacing:-1.072080px;}
.ws1c{word-spacing:-0.917376px;}
.ws2b{word-spacing:-0.880560px;}
.ws35{word-spacing:-0.700560px;}
.ws3c{word-spacing:-0.693360px;}
.ws4f{word-spacing:-0.672192px;}
.ws2a{word-spacing:-0.613440px;}
.ws32{word-spacing:-0.564000px;}
.ws31{word-spacing:-0.548640px;}
.wsa{word-spacing:-0.504000px;}
.ws14{word-spacing:-0.456000px;}
.ws20{word-spacing:-0.432000px;}
.ws2f{word-spacing:-0.324000px;}
.ws29{word-spacing:-0.319776px;}
.ws3f{word-spacing:-0.232512px;}
.ws41{word-spacing:-0.199920px;}
.ws15{word-spacing:-0.168000px;}
.wsb{word-spacing:-0.108000px;}
.ws2e{word-spacing:-0.024000px;}
.ws1{word-spacing:0.000000px;}
.ws42{word-spacing:0.095664px;}
.ws2{word-spacing:0.117792px;}
.ws30{word-spacing:0.123840px;}
.ws0{word-spacing:0.144000px;}
.ws7{word-spacing:0.168000px;}
.ws4{word-spacing:0.180000px;}
.ws5{word-spacing:0.204000px;}
.ws4e{word-spacing:0.223272px;}
.ws12{word-spacing:0.313296px;}
.wsc{word-spacing:0.332760px;}
.ws1b{word-spacing:0.384192px;}
.ws8{word-spacing:0.396000px;}
.ws46{word-spacing:0.471240px;}
.ws19{word-spacing:0.576000px;}
.ws27{word-spacing:0.597024px;}
.ws6{word-spacing:0.612000px;}
.ws48{word-spacing:0.623304px;}
.ws49{word-spacing:0.656496px;}
.ws4a{word-spacing:0.756000px;}
.ws1d{word-spacing:0.782448px;}
.ws44{word-spacing:0.848880px;}
.ws1e{word-spacing:0.864000px;}
.ws4b{word-spacing:1.008000px;}
.ws1f{word-spacing:1.272000px;}
.ws16{word-spacing:1.332000px;}
.ws1a{word-spacing:1.440000px;}
.ws26{word-spacing:1.512000px;}
.ws45{word-spacing:1.672896px;}
.ws51{word-spacing:2.051520px;}
.ws24{word-spacing:2.286000px;}
.ws47{word-spacing:2.821680px;}
.ws10{word-spacing:889.208160px;}
._b{margin-left:-4881.192000px;}
._5{margin-left:-2.796000px;}
._1{margin-left:-1.320000px;}
._2{width:1.884000px;}
._12{width:3.384000px;}
._d{width:20.011920px;}
._c{width:22.320000px;}
._e{width:24.339360px;}
._15{width:27.672000px;}
._17{width:29.704800px;}
._7{width:31.152000px;}
._11{width:32.239440px;}
._a{width:38.880000px;}
._3{width:41.158896px;}
._8{width:43.092000px;}
._f{width:72.429600px;}
._0{width:89.040000px;}
._9{width:865.200000px;}
._18{width:1144.669344px;}
._4{width:1286.388000px;}
._14{width:1569.180000px;}
._6{width:1609.500000px;}
._13{width:1783.865856px;}
._10{width:1814.105856px;}
._16{width:2062.528608px;}
.fc6{color:rgb(56,118,29);}
.fc4{color:rgb(78,167,46);}
.fc3{color:transparent;}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(117,117,117);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,85,204);}
.fs12{font-size:54.000000px;}
.fsb{font-size:56.160000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs13{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fsf{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fsd{font-size:126.000000px;}
.fse{font-size:126.144000px;}
.fs10{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fsc{font-size:264.240000px;}
.fs3{font-size:264.384000px;}
.fs0{font-size:324.000000px;}
.fs1{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y6{bottom:30.852000px;}
.y28{bottom:63.396000px;}
.y52{bottom:71.424000px;}
.y5b{bottom:80.856000px;}
.y34{bottom:89.856000px;}
.y9b{bottom:90.900000px;}
.y27{bottom:94.932000px;}
.y51{bottom:103.860000px;}
.y40{bottom:108.288000px;}
.yaa{bottom:111.384000px;}
.y5a{bottom:113.256000px;}
.y33{bottom:114.876000px;}
.y6b{bottom:115.740000px;}
.y9a{bottom:116.100000px;}
.yb2{bottom:118.332000px;}
.y4f{bottom:122.688000px;}
.y94{bottom:125.280000px;}
.y3f{bottom:130.788000px;}
.y1b{bottom:133.416000px;}
.ya9{bottom:137.304000px;}
.y99{bottom:141.300000px;}
.y26{bottom:144.216000px;}
.y6a{bottom:144.900000px;}
.y80{bottom:149.832000px;}
.y4e{bottom:155.130000px;}
.yb1{bottom:161.565000px;}
.ya8{bottom:163.950000px;}
.y59{bottom:164.955000px;}
.y1a{bottom:172.290000px;}
.y69{bottom:174.060000px;}
.y25{bottom:178.770000px;}
.y93{bottom:180.570000px;}
.y4b{bottom:183.240000px;}
.ya7{bottom:193.110000px;}
.y32{bottom:193.755000px;}
.y7f{bottom:194.115000px;}
.ya5{bottom:194.760000px;}
.y92{bottom:198.210000px;}
.y58{bottom:203.835000px;}
.y3e{bottom:203.865000px;}
.yb0{bottom:204.765000px;}
.y4a{bottom:215.640000px;}
.y47{bottom:216.285000px;}
.y31{bottom:218.775000px;}
.y7e{bottom:223.305000px;}
.ya4{bottom:223.920000px;}
.y19{bottom:226.155000px;}
.y91{bottom:227.370000px;}
.y3d{bottom:230.865000px;}
.ya6{bottom:231.270000px;}
.y79{bottom:231.585000px;}
.y65{bottom:233.535000px;}
.y49{bottom:248.040000px;}
.y46{bottom:248.685000px;}
.y57{bottom:250.455000px;}
.y7d{bottom:252.465000px;}
.ya3{bottom:262.080000px;}
.yb3{bottom:263.670000px;}
.y6e{bottom:270.930000px;}
.y78{bottom:274.425000px;}
.y64{bottom:274.935000px;}
.y24{bottom:277.995000px;}
.y18{bottom:280.155000px;}
.y48{bottom:280.470000px;}
.y56{bottom:282.855000px;}
.ya2{bottom:291.270000px;}
.y3{bottom:294.870000px;}
.y7c{bottom:296.565000px;}
.y30{bottom:297.615000px;}
.y3c{bottom:302.730000px;}
.y6d{bottom:303.330000px;}
.y23{bottom:312.555000px;}
.y4d{bottom:315.180000px;}
.y63{bottom:316.365000px;}
.y90{bottom:318.240000px;}
.y2f{bottom:320.295000px;}
.yaf{bottom:320.865000px;}
.y77{bottom:320.910000px;}
.y3b{bottom:322.890000px;}
.y7b{bottom:325.725000px;}
.y17{bottom:333.975000px;}
.y55{bottom:334.545000px;}
.y8{bottom:334.800000px;}
.y6c{bottom:335.730000px;}
.y8f{bottom:344.160000px;}
.y2e{bottom:345.345000px;}
.y3a{bottom:345.390000px;}
.y62{bottom:357.765000px;}
.y7{bottom:367.200000px;}
.y8e{bottom:370.080000px;}
.y76{bottom:371.310000px;}
.y16{bottom:372.855000px;}
.yae{bottom:374.730000px;}
.y43{bottom:375.735000px;}
.y2{bottom:389.490000px;}
.ya1{bottom:389.730000px;}
.y54{bottom:390.165000px;}
.y45{bottom:391.710000px;}
.y8d{bottom:393.480000px;}
.y61{bottom:399.165000px;}
.y8c{bottom:408.060000px;}
.y22{bottom:411.585000px;}
.y42{bottom:411.735000px;}
.y39{bottom:417.240000px;}
.y98{bottom:417.750000px;}
.ya0{bottom:418.890000px;}
.y75{bottom:421.710000px;}
.y2d{bottom:424.185000px;}
.y8b{bottom:424.440000px;}
.y85{bottom:427.830000px;}
.y44{bottom:429.915000px;}
.y71{bottom:435.390000px;}
.y15{bottom:437.505000px;}
.y38{bottom:439.740000px;}
.y53{bottom:441.825000px;}
.y21{bottom:446.145000px;}
.y8a{bottom:447.150000px;}
.y9f{bottom:448.050000px;}
.y2c{bottom:449.205000px;}
.y84{bottom:456.990000px;}
.yad{bottom:465.405000px;}
.y70{bottom:467.790000px;}
.y97{bottom:468.180000px;}
.y74{bottom:472.140000px;}
.y1{bottom:476.970000px;}
.y9e{bottom:477.255000px;}
.ya{bottom:482.475000px;}
.yc{bottom:482.910000px;}
.y13{bottom:484.455000px;}
.y11{bottom:485.850000px;}
.y83{bottom:486.150000px;}
.y4c{bottom:491.475000px;}
.y68{bottom:491.580000px;}
.yac{bottom:504.330000px;}
.yf{bottom:505.050000px;}
.y9d{bottom:506.415000px;}
.y6f{bottom:509.190000px;}
.y37{bottom:511.560000px;}
.y9{bottom:514.875000px;}
.yb{bottom:515.310000px;}
.y89{bottom:515.370000px;}
.y14{bottom:516.165000px;}
.y12{bottom:516.855000px;}
.y10{bottom:518.295000px;}
.y96{bottom:518.580000px;}
.y73{bottom:522.540000px;}
.y67{bottom:523.980000px;}
.y5f{bottom:524.850000px;}
.y2b{bottom:528.090000px;}
.y82{bottom:530.280000px;}
.y36{bottom:531.720000px;}
.ye{bottom:534.420000px;}
.y50{bottom:543.135000px;}
.y9c{bottom:550.515000px;}
.y2a{bottom:553.110000px;}
.y5e{bottom:554.010000px;}
.y35{bottom:554.220000px;}
.y66{bottom:556.380000px;}
.yab{bottom:558.150000px;}
.y81{bottom:559.440000px;}
.y88{bottom:559.470000px;}
.yd{bottom:559.620000px;}
.y95{bottom:568.980000px;}
.y72{bottom:574.380000px;}
.y5d{bottom:583.170000px;}
.y20{bottom:594.870000px;}
.y5c{bottom:612.330000px;}
.y1e{bottom:622.110000px;}
.y5{bottom:641.595000px;}
.y60{bottom:657.615000px;}
.y1d{bottom:661.035000px;}
.y87{bottom:662.295000px;}
.y29{bottom:667.830000px;}
.y1f{bottom:667.875000px;}
.y7a{bottom:678.450000px;}
.y4{bottom:687.315000px;}
.y86{bottom:694.695000px;}
.y1c{bottom:706.755000px;}
.y41{bottom:770.865000px;}
.h17{height:48.410156px;}
.hb{height:50.448938px;}
.h10{height:63.303398px;}
.h6{height:64.546875px;}
.h1b{height:71.960273px;}
.h8{height:75.519844px;}
.hf{height:75.648938px;}
.h18{height:85.847344px;}
.h19{height:85.976438px;}
.h14{height:94.447266px;}
.h16{height:94.573195px;}
.h7{height:96.820312px;}
.h9{height:96.949406px;}
.h11{height:105.151289px;}
.h13{height:107.793281px;}
.h15{height:107.922375px;}
.hd{height:110.188477px;}
.he{height:110.314406px;}
.h12{height:115.225664px;}
.h1a{height:125.929688px;}
.h3{height:129.093750px;}
.h5{height:129.222844px;}
.ha{height:129.356438px;}
.hc{height:236.887031px;}
.h4{height:237.016125px;}
.h1{height:290.460938px;}
.h2{height:290.590031px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xb{left:41.291979px;}
.x1{left:42.623979px;}
.x6{left:62.423979px;}
.x2{left:71.963979px;}
.x59{left:85.247979px;}
.x58{left:95.507979px;}
.x57{left:106.847979px;}
.x4{left:109.799979px;}
.xe{left:123.515979px;}
.xd{left:137.015979px;}
.x68{left:138.563979px;}
.x26{left:157.064979px;}
.xf{left:164.009979px;}
.x67{left:168.689979px;}
.x3c{left:177.329979px;}
.x29{left:190.829979px;}
.x12{left:196.454979px;}
.x19{left:206.069979px;}
.x15{left:215.669979px;}
.x2f{left:217.829979px;}
.x18{left:221.909979px;}
.x56{left:240.329979px;}
.x3{left:253.724979px;}
.x5f{left:271.904979px;}
.x32{left:277.169979px;}
.x4c{left:284.369979px;}
.x31{left:285.809979px;}
.x30{left:293.549979px;}
.x40{left:295.454979px;}
.x43{left:297.974979px;}
.x4f{left:302.759979px;}
.x36{left:307.979979px;}
.x3e{left:310.394979px;}
.x37{left:316.979979px;}
.x2b{left:318.959979px;}
.x61{left:323.384979px;}
.x2a{left:327.599979px;}
.x3f{left:336.674979px;}
.x60{left:353.264979px;}
.x4b{left:355.319979px;}
.x2d{left:357.839979px;}
.x4a{left:358.919979px;}
.x2c{left:366.299979px;}
.x4d{left:372.059979px;}
.x42{left:397.514979px;}
.x1c{left:404.099979px;}
.x1d{left:406.439979px;}
.x38{left:411.659979px;}
.x41{left:425.414979px;}
.x51{left:432.359979px;}
.xc{left:468.149979px;}
.x7{left:502.844979px;}
.x13{left:521.609979px;}
.x1a{left:523.619979px;}
.x27{left:530.744979px;}
.x28{left:544.289979px;}
.x1b{left:560.159979px;}
.x4e{left:598.709979px;}
.x52{left:602.789979px;}
.x50{left:629.489979px;}
.x5a{left:664.814979px;}
.x1e{left:670.244979px;}
.x1f{left:671.504979px;}
.x21{left:676.544979px;}
.x53{left:679.289979px;}
.x20{left:687.164979px;}
.x5d{left:694.154979px;}
.x48{left:713.954979px;}
.x44{left:729.254979px;}
.x5c{left:733.214979px;}
.x47{left:735.374979px;}
.x54{left:739.619979px;}
.x46{left:747.614979px;}
.x10{left:753.404979px;}
.x5b{left:764.354979px;}
.x5e{left:778.034979px;}
.x11{left:793.904979px;}
.x55{left:816.479979px;}
.x14{left:826.094979px;}
.x34{left:837.074979px;}
.x33{left:857.594979px;}
.x16{left:864.434979px;}
.x39{left:871.949979px;}
.x69{left:919.439979px;}
.x35{left:926.174979px;}
.x45{left:935.744979px;}
.x64{left:941.069979px;}
.x65{left:944.489979px;}
.x3b{left:955.154979px;}
.x63{left:972.389979px;}
.x5{left:1004.909979px;}
.xa{left:1009.154979px;}
.x8{left:1012.214979px;}
.x62{left:1013.429979px;}
.x23{left:1040.864979px;}
.x3a{left:1047.674979px;}
.x24{left:1054.364979px;}
.x25{left:1055.804979px;}
.x66{left:1078.049979px;}
.x22{left:1079.384979px;}
.x9{left:1105.634979px;}
.x17{left:1122.734979px;}
.x2e{left:1240.484979px;}
.x49{left:1259.714979px;}
.x3d{left:1272.704979px;}
@media print{
.v2{vertical-align:-112.213333pt;}
.v4{vertical-align:-22.400000pt;}
.v1{vertical-align:-8.586667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:38.560000pt;}
.v6{vertical-align:78.720000pt;}
.v7{vertical-align:95.360000pt;}
.ls16{letter-spacing:-0.372267pt;}
.ls5{letter-spacing:-0.341333pt;}
.ls28{letter-spacing:-0.336533pt;}
.ls1d{letter-spacing:-0.326933pt;}
.ls1b{letter-spacing:-0.311467pt;}
.ls2c{letter-spacing:-0.308267pt;}
.ls1f{letter-spacing:-0.272533pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.249067pt;}
.ls21{letter-spacing:-0.198933pt;}
.ls31{letter-spacing:-0.185067pt;}
.ls30{letter-spacing:-0.168533pt;}
.lsa{letter-spacing:-0.166933pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.104533pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.052213pt;}
.ls1c{letter-spacing:-0.039040pt;}
.lsb{letter-spacing:-0.033280pt;}
.ls29{letter-spacing:-0.023680pt;}
.ls1a{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.016640pt;}
.ls26{letter-spacing:0.023520pt;}
.ls7{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.111467pt;}
.ls24{letter-spacing:0.134933pt;}
.lsc{letter-spacing:0.156267pt;}
.ls6{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.220267pt;}
.lsd{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.303467pt;}
.ls23{letter-spacing:0.352000pt;}
.ls2a{letter-spacing:0.377067pt;}
.ls18{letter-spacing:20.375552pt;}
.ls17{letter-spacing:20.446720pt;}
.ls14{letter-spacing:20.884480pt;}
.ls2e{letter-spacing:26.624000pt;}
.ls2d{letter-spacing:26.659499pt;}
.ls25{letter-spacing:29.534720pt;}
.ls12{letter-spacing:35.200000pt;}
.ls3{letter-spacing:35.640832pt;}
.ls13{letter-spacing:36.442112pt;}
.ls22{letter-spacing:51.155200pt;}
.ls1e{letter-spacing:51.200000pt;}
.lsf{letter-spacing:110.333867pt;}
.ls11{letter-spacing:110.355200pt;}
.lse{letter-spacing:110.378667pt;}
.ls10{letter-spacing:110.400000pt;}
.ws22{word-spacing:-65.313280pt;}
.ws3{word-spacing:-35.619584pt;}
.ws18{word-spacing:-35.584000pt;}
.ws50{word-spacing:-35.420651pt;}
.ws3d{word-spacing:-29.748224pt;}
.ws25{word-spacing:-29.712640pt;}
.ws28{word-spacing:-26.723584pt;}
.ws9{word-spacing:-26.688000pt;}
.ws34{word-spacing:-23.663360pt;}
.ws39{word-spacing:-20.928107pt;}
.ws11{word-spacing:-20.852224pt;}
.wsf{word-spacing:-20.816640pt;}
.ws2c{word-spacing:-18.048000pt;}
.ws2d{word-spacing:-17.792000pt;}
.ws33{word-spacing:-13.344000pt;}
.ws3a{word-spacing:-2.880000pt;}
.wsd{word-spacing:-2.705920pt;}
.ws23{word-spacing:-2.436352pt;}
.ws38{word-spacing:-2.426667pt;}
.ws36{word-spacing:-2.205440pt;}
.ws3b{word-spacing:-2.090667pt;}
.ws37{word-spacing:-2.064000pt;}
.ws3e{word-spacing:-1.779200pt;}
.ws21{word-spacing:-1.731584pt;}
.ws4d{word-spacing:-1.223296pt;}
.ws40{word-spacing:-1.159253pt;}
.ws13{word-spacing:-1.088000pt;}
.ws43{word-spacing:-1.059136pt;}
.ws17{word-spacing:-1.024000pt;}
.wse{word-spacing:-0.976960pt;}
.ws4c{word-spacing:-0.952960pt;}
.ws1c{word-spacing:-0.815445pt;}
.ws2b{word-spacing:-0.782720pt;}
.ws35{word-spacing:-0.622720pt;}
.ws3c{word-spacing:-0.616320pt;}
.ws4f{word-spacing:-0.597504pt;}
.ws2a{word-spacing:-0.545280pt;}
.ws32{word-spacing:-0.501333pt;}
.ws31{word-spacing:-0.487680pt;}
.wsa{word-spacing:-0.448000pt;}
.ws14{word-spacing:-0.405333pt;}
.ws20{word-spacing:-0.384000pt;}
.ws2f{word-spacing:-0.288000pt;}
.ws29{word-spacing:-0.284245pt;}
.ws3f{word-spacing:-0.206677pt;}
.ws41{word-spacing:-0.177707pt;}
.ws15{word-spacing:-0.149333pt;}
.wsb{word-spacing:-0.096000pt;}
.ws2e{word-spacing:-0.021333pt;}
.ws1{word-spacing:0.000000pt;}
.ws42{word-spacing:0.085035pt;}
.ws2{word-spacing:0.104704pt;}
.ws30{word-spacing:0.110080pt;}
.ws0{word-spacing:0.128000pt;}
.ws7{word-spacing:0.149333pt;}
.ws4{word-spacing:0.160000pt;}
.ws5{word-spacing:0.181333pt;}
.ws4e{word-spacing:0.198464pt;}
.ws12{word-spacing:0.278485pt;}
.wsc{word-spacing:0.295787pt;}
.ws1b{word-spacing:0.341504pt;}
.ws8{word-spacing:0.352000pt;}
.ws46{word-spacing:0.418880pt;}
.ws19{word-spacing:0.512000pt;}
.ws27{word-spacing:0.530688pt;}
.ws6{word-spacing:0.544000pt;}
.ws48{word-spacing:0.554048pt;}
.ws49{word-spacing:0.583552pt;}
.ws4a{word-spacing:0.672000pt;}
.ws1d{word-spacing:0.695509pt;}
.ws44{word-spacing:0.754560pt;}
.ws1e{word-spacing:0.768000pt;}
.ws4b{word-spacing:0.896000pt;}
.ws1f{word-spacing:1.130667pt;}
.ws16{word-spacing:1.184000pt;}
.ws1a{word-spacing:1.280000pt;}
.ws26{word-spacing:1.344000pt;}
.ws45{word-spacing:1.487019pt;}
.ws51{word-spacing:1.823573pt;}
.ws24{word-spacing:2.032000pt;}
.ws47{word-spacing:2.508160pt;}
.ws10{word-spacing:790.407253pt;}
._b{margin-left:-4338.837333pt;}
._5{margin-left:-2.485333pt;}
._1{margin-left:-1.173333pt;}
._2{width:1.674667pt;}
._12{width:3.008000pt;}
._d{width:17.788373pt;}
._c{width:19.840000pt;}
._e{width:21.634987pt;}
._15{width:24.597333pt;}
._17{width:26.404267pt;}
._7{width:27.690667pt;}
._11{width:28.657280pt;}
._a{width:34.560000pt;}
._3{width:36.585685pt;}
._8{width:38.304000pt;}
._f{width:64.381867pt;}
._0{width:79.146667pt;}
._9{width:769.066667pt;}
._18{width:1017.483861pt;}
._4{width:1143.456000pt;}
._14{width:1394.826667pt;}
._6{width:1430.666667pt;}
._13{width:1585.658539pt;}
._10{width:1612.538539pt;}
._16{width:1833.358763pt;}
.fs12{font-size:48.000000pt;}
.fsb{font-size:49.920000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs13{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fsf{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fsd{font-size:112.000000pt;}
.fse{font-size:112.128000pt;}
.fs10{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fsc{font-size:234.880000pt;}
.fs3{font-size:235.008000pt;}
.fs0{font-size:288.000000pt;}
.fs1{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:27.424000pt;}
.y28{bottom:56.352000pt;}
.y52{bottom:63.488000pt;}
.y5b{bottom:71.872000pt;}
.y34{bottom:79.872000pt;}
.y9b{bottom:80.800000pt;}
.y27{bottom:84.384000pt;}
.y51{bottom:92.320000pt;}
.y40{bottom:96.256000pt;}
.yaa{bottom:99.008000pt;}
.y5a{bottom:100.672000pt;}
.y33{bottom:102.112000pt;}
.y6b{bottom:102.880000pt;}
.y9a{bottom:103.200000pt;}
.yb2{bottom:105.184000pt;}
.y4f{bottom:109.056000pt;}
.y94{bottom:111.360000pt;}
.y3f{bottom:116.256000pt;}
.y1b{bottom:118.592000pt;}
.ya9{bottom:122.048000pt;}
.y99{bottom:125.600000pt;}
.y26{bottom:128.192000pt;}
.y6a{bottom:128.800000pt;}
.y80{bottom:133.184000pt;}
.y4e{bottom:137.893333pt;}
.yb1{bottom:143.613333pt;}
.ya8{bottom:145.733333pt;}
.y59{bottom:146.626667pt;}
.y1a{bottom:153.146667pt;}
.y69{bottom:154.720000pt;}
.y25{bottom:158.906667pt;}
.y93{bottom:160.506667pt;}
.y4b{bottom:162.880000pt;}
.ya7{bottom:171.653333pt;}
.y32{bottom:172.226667pt;}
.y7f{bottom:172.546667pt;}
.ya5{bottom:173.120000pt;}
.y92{bottom:176.186667pt;}
.y58{bottom:181.186667pt;}
.y3e{bottom:181.213333pt;}
.yb0{bottom:182.013333pt;}
.y4a{bottom:191.680000pt;}
.y47{bottom:192.253333pt;}
.y31{bottom:194.466667pt;}
.y7e{bottom:198.493333pt;}
.ya4{bottom:199.040000pt;}
.y19{bottom:201.026667pt;}
.y91{bottom:202.106667pt;}
.y3d{bottom:205.213333pt;}
.ya6{bottom:205.573333pt;}
.y79{bottom:205.853333pt;}
.y65{bottom:207.586667pt;}
.y49{bottom:220.480000pt;}
.y46{bottom:221.053333pt;}
.y57{bottom:222.626667pt;}
.y7d{bottom:224.413333pt;}
.ya3{bottom:232.960000pt;}
.yb3{bottom:234.373333pt;}
.y6e{bottom:240.826667pt;}
.y78{bottom:243.933333pt;}
.y64{bottom:244.386667pt;}
.y24{bottom:247.106667pt;}
.y18{bottom:249.026667pt;}
.y48{bottom:249.306667pt;}
.y56{bottom:251.426667pt;}
.ya2{bottom:258.906667pt;}
.y3{bottom:262.106667pt;}
.y7c{bottom:263.613333pt;}
.y30{bottom:264.546667pt;}
.y3c{bottom:269.093333pt;}
.y6d{bottom:269.626667pt;}
.y23{bottom:277.826667pt;}
.y4d{bottom:280.160000pt;}
.y63{bottom:281.213333pt;}
.y90{bottom:282.880000pt;}
.y2f{bottom:284.706667pt;}
.yaf{bottom:285.213333pt;}
.y77{bottom:285.253333pt;}
.y3b{bottom:287.013333pt;}
.y7b{bottom:289.533333pt;}
.y17{bottom:296.866667pt;}
.y55{bottom:297.373333pt;}
.y8{bottom:297.600000pt;}
.y6c{bottom:298.426667pt;}
.y8f{bottom:305.920000pt;}
.y2e{bottom:306.973333pt;}
.y3a{bottom:307.013333pt;}
.y62{bottom:318.013333pt;}
.y7{bottom:326.400000pt;}
.y8e{bottom:328.960000pt;}
.y76{bottom:330.053333pt;}
.y16{bottom:331.426667pt;}
.yae{bottom:333.093333pt;}
.y43{bottom:333.986667pt;}
.y2{bottom:346.213333pt;}
.ya1{bottom:346.426667pt;}
.y54{bottom:346.813333pt;}
.y45{bottom:348.186667pt;}
.y8d{bottom:349.760000pt;}
.y61{bottom:354.813333pt;}
.y8c{bottom:362.720000pt;}
.y22{bottom:365.853333pt;}
.y42{bottom:365.986667pt;}
.y39{bottom:370.880000pt;}
.y98{bottom:371.333333pt;}
.ya0{bottom:372.346667pt;}
.y75{bottom:374.853333pt;}
.y2d{bottom:377.053333pt;}
.y8b{bottom:377.280000pt;}
.y85{bottom:380.293333pt;}
.y44{bottom:382.146667pt;}
.y71{bottom:387.013333pt;}
.y15{bottom:388.893333pt;}
.y38{bottom:390.880000pt;}
.y53{bottom:392.733333pt;}
.y21{bottom:396.573333pt;}
.y8a{bottom:397.466667pt;}
.y9f{bottom:398.266667pt;}
.y2c{bottom:399.293333pt;}
.y84{bottom:406.213333pt;}
.yad{bottom:413.693333pt;}
.y70{bottom:415.813333pt;}
.y97{bottom:416.160000pt;}
.y74{bottom:419.680000pt;}
.y1{bottom:423.973333pt;}
.y9e{bottom:424.226667pt;}
.ya{bottom:428.866667pt;}
.yc{bottom:429.253333pt;}
.y13{bottom:430.626667pt;}
.y11{bottom:431.866667pt;}
.y83{bottom:432.133333pt;}
.y4c{bottom:436.866667pt;}
.y68{bottom:436.960000pt;}
.yac{bottom:448.293333pt;}
.yf{bottom:448.933333pt;}
.y9d{bottom:450.146667pt;}
.y6f{bottom:452.613333pt;}
.y37{bottom:454.720000pt;}
.y9{bottom:457.666667pt;}
.yb{bottom:458.053333pt;}
.y89{bottom:458.106667pt;}
.y14{bottom:458.813333pt;}
.y12{bottom:459.426667pt;}
.y10{bottom:460.706667pt;}
.y96{bottom:460.960000pt;}
.y73{bottom:464.480000pt;}
.y67{bottom:465.760000pt;}
.y5f{bottom:466.533333pt;}
.y2b{bottom:469.413333pt;}
.y82{bottom:471.360000pt;}
.y36{bottom:472.640000pt;}
.ye{bottom:475.040000pt;}
.y50{bottom:482.786667pt;}
.y9c{bottom:489.346667pt;}
.y2a{bottom:491.653333pt;}
.y5e{bottom:492.453333pt;}
.y35{bottom:492.640000pt;}
.y66{bottom:494.560000pt;}
.yab{bottom:496.133333pt;}
.y81{bottom:497.280000pt;}
.y88{bottom:497.306667pt;}
.yd{bottom:497.440000pt;}
.y95{bottom:505.760000pt;}
.y72{bottom:510.560000pt;}
.y5d{bottom:518.373333pt;}
.y20{bottom:528.773333pt;}
.y5c{bottom:544.293333pt;}
.y1e{bottom:552.986667pt;}
.y5{bottom:570.306667pt;}
.y60{bottom:584.546667pt;}
.y1d{bottom:587.586667pt;}
.y87{bottom:588.706667pt;}
.y29{bottom:593.626667pt;}
.y1f{bottom:593.666667pt;}
.y7a{bottom:603.066667pt;}
.y4{bottom:610.946667pt;}
.y86{bottom:617.506667pt;}
.y1c{bottom:628.226667pt;}
.y41{bottom:685.213333pt;}
.h17{height:43.031250pt;}
.hb{height:44.843500pt;}
.h10{height:56.269687pt;}
.h6{height:57.375000pt;}
.h1b{height:63.964688pt;}
.h8{height:67.128750pt;}
.hf{height:67.243500pt;}
.h18{height:76.308750pt;}
.h19{height:76.423500pt;}
.h14{height:83.953125pt;}
.h16{height:84.065062pt;}
.h7{height:86.062500pt;}
.h9{height:86.177250pt;}
.h11{height:93.467812pt;}
.h13{height:95.816250pt;}
.h15{height:95.931000pt;}
.hd{height:97.945312pt;}
.he{height:98.057250pt;}
.h12{height:102.422812pt;}
.h1a{height:111.937500pt;}
.h3{height:114.750000pt;}
.h5{height:114.864750pt;}
.ha{height:114.983500pt;}
.hc{height:210.566250pt;}
.h4{height:210.681000pt;}
.h1{height:258.187500pt;}
.h2{height:258.302250pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xb{left:36.703981pt;}
.x1{left:37.887981pt;}
.x6{left:55.487981pt;}
.x2{left:63.967981pt;}
.x59{left:75.775981pt;}
.x58{left:84.895981pt;}
.x57{left:94.975981pt;}
.x4{left:97.599981pt;}
.xe{left:109.791981pt;}
.xd{left:121.791981pt;}
.x68{left:123.167981pt;}
.x26{left:139.613314pt;}
.xf{left:145.786648pt;}
.x67{left:149.946648pt;}
.x3c{left:157.626648pt;}
.x29{left:169.626648pt;}
.x12{left:174.626648pt;}
.x19{left:183.173314pt;}
.x15{left:191.706648pt;}
.x2f{left:193.626648pt;}
.x18{left:197.253314pt;}
.x56{left:213.626648pt;}
.x3{left:225.533314pt;}
.x5f{left:241.693314pt;}
.x32{left:246.373314pt;}
.x4c{left:252.773314pt;}
.x31{left:254.053314pt;}
.x30{left:260.933314pt;}
.x40{left:262.626648pt;}
.x43{left:264.866648pt;}
.x4f{left:269.119981pt;}
.x36{left:273.759981pt;}
.x3e{left:275.906648pt;}
.x37{left:281.759981pt;}
.x2b{left:283.519981pt;}
.x61{left:287.453314pt;}
.x2a{left:291.199981pt;}
.x3f{left:299.266648pt;}
.x60{left:314.013314pt;}
.x4b{left:315.839981pt;}
.x2d{left:318.079981pt;}
.x4a{left:319.039981pt;}
.x2c{left:325.599981pt;}
.x4d{left:330.719981pt;}
.x42{left:353.346648pt;}
.x1c{left:359.199981pt;}
.x1d{left:361.279981pt;}
.x38{left:365.919981pt;}
.x41{left:378.146648pt;}
.x51{left:384.319981pt;}
.xc{left:416.133314pt;}
.x7{left:446.973314pt;}
.x13{left:463.653314pt;}
.x1a{left:465.439981pt;}
.x27{left:471.773314pt;}
.x28{left:483.813314pt;}
.x1b{left:497.919981pt;}
.x4e{left:532.186648pt;}
.x52{left:535.813314pt;}
.x50{left:559.546648pt;}
.x5a{left:590.946648pt;}
.x1e{left:595.773314pt;}
.x1f{left:596.893314pt;}
.x21{left:601.373314pt;}
.x53{left:603.813314pt;}
.x20{left:610.813314pt;}
.x5d{left:617.026648pt;}
.x48{left:634.626648pt;}
.x44{left:648.226648pt;}
.x5c{left:651.746648pt;}
.x47{left:653.666648pt;}
.x54{left:657.439981pt;}
.x46{left:664.546648pt;}
.x10{left:669.693314pt;}
.x5b{left:679.426648pt;}
.x5e{left:691.586648pt;}
.x11{left:705.693314pt;}
.x55{left:725.759981pt;}
.x14{left:734.306648pt;}
.x34{left:744.066648pt;}
.x33{left:762.306648pt;}
.x16{left:768.386648pt;}
.x39{left:775.066648pt;}
.x69{left:817.279981pt;}
.x35{left:823.266648pt;}
.x45{left:831.773314pt;}
.x64{left:836.506648pt;}
.x65{left:839.546648pt;}
.x3b{left:849.026648pt;}
.x63{left:864.346648pt;}
.x5{left:893.253314pt;}
.xa{left:897.026648pt;}
.x8{left:899.746648pt;}
.x62{left:900.826648pt;}
.x23{left:925.213314pt;}
.x3a{left:931.266648pt;}
.x24{left:937.213314pt;}
.x25{left:938.493314pt;}
.x66{left:958.266648pt;}
.x22{left:959.453314pt;}
.x9{left:982.786648pt;}
.x17{left:997.986648pt;}
.x2e{left:1102.653314pt;}
.x49{left:1119.746648pt;}
.x3d{left:1131.293314pt;}
}




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