
    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_5ab618686f3e4c77f4c89e96.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e106c6ff2da7a62cfa25a217.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f3f3f7d660c904a4cf4c6be5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_fb53e055e98b9db0e8f2dbde.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_68570f08a05677a391e957a1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_cb4a11887114e831e522a574.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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:ffb;src:url('chunks/assets/font_ba1aca6d2928b362373fe6bb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_2c32f80b8ae93f7003f8bf05.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_85d594694d2279e1e48d61e6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_6bb3e5df47142f7ccd98da0b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_43ce22e13891c10f4d780456.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_cdcfdb623bc018cea2b7e7b9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_65a137ec226fd92dccdd0059.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_2cbe0c8ebc59f79093ad5228.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_df4185fec210d8718494c58c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.960449;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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);}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsa{letter-spacing:-3.180000px;}
.lsc{letter-spacing:-3.000000px;}
.ls9{letter-spacing:-2.400000px;}
.ls13{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.138000px;}
.ls14{letter-spacing:0.195600px;}
.ls2{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.222000px;}
.ls15{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.322800px;}
.lse{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.840000px;}
.ls16{letter-spacing:1.800000px;}
.ls1a{letter-spacing:21.187200px;}
.ls19{letter-spacing:48.787200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.540000px;}
.wsc{word-spacing:-15.420000px;}
.wsf{word-spacing:-15.240000px;}
.ws10{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.054000px;}
.ws7{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.400000px;}
.wsd{word-spacing:-13.800000px;}
.ws8{word-spacing:-13.560000px;}
.ws11{word-spacing:-13.380000px;}
.ws12{word-spacing:-13.200000px;}
.ws0{word-spacing:-12.426000px;}
.ws6{word-spacing:-11.820000px;}
.ws9{word-spacing:-10.560000px;}
.wse{word-spacing:-10.095600px;}
.ws3{word-spacing:-8.949600px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._12{margin-left:-7.194000px;}
._5{margin-left:-5.322000px;}
._c{margin-left:-4.182000px;}
._3{margin-left:-3.162000px;}
._2{margin-left:-2.046000px;}
._0{margin-left:-1.026000px;}
._1{width:1.434000px;}
._4{width:3.390000px;}
._e{width:4.680000px;}
._d{width:5.802000px;}
._a{width:7.200000px;}
._9{width:9.042000px;}
._13{width:10.212000px;}
._11{width:11.220000px;}
._7{width:12.252000px;}
._8{width:13.518000px;}
._6{width:16.500000px;}
._b{width:18.540000px;}
._10{width:21.180000px;}
._f{width:22.662000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:0.285000px;}
.ya4{bottom:3.300000px;}
.ya7{bottom:3.330000px;}
.ycc{bottom:3.585000px;}
.y3{bottom:3.600000px;}
.y4b{bottom:3.900000px;}
.y1b{bottom:7.500000px;}
.ye{bottom:9.600000px;}
.y49{bottom:10.800000px;}
.y1e{bottom:12.585000px;}
.yc{bottom:14.115000px;}
.y4{bottom:17.400000px;}
.y101{bottom:17.700000px;}
.y109{bottom:18.000000px;}
.y106{bottom:18.900000px;}
.y2{bottom:20.100000px;}
.y103{bottom:20.130000px;}
.y46{bottom:20.715000px;}
.yb0{bottom:21.600000px;}
.y4a{bottom:22.185000px;}
.y48{bottom:25.185000px;}
.yb{bottom:30.315000px;}
.y45{bottom:38.100000px;}
.y5{bottom:39.337500px;}
.y1a{bottom:40.530000px;}
.ya{bottom:46.815000px;}
.y108{bottom:51.000000px;}
.y100{bottom:51.045000px;}
.y105{bottom:52.200000px;}
.y44{bottom:55.215000px;}
.y19{bottom:57.030000px;}
.y1{bottom:61.837500px;}
.y31{bottom:63.915000px;}
.y43{bottom:72.600000px;}
.y18{bottom:73.230000px;}
.y9{bottom:73.815000px;}
.y30{bottom:78.915000px;}
.y17{bottom:85.830000px;}
.y42{bottom:89.715000px;}
.y8{bottom:93.345000px;}
.y2f{bottom:96.915000px;}
.y16{bottom:106.230000px;}
.yc9{bottom:107.137500px;}
.y41{bottom:107.145000px;}
.y7{bottom:111.345000px;}
.yfe{bottom:111.637500px;}
.y8c{bottom:113.437500px;}
.y2e{bottom:114.045000px;}
.y5b{bottom:117.637500px;}
.y15{bottom:122.130000px;}
.yc8{bottom:124.237500px;}
.y40{bottom:124.245000px;}
.y8b{bottom:127.237500px;}
.yfd{bottom:129.037500px;}
.y2d{bottom:131.445000px;}
.y14{bottom:131.730000px;}
.y5a{bottom:135.037500px;}
.yc7{bottom:141.637500px;}
.y3f{bottom:141.645000px;}
.yfc{bottom:146.137500px;}
.y13{bottom:147.030000px;}
.y2c{bottom:149.145000px;}
.y59{bottom:152.130000px;}
.yc6{bottom:158.730000px;}
.y3e{bottom:158.745000px;}
.y13b{bottom:160.530000px;}
.yfb{bottom:163.545000px;}
.y12{bottom:165.930000px;}
.y2b{bottom:166.545000px;}
.y58{bottom:169.545000px;}
.yc5{bottom:176.130000px;}
.y3d{bottom:176.145000px;}
.y13a{bottom:177.330000px;}
.yfa{bottom:180.630000px;}
.y2a{bottom:183.945000px;}
.y57{bottom:186.630000px;}
.yc4{bottom:190.530000px;}
.y11{bottom:191.760000px;}
.y3c{bottom:193.245000px;}
.y139{bottom:193.545000px;}
.yf9{bottom:198.030000px;}
.y29{bottom:201.345000px;}
.y56{bottom:204.075000px;}
.yc3{bottom:208.575000px;}
.y138{bottom:210.075000px;}
.y3b{bottom:210.645000px;}
.yf8{bottom:215.175000px;}
.y10{bottom:216.375000px;}
.y28{bottom:218.745000px;}
.y55{bottom:221.175000px;}
.yc2{bottom:226.575000px;}
.y3a{bottom:227.745000px;}
.yf7{bottom:232.575000px;}
.y27{bottom:236.145000px;}
.y54{bottom:238.575000px;}
.y137{bottom:242.775000px;}
.yc1{bottom:244.575000px;}
.y39{bottom:245.145000px;}
.yf6{bottom:249.675000px;}
.y26{bottom:253.545000px;}
.y53{bottom:255.675000px;}
.y136{bottom:259.275000px;}
.y38{bottom:262.245000px;}
.yc0{bottom:262.575000px;}
.yf5{bottom:267.075000px;}
.y25{bottom:270.975000px;}
.y52{bottom:273.075000px;}
.y135{bottom:275.475000px;}
.y37{bottom:279.675000px;}
.ybf{bottom:280.575000px;}
.yf4{bottom:284.175000px;}
.y24{bottom:288.375000px;}
.y51{bottom:290.175000px;}
.y134{bottom:291.975000px;}
.y36{bottom:296.775000px;}
.ybe{bottom:298.575000px;}
.yf3{bottom:301.575000px;}
.y23{bottom:305.790000px;}
.y50{bottom:307.575000px;}
.y133{bottom:308.475000px;}
.y35{bottom:314.175000px;}
.ybd{bottom:316.575000px;}
.yf2{bottom:318.675000px;}
.y22{bottom:323.190000px;}
.y4f{bottom:324.675000px;}
.y34{bottom:331.290000px;}
.ybc{bottom:334.575000px;}
.yf1{bottom:336.075000px;}
.y132{bottom:341.175000px;}
.y4e{bottom:342.075000px;}
.y33{bottom:348.675000px;}
.y21{bottom:350.475000px;}
.ybb{bottom:352.575000px;}
.yf0{bottom:353.175000px;}
.y131{bottom:357.375000px;}
.y4d{bottom:359.175000px;}
.y32{bottom:365.790000px;}
.y20{bottom:368.175000px;}
.yba{bottom:370.605000px;}
.y130{bottom:373.905000px;}
.y4c{bottom:376.905000px;}
.yef{bottom:387.705000px;}
.y12f{bottom:390.405000px;}
.y47{bottom:391.320000px;}
.yb9{bottom:392.220000px;}
.yee{bottom:405.105000px;}
.y8a{bottom:405.405000px;}
.y12e{bottom:406.620000px;}
.yb8{bottom:409.320000px;}
.yed{bottom:422.205000px;}
.y89{bottom:422.505000px;}
.y12d{bottom:423.120000px;}
.yb7{bottom:426.705000px;}
.y1f{bottom:427.905000px;}
.yec{bottom:439.620000px;}
.y88{bottom:439.905000px;}
.yb6{bottom:441.105000px;}
.y12c{bottom:455.820000px;}
.yeb{bottom:456.705000px;}
.y87{bottom:457.005000px;}
.yb5{bottom:459.105000px;}
.y12b{bottom:472.320000px;}
.yea{bottom:474.120000px;}
.y86{bottom:474.405000px;}
.yb4{bottom:477.105000px;}
.y12a{bottom:488.505000px;}
.ye9{bottom:491.205000px;}
.y85{bottom:491.505000px;}
.yb3{bottom:495.105000px;}
.y129{bottom:505.005000px;}
.ye8{bottom:508.605000px;}
.y84{bottom:508.905000px;}
.yb2{bottom:513.105000px;}
.y128{bottom:521.505000px;}
.ye7{bottom:525.705000px;}
.y83{bottom:526.005000px;}
.yb1{bottom:531.150000px;}
.y127{bottom:537.750000px;}
.ye6{bottom:543.150000px;}
.y82{bottom:543.450000px;}
.yaf{bottom:549.150000px;}
.y126{bottom:554.250000px;}
.ye5{bottom:560.250000px;}
.y81{bottom:560.550000px;}
.yae{bottom:567.150000px;}
.y125{bottom:570.750000px;}
.ye4{bottom:577.650000px;}
.y80{bottom:577.950000px;}
.yad{bottom:585.150000px;}
.y124{bottom:586.950000px;}
.ye3{bottom:594.750000px;}
.y7f{bottom:595.050000px;}
.yac{bottom:603.150000px;}
.y123{bottom:603.450000px;}
.ye2{bottom:612.150000px;}
.y7e{bottom:612.450000px;}
.y122{bottom:619.650000px;}
.yab{bottom:624.750000px;}
.ye1{bottom:629.250000px;}
.y7d{bottom:629.550000px;}
.y121{bottom:636.150000px;}
.yaa{bottom:641.850000px;}
.ye0{bottom:646.650000px;}
.y7c{bottom:646.950000px;}
.y120{bottom:652.650000px;}
.ya9{bottom:656.550000px;}
.ydf{bottom:663.750000px;}
.y7b{bottom:664.050000px;}
.y11f{bottom:668.850000px;}
.ya8{bottom:674.550000px;}
.yde{bottom:681.150000px;}
.y7a{bottom:681.450000px;}
.y11e{bottom:685.350000px;}
.ya6{bottom:692.550000px;}
.ydd{bottom:698.280000px;}
.y79{bottom:698.595000px;}
.y107{bottom:701.280000px;}
.y11d{bottom:701.880000px;}
.ya5{bottom:710.580000px;}
.ydc{bottom:715.695000px;}
.y78{bottom:715.980000px;}
.y11c{bottom:718.080000px;}
.ya3{bottom:728.580000px;}
.ydb{bottom:732.780000px;}
.y77{bottom:733.080000px;}
.y11b{bottom:734.580000px;}
.ya2{bottom:749.880000px;}
.yda{bottom:750.180000px;}
.y76{bottom:750.495000px;}
.y11a{bottom:750.780000px;}
.ya1{bottom:767.280000px;}
.y75{bottom:767.595000px;}
.y119{bottom:783.795000px;}
.ya0{bottom:784.380000px;}
.yd9{bottom:784.695000px;}
.y74{bottom:784.980000px;}
.y118{bottom:799.980000px;}
.y9f{bottom:801.795000px;}
.y73{bottom:802.080000px;}
.y1c{bottom:807.495000px;}
.y117{bottom:816.495000px;}
.y9e{bottom:818.880000px;}
.yd8{bottom:819.195000px;}
.y72{bottom:819.480000px;}
.y116{bottom:832.695000px;}
.y9d{bottom:836.295000px;}
.y71{bottom:836.580000px;}
.yf{bottom:837.195000px;}
.y102{bottom:843.195000px;}
.y115{bottom:849.195000px;}
.y9c{bottom:853.380000px;}
.y70{bottom:853.695000px;}
.y114{bottom:865.725000px;}
.y9b{bottom:870.825000px;}
.y6f{bottom:871.125000px;}
.y113{bottom:881.925000px;}
.y9a{bottom:887.925000px;}
.y6e{bottom:888.225000px;}
.y112{bottom:898.425000px;}
.y104{bottom:903.525000px;}
.y99{bottom:905.325000px;}
.y6d{bottom:905.625000px;}
.y111{bottom:914.925000px;}
.y6c{bottom:922.725000px;}
.y98{bottom:924.825000px;}
.y110{bottom:931.125000px;}
.yd7{bottom:939.825000px;}
.y6b{bottom:940.125000px;}
.y10f{bottom:947.625000px;}
.y97{bottom:954.525000px;}
.y6a{bottom:957.225000px;}
.y10e{bottom:963.825000px;}
.y96{bottom:971.625000px;}
.yd6{bottom:974.325000px;}
.y69{bottom:974.625000px;}
.y10d{bottom:980.325000px;}
.y95{bottom:989.025000px;}
.y68{bottom:991.725000px;}
.y10c{bottom:996.825000px;}
.yff{bottom:998.625000px;}
.y94{bottom:1006.125000px;}
.yd5{bottom:1008.825000px;}
.y67{bottom:1009.125000px;}
.y10b{bottom:1013.025000px;}
.y93{bottom:1023.570000px;}
.yd4{bottom:1026.255000px;}
.y66{bottom:1028.955000px;}
.y10a{bottom:1029.570000px;}
.y92{bottom:1040.670000px;}
.yd3{bottom:1043.355000px;}
.y65{bottom:1046.370000px;}
.y91{bottom:1058.070000px;}
.yd2{bottom:1060.755000px;}
.y64{bottom:1063.755000px;}
.yd{bottom:1068.570000px;}
.y90{bottom:1075.170000px;}
.yd1{bottom:1077.870000px;}
.y63{bottom:1080.870000px;}
.y8f{bottom:1092.570000px;}
.y6{bottom:1093.755000px;}
.yd0{bottom:1095.255000px;}
.y62{bottom:1098.255000px;}
.y8e{bottom:1112.070000px;}
.ycf{bottom:1112.370000px;}
.y61{bottom:1115.370000px;}
.yce{bottom:1129.755000px;}
.y8d{bottom:1130.955000px;}
.y60{bottom:1132.755000px;}
.ycd{bottom:1144.170000px;}
.y5f{bottom:1149.855000px;}
.ycb{bottom:1162.170000px;}
.y5e{bottom:1167.255000px;}
.yca{bottom:1180.155000px;}
.y5d{bottom:1184.370000px;}
.y5c{bottom:1201.500000px;}
.h23{height:17.100000px;}
.h24{height:17.137500px;}
.h26{height:17.400000px;}
.h28{height:17.437500px;}
.hb{height:24.900000px;}
.h12{height:28.968750px;}
.h14{height:29.700000px;}
.h2{height:33.000000px;}
.h2b{height:34.537500px;}
.h27{height:35.400000px;}
.h29{height:35.437500px;}
.h11{height:35.806641px;}
.h8{height:36.000000px;}
.h1f{height:36.600000px;}
.h1c{height:38.625000px;}
.h2f{height:40.218750px;}
.h1e{height:41.894531px;}
.h2e{height:41.934375px;}
.h1d{height:42.333984px;}
.h1b{height:42.451172px;}
.h13{height:43.453125px;}
.hd{height:44.179688px;}
.ha{height:45.000000px;}
.h1a{height:46.350000px;}
.h17{height:47.742188px;}
.h20{height:48.281250px;}
.h25{height:49.250391px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h21{height:57.128906px;}
.h19{height:57.290625px;}
.hf{height:59.677734px;}
.h18{height:61.435547px;}
.h10{height:62.147461px;}
.he{height:63.000000px;}
.h2d{height:65.400000px;}
.h2a{height:65.437500px;}
.h22{height:65.645508px;}
.h2c{height:66.600000px;}
.h5{height:67.579102px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.537500px;}
.hc{height:231.375000px;}
.h16{height:379.575000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:73.237500px;}
.w15{width:97.237500px;}
.w16{width:141.337500px;}
.w5{width:151.830000px;}
.w17{width:157.845000px;}
.w10{width:165.345000px;}
.wb{width:168.345000px;}
.wf{width:178.275000px;}
.we{width:182.775000px;}
.wd{width:201.045000px;}
.w8{width:223.275000px;}
.w14{width:226.875000px;}
.wc{width:242.475000px;}
.w11{width:242.775000px;}
.w13{width:243.075000px;}
.w12{width:258.075000px;}
.wa{width:317.205000px;}
.w9{width:507.750000px;}
.w6{width:579.495000px;}
.w2{width:658.080000px;}
.w7{width:731.325000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.500000px;}
.x2{left:8.700000px;}
.x23{left:10.800000px;}
.xc{left:13.500000px;}
.xe{left:18.300000px;}
.x11{left:19.800000px;}
.x10{left:34.200000px;}
.xb{left:36.000000px;}
.x13{left:63.600000px;}
.x1{left:81.037500px;}
.x16{left:82.837487px;}
.x4{left:98.137500px;}
.x27{left:108.037487px;}
.xd{left:127.537500px;}
.x14{left:215.182500px;}
.x5{left:232.875000px;}
.x8{left:272.475000px;}
.x1d{left:283.575000px;}
.x15{left:304.320000px;}
.x12{left:325.012500px;}
.xf{left:326.512500px;}
.x18{left:327.704987px;}
.x6{left:331.920000px;}
.x20{left:340.920000px;}
.x7{left:351.120000px;}
.x24{left:356.220000px;}
.xa{left:365.512500px;}
.x22{left:379.320000px;}
.x26{left:380.820000px;}
.x1c{left:387.104987px;}
.x1a{left:399.750000px;}
.x9{left:439.650000px;}
.x25{left:461.250000px;}
.x1e{left:467.250000px;}
.x1b{left:568.995000px;}
.x21{left:584.595000px;}
.x1f{left:646.125000px;}
.x17{left:708.524987px;}
.x3{left:739.125000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsa{letter-spacing:-2.826667pt;}
.lsc{letter-spacing:-2.666667pt;}
.ls9{letter-spacing:-2.133333pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.122667pt;}
.ls14{letter-spacing:0.173867pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.197333pt;}
.ls15{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.286933pt;}
.lse{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls16{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:18.833067pt;}
.ls19{letter-spacing:43.366400pt;}
.ws2{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.813333pt;}
.wsc{word-spacing:-13.706667pt;}
.wsf{word-spacing:-13.546667pt;}
.ws10{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.381333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.800000pt;}
.wsd{word-spacing:-12.266667pt;}
.ws8{word-spacing:-12.053333pt;}
.ws11{word-spacing:-11.893333pt;}
.ws12{word-spacing:-11.733333pt;}
.ws0{word-spacing:-11.045333pt;}
.ws6{word-spacing:-10.506667pt;}
.ws9{word-spacing:-9.386667pt;}
.wse{word-spacing:-8.973867pt;}
.ws3{word-spacing:-7.955200pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._12{margin-left:-6.394667pt;}
._5{margin-left:-4.730667pt;}
._c{margin-left:-3.717333pt;}
._3{margin-left:-2.810667pt;}
._2{margin-left:-1.818667pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.274667pt;}
._4{width:3.013333pt;}
._e{width:4.160000pt;}
._d{width:5.157333pt;}
._a{width:6.400000pt;}
._9{width:8.037333pt;}
._13{width:9.077333pt;}
._11{width:9.973333pt;}
._7{width:10.890667pt;}
._8{width:12.016000pt;}
._6{width:14.666667pt;}
._b{width:16.480000pt;}
._10{width:18.826667pt;}
._f{width:20.144000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:0.253333pt;}
.ya4{bottom:2.933333pt;}
.ya7{bottom:2.960000pt;}
.ycc{bottom:3.186667pt;}
.y3{bottom:3.200000pt;}
.y4b{bottom:3.466667pt;}
.y1b{bottom:6.666667pt;}
.ye{bottom:8.533333pt;}
.y49{bottom:9.600000pt;}
.y1e{bottom:11.186667pt;}
.yc{bottom:12.546667pt;}
.y4{bottom:15.466667pt;}
.y101{bottom:15.733333pt;}
.y109{bottom:16.000000pt;}
.y106{bottom:16.800000pt;}
.y2{bottom:17.866667pt;}
.y103{bottom:17.893333pt;}
.y46{bottom:18.413333pt;}
.yb0{bottom:19.200000pt;}
.y4a{bottom:19.720000pt;}
.y48{bottom:22.386667pt;}
.yb{bottom:26.946667pt;}
.y45{bottom:33.866667pt;}
.y5{bottom:34.966667pt;}
.y1a{bottom:36.026667pt;}
.ya{bottom:41.613333pt;}
.y108{bottom:45.333333pt;}
.y100{bottom:45.373333pt;}
.y105{bottom:46.400000pt;}
.y44{bottom:49.080000pt;}
.y19{bottom:50.693333pt;}
.y1{bottom:54.966667pt;}
.y31{bottom:56.813333pt;}
.y43{bottom:64.533333pt;}
.y18{bottom:65.093333pt;}
.y9{bottom:65.613333pt;}
.y30{bottom:70.146667pt;}
.y17{bottom:76.293333pt;}
.y42{bottom:79.746667pt;}
.y8{bottom:82.973333pt;}
.y2f{bottom:86.146667pt;}
.y16{bottom:94.426667pt;}
.yc9{bottom:95.233333pt;}
.y41{bottom:95.240000pt;}
.y7{bottom:98.973333pt;}
.yfe{bottom:99.233333pt;}
.y8c{bottom:100.833333pt;}
.y2e{bottom:101.373333pt;}
.y5b{bottom:104.566667pt;}
.y15{bottom:108.560000pt;}
.yc8{bottom:110.433333pt;}
.y40{bottom:110.440000pt;}
.y8b{bottom:113.100000pt;}
.yfd{bottom:114.700000pt;}
.y2d{bottom:116.840000pt;}
.y14{bottom:117.093333pt;}
.y5a{bottom:120.033333pt;}
.yc7{bottom:125.900000pt;}
.y3f{bottom:125.906667pt;}
.yfc{bottom:129.900000pt;}
.y13{bottom:130.693333pt;}
.y2c{bottom:132.573333pt;}
.y59{bottom:135.226667pt;}
.yc6{bottom:141.093333pt;}
.y3e{bottom:141.106667pt;}
.y13b{bottom:142.693333pt;}
.yfb{bottom:145.373333pt;}
.y12{bottom:147.493333pt;}
.y2b{bottom:148.040000pt;}
.y58{bottom:150.706667pt;}
.yc5{bottom:156.560000pt;}
.y3d{bottom:156.573333pt;}
.y13a{bottom:157.626667pt;}
.yfa{bottom:160.560000pt;}
.y2a{bottom:163.506667pt;}
.y57{bottom:165.893333pt;}
.yc4{bottom:169.360000pt;}
.y11{bottom:170.453333pt;}
.y3c{bottom:171.773333pt;}
.y139{bottom:172.040000pt;}
.yf9{bottom:176.026667pt;}
.y29{bottom:178.973333pt;}
.y56{bottom:181.400000pt;}
.yc3{bottom:185.400000pt;}
.y138{bottom:186.733333pt;}
.y3b{bottom:187.240000pt;}
.yf8{bottom:191.266667pt;}
.y10{bottom:192.333333pt;}
.y28{bottom:194.440000pt;}
.y55{bottom:196.600000pt;}
.yc2{bottom:201.400000pt;}
.y3a{bottom:202.440000pt;}
.yf7{bottom:206.733333pt;}
.y27{bottom:209.906667pt;}
.y54{bottom:212.066667pt;}
.y137{bottom:215.800000pt;}
.yc1{bottom:217.400000pt;}
.y39{bottom:217.906667pt;}
.yf6{bottom:221.933333pt;}
.y26{bottom:225.373333pt;}
.y53{bottom:227.266667pt;}
.y136{bottom:230.466667pt;}
.y38{bottom:233.106667pt;}
.yc0{bottom:233.400000pt;}
.yf5{bottom:237.400000pt;}
.y25{bottom:240.866667pt;}
.y52{bottom:242.733333pt;}
.y135{bottom:244.866667pt;}
.y37{bottom:248.600000pt;}
.ybf{bottom:249.400000pt;}
.yf4{bottom:252.600000pt;}
.y24{bottom:256.333333pt;}
.y51{bottom:257.933333pt;}
.y134{bottom:259.533333pt;}
.y36{bottom:263.800000pt;}
.ybe{bottom:265.400000pt;}
.yf3{bottom:268.066667pt;}
.y23{bottom:271.813333pt;}
.y50{bottom:273.400000pt;}
.y133{bottom:274.200000pt;}
.y35{bottom:279.266667pt;}
.ybd{bottom:281.400000pt;}
.yf2{bottom:283.266667pt;}
.y22{bottom:287.280000pt;}
.y4f{bottom:288.600000pt;}
.y34{bottom:294.480000pt;}
.ybc{bottom:297.400000pt;}
.yf1{bottom:298.733333pt;}
.y132{bottom:303.266667pt;}
.y4e{bottom:304.066667pt;}
.y33{bottom:309.933333pt;}
.y21{bottom:311.533333pt;}
.ybb{bottom:313.400000pt;}
.yf0{bottom:313.933333pt;}
.y131{bottom:317.666667pt;}
.y4d{bottom:319.266667pt;}
.y32{bottom:325.146667pt;}
.y20{bottom:327.266667pt;}
.yba{bottom:329.426667pt;}
.y130{bottom:332.360000pt;}
.y4c{bottom:335.026667pt;}
.yef{bottom:344.626667pt;}
.y12f{bottom:347.026667pt;}
.y47{bottom:347.840000pt;}
.yb9{bottom:348.640000pt;}
.yee{bottom:360.093333pt;}
.y8a{bottom:360.360000pt;}
.y12e{bottom:361.440000pt;}
.yb8{bottom:363.840000pt;}
.yed{bottom:375.293333pt;}
.y89{bottom:375.560000pt;}
.y12d{bottom:376.106667pt;}
.yb7{bottom:379.293333pt;}
.y1f{bottom:380.360000pt;}
.yec{bottom:390.773333pt;}
.y88{bottom:391.026667pt;}
.yb6{bottom:392.093333pt;}
.y12c{bottom:405.173333pt;}
.yeb{bottom:405.960000pt;}
.y87{bottom:406.226667pt;}
.yb5{bottom:408.093333pt;}
.y12b{bottom:419.840000pt;}
.yea{bottom:421.440000pt;}
.y86{bottom:421.693333pt;}
.yb4{bottom:424.093333pt;}
.y12a{bottom:434.226667pt;}
.ye9{bottom:436.626667pt;}
.y85{bottom:436.893333pt;}
.yb3{bottom:440.093333pt;}
.y129{bottom:448.893333pt;}
.ye8{bottom:452.093333pt;}
.y84{bottom:452.360000pt;}
.yb2{bottom:456.093333pt;}
.y128{bottom:463.560000pt;}
.ye7{bottom:467.293333pt;}
.y83{bottom:467.560000pt;}
.yb1{bottom:472.133333pt;}
.y127{bottom:478.000000pt;}
.ye6{bottom:482.800000pt;}
.y82{bottom:483.066667pt;}
.yaf{bottom:488.133333pt;}
.y126{bottom:492.666667pt;}
.ye5{bottom:498.000000pt;}
.y81{bottom:498.266667pt;}
.yae{bottom:504.133333pt;}
.y125{bottom:507.333333pt;}
.ye4{bottom:513.466667pt;}
.y80{bottom:513.733333pt;}
.yad{bottom:520.133333pt;}
.y124{bottom:521.733333pt;}
.ye3{bottom:528.666667pt;}
.y7f{bottom:528.933333pt;}
.yac{bottom:536.133333pt;}
.y123{bottom:536.400000pt;}
.ye2{bottom:544.133333pt;}
.y7e{bottom:544.400000pt;}
.y122{bottom:550.800000pt;}
.yab{bottom:555.333333pt;}
.ye1{bottom:559.333333pt;}
.y7d{bottom:559.600000pt;}
.y121{bottom:565.466667pt;}
.yaa{bottom:570.533333pt;}
.ye0{bottom:574.800000pt;}
.y7c{bottom:575.066667pt;}
.y120{bottom:580.133333pt;}
.ya9{bottom:583.600000pt;}
.ydf{bottom:590.000000pt;}
.y7b{bottom:590.266667pt;}
.y11f{bottom:594.533333pt;}
.ya8{bottom:599.600000pt;}
.yde{bottom:605.466667pt;}
.y7a{bottom:605.733333pt;}
.y11e{bottom:609.200000pt;}
.ya6{bottom:615.600000pt;}
.ydd{bottom:620.693333pt;}
.y79{bottom:620.973333pt;}
.y107{bottom:623.360000pt;}
.y11d{bottom:623.893333pt;}
.ya5{bottom:631.626667pt;}
.ydc{bottom:636.173333pt;}
.y78{bottom:636.426667pt;}
.y11c{bottom:638.293333pt;}
.ya3{bottom:647.626667pt;}
.ydb{bottom:651.360000pt;}
.y77{bottom:651.626667pt;}
.y11b{bottom:652.960000pt;}
.ya2{bottom:666.560000pt;}
.yda{bottom:666.826667pt;}
.y76{bottom:667.106667pt;}
.y11a{bottom:667.360000pt;}
.ya1{bottom:682.026667pt;}
.y75{bottom:682.306667pt;}
.y119{bottom:696.706667pt;}
.ya0{bottom:697.226667pt;}
.yd9{bottom:697.506667pt;}
.y74{bottom:697.760000pt;}
.y118{bottom:711.093333pt;}
.y9f{bottom:712.706667pt;}
.y73{bottom:712.960000pt;}
.y1c{bottom:717.773333pt;}
.y117{bottom:725.773333pt;}
.y9e{bottom:727.893333pt;}
.yd8{bottom:728.173333pt;}
.y72{bottom:728.426667pt;}
.y116{bottom:740.173333pt;}
.y9d{bottom:743.373333pt;}
.y71{bottom:743.626667pt;}
.yf{bottom:744.173333pt;}
.y102{bottom:749.506667pt;}
.y115{bottom:754.840000pt;}
.y9c{bottom:758.560000pt;}
.y70{bottom:758.840000pt;}
.y114{bottom:769.533333pt;}
.y9b{bottom:774.066667pt;}
.y6f{bottom:774.333333pt;}
.y113{bottom:783.933333pt;}
.y9a{bottom:789.266667pt;}
.y6e{bottom:789.533333pt;}
.y112{bottom:798.600000pt;}
.y104{bottom:803.133333pt;}
.y99{bottom:804.733333pt;}
.y6d{bottom:805.000000pt;}
.y111{bottom:813.266667pt;}
.y6c{bottom:820.200000pt;}
.y98{bottom:822.066667pt;}
.y110{bottom:827.666667pt;}
.yd7{bottom:835.400000pt;}
.y6b{bottom:835.666667pt;}
.y10f{bottom:842.333333pt;}
.y97{bottom:848.466667pt;}
.y6a{bottom:850.866667pt;}
.y10e{bottom:856.733333pt;}
.y96{bottom:863.666667pt;}
.yd6{bottom:866.066667pt;}
.y69{bottom:866.333333pt;}
.y10d{bottom:871.400000pt;}
.y95{bottom:879.133333pt;}
.y68{bottom:881.533333pt;}
.y10c{bottom:886.066667pt;}
.yff{bottom:887.666667pt;}
.y94{bottom:894.333333pt;}
.yd5{bottom:896.733333pt;}
.y67{bottom:897.000000pt;}
.y10b{bottom:900.466667pt;}
.y93{bottom:909.840000pt;}
.yd4{bottom:912.226667pt;}
.y66{bottom:914.626667pt;}
.y10a{bottom:915.173333pt;}
.y92{bottom:925.040000pt;}
.yd3{bottom:927.426667pt;}
.y65{bottom:930.106667pt;}
.y91{bottom:940.506667pt;}
.yd2{bottom:942.893333pt;}
.y64{bottom:945.560000pt;}
.yd{bottom:949.840000pt;}
.y90{bottom:955.706667pt;}
.yd1{bottom:958.106667pt;}
.y63{bottom:960.773333pt;}
.y8f{bottom:971.173333pt;}
.y6{bottom:972.226667pt;}
.yd0{bottom:973.560000pt;}
.y62{bottom:976.226667pt;}
.y8e{bottom:988.506667pt;}
.ycf{bottom:988.773333pt;}
.y61{bottom:991.440000pt;}
.yce{bottom:1004.226667pt;}
.y8d{bottom:1005.293333pt;}
.y60{bottom:1006.893333pt;}
.ycd{bottom:1017.040000pt;}
.y5f{bottom:1022.093333pt;}
.ycb{bottom:1033.040000pt;}
.y5e{bottom:1037.560000pt;}
.yca{bottom:1049.026667pt;}
.y5d{bottom:1052.773333pt;}
.y5c{bottom:1068.000000pt;}
.h23{height:15.200000pt;}
.h24{height:15.233333pt;}
.h26{height:15.466667pt;}
.h28{height:15.500000pt;}
.hb{height:22.133333pt;}
.h12{height:25.750000pt;}
.h14{height:26.400000pt;}
.h2{height:29.333333pt;}
.h2b{height:30.700000pt;}
.h27{height:31.466667pt;}
.h29{height:31.500000pt;}
.h11{height:31.828125pt;}
.h8{height:32.000000pt;}
.h1f{height:32.533333pt;}
.h1c{height:34.333333pt;}
.h2f{height:35.750000pt;}
.h1e{height:37.239583pt;}
.h2e{height:37.275000pt;}
.h1d{height:37.630208pt;}
.h1b{height:37.734375pt;}
.h13{height:38.625000pt;}
.hd{height:39.270833pt;}
.ha{height:40.000000pt;}
.h1a{height:41.200000pt;}
.h17{height:42.437500pt;}
.h20{height:42.916667pt;}
.h25{height:43.778125pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h21{height:50.781250pt;}
.h19{height:50.925000pt;}
.hf{height:53.046875pt;}
.h18{height:54.609375pt;}
.h10{height:55.242187pt;}
.he{height:56.000000pt;}
.h2d{height:58.133333pt;}
.h2a{height:58.166667pt;}
.h22{height:58.351562pt;}
.h2c{height:59.200000pt;}
.h5{height:60.070312pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.033333pt;}
.hc{height:205.666667pt;}
.h16{height:337.400000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:65.100000pt;}
.w15{width:86.433333pt;}
.w16{width:125.633333pt;}
.w5{width:134.960000pt;}
.w17{width:140.306667pt;}
.w10{width:146.973333pt;}
.wb{width:149.640000pt;}
.wf{width:158.466667pt;}
.we{width:162.466667pt;}
.wd{width:178.706667pt;}
.w8{width:198.466667pt;}
.w14{width:201.666667pt;}
.wc{width:215.533333pt;}
.w11{width:215.800000pt;}
.w13{width:216.066667pt;}
.w12{width:229.400000pt;}
.wa{width:281.960000pt;}
.w9{width:451.333333pt;}
.w6{width:515.106667pt;}
.w2{width:584.960000pt;}
.w7{width:650.066667pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.666667pt;}
.x2{left:7.733333pt;}
.x23{left:9.600000pt;}
.xc{left:12.000000pt;}
.xe{left:16.266667pt;}
.x11{left:17.600000pt;}
.x10{left:30.400000pt;}
.xb{left:32.000000pt;}
.x13{left:56.533333pt;}
.x1{left:72.033333pt;}
.x16{left:73.633322pt;}
.x4{left:87.233333pt;}
.x27{left:96.033322pt;}
.xd{left:113.366667pt;}
.x14{left:191.273333pt;}
.x5{left:207.000000pt;}
.x8{left:242.200000pt;}
.x1d{left:252.066667pt;}
.x15{left:270.506667pt;}
.x12{left:288.900000pt;}
.xf{left:290.233333pt;}
.x18{left:291.293322pt;}
.x6{left:295.040000pt;}
.x20{left:303.040000pt;}
.x7{left:312.106667pt;}
.x24{left:316.640000pt;}
.xa{left:324.900000pt;}
.x22{left:337.173333pt;}
.x26{left:338.506667pt;}
.x1c{left:344.093322pt;}
.x1a{left:355.333333pt;}
.x9{left:390.800000pt;}
.x25{left:410.000000pt;}
.x1e{left:415.333333pt;}
.x1b{left:505.773333pt;}
.x21{left:519.640000pt;}
.x1f{left:574.333333pt;}
.x17{left:629.799988pt;}
.x3{left:657.000000pt;}
}




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