
    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_8241c19cd9149021b9ab47be.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_94cfb44d87c0551c8461512b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_697e03e0e6dc872734efdd7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_06a86b7e875cac3897244698.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.212400px;}
.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;}
}
.ws76{word-spacing:-56.156400px;}
.wsa{word-spacing:-55.944000px;}
.ws24{word-spacing:-39.004200px;}
.wsb9{word-spacing:-38.863800px;}
.ws39{word-spacing:-38.659200px;}
.ws6{word-spacing:-38.657700px;}
.ws4d{word-spacing:-38.649000px;}
.ws1a{word-spacing:-38.648700px;}
.ws5{word-spacing:-38.647800px;}
.ws14{word-spacing:-38.448600px;}
.ws11{word-spacing:-38.446800px;}
.ws54{word-spacing:-38.440800px;}
.ws9{word-spacing:-38.430000px;}
.ws3{word-spacing:-38.374200px;}
.wsc1{word-spacing:-38.156400px;}
.ws71{word-spacing:-38.154600px;}
.ws60{word-spacing:-38.136600px;}
.ws92{word-spacing:-38.123100px;}
.ws0{word-spacing:-37.944000px;}
.wsb{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.938600px;}
.ws63{word-spacing:-37.938300px;}
.wsb8{word-spacing:-37.936800px;}
.ws87{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws95{word-spacing:-37.930800px;}
.ws1d{word-spacing:-37.923300px;}
.wsa9{word-spacing:-37.720800px;}
.ws59{word-spacing:-37.440000px;}
.ws3e{word-spacing:-35.998200px;}
.wsad{word-spacing:-35.775000px;}
.ws18{word-spacing:-35.769600px;}
.ws8e{word-spacing:-35.548200px;}
.wsbd{word-spacing:-35.070000px;}
.wsb3{word-spacing:-35.061300px;}
.wsd{word-spacing:-35.053200px;}
.ws6e{word-spacing:-35.052300px;}
.wsae{word-spacing:-35.042400px;}
.ws48{word-spacing:-35.031600px;}
.ws77{word-spacing:-34.843500px;}
.ws96{word-spacing:-34.560000px;}
.ws32{word-spacing:-34.325400px;}
.ws5f{word-spacing:-34.322400px;}
.wsa8{word-spacing:-34.304400px;}
.wsba{word-spacing:-33.840000px;}
.ws10{word-spacing:-33.800400px;}
.ws8{word-spacing:-33.547800px;}
.ws45{word-spacing:-33.404400px;}
.wsc0{word-spacing:-32.910000px;}
.ws3f{word-spacing:-32.898000px;}
.ws51{word-spacing:-32.895000px;}
.ws9f{word-spacing:-32.684400px;}
.ws56{word-spacing:-32.677200px;}
.ws1e{word-spacing:-32.190000px;}
.ws5e{word-spacing:-32.180400px;}
.wsa7{word-spacing:-32.164200px;}
.ws74{word-spacing:-32.151600px;}
.ws5d{word-spacing:-31.955400px;}
.ws49{word-spacing:-31.682400px;}
.wsbb{word-spacing:-31.680000px;}
.ws5b{word-spacing:-31.676400px;}
.ws1f{word-spacing:-31.670100px;}
.wsf{word-spacing:-31.669200px;}
.ws58{word-spacing:-31.647600px;}
.ws26{word-spacing:-31.470000px;}
.ws99{word-spacing:-31.458300px;}
.ws41{word-spacing:-31.235400px;}
.ws29{word-spacing:-30.951000px;}
.ws9b{word-spacing:-30.949200px;}
.ws25{word-spacing:-30.941100px;}
.wsb1{word-spacing:-30.733200px;}
.ws90{word-spacing:-30.518400px;}
.ws43{word-spacing:-30.229200px;}
.ws2d{word-spacing:-30.222000px;}
.ws28{word-spacing:-29.800800px;}
.ws2e{word-spacing:-29.797200px;}
.wse{word-spacing:-29.075400px;}
.ws5c{word-spacing:-28.584000px;}
.ws9e{word-spacing:-28.578600px;}
.ws36{word-spacing:-27.144000px;}
.wsb6{word-spacing:-26.915400px;}
.ws1b{word-spacing:-26.417400px;}
.wsb7{word-spacing:-26.400600px;}
.ws1c{word-spacing:-26.344800px;}
.ws2b{word-spacing:-26.200800px;}
.ws31{word-spacing:-25.920000px;}
.ws3b{word-spacing:-25.682400px;}
.ws2c{word-spacing:-25.476600px;}
.wsa0{word-spacing:-25.196400px;}
.ws3a{word-spacing:-25.191600px;}
.ws30{word-spacing:-24.760800px;}
.ws61{word-spacing:-23.242500px;}
.ws57{word-spacing:-22.830000px;}
.ws97{word-spacing:-22.821000px;}
.ws15{word-spacing:-22.804200px;}
.wsb0{word-spacing:-22.309200px;}
.ws80{word-spacing:-22.303800px;}
.ws16{word-spacing:-22.100400px;}
.wsb5{word-spacing:-22.091400px;}
.wsa3{word-spacing:-21.371400px;}
.ws34{word-spacing:-21.369600px;}
.ws13{word-spacing:-20.643300px;}
.ws12{word-spacing:-20.151900px;}
.ws37{word-spacing:-19.944000px;}
.ws98{word-spacing:-19.935600px;}
.ws8f{word-spacing:-19.931400px;}
.ws6c{word-spacing:-19.718100px;}
.wsab{word-spacing:-19.717200px;}
.ws19{word-spacing:-19.438800px;}
.wsbc{word-spacing:-19.433400px;}
.wsaf{word-spacing:-18.486000px;}
.ws7{word-spacing:-18.472500px;}
.ws55{word-spacing:-18.000000px;}
.ws44{word-spacing:-17.788200px;}
.ws53{word-spacing:-17.784000px;}
.ws9c{word-spacing:-17.768700px;}
.ws35{word-spacing:-17.282400px;}
.wsa6{word-spacing:-17.276400px;}
.wsa4{word-spacing:-17.056800px;}
.ws4c{word-spacing:-17.052300px;}
.ws5a{word-spacing:-17.052000px;}
.ws33{word-spacing:-15.840000px;}
.ws9d{word-spacing:-15.626400px;}
.ws4b{word-spacing:-15.624000px;}
.ws3d{word-spacing:-15.609600px;}
.ws38{word-spacing:-15.608400px;}
.wsaa{word-spacing:-15.397200px;}
.ws4a{word-spacing:-15.110400px;}
.ws23{word-spacing:-14.910000px;}
.ws40{word-spacing:-14.173200px;}
.wsc{word-spacing:-14.164200px;}
.wsa1{word-spacing:-13.686000px;}
.ws7e{word-spacing:-12.960000px;}
.ws2a{word-spacing:-12.233400px;}
.ws9a{word-spacing:-11.945400px;}
.ws8b{word-spacing:-11.788200px;}
.ws8d{word-spacing:-11.522400px;}
.ws21{word-spacing:-11.357100px;}
.ws7d{word-spacing:-10.086000px;}
.wsb2{word-spacing:-9.849600px;}
.wsb4{word-spacing:-9.845400px;}
.ws91{word-spacing:-7.687200px;}
.ws47{word-spacing:-6.486000px;}
.ws67{word-spacing:-6.179400px;}
.ws3c{word-spacing:-5.536800px;}
.ws46{word-spacing:-4.591800px;}
.wsbe{word-spacing:-3.375900px;}
.wsbf{word-spacing:-1.944000px;}
.ws70{word-spacing:-1.717200px;}
.ws4f{word-spacing:0.453600px;}
.ws4e{word-spacing:0.936000px;}
.ws17{word-spacing:0.948600px;}
.ws6f{word-spacing:1.740600px;}
.ws93{word-spacing:3.609900px;}
.ws94{word-spacing:3.835800px;}
.wsa2{word-spacing:4.543200px;}
.ws2f{word-spacing:4.554600px;}
.ws50{word-spacing:5.976000px;}
.wsac{word-spacing:7.425000px;}
.ws27{word-spacing:7.921800px;}
.ws7b{word-spacing:10.513200px;}
.ws52{word-spacing:13.177800px;}
.ws42{word-spacing:13.680000px;}
.wsa5{word-spacing:15.348600px;}
.ws64{word-spacing:16.278300px;}
.ws6a{word-spacing:27.078300px;}
.ws84{word-spacing:27.360000px;}
.ws65{word-spacing:31.395600px;}
.ws20{word-spacing:36.600000px;}
.ws22{word-spacing:41.050800px;}
.ws81{word-spacing:43.657200px;}
.ws62{word-spacing:58.044000px;}
.ws89{word-spacing:58.343400px;}
.ws88{word-spacing:61.635900px;}
.ws7a{word-spacing:63.078300px;}
.ws72{word-spacing:76.544400px;}
.ws73{word-spacing:79.636500px;}
.ws79{word-spacing:86.848200px;}
.ws6b{word-spacing:106.849200px;}
.ws69{word-spacing:123.561300px;}
.ws86{word-spacing:126.221400px;}
.ws8c{word-spacing:129.108600px;}
.ws82{word-spacing:132.492600px;}
.ws78{word-spacing:133.914000px;}
.ws68{word-spacing:134.927400px;}
.ws83{word-spacing:135.078300px;}
.ws7f{word-spacing:150.201000px;}
.ws6d{word-spacing:151.200000px;}
.ws85{word-spacing:153.373500px;}
.ws66{word-spacing:182.169000px;}
.ws8a{word-spacing:200.173500px;}
.ws7c{word-spacing:210.960000px;}
.ws75{word-spacing:214.632900px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._1e{width:19.874400px;}
._19{width:21.308400px;}
._5{width:22.868400px;}
._9{width:24.218400px;}
._8{width:25.321200px;}
._13{width:26.694000px;}
._6{width:28.084200px;}
._7{width:29.287200px;}
._d{width:30.993000px;}
._14{width:32.022600px;}
._1f{width:34.428000px;}
._1{width:36.000000px;}
._a{width:37.356000px;}
._c{width:38.463600px;}
._17{width:39.817200px;}
._16{width:41.112000px;}
._11{width:42.774000px;}
._1a{width:43.909200px;}
._f{width:45.754200px;}
._23{width:47.890800px;}
._1c{width:50.521200px;}
._18{width:51.616800px;}
._24{width:54.000000px;}
._b{width:58.441200px;}
._21{width:60.967800px;}
._15{width:62.037600px;}
._1d{width:63.792000px;}
._12{width:65.012400px;}
._1b{width:70.737600px;}
._22{width:72.635400px;}
._20{width:88.550400px;}
._e{width:94.282800px;}
._10{width:98.341200px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y8c{bottom:5.025000px;}
.y6f{bottom:5.700000px;}
.y7e{bottom:5.761500px;}
.y67{bottom:5.820000px;}
.y62{bottom:5.836500px;}
.y85{bottom:15.465000px;}
.y72{bottom:16.140000px;}
.y7a{bottom:16.200000px;}
.y6a{bottom:16.261500px;}
.y8b{bottom:25.725000px;}
.y88{bottom:25.905000px;}
.y6e{bottom:26.400000px;}
.y7d{bottom:26.461500px;}
.y66{bottom:26.520000px;}
.y80{bottom:26.521500px;}
.y60{bottom:26.536500px;}
.y76{bottom:26.640000px;}
.y84{bottom:36.165000px;}
.y71{bottom:36.840000px;}
.y79{bottom:36.900000px;}
.y69{bottom:36.961500px;}
.y5d{bottom:36.975000px;}
.y8a{bottom:46.425000px;}
.y87{bottom:46.605000px;}
.y6d{bottom:47.100000px;}
.y7c{bottom:47.161500px;}
.y65{bottom:47.220000px;}
.y5f{bottom:47.236500px;}
.y75{bottom:47.340000px;}
.y83{bottom:56.865000px;}
.y68{bottom:57.480000px;}
.y5c{bottom:57.495000px;}
.y70{bottom:57.540000px;}
.y78{bottom:57.600000px;}
.y86{bottom:67.125000px;}
.y64{bottom:67.740000px;}
.y6c{bottom:67.800000px;}
.y74{bottom:67.861500px;}
.y5e{bottom:67.936500px;}
.y6{bottom:72.825000px;}
.y82{bottom:77.565000px;}
.y5{bottom:77.655000px;}
.y77{bottom:78.300000px;}
.y89{bottom:87.825000px;}
.y61{bottom:88.455000px;}
.y7b{bottom:88.561500px;}
.y30{bottom:101.236500px;}
.y9e{bottom:107.715000px;}
.y2f{bottom:121.936500px;}
.y9d{bottom:128.415000px;}
.y2e{bottom:142.636500px;}
.y5a{bottom:144.255000px;}
.y9c{bottom:149.115000px;}
.y2d{bottom:163.336500px;}
.y59{bottom:164.775000px;}
.y9b{bottom:169.815000px;}
.y2c{bottom:184.036500px;}
.ybb{bottom:185.475000px;}
.y9a{bottom:190.515000px;}
.y2b{bottom:204.736500px;}
.yba{bottom:206.175000px;}
.y58{bottom:206.536500px;}
.y99{bottom:211.215000px;}
.y2a{bottom:225.436500px;}
.yb9{bottom:226.875000px;}
.y57{bottom:227.236500px;}
.y98{bottom:231.915000px;}
.y29{bottom:246.136500px;}
.yb8{bottom:247.575000px;}
.y56{bottom:247.936500px;}
.y97{bottom:252.615000px;}
.y28{bottom:266.836500px;}
.yb7{bottom:268.275000px;}
.y55{bottom:268.636500px;}
.y96{bottom:273.315000px;}
.y27{bottom:287.536500px;}
.yb6{bottom:288.975000px;}
.y54{bottom:289.336500px;}
.y95{bottom:294.015000px;}
.y26{bottom:308.236500px;}
.yb5{bottom:309.675000px;}
.y53{bottom:310.036500px;}
.y94{bottom:314.715000px;}
.y25{bottom:328.936500px;}
.yb4{bottom:330.375000px;}
.y52{bottom:330.736500px;}
.y93{bottom:335.415000px;}
.y24{bottom:349.636500px;}
.yb3{bottom:351.075000px;}
.y51{bottom:351.436500px;}
.y23{bottom:370.336500px;}
.yb2{bottom:371.775000px;}
.y50{bottom:372.136500px;}
.y92{bottom:377.175000px;}
.y22{bottom:391.036500px;}
.yb1{bottom:392.475000px;}
.y4f{bottom:392.836500px;}
.y91{bottom:397.875000px;}
.yb0{bottom:413.175000px;}
.y4e{bottom:413.536500px;}
.y90{bottom:418.575000px;}
.y21{bottom:432.795000px;}
.yaf{bottom:433.875000px;}
.y4d{bottom:434.236500px;}
.y8f{bottom:439.275000px;}
.y20{bottom:453.496500px;}
.yae{bottom:454.575000px;}
.y4c{bottom:454.936500px;}
.y8e{bottom:459.975000px;}
.yad{bottom:475.275000px;}
.y4b{bottom:475.636500px;}
.y8d{bottom:480.675000px;}
.y1f{bottom:495.075000px;}
.y4a{bottom:496.336500px;}
.y1e{bottom:515.775000px;}
.y49{bottom:517.036500px;}
.y81{bottom:520.650000px;}
.y1d{bottom:536.475000px;}
.y48{bottom:537.736500px;}
.y1c{bottom:557.175000px;}
.y47{bottom:558.436500px;}
.yac{bottom:558.796500px;}
.y1b{bottom:577.875000px;}
.y46{bottom:579.136500px;}
.yab{bottom:579.496500px;}
.y1a{bottom:598.575000px;}
.yaa{bottom:600.195000px;}
.y45{bottom:620.896500px;}
.y7f{bottom:629.475000px;}
.y19{bottom:640.336500px;}
.y44{bottom:641.596500px;}
.y18{bottom:661.036500px;}
.y43{bottom:662.295000px;}
.y42{bottom:682.996500px;}
.y17{bottom:702.795000px;}
.y41{bottom:703.695000px;}
.y73{bottom:718.275000px;}
.y16{bottom:723.496500px;}
.y40{bottom:724.396500px;}
.y15{bottom:744.195000px;}
.y3f{bottom:745.096500px;}
.y14{bottom:764.895000px;}
.y3e{bottom:765.795000px;}
.y13{bottom:785.596500px;}
.y3d{bottom:786.496500px;}
.y3c{bottom:807.195000px;}
.ya9{bottom:807.375000px;}
.y12{bottom:827.175000px;}
.y6b{bottom:827.775000px;}
.y3b{bottom:827.895000px;}
.ya8{bottom:828.075000px;}
.y11{bottom:847.875000px;}
.y3a{bottom:848.596500px;}
.ya7{bottom:848.775000px;}
.y39{bottom:869.295000px;}
.ya6{bottom:869.475000px;}
.y10{bottom:889.636500px;}
.y38{bottom:889.995000px;}
.ya5{bottom:890.175000px;}
.yf{bottom:910.336500px;}
.y37{bottom:910.695000px;}
.ya4{bottom:910.875000px;}
.y63{bottom:916.575000px;}
.ye{bottom:931.036500px;}
.y36{bottom:931.395000px;}
.ya3{bottom:931.575000px;}
.yd{bottom:951.736500px;}
.y35{bottom:952.095000px;}
.ya2{bottom:952.275000px;}
.yc{bottom:972.436500px;}
.y34{bottom:972.795000px;}
.ya1{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y33{bottom:993.495000px;}
.ya0{bottom:993.675000px;}
.y5b{bottom:1005.300000px;}
.y9f{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y32{bottom:1035.075000px;}
.y31{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h7{height:86.475000px;}
.h6{height:106.425000px;}
.h9{height:106.500000px;}
.h8{height:107.175000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w4{width:123.600000px;}
.w3{width:137.100000px;}
.w5{width:141.150000px;}
.w6{width:144.600000px;}
.w7{width:148.800000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.170000px;}
.x8{left:126.450000px;}
.x1{left:127.620000px;}
.xe{left:154.620000px;}
.x7{left:180.720000px;}
.x4{left:181.800000px;}
.xa{left:265.725000px;}
.xb{left:391.500000px;}
.x5{left:399.420000px;}
.x3{left:461.625000px;}
.xc{left:534.825000px;}
.x6{left:566.100000px;}
.xd{left:681.600000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.188800pt;}
.ws76{word-spacing:-49.916800pt;}
.wsa{word-spacing:-49.728000pt;}
.ws24{word-spacing:-34.670400pt;}
.wsb9{word-spacing:-34.545600pt;}
.ws39{word-spacing:-34.363733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws4d{word-spacing:-34.354667pt;}
.ws1a{word-spacing:-34.354400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws14{word-spacing:-34.176533pt;}
.ws11{word-spacing:-34.174933pt;}
.ws54{word-spacing:-34.169600pt;}
.ws9{word-spacing:-34.160000pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc1{word-spacing:-33.916800pt;}
.ws71{word-spacing:-33.915200pt;}
.ws60{word-spacing:-33.899200pt;}
.ws92{word-spacing:-33.887200pt;}
.ws0{word-spacing:-33.728000pt;}
.wsb{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.723200pt;}
.ws63{word-spacing:-33.722933pt;}
.wsb8{word-spacing:-33.721600pt;}
.ws87{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws95{word-spacing:-33.716267pt;}
.ws1d{word-spacing:-33.709600pt;}
.wsa9{word-spacing:-33.529600pt;}
.ws59{word-spacing:-33.280000pt;}
.ws3e{word-spacing:-31.998400pt;}
.wsad{word-spacing:-31.800000pt;}
.ws18{word-spacing:-31.795200pt;}
.ws8e{word-spacing:-31.598400pt;}
.wsbd{word-spacing:-31.173333pt;}
.wsb3{word-spacing:-31.165600pt;}
.wsd{word-spacing:-31.158400pt;}
.ws6e{word-spacing:-31.157600pt;}
.wsae{word-spacing:-31.148800pt;}
.ws48{word-spacing:-31.139200pt;}
.ws77{word-spacing:-30.972000pt;}
.ws96{word-spacing:-30.720000pt;}
.ws32{word-spacing:-30.511467pt;}
.ws5f{word-spacing:-30.508800pt;}
.wsa8{word-spacing:-30.492800pt;}
.wsba{word-spacing:-30.080000pt;}
.ws10{word-spacing:-30.044800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws45{word-spacing:-29.692800pt;}
.wsc0{word-spacing:-29.253333pt;}
.ws3f{word-spacing:-29.242667pt;}
.ws51{word-spacing:-29.240000pt;}
.ws9f{word-spacing:-29.052800pt;}
.ws56{word-spacing:-29.046400pt;}
.ws1e{word-spacing:-28.613333pt;}
.ws5e{word-spacing:-28.604800pt;}
.wsa7{word-spacing:-28.590400pt;}
.ws74{word-spacing:-28.579200pt;}
.ws5d{word-spacing:-28.404800pt;}
.ws49{word-spacing:-28.162133pt;}
.wsbb{word-spacing:-28.160000pt;}
.ws5b{word-spacing:-28.156800pt;}
.ws1f{word-spacing:-28.151200pt;}
.wsf{word-spacing:-28.150400pt;}
.ws58{word-spacing:-28.131200pt;}
.ws26{word-spacing:-27.973333pt;}
.ws99{word-spacing:-27.962933pt;}
.ws41{word-spacing:-27.764800pt;}
.ws29{word-spacing:-27.512000pt;}
.ws9b{word-spacing:-27.510400pt;}
.ws25{word-spacing:-27.503200pt;}
.wsb1{word-spacing:-27.318400pt;}
.ws90{word-spacing:-27.127467pt;}
.ws43{word-spacing:-26.870400pt;}
.ws2d{word-spacing:-26.864000pt;}
.ws28{word-spacing:-26.489600pt;}
.ws2e{word-spacing:-26.486400pt;}
.wse{word-spacing:-25.844800pt;}
.ws5c{word-spacing:-25.408000pt;}
.ws9e{word-spacing:-25.403200pt;}
.ws36{word-spacing:-24.128000pt;}
.wsb6{word-spacing:-23.924800pt;}
.ws1b{word-spacing:-23.482133pt;}
.wsb7{word-spacing:-23.467200pt;}
.ws1c{word-spacing:-23.417600pt;}
.ws2b{word-spacing:-23.289600pt;}
.ws31{word-spacing:-23.040000pt;}
.ws3b{word-spacing:-22.828800pt;}
.ws2c{word-spacing:-22.645867pt;}
.wsa0{word-spacing:-22.396800pt;}
.ws3a{word-spacing:-22.392533pt;}
.ws30{word-spacing:-22.009600pt;}
.ws61{word-spacing:-20.660000pt;}
.ws57{word-spacing:-20.293333pt;}
.ws97{word-spacing:-20.285333pt;}
.ws15{word-spacing:-20.270400pt;}
.wsb0{word-spacing:-19.830400pt;}
.ws80{word-spacing:-19.825600pt;}
.ws16{word-spacing:-19.644800pt;}
.wsb5{word-spacing:-19.636800pt;}
.wsa3{word-spacing:-18.996800pt;}
.ws34{word-spacing:-18.995200pt;}
.ws13{word-spacing:-18.349600pt;}
.ws12{word-spacing:-17.912800pt;}
.ws37{word-spacing:-17.728000pt;}
.ws98{word-spacing:-17.720533pt;}
.ws8f{word-spacing:-17.716800pt;}
.ws6c{word-spacing:-17.527200pt;}
.wsab{word-spacing:-17.526400pt;}
.ws19{word-spacing:-17.278933pt;}
.wsbc{word-spacing:-17.274133pt;}
.wsaf{word-spacing:-16.432000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws55{word-spacing:-16.000000pt;}
.ws44{word-spacing:-15.811733pt;}
.ws53{word-spacing:-15.808000pt;}
.ws9c{word-spacing:-15.794400pt;}
.ws35{word-spacing:-15.362133pt;}
.wsa6{word-spacing:-15.356800pt;}
.wsa4{word-spacing:-15.161600pt;}
.ws4c{word-spacing:-15.157600pt;}
.ws5a{word-spacing:-15.157333pt;}
.ws33{word-spacing:-14.080000pt;}
.ws9d{word-spacing:-13.890133pt;}
.ws4b{word-spacing:-13.888000pt;}
.ws3d{word-spacing:-13.875200pt;}
.ws38{word-spacing:-13.874133pt;}
.wsaa{word-spacing:-13.686400pt;}
.ws4a{word-spacing:-13.431467pt;}
.ws23{word-spacing:-13.253333pt;}
.ws40{word-spacing:-12.598400pt;}
.wsc{word-spacing:-12.590400pt;}
.wsa1{word-spacing:-12.165333pt;}
.ws7e{word-spacing:-11.520000pt;}
.ws2a{word-spacing:-10.874133pt;}
.ws9a{word-spacing:-10.618133pt;}
.ws8b{word-spacing:-10.478400pt;}
.ws8d{word-spacing:-10.242133pt;}
.ws21{word-spacing:-10.095200pt;}
.ws7d{word-spacing:-8.965333pt;}
.wsb2{word-spacing:-8.755200pt;}
.wsb4{word-spacing:-8.751467pt;}
.ws91{word-spacing:-6.833067pt;}
.ws47{word-spacing:-5.765333pt;}
.ws67{word-spacing:-5.492800pt;}
.ws3c{word-spacing:-4.921600pt;}
.ws46{word-spacing:-4.081600pt;}
.wsbe{word-spacing:-3.000800pt;}
.wsbf{word-spacing:-1.728000pt;}
.ws70{word-spacing:-1.526400pt;}
.ws4f{word-spacing:0.403200pt;}
.ws4e{word-spacing:0.832000pt;}
.ws17{word-spacing:0.843200pt;}
.ws6f{word-spacing:1.547200pt;}
.ws93{word-spacing:3.208800pt;}
.ws94{word-spacing:3.409600pt;}
.wsa2{word-spacing:4.038400pt;}
.ws2f{word-spacing:4.048533pt;}
.ws50{word-spacing:5.312000pt;}
.wsac{word-spacing:6.600000pt;}
.ws27{word-spacing:7.041600pt;}
.ws7b{word-spacing:9.345067pt;}
.ws52{word-spacing:11.713600pt;}
.ws42{word-spacing:12.160000pt;}
.wsa5{word-spacing:13.643200pt;}
.ws64{word-spacing:14.469600pt;}
.ws6a{word-spacing:24.069600pt;}
.ws84{word-spacing:24.320000pt;}
.ws65{word-spacing:27.907200pt;}
.ws20{word-spacing:32.533333pt;}
.ws22{word-spacing:36.489600pt;}
.ws81{word-spacing:38.806400pt;}
.ws62{word-spacing:51.594667pt;}
.ws89{word-spacing:51.860800pt;}
.ws88{word-spacing:54.787467pt;}
.ws7a{word-spacing:56.069600pt;}
.ws72{word-spacing:68.039467pt;}
.ws73{word-spacing:70.788000pt;}
.ws79{word-spacing:77.198400pt;}
.ws6b{word-spacing:94.977067pt;}
.ws69{word-spacing:109.832267pt;}
.ws86{word-spacing:112.196800pt;}
.ws8c{word-spacing:114.763200pt;}
.ws82{word-spacing:117.771200pt;}
.ws78{word-spacing:119.034667pt;}
.ws68{word-spacing:119.935467pt;}
.ws83{word-spacing:120.069600pt;}
.ws7f{word-spacing:133.512000pt;}
.ws6d{word-spacing:134.400000pt;}
.ws85{word-spacing:136.332000pt;}
.ws66{word-spacing:161.928000pt;}
.ws8a{word-spacing:177.932000pt;}
.ws7c{word-spacing:187.520000pt;}
.ws75{word-spacing:190.784800pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._1e{width:17.666133pt;}
._19{width:18.940800pt;}
._5{width:20.327467pt;}
._9{width:21.527467pt;}
._8{width:22.507733pt;}
._13{width:23.728000pt;}
._6{width:24.963733pt;}
._7{width:26.033067pt;}
._d{width:27.549333pt;}
._14{width:28.464533pt;}
._1f{width:30.602667pt;}
._1{width:32.000000pt;}
._a{width:33.205333pt;}
._c{width:34.189867pt;}
._17{width:35.393067pt;}
._16{width:36.544000pt;}
._11{width:38.021333pt;}
._1a{width:39.030400pt;}
._f{width:40.670400pt;}
._23{width:42.569600pt;}
._1c{width:44.907733pt;}
._18{width:45.881600pt;}
._24{width:48.000000pt;}
._b{width:51.947733pt;}
._21{width:54.193600pt;}
._15{width:55.144533pt;}
._1d{width:56.704000pt;}
._12{width:57.788800pt;}
._1b{width:62.877867pt;}
._22{width:64.564800pt;}
._20{width:78.711467pt;}
._e{width:83.806933pt;}
._10{width:87.414400pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y8c{bottom:4.466667pt;}
.y6f{bottom:5.066667pt;}
.y7e{bottom:5.121333pt;}
.y67{bottom:5.173333pt;}
.y62{bottom:5.188000pt;}
.y85{bottom:13.746667pt;}
.y72{bottom:14.346667pt;}
.y7a{bottom:14.400000pt;}
.y6a{bottom:14.454667pt;}
.y8b{bottom:22.866667pt;}
.y88{bottom:23.026667pt;}
.y6e{bottom:23.466667pt;}
.y7d{bottom:23.521333pt;}
.y66{bottom:23.573333pt;}
.y80{bottom:23.574667pt;}
.y60{bottom:23.588000pt;}
.y76{bottom:23.680000pt;}
.y84{bottom:32.146667pt;}
.y71{bottom:32.746667pt;}
.y79{bottom:32.800000pt;}
.y69{bottom:32.854667pt;}
.y5d{bottom:32.866667pt;}
.y8a{bottom:41.266667pt;}
.y87{bottom:41.426667pt;}
.y6d{bottom:41.866667pt;}
.y7c{bottom:41.921333pt;}
.y65{bottom:41.973333pt;}
.y5f{bottom:41.988000pt;}
.y75{bottom:42.080000pt;}
.y83{bottom:50.546667pt;}
.y68{bottom:51.093333pt;}
.y5c{bottom:51.106667pt;}
.y70{bottom:51.146667pt;}
.y78{bottom:51.200000pt;}
.y86{bottom:59.666667pt;}
.y64{bottom:60.213333pt;}
.y6c{bottom:60.266667pt;}
.y74{bottom:60.321333pt;}
.y5e{bottom:60.388000pt;}
.y6{bottom:64.733333pt;}
.y82{bottom:68.946667pt;}
.y5{bottom:69.026667pt;}
.y77{bottom:69.600000pt;}
.y89{bottom:78.066667pt;}
.y61{bottom:78.626667pt;}
.y7b{bottom:78.721333pt;}
.y30{bottom:89.988000pt;}
.y9e{bottom:95.746667pt;}
.y2f{bottom:108.388000pt;}
.y9d{bottom:114.146667pt;}
.y2e{bottom:126.788000pt;}
.y5a{bottom:128.226667pt;}
.y9c{bottom:132.546667pt;}
.y2d{bottom:145.188000pt;}
.y59{bottom:146.466667pt;}
.y9b{bottom:150.946667pt;}
.y2c{bottom:163.588000pt;}
.ybb{bottom:164.866667pt;}
.y9a{bottom:169.346667pt;}
.y2b{bottom:181.988000pt;}
.yba{bottom:183.266667pt;}
.y58{bottom:183.588000pt;}
.y99{bottom:187.746667pt;}
.y2a{bottom:200.388000pt;}
.yb9{bottom:201.666667pt;}
.y57{bottom:201.988000pt;}
.y98{bottom:206.146667pt;}
.y29{bottom:218.788000pt;}
.yb8{bottom:220.066667pt;}
.y56{bottom:220.388000pt;}
.y97{bottom:224.546667pt;}
.y28{bottom:237.188000pt;}
.yb7{bottom:238.466667pt;}
.y55{bottom:238.788000pt;}
.y96{bottom:242.946667pt;}
.y27{bottom:255.588000pt;}
.yb6{bottom:256.866667pt;}
.y54{bottom:257.188000pt;}
.y95{bottom:261.346667pt;}
.y26{bottom:273.988000pt;}
.yb5{bottom:275.266667pt;}
.y53{bottom:275.588000pt;}
.y94{bottom:279.746667pt;}
.y25{bottom:292.388000pt;}
.yb4{bottom:293.666667pt;}
.y52{bottom:293.988000pt;}
.y93{bottom:298.146667pt;}
.y24{bottom:310.788000pt;}
.yb3{bottom:312.066667pt;}
.y51{bottom:312.388000pt;}
.y23{bottom:329.188000pt;}
.yb2{bottom:330.466667pt;}
.y50{bottom:330.788000pt;}
.y92{bottom:335.266667pt;}
.y22{bottom:347.588000pt;}
.yb1{bottom:348.866667pt;}
.y4f{bottom:349.188000pt;}
.y91{bottom:353.666667pt;}
.yb0{bottom:367.266667pt;}
.y4e{bottom:367.588000pt;}
.y90{bottom:372.066667pt;}
.y21{bottom:384.706667pt;}
.yaf{bottom:385.666667pt;}
.y4d{bottom:385.988000pt;}
.y8f{bottom:390.466667pt;}
.y20{bottom:403.108000pt;}
.yae{bottom:404.066667pt;}
.y4c{bottom:404.388000pt;}
.y8e{bottom:408.866667pt;}
.yad{bottom:422.466667pt;}
.y4b{bottom:422.788000pt;}
.y8d{bottom:427.266667pt;}
.y1f{bottom:440.066667pt;}
.y4a{bottom:441.188000pt;}
.y1e{bottom:458.466667pt;}
.y49{bottom:459.588000pt;}
.y81{bottom:462.800000pt;}
.y1d{bottom:476.866667pt;}
.y48{bottom:477.988000pt;}
.y1c{bottom:495.266667pt;}
.y47{bottom:496.388000pt;}
.yac{bottom:496.708000pt;}
.y1b{bottom:513.666667pt;}
.y46{bottom:514.788000pt;}
.yab{bottom:515.108000pt;}
.y1a{bottom:532.066667pt;}
.yaa{bottom:533.506667pt;}
.y45{bottom:551.908000pt;}
.y7f{bottom:559.533333pt;}
.y19{bottom:569.188000pt;}
.y44{bottom:570.308000pt;}
.y18{bottom:587.588000pt;}
.y43{bottom:588.706667pt;}
.y42{bottom:607.108000pt;}
.y17{bottom:624.706667pt;}
.y41{bottom:625.506667pt;}
.y73{bottom:638.466667pt;}
.y16{bottom:643.108000pt;}
.y40{bottom:643.908000pt;}
.y15{bottom:661.506667pt;}
.y3f{bottom:662.308000pt;}
.y14{bottom:679.906667pt;}
.y3e{bottom:680.706667pt;}
.y13{bottom:698.308000pt;}
.y3d{bottom:699.108000pt;}
.y3c{bottom:717.506667pt;}
.ya9{bottom:717.666667pt;}
.y12{bottom:735.266667pt;}
.y6b{bottom:735.800000pt;}
.y3b{bottom:735.906667pt;}
.ya8{bottom:736.066667pt;}
.y11{bottom:753.666667pt;}
.y3a{bottom:754.308000pt;}
.ya7{bottom:754.466667pt;}
.y39{bottom:772.706667pt;}
.ya6{bottom:772.866667pt;}
.y10{bottom:790.788000pt;}
.y38{bottom:791.106667pt;}
.ya5{bottom:791.266667pt;}
.yf{bottom:809.188000pt;}
.y37{bottom:809.506667pt;}
.ya4{bottom:809.666667pt;}
.y63{bottom:814.733333pt;}
.ye{bottom:827.588000pt;}
.y36{bottom:827.906667pt;}
.ya3{bottom:828.066667pt;}
.yd{bottom:845.988000pt;}
.y35{bottom:846.306667pt;}
.ya2{bottom:846.466667pt;}
.yc{bottom:864.388000pt;}
.y34{bottom:864.706667pt;}
.ya1{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y33{bottom:883.106667pt;}
.ya0{bottom:883.266667pt;}
.y5b{bottom:893.600000pt;}
.y9f{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y32{bottom:920.066667pt;}
.y31{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h7{height:76.866667pt;}
.h6{height:94.600000pt;}
.h9{height:94.666667pt;}
.h8{height:95.266667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w4{width:109.866667pt;}
.w3{width:121.866667pt;}
.w5{width:125.466667pt;}
.w6{width:128.533333pt;}
.w7{width:132.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.040000pt;}
.x8{left:112.400000pt;}
.x1{left:113.440000pt;}
.xe{left:137.440000pt;}
.x7{left:160.640000pt;}
.x4{left:161.600000pt;}
.xa{left:236.200000pt;}
.xb{left:348.000000pt;}
.x5{left:355.040000pt;}
.x3{left:410.333333pt;}
.xc{left:475.400000pt;}
.x6{left:503.200000pt;}
.xd{left:605.866667pt;}
.x2{left:649.920000pt;}
}




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