
    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_3613c1ea38be0a8e9172bee1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.688965;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_510a6ed47532677ef77e2ea5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_8653f553a2ffa964de1af3f6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_c0ac62f296658bb23d789444.woff')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_74bbf8daba2f7b6553870587.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aef2806176c27f5070344a3e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6a94baa7989e202056f5b9aa.woff')format("woff");}.ff7{font-family:ff7;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;}
.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(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.681600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-4.416000px;}
.ls12{letter-spacing:-1.776000px;}
.ls11{letter-spacing:-1.440000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.275616px;}
.ls1e{letter-spacing:0.294000px;}
.lsf{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.783600px;}
.ls0{letter-spacing:1.800000px;}
.ls20{letter-spacing:2.520000px;}
.lse{letter-spacing:3.600000px;}
.lsa{letter-spacing:3.960000px;}
.ls3{letter-spacing:4.015800px;}
.ls9{letter-spacing:4.320000px;}
.lsc{letter-spacing:4.980000px;}
.ls5{letter-spacing:5.000400px;}
.ls1c{letter-spacing:5.460600px;}
.ls1a{letter-spacing:5.574600px;}
.ls7{letter-spacing:5.935800px;}
.lsb{letter-spacing:9.120000px;}
.ls4{letter-spacing:9.127800px;}
.ls1d{letter-spacing:9.492000px;}
.ls10{letter-spacing:9.494400px;}
.ls1b{letter-spacing:10.007400px;}
.ls6{letter-spacing:17.100000px;}
.lsd{letter-spacing:20.400000px;}
.ls19{letter-spacing:116.132400px;}
.ls18{letter-spacing:117.457200px;}
.ls16{letter-spacing:119.679600px;}
.ls17{letter-spacing:120.096600px;}
.ls14{letter-spacing:121.003200px;}
.ls15{letter-spacing:121.878000px;}
.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;}
}
.ws35{word-spacing:-132.096600px;}
.ws1{word-spacing:-22.500000px;}
.ws13{word-spacing:-20.400000px;}
.ws12{word-spacing:-17.100000px;}
.ws6{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.000000px;}
.wsf{word-spacing:-9.120000px;}
.ws3{word-spacing:-6.890400px;}
.ws10{word-spacing:-4.980000px;}
.wsc{word-spacing:-4.320000px;}
.wse{word-spacing:-3.960000px;}
.ws19{word-spacing:-3.600000px;}
.ws3c{word-spacing:-2.520000px;}
.ws15{word-spacing:-2.040000px;}
.ws8{word-spacing:-1.800000px;}
.ws27{word-spacing:-1.056000px;}
.ws1b{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.540000px;}
.ws0{word-spacing:-0.041760px;}
.ws4{word-spacing:-0.027562px;}
.ws7{word-spacing:0.000000px;}
.ws1d{word-spacing:0.180000px;}
.ws41{word-spacing:0.768000px;}
.ws1e{word-spacing:1.080000px;}
.ws11{word-spacing:1.140000px;}
.ws26{word-spacing:1.440000px;}
.ws16{word-spacing:1.980000px;}
.ws1f{word-spacing:2.160000px;}
.ws18{word-spacing:2.460000px;}
.ws40{word-spacing:2.928000px;}
.ws3d{word-spacing:3.552000px;}
.wsd{word-spacing:3.960000px;}
.ws17{word-spacing:5.760000px;}
.ws14{word-spacing:5.952000px;}
.ws3e{word-spacing:7.200000px;}
.ws1a{word-spacing:8.880000px;}
.ws3f{word-spacing:9.504000px;}
.wsb{word-spacing:9.936000px;}
.ws20{word-spacing:14.580000px;}
.ws1c{word-spacing:15.780000px;}
.ws9{word-spacing:16.794000px;}
.ws42{word-spacing:21.165000px;}
.ws32{word-spacing:68.112600px;}
.ws2a{word-spacing:92.112600px;}
.ws33{word-spacing:97.269000px;}
.ws2f{word-spacing:98.593200px;}
.ws2b{word-spacing:100.374600px;}
.ws2d{word-spacing:105.456600px;}
.ws39{word-spacing:106.609200px;}
.ws2c{word-spacing:106.772400px;}
.ws31{word-spacing:106.780800px;}
.ws3b{word-spacing:106.781400px;}
.ws36{word-spacing:108.096600px;}
.ws37{word-spacing:116.084400px;}
.ws2e{word-spacing:119.190000px;}
.ws3a{word-spacing:119.190600px;}
.ws34{word-spacing:119.631000px;}
.ws38{word-spacing:122.736600px;}
.ws30{word-spacing:122.737200px;}
.ws22{word-spacing:265.356000px;}
.ws23{word-spacing:269.793000px;}
.ws29{word-spacing:272.035200px;}
.ws21{word-spacing:277.356000px;}
.ws24{word-spacing:486.605400px;}
.ws25{word-spacing:572.297400px;}
.ws28{word-spacing:572.298000px;}
._f{margin-left:-14.515800px;}
._47{margin-left:-12.492600px;}
._d{margin-left:-9.494400px;}
._0{margin-left:-6.574200px;}
._10{margin-left:-5.349600px;}
._b{margin-left:-4.200000px;}
._7{margin-left:-3.088800px;}
._3{margin-left:-1.800000px;}
._2{width:1.800000px;}
._8{width:3.022200px;}
._4{width:4.044600px;}
._6{width:5.626800px;}
._c{width:6.828000px;}
._9{width:8.051400px;}
._a{width:9.922800px;}
._12{width:11.116800px;}
._19{width:12.363600px;}
._1a{width:13.750800px;}
._5{width:16.779000px;}
._14{width:17.964000px;}
._18{width:19.062000px;}
._e{width:20.166000px;}
._11{width:21.564000px;}
._1b{width:22.779600px;}
._16{width:24.792000px;}
._13{width:34.536000px;}
._15{width:35.670000px;}
._17{width:49.945200px;}
._1{width:51.700800px;}
._45{width:65.249400px;}
._3d{width:77.249400px;}
._44{width:92.113200px;}
._43{width:104.112600px;}
._46{width:109.269000px;}
._40{width:118.781400px;}
._3e{width:120.097200px;}
._3f{width:121.887000px;}
._41{width:129.010200px;}
._42{width:136.128600px;}
._1c{width:263.701200px;}
._32{width:277.356000px;}
._3a{width:280.027800px;}
._28{width:289.356000px;}
._3b{width:301.292400px;}
._21{width:325.294800px;}
._20{width:330.648600px;}
._1f{width:335.953800px;}
._1e{width:341.301600px;}
._3c{width:345.239400px;}
._1d{width:404.617200px;}
._29{width:427.308600px;}
._38{width:451.274400px;}
._2a{width:473.943000px;}
._30{width:475.929600px;}
._2b{width:485.257800px;}
._24{width:502.613400px;}
._2d{width:509.281200px;}
._33{width:515.902200px;}
._39{width:519.417600px;}
._31{width:522.570000px;}
._22{width:527.890800px;}
._26{width:529.273200px;}
._2c{width:531.913800px;}
._35{width:535.941000px;}
._37{width:542.605800px;}
._2f{width:545.230200px;}
._25{width:549.262200px;}
._2e{width:555.938400px;}
._34{width:562.565400px;}
._23{width:571.936800px;}
._27{width:575.930400px;}
._36{width:582.606600px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.561600px;}
.fs1{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.802900px;}
.y23{bottom:103.020300px;}
.y110{bottom:103.269300px;}
.y55{bottom:107.624850px;}
.ya9{bottom:115.644600px;}
.yd3{bottom:118.168200px;}
.y10f{bottom:119.769300px;}
.y22{bottom:120.420300px;}
.y54{bottom:125.024850px;}
.ya8{bottom:136.202400px;}
.y21{bottom:137.820300px;}
.yd2{bottom:138.726000px;}
.y53{bottom:142.424850px;}
.y80{bottom:150.390600px;}
.y20{bottom:155.220300px;}
.ya7{bottom:156.760050px;}
.yd1{bottom:159.283800px;}
.y52{bottom:159.824850px;}
.y7f{bottom:168.690600px;}
.y1f{bottom:172.620300px;}
.y51{bottom:177.224700px;}
.ya6{bottom:177.317850px;}
.yd0{bottom:179.841450px;}
.y7e{bottom:186.990600px;}
.y1e{bottom:190.020300px;}
.ya5{bottom:197.875500px;}
.y50{bottom:198.876750px;}
.ycf{bottom:200.399250px;}
.y7d{bottom:209.542500px;}
.y1d{bottom:211.672200px;}
.y4f{bottom:216.276750px;}
.ya4{bottom:218.433300px;}
.yea{bottom:220.884450px;}
.yce{bottom:220.956900px;}
.y7c{bottom:227.842500px;}
.y1c{bottom:229.072200px;}
.y4e{bottom:233.676750px;}
.ye9{bottom:235.884450px;}
.ya3{bottom:238.991100px;}
.ycd{bottom:241.514700px;}
.y7b{bottom:246.142500px;}
.y1b{bottom:246.472200px;}
.ye8{bottom:250.884450px;}
.y4d{bottom:251.076750px;}
.ya2{bottom:259.548750px;}
.ycc{bottom:262.072500px;}
.y1a{bottom:263.872350px;}
.y7a{bottom:264.442500px;}
.ye7{bottom:268.884450px;}
.y4c{bottom:272.728800px;}
.ya1{bottom:280.106550px;}
.y19{bottom:281.272200px;}
.ycb{bottom:282.630300px;}
.y79{bottom:282.742500px;}
.ye6{bottom:283.884450px;}
.y4b{bottom:290.128800px;}
.y18{bottom:298.672200px;}
.ye5{bottom:298.884450px;}
.ya0{bottom:300.664350px;}
.yca{bottom:303.187950px;}
.y78{bottom:305.294550px;}
.y4a{bottom:311.780700px;}
.y17{bottom:316.072200px;}
.y9f{bottom:321.222000px;}
.y77{bottom:323.594550px;}
.yc9{bottom:323.745750px;}
.y49{bottom:329.180700px;}
.y9e{bottom:341.779800px;}
.y76{bottom:341.894550px;}
.yc8{bottom:344.303400px;}
.y16{bottom:346.228200px;}
.y48{bottom:346.580700px;}
.y9d{bottom:362.337600px;}
.y47{bottom:363.980700px;}
.y75{bottom:364.446450px;}
.yc7{bottom:364.861200px;}
.y15{bottom:372.732150px;}
.y46{bottom:381.380700px;}
.y74{bottom:382.746450px;}
.y9c{bottom:382.895250px;}
.yc6{bottom:385.419000px;}
.y14{bottom:392.232150px;}
.y45{bottom:398.780700px;}
.y73{bottom:401.046450px;}
.y9b{bottom:403.453050px;}
.yc5{bottom:405.976800px;}
.y44{bottom:416.180700px;}
.y72{bottom:419.346450px;}
.y9a{bottom:424.010850px;}
.y13{bottom:425.232150px;}
.yc4{bottom:426.534450px;}
.y10e{bottom:430.354350px;}
.y43{bottom:433.580700px;}
.y71{bottom:437.646450px;}
.y12{bottom:443.982150px;}
.y99{bottom:444.568650px;}
.y10d{bottom:444.754350px;}
.yc3{bottom:447.092250px;}
.y42{bottom:455.232600px;}
.y70{bottom:455.946450px;}
.y10c{bottom:459.154350px;}
.y11{bottom:462.732150px;}
.y98{bottom:465.126300px;}
.yc2{bottom:467.650050px;}
.y41{bottom:472.632600px;}
.y10b{bottom:473.554350px;}
.y6f{bottom:474.246450px;}
.y10{bottom:481.482150px;}
.y97{bottom:485.684100px;}
.y10a{bottom:487.954350px;}
.yc1{bottom:488.207700px;}
.y6e{bottom:492.546450px;}
.y40{bottom:494.284650px;}
.yf{bottom:500.232150px;}
.y109{bottom:502.354350px;}
.y96{bottom:506.241750px;}
.yc0{bottom:508.765500px;}
.y3f{bottom:511.684650px;}
.y6d{bottom:515.098500px;}
.y108{bottom:516.754350px;}
.ye{bottom:518.982150px;}
.y95{bottom:526.799550px;}
.y3e{bottom:529.084650px;}
.ybf{bottom:529.323150px;}
.y107{bottom:531.154350px;}
.y6c{bottom:533.398500px;}
.yd{bottom:537.732150px;}
.y106{bottom:545.554350px;}
.y3d{bottom:546.484650px;}
.y94{bottom:547.357350px;}
.ybe{bottom:549.880950px;}
.y6b{bottom:551.698500px;}
.yc{bottom:556.482150px;}
.y105{bottom:559.954350px;}
.y3c{bottom:563.884650px;}
.y93{bottom:567.915000px;}
.ybd{bottom:570.438750px;}
.y6a{bottom:574.250400px;}
.y104{bottom:574.354350px;}
.y92{bottom:588.472800px;}
.y103{bottom:588.754350px;}
.ybc{bottom:590.996550px;}
.y69{bottom:592.550400px;}
.y3b{bottom:594.040500px;}
.y102{bottom:603.154350px;}
.y91{bottom:609.030600px;}
.y68{bottom:610.850400px;}
.ybb{bottom:611.554200px;}
.y101{bottom:617.554350px;}
.y3a{bottom:624.196500px;}
.yb{bottom:625.416300px;}
.y67{bottom:629.150400px;}
.y90{bottom:629.475450px;}
.y100{bottom:631.954350px;}
.yba{bottom:632.112000px;}
.ye4{bottom:641.321550px;}
.y39{bottom:641.596500px;}
.ya{bottom:642.439200px;}
.yff{bottom:646.354350px;}
.y66{bottom:647.450400px;}
.y8f{bottom:649.920300px;}
.yb9{bottom:652.669650px;}
.y38{bottom:658.996500px;}
.y9{bottom:659.462100px;}
.yfe{bottom:660.754350px;}
.ye3{bottom:661.879350px;}
.y65{bottom:670.002450px;}
.y8e{bottom:670.359300px;}
.yb8{bottom:673.227450px;}
.yfd{bottom:675.154350px;}
.y37{bottom:676.396500px;}
.ye2{bottom:682.437000px;}
.y8{bottom:686.560500px;}
.y64{bottom:688.302450px;}
.y8d{bottom:689.011350px;}
.yfc{bottom:689.554350px;}
.yb7{bottom:693.785250px;}
.y36{bottom:693.796350px;}
.ye1{bottom:702.876000px;}
.yfb{bottom:703.954350px;}
.y7{bottom:705.212550px;}
.y63{bottom:706.602300px;}
.y35{bottom:711.196500px;}
.yb6{bottom:714.342900px;}
.y8c{bottom:717.018300px;}
.yfa{bottom:718.354350px;}
.ye0{bottom:721.528050px;}
.y62{bottom:724.902300px;}
.y6{bottom:732.212550px;}
.yf9{bottom:732.754350px;}
.y34{bottom:732.848400px;}
.yb5{bottom:734.900700px;}
.y8b{bottom:735.018300px;}
.ydf{bottom:741.773700px;}
.y61{bottom:743.202450px;}
.yf8{bottom:747.154350px;}
.y33{bottom:750.248400px;}
.yb4{bottom:755.458350px;}
.y5{bottom:759.212550px;}
.y60{bottom:761.502450px;}
.yf7{bottom:761.554350px;}
.yde{bottom:762.331500px;}
.y32{bottom:767.648400px;}
.yf6{bottom:775.954350px;}
.yb3{bottom:776.016150px;}
.y5f{bottom:779.802450px;}
.y88{bottom:780.152550px;}
.ydd{bottom:782.889150px;}
.y31{bottom:785.048400px;}
.y4{bottom:786.212550px;}
.yf5{bottom:790.354350px;}
.yb2{bottom:796.573950px;}
.y5e{bottom:798.102300px;}
.y87{bottom:800.710200px;}
.y30{bottom:802.448400px;}
.ydc{bottom:803.328300px;}
.yf4{bottom:804.754350px;}
.y3{bottom:813.212550px;}
.y5d{bottom:816.402300px;}
.yb1{bottom:817.131750px;}
.yf3{bottom:819.154350px;}
.y86{bottom:821.268000px;}
.ydb{bottom:821.980200px;}
.y2f{bottom:824.100450px;}
.yf2{bottom:833.554350px;}
.y5c{bottom:834.702450px;}
.yb0{bottom:837.689400px;}
.y2e{bottom:841.500300px;}
.y85{bottom:841.825800px;}
.yda{bottom:842.225850px;}
.yf1{bottom:847.954350px;}
.y5b{bottom:853.002450px;}
.yaf{bottom:858.247050px;}
.y2d{bottom:858.900450px;}
.y84{bottom:862.270650px;}
.yf0{bottom:862.354350px;}
.yd9{bottom:862.670700px;}
.y2{bottom:864.212550px;}
.y5a{bottom:871.302450px;}
.y2c{bottom:876.300450px;}
.yef{bottom:876.754350px;}
.yae{bottom:878.804850px;}
.y83{bottom:882.715650px;}
.yd8{bottom:883.115700px;}
.yee{bottom:891.154500px;}
.y2b{bottom:893.700300px;}
.y59{bottom:893.854500px;}
.yad{bottom:899.362650px;}
.y82{bottom:903.154650px;}
.yd7{bottom:903.554700px;}
.yed{bottom:905.554350px;}
.y2a{bottom:911.100450px;}
.y58{bottom:912.154500px;}
.yac{bottom:919.920450px;}
.yec{bottom:919.954500px;}
.y26{bottom:920.042100px;}
.y81{bottom:921.806550px;}
.yd6{bottom:922.206600px;}
.y29{bottom:928.500300px;}
.y57{bottom:930.454500px;}
.yeb{bottom:934.354500px;}
.yab{bottom:940.359450px;}
.y25{bottom:942.542100px;}
.y28{bottom:945.900450px;}
.y8a{bottom:947.368650px;}
.yd5{bottom:947.380500px;}
.yaa{bottom:959.011350px;}
.y56{bottom:961.510350px;}
.y27{bottom:963.300450px;}
.y24{bottom:963.542100px;}
.y89{bottom:965.368650px;}
.yd4{bottom:965.380500px;}
.h6{height:23.972541px;}
.hd{height:35.411133px;}
.h5{height:40.054688px;}
.hc{height:42.632812px;}
.h8{height:45.061523px;}
.h7{height:47.961914px;}
.h2{height:48.761719px;}
.ha{height:50.068359px;}
.hb{height:53.291016px;}
.h3{height:60.082031px;}
.h9{height:63.949219px;}
.h4{height:79.936523px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x10{left:68.031450px;}
.x29{left:74.708550px;}
.x13{left:78.607800px;}
.x20{left:79.946550px;}
.x2a{left:81.042600px;}
.x1c{left:82.946550px;}
.x11{left:93.543300px;}
.x2{left:102.047250px;}
.x4{left:108.068100px;}
.x21{left:112.623450px;}
.x27{left:113.962350px;}
.x15{left:117.152250px;}
.x14{left:119.156100px;}
.xe{left:127.558950px;}
.x3{left:136.686150px;}
.x6{left:144.971100px;}
.x1d{left:147.234750px;}
.x5{left:149.316300px;}
.xc{left:153.070800px;}
.x23{left:179.246550px;}
.x22{left:181.250550px;}
.x7{left:191.212650px;}
.x9{left:192.767100px;}
.xa{left:217.351200px;}
.xb{left:231.240900px;}
.x17{left:253.039950px;}
.x12{left:256.737900px;}
.x16{left:261.202050px;}
.x8{left:279.038400px;}
.x28{left:280.516200px;}
.x2b{left:297.618600px;}
.xf{left:318.076350px;}
.xd{left:344.750700px;}
.x24{left:351.445800px;}
.x18{left:383.838750px;}
.x19{left:390.852300px;}
.x1f{left:507.901650px;}
.x1e{left:510.564750px;}
.x1b{left:529.315200px;}
.x1a{left:531.978300px;}
.x26{left:541.917450px;}
.x25{left:544.580400px;}
.x1{left:645.803100px;}
@media print{
.v2{vertical-align:-13.939200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-3.925333pt;}
.ls12{letter-spacing:-1.578667pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.244992pt;}
.ls1e{letter-spacing:0.261333pt;}
.lsf{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.696533pt;}
.ls0{letter-spacing:1.600000pt;}
.ls20{letter-spacing:2.240000pt;}
.lse{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.520000pt;}
.ls3{letter-spacing:3.569600pt;}
.ls9{letter-spacing:3.840000pt;}
.lsc{letter-spacing:4.426667pt;}
.ls5{letter-spacing:4.444800pt;}
.ls1c{letter-spacing:4.853867pt;}
.ls1a{letter-spacing:4.955200pt;}
.ls7{letter-spacing:5.276267pt;}
.lsb{letter-spacing:8.106667pt;}
.ls4{letter-spacing:8.113600pt;}
.ls1d{letter-spacing:8.437333pt;}
.ls10{letter-spacing:8.439467pt;}
.ls1b{letter-spacing:8.895467pt;}
.ls6{letter-spacing:15.200000pt;}
.lsd{letter-spacing:18.133333pt;}
.ls19{letter-spacing:103.228800pt;}
.ls18{letter-spacing:104.406400pt;}
.ls16{letter-spacing:106.381867pt;}
.ls17{letter-spacing:106.752533pt;}
.ls14{letter-spacing:107.558400pt;}
.ls15{letter-spacing:108.336000pt;}
.ws35{word-spacing:-117.419200pt;}
.ws1{word-spacing:-20.000000pt;}
.ws13{word-spacing:-18.133333pt;}
.ws12{word-spacing:-15.200000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.wsf{word-spacing:-8.106667pt;}
.ws3{word-spacing:-6.124800pt;}
.ws10{word-spacing:-4.426667pt;}
.wsc{word-spacing:-3.840000pt;}
.wse{word-spacing:-3.520000pt;}
.ws19{word-spacing:-3.200000pt;}
.ws3c{word-spacing:-2.240000pt;}
.ws15{word-spacing:-1.813333pt;}
.ws8{word-spacing:-1.600000pt;}
.ws27{word-spacing:-0.938667pt;}
.ws1b{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.480000pt;}
.ws0{word-spacing:-0.037120pt;}
.ws4{word-spacing:-0.024499pt;}
.ws7{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.160000pt;}
.ws41{word-spacing:0.682667pt;}
.ws1e{word-spacing:0.960000pt;}
.ws11{word-spacing:1.013333pt;}
.ws26{word-spacing:1.280000pt;}
.ws16{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.920000pt;}
.ws18{word-spacing:2.186667pt;}
.ws40{word-spacing:2.602667pt;}
.ws3d{word-spacing:3.157333pt;}
.wsd{word-spacing:3.520000pt;}
.ws17{word-spacing:5.120000pt;}
.ws14{word-spacing:5.290667pt;}
.ws3e{word-spacing:6.400000pt;}
.ws1a{word-spacing:7.893333pt;}
.ws3f{word-spacing:8.448000pt;}
.wsb{word-spacing:8.832000pt;}
.ws20{word-spacing:12.960000pt;}
.ws1c{word-spacing:14.026667pt;}
.ws9{word-spacing:14.928000pt;}
.ws42{word-spacing:18.813333pt;}
.ws32{word-spacing:60.544533pt;}
.ws2a{word-spacing:81.877867pt;}
.ws33{word-spacing:86.461333pt;}
.ws2f{word-spacing:87.638400pt;}
.ws2b{word-spacing:89.221867pt;}
.ws2d{word-spacing:93.739200pt;}
.ws39{word-spacing:94.763733pt;}
.ws2c{word-spacing:94.908800pt;}
.ws31{word-spacing:94.916267pt;}
.ws3b{word-spacing:94.916800pt;}
.ws36{word-spacing:96.085867pt;}
.ws37{word-spacing:103.186133pt;}
.ws2e{word-spacing:105.946667pt;}
.ws3a{word-spacing:105.947200pt;}
.ws34{word-spacing:106.338667pt;}
.ws38{word-spacing:109.099200pt;}
.ws30{word-spacing:109.099733pt;}
.ws22{word-spacing:235.872000pt;}
.ws23{word-spacing:239.816000pt;}
.ws29{word-spacing:241.809067pt;}
.ws21{word-spacing:246.538667pt;}
.ws24{word-spacing:432.538133pt;}
.ws25{word-spacing:508.708800pt;}
.ws28{word-spacing:508.709333pt;}
._f{margin-left:-12.902933pt;}
._47{margin-left:-11.104533pt;}
._d{margin-left:-8.439467pt;}
._0{margin-left:-5.843733pt;}
._10{margin-left:-4.755200pt;}
._b{margin-left:-3.733333pt;}
._7{margin-left:-2.745600pt;}
._3{margin-left:-1.600000pt;}
._2{width:1.600000pt;}
._8{width:2.686400pt;}
._4{width:3.595200pt;}
._6{width:5.001600pt;}
._c{width:6.069333pt;}
._9{width:7.156800pt;}
._a{width:8.820267pt;}
._12{width:9.881600pt;}
._19{width:10.989867pt;}
._1a{width:12.222933pt;}
._5{width:14.914667pt;}
._14{width:15.968000pt;}
._18{width:16.944000pt;}
._e{width:17.925333pt;}
._11{width:19.168000pt;}
._1b{width:20.248533pt;}
._16{width:22.037333pt;}
._13{width:30.698667pt;}
._15{width:31.706667pt;}
._17{width:44.395733pt;}
._1{width:45.956267pt;}
._45{width:57.999467pt;}
._3d{width:68.666133pt;}
._44{width:81.878400pt;}
._43{width:92.544533pt;}
._46{width:97.128000pt;}
._40{width:105.583467pt;}
._3e{width:106.753067pt;}
._3f{width:108.344000pt;}
._41{width:114.675733pt;}
._42{width:121.003200pt;}
._1c{width:234.401067pt;}
._32{width:246.538667pt;}
._3a{width:248.913600pt;}
._28{width:257.205333pt;}
._3b{width:267.815467pt;}
._21{width:289.150933pt;}
._20{width:293.909867pt;}
._1f{width:298.625600pt;}
._1e{width:303.379200pt;}
._3c{width:306.879467pt;}
._1d{width:359.659733pt;}
._29{width:379.829867pt;}
._38{width:401.132800pt;}
._2a{width:421.282667pt;}
._30{width:423.048533pt;}
._2b{width:431.340267pt;}
._24{width:446.767467pt;}
._2d{width:452.694400pt;}
._33{width:458.579733pt;}
._39{width:461.704533pt;}
._31{width:464.506667pt;}
._22{width:469.236267pt;}
._26{width:470.465067pt;}
._2c{width:472.812267pt;}
._35{width:476.392000pt;}
._37{width:482.316267pt;}
._2f{width:484.649067pt;}
._25{width:488.233067pt;}
._2e{width:494.167467pt;}
._34{width:500.058133pt;}
._23{width:508.388267pt;}
._27{width:511.938133pt;}
._36{width:517.872533pt;}
.fs4{font-size:24.499200pt;}
.fs1{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.158133pt;}
.y23{bottom:91.573600pt;}
.y110{bottom:91.794933pt;}
.y55{bottom:95.666533pt;}
.ya9{bottom:102.795200pt;}
.yd3{bottom:105.038400pt;}
.y10f{bottom:106.461600pt;}
.y22{bottom:107.040267pt;}
.y54{bottom:111.133200pt;}
.ya8{bottom:121.068800pt;}
.y21{bottom:122.506933pt;}
.yd2{bottom:123.312000pt;}
.y53{bottom:126.599867pt;}
.y80{bottom:133.680533pt;}
.y20{bottom:137.973600pt;}
.ya7{bottom:139.342267pt;}
.yd1{bottom:141.585600pt;}
.y52{bottom:142.066533pt;}
.y7f{bottom:149.947200pt;}
.y1f{bottom:153.440267pt;}
.y51{bottom:157.533067pt;}
.ya6{bottom:157.615867pt;}
.yd0{bottom:159.859067pt;}
.y7e{bottom:166.213867pt;}
.y1e{bottom:168.906933pt;}
.ya5{bottom:175.889333pt;}
.y50{bottom:176.779333pt;}
.ycf{bottom:178.132667pt;}
.y7d{bottom:186.260000pt;}
.y1d{bottom:188.153067pt;}
.y4f{bottom:192.246000pt;}
.ya4{bottom:194.162933pt;}
.yea{bottom:196.341733pt;}
.yce{bottom:196.406133pt;}
.y7c{bottom:202.526667pt;}
.y1c{bottom:203.619733pt;}
.y4e{bottom:207.712667pt;}
.ye9{bottom:209.675067pt;}
.ya3{bottom:212.436533pt;}
.ycd{bottom:214.679733pt;}
.y7b{bottom:218.793333pt;}
.y1b{bottom:219.086400pt;}
.ye8{bottom:223.008400pt;}
.y4d{bottom:223.179333pt;}
.ya2{bottom:230.710000pt;}
.ycc{bottom:232.953333pt;}
.y1a{bottom:234.553200pt;}
.y7a{bottom:235.060000pt;}
.ye7{bottom:239.008400pt;}
.y4c{bottom:242.425600pt;}
.ya1{bottom:248.983600pt;}
.y19{bottom:250.019733pt;}
.ycb{bottom:251.226933pt;}
.y79{bottom:251.326667pt;}
.ye6{bottom:252.341733pt;}
.y4b{bottom:257.892267pt;}
.y18{bottom:265.486400pt;}
.ye5{bottom:265.675067pt;}
.ya0{bottom:267.257200pt;}
.yca{bottom:269.500400pt;}
.y78{bottom:271.372933pt;}
.y4a{bottom:277.138400pt;}
.y17{bottom:280.953067pt;}
.y9f{bottom:285.530667pt;}
.y77{bottom:287.639600pt;}
.yc9{bottom:287.774000pt;}
.y49{bottom:292.605067pt;}
.y9e{bottom:303.804267pt;}
.y76{bottom:303.906267pt;}
.yc8{bottom:306.047467pt;}
.y16{bottom:307.758400pt;}
.y48{bottom:308.071733pt;}
.y9d{bottom:322.077867pt;}
.y47{bottom:323.538400pt;}
.y75{bottom:323.952400pt;}
.yc7{bottom:324.321067pt;}
.y15{bottom:331.317467pt;}
.y46{bottom:339.005067pt;}
.y74{bottom:340.219067pt;}
.y9c{bottom:340.351333pt;}
.yc6{bottom:342.594667pt;}
.y14{bottom:348.650800pt;}
.y45{bottom:354.471733pt;}
.y73{bottom:356.485733pt;}
.y9b{bottom:358.624933pt;}
.yc5{bottom:360.868267pt;}
.y44{bottom:369.938400pt;}
.y72{bottom:372.752400pt;}
.y9a{bottom:376.898533pt;}
.y13{bottom:377.984133pt;}
.yc4{bottom:379.141733pt;}
.y10e{bottom:382.537200pt;}
.y43{bottom:385.405067pt;}
.y71{bottom:389.019067pt;}
.y12{bottom:394.650800pt;}
.y99{bottom:395.172133pt;}
.y10d{bottom:395.337200pt;}
.yc3{bottom:397.415333pt;}
.y42{bottom:404.651200pt;}
.y70{bottom:405.285733pt;}
.y10c{bottom:408.137200pt;}
.y11{bottom:411.317467pt;}
.y98{bottom:413.445600pt;}
.yc2{bottom:415.688933pt;}
.y41{bottom:420.117867pt;}
.y10b{bottom:420.937200pt;}
.y6f{bottom:421.552400pt;}
.y10{bottom:427.984133pt;}
.y97{bottom:431.719200pt;}
.y10a{bottom:433.737200pt;}
.yc1{bottom:433.962400pt;}
.y6e{bottom:437.819067pt;}
.y40{bottom:439.364133pt;}
.yf{bottom:444.650800pt;}
.y109{bottom:446.537200pt;}
.y96{bottom:449.992667pt;}
.yc0{bottom:452.236000pt;}
.y3f{bottom:454.830800pt;}
.y6d{bottom:457.865333pt;}
.y108{bottom:459.337200pt;}
.ye{bottom:461.317467pt;}
.y95{bottom:468.266267pt;}
.y3e{bottom:470.297467pt;}
.ybf{bottom:470.509467pt;}
.y107{bottom:472.137200pt;}
.y6c{bottom:474.132000pt;}
.yd{bottom:477.984133pt;}
.y106{bottom:484.937200pt;}
.y3d{bottom:485.764133pt;}
.y94{bottom:486.539867pt;}
.ybe{bottom:488.783067pt;}
.y6b{bottom:490.398667pt;}
.yc{bottom:494.650800pt;}
.y105{bottom:497.737200pt;}
.y3c{bottom:501.230800pt;}
.y93{bottom:504.813333pt;}
.ybd{bottom:507.056667pt;}
.y6a{bottom:510.444800pt;}
.y104{bottom:510.537200pt;}
.y92{bottom:523.086933pt;}
.y103{bottom:523.337200pt;}
.ybc{bottom:525.330267pt;}
.y69{bottom:526.711467pt;}
.y3b{bottom:528.036000pt;}
.y102{bottom:536.137200pt;}
.y91{bottom:541.360533pt;}
.y68{bottom:542.978133pt;}
.ybb{bottom:543.603733pt;}
.y101{bottom:548.937200pt;}
.y3a{bottom:554.841333pt;}
.yb{bottom:555.925600pt;}
.y67{bottom:559.244800pt;}
.y90{bottom:559.533733pt;}
.y100{bottom:561.737200pt;}
.yba{bottom:561.877333pt;}
.ye4{bottom:570.063600pt;}
.y39{bottom:570.308000pt;}
.ya{bottom:571.057067pt;}
.yff{bottom:574.537200pt;}
.y66{bottom:575.511467pt;}
.y8f{bottom:577.706933pt;}
.yb9{bottom:580.150800pt;}
.y38{bottom:585.774667pt;}
.y9{bottom:586.188533pt;}
.yfe{bottom:587.337200pt;}
.ye3{bottom:588.337200pt;}
.y65{bottom:595.557733pt;}
.y8e{bottom:595.874933pt;}
.yb8{bottom:598.424400pt;}
.yfd{bottom:600.137200pt;}
.y37{bottom:601.241333pt;}
.ye2{bottom:606.610667pt;}
.y8{bottom:610.276000pt;}
.y64{bottom:611.824400pt;}
.y8d{bottom:612.454533pt;}
.yfc{bottom:612.937200pt;}
.yb7{bottom:616.698000pt;}
.y36{bottom:616.707867pt;}
.ye1{bottom:624.778667pt;}
.yfb{bottom:625.737200pt;}
.y7{bottom:626.855600pt;}
.y63{bottom:628.090933pt;}
.y35{bottom:632.174667pt;}
.yb6{bottom:634.971467pt;}
.y8c{bottom:637.349600pt;}
.yfa{bottom:638.537200pt;}
.ye0{bottom:641.358267pt;}
.y62{bottom:644.357600pt;}
.y6{bottom:650.855600pt;}
.yf9{bottom:651.337200pt;}
.y34{bottom:651.420800pt;}
.yb5{bottom:653.245067pt;}
.y8b{bottom:653.349600pt;}
.ydf{bottom:659.354400pt;}
.y61{bottom:660.624400pt;}
.yf8{bottom:664.137200pt;}
.y33{bottom:666.887467pt;}
.yb4{bottom:671.518533pt;}
.y5{bottom:674.855600pt;}
.y60{bottom:676.891067pt;}
.yf7{bottom:676.937200pt;}
.yde{bottom:677.628000pt;}
.y32{bottom:682.354133pt;}
.yf6{bottom:689.737200pt;}
.yb3{bottom:689.792133pt;}
.y5f{bottom:693.157733pt;}
.y88{bottom:693.468933pt;}
.ydd{bottom:695.901467pt;}
.y31{bottom:697.820800pt;}
.y4{bottom:698.855600pt;}
.yf5{bottom:702.537200pt;}
.yb2{bottom:708.065733pt;}
.y5e{bottom:709.424267pt;}
.y87{bottom:711.742400pt;}
.y30{bottom:713.287467pt;}
.ydc{bottom:714.069600pt;}
.yf4{bottom:715.337200pt;}
.y3{bottom:722.855600pt;}
.y5d{bottom:725.690933pt;}
.yb1{bottom:726.339333pt;}
.yf3{bottom:728.137200pt;}
.y86{bottom:730.016000pt;}
.ydb{bottom:730.649067pt;}
.y2f{bottom:732.533733pt;}
.yf2{bottom:740.937200pt;}
.y5c{bottom:741.957733pt;}
.yb0{bottom:744.612800pt;}
.y2e{bottom:748.000267pt;}
.y85{bottom:748.289600pt;}
.yda{bottom:748.645200pt;}
.yf1{bottom:753.737200pt;}
.y5b{bottom:758.224400pt;}
.yaf{bottom:762.886267pt;}
.y2d{bottom:763.467067pt;}
.y84{bottom:766.462800pt;}
.yf0{bottom:766.537200pt;}
.yd9{bottom:766.818400pt;}
.y2{bottom:768.188933pt;}
.y5a{bottom:774.491067pt;}
.y2c{bottom:778.933733pt;}
.yef{bottom:779.337200pt;}
.yae{bottom:781.159867pt;}
.y83{bottom:784.636133pt;}
.yd8{bottom:784.991733pt;}
.yee{bottom:792.137333pt;}
.y2b{bottom:794.400267pt;}
.y59{bottom:794.537333pt;}
.yad{bottom:799.433467pt;}
.y82{bottom:802.804133pt;}
.yd7{bottom:803.159733pt;}
.yed{bottom:804.937200pt;}
.y2a{bottom:809.867067pt;}
.y58{bottom:810.804000pt;}
.yac{bottom:817.707067pt;}
.yec{bottom:817.737333pt;}
.y26{bottom:817.815200pt;}
.y81{bottom:819.383600pt;}
.yd6{bottom:819.739200pt;}
.y29{bottom:825.333600pt;}
.y57{bottom:827.070667pt;}
.yeb{bottom:830.537333pt;}
.yab{bottom:835.875067pt;}
.y25{bottom:837.815200pt;}
.y28{bottom:840.800400pt;}
.y8a{bottom:842.105467pt;}
.yd5{bottom:842.116000pt;}
.yaa{bottom:852.454533pt;}
.y56{bottom:854.675867pt;}
.y27{bottom:856.267067pt;}
.y24{bottom:856.481867pt;}
.y89{bottom:858.105467pt;}
.yd4{bottom:858.116000pt;}
.h6{height:21.308925pt;}
.hd{height:31.476562pt;}
.h5{height:35.604167pt;}
.hc{height:37.895833pt;}
.h8{height:40.054688pt;}
.h7{height:42.632812pt;}
.h2{height:43.343750pt;}
.ha{height:44.505208pt;}
.hb{height:47.369792pt;}
.h3{height:53.406250pt;}
.h9{height:56.843750pt;}
.h4{height:71.054688pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x10{left:60.472400pt;}
.x29{left:66.407600pt;}
.x13{left:69.873600pt;}
.x20{left:71.063600pt;}
.x2a{left:72.037867pt;}
.x1c{left:73.730267pt;}
.x11{left:83.149600pt;}
.x2{left:90.708667pt;}
.x4{left:96.060533pt;}
.x21{left:100.109733pt;}
.x27{left:101.299867pt;}
.x15{left:104.135333pt;}
.x14{left:105.916533pt;}
.xe{left:113.385733pt;}
.x3{left:121.498800pt;}
.x6{left:128.863200pt;}
.x1d{left:130.875333pt;}
.x5{left:132.725600pt;}
.xc{left:136.062933pt;}
.x23{left:159.330267pt;}
.x22{left:161.111600pt;}
.x7{left:169.966800pt;}
.x9{left:171.348533pt;}
.xa{left:193.201067pt;}
.xb{left:205.547467pt;}
.x17{left:224.924400pt;}
.x12{left:228.211467pt;}
.x16{left:232.179600pt;}
.x8{left:248.034133pt;}
.x28{left:249.347733pt;}
.x2b{left:264.549867pt;}
.xf{left:282.734533pt;}
.xd{left:306.445067pt;}
.x24{left:312.396267pt;}
.x18{left:341.190000pt;}
.x19{left:347.424267pt;}
.x1f{left:451.468133pt;}
.x1e{left:453.835333pt;}
.x1b{left:470.502400pt;}
.x1a{left:472.869600pt;}
.x26{left:481.704400pt;}
.x25{left:484.071467pt;}
.x1{left:574.047200pt;}
}




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