
    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_c64f996d697dd35cfd23dc45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_39b65cf6ac5520fddb3c1c6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.836000;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_2cb77b009fb93d64bb4ec71c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967285;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_0b9b5e6bdb447af38dfcaee0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4bda128cee083bb236c6a9c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fb01538778b3e157d01f3c2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_df738add67a5b92841595b01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_78be4b8da205ae797ff4f729.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27cb8c05fd179f9b72c6672c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.967285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_451eb6fd8a8097c8ea3badba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967285;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);}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.200000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:21.600000px;}
.ls7{letter-spacing:-1.152000px;}
.ls6{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.192000px;}
.ls5{letter-spacing:-0.162000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.006600px;}
.lsb{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.009600px;}
.ls9{letter-spacing:0.010200px;}
.ls0{letter-spacing:0.013800px;}
.ls2{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.540000px;}
.lse{letter-spacing:0.600000px;}
.lsd{letter-spacing:1425.873600px;}
.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;}
}
.ws4{word-spacing:-23.040000px;}
.ws0{word-spacing:-15.775200px;}
.ws1d{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.338000px;}
.ws1{word-spacing:-12.000000px;}
.ws1c{word-spacing:-10.500000px;}
.ws5{word-spacing:-9.450000px;}
.ws36{word-spacing:-5.100000px;}
.ws55{word-spacing:-4.140000px;}
.ws7f{word-spacing:-4.032000px;}
.ws82{word-spacing:-3.312000px;}
.ws7{word-spacing:-3.240000px;}
.wsb{word-spacing:-2.646000px;}
.ws3a{word-spacing:-2.460000px;}
.ws5e{word-spacing:-2.400000px;}
.ws35{word-spacing:-2.160000px;}
.ws4c{word-spacing:-1.980000px;}
.ws25{word-spacing:-1.740000px;}
.ws45{word-spacing:-1.560000px;}
.ws78{word-spacing:-1.536000px;}
.ws9c{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.320000px;}
.ws88{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.200000px;}
.ws9b{word-spacing:-1.152000px;}
.ws47{word-spacing:-1.140000px;}
.ws80{word-spacing:-1.104000px;}
.ws59{word-spacing:-1.080000px;}
.ws9a{word-spacing:-1.056000px;}
.ws2a{word-spacing:-1.020000px;}
.ws14{word-spacing:-0.900000px;}
.ws73{word-spacing:-0.780000px;}
.ws92{word-spacing:-0.768000px;}
.wsa{word-spacing:-0.648000px;}
.ws6e{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.594000px;}
.wse{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.420000px;}
.ws99{word-spacing:-0.384000px;}
.ws4f{word-spacing:-0.378000px;}
.ws32{word-spacing:-0.360000px;}
.ws86{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.226800px;}
.ws21{word-spacing:-0.120000px;}
.ws5f{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws95{word-spacing:0.048000px;}
.ws24{word-spacing:0.060000px;}
.ws3e{word-spacing:0.240000px;}
.ws5b{word-spacing:0.300000px;}
.ws72{word-spacing:0.360000px;}
.ws49{word-spacing:0.480000px;}
.ws1a{word-spacing:0.540000px;}
.ws3b{word-spacing:0.720000px;}
.ws4b{word-spacing:0.780000px;}
.ws71{word-spacing:0.960000px;}
.ws5a{word-spacing:1.200000px;}
.ws7d{word-spacing:1.248000px;}
.ws2d{word-spacing:1.260000px;}
.ws77{word-spacing:1.296000px;}
.ws93{word-spacing:1.344000px;}
.ws8a{word-spacing:1.392000px;}
.ws7e{word-spacing:1.440000px;}
.ws62{word-spacing:1.560000px;}
.ws3f{word-spacing:1.620000px;}
.ws12{word-spacing:1.680000px;}
.ws98{word-spacing:1.728000px;}
.wsd{word-spacing:1.782000px;}
.ws27{word-spacing:1.800000px;}
.ws6b{word-spacing:1.860000px;}
.ws2e{word-spacing:1.920000px;}
.wsc{word-spacing:2.052000px;}
.ws83{word-spacing:2.112000px;}
.ws38{word-spacing:2.160000px;}
.ws2f{word-spacing:2.220000px;}
.ws65{word-spacing:2.322000px;}
.ws56{word-spacing:2.340000px;}
.ws42{word-spacing:2.520000px;}
.ws22{word-spacing:2.580000px;}
.ws40{word-spacing:2.640000px;}
.ws17{word-spacing:2.760000px;}
.ws18{word-spacing:2.940000px;}
.ws29{word-spacing:3.000000px;}
.ws3d{word-spacing:3.180000px;}
.ws6c{word-spacing:3.240000px;}
.ws3c{word-spacing:3.300000px;}
.ws8f{word-spacing:3.408000px;}
.ws7b{word-spacing:3.600000px;}
.ws63{word-spacing:3.660000px;}
.ws13{word-spacing:3.720000px;}
.ws1f{word-spacing:3.780000px;}
.ws74{word-spacing:3.960000px;}
.ws4a{word-spacing:4.020000px;}
.ws79{word-spacing:4.032000px;}
.ws23{word-spacing:4.080000px;}
.ws7a{word-spacing:4.128000px;}
.ws28{word-spacing:4.140000px;}
.ws5c{word-spacing:4.320000px;}
.ws6a{word-spacing:4.500000px;}
.ws44{word-spacing:4.560000px;}
.ws75{word-spacing:4.620000px;}
.ws66{word-spacing:4.740000px;}
.ws34{word-spacing:4.860000px;}
.ws37{word-spacing:4.920000px;}
.ws94{word-spacing:4.992000px;}
.wsf{word-spacing:5.220000px;}
.ws51{word-spacing:5.640000px;}
.ws53{word-spacing:5.880000px;}
.ws8e{word-spacing:5.904000px;}
.ws43{word-spacing:5.940000px;}
.ws20{word-spacing:6.180000px;}
.ws87{word-spacing:6.192000px;}
.ws64{word-spacing:6.240000px;}
.ws90{word-spacing:6.288000px;}
.ws39{word-spacing:6.300000px;}
.ws8d{word-spacing:6.528000px;}
.ws4d{word-spacing:6.780000px;}
.ws2c{word-spacing:6.840000px;}
.ws7c{word-spacing:7.056000px;}
.ws8{word-spacing:7.074000px;}
.ws41{word-spacing:7.080000px;}
.ws97{word-spacing:7.104000px;}
.ws50{word-spacing:7.740000px;}
.ws60{word-spacing:8.160000px;}
.ws81{word-spacing:8.448000px;}
.ws6f{word-spacing:8.700000px;}
.ws4e{word-spacing:8.820000px;}
.ws11{word-spacing:9.000000px;}
.ws85{word-spacing:9.024000px;}
.ws58{word-spacing:9.060000px;}
.ws69{word-spacing:9.180000px;}
.ws8c{word-spacing:9.216000px;}
.ws76{word-spacing:9.648000px;}
.ws70{word-spacing:9.660000px;}
.ws8b{word-spacing:9.744000px;}
.ws89{word-spacing:10.176000px;}
.ws67{word-spacing:10.200000px;}
.ws16{word-spacing:10.680000px;}
.ws30{word-spacing:11.820000px;}
.ws5d{word-spacing:11.880000px;}
.ws57{word-spacing:12.420000px;}
.ws6d{word-spacing:12.660000px;}
.ws10{word-spacing:13.800000px;}
.ws1b{word-spacing:14.040000px;}
.ws54{word-spacing:14.700000px;}
.ws61{word-spacing:15.000000px;}
.ws31{word-spacing:15.120000px;}
.ws91{word-spacing:18.000000px;}
.ws96{word-spacing:18.288000px;}
.ws2b{word-spacing:19.380000px;}
.ws84{word-spacing:20.544000px;}
.ws68{word-spacing:21.180000px;}
.ws46{word-spacing:30.240000px;}
.ws26{word-spacing:31.260000px;}
.ws33{word-spacing:52.200000px;}
.ws1e{word-spacing:1398.969000px;}
._10{margin-left:-2822.964000px;}
._12{margin-left:-20.160000px;}
._4{margin-left:-8.784000px;}
._16{margin-left:-6.729600px;}
._6{margin-left:-5.313600px;}
._3{margin-left:-3.780000px;}
._2{margin-left:-2.532600px;}
._0{margin-left:-1.512000px;}
._1{width:1.008000px;}
._7{width:2.079000px;}
._8{width:3.175200px;}
._e{width:4.715400px;}
._9{width:5.934600px;}
._c{width:7.314000px;}
._b{width:9.324000px;}
._11{width:10.434000px;}
._f{width:11.466000px;}
._d{width:13.164000px;}
._5{width:15.408000px;}
._17{width:17.978400px;}
._a{width:20.376000px;}
._14{width:22.038000px;}
._15{width:25.182000px;}
._13{width:1646.062200px;}
.fc1{color:rgb(10,62,105);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:37.800000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:75.658200px;}
.y27{bottom:88.258200px;}
.y8b{bottom:124.434900px;}
.y24{bottom:125.291250px;}
.y89{bottom:125.710500px;}
.yb0{bottom:126.519600px;}
.y56{bottom:126.547650px;}
.y8e{bottom:126.689550px;}
.y72{bottom:128.673750px;}
.y8a{bottom:142.434900px;}
.y23{bottom:143.291250px;}
.y88{bottom:143.710500px;}
.yaf{bottom:144.519600px;}
.y22{bottom:161.291250px;}
.yae{bottom:162.519600px;}
.y21{bottom:179.291250px;}
.yad{bottom:180.519600px;}
.y20{bottom:197.291250px;}
.yac{bottom:198.519600px;}
.y1f{bottom:215.291250px;}
.yab{bottom:216.519600px;}
.y1e{bottom:233.291250px;}
.yaa{bottom:234.519600px;}
.y1d{bottom:251.291250px;}
.ya9{bottom:252.519600px;}
.y1c{bottom:269.291250px;}
.ya8{bottom:270.519600px;}
.y26{bottom:287.291400px;}
.ya7{bottom:288.519600px;}
.y25{bottom:305.291400px;}
.ya6{bottom:306.519600px;}
.y1b{bottom:312.108600px;}
.ya5{bottom:324.519600px;}
.ya4{bottom:342.519600px;}
.ya3{bottom:360.519600px;}
.ya2{bottom:378.519600px;}
.y1a{bottom:391.384200px;}
.ya1{bottom:396.519600px;}
.y57{bottom:400.608600px;}
.y8f{bottom:400.750350px;}
.y73{bottom:402.734550px;}
.y19{bottom:407.884200px;}
.ya0{bottom:414.519600px;}
.y9f{bottom:432.519600px;}
.y18{bottom:432.888000px;}
.y70{bottom:447.429600px;}
.y51{bottom:449.291250px;}
.y9e{bottom:450.519600px;}
.y6f{bottom:465.429600px;}
.y50{bottom:467.291250px;}
.y9d{bottom:468.519600px;}
.y55{bottom:485.291250px;}
.y84{bottom:485.291400px;}
.y9c{bottom:486.519600px;}
.y17{bottom:488.907750px;}
.y54{bottom:503.291250px;}
.y83{bottom:503.291400px;}
.y4f{bottom:503.527500px;}
.y9b{bottom:504.519600px;}
.y16{bottom:505.857750px;}
.y53{bottom:521.291250px;}
.y82{bottom:521.291400px;}
.y9a{bottom:522.519600px;}
.y15{bottom:522.807750px;}
.y52{bottom:539.291250px;}
.y81{bottom:539.291400px;}
.y14{bottom:539.757750px;}
.y99{bottom:540.519600px;}
.y13{bottom:556.707750px;}
.y4e{bottom:557.291250px;}
.y80{bottom:557.291400px;}
.y98{bottom:558.519600px;}
.y12{bottom:573.657750px;}
.y4d{bottom:575.291250px;}
.y7f{bottom:575.291400px;}
.y97{bottom:576.519600px;}
.y11{bottom:590.607750px;}
.y4c{bottom:593.291250px;}
.y7e{bottom:593.291400px;}
.y96{bottom:594.519600px;}
.y10{bottom:607.557750px;}
.y4b{bottom:611.291250px;}
.y7d{bottom:611.291400px;}
.y95{bottom:612.519600px;}
.yf{bottom:624.507750px;}
.y4a{bottom:629.291250px;}
.y7c{bottom:629.291400px;}
.ye{bottom:641.457750px;}
.y49{bottom:647.291250px;}
.y7b{bottom:647.291400px;}
.y94{bottom:647.527500px;}
.y90{bottom:648.005850px;}
.yd{bottom:658.407750px;}
.y48{bottom:665.291250px;}
.y7a{bottom:665.291400px;}
.yc{bottom:675.357750px;}
.y47{bottom:683.291250px;}
.y79{bottom:683.291400px;}
.yb{bottom:692.307750px;}
.y46{bottom:701.291250px;}
.y78{bottom:701.291400px;}
.ye4{bottom:706.707300px;}
.yca{bottom:706.719000px;}
.ya{bottom:717.761700px;}
.y45{bottom:719.291250px;}
.y77{bottom:719.291400px;}
.ye3{bottom:724.707300px;}
.yc9{bottom:724.719000px;}
.y44{bottom:737.291250px;}
.y76{bottom:737.291400px;}
.y71{bottom:739.490550px;}
.ye2{bottom:742.707300px;}
.yc8{bottom:742.719000px;}
.y43{bottom:755.291250px;}
.y75{bottom:755.291400px;}
.ye1{bottom:760.707300px;}
.yc7{bottom:760.719000px;}
.y42{bottom:773.291250px;}
.y74{bottom:773.291400px;}
.y93{bottom:773.527500px;}
.y9{bottom:774.029400px;}
.ye0{bottom:778.707300px;}
.yc6{bottom:778.719000px;}
.y41{bottom:791.291250px;}
.y6a{bottom:791.291400px;}
.y8{bottom:792.029400px;}
.ydf{bottom:796.707300px;}
.yc5{bottom:796.719000px;}
.y91{bottom:807.476100px;}
.y40{bottom:809.291250px;}
.y69{bottom:809.291400px;}
.yde{bottom:814.707300px;}
.yc4{bottom:814.719000px;}
.y7{bottom:827.037300px;}
.y3f{bottom:827.291250px;}
.y68{bottom:827.291400px;}
.ydd{bottom:832.707300px;}
.yc3{bottom:832.719000px;}
.y3e{bottom:845.291250px;}
.y67{bottom:845.291400px;}
.ydc{bottom:850.707300px;}
.yc2{bottom:850.719000px;}
.y8d{bottom:851.366700px;}
.y86{bottom:851.379750px;}
.y3d{bottom:863.291250px;}
.y66{bottom:863.291400px;}
.ydb{bottom:868.707300px;}
.yc1{bottom:868.719000px;}
.y8c{bottom:869.366700px;}
.y85{bottom:869.379750px;}
.y6{bottom:874.801050px;}
.y3c{bottom:881.291250px;}
.y65{bottom:881.291400px;}
.yda{bottom:886.707300px;}
.yc0{bottom:886.719000px;}
.y3b{bottom:899.291250px;}
.y64{bottom:899.291400px;}
.y5{bottom:901.305000px;}
.yd9{bottom:904.707300px;}
.ybf{bottom:904.719000px;}
.y3a{bottom:917.291250px;}
.y63{bottom:917.291400px;}
.y4{bottom:919.305000px;}
.yd8{bottom:922.707300px;}
.ybe{bottom:922.719000px;}
.y39{bottom:935.291250px;}
.y62{bottom:935.291400px;}
.yd7{bottom:940.707300px;}
.ybd{bottom:940.719000px;}
.y3{bottom:945.808950px;}
.y38{bottom:953.291250px;}
.y61{bottom:953.291400px;}
.yd6{bottom:958.707300px;}
.ybc{bottom:958.719000px;}
.y37{bottom:971.291250px;}
.y60{bottom:971.291400px;}
.yd5{bottom:976.707300px;}
.ybb{bottom:976.719000px;}
.y2{bottom:985.407600px;}
.y36{bottom:989.291250px;}
.y5f{bottom:989.291400px;}
.yd4{bottom:994.707300px;}
.yba{bottom:994.719000px;}
.y35{bottom:1007.291250px;}
.y5e{bottom:1007.291400px;}
.yd3{bottom:1012.707300px;}
.yb9{bottom:1012.719000px;}
.y1{bottom:1023.207600px;}
.y34{bottom:1025.291250px;}
.y6e{bottom:1025.291400px;}
.yd2{bottom:1030.707300px;}
.yb8{bottom:1030.719000px;}
.y33{bottom:1043.291250px;}
.y6d{bottom:1043.291400px;}
.y5d{bottom:1043.527650px;}
.yd1{bottom:1048.707300px;}
.yb7{bottom:1048.719000px;}
.y32{bottom:1061.291250px;}
.y6c{bottom:1061.291400px;}
.yd0{bottom:1066.707300px;}
.yb6{bottom:1066.719000px;}
.y31{bottom:1079.291250px;}
.y6b{bottom:1079.291400px;}
.ycf{bottom:1084.707300px;}
.yb5{bottom:1084.719000px;}
.y30{bottom:1097.291250px;}
.y5c{bottom:1097.291400px;}
.yce{bottom:1102.707300px;}
.yb4{bottom:1102.719000px;}
.y2b{bottom:1107.443700px;}
.y2f{bottom:1115.291250px;}
.y5b{bottom:1115.291400px;}
.ycd{bottom:1120.707300px;}
.yb3{bottom:1120.719000px;}
.y2e{bottom:1133.291250px;}
.y5a{bottom:1133.291400px;}
.ycc{bottom:1138.707300px;}
.yb2{bottom:1138.719000px;}
.y87{bottom:1143.427500px;}
.y92{bottom:1147.639500px;}
.y2d{bottom:1151.291250px;}
.y59{bottom:1151.291400px;}
.ycb{bottom:1156.707300px;}
.yb1{bottom:1156.719000px;}
.y2a{bottom:1165.039350px;}
.y29{bottom:1178.539350px;}
.y58{bottom:1194.094800px;}
.y2c{bottom:1194.094950px;}
.ha{height:28.516113px;}
.h4{height:33.328125px;}
.h5{height:33.351562px;}
.hb{height:33.947754px;}
.h6{height:37.520508px;}
.he{height:41.660156px;}
.h9{height:41.689453px;}
.h8{height:42.464355px;}
.hf{height:42.510956px;}
.hd{height:47.182617px;}
.hc{height:48.796875px;}
.h3{height:59.621484px;}
.h7{height:68.640000px;}
.h2{height:90.090000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.x8{left:110.551200px;}
.x2{left:127.559100px;}
.x7{left:288.165150px;}
.x6{left:382.808550px;}
.xb{left:414.567000px;}
.xa{left:419.385750px;}
.x3{left:457.086600px;}
.x9{left:474.094500px;}
.x4{left:527.044350px;}
.x5{left:613.445100px;}
@media print{
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.400000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls7{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.170667pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.005867pt;}
.lsb{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.008533pt;}
.ls9{letter-spacing:0.009067pt;}
.ls0{letter-spacing:0.012267pt;}
.ls2{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1267.443200pt;}
.ws4{word-spacing:-20.480000pt;}
.ws0{word-spacing:-14.022400pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.856000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-9.333333pt;}
.ws5{word-spacing:-8.400000pt;}
.ws36{word-spacing:-4.533333pt;}
.ws55{word-spacing:-3.680000pt;}
.ws7f{word-spacing:-3.584000pt;}
.ws82{word-spacing:-2.944000pt;}
.ws7{word-spacing:-2.880000pt;}
.wsb{word-spacing:-2.352000pt;}
.ws3a{word-spacing:-2.186667pt;}
.ws5e{word-spacing:-2.133333pt;}
.ws35{word-spacing:-1.920000pt;}
.ws4c{word-spacing:-1.760000pt;}
.ws25{word-spacing:-1.546667pt;}
.ws45{word-spacing:-1.386667pt;}
.ws78{word-spacing:-1.365333pt;}
.ws9c{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.173333pt;}
.ws88{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.066667pt;}
.ws9b{word-spacing:-1.024000pt;}
.ws47{word-spacing:-1.013333pt;}
.ws80{word-spacing:-0.981333pt;}
.ws59{word-spacing:-0.960000pt;}
.ws9a{word-spacing:-0.938667pt;}
.ws2a{word-spacing:-0.906667pt;}
.ws14{word-spacing:-0.800000pt;}
.ws73{word-spacing:-0.693333pt;}
.ws92{word-spacing:-0.682667pt;}
.wsa{word-spacing:-0.576000pt;}
.ws6e{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.528000pt;}
.wse{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.373333pt;}
.ws99{word-spacing:-0.341333pt;}
.ws4f{word-spacing:-0.336000pt;}
.ws32{word-spacing:-0.320000pt;}
.ws86{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.201600pt;}
.ws21{word-spacing:-0.106667pt;}
.ws5f{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws95{word-spacing:0.042667pt;}
.ws24{word-spacing:0.053333pt;}
.ws3e{word-spacing:0.213333pt;}
.ws5b{word-spacing:0.266667pt;}
.ws72{word-spacing:0.320000pt;}
.ws49{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.640000pt;}
.ws4b{word-spacing:0.693333pt;}
.ws71{word-spacing:0.853333pt;}
.ws5a{word-spacing:1.066667pt;}
.ws7d{word-spacing:1.109333pt;}
.ws2d{word-spacing:1.120000pt;}
.ws77{word-spacing:1.152000pt;}
.ws93{word-spacing:1.194667pt;}
.ws8a{word-spacing:1.237333pt;}
.ws7e{word-spacing:1.280000pt;}
.ws62{word-spacing:1.386667pt;}
.ws3f{word-spacing:1.440000pt;}
.ws12{word-spacing:1.493333pt;}
.ws98{word-spacing:1.536000pt;}
.wsd{word-spacing:1.584000pt;}
.ws27{word-spacing:1.600000pt;}
.ws6b{word-spacing:1.653333pt;}
.ws2e{word-spacing:1.706667pt;}
.wsc{word-spacing:1.824000pt;}
.ws83{word-spacing:1.877333pt;}
.ws38{word-spacing:1.920000pt;}
.ws2f{word-spacing:1.973333pt;}
.ws65{word-spacing:2.064000pt;}
.ws56{word-spacing:2.080000pt;}
.ws42{word-spacing:2.240000pt;}
.ws22{word-spacing:2.293333pt;}
.ws40{word-spacing:2.346667pt;}
.ws17{word-spacing:2.453333pt;}
.ws18{word-spacing:2.613333pt;}
.ws29{word-spacing:2.666667pt;}
.ws3d{word-spacing:2.826667pt;}
.ws6c{word-spacing:2.880000pt;}
.ws3c{word-spacing:2.933333pt;}
.ws8f{word-spacing:3.029333pt;}
.ws7b{word-spacing:3.200000pt;}
.ws63{word-spacing:3.253333pt;}
.ws13{word-spacing:3.306667pt;}
.ws1f{word-spacing:3.360000pt;}
.ws74{word-spacing:3.520000pt;}
.ws4a{word-spacing:3.573333pt;}
.ws79{word-spacing:3.584000pt;}
.ws23{word-spacing:3.626667pt;}
.ws7a{word-spacing:3.669333pt;}
.ws28{word-spacing:3.680000pt;}
.ws5c{word-spacing:3.840000pt;}
.ws6a{word-spacing:4.000000pt;}
.ws44{word-spacing:4.053333pt;}
.ws75{word-spacing:4.106667pt;}
.ws66{word-spacing:4.213333pt;}
.ws34{word-spacing:4.320000pt;}
.ws37{word-spacing:4.373333pt;}
.ws94{word-spacing:4.437333pt;}
.wsf{word-spacing:4.640000pt;}
.ws51{word-spacing:5.013333pt;}
.ws53{word-spacing:5.226667pt;}
.ws8e{word-spacing:5.248000pt;}
.ws43{word-spacing:5.280000pt;}
.ws20{word-spacing:5.493333pt;}
.ws87{word-spacing:5.504000pt;}
.ws64{word-spacing:5.546667pt;}
.ws90{word-spacing:5.589333pt;}
.ws39{word-spacing:5.600000pt;}
.ws8d{word-spacing:5.802667pt;}
.ws4d{word-spacing:6.026667pt;}
.ws2c{word-spacing:6.080000pt;}
.ws7c{word-spacing:6.272000pt;}
.ws8{word-spacing:6.288000pt;}
.ws41{word-spacing:6.293333pt;}
.ws97{word-spacing:6.314667pt;}
.ws50{word-spacing:6.880000pt;}
.ws60{word-spacing:7.253333pt;}
.ws81{word-spacing:7.509333pt;}
.ws6f{word-spacing:7.733333pt;}
.ws4e{word-spacing:7.840000pt;}
.ws11{word-spacing:8.000000pt;}
.ws85{word-spacing:8.021333pt;}
.ws58{word-spacing:8.053333pt;}
.ws69{word-spacing:8.160000pt;}
.ws8c{word-spacing:8.192000pt;}
.ws76{word-spacing:8.576000pt;}
.ws70{word-spacing:8.586667pt;}
.ws8b{word-spacing:8.661333pt;}
.ws89{word-spacing:9.045333pt;}
.ws67{word-spacing:9.066667pt;}
.ws16{word-spacing:9.493333pt;}
.ws30{word-spacing:10.506667pt;}
.ws5d{word-spacing:10.560000pt;}
.ws57{word-spacing:11.040000pt;}
.ws6d{word-spacing:11.253333pt;}
.ws10{word-spacing:12.266667pt;}
.ws1b{word-spacing:12.480000pt;}
.ws54{word-spacing:13.066667pt;}
.ws61{word-spacing:13.333333pt;}
.ws31{word-spacing:13.440000pt;}
.ws91{word-spacing:16.000000pt;}
.ws96{word-spacing:16.256000pt;}
.ws2b{word-spacing:17.226667pt;}
.ws84{word-spacing:18.261333pt;}
.ws68{word-spacing:18.826667pt;}
.ws46{word-spacing:26.880000pt;}
.ws26{word-spacing:27.786667pt;}
.ws33{word-spacing:46.400000pt;}
.ws1e{word-spacing:1243.528000pt;}
._10{margin-left:-2509.301333pt;}
._12{margin-left:-17.920000pt;}
._4{margin-left:-7.808000pt;}
._16{margin-left:-5.981867pt;}
._6{margin-left:-4.723200pt;}
._3{margin-left:-3.360000pt;}
._2{margin-left:-2.251200pt;}
._0{margin-left:-1.344000pt;}
._1{width:0.896000pt;}
._7{width:1.848000pt;}
._8{width:2.822400pt;}
._e{width:4.191467pt;}
._9{width:5.275200pt;}
._c{width:6.501333pt;}
._b{width:8.288000pt;}
._11{width:9.274667pt;}
._f{width:10.192000pt;}
._d{width:11.701333pt;}
._5{width:13.696000pt;}
._17{width:15.980800pt;}
._a{width:18.112000pt;}
._14{width:19.589333pt;}
._15{width:22.384000pt;}
._13{width:1463.166400pt;}
.fs6{font-size:33.600000pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:67.251733pt;}
.y27{bottom:78.451733pt;}
.y8b{bottom:110.608800pt;}
.y24{bottom:111.370000pt;}
.y89{bottom:111.742667pt;}
.yb0{bottom:112.461867pt;}
.y56{bottom:112.486800pt;}
.y8e{bottom:112.612933pt;}
.y72{bottom:114.376667pt;}
.y8a{bottom:126.608800pt;}
.y23{bottom:127.370000pt;}
.y88{bottom:127.742667pt;}
.yaf{bottom:128.461867pt;}
.y22{bottom:143.370000pt;}
.yae{bottom:144.461867pt;}
.y21{bottom:159.370000pt;}
.yad{bottom:160.461867pt;}
.y20{bottom:175.370000pt;}
.yac{bottom:176.461867pt;}
.y1f{bottom:191.370000pt;}
.yab{bottom:192.461867pt;}
.y1e{bottom:207.370000pt;}
.yaa{bottom:208.461867pt;}
.y1d{bottom:223.370000pt;}
.ya9{bottom:224.461867pt;}
.y1c{bottom:239.370000pt;}
.ya8{bottom:240.461867pt;}
.y26{bottom:255.370133pt;}
.ya7{bottom:256.461867pt;}
.y25{bottom:271.370133pt;}
.ya6{bottom:272.461867pt;}
.y1b{bottom:277.429867pt;}
.ya5{bottom:288.461867pt;}
.ya4{bottom:304.461867pt;}
.ya3{bottom:320.461867pt;}
.ya2{bottom:336.461867pt;}
.y1a{bottom:347.897067pt;}
.ya1{bottom:352.461867pt;}
.y57{bottom:356.096533pt;}
.y8f{bottom:356.222533pt;}
.y73{bottom:357.986267pt;}
.y19{bottom:362.563733pt;}
.ya0{bottom:368.461867pt;}
.y9f{bottom:384.461867pt;}
.y18{bottom:384.789333pt;}
.y70{bottom:397.715200pt;}
.y51{bottom:399.370000pt;}
.y9e{bottom:400.461867pt;}
.y6f{bottom:413.715200pt;}
.y50{bottom:415.370000pt;}
.y9d{bottom:416.461867pt;}
.y55{bottom:431.370000pt;}
.y84{bottom:431.370133pt;}
.y9c{bottom:432.461867pt;}
.y17{bottom:434.584667pt;}
.y54{bottom:447.370000pt;}
.y83{bottom:447.370133pt;}
.y4f{bottom:447.580000pt;}
.y9b{bottom:448.461867pt;}
.y16{bottom:449.651333pt;}
.y53{bottom:463.370000pt;}
.y82{bottom:463.370133pt;}
.y9a{bottom:464.461867pt;}
.y15{bottom:464.718000pt;}
.y52{bottom:479.370000pt;}
.y81{bottom:479.370133pt;}
.y14{bottom:479.784667pt;}
.y99{bottom:480.461867pt;}
.y13{bottom:494.851333pt;}
.y4e{bottom:495.370000pt;}
.y80{bottom:495.370133pt;}
.y98{bottom:496.461867pt;}
.y12{bottom:509.918000pt;}
.y4d{bottom:511.370000pt;}
.y7f{bottom:511.370133pt;}
.y97{bottom:512.461867pt;}
.y11{bottom:524.984667pt;}
.y4c{bottom:527.370000pt;}
.y7e{bottom:527.370133pt;}
.y96{bottom:528.461867pt;}
.y10{bottom:540.051333pt;}
.y4b{bottom:543.370000pt;}
.y7d{bottom:543.370133pt;}
.y95{bottom:544.461867pt;}
.yf{bottom:555.118000pt;}
.y4a{bottom:559.370000pt;}
.y7c{bottom:559.370133pt;}
.ye{bottom:570.184667pt;}
.y49{bottom:575.370000pt;}
.y7b{bottom:575.370133pt;}
.y94{bottom:575.580000pt;}
.y90{bottom:576.005200pt;}
.yd{bottom:585.251333pt;}
.y48{bottom:591.370000pt;}
.y7a{bottom:591.370133pt;}
.yc{bottom:600.318000pt;}
.y47{bottom:607.370000pt;}
.y79{bottom:607.370133pt;}
.yb{bottom:615.384667pt;}
.y46{bottom:623.370000pt;}
.y78{bottom:623.370133pt;}
.ye4{bottom:628.184267pt;}
.yca{bottom:628.194667pt;}
.ya{bottom:638.010400pt;}
.y45{bottom:639.370000pt;}
.y77{bottom:639.370133pt;}
.ye3{bottom:644.184267pt;}
.yc9{bottom:644.194667pt;}
.y44{bottom:655.370000pt;}
.y76{bottom:655.370133pt;}
.y71{bottom:657.324933pt;}
.ye2{bottom:660.184267pt;}
.yc8{bottom:660.194667pt;}
.y43{bottom:671.370000pt;}
.y75{bottom:671.370133pt;}
.ye1{bottom:676.184267pt;}
.yc7{bottom:676.194667pt;}
.y42{bottom:687.370000pt;}
.y74{bottom:687.370133pt;}
.y93{bottom:687.580000pt;}
.y9{bottom:688.026133pt;}
.ye0{bottom:692.184267pt;}
.yc6{bottom:692.194667pt;}
.y41{bottom:703.370000pt;}
.y6a{bottom:703.370133pt;}
.y8{bottom:704.026133pt;}
.ydf{bottom:708.184267pt;}
.yc5{bottom:708.194667pt;}
.y91{bottom:717.756533pt;}
.y40{bottom:719.370000pt;}
.y69{bottom:719.370133pt;}
.yde{bottom:724.184267pt;}
.yc4{bottom:724.194667pt;}
.y7{bottom:735.144267pt;}
.y3f{bottom:735.370000pt;}
.y68{bottom:735.370133pt;}
.ydd{bottom:740.184267pt;}
.yc3{bottom:740.194667pt;}
.y3e{bottom:751.370000pt;}
.y67{bottom:751.370133pt;}
.ydc{bottom:756.184267pt;}
.yc2{bottom:756.194667pt;}
.y8d{bottom:756.770400pt;}
.y86{bottom:756.782000pt;}
.y3d{bottom:767.370000pt;}
.y66{bottom:767.370133pt;}
.ydb{bottom:772.184267pt;}
.yc1{bottom:772.194667pt;}
.y8c{bottom:772.770400pt;}
.y85{bottom:772.782000pt;}
.y6{bottom:777.600933pt;}
.y3c{bottom:783.370000pt;}
.y65{bottom:783.370133pt;}
.yda{bottom:788.184267pt;}
.yc0{bottom:788.194667pt;}
.y3b{bottom:799.370000pt;}
.y64{bottom:799.370133pt;}
.y5{bottom:801.160000pt;}
.yd9{bottom:804.184267pt;}
.ybf{bottom:804.194667pt;}
.y3a{bottom:815.370000pt;}
.y63{bottom:815.370133pt;}
.y4{bottom:817.160000pt;}
.yd8{bottom:820.184267pt;}
.ybe{bottom:820.194667pt;}
.y39{bottom:831.370000pt;}
.y62{bottom:831.370133pt;}
.yd7{bottom:836.184267pt;}
.ybd{bottom:836.194667pt;}
.y3{bottom:840.719067pt;}
.y38{bottom:847.370000pt;}
.y61{bottom:847.370133pt;}
.yd6{bottom:852.184267pt;}
.ybc{bottom:852.194667pt;}
.y37{bottom:863.370000pt;}
.y60{bottom:863.370133pt;}
.yd5{bottom:868.184267pt;}
.ybb{bottom:868.194667pt;}
.y2{bottom:875.917867pt;}
.y36{bottom:879.370000pt;}
.y5f{bottom:879.370133pt;}
.yd4{bottom:884.184267pt;}
.yba{bottom:884.194667pt;}
.y35{bottom:895.370000pt;}
.y5e{bottom:895.370133pt;}
.yd3{bottom:900.184267pt;}
.yb9{bottom:900.194667pt;}
.y1{bottom:909.517867pt;}
.y34{bottom:911.370000pt;}
.y6e{bottom:911.370133pt;}
.yd2{bottom:916.184267pt;}
.yb8{bottom:916.194667pt;}
.y33{bottom:927.370000pt;}
.y6d{bottom:927.370133pt;}
.y5d{bottom:927.580133pt;}
.yd1{bottom:932.184267pt;}
.yb7{bottom:932.194667pt;}
.y32{bottom:943.370000pt;}
.y6c{bottom:943.370133pt;}
.yd0{bottom:948.184267pt;}
.yb6{bottom:948.194667pt;}
.y31{bottom:959.370000pt;}
.y6b{bottom:959.370133pt;}
.ycf{bottom:964.184267pt;}
.yb5{bottom:964.194667pt;}
.y30{bottom:975.370000pt;}
.y5c{bottom:975.370133pt;}
.yce{bottom:980.184267pt;}
.yb4{bottom:980.194667pt;}
.y2b{bottom:984.394400pt;}
.y2f{bottom:991.370000pt;}
.y5b{bottom:991.370133pt;}
.ycd{bottom:996.184267pt;}
.yb3{bottom:996.194667pt;}
.y2e{bottom:1007.370000pt;}
.y5a{bottom:1007.370133pt;}
.ycc{bottom:1012.184267pt;}
.yb2{bottom:1012.194667pt;}
.y87{bottom:1016.380000pt;}
.y92{bottom:1020.124000pt;}
.y2d{bottom:1023.370000pt;}
.y59{bottom:1023.370133pt;}
.ycb{bottom:1028.184267pt;}
.yb1{bottom:1028.194667pt;}
.y2a{bottom:1035.590533pt;}
.y29{bottom:1047.590533pt;}
.y58{bottom:1061.417600pt;}
.y2c{bottom:1061.417733pt;}
.ha{height:25.347656pt;}
.h4{height:29.625000pt;}
.h5{height:29.645833pt;}
.hb{height:30.175781pt;}
.h6{height:33.351562pt;}
.he{height:37.031250pt;}
.h9{height:37.057292pt;}
.h8{height:37.746094pt;}
.hf{height:37.787517pt;}
.hd{height:41.940104pt;}
.hc{height:43.375000pt;}
.h3{height:52.996875pt;}
.h7{height:61.013333pt;}
.h2{height:80.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.x8{left:98.267733pt;}
.x2{left:113.385867pt;}
.x7{left:256.146800pt;}
.x6{left:340.274267pt;}
.xb{left:368.504000pt;}
.xa{left:372.787333pt;}
.x3{left:406.299200pt;}
.x9{left:421.417333pt;}
.x4{left:468.483867pt;}
.x5{left:545.284533pt;}
}




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