
    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_8df27a2e10ba839268456265.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_af238db3ce15e18f8f315451.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.859863;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_ad01ad5b4cc8bd19a4e76b9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_38862b646f62ac37d126bf15.woff2')format("woff");}.ff6{font-family:ff6;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;}
.ls24{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.086400px;}
.lsb{letter-spacing:-0.046116px;}
.lsf{letter-spacing:-0.036000px;}
.ls1c{letter-spacing:-0.028800px;}
.ls1d{letter-spacing:-0.021600px;}
.ls11{letter-spacing:-0.014400px;}
.ls1b{letter-spacing:-0.007200px;}
.lsc{letter-spacing:-0.006588px;}
.lsa{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.009720px;}
.ls8{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.025164px;}
.ls17{letter-spacing:0.028800px;}
.ls4{letter-spacing:0.032940px;}
.ls13{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.043200px;}
.lse{letter-spacing:0.047952px;}
.ls9{letter-spacing:0.050400px;}
.ls18{letter-spacing:0.057600px;}
.ls12{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.065880px;}
.ls6{letter-spacing:0.067032px;}
.lsd{letter-spacing:0.071928px;}
.ls16{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.079200px;}
.ls21{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.093240px;}
.ls2a{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.100800px;}
.ls30{letter-spacing:0.122400px;}
.ls5{letter-spacing:0.143640px;}
.ls25{letter-spacing:0.158400px;}
.ls1f{letter-spacing:24.624000px;}
.ls2c{letter-spacing:24.984000px;}
.ls27{letter-spacing:27.864000px;}
.ls1e{letter-spacing:28.944000px;}
.ls2b{letter-spacing:29.304000px;}
.ls26{letter-spacing:32.184000px;}
.ls20{letter-spacing:36.864000px;}
.ls2d{letter-spacing:37.224000px;}
.ls28{letter-spacing:40.104000px;}
.ls22{letter-spacing:40.824000px;}
.ls2e{letter-spacing:41.184000px;}
.ls23{letter-spacing:51.624000px;}
.ls29{letter-spacing:51.984000px;}
.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;}
}
.ws4a{word-spacing:-72.000000px;}
.ws49{word-spacing:-18.158400px;}
.ws46{word-spacing:-18.086400px;}
.ws47{word-spacing:-18.000000px;}
.ws48{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.502940px;}
.ws35{word-spacing:-0.280800px;}
.ws4{word-spacing:-0.234612px;}
.ws75{word-spacing:-0.230400px;}
.ws3d{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.201600px;}
.ws90{word-spacing:-0.194400px;}
.ws74{word-spacing:-0.180000px;}
.ws4f{word-spacing:-0.165600px;}
.ws5{word-spacing:-0.158004px;}
.ws76{word-spacing:-0.136800px;}
.wse{word-spacing:-0.129600px;}
.ws68{word-spacing:-0.122400px;}
.ws53{word-spacing:-0.115200px;}
.ws2e{word-spacing:-0.108000px;}
.wsad{word-spacing:-0.100800px;}
.ws6c{word-spacing:-0.093600px;}
.ws56{word-spacing:-0.086400px;}
.ws8{word-spacing:-0.083916px;}
.ws52{word-spacing:-0.079200px;}
.ws64{word-spacing:-0.072000px;}
.ws3f{word-spacing:-0.064800px;}
.ws72{word-spacing:-0.057600px;}
.ws51{word-spacing:-0.050400px;}
.wsab{word-spacing:-0.043200px;}
.ws3e{word-spacing:-0.036000px;}
.ws61{word-spacing:-0.028800px;}
.ws7{word-spacing:-0.023976px;}
.ws50{word-spacing:-0.021600px;}
.ws6{word-spacing:-0.016776px;}
.ws9{word-spacing:-0.014400px;}
.wsc{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws36{word-spacing:0.007200px;}
.wsd{word-spacing:0.014400px;}
.wsa8{word-spacing:0.021600px;}
.ws2{word-spacing:0.026352px;}
.wsa{word-spacing:0.036000px;}
.ws73{word-spacing:0.043200px;}
.ws86{word-spacing:0.057600px;}
.wsb0{word-spacing:0.079200px;}
.ws3{word-spacing:0.098820px;}
.wsa9{word-spacing:0.259200px;}
.wsaa{word-spacing:0.288000px;}
.ws1d{word-spacing:0.518400px;}
.ws7e{word-spacing:0.532800px;}
.ws92{word-spacing:0.561600px;}
.ws1c{word-spacing:0.590400px;}
.ws8f{word-spacing:0.604800px;}
.ws7d{word-spacing:0.626400px;}
.ws70{word-spacing:0.648000px;}
.wsbb{word-spacing:0.676800px;}
.ws4b{word-spacing:0.684000px;}
.ws71{word-spacing:0.691200px;}
.ws8e{word-spacing:0.698400px;}
.ws4c{word-spacing:0.712800px;}
.ws9b{word-spacing:0.720000px;}
.ws91{word-spacing:0.741600px;}
.wsaf{word-spacing:0.936000px;}
.ws34{word-spacing:1.000800px;}
.ws8a{word-spacing:1.036800px;}
.wsa2{word-spacing:1.051200px;}
.ws1e{word-spacing:1.058400px;}
.ws1f{word-spacing:1.072800px;}
.wsae{word-spacing:1.087200px;}
.ws25{word-spacing:1.159200px;}
.ws26{word-spacing:1.382400px;}
.wsb7{word-spacing:1.411200px;}
.ws24{word-spacing:1.425600px;}
.wsb8{word-spacing:1.440000px;}
.ws9e{word-spacing:1.461600px;}
.ws27{word-spacing:1.504800px;}
.wsac{word-spacing:1.872000px;}
.ws2b{word-spacing:1.900800px;}
.ws2c{word-spacing:2.016000px;}
.ws1a{word-spacing:2.044800px;}
.ws2d{word-spacing:2.088000px;}
.ws80{word-spacing:2.109600px;}
.ws7f{word-spacing:2.124000px;}
.wsa3{word-spacing:2.138400px;}
.ws1b{word-spacing:2.188800px;}
.ws14{word-spacing:2.260800px;}
.ws57{word-spacing:2.419200px;}
.ws7c{word-spacing:2.462400px;}
.ws7a{word-spacing:2.469600px;}
.ws7b{word-spacing:2.491200px;}
.ws13{word-spacing:2.498400px;}
.ws37{word-spacing:2.512800px;}
.ws6d{word-spacing:2.520000px;}
.ws81{word-spacing:2.541600px;}
.wsb1{word-spacing:2.764800px;}
.wsb2{word-spacing:2.844000px;}
.ws30{word-spacing:3.038400px;}
.ws2f{word-spacing:3.160800px;}
.ws85{word-spacing:3.168000px;}
.ws6b{word-spacing:3.182400px;}
.ws31{word-spacing:3.240000px;}
.ws16{word-spacing:3.340800px;}
.wsb6{word-spacing:3.448800px;}
.ws8b{word-spacing:3.484800px;}
.ws6e{word-spacing:3.513600px;}
.ws6f{word-spacing:3.528000px;}
.ws15{word-spacing:3.535200px;}
.ws45{word-spacing:3.578400px;}
.ws8c{word-spacing:3.592800px;}
.ws44{word-spacing:3.600000px;}
.ws17{word-spacing:3.607200px;}
.ws3c{word-spacing:3.751200px;}
.ws3a{word-spacing:3.816000px;}
.ws3b{word-spacing:3.866400px;}
.ws89{word-spacing:3.909600px;}
.ws88{word-spacing:3.924000px;}
.ws84{word-spacing:4.233600px;}
.wsa4{word-spacing:4.248000px;}
.ws82{word-spacing:4.262400px;}
.ws77{word-spacing:4.269600px;}
.wsa5{word-spacing:4.276800px;}
.ws9d{word-spacing:4.284000px;}
.ws83{word-spacing:4.291200px;}
.ws63{word-spacing:4.593600px;}
.ws62{word-spacing:4.737600px;}
.ws20{word-spacing:4.953600px;}
.ws21{word-spacing:5.032800px;}
.wsa7{word-spacing:5.328000px;}
.wsa6{word-spacing:5.371200px;}
.ws65{word-spacing:5.544000px;}
.ws19{word-spacing:5.572800px;}
.ws28{word-spacing:5.587200px;}
.wsa0{word-spacing:5.608800px;}
.ws2a{word-spacing:5.623200px;}
.ws18{word-spacing:5.644800px;}
.wsa1{word-spacing:5.666400px;}
.ws29{word-spacing:5.738400px;}
.ws55{word-spacing:5.760000px;}
.ws9f{word-spacing:5.774400px;}
.ws54{word-spacing:5.817600px;}
.ws42{word-spacing:5.997600px;}
.ws43{word-spacing:6.091200px;}
.ws9c{word-spacing:6.098400px;}
.wsf{word-spacing:6.350400px;}
.ws10{word-spacing:6.422400px;}
.ws33{word-spacing:6.616800px;}
.ws32{word-spacing:6.703200px;}
.ws4e{word-spacing:7.106400px;}
.ws4d{word-spacing:7.164000px;}
.ws5e{word-spacing:7.192800px;}
.ws5c{word-spacing:7.200000px;}
.ws5d{word-spacing:7.236000px;}
.ws8d{word-spacing:7.833600px;}
.ws22{word-spacing:7.840800px;}
.ws23{word-spacing:7.869600px;}
.wsb9{word-spacing:7.884000px;}
.wsba{word-spacing:7.891200px;}
.ws12{word-spacing:8.193600px;}
.ws87{word-spacing:8.236800px;}
.ws11{word-spacing:8.294400px;}
.ws96{word-spacing:8.575200px;}
.ws95{word-spacing:8.582400px;}
.ws5f{word-spacing:8.618400px;}
.ws60{word-spacing:8.640000px;}
.ws66{word-spacing:8.863200px;}
.ws67{word-spacing:8.942400px;}
.ws94{word-spacing:9.007200px;}
.ws93{word-spacing:9.014400px;}
.wsb4{word-spacing:9.208800px;}
.wsb3{word-spacing:9.280800px;}
.ws78{word-spacing:9.604800px;}
.ws79{word-spacing:9.705600px;}
.ws39{word-spacing:10.015200px;}
.ws38{word-spacing:10.029600px;}
.ws5b{word-spacing:10.036800px;}
.ws40{word-spacing:10.058400px;}
.ws5a{word-spacing:10.072800px;}
.ws41{word-spacing:10.080000px;}
.wsb5{word-spacing:10.116000px;}
.ws98{word-spacing:10.951200px;}
.ws97{word-spacing:11.138400px;}
.ws9a{word-spacing:12.765600px;}
.ws99{word-spacing:12.931200px;}
.ws6a{word-spacing:15.091200px;}
.ws69{word-spacing:15.112800px;}
.ws58{word-spacing:19.051200px;}
.ws59{word-spacing:19.094400px;}
._2{margin-left:-5.400000px;}
._3{margin-left:-3.477600px;}
._1{margin-left:-1.216152px;}
._0{width:1.202976px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:90.000000px;}
.fs6{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.490450px;}
.yb{bottom:45.570099px;}
.ya{bottom:59.340387px;}
.yc{bottom:70.230450px;}
.y9{bottom:73.200450px;}
.yb0{bottom:111.630450px;}
.y6a{bottom:119.820450px;}
.yd1{bottom:123.600450px;}
.yaf{bottom:132.330450px;}
.y69{bottom:140.520450px;}
.yae{bottom:153.030450px;}
.yd0{bottom:153.300450px;}
.y68{bottom:170.040450px;}
.y43{bottom:173.190450px;}
.yad{bottom:173.640450px;}
.ycf{bottom:174.000450px;}
.y42{bottom:193.890450px;}
.y89{bottom:201.000450px;}
.y67{bottom:201.180450px;}
.yce{bottom:203.520450px;}
.yac{bottom:204.690450px;}
.y41{bottom:214.590450px;}
.yab{bottom:225.390450px;}
.y88{bottom:230.880450px;}
.ycd{bottom:233.220450px;}
.y40{bottom:235.290450px;}
.y66{bottom:235.920450px;}
.yaa{bottom:246.090450px;}
.y87{bottom:251.580450px;}
.ycc{bottom:254.100450px;}
.y65{bottom:256.530450px;}
.y3f{bottom:264.810450px;}
.ya9{bottom:266.700450px;}
.y86{bottom:272.280450px;}
.ycb{bottom:274.800450px;}
.y64{bottom:277.230450px;}
.y85{bottom:292.980450px;}
.y3e{bottom:294.600450px;}
.yca{bottom:295.500450px;}
.ya8{bottom:297.750450px;}
.y63{bottom:308.280450px;}
.ya7{bottom:318.450450px;}
.y84{bottom:322.500450px;}
.y3d{bottom:324.210450px;}
.yc9{bottom:325.020450px;}
.y62{bottom:328.980450px;}
.ya6{bottom:339.150450px;}
.y61{bottom:349.590450px;}
.y83{bottom:352.380450px;}
.y3c{bottom:353.910450px;}
.yc8{bottom:354.720450px;}
.ya5{bottom:359.850450px;}
.y60{bottom:380.640450px;}
.y82{bottom:382.080450px;}
.y3b{bottom:383.790450px;}
.yc7{bottom:384.510450px;}
.ya4{bottom:390.720450px;}
.y5f{bottom:401.340450px;}
.y81{bottom:402.780450px;}
.y3a{bottom:404.490450px;}
.yc6{bottom:405.210450px;}
.ya3{bottom:420.600450px;}
.y5e{bottom:421.950450px;}
.y80{bottom:423.480450px;}
.y20{bottom:423.750375px;}
.y39{bottom:425.190450px;}
.yc5{bottom:434.730450px;}
.ya2{bottom:441.300450px;}
.y7f{bottom:444.180450px;}
.y38{bottom:445.890450px;}
.y5d{bottom:452.820450px;}
.y1f{bottom:456.870393px;}
.ya1{bottom:461.910450px;}
.yc4{bottom:464.610450px;}
.y7e{bottom:473.700450px;}
.y5c{bottom:474.960450px;}
.y37{bottom:475.410450px;}
.ya0{bottom:482.610450px;}
.y1e{bottom:489.990411px;}
.yc3{bottom:494.310450px;}
.y5b{bottom:500.700450px;}
.y9f{bottom:503.310450px;}
.y7d{bottom:503.490450px;}
.y36{bottom:505.110450px;}
.yc2{bottom:515.010450px;}
.y5a{bottom:521.400450px;}
.y1d{bottom:523.200600px;}
.y9e{bottom:524.010450px;}
.y7c{bottom:533.190450px;}
.y35{bottom:534.990450px;}
.yc1{bottom:535.710450px;}
.y59{bottom:542.100450px;}
.y9d{bottom:544.710450px;}
.y1c{bottom:546.870450px;}
.y7b{bottom:553.890450px;}
.y34{bottom:555.690450px;}
.y58{bottom:562.800450px;}
.yc0{bottom:565.230450px;}
.y9c{bottom:565.320450px;}
.y1b{bottom:567.570450px;}
.y7a{bottom:574.590450px;}
.y33{bottom:576.390450px;}
.y57{bottom:583.500450px;}
.y9b{bottom:586.020450px;}
.y1a{bottom:588.270450px;}
.ybf{bottom:595.110450px;}
.y79{bottom:595.290450px;}
.y32{bottom:597.090450px;}
.y56{bottom:604.110450px;}
.y9a{bottom:606.720450px;}
.y19{bottom:617.160675px;}
.ybe{bottom:624.630450px;}
.y55{bottom:624.810450px;}
.y78{bottom:624.900450px;}
.y31{bottom:626.790450px;}
.y99{bottom:627.420450px;}
.y18{bottom:643.350450px;}
.y54{bottom:645.510450px;}
.y30{bottom:647.400450px;}
.y98{bottom:648.120450px;}
.ybd{bottom:654.330450px;}
.y77{bottom:655.950450px;}
.y53{bottom:666.210450px;}
.y2f{bottom:668.100450px;}
.y97{bottom:668.730450px;}
.y17{bottom:675.030450px;}
.ybc{bottom:675.210450px;}
.y76{bottom:676.560450px;}
.y52{bottom:686.910450px;}
.y2e{bottom:688.800450px;}
.y96{bottom:689.430450px;}
.ybb{bottom:695.910450px;}
.y51{bottom:707.520450px;}
.y75{bottom:707.610450px;}
.y2d{bottom:709.500450px;}
.y16{bottom:709.590450px;}
.y95{bottom:710.130450px;}
.yba{bottom:716.610450px;}
.y50{bottom:728.220450px;}
.y2c{bottom:730.200450px;}
.y74{bottom:737.130450px;}
.yb9{bottom:737.310450px;}
.y94{bottom:739.650450px;}
.y4f{bottom:748.920450px;}
.y2b{bottom:750.900450px;}
.y15{bottom:753.240117px;}
.yb8{bottom:757.920450px;}
.y73{bottom:766.830450px;}
.y93{bottom:769.530450px;}
.y4e{bottom:769.620450px;}
.yb7{bottom:778.620450px;}
.y2a{bottom:780.600450px;}
.y14{bottom:786.450306px;}
.y4d{bottom:790.320450px;}
.y72{bottom:796.710450px;}
.y92{bottom:799.230450px;}
.yb6{bottom:799.320450px;}
.y29{bottom:801.300450px;}
.y4c{bottom:810.930450px;}
.y13{bottom:819.570324px;}
.y91{bottom:819.930450px;}
.yb5{bottom:820.020450px;}
.y28{bottom:822.000450px;}
.y71{bottom:826.410450px;}
.y4b{bottom:831.630450px;}
.y90{bottom:840.630450px;}
.yb4{bottom:840.720450px;}
.y27{bottom:842.700450px;}
.y70{bottom:847.020450px;}
.y4a{bottom:852.330450px;}
.y12{bottom:852.960855px;}
.y8f{bottom:861.330450px;}
.y26{bottom:863.400450px;}
.y6f{bottom:867.720450px;}
.y49{bottom:882.030450px;}
.y25{bottom:884.100450px;}
.y11{bottom:886.171044px;}
.y6e{bottom:888.420450px;}
.y8e{bottom:902.730450px;}
.y24{bottom:904.800450px;}
.y6d{bottom:909.120450px;}
.y48{bottom:911.550450px;}
.y10{bottom:919.291062px;}
.y23{bottom:925.500450px;}
.y6c{bottom:929.820450px;}
.y8d{bottom:932.250450px;}
.yb3{bottom:932.430450px;}
.y47{bottom:941.430450px;}
.y22{bottom:946.200450px;}
.y6b{bottom:950.430450px;}
.yf{bottom:952.411080px;}
.yb2{bottom:953.130450px;}
.y8c{bottom:961.950450px;}
.y46{bottom:971.130450px;}
.y21{bottom:976.620945px;}
.yb1{bottom:982.650450px;}
.ye{bottom:985.350756px;}
.y8b{bottom:991.650450px;}
.y45{bottom:991.830450px;}
.yd{bottom:1009.470450px;}
.y8a{bottom:1012.350450px;}
.y44{bottom:1012.530450px;}
.y8{bottom:1083.900450px;}
.y7{bottom:1118.910450px;}
.y1{bottom:1124.850450px;}
.y4{bottom:1131.870000px;}
.y6{bottom:1137.360450px;}
.y3{bottom:1161.390450px;}
.y2{bottom:1186.680450px;}
.h3{height:23.580000px;}
.h7{height:46.991602px;}
.h5{height:50.315273px;}
.h1{height:59.004492px;}
.hb{height:60.589687px;}
.h4{height:70.200352px;}
.hd{height:70.628906px;}
.h6{height:70.664062px;}
.hc{height:72.562500px;}
.he{height:75.093750px;}
.h2{height:75.322266px;}
.h9{height:82.323633px;}
.h8{height:84.535312px;}
.ha{height:120.816562px;}
.h0{height:1263.000000px;}
.w2{width:14.400000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:124.290000px;}
.x2{left:129.690000px;}
.x9{left:135.090567px;}
.x4{left:140.310000px;}
.x3{left:143.910000px;}
.xa{left:160.560000px;}
.xb{left:162.990000px;}
.xd{left:168.030000px;}
.xf{left:193.500000px;}
.x11{left:198.360000px;}
.x10{left:220.410000px;}
.x12{left:225.360000px;}
.x13{left:247.410000px;}
.x5{left:254.970000px;}
.xc{left:274.770000px;}
.xe{left:280.440000px;}
.x6{left:387.090072px;}
.x7{left:463.409595px;}
.x8{left:779.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.076800pt;}
.lsb{letter-spacing:-0.040992pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls1c{letter-spacing:-0.025600pt;}
.ls1d{letter-spacing:-0.019200pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls1b{letter-spacing:-0.006400pt;}
.lsc{letter-spacing:-0.005856pt;}
.lsa{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.008640pt;}
.ls8{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.022368pt;}
.ls17{letter-spacing:0.025600pt;}
.ls4{letter-spacing:0.029280pt;}
.ls13{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.038400pt;}
.lse{letter-spacing:0.042624pt;}
.ls9{letter-spacing:0.044800pt;}
.ls18{letter-spacing:0.051200pt;}
.ls12{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.058560pt;}
.ls6{letter-spacing:0.059584pt;}
.lsd{letter-spacing:0.063936pt;}
.ls16{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.070400pt;}
.ls21{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.082880pt;}
.ls2a{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.089600pt;}
.ls30{letter-spacing:0.108800pt;}
.ls5{letter-spacing:0.127680pt;}
.ls25{letter-spacing:0.140800pt;}
.ls1f{letter-spacing:21.888000pt;}
.ls2c{letter-spacing:22.208000pt;}
.ls27{letter-spacing:24.768000pt;}
.ls1e{letter-spacing:25.728000pt;}
.ls2b{letter-spacing:26.048000pt;}
.ls26{letter-spacing:28.608000pt;}
.ls20{letter-spacing:32.768000pt;}
.ls2d{letter-spacing:33.088000pt;}
.ls28{letter-spacing:35.648000pt;}
.ls22{letter-spacing:36.288000pt;}
.ls2e{letter-spacing:36.608000pt;}
.ls23{letter-spacing:45.888000pt;}
.ls29{letter-spacing:46.208000pt;}
.ws4a{word-spacing:-64.000000pt;}
.ws49{word-spacing:-16.140800pt;}
.ws46{word-spacing:-16.076800pt;}
.ws47{word-spacing:-16.000000pt;}
.ws48{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.669280pt;}
.ws35{word-spacing:-0.249600pt;}
.ws4{word-spacing:-0.208544pt;}
.ws75{word-spacing:-0.204800pt;}
.ws3d{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.179200pt;}
.ws90{word-spacing:-0.172800pt;}
.ws74{word-spacing:-0.160000pt;}
.ws4f{word-spacing:-0.147200pt;}
.ws5{word-spacing:-0.140448pt;}
.ws76{word-spacing:-0.121600pt;}
.wse{word-spacing:-0.115200pt;}
.ws68{word-spacing:-0.108800pt;}
.ws53{word-spacing:-0.102400pt;}
.ws2e{word-spacing:-0.096000pt;}
.wsad{word-spacing:-0.089600pt;}
.ws6c{word-spacing:-0.083200pt;}
.ws56{word-spacing:-0.076800pt;}
.ws8{word-spacing:-0.074592pt;}
.ws52{word-spacing:-0.070400pt;}
.ws64{word-spacing:-0.064000pt;}
.ws3f{word-spacing:-0.057600pt;}
.ws72{word-spacing:-0.051200pt;}
.ws51{word-spacing:-0.044800pt;}
.wsab{word-spacing:-0.038400pt;}
.ws3e{word-spacing:-0.032000pt;}
.ws61{word-spacing:-0.025600pt;}
.ws7{word-spacing:-0.021312pt;}
.ws50{word-spacing:-0.019200pt;}
.ws6{word-spacing:-0.014912pt;}
.ws9{word-spacing:-0.012800pt;}
.wsc{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws36{word-spacing:0.006400pt;}
.wsd{word-spacing:0.012800pt;}
.wsa8{word-spacing:0.019200pt;}
.ws2{word-spacing:0.023424pt;}
.wsa{word-spacing:0.032000pt;}
.ws73{word-spacing:0.038400pt;}
.ws86{word-spacing:0.051200pt;}
.wsb0{word-spacing:0.070400pt;}
.ws3{word-spacing:0.087840pt;}
.wsa9{word-spacing:0.230400pt;}
.wsaa{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.460800pt;}
.ws7e{word-spacing:0.473600pt;}
.ws92{word-spacing:0.499200pt;}
.ws1c{word-spacing:0.524800pt;}
.ws8f{word-spacing:0.537600pt;}
.ws7d{word-spacing:0.556800pt;}
.ws70{word-spacing:0.576000pt;}
.wsbb{word-spacing:0.601600pt;}
.ws4b{word-spacing:0.608000pt;}
.ws71{word-spacing:0.614400pt;}
.ws8e{word-spacing:0.620800pt;}
.ws4c{word-spacing:0.633600pt;}
.ws9b{word-spacing:0.640000pt;}
.ws91{word-spacing:0.659200pt;}
.wsaf{word-spacing:0.832000pt;}
.ws34{word-spacing:0.889600pt;}
.ws8a{word-spacing:0.921600pt;}
.wsa2{word-spacing:0.934400pt;}
.ws1e{word-spacing:0.940800pt;}
.ws1f{word-spacing:0.953600pt;}
.wsae{word-spacing:0.966400pt;}
.ws25{word-spacing:1.030400pt;}
.ws26{word-spacing:1.228800pt;}
.wsb7{word-spacing:1.254400pt;}
.ws24{word-spacing:1.267200pt;}
.wsb8{word-spacing:1.280000pt;}
.ws9e{word-spacing:1.299200pt;}
.ws27{word-spacing:1.337600pt;}
.wsac{word-spacing:1.664000pt;}
.ws2b{word-spacing:1.689600pt;}
.ws2c{word-spacing:1.792000pt;}
.ws1a{word-spacing:1.817600pt;}
.ws2d{word-spacing:1.856000pt;}
.ws80{word-spacing:1.875200pt;}
.ws7f{word-spacing:1.888000pt;}
.wsa3{word-spacing:1.900800pt;}
.ws1b{word-spacing:1.945600pt;}
.ws14{word-spacing:2.009600pt;}
.ws57{word-spacing:2.150400pt;}
.ws7c{word-spacing:2.188800pt;}
.ws7a{word-spacing:2.195200pt;}
.ws7b{word-spacing:2.214400pt;}
.ws13{word-spacing:2.220800pt;}
.ws37{word-spacing:2.233600pt;}
.ws6d{word-spacing:2.240000pt;}
.ws81{word-spacing:2.259200pt;}
.wsb1{word-spacing:2.457600pt;}
.wsb2{word-spacing:2.528000pt;}
.ws30{word-spacing:2.700800pt;}
.ws2f{word-spacing:2.809600pt;}
.ws85{word-spacing:2.816000pt;}
.ws6b{word-spacing:2.828800pt;}
.ws31{word-spacing:2.880000pt;}
.ws16{word-spacing:2.969600pt;}
.wsb6{word-spacing:3.065600pt;}
.ws8b{word-spacing:3.097600pt;}
.ws6e{word-spacing:3.123200pt;}
.ws6f{word-spacing:3.136000pt;}
.ws15{word-spacing:3.142400pt;}
.ws45{word-spacing:3.180800pt;}
.ws8c{word-spacing:3.193600pt;}
.ws44{word-spacing:3.200000pt;}
.ws17{word-spacing:3.206400pt;}
.ws3c{word-spacing:3.334400pt;}
.ws3a{word-spacing:3.392000pt;}
.ws3b{word-spacing:3.436800pt;}
.ws89{word-spacing:3.475200pt;}
.ws88{word-spacing:3.488000pt;}
.ws84{word-spacing:3.763200pt;}
.wsa4{word-spacing:3.776000pt;}
.ws82{word-spacing:3.788800pt;}
.ws77{word-spacing:3.795200pt;}
.wsa5{word-spacing:3.801600pt;}
.ws9d{word-spacing:3.808000pt;}
.ws83{word-spacing:3.814400pt;}
.ws63{word-spacing:4.083200pt;}
.ws62{word-spacing:4.211200pt;}
.ws20{word-spacing:4.403200pt;}
.ws21{word-spacing:4.473600pt;}
.wsa7{word-spacing:4.736000pt;}
.wsa6{word-spacing:4.774400pt;}
.ws65{word-spacing:4.928000pt;}
.ws19{word-spacing:4.953600pt;}
.ws28{word-spacing:4.966400pt;}
.wsa0{word-spacing:4.985600pt;}
.ws2a{word-spacing:4.998400pt;}
.ws18{word-spacing:5.017600pt;}
.wsa1{word-spacing:5.036800pt;}
.ws29{word-spacing:5.100800pt;}
.ws55{word-spacing:5.120000pt;}
.ws9f{word-spacing:5.132800pt;}
.ws54{word-spacing:5.171200pt;}
.ws42{word-spacing:5.331200pt;}
.ws43{word-spacing:5.414400pt;}
.ws9c{word-spacing:5.420800pt;}
.wsf{word-spacing:5.644800pt;}
.ws10{word-spacing:5.708800pt;}
.ws33{word-spacing:5.881600pt;}
.ws32{word-spacing:5.958400pt;}
.ws4e{word-spacing:6.316800pt;}
.ws4d{word-spacing:6.368000pt;}
.ws5e{word-spacing:6.393600pt;}
.ws5c{word-spacing:6.400000pt;}
.ws5d{word-spacing:6.432000pt;}
.ws8d{word-spacing:6.963200pt;}
.ws22{word-spacing:6.969600pt;}
.ws23{word-spacing:6.995200pt;}
.wsb9{word-spacing:7.008000pt;}
.wsba{word-spacing:7.014400pt;}
.ws12{word-spacing:7.283200pt;}
.ws87{word-spacing:7.321600pt;}
.ws11{word-spacing:7.372800pt;}
.ws96{word-spacing:7.622400pt;}
.ws95{word-spacing:7.628800pt;}
.ws5f{word-spacing:7.660800pt;}
.ws60{word-spacing:7.680000pt;}
.ws66{word-spacing:7.878400pt;}
.ws67{word-spacing:7.948800pt;}
.ws94{word-spacing:8.006400pt;}
.ws93{word-spacing:8.012800pt;}
.wsb4{word-spacing:8.185600pt;}
.wsb3{word-spacing:8.249600pt;}
.ws78{word-spacing:8.537600pt;}
.ws79{word-spacing:8.627200pt;}
.ws39{word-spacing:8.902400pt;}
.ws38{word-spacing:8.915200pt;}
.ws5b{word-spacing:8.921600pt;}
.ws40{word-spacing:8.940800pt;}
.ws5a{word-spacing:8.953600pt;}
.ws41{word-spacing:8.960000pt;}
.wsb5{word-spacing:8.992000pt;}
.ws98{word-spacing:9.734400pt;}
.ws97{word-spacing:9.900800pt;}
.ws9a{word-spacing:11.347200pt;}
.ws99{word-spacing:11.494400pt;}
.ws6a{word-spacing:13.414400pt;}
.ws69{word-spacing:13.433600pt;}
.ws58{word-spacing:16.934400pt;}
.ws59{word-spacing:16.972800pt;}
._2{margin-left:-4.800000pt;}
._3{margin-left:-3.091200pt;}
._1{margin-left:-1.081024pt;}
._0{width:1.069312pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:80.000000pt;}
.fs6{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.880400pt;}
.yb{bottom:40.506755pt;}
.ya{bottom:52.747011pt;}
.yc{bottom:62.427067pt;}
.y9{bottom:65.067067pt;}
.yb0{bottom:99.227067pt;}
.y6a{bottom:106.507067pt;}
.yd1{bottom:109.867067pt;}
.yaf{bottom:117.627067pt;}
.y69{bottom:124.907067pt;}
.yae{bottom:136.027067pt;}
.yd0{bottom:136.267067pt;}
.y68{bottom:151.147067pt;}
.y43{bottom:153.947067pt;}
.yad{bottom:154.347067pt;}
.ycf{bottom:154.667067pt;}
.y42{bottom:172.347067pt;}
.y89{bottom:178.667067pt;}
.y67{bottom:178.827067pt;}
.yce{bottom:180.907067pt;}
.yac{bottom:181.947067pt;}
.y41{bottom:190.747067pt;}
.yab{bottom:200.347067pt;}
.y88{bottom:205.227067pt;}
.ycd{bottom:207.307067pt;}
.y40{bottom:209.147067pt;}
.y66{bottom:209.707067pt;}
.yaa{bottom:218.747067pt;}
.y87{bottom:223.627067pt;}
.ycc{bottom:225.867067pt;}
.y65{bottom:228.027067pt;}
.y3f{bottom:235.387067pt;}
.ya9{bottom:237.067067pt;}
.y86{bottom:242.027067pt;}
.ycb{bottom:244.267067pt;}
.y64{bottom:246.427067pt;}
.y85{bottom:260.427067pt;}
.y3e{bottom:261.867067pt;}
.yca{bottom:262.667067pt;}
.ya8{bottom:264.667067pt;}
.y63{bottom:274.027067pt;}
.ya7{bottom:283.067067pt;}
.y84{bottom:286.667067pt;}
.y3d{bottom:288.187067pt;}
.yc9{bottom:288.907067pt;}
.y62{bottom:292.427067pt;}
.ya6{bottom:301.467067pt;}
.y61{bottom:310.747067pt;}
.y83{bottom:313.227067pt;}
.y3c{bottom:314.587067pt;}
.yc8{bottom:315.307067pt;}
.ya5{bottom:319.867067pt;}
.y60{bottom:338.347067pt;}
.y82{bottom:339.627067pt;}
.y3b{bottom:341.147067pt;}
.yc7{bottom:341.787067pt;}
.ya4{bottom:347.307067pt;}
.y5f{bottom:356.747067pt;}
.y81{bottom:358.027067pt;}
.y3a{bottom:359.547067pt;}
.yc6{bottom:360.187067pt;}
.ya3{bottom:373.867067pt;}
.y5e{bottom:375.067067pt;}
.y80{bottom:376.427067pt;}
.y20{bottom:376.667000pt;}
.y39{bottom:377.947067pt;}
.yc5{bottom:386.427067pt;}
.ya2{bottom:392.267067pt;}
.y7f{bottom:394.827067pt;}
.y38{bottom:396.347067pt;}
.y5d{bottom:402.507067pt;}
.y1f{bottom:406.107016pt;}
.ya1{bottom:410.587067pt;}
.yc4{bottom:412.987067pt;}
.y7e{bottom:421.067067pt;}
.y5c{bottom:422.187067pt;}
.y37{bottom:422.587067pt;}
.ya0{bottom:428.987067pt;}
.y1e{bottom:435.547032pt;}
.yc3{bottom:439.387067pt;}
.y5b{bottom:445.067067pt;}
.y9f{bottom:447.387067pt;}
.y7d{bottom:447.547067pt;}
.y36{bottom:448.987067pt;}
.yc2{bottom:457.787067pt;}
.y5a{bottom:463.467067pt;}
.y1d{bottom:465.067200pt;}
.y9e{bottom:465.787067pt;}
.y7c{bottom:473.947067pt;}
.y35{bottom:475.547067pt;}
.yc1{bottom:476.187067pt;}
.y59{bottom:481.867067pt;}
.y9d{bottom:484.187067pt;}
.y1c{bottom:486.107067pt;}
.y7b{bottom:492.347067pt;}
.y34{bottom:493.947067pt;}
.y58{bottom:500.267067pt;}
.yc0{bottom:502.427067pt;}
.y9c{bottom:502.507067pt;}
.y1b{bottom:504.507067pt;}
.y7a{bottom:510.747067pt;}
.y33{bottom:512.347067pt;}
.y57{bottom:518.667067pt;}
.y9b{bottom:520.907067pt;}
.y1a{bottom:522.907067pt;}
.ybf{bottom:528.987067pt;}
.y79{bottom:529.147067pt;}
.y32{bottom:530.747067pt;}
.y56{bottom:536.987067pt;}
.y9a{bottom:539.307067pt;}
.y19{bottom:548.587267pt;}
.ybe{bottom:555.227067pt;}
.y55{bottom:555.387067pt;}
.y78{bottom:555.467067pt;}
.y31{bottom:557.147067pt;}
.y99{bottom:557.707067pt;}
.y18{bottom:571.867067pt;}
.y54{bottom:573.787067pt;}
.y30{bottom:575.467067pt;}
.y98{bottom:576.107067pt;}
.ybd{bottom:581.627067pt;}
.y77{bottom:583.067067pt;}
.y53{bottom:592.187067pt;}
.y2f{bottom:593.867067pt;}
.y97{bottom:594.427067pt;}
.y17{bottom:600.027067pt;}
.ybc{bottom:600.187067pt;}
.y76{bottom:601.387067pt;}
.y52{bottom:610.587067pt;}
.y2e{bottom:612.267067pt;}
.y96{bottom:612.827067pt;}
.ybb{bottom:618.587067pt;}
.y51{bottom:628.907067pt;}
.y75{bottom:628.987067pt;}
.y2d{bottom:630.667067pt;}
.y16{bottom:630.747067pt;}
.y95{bottom:631.227067pt;}
.yba{bottom:636.987067pt;}
.y50{bottom:647.307067pt;}
.y2c{bottom:649.067067pt;}
.y74{bottom:655.227067pt;}
.yb9{bottom:655.387067pt;}
.y94{bottom:657.467067pt;}
.y4f{bottom:665.707067pt;}
.y2b{bottom:667.467067pt;}
.y15{bottom:669.546771pt;}
.yb8{bottom:673.707067pt;}
.y73{bottom:681.627067pt;}
.y93{bottom:684.027067pt;}
.y4e{bottom:684.107067pt;}
.yb7{bottom:692.107067pt;}
.y2a{bottom:693.867067pt;}
.y14{bottom:699.066939pt;}
.y4d{bottom:702.507067pt;}
.y72{bottom:708.187067pt;}
.y92{bottom:710.427067pt;}
.yb6{bottom:710.507067pt;}
.y29{bottom:712.267067pt;}
.y4c{bottom:720.827067pt;}
.y13{bottom:728.506955pt;}
.y91{bottom:728.827067pt;}
.yb5{bottom:728.907067pt;}
.y28{bottom:730.667067pt;}
.y71{bottom:734.587067pt;}
.y4b{bottom:739.227067pt;}
.y90{bottom:747.227067pt;}
.yb4{bottom:747.307067pt;}
.y27{bottom:749.067067pt;}
.y70{bottom:752.907067pt;}
.y4a{bottom:757.627067pt;}
.y12{bottom:758.187427pt;}
.y8f{bottom:765.627067pt;}
.y26{bottom:767.467067pt;}
.y6f{bottom:771.307067pt;}
.y49{bottom:784.027067pt;}
.y25{bottom:785.867067pt;}
.y11{bottom:787.707595pt;}
.y6e{bottom:789.707067pt;}
.y8e{bottom:802.427067pt;}
.y24{bottom:804.267067pt;}
.y6d{bottom:808.107067pt;}
.y48{bottom:810.267067pt;}
.y10{bottom:817.147611pt;}
.y23{bottom:822.667067pt;}
.y6c{bottom:826.507067pt;}
.y8d{bottom:828.667067pt;}
.yb3{bottom:828.827067pt;}
.y47{bottom:836.827067pt;}
.y22{bottom:841.067067pt;}
.y6b{bottom:844.827067pt;}
.yf{bottom:846.587627pt;}
.yb2{bottom:847.227067pt;}
.y8c{bottom:855.067067pt;}
.y46{bottom:863.227067pt;}
.y21{bottom:868.107507pt;}
.yb1{bottom:873.467067pt;}
.ye{bottom:875.867339pt;}
.y8b{bottom:881.467067pt;}
.y45{bottom:881.627067pt;}
.yd{bottom:897.307067pt;}
.y8a{bottom:899.867067pt;}
.y44{bottom:900.027067pt;}
.y8{bottom:963.467067pt;}
.y7{bottom:994.587067pt;}
.y1{bottom:999.867067pt;}
.y4{bottom:1006.106667pt;}
.y6{bottom:1010.987067pt;}
.y3{bottom:1032.347067pt;}
.y2{bottom:1054.827067pt;}
.h3{height:20.960000pt;}
.h7{height:41.770312pt;}
.h5{height:44.724687pt;}
.h1{height:52.448437pt;}
.hb{height:53.857500pt;}
.h4{height:62.400312pt;}
.hd{height:62.781250pt;}
.h6{height:62.812500pt;}
.hc{height:64.500000pt;}
.he{height:66.750000pt;}
.h2{height:66.953125pt;}
.h9{height:73.176562pt;}
.h8{height:75.142500pt;}
.ha{height:107.392500pt;}
.h0{height:1122.666667pt;}
.w2{width:12.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:110.480000pt;}
.x2{left:115.280000pt;}
.x9{left:120.080504pt;}
.x4{left:124.720000pt;}
.x3{left:127.920000pt;}
.xa{left:142.720000pt;}
.xb{left:144.880000pt;}
.xd{left:149.360000pt;}
.xf{left:172.000000pt;}
.x11{left:176.320000pt;}
.x10{left:195.920000pt;}
.x12{left:200.320000pt;}
.x13{left:219.920000pt;}
.x5{left:226.640000pt;}
.xc{left:244.240000pt;}
.xe{left:249.280000pt;}
.x6{left:344.080064pt;}
.x7{left:411.919640pt;}
.x8{left:692.480000pt;}
}




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