
    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_9733317d8607fbf9e9701c8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_7ca3bee37e5852b71df624c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_7ca3bee37e5852b71df624c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_5af4c85635fac0a18898d8b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_85ab71c7812005a76b188fa8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_cc5bf6399008c7b0cac39d38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690322;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_a63324ef94aa0d45a06a968c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b08c1fd9b0b443f7ada08817.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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);}
.v3{vertical-align:-13.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.800000px;}
.v2{vertical-align:20.160000px;}
.ls6{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.390000px;}
.ls8{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.195000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.195000px;}
.ls1{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.480000px;}
.lsa{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.425000px;}
.ls2{letter-spacing:71.999400px;}
.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;}
}
.ws54{word-spacing:-15.300000px;}
.ws55{word-spacing:-15.000000px;}
.ws52{word-spacing:-14.400000px;}
.ws1{word-spacing:-13.010400px;}
.ws0{word-spacing:-9.750000px;}
.ws53{word-spacing:-9.555000px;}
.ws2{word-spacing:-8.673600px;}
.ws24{word-spacing:-7.500000px;}
.ws4f{word-spacing:-4.200000px;}
.ws6d{word-spacing:-4.080000px;}
.ws79{word-spacing:-2.820000px;}
.ws23{word-spacing:-2.640000px;}
.ws86{word-spacing:-2.460000px;}
.wsa{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.280000px;}
.ws8e{word-spacing:-2.268000px;}
.ws40{word-spacing:-2.220000px;}
.ws4b{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.106000px;}
.ws4e{word-spacing:-2.100000px;}
.ws5d{word-spacing:-1.800000px;}
.ws85{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.674000px;}
.ws4{word-spacing:-1.668000px;}
.ws5{word-spacing:-1.500000px;}
.ws3{word-spacing:-1.482000px;}
.ws9c{word-spacing:-1.080000px;}
.ws76{word-spacing:-0.960000px;}
.ws95{word-spacing:-0.918000px;}
.ws98{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.840000px;}
.ws6c{word-spacing:-0.780000px;}
.ws33{word-spacing:-0.720000px;}
.ws51{word-spacing:-0.660000px;}
.ws39{word-spacing:-0.600000px;}
.ws7{word-spacing:-0.480000px;}
.ws81{word-spacing:-0.420000px;}
.ws5c{word-spacing:-0.300000px;}
.ws4c{word-spacing:-0.120000px;}
.ws6{word-spacing:0.000000px;}
.ws1b{word-spacing:0.060000px;}
.ws29{word-spacing:0.120000px;}
.ws11{word-spacing:0.180000px;}
.ws5b{word-spacing:0.240000px;}
.ws68{word-spacing:0.360000px;}
.ws5f{word-spacing:0.390000px;}
.ws57{word-spacing:0.420000px;}
.ws96{word-spacing:0.486000px;}
.ws37{word-spacing:0.600000px;}
.ws80{word-spacing:0.660000px;}
.ws30{word-spacing:0.720000px;}
.ws8{word-spacing:0.780000px;}
.ws46{word-spacing:0.900000px;}
.ws67{word-spacing:0.960000px;}
.ws7c{word-spacing:1.320000px;}
.ws28{word-spacing:1.380000px;}
.ws26{word-spacing:1.440000px;}
.ws15{word-spacing:1.560000px;}
.ws41{word-spacing:1.620000px;}
.ws19{word-spacing:1.740000px;}
.ws21{word-spacing:1.800000px;}
.ws22{word-spacing:1.860000px;}
.ws35{word-spacing:1.980000px;}
.wsd{word-spacing:2.040000px;}
.ws4a{word-spacing:2.100000px;}
.ws73{word-spacing:2.160000px;}
.ws9a{word-spacing:2.214000px;}
.ws6f{word-spacing:2.340000px;}
.ws7b{word-spacing:2.460000px;}
.ws65{word-spacing:2.520000px;}
.ws3b{word-spacing:2.580000px;}
.ws75{word-spacing:2.700000px;}
.ws17{word-spacing:2.880000px;}
.ws9b{word-spacing:2.916000px;}
.ws3e{word-spacing:2.940000px;}
.ws27{word-spacing:3.060000px;}
.wsc{word-spacing:3.120000px;}
.ws18{word-spacing:3.180000px;}
.ws2c{word-spacing:3.240000px;}
.wse{word-spacing:3.300000px;}
.ws6a{word-spacing:3.360000px;}
.ws2d{word-spacing:3.420000px;}
.ws3f{word-spacing:3.480000px;}
.ws92{word-spacing:3.510000px;}
.ws47{word-spacing:3.540000px;}
.ws10{word-spacing:3.600000px;}
.ws88{word-spacing:3.660000px;}
.ws74{word-spacing:3.720000px;}
.ws2f{word-spacing:3.780000px;}
.ws2b{word-spacing:3.840000px;}
.ws8a{word-spacing:3.960000px;}
.ws31{word-spacing:4.260000px;}
.ws2e{word-spacing:4.440000px;}
.ws9e{word-spacing:4.536000px;}
.ws36{word-spacing:4.980000px;}
.ws99{word-spacing:5.022000px;}
.ws62{word-spacing:5.040000px;}
.ws8d{word-spacing:5.130000px;}
.ws70{word-spacing:5.160000px;}
.ws16{word-spacing:5.340000px;}
.ws3c{word-spacing:5.400000px;}
.ws8b{word-spacing:5.460000px;}
.ws1f{word-spacing:5.820000px;}
.ws87{word-spacing:6.180000px;}
.ws2a{word-spacing:6.300000px;}
.ws12{word-spacing:6.840000px;}
.ws69{word-spacing:7.020000px;}
.ws3a{word-spacing:7.260000px;}
.ws7d{word-spacing:7.440000px;}
.ws25{word-spacing:7.560000px;}
.ws1a{word-spacing:7.860000px;}
.ws9d{word-spacing:7.884000px;}
.ws59{word-spacing:8.100000px;}
.ws7a{word-spacing:8.280000px;}
.ws32{word-spacing:8.460000px;}
.ws90{word-spacing:8.532000px;}
.ws82{word-spacing:8.820000px;}
.ws83{word-spacing:8.880000px;}
.ws91{word-spacing:9.072000px;}
.ws13{word-spacing:9.120000px;}
.ws8f{word-spacing:9.180000px;}
.ws42{word-spacing:9.360000px;}
.ws97{word-spacing:9.450000px;}
.ws7e{word-spacing:9.480000px;}
.ws34{word-spacing:9.600000px;}
.ws44{word-spacing:10.020000px;}
.ws6e{word-spacing:10.140000px;}
.ws77{word-spacing:10.680000px;}
.ws43{word-spacing:10.800000px;}
.ws64{word-spacing:10.860000px;}
.ws5a{word-spacing:10.980000px;}
.ws38{word-spacing:11.040000px;}
.ws3d{word-spacing:11.340000px;}
.ws48{word-spacing:12.000000px;}
.ws84{word-spacing:12.060000px;}
.ws45{word-spacing:12.780000px;}
.ws63{word-spacing:13.740000px;}
.ws49{word-spacing:13.980000px;}
.ws89{word-spacing:14.040000px;}
.ws9{word-spacing:14.520000px;}
.ws78{word-spacing:15.420000px;}
.ws94{word-spacing:15.552000px;}
.ws14{word-spacing:16.200000px;}
.ws58{word-spacing:16.380000px;}
.ws1e{word-spacing:16.500000px;}
.wsf{word-spacing:16.620000px;}
.ws56{word-spacing:18.120000px;}
.ws71{word-spacing:18.960000px;}
.ws1c{word-spacing:21.180000px;}
.ws72{word-spacing:21.360000px;}
.ws66{word-spacing:21.480000px;}
.ws61{word-spacing:22.260000px;}
.ws4d{word-spacing:24.120000px;}
.wsb{word-spacing:24.300000px;}
.ws7f{word-spacing:24.360000px;}
.ws5e{word-spacing:24.420000px;}
.ws60{word-spacing:25.920000px;}
.ws20{word-spacing:26.760000px;}
.ws93{word-spacing:31.914000px;}
.ws50{word-spacing:36.960000px;}
._d{margin-left:-40.500000px;}
._8{margin-left:-28.680000px;}
._5{margin-left:-23.940000px;}
._0{margin-left:-11.676000px;}
._4{margin-left:-9.093000px;}
._9{margin-left:-7.353000px;}
._6{margin-left:-5.373000px;}
._3{margin-left:-4.347000px;}
._2{margin-left:-2.400000px;}
._1{margin-left:-1.080000px;}
._c{width:1.528800px;}
._e{width:2.749800px;}
._a{width:11.988000px;}
._13{width:15.552000px;}
._12{width:22.086000px;}
._10{width:45.468000px;}
._16{width:48.546000px;}
._11{width:50.490000px;}
._15{width:53.514000px;}
._14{width:54.918000px;}
._f{width:72.563400px;}
._7{width:2180.940000px;}
._b{width:2697.480000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:6.000000px;}
.fs9{font-size:31.200000px;}
.fs0{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:46.800000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:31.789050px;}
.y5{bottom:46.789050px;}
.y4{bottom:61.789050px;}
.y3{bottom:76.789050px;}
.y68{bottom:90.780600px;}
.ya1{bottom:96.695400px;}
.y7d{bottom:96.798000px;}
.y67{bottom:108.780600px;}
.y4e{bottom:114.378000px;}
.y25{bottom:114.425250px;}
.ya0{bottom:114.695400px;}
.y7c{bottom:114.798000px;}
.y66{bottom:126.780600px;}
.y4d{bottom:129.378000px;}
.y24{bottom:132.425250px;}
.y9f{bottom:132.695400px;}
.y7b{bottom:132.798000px;}
.y4c{bottom:144.378000px;}
.y65{bottom:144.780600px;}
.y23{bottom:150.425250px;}
.y9e{bottom:150.695400px;}
.y7a{bottom:150.798000px;}
.y4b{bottom:159.378000px;}
.y64{bottom:162.780600px;}
.y22{bottom:168.425250px;}
.y9d{bottom:168.695400px;}
.y79{bottom:168.798000px;}
.y63{bottom:180.780600px;}
.y21{bottom:186.425250px;}
.y9c{bottom:186.695400px;}
.y4a{bottom:186.738000px;}
.y78{bottom:186.798000px;}
.y49{bottom:198.378000px;}
.y62{bottom:198.780600px;}
.y20{bottom:204.425250px;}
.y9b{bottom:204.695400px;}
.y77{bottom:204.798000px;}
.y48{bottom:213.378000px;}
.y47{bottom:216.738000px;}
.y61{bottom:216.780600px;}
.y1f{bottom:222.425250px;}
.y9a{bottom:222.695400px;}
.y76{bottom:222.798000px;}
.y60{bottom:234.780600px;}
.y1e{bottom:240.425250px;}
.y99{bottom:240.695400px;}
.y75{bottom:240.798000px;}
.y38{bottom:252.425250px;}
.y5f{bottom:252.780600px;}
.y1d{bottom:258.425250px;}
.y98{bottom:258.695400px;}
.y74{bottom:258.798000px;}
.y37{bottom:270.425250px;}
.y5e{bottom:270.780600px;}
.y1c{bottom:276.425250px;}
.y97{bottom:276.695400px;}
.y73{bottom:276.798000px;}
.y36{bottom:288.425250px;}
.y5d{bottom:288.780600px;}
.y1b{bottom:294.425250px;}
.y96{bottom:294.695400px;}
.y72{bottom:294.798000px;}
.y35{bottom:306.425250px;}
.y5c{bottom:306.780600px;}
.y1a{bottom:312.425250px;}
.y95{bottom:312.695400px;}
.y71{bottom:312.798000px;}
.y34{bottom:324.425250px;}
.y5b{bottom:324.780600px;}
.y94{bottom:330.695400px;}
.y70{bottom:330.798000px;}
.y19{bottom:339.425250px;}
.y33{bottom:342.425250px;}
.y5a{bottom:342.780600px;}
.y93{bottom:348.695400px;}
.y6f{bottom:357.798000px;}
.y32{bottom:360.425250px;}
.y59{bottom:360.780600px;}
.y92{bottom:366.695400px;}
.y31{bottom:378.425250px;}
.y58{bottom:378.780600px;}
.y18{bottom:384.425250px;}
.y91{bottom:384.695400px;}
.y30{bottom:396.425250px;}
.y57{bottom:396.780600px;}
.y17{bottom:402.425250px;}
.y90{bottom:402.695400px;}
.y6e{bottom:405.795600px;}
.y2f{bottom:414.425250px;}
.y56{bottom:414.780600px;}
.y16{bottom:420.425250px;}
.y8f{bottom:420.695400px;}
.y6d{bottom:423.795600px;}
.y2e{bottom:432.425250px;}
.y55{bottom:432.780600px;}
.y15{bottom:438.425250px;}
.y8e{bottom:438.695400px;}
.y2d{bottom:450.425250px;}
.y54{bottom:450.780600px;}
.y14{bottom:456.425250px;}
.y8d{bottom:456.695400px;}
.yd1{bottom:467.436300px;}
.yf2{bottom:467.665800px;}
.y2c{bottom:468.425250px;}
.y53{bottom:468.780600px;}
.y13{bottom:474.425250px;}
.y8c{bottom:474.695400px;}
.yb3{bottom:477.545400px;}
.yf1{bottom:484.162800px;}
.yd0{bottom:485.431800px;}
.y2b{bottom:486.425250px;}
.y12{bottom:492.425250px;}
.y8b{bottom:492.695400px;}
.yb2{bottom:494.798400px;}
.yf0{bottom:500.659800px;}
.y2a{bottom:504.425250px;}
.ycf{bottom:507.931800px;}
.y11{bottom:510.425250px;}
.y8a{bottom:510.695400px;}
.yb1{bottom:512.051400px;}
.y6c{bottom:513.202800px;}
.yef{bottom:517.156800px;}
.y29{bottom:522.425250px;}
.y6b{bottom:527.446800px;}
.y10{bottom:528.425250px;}
.y89{bottom:528.695400px;}
.yb0{bottom:529.304400px;}
.yee{bottom:533.653800px;}
.y28{bottom:540.425250px;}
.y6a{bottom:541.692300px;}
.yce{bottom:545.434800px;}
.yf{bottom:546.425250px;}
.yaf{bottom:546.557400px;}
.y88{bottom:546.695400px;}
.yed{bottom:550.150800px;}
.y69{bottom:557.446800px;}
.y27{bottom:558.425250px;}
.ycd{bottom:561.931800px;}
.yae{bottom:563.810400px;}
.y87{bottom:564.695400px;}
.yec{bottom:566.647800px;}
.ye{bottom:573.425250px;}
.y26{bottom:576.425250px;}
.yad{bottom:581.063400px;}
.y86{bottom:582.695400px;}
.yeb{bottom:583.144800px;}
.ycc{bottom:584.431800px;}
.yac{bottom:598.316400px;}
.yea{bottom:599.641800px;}
.y85{bottom:600.695400px;}
.yab{bottom:615.569400px;}
.ye9{bottom:616.138800px;}
.y84{bottom:618.695400px;}
.ycb{bottom:623.431800px;}
.ye8{bottom:632.635800px;}
.yaa{bottom:632.822400px;}
.y83{bottom:636.695400px;}
.yca{bottom:641.431800px;}
.ye7{bottom:649.132800px;}
.ya9{bottom:650.075400px;}
.y46{bottom:653.019450px;}
.y82{bottom:654.695400px;}
.yc9{bottom:659.431800px;}
.ye6{bottom:665.629800px;}
.ya8{bottom:667.328400px;}
.y81{bottom:672.693000px;}
.yc8{bottom:677.431800px;}
.ye5{bottom:682.126800px;}
.ya7{bottom:684.581400px;}
.y45{bottom:686.016150px;}
.y80{bottom:690.693000px;}
.yc7{bottom:695.431800px;}
.ye4{bottom:698.623800px;}
.ya6{bottom:701.834400px;}
.y44{bottom:704.016150px;}
.y7f{bottom:708.693000px;}
.yc6{bottom:713.431800px;}
.ye3{bottom:715.120800px;}
.y7e{bottom:726.693000px;}
.ya5{bottom:728.084400px;}
.yc5{bottom:731.431800px;}
.ye2{bottom:731.617800px;}
.y43{bottom:747.531150px;}
.ye1{bottom:748.114800px;}
.yc4{bottom:749.431800px;}
.ye0{bottom:764.611800px;}
.y42{bottom:765.531150px;}
.yc3{bottom:767.431800px;}
.ya4{bottom:771.097800px;}
.ydf{bottom:781.108800px;}
.y41{bottom:783.531150px;}
.yc2{bottom:785.431800px;}
.ya3{bottom:786.852300px;}
.yde{bottom:797.605800px;}
.y40{bottom:801.531150px;}
.ya2{bottom:802.606800px;}
.yc1{bottom:803.431800px;}
.ydd{bottom:814.102800px;}
.y3f{bottom:819.531150px;}
.yc0{bottom:821.431800px;}
.ydc{bottom:830.599800px;}
.y3e{bottom:837.531150px;}
.ybf{bottom:839.431800px;}
.ydb{bottom:847.096800px;}
.y3d{bottom:855.531150px;}
.ybe{bottom:866.431800px;}
.yda{bottom:869.596800px;}
.y3c{bottom:873.531150px;}
.yd9{bottom:905.596800px;}
.ybd{bottom:911.431800px;}
.yd8{bottom:928.096800px;}
.ybc{bottom:929.431800px;}
.y3b{bottom:945.531150px;}
.ybb{bottom:947.431800px;}
.yd7{bottom:959.599800px;}
.yba{bottom:965.431800px;}
.yd6{bottom:976.096800px;}
.yb9{bottom:983.431800px;}
.yd5{bottom:998.596800px;}
.yd{bottom:1000.069650px;}
.yb8{bottom:1001.431800px;}
.yc{bottom:1012.816650px;}
.y1{bottom:1014.289800px;}
.yb7{bottom:1019.431800px;}
.y3a{bottom:1020.534150px;}
.yb{bottom:1025.563650px;}
.yd4{bottom:1034.599800px;}
.yb6{bottom:1037.431800px;}
.ya{bottom:1038.310650px;}
.y39{bottom:1050.531150px;}
.y9{bottom:1051.057650px;}
.yd3{bottom:1051.096800px;}
.yb5{bottom:1055.431800px;}
.y8{bottom:1063.804650px;}
.yb4{bottom:1073.430600px;}
.yd2{bottom:1073.596800px;}
.y7{bottom:1076.551650px;}
.y51{bottom:1108.770150px;}
.y52{bottom:1113.990600px;}
.y2{bottom:1118.770800px;}
.y50{bottom:1177.240200px;}
.y4f{bottom:1178.740200px;}
.hf{height:4.171200px;}
.hc{height:22.744800px;}
.h1{height:26.244000px;}
.h4{height:30.618000px;}
.hd{height:33.600000px;}
.h3{height:34.992000px;}
.h2{height:35.700000px;}
.h13{height:37.530000px;}
.he{height:38.533795px;}
.h10{height:39.366000px;}
.h6{height:41.700000px;}
.h8{height:42.000000px;}
.hb{height:43.740000px;}
.h7{height:43.905000px;}
.h12{height:43.909800px;}
.h11{height:43.914600px;}
.h5{height:50.400000px;}
.ha{height:52.920000px;}
.h9{height:75.600000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:12.755850px;}
.x10{left:74.409450px;}
.x11{left:92.409450px;}
.x4{left:93.546300px;}
.xb{left:111.543300px;}
.x3{left:175.254300px;}
.x12{left:462.939450px;}
.x13{left:480.939450px;}
.xc{left:482.073300px;}
.xe{left:485.967000px;}
.x14{left:489.933000px;}
.xd{left:500.073300px;}
.x2{left:626.157750px;}
.x1{left:684.327750px;}
.x5{left:695.542500px;}
.x9{left:698.787000px;}
.xa{left:708.625500px;}
.x8{left:741.721500px;}
.x7{left:747.664500px;}
.x6{left:781.642500px;}
@media print{
.v3{vertical-align:-11.946667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.933333pt;}
.v2{vertical-align:17.920000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.346667pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.173333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.173333pt;}
.ls1{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.266667pt;}
.ls2{letter-spacing:63.999467pt;}
.ws54{word-spacing:-13.600000pt;}
.ws55{word-spacing:-13.333333pt;}
.ws52{word-spacing:-12.800000pt;}
.ws1{word-spacing:-11.564800pt;}
.ws0{word-spacing:-8.666667pt;}
.ws53{word-spacing:-8.493333pt;}
.ws2{word-spacing:-7.709867pt;}
.ws24{word-spacing:-6.666667pt;}
.ws4f{word-spacing:-3.733333pt;}
.ws6d{word-spacing:-3.626667pt;}
.ws79{word-spacing:-2.506667pt;}
.ws23{word-spacing:-2.346667pt;}
.ws86{word-spacing:-2.186667pt;}
.wsa{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-2.026667pt;}
.ws8e{word-spacing:-2.016000pt;}
.ws40{word-spacing:-1.973333pt;}
.ws4b{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.872000pt;}
.ws4e{word-spacing:-1.866667pt;}
.ws5d{word-spacing:-1.600000pt;}
.ws85{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.488000pt;}
.ws4{word-spacing:-1.482667pt;}
.ws5{word-spacing:-1.333333pt;}
.ws3{word-spacing:-1.317333pt;}
.ws9c{word-spacing:-0.960000pt;}
.ws76{word-spacing:-0.853333pt;}
.ws95{word-spacing:-0.816000pt;}
.ws98{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.746667pt;}
.ws6c{word-spacing:-0.693333pt;}
.ws33{word-spacing:-0.640000pt;}
.ws51{word-spacing:-0.586667pt;}
.ws39{word-spacing:-0.533333pt;}
.ws7{word-spacing:-0.426667pt;}
.ws81{word-spacing:-0.373333pt;}
.ws5c{word-spacing:-0.266667pt;}
.ws4c{word-spacing:-0.106667pt;}
.ws6{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053333pt;}
.ws29{word-spacing:0.106667pt;}
.ws11{word-spacing:0.160000pt;}
.ws5b{word-spacing:0.213333pt;}
.ws68{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.346667pt;}
.ws57{word-spacing:0.373333pt;}
.ws96{word-spacing:0.432000pt;}
.ws37{word-spacing:0.533333pt;}
.ws80{word-spacing:0.586667pt;}
.ws30{word-spacing:0.640000pt;}
.ws8{word-spacing:0.693333pt;}
.ws46{word-spacing:0.800000pt;}
.ws67{word-spacing:0.853333pt;}
.ws7c{word-spacing:1.173333pt;}
.ws28{word-spacing:1.226667pt;}
.ws26{word-spacing:1.280000pt;}
.ws15{word-spacing:1.386667pt;}
.ws41{word-spacing:1.440000pt;}
.ws19{word-spacing:1.546667pt;}
.ws21{word-spacing:1.600000pt;}
.ws22{word-spacing:1.653333pt;}
.ws35{word-spacing:1.760000pt;}
.wsd{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.866667pt;}
.ws73{word-spacing:1.920000pt;}
.ws9a{word-spacing:1.968000pt;}
.ws6f{word-spacing:2.080000pt;}
.ws7b{word-spacing:2.186667pt;}
.ws65{word-spacing:2.240000pt;}
.ws3b{word-spacing:2.293333pt;}
.ws75{word-spacing:2.400000pt;}
.ws17{word-spacing:2.560000pt;}
.ws9b{word-spacing:2.592000pt;}
.ws3e{word-spacing:2.613333pt;}
.ws27{word-spacing:2.720000pt;}
.wsc{word-spacing:2.773333pt;}
.ws18{word-spacing:2.826667pt;}
.ws2c{word-spacing:2.880000pt;}
.wse{word-spacing:2.933333pt;}
.ws6a{word-spacing:2.986667pt;}
.ws2d{word-spacing:3.040000pt;}
.ws3f{word-spacing:3.093333pt;}
.ws92{word-spacing:3.120000pt;}
.ws47{word-spacing:3.146667pt;}
.ws10{word-spacing:3.200000pt;}
.ws88{word-spacing:3.253333pt;}
.ws74{word-spacing:3.306667pt;}
.ws2f{word-spacing:3.360000pt;}
.ws2b{word-spacing:3.413333pt;}
.ws8a{word-spacing:3.520000pt;}
.ws31{word-spacing:3.786667pt;}
.ws2e{word-spacing:3.946667pt;}
.ws9e{word-spacing:4.032000pt;}
.ws36{word-spacing:4.426667pt;}
.ws99{word-spacing:4.464000pt;}
.ws62{word-spacing:4.480000pt;}
.ws8d{word-spacing:4.560000pt;}
.ws70{word-spacing:4.586667pt;}
.ws16{word-spacing:4.746667pt;}
.ws3c{word-spacing:4.800000pt;}
.ws8b{word-spacing:4.853333pt;}
.ws1f{word-spacing:5.173333pt;}
.ws87{word-spacing:5.493333pt;}
.ws2a{word-spacing:5.600000pt;}
.ws12{word-spacing:6.080000pt;}
.ws69{word-spacing:6.240000pt;}
.ws3a{word-spacing:6.453333pt;}
.ws7d{word-spacing:6.613333pt;}
.ws25{word-spacing:6.720000pt;}
.ws1a{word-spacing:6.986667pt;}
.ws9d{word-spacing:7.008000pt;}
.ws59{word-spacing:7.200000pt;}
.ws7a{word-spacing:7.360000pt;}
.ws32{word-spacing:7.520000pt;}
.ws90{word-spacing:7.584000pt;}
.ws82{word-spacing:7.840000pt;}
.ws83{word-spacing:7.893333pt;}
.ws91{word-spacing:8.064000pt;}
.ws13{word-spacing:8.106667pt;}
.ws8f{word-spacing:8.160000pt;}
.ws42{word-spacing:8.320000pt;}
.ws97{word-spacing:8.400000pt;}
.ws7e{word-spacing:8.426667pt;}
.ws34{word-spacing:8.533333pt;}
.ws44{word-spacing:8.906667pt;}
.ws6e{word-spacing:9.013333pt;}
.ws77{word-spacing:9.493333pt;}
.ws43{word-spacing:9.600000pt;}
.ws64{word-spacing:9.653333pt;}
.ws5a{word-spacing:9.760000pt;}
.ws38{word-spacing:9.813333pt;}
.ws3d{word-spacing:10.080000pt;}
.ws48{word-spacing:10.666667pt;}
.ws84{word-spacing:10.720000pt;}
.ws45{word-spacing:11.360000pt;}
.ws63{word-spacing:12.213333pt;}
.ws49{word-spacing:12.426667pt;}
.ws89{word-spacing:12.480000pt;}
.ws9{word-spacing:12.906667pt;}
.ws78{word-spacing:13.706667pt;}
.ws94{word-spacing:13.824000pt;}
.ws14{word-spacing:14.400000pt;}
.ws58{word-spacing:14.560000pt;}
.ws1e{word-spacing:14.666667pt;}
.wsf{word-spacing:14.773333pt;}
.ws56{word-spacing:16.106667pt;}
.ws71{word-spacing:16.853333pt;}
.ws1c{word-spacing:18.826667pt;}
.ws72{word-spacing:18.986667pt;}
.ws66{word-spacing:19.093333pt;}
.ws61{word-spacing:19.786667pt;}
.ws4d{word-spacing:21.440000pt;}
.wsb{word-spacing:21.600000pt;}
.ws7f{word-spacing:21.653333pt;}
.ws5e{word-spacing:21.706667pt;}
.ws60{word-spacing:23.040000pt;}
.ws20{word-spacing:23.786667pt;}
.ws93{word-spacing:28.368000pt;}
.ws50{word-spacing:32.853333pt;}
._d{margin-left:-36.000000pt;}
._8{margin-left:-25.493333pt;}
._5{margin-left:-21.280000pt;}
._0{margin-left:-10.378667pt;}
._4{margin-left:-8.082667pt;}
._9{margin-left:-6.536000pt;}
._6{margin-left:-4.776000pt;}
._3{margin-left:-3.864000pt;}
._2{margin-left:-2.133333pt;}
._1{margin-left:-0.960000pt;}
._c{width:1.358933pt;}
._e{width:2.444267pt;}
._a{width:10.656000pt;}
._13{width:13.824000pt;}
._12{width:19.632000pt;}
._10{width:40.416000pt;}
._16{width:43.152000pt;}
._11{width:44.880000pt;}
._15{width:47.568000pt;}
._14{width:48.816000pt;}
._f{width:64.500800pt;}
._7{width:1938.613333pt;}
._b{width:2397.760000pt;}
.fsb{font-size:5.333333pt;}
.fs9{font-size:27.733333pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:41.600000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:28.256933pt;}
.y5{bottom:41.590267pt;}
.y4{bottom:54.923600pt;}
.y3{bottom:68.256933pt;}
.y68{bottom:80.693867pt;}
.ya1{bottom:85.951467pt;}
.y7d{bottom:86.042667pt;}
.y67{bottom:96.693867pt;}
.y4e{bottom:101.669333pt;}
.y25{bottom:101.711333pt;}
.ya0{bottom:101.951467pt;}
.y7c{bottom:102.042667pt;}
.y66{bottom:112.693867pt;}
.y4d{bottom:115.002667pt;}
.y24{bottom:117.711333pt;}
.y9f{bottom:117.951467pt;}
.y7b{bottom:118.042667pt;}
.y4c{bottom:128.336000pt;}
.y65{bottom:128.693867pt;}
.y23{bottom:133.711333pt;}
.y9e{bottom:133.951467pt;}
.y7a{bottom:134.042667pt;}
.y4b{bottom:141.669333pt;}
.y64{bottom:144.693867pt;}
.y22{bottom:149.711333pt;}
.y9d{bottom:149.951467pt;}
.y79{bottom:150.042667pt;}
.y63{bottom:160.693867pt;}
.y21{bottom:165.711333pt;}
.y9c{bottom:165.951467pt;}
.y4a{bottom:165.989333pt;}
.y78{bottom:166.042667pt;}
.y49{bottom:176.336000pt;}
.y62{bottom:176.693867pt;}
.y20{bottom:181.711333pt;}
.y9b{bottom:181.951467pt;}
.y77{bottom:182.042667pt;}
.y48{bottom:189.669333pt;}
.y47{bottom:192.656000pt;}
.y61{bottom:192.693867pt;}
.y1f{bottom:197.711333pt;}
.y9a{bottom:197.951467pt;}
.y76{bottom:198.042667pt;}
.y60{bottom:208.693867pt;}
.y1e{bottom:213.711333pt;}
.y99{bottom:213.951467pt;}
.y75{bottom:214.042667pt;}
.y38{bottom:224.378000pt;}
.y5f{bottom:224.693867pt;}
.y1d{bottom:229.711333pt;}
.y98{bottom:229.951467pt;}
.y74{bottom:230.042667pt;}
.y37{bottom:240.378000pt;}
.y5e{bottom:240.693867pt;}
.y1c{bottom:245.711333pt;}
.y97{bottom:245.951467pt;}
.y73{bottom:246.042667pt;}
.y36{bottom:256.378000pt;}
.y5d{bottom:256.693867pt;}
.y1b{bottom:261.711333pt;}
.y96{bottom:261.951467pt;}
.y72{bottom:262.042667pt;}
.y35{bottom:272.378000pt;}
.y5c{bottom:272.693867pt;}
.y1a{bottom:277.711333pt;}
.y95{bottom:277.951467pt;}
.y71{bottom:278.042667pt;}
.y34{bottom:288.378000pt;}
.y5b{bottom:288.693867pt;}
.y94{bottom:293.951467pt;}
.y70{bottom:294.042667pt;}
.y19{bottom:301.711333pt;}
.y33{bottom:304.378000pt;}
.y5a{bottom:304.693867pt;}
.y93{bottom:309.951467pt;}
.y6f{bottom:318.042667pt;}
.y32{bottom:320.378000pt;}
.y59{bottom:320.693867pt;}
.y92{bottom:325.951467pt;}
.y31{bottom:336.378000pt;}
.y58{bottom:336.693867pt;}
.y18{bottom:341.711333pt;}
.y91{bottom:341.951467pt;}
.y30{bottom:352.378000pt;}
.y57{bottom:352.693867pt;}
.y17{bottom:357.711333pt;}
.y90{bottom:357.951467pt;}
.y6e{bottom:360.707200pt;}
.y2f{bottom:368.378000pt;}
.y56{bottom:368.693867pt;}
.y16{bottom:373.711333pt;}
.y8f{bottom:373.951467pt;}
.y6d{bottom:376.707200pt;}
.y2e{bottom:384.378000pt;}
.y55{bottom:384.693867pt;}
.y15{bottom:389.711333pt;}
.y8e{bottom:389.951467pt;}
.y2d{bottom:400.378000pt;}
.y54{bottom:400.693867pt;}
.y14{bottom:405.711333pt;}
.y8d{bottom:405.951467pt;}
.yd1{bottom:415.498933pt;}
.yf2{bottom:415.702933pt;}
.y2c{bottom:416.378000pt;}
.y53{bottom:416.693867pt;}
.y13{bottom:421.711333pt;}
.y8c{bottom:421.951467pt;}
.yb3{bottom:424.484800pt;}
.yf1{bottom:430.366933pt;}
.yd0{bottom:431.494933pt;}
.y2b{bottom:432.378000pt;}
.y12{bottom:437.711333pt;}
.y8b{bottom:437.951467pt;}
.yb2{bottom:439.820800pt;}
.yf0{bottom:445.030933pt;}
.y2a{bottom:448.378000pt;}
.ycf{bottom:451.494933pt;}
.y11{bottom:453.711333pt;}
.y8a{bottom:453.951467pt;}
.yb1{bottom:455.156800pt;}
.y6c{bottom:456.180267pt;}
.yef{bottom:459.694933pt;}
.y29{bottom:464.378000pt;}
.y6b{bottom:468.841600pt;}
.y10{bottom:469.711333pt;}
.y89{bottom:469.951467pt;}
.yb0{bottom:470.492800pt;}
.yee{bottom:474.358933pt;}
.y28{bottom:480.378000pt;}
.y6a{bottom:481.504267pt;}
.yce{bottom:484.830933pt;}
.yf{bottom:485.711333pt;}
.yaf{bottom:485.828800pt;}
.y88{bottom:485.951467pt;}
.yed{bottom:489.022933pt;}
.y69{bottom:495.508267pt;}
.y27{bottom:496.378000pt;}
.ycd{bottom:499.494933pt;}
.yae{bottom:501.164800pt;}
.y87{bottom:501.951467pt;}
.yec{bottom:503.686933pt;}
.ye{bottom:509.711333pt;}
.y26{bottom:512.378000pt;}
.yad{bottom:516.500800pt;}
.y86{bottom:517.951467pt;}
.yeb{bottom:518.350933pt;}
.ycc{bottom:519.494933pt;}
.yac{bottom:531.836800pt;}
.yea{bottom:533.014933pt;}
.y85{bottom:533.951467pt;}
.yab{bottom:547.172800pt;}
.ye9{bottom:547.678933pt;}
.y84{bottom:549.951467pt;}
.ycb{bottom:554.161600pt;}
.ye8{bottom:562.342933pt;}
.yaa{bottom:562.508800pt;}
.y83{bottom:565.951467pt;}
.yca{bottom:570.161600pt;}
.ye7{bottom:577.006933pt;}
.ya9{bottom:577.844800pt;}
.y46{bottom:580.461733pt;}
.y82{bottom:581.951467pt;}
.yc9{bottom:586.161600pt;}
.ye6{bottom:591.670933pt;}
.ya8{bottom:593.180800pt;}
.y81{bottom:597.949333pt;}
.yc8{bottom:602.161600pt;}
.ye5{bottom:606.334933pt;}
.ya7{bottom:608.516800pt;}
.y45{bottom:609.792133pt;}
.y80{bottom:613.949333pt;}
.yc7{bottom:618.161600pt;}
.ye4{bottom:620.998933pt;}
.ya6{bottom:623.852800pt;}
.y44{bottom:625.792133pt;}
.y7f{bottom:629.949333pt;}
.yc6{bottom:634.161600pt;}
.ye3{bottom:635.662933pt;}
.y7e{bottom:645.949333pt;}
.ya5{bottom:647.186133pt;}
.yc5{bottom:650.161600pt;}
.ye2{bottom:650.326933pt;}
.y43{bottom:664.472133pt;}
.ye1{bottom:664.990933pt;}
.yc4{bottom:666.161600pt;}
.ye0{bottom:679.654933pt;}
.y42{bottom:680.472133pt;}
.yc3{bottom:682.161600pt;}
.ya4{bottom:685.420267pt;}
.ydf{bottom:694.318933pt;}
.y41{bottom:696.472133pt;}
.yc2{bottom:698.161600pt;}
.ya3{bottom:699.424267pt;}
.yde{bottom:708.982933pt;}
.y40{bottom:712.472133pt;}
.ya2{bottom:713.428267pt;}
.yc1{bottom:714.161600pt;}
.ydd{bottom:723.646933pt;}
.y3f{bottom:728.472133pt;}
.yc0{bottom:730.161600pt;}
.ydc{bottom:738.310933pt;}
.y3e{bottom:744.472133pt;}
.ybf{bottom:746.161600pt;}
.ydb{bottom:752.974933pt;}
.y3d{bottom:760.472133pt;}
.ybe{bottom:770.161600pt;}
.yda{bottom:772.974933pt;}
.y3c{bottom:776.472133pt;}
.yd9{bottom:804.974933pt;}
.ybd{bottom:810.161600pt;}
.yd8{bottom:824.974933pt;}
.ybc{bottom:826.161600pt;}
.y3b{bottom:840.472133pt;}
.ybb{bottom:842.161600pt;}
.yd7{bottom:852.977600pt;}
.yba{bottom:858.161600pt;}
.yd6{bottom:867.641600pt;}
.yb9{bottom:874.161600pt;}
.yd5{bottom:887.641600pt;}
.yd{bottom:888.950800pt;}
.yb8{bottom:890.161600pt;}
.yc{bottom:900.281467pt;}
.y1{bottom:901.590933pt;}
.yb7{bottom:906.161600pt;}
.y3a{bottom:907.141467pt;}
.yb{bottom:911.612133pt;}
.yd4{bottom:919.644267pt;}
.yb6{bottom:922.161600pt;}
.ya{bottom:922.942800pt;}
.y39{bottom:933.805467pt;}
.y9{bottom:934.273467pt;}
.yd3{bottom:934.308267pt;}
.yb5{bottom:938.161600pt;}
.y8{bottom:945.604133pt;}
.yb4{bottom:954.160533pt;}
.yd2{bottom:954.308267pt;}
.y7{bottom:956.934800pt;}
.y51{bottom:985.573467pt;}
.y52{bottom:990.213867pt;}
.y2{bottom:994.462933pt;}
.y50{bottom:1046.435733pt;}
.y4f{bottom:1047.769067pt;}
.hf{height:3.707733pt;}
.hc{height:20.217600pt;}
.h1{height:23.328000pt;}
.h4{height:27.216000pt;}
.hd{height:29.866667pt;}
.h3{height:31.104000pt;}
.h2{height:31.733333pt;}
.h13{height:33.360000pt;}
.he{height:34.252262pt;}
.h10{height:34.992000pt;}
.h6{height:37.066667pt;}
.h8{height:37.333333pt;}
.hb{height:38.880000pt;}
.h7{height:39.026667pt;}
.h12{height:39.030933pt;}
.h11{height:39.035200pt;}
.h5{height:44.800000pt;}
.ha{height:47.040000pt;}
.h9{height:67.200000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:11.338533pt;}
.x10{left:66.141733pt;}
.x11{left:82.141733pt;}
.x4{left:83.152267pt;}
.xb{left:99.149600pt;}
.x3{left:155.781600pt;}
.x12{left:411.501733pt;}
.x13{left:427.501733pt;}
.xc{left:428.509600pt;}
.xe{left:431.970667pt;}
.x14{left:435.496000pt;}
.xd{left:444.509600pt;}
.x2{left:556.584667pt;}
.x1{left:608.291333pt;}
.x5{left:618.260000pt;}
.x9{left:621.144000pt;}
.xa{left:629.889333pt;}
.x8{left:659.308000pt;}
.x7{left:664.590667pt;}
.x6{left:694.793333pt;}
}




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