
    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_0eb6754217f2c6938094c4d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916504;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_79272091c10b164a7c1afa49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e3ae23a5572dca55c6c5181e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d493cfc0ced05fd6848407a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_dcbb7a9226e1a2464184eaeb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_283cda920a4616adc657ce5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_14b1a29f03fbf1fdf3c35b4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_2080875068bf9beeab4ca954.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b5189cb9ad8b91274f62cf59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_6af890f22b0745015061eb73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692871;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_f9bc0eab69c5cfb685cef6d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ca7f40420f66ac0c318f0158.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_949b089ed303362245dd300b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a96b539050afd7a318e177c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_42799bd0c5330a6377115788.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_aaf067d8719313c962c8811a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls40{letter-spacing:-0.762048px;}
.ls39{letter-spacing:-0.719712px;}
.ls1a{letter-spacing:-0.683424px;}
.ls14{letter-spacing:-0.635040px;}
.ls38{letter-spacing:-0.622944px;}
.ls1b{letter-spacing:-0.604800px;}
.ls18{letter-spacing:-0.556416px;}
.ls17{letter-spacing:-0.538272px;}
.ls15{letter-spacing:-0.520128px;}
.ls8{letter-spacing:-0.508896px;}
.ls9{letter-spacing:-0.481536px;}
.ls1c{letter-spacing:-0.477792px;}
.ls16{letter-spacing:-0.459648px;}
.ls10{letter-spacing:-0.448704px;}
.ls19{letter-spacing:-0.441504px;}
.ls13{letter-spacing:-0.426240px;}
.ls22{letter-spacing:-0.417312px;}
.ls34{letter-spacing:-0.403200px;}
.lsa{letter-spacing:-0.393984px;}
.ls33{letter-spacing:-0.381024px;}
.ls36{letter-spacing:-0.374400px;}
.lsb{letter-spacing:-0.361152px;}
.ls1e{letter-spacing:-0.338688px;}
.lsd{letter-spacing:-0.328320px;}
.ls37{letter-spacing:-0.322560px;}
.ls23{letter-spacing:-0.320544px;}
.ls1d{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.273600px;}
.ls25{letter-spacing:-0.260064px;}
.ls20{letter-spacing:-0.241920px;}
.lsf{letter-spacing:-0.240768px;}
.ls21{letter-spacing:-0.223776px;}
.lsc{letter-spacing:-0.207936px;}
.ls11{letter-spacing:-0.180576px;}
.ls1f{letter-spacing:-0.175392px;}
.ls12{letter-spacing:-0.157248px;}
.ls24{letter-spacing:-0.145152px;}
.ls44{letter-spacing:-0.137808px;}
.ls35{letter-spacing:-0.120960px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000576px;}
.ls29{letter-spacing:0.010944px;}
.ls2b{letter-spacing:0.011520px;}
.ls28{letter-spacing:0.012096px;}
.ls2d{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.160128px;}
.ls1{letter-spacing:0.160272px;}
.ls45{letter-spacing:0.161568px;}
.ls5{letter-spacing:0.230400px;}
.ls0{letter-spacing:0.356400px;}
.ls3b{letter-spacing:2.172384px;}
.ls30{letter-spacing:3.916800px;}
.ls31{letter-spacing:4.888800px;}
.ls2c{letter-spacing:8.831520px;}
.ls42{letter-spacing:9.884880px;}
.ls2a{letter-spacing:10.516320px;}
.ls3d{letter-spacing:11.856528px;}
.ls3a{letter-spacing:14.566464px;}
.ls32{letter-spacing:17.906400px;}
.ls2e{letter-spacing:17.936640px;}
.ls3f{letter-spacing:18.822240px;}
.ls3e{letter-spacing:19.177920px;}
.ls27{letter-spacing:20.506464px;}
.ls3c{letter-spacing:21.287520px;}
.ls41{letter-spacing:22.123584px;}
.ls2f{letter-spacing:24.923520px;}
.ls3{letter-spacing:30.496608px;}
.ls43{letter-spacing:37.920960px;}
.ls26{letter-spacing:63.588816px;}
.ls6{letter-spacing:63.588960px;}
.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;}
}
.ws15{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.974848px;}
.ws8{word-spacing:-14.962752px;}
.wsd{word-spacing:-14.944608px;}
.wsf{word-spacing:-14.896224px;}
.wse{word-spacing:-14.878080px;}
.ws17{word-spacing:-14.817600px;}
.ws1a{word-spacing:-14.799456px;}
.ws1f{word-spacing:-14.781312px;}
.wsb{word-spacing:-14.678496px;}
.ws9{word-spacing:-14.599872px;}
.ws1e{word-spacing:-14.581728px;}
.ws1d{word-spacing:-14.563584px;}
.ws18{word-spacing:-14.515200px;}
.ws19{word-spacing:-14.497056px;}
.ws1b{word-spacing:-14.484960px;}
.ws1c{word-spacing:-14.400288px;}
.ws13{word-spacing:-14.400000px;}
.ws16{word-spacing:-14.077440px;}
.ws14{word-spacing:-14.025600px;}
.ws11{word-spacing:-13.996800px;}
.ws6{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.472064px;}
.ws7{word-spacing:-13.406400px;}
.ws4{word-spacing:-13.351680px;}
.ws2{word-spacing:-13.318848px;}
.ws5{word-spacing:-13.198464px;}
.ws0{word-spacing:-12.236400px;}
.ws1{word-spacing:-11.880000px;}
.ws20{word-spacing:-11.742192px;}
.wsc{word-spacing:-0.060480px;}
.ws10{word-spacing:0.000000px;}
._8{margin-left:-3.548880px;}
._7{margin-left:-2.517120px;}
._0{margin-left:-1.007712px;}
._1{width:1.039680px;}
._3{width:2.517120px;}
._b{width:4.176000px;}
._9{width:5.198400px;}
._6{width:6.785280px;}
._4{width:8.481600px;}
._2{width:9.794880px;}
._15{width:10.834560px;}
._c{width:11.914560px;}
._12{width:13.178592px;}
._a{width:15.646752px;}
._5{width:17.182080px;}
._16{width:19.487520px;}
._d{width:20.623680px;}
._18{width:22.377600px;}
._11{width:24.071040px;}
._14{width:25.826400px;}
._f{width:32.477760px;}
._10{width:33.566400px;}
._17{width:37.558080px;}
._19{width:41.719680px;}
._e{width:43.001280px;}
._13{width:45.549504px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(149,79,114);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.168550px;}
.yc2{bottom:116.288550px;}
.y3e{bottom:122.768550px;}
.yf5{bottom:123.488550px;}
.y125{bottom:127.088550px;}
.y94{bottom:128.528550px;}
.y3d{bottom:138.968550px;}
.yf4{bottom:139.688550px;}
.y124{bottom:144.368550px;}
.yc1{bottom:144.728550px;}
.y5e{bottom:145.448550px;}
.y93{bottom:145.808550px;}
.y3c{bottom:155.528550px;}
.yf3{bottom:156.248550px;}
.yc0{bottom:161.288550px;}
.y5d{bottom:162.728550px;}
.y92{bottom:163.088550px;}
.y3b{bottom:171.728550px;}
.y123{bottom:173.528550px;}
.yf2{bottom:176.768550px;}
.ybf{bottom:177.488550px;}
.y91{bottom:180.368550px;}
.y3a{bottom:188.288550px;}
.y122{bottom:190.808550px;}
.y5c{bottom:192.968550px;}
.ybe{bottom:194.048550px;}
.y90{bottom:197.648550px;}
.yf1{bottom:203.048550px;}
.y39{bottom:204.488550px;}
.y121{bottom:208.088550px;}
.y5b{bottom:210.248550px;}
.y8f{bottom:214.928550px;}
.yf0{bottom:220.328550px;}
.y38{bottom:221.048550px;}
.y120{bottom:225.368550px;}
.ybd{bottom:226.808550px;}
.y8e{bottom:232.208550px;}
.y37{bottom:237.248550px;}
.yef{bottom:237.608550px;}
.y5a{bottom:239.408550px;}
.y11f{bottom:242.648550px;}
.ybc{bottom:243.008550px;}
.y8d{bottom:249.488550px;}
.yee{bottom:254.888550px;}
.y59{bottom:256.688550px;}
.y11e{bottom:259.928550px;}
.y36{bottom:262.448550px;}
.y8c{bottom:266.768550px;}
.ybb{bottom:268.208550px;}
.yed{bottom:272.168550px;}
.y58{bottom:275.048550px;}
.y11d{bottom:276.848550px;}
.y35{bottom:279.008550px;}
.y8b{bottom:284.048550px;}
.yba{bottom:284.768550px;}
.yec{bottom:289.448550px;}
.y57{bottom:292.328550px;}
.y11c{bottom:294.128550px;}
.y34{bottom:295.568550px;}
.y8a{bottom:301.328550px;}
.yeb{bottom:306.728550px;}
.y56{bottom:310.688550px;}
.y11b{bottom:311.408550px;}
.y33{bottom:311.768550px;}
.yb9{bottom:317.528550px;}
.y89{bottom:318.608550px;}
.yea{bottom:324.008550px;}
.y55{bottom:327.968550px;}
.y32{bottom:328.328550px;}
.y11a{bottom:329.768550px;}
.yb8{bottom:334.088550px;}
.y88{bottom:335.528550px;}
.ye9{bottom:341.288550px;}
.y31{bottom:344.528550px;}
.y54{bottom:345.968550px;}
.y119{bottom:347.048550px;}
.yb7{bottom:350.288550px;}
.y87{bottom:352.808550px;}
.y30{bottom:361.088550px;}
.y53{bottom:363.248550px;}
.y118{bottom:364.328550px;}
.ye8{bottom:367.568550px;}
.y86{bottom:370.088550px;}
.yb6{bottom:371.888550px;}
.y2f{bottom:377.288550px;}
.y52{bottom:380.528550px;}
.y117{bottom:381.608550px;}
.ye7{bottom:384.848550px;}
.y85{bottom:387.368550px;}
.y2e{bottom:393.848550px;}
.y51{bottom:398.888550px;}
.yb5{bottom:401.048550px;}
.ye6{bottom:402.128550px;}
.y84{bottom:404.648550px;}
.y2d{bottom:410.048550px;}
.y50{bottom:416.168550px;}
.ye5{bottom:419.408550px;}
.yb4{bottom:420.488550px;}
.y2c{bottom:426.608550px;}
.y4f{bottom:433.448550px;}
.y83{bottom:433.808550px;}
.y116{bottom:434.528550px;}
.ye4{bottom:436.328550px;}
.yb3{bottom:437.048550px;}
.y2b{bottom:442.808550px;}
.y82{bottom:451.088550px;}
.y4e{bottom:451.808550px;}
.yb2{bottom:453.248550px;}
.ye3{bottom:453.968550px;}
.y2a{bottom:459.368550px;}
.y81{bottom:468.368550px;}
.y115{bottom:468.728550px;}
.y4d{bottom:469.088550px;}
.yb1{bottom:469.808550px;}
.y29{bottom:475.568550px;}
.ye2{bottom:479.888550px;}
.y80{bottom:485.648550px;}
.yb0{bottom:486.008550px;}
.y28{bottom:492.128550px;}
.ye1{bottom:497.168550px;}
.y4c{bottom:499.328550px;}
.y7f{bottom:502.928550px;}
.y114{bottom:503.288550px;}
.yaf{bottom:511.208550px;}
.ye0{bottom:514.448550px;}
.y27{bottom:515.168550px;}
.y7e{bottom:520.208550px;}
.y113{bottom:520.568550px;}
.y4b{bottom:525.608550px;}
.yae{bottom:527.768550px;}
.ydf{bottom:531.728550px;}
.y7d{bottom:537.488550px;}
.y4a{bottom:542.168550px;}
.yad{bottom:544.328550px;}
.y26{bottom:546.848550px;}
.yde{bottom:549.008550px;}
.y112{bottom:550.808550px;}
.y7c{bottom:554.768550px;}
.y49{bottom:558.368550px;}
.yac{bottom:560.528550px;}
.ydd{bottom:566.288550px;}
.y7b{bottom:572.048550px;}
.y48{bottom:574.928550px;}
.yab{bottom:577.088550px;}
.y25{bottom:577.448550px;}
.y111{bottom:580.328550px;}
.y7a{bottom:589.328550px;}
.y47{bottom:591.128550px;}
.ydc{bottom:592.568550px;}
.y24{bottom:592.928550px;}
.yaa{bottom:593.648550px;}
.y110{bottom:597.608550px;}
.y79{bottom:606.248550px;}
.y46{bottom:607.688550px;}
.y23{bottom:608.408550px;}
.y10f{bottom:614.528550px;}
.ydb{bottom:618.488550px;}
.ya9{bottom:618.848550px;}
.y78{bottom:623.528550px;}
.y22{bottom:623.888550px;}
.y10e{bottom:631.808550px;}
.yda{bottom:635.048550px;}
.ya8{bottom:635.408550px;}
.y21{bottom:639.368550px;}
.y45{bottom:640.448550px;}
.y77{bottom:640.808550px;}
.y10d{bottom:649.088550px;}
.ya7{bottom:651.608550px;}
.y20{bottom:655.208550px;}
.y76{bottom:664.568550px;}
.y44{bottom:665.648550px;}
.y10c{bottom:666.368550px;}
.yd9{bottom:667.808550px;}
.y1f{bottom:670.688550px;}
.ya6{bottom:672.488550px;}
.y43{bottom:682.208550px;}
.yd8{bottom:684.368550px;}
.y1e{bottom:686.168550px;}
.y10b{bottom:690.488550px;}
.y75{bottom:696.968550px;}
.y42{bottom:698.408550px;}
.ya5{bottom:698.768550px;}
.yd7{bottom:700.568550px;}
.y1d{bottom:701.648550px;}
.y74{bottom:714.248550px;}
.y41{bottom:714.968550px;}
.ya4{bottom:716.048550px;}
.y1c{bottom:717.128550px;}
.y10a{bottom:722.168550px;}
.y40{bottom:731.168550px;}
.y73{bottom:731.528550px;}
.y1b{bottom:732.608550px;}
.yd6{bottom:733.328550px;}
.y109{bottom:738.728550px;}
.ya3{bottom:739.808550px;}
.y3f{bottom:747.728550px;}
.y1a{bottom:748.088550px;}
.y72{bottom:748.448550px;}
.y108{bottom:755.288550px;}
.yd5{bottom:758.528550px;}
.y71{bottom:765.728550px;}
.y19{bottom:766.088550px;}
.y107{bottom:771.488550px;}
.yd4{bottom:775.088550px;}
.ya2{bottom:777.968550px;}
.y70{bottom:783.008550px;}
.y106{bottom:788.048550px;}
.yd3{bottom:791.648550px;}
.ya1{bottom:795.248550px;}
.y18{bottom:798.488550px;}
.y6f{bottom:800.288550px;}
.y105{bottom:804.248550px;}
.yd2{bottom:807.848550px;}
.ya0{bottom:812.528550px;}
.y17{bottom:813.968550px;}
.y6e{bottom:817.568550px;}
.yd1{bottom:824.408550px;}
.y104{bottom:829.448550px;}
.y9f{bottom:829.808550px;}
.y6d{bottom:834.848550px;}
.yd0{bottom:840.608550px;}
.y103{bottom:846.008550px;}
.y9e{bottom:847.088550px;}
.y6c{bottom:852.128550px;}
.ycf{bottom:857.168550px;}
.y102{bottom:862.568550px;}
.y16{bottom:863.648550px;}
.y9d{bottom:864.368550px;}
.yc{bottom:866.168550px;}
.yce{bottom:873.368550px;}
.y101{bottom:878.768550px;}
.y15{bottom:879.128550px;}
.y6b{bottom:881.288550px;}
.yb{bottom:881.648550px;}
.ycd{bottom:889.928550px;}
.y14{bottom:894.608550px;}
.y100{bottom:895.328550px;}
.ya{bottom:897.128550px;}
.y6a{bottom:898.568550px;}
.yf{bottom:899.288550px;}
.y13{bottom:910.088550px;}
.yff{bottom:911.528550px;}
.y9{bottom:912.608550px;}
.ycc{bottom:915.128550px;}
.y9c{bottom:915.848550px;}
.y69{bottom:916.928550px;}
.y12{bottom:925.568550px;}
.y8{bottom:928.088550px;}
.ycb{bottom:931.688550px;}
.y9b{bottom:933.128550px;}
.y68{bottom:934.208550px;}
.ye{bottom:935.648550px;}
.y11{bottom:941.048550px;}
.y12d{bottom:943.208550px;}
.y7{bottom:943.568550px;}
.yfe{bottom:944.288550px;}
.yca{bottom:947.888550px;}
.y9a{bottom:950.408550px;}
.y67{bottom:951.488550px;}
.y10{bottom:956.888550px;}
.y6{bottom:959.048550px;}
.yfd{bottom:960.848550px;}
.yc9{bottom:964.448550px;}
.y12c{bottom:965.888550px;}
.y99{bottom:967.688550px;}
.y66{bottom:969.848550px;}
.y129{bottom:970.208550px;}
.yd{bottom:972.368550px;}
.y5{bottom:974.888550px;}
.yc8{bottom:980.648550px;}
.yfc{bottom:986.048550px;}
.y128{bottom:986.768550px;}
.y65{bottom:987.128550px;}
.y12b{bottom:988.928550px;}
.y4{bottom:990.368550px;}
.y98{bottom:991.448550px;}
.yfb{bottom:1002.608550px;}
.y127{bottom:1002.968550px;}
.y64{bottom:1005.488550px;}
.yc7{bottom:1006.208550px;}
.yfa{bottom:1018.808550px;}
.y63{bottom:1022.408550px;}
.yc6{bottom:1022.768550px;}
.y97{bottom:1023.488550px;}
.y126{bottom:1026.008550px;}
.y12a{bottom:1028.528550px;}
.y3{bottom:1031.768550px;}
.yf9{bottom:1035.368550px;}
.yc5{bottom:1038.968550px;}
.y62{bottom:1039.688550px;}
.y96{bottom:1040.768550px;}
.yc4{bottom:1055.528550px;}
.y61{bottom:1056.968550px;}
.y95{bottom:1058.048550px;}
.yf8{bottom:1060.568550px;}
.yc3{bottom:1071.728550px;}
.y2{bottom:1073.168550px;}
.y60{bottom:1075.328550px;}
.yf7{bottom:1077.128550px;}
.y5f{bottom:1092.608550px;}
.yf6{bottom:1093.328550px;}
.h1{height:34.108594px;}
.h4{height:37.058906px;}
.h5{height:37.085625px;}
.h3{height:37.994063px;}
.h8{height:41.993438px;}
.h7{height:42.022969px;}
.h9{height:47.988281px;}
.h6{height:48.761719px;}
.h2{height:99.984375px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:61.521318px;}
.x15{left:64.018890px;}
.x1{left:67.311486px;}
.x14{left:68.391450px;}
.x13{left:88.791570px;}
.x16{left:89.991306px;}
.x1c{left:95.391450px;}
.x2{left:100.883142px;}
.x7{left:106.301214px;}
.x5{left:118.683918px;}
.x1b{left:122.391414px;}
.x6{left:141.376194px;}
.x9{left:153.379854px;}
.x4{left:155.261790px;}
.x10{left:159.223842px;}
.x8{left:192.561498px;}
.x3{left:331.859682px;}
.x11{left:359.383770px;}
.xa{left:459.321570px;}
.x1e{left:463.663890px;}
.x1f{left:465.740370px;}
.x17{left:473.031450px;}
.x18{left:494.631450px;}
.x19{left:500.031450px;}
.x1a{left:527.031450px;}
.x12{left:559.183770px;}
.xc{left:634.784850px;}
.xe{left:679.935690px;}
.xd{left:685.021050px;}
.xb{left:692.898210px;}
.xf{left:726.081570px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls40{letter-spacing:-0.677376pt;}
.ls39{letter-spacing:-0.639744pt;}
.ls1a{letter-spacing:-0.607488pt;}
.ls14{letter-spacing:-0.564480pt;}
.ls38{letter-spacing:-0.553728pt;}
.ls1b{letter-spacing:-0.537600pt;}
.ls18{letter-spacing:-0.494592pt;}
.ls17{letter-spacing:-0.478464pt;}
.ls15{letter-spacing:-0.462336pt;}
.ls8{letter-spacing:-0.452352pt;}
.ls9{letter-spacing:-0.428032pt;}
.ls1c{letter-spacing:-0.424704pt;}
.ls16{letter-spacing:-0.408576pt;}
.ls10{letter-spacing:-0.398848pt;}
.ls19{letter-spacing:-0.392448pt;}
.ls13{letter-spacing:-0.378880pt;}
.ls22{letter-spacing:-0.370944pt;}
.ls34{letter-spacing:-0.358400pt;}
.lsa{letter-spacing:-0.350208pt;}
.ls33{letter-spacing:-0.338688pt;}
.ls36{letter-spacing:-0.332800pt;}
.lsb{letter-spacing:-0.321024pt;}
.ls1e{letter-spacing:-0.301056pt;}
.lsd{letter-spacing:-0.291840pt;}
.ls37{letter-spacing:-0.286720pt;}
.ls23{letter-spacing:-0.284928pt;}
.ls1d{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.243200pt;}
.ls25{letter-spacing:-0.231168pt;}
.ls20{letter-spacing:-0.215040pt;}
.lsf{letter-spacing:-0.214016pt;}
.ls21{letter-spacing:-0.198912pt;}
.lsc{letter-spacing:-0.184832pt;}
.ls11{letter-spacing:-0.160512pt;}
.ls1f{letter-spacing:-0.155904pt;}
.ls12{letter-spacing:-0.139776pt;}
.ls24{letter-spacing:-0.129024pt;}
.ls44{letter-spacing:-0.122496pt;}
.ls35{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000512pt;}
.ls29{letter-spacing:0.009728pt;}
.ls2b{letter-spacing:0.010240pt;}
.ls28{letter-spacing:0.010752pt;}
.ls2d{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.142336pt;}
.ls1{letter-spacing:0.142464pt;}
.ls45{letter-spacing:0.143616pt;}
.ls5{letter-spacing:0.204800pt;}
.ls0{letter-spacing:0.316800pt;}
.ls3b{letter-spacing:1.931008pt;}
.ls30{letter-spacing:3.481600pt;}
.ls31{letter-spacing:4.345600pt;}
.ls2c{letter-spacing:7.850240pt;}
.ls42{letter-spacing:8.786560pt;}
.ls2a{letter-spacing:9.347840pt;}
.ls3d{letter-spacing:10.539136pt;}
.ls3a{letter-spacing:12.947968pt;}
.ls32{letter-spacing:15.916800pt;}
.ls2e{letter-spacing:15.943680pt;}
.ls3f{letter-spacing:16.730880pt;}
.ls3e{letter-spacing:17.047040pt;}
.ls27{letter-spacing:18.227968pt;}
.ls3c{letter-spacing:18.922240pt;}
.ls41{letter-spacing:19.665408pt;}
.ls2f{letter-spacing:22.154240pt;}
.ls3{letter-spacing:27.108096pt;}
.ls43{letter-spacing:33.707520pt;}
.ls26{letter-spacing:56.523392pt;}
.ls6{letter-spacing:56.523520pt;}
.ws15{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.310976pt;}
.ws8{word-spacing:-13.300224pt;}
.wsd{word-spacing:-13.284096pt;}
.wsf{word-spacing:-13.241088pt;}
.wse{word-spacing:-13.224960pt;}
.ws17{word-spacing:-13.171200pt;}
.ws1a{word-spacing:-13.155072pt;}
.ws1f{word-spacing:-13.138944pt;}
.wsb{word-spacing:-13.047552pt;}
.ws9{word-spacing:-12.977664pt;}
.ws1e{word-spacing:-12.961536pt;}
.ws1d{word-spacing:-12.945408pt;}
.ws18{word-spacing:-12.902400pt;}
.ws19{word-spacing:-12.886272pt;}
.ws1b{word-spacing:-12.875520pt;}
.ws1c{word-spacing:-12.800256pt;}
.ws13{word-spacing:-12.800000pt;}
.ws16{word-spacing:-12.513280pt;}
.ws14{word-spacing:-12.467200pt;}
.ws11{word-spacing:-12.441600pt;}
.ws6{word-spacing:-12.160000pt;}
.ws3{word-spacing:-11.975168pt;}
.ws7{word-spacing:-11.916800pt;}
.ws4{word-spacing:-11.868160pt;}
.ws2{word-spacing:-11.838976pt;}
.ws5{word-spacing:-11.731968pt;}
.ws0{word-spacing:-10.876800pt;}
.ws1{word-spacing:-10.560000pt;}
.ws20{word-spacing:-10.437504pt;}
.wsc{word-spacing:-0.053760pt;}
.ws10{word-spacing:0.000000pt;}
._8{margin-left:-3.154560pt;}
._7{margin-left:-2.237440pt;}
._0{margin-left:-0.895744pt;}
._1{width:0.924160pt;}
._3{width:2.237440pt;}
._b{width:3.712000pt;}
._9{width:4.620800pt;}
._6{width:6.031360pt;}
._4{width:7.539200pt;}
._2{width:8.706560pt;}
._15{width:9.630720pt;}
._c{width:10.590720pt;}
._12{width:11.714304pt;}
._a{width:13.908224pt;}
._5{width:15.272960pt;}
._16{width:17.322240pt;}
._d{width:18.332160pt;}
._18{width:19.891200pt;}
._11{width:21.396480pt;}
._14{width:22.956800pt;}
._f{width:28.869120pt;}
._10{width:29.836800pt;}
._17{width:33.384960pt;}
._19{width:37.084160pt;}
._e{width:38.223360pt;}
._13{width:40.488448pt;}
.fs0{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.927600pt;}
.yc2{bottom:103.367600pt;}
.y3e{bottom:109.127600pt;}
.yf5{bottom:109.767600pt;}
.y125{bottom:112.967600pt;}
.y94{bottom:114.247600pt;}
.y3d{bottom:123.527600pt;}
.yf4{bottom:124.167600pt;}
.y124{bottom:128.327600pt;}
.yc1{bottom:128.647600pt;}
.y5e{bottom:129.287600pt;}
.y93{bottom:129.607600pt;}
.y3c{bottom:138.247600pt;}
.yf3{bottom:138.887600pt;}
.yc0{bottom:143.367600pt;}
.y5d{bottom:144.647600pt;}
.y92{bottom:144.967600pt;}
.y3b{bottom:152.647600pt;}
.y123{bottom:154.247600pt;}
.yf2{bottom:157.127600pt;}
.ybf{bottom:157.767600pt;}
.y91{bottom:160.327600pt;}
.y3a{bottom:167.367600pt;}
.y122{bottom:169.607600pt;}
.y5c{bottom:171.527600pt;}
.ybe{bottom:172.487600pt;}
.y90{bottom:175.687600pt;}
.yf1{bottom:180.487600pt;}
.y39{bottom:181.767600pt;}
.y121{bottom:184.967600pt;}
.y5b{bottom:186.887600pt;}
.y8f{bottom:191.047600pt;}
.yf0{bottom:195.847600pt;}
.y38{bottom:196.487600pt;}
.y120{bottom:200.327600pt;}
.ybd{bottom:201.607600pt;}
.y8e{bottom:206.407600pt;}
.y37{bottom:210.887600pt;}
.yef{bottom:211.207600pt;}
.y5a{bottom:212.807600pt;}
.y11f{bottom:215.687600pt;}
.ybc{bottom:216.007600pt;}
.y8d{bottom:221.767600pt;}
.yee{bottom:226.567600pt;}
.y59{bottom:228.167600pt;}
.y11e{bottom:231.047600pt;}
.y36{bottom:233.287600pt;}
.y8c{bottom:237.127600pt;}
.ybb{bottom:238.407600pt;}
.yed{bottom:241.927600pt;}
.y58{bottom:244.487600pt;}
.y11d{bottom:246.087600pt;}
.y35{bottom:248.007600pt;}
.y8b{bottom:252.487600pt;}
.yba{bottom:253.127600pt;}
.yec{bottom:257.287600pt;}
.y57{bottom:259.847600pt;}
.y11c{bottom:261.447600pt;}
.y34{bottom:262.727600pt;}
.y8a{bottom:267.847600pt;}
.yeb{bottom:272.647600pt;}
.y56{bottom:276.167600pt;}
.y11b{bottom:276.807600pt;}
.y33{bottom:277.127600pt;}
.yb9{bottom:282.247600pt;}
.y89{bottom:283.207600pt;}
.yea{bottom:288.007600pt;}
.y55{bottom:291.527600pt;}
.y32{bottom:291.847600pt;}
.y11a{bottom:293.127600pt;}
.yb8{bottom:296.967600pt;}
.y88{bottom:298.247600pt;}
.ye9{bottom:303.367600pt;}
.y31{bottom:306.247600pt;}
.y54{bottom:307.527600pt;}
.y119{bottom:308.487600pt;}
.yb7{bottom:311.367600pt;}
.y87{bottom:313.607600pt;}
.y30{bottom:320.967600pt;}
.y53{bottom:322.887600pt;}
.y118{bottom:323.847600pt;}
.ye8{bottom:326.727600pt;}
.y86{bottom:328.967600pt;}
.yb6{bottom:330.567600pt;}
.y2f{bottom:335.367600pt;}
.y52{bottom:338.247600pt;}
.y117{bottom:339.207600pt;}
.ye7{bottom:342.087600pt;}
.y85{bottom:344.327600pt;}
.y2e{bottom:350.087600pt;}
.y51{bottom:354.567600pt;}
.yb5{bottom:356.487600pt;}
.ye6{bottom:357.447600pt;}
.y84{bottom:359.687600pt;}
.y2d{bottom:364.487600pt;}
.y50{bottom:369.927600pt;}
.ye5{bottom:372.807600pt;}
.yb4{bottom:373.767600pt;}
.y2c{bottom:379.207600pt;}
.y4f{bottom:385.287600pt;}
.y83{bottom:385.607600pt;}
.y116{bottom:386.247600pt;}
.ye4{bottom:387.847600pt;}
.yb3{bottom:388.487600pt;}
.y2b{bottom:393.607600pt;}
.y82{bottom:400.967600pt;}
.y4e{bottom:401.607600pt;}
.yb2{bottom:402.887600pt;}
.ye3{bottom:403.527600pt;}
.y2a{bottom:408.327600pt;}
.y81{bottom:416.327600pt;}
.y115{bottom:416.647600pt;}
.y4d{bottom:416.967600pt;}
.yb1{bottom:417.607600pt;}
.y29{bottom:422.727600pt;}
.ye2{bottom:426.567600pt;}
.y80{bottom:431.687600pt;}
.yb0{bottom:432.007600pt;}
.y28{bottom:437.447600pt;}
.ye1{bottom:441.927600pt;}
.y4c{bottom:443.847600pt;}
.y7f{bottom:447.047600pt;}
.y114{bottom:447.367600pt;}
.yaf{bottom:454.407600pt;}
.ye0{bottom:457.287600pt;}
.y27{bottom:457.927600pt;}
.y7e{bottom:462.407600pt;}
.y113{bottom:462.727600pt;}
.y4b{bottom:467.207600pt;}
.yae{bottom:469.127600pt;}
.ydf{bottom:472.647600pt;}
.y7d{bottom:477.767600pt;}
.y4a{bottom:481.927600pt;}
.yad{bottom:483.847600pt;}
.y26{bottom:486.087600pt;}
.yde{bottom:488.007600pt;}
.y112{bottom:489.607600pt;}
.y7c{bottom:493.127600pt;}
.y49{bottom:496.327600pt;}
.yac{bottom:498.247600pt;}
.ydd{bottom:503.367600pt;}
.y7b{bottom:508.487600pt;}
.y48{bottom:511.047600pt;}
.yab{bottom:512.967600pt;}
.y25{bottom:513.287600pt;}
.y111{bottom:515.847600pt;}
.y7a{bottom:523.847600pt;}
.y47{bottom:525.447600pt;}
.ydc{bottom:526.727600pt;}
.y24{bottom:527.047600pt;}
.yaa{bottom:527.687600pt;}
.y110{bottom:531.207600pt;}
.y79{bottom:538.887600pt;}
.y46{bottom:540.167600pt;}
.y23{bottom:540.807600pt;}
.y10f{bottom:546.247600pt;}
.ydb{bottom:549.767600pt;}
.ya9{bottom:550.087600pt;}
.y78{bottom:554.247600pt;}
.y22{bottom:554.567600pt;}
.y10e{bottom:561.607600pt;}
.yda{bottom:564.487600pt;}
.ya8{bottom:564.807600pt;}
.y21{bottom:568.327600pt;}
.y45{bottom:569.287600pt;}
.y77{bottom:569.607600pt;}
.y10d{bottom:576.967600pt;}
.ya7{bottom:579.207600pt;}
.y20{bottom:582.407600pt;}
.y76{bottom:590.727600pt;}
.y44{bottom:591.687600pt;}
.y10c{bottom:592.327600pt;}
.yd9{bottom:593.607600pt;}
.y1f{bottom:596.167600pt;}
.ya6{bottom:597.767600pt;}
.y43{bottom:606.407600pt;}
.yd8{bottom:608.327600pt;}
.y1e{bottom:609.927600pt;}
.y10b{bottom:613.767600pt;}
.y75{bottom:619.527600pt;}
.y42{bottom:620.807600pt;}
.ya5{bottom:621.127600pt;}
.yd7{bottom:622.727600pt;}
.y1d{bottom:623.687600pt;}
.y74{bottom:634.887600pt;}
.y41{bottom:635.527600pt;}
.ya4{bottom:636.487600pt;}
.y1c{bottom:637.447600pt;}
.y10a{bottom:641.927600pt;}
.y40{bottom:649.927600pt;}
.y73{bottom:650.247600pt;}
.y1b{bottom:651.207600pt;}
.yd6{bottom:651.847600pt;}
.y109{bottom:656.647600pt;}
.ya3{bottom:657.607600pt;}
.y3f{bottom:664.647600pt;}
.y1a{bottom:664.967600pt;}
.y72{bottom:665.287600pt;}
.y108{bottom:671.367600pt;}
.yd5{bottom:674.247600pt;}
.y71{bottom:680.647600pt;}
.y19{bottom:680.967600pt;}
.y107{bottom:685.767600pt;}
.yd4{bottom:688.967600pt;}
.ya2{bottom:691.527600pt;}
.y70{bottom:696.007600pt;}
.y106{bottom:700.487600pt;}
.yd3{bottom:703.687600pt;}
.ya1{bottom:706.887600pt;}
.y18{bottom:709.767600pt;}
.y6f{bottom:711.367600pt;}
.y105{bottom:714.887600pt;}
.yd2{bottom:718.087600pt;}
.ya0{bottom:722.247600pt;}
.y17{bottom:723.527600pt;}
.y6e{bottom:726.727600pt;}
.yd1{bottom:732.807600pt;}
.y104{bottom:737.287600pt;}
.y9f{bottom:737.607600pt;}
.y6d{bottom:742.087600pt;}
.yd0{bottom:747.207600pt;}
.y103{bottom:752.007600pt;}
.y9e{bottom:752.967600pt;}
.y6c{bottom:757.447600pt;}
.ycf{bottom:761.927600pt;}
.y102{bottom:766.727600pt;}
.y16{bottom:767.687600pt;}
.y9d{bottom:768.327600pt;}
.yc{bottom:769.927600pt;}
.yce{bottom:776.327600pt;}
.y101{bottom:781.127600pt;}
.y15{bottom:781.447600pt;}
.y6b{bottom:783.367600pt;}
.yb{bottom:783.687600pt;}
.ycd{bottom:791.047600pt;}
.y14{bottom:795.207600pt;}
.y100{bottom:795.847600pt;}
.ya{bottom:797.447600pt;}
.y6a{bottom:798.727600pt;}
.yf{bottom:799.367600pt;}
.y13{bottom:808.967600pt;}
.yff{bottom:810.247600pt;}
.y9{bottom:811.207600pt;}
.ycc{bottom:813.447600pt;}
.y9c{bottom:814.087600pt;}
.y69{bottom:815.047600pt;}
.y12{bottom:822.727600pt;}
.y8{bottom:824.967600pt;}
.ycb{bottom:828.167600pt;}
.y9b{bottom:829.447600pt;}
.y68{bottom:830.407600pt;}
.ye{bottom:831.687600pt;}
.y11{bottom:836.487600pt;}
.y12d{bottom:838.407600pt;}
.y7{bottom:838.727600pt;}
.yfe{bottom:839.367600pt;}
.yca{bottom:842.567600pt;}
.y9a{bottom:844.807600pt;}
.y67{bottom:845.767600pt;}
.y10{bottom:850.567600pt;}
.y6{bottom:852.487600pt;}
.yfd{bottom:854.087600pt;}
.yc9{bottom:857.287600pt;}
.y12c{bottom:858.567600pt;}
.y99{bottom:860.167600pt;}
.y66{bottom:862.087600pt;}
.y129{bottom:862.407600pt;}
.yd{bottom:864.327600pt;}
.y5{bottom:866.567600pt;}
.yc8{bottom:871.687600pt;}
.yfc{bottom:876.487600pt;}
.y128{bottom:877.127600pt;}
.y65{bottom:877.447600pt;}
.y12b{bottom:879.047600pt;}
.y4{bottom:880.327600pt;}
.y98{bottom:881.287600pt;}
.yfb{bottom:891.207600pt;}
.y127{bottom:891.527600pt;}
.y64{bottom:893.767600pt;}
.yc7{bottom:894.407600pt;}
.yfa{bottom:905.607600pt;}
.y63{bottom:908.807600pt;}
.yc6{bottom:909.127600pt;}
.y97{bottom:909.767600pt;}
.y126{bottom:912.007600pt;}
.y12a{bottom:914.247600pt;}
.y3{bottom:917.127600pt;}
.yf9{bottom:920.327600pt;}
.yc5{bottom:923.527600pt;}
.y62{bottom:924.167600pt;}
.y96{bottom:925.127600pt;}
.yc4{bottom:938.247600pt;}
.y61{bottom:939.527600pt;}
.y95{bottom:940.487600pt;}
.yf8{bottom:942.727600pt;}
.yc3{bottom:952.647600pt;}
.y2{bottom:953.927600pt;}
.y60{bottom:955.847600pt;}
.yf7{bottom:957.447600pt;}
.y5f{bottom:971.207600pt;}
.yf6{bottom:971.847600pt;}
.h1{height:30.318750pt;}
.h4{height:32.941250pt;}
.h5{height:32.965000pt;}
.h3{height:33.772500pt;}
.h8{height:37.327500pt;}
.h7{height:37.353750pt;}
.h9{height:42.656250pt;}
.h6{height:43.343750pt;}
.h2{height:88.875000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:54.685616pt;}
.x15{left:56.905680pt;}
.x1{left:59.832432pt;}
.x14{left:60.792400pt;}
.x13{left:78.925840pt;}
.x16{left:79.992272pt;}
.x1c{left:84.792400pt;}
.x2{left:89.673904pt;}
.x7{left:94.489968pt;}
.x5{left:105.496816pt;}
.x1b{left:108.792368pt;}
.x6{left:125.667728pt;}
.x9{left:136.337648pt;}
.x4{left:138.010480pt;}
.x10{left:141.532304pt;}
.x8{left:171.165776pt;}
.x3{left:294.986384pt;}
.x11{left:319.452240pt;}
.xa{left:408.285840pt;}
.x1e{left:412.145680pt;}
.x1f{left:413.991440pt;}
.x17{left:420.472400pt;}
.x18{left:439.672400pt;}
.x19{left:444.472400pt;}
.x1a{left:468.472400pt;}
.x12{left:497.052240pt;}
.xc{left:564.253200pt;}
.xe{left:604.387280pt;}
.xd{left:608.907600pt;}
.xb{left:615.909520pt;}
.xf{left:645.405840pt;}
}




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