
    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_4a33e40939ffe548bbd33388.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_642190e5b8d6d6d112a670f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_21293121b1ad626ecdf077dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_64647c88eaa4995a624e071f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.177000;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_87a2af6042d4c5af1a8dcd2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_2b234a4b9bf2525e1efd9ff6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_bab6f27880d5974cd02a3895.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_e29f60ffd19f2768e4ee6835.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.183000;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_31a5339b66708753f9802e1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_8a474f1fe4bd5d81c809efee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.770000;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_8246c772dcd570e670e2e233.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_763bd205bf6a062b08c40009.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_0ae2642531f91bbee11d2585.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853000;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_5d0bd5fdd67d46356e543b86.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_6e4e0955d6a0430d9b4ac79d.woff2')format("woff");}.fff{font-family:fff;line-height:0.710000;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_1e8d75220255238c70a4eed9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ac20995666b434ceadfe77c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.728000;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_4784dff9fed8a7ac36c8919a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_630100120f6749bae853836f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005000;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;}
.m3{transform:matrix(0.148378,0.201206,-0.201206,0.148378,0,0);-ms-transform:matrix(0.148378,0.201206,-0.201206,0.148378,0,0);-webkit-transform:matrix(0.148378,0.201206,-0.201206,0.148378,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m2{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:-17.946000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.910600px;}
.v1{vertical-align:31.986000px;}
.lse{letter-spacing:-10.638000px;}
.lsa{letter-spacing:-1.821332px;}
.lsd{letter-spacing:-0.918000px;}
.ls4{letter-spacing:-0.306000px;}
.ls5{letter-spacing:-0.204000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.157218px;}
.ls6{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.411600px;}
.lsc{letter-spacing:0.415800px;}
.ls2{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.539400px;}
.ls9{letter-spacing:0.720000px;}
.ls0{letter-spacing:3.240000px;}
.ls1{letter-spacing:2824.896000px;}
.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;}
}
.wse{word-spacing:-20.706000px;}
.ws1{word-spacing:-20.604000px;}
.ws18{word-spacing:-19.992000px;}
.wsf{word-spacing:-13.642950px;}
.ws1e{word-spacing:-11.178000px;}
.ws0{word-spacing:-9.936000px;}
.ws2{word-spacing:-6.366360px;}
.ws6{word-spacing:-1.920000px;}
.ws8{word-spacing:-1.782000px;}
.ws7{word-spacing:-1.776000px;}
.ws27{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.008000px;}
.ws15{word-spacing:-0.918000px;}
.ws10{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.672000px;}
.wsa{word-spacing:-0.594000px;}
.wsc{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.378000px;}
.ws1d{word-spacing:-0.336000px;}
.ws11{word-spacing:-0.270000px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:0.204000px;}
.ws1a{word-spacing:0.216000px;}
.ws13{word-spacing:0.270000px;}
.ws20{word-spacing:0.486000px;}
.ws1f{word-spacing:0.756000px;}
.ws24{word-spacing:1.080000px;}
.ws21{word-spacing:1.188000px;}
.ws12{word-spacing:1.242000px;}
.ws5{word-spacing:1.248000px;}
.ws23{word-spacing:1.404000px;}
.ws4{word-spacing:1.488000px;}
.ws26{word-spacing:1.680000px;}
.ws17{word-spacing:1.821332px;}
.ws28{word-spacing:2.160000px;}
.ws16{word-spacing:2.322000px;}
.wsb{word-spacing:2.754000px;}
.ws2b{word-spacing:2.880000px;}
.ws2c{word-spacing:2.928000px;}
.ws22{word-spacing:3.024000px;}
.ws1c{word-spacing:4.752000px;}
.ws9{word-spacing:4.914000px;}
.ws2a{word-spacing:4.992000px;}
.ws1b{word-spacing:5.994000px;}
.ws19{word-spacing:21.276000px;}
._9{margin-left:-13.809600px;}
._13{margin-left:-9.081600px;}
._a{margin-left:-7.654200px;}
._b{margin-left:-6.609600px;}
._3{margin-left:-5.184000px;}
._5{margin-left:-3.218400px;}
._1{margin-left:-2.131200px;}
._4{margin-left:-1.012800px;}
._2{width:1.224000px;}
._0{width:2.236800px;}
._8{width:3.271200px;}
._6{width:4.779000px;}
._7{width:5.794200px;}
._f{width:6.895800px;}
._11{width:7.938000px;}
._14{width:11.318400px;}
._12{width:38.480400px;}
._d{width:40.416000px;}
._c{width:43.968000px;}
._10{width:1728.624000px;}
._e{width:1732.560000px;}
.fc4{color:rgb(0,103,104);}
.fc3{color:rgb(0,93,145);}
.fc5{color:transparent;}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fs9{font-size:31.482000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fsc{font-size:47.733120px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:49.225200px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:54.571800px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:62.777400px;}
.fse{font-size:65.392800px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.yb0{bottom:88.165800px;}
.ye4{bottom:99.421350px;}
.yaf{bottom:103.170300px;}
.y11d{bottom:109.153350px;}
.ye3{bottom:117.416850px;}
.y11c{bottom:125.653350px;}
.yc{bottom:127.680450px;}
.y32{bottom:127.801800px;}
.ye2{bottom:135.412350px;}
.yb{bottom:138.480450px;}
.y11b{bottom:142.153350px;}
.y31{bottom:145.797300px;}
.ya{bottom:149.280450px;}
.ye1{bottom:153.407850px;}
.y11a{bottom:158.653350px;}
.y9{bottom:160.080450px;}
.y30{bottom:163.792800px;}
.y119{bottom:175.153350px;}
.ye0{bottom:177.410850px;}
.y2f{bottom:181.788300px;}
.y118{bottom:191.653350px;}
.ydf{bottom:195.406350px;}
.y8{bottom:197.880450px;}
.y84{bottom:199.552500px;}
.y2e{bottom:199.783800px;}
.y117{bottom:208.153350px;}
.y7{bottom:210.480450px;}
.y2d{bottom:217.779300px;}
.yde{bottom:219.409350px;}
.y6{bottom:223.080450px;}
.y82{bottom:223.988502px;}
.y116{bottom:224.653350px;}
.y5{bottom:235.680450px;}
.y2c{bottom:235.774800px;}
.ydd{bottom:237.404850px;}
.y115{bottom:241.153350px;}
.y81{bottom:241.560622px;}
.y5a{bottom:242.332168px;}
.y67{bottom:246.848580px;}
.y2b{bottom:253.770300px;}
.y114{bottom:257.653350px;}
.y80{bottom:259.132741px;}
.ydc{bottom:261.407850px;}
.y6e{bottom:266.366371px;}
.y71{bottom:267.080137px;}
.y2a{bottom:271.765800px;}
.y113{bottom:274.153350px;}
.y7f{bottom:276.704861px;}
.y59{bottom:279.103392px;}
.ydb{bottom:279.403350px;}
.y5e{bottom:283.102940px;}
.y6a{bottom:284.124362px;}
.y85{bottom:285.971250px;}
.y29{bottom:289.761300px;}
.y112{bottom:290.653350px;}
.y7e{bottom:294.276980px;}
.yda{bottom:303.403350px;}
.y111{bottom:307.153350px;}
.y72{bottom:307.297125px;}
.y28{bottom:307.756800px;}
.y7d{bottom:311.849100px;}
.y110{bottom:323.653350px;}
.y27{bottom:325.752300px;}
.y65{bottom:326.421116px;}
.y79{bottom:332.797709px;}
.y10f{bottom:340.153350px;}
.y26{bottom:343.747800px;}
.y96{bottom:348.469050px;}
.y78{bottom:350.171355px;}
.y73{bottom:350.947571px;}
.y7b{bottom:356.637427px;}
.y10e{bottom:356.653350px;}
.yd9{bottom:359.666850px;}
.y25{bottom:361.743300px;}
.y95{bottom:363.473550px;}
.y6f{bottom:364.312213px;}
.y77{bottom:367.545000px;}
.y10d{bottom:373.153350px;}
.y75{bottom:373.874208px;}
.y7a{bottom:374.011072px;}
.yd8{bottom:377.662350px;}
.y94{bottom:378.478050px;}
.y24{bottom:379.738800px;}
.y58{bottom:382.599375px;}
.y6c{bottom:383.190077px;}
.y66{bottom:383.214690px;}
.y10c{bottom:389.653350px;}
.y93{bottom:393.482550px;}
.yd7{bottom:395.657850px;}
.y23{bottom:397.734300px;}
.y10b{bottom:406.153350px;}
.y92{bottom:408.487050px;}
.y5f{bottom:409.119452px;}
.yd6{bottom:413.653350px;}
.y5d{bottom:414.509611px;}
.y22{bottom:415.729800px;}
.y10a{bottom:422.653350px;}
.y91{bottom:423.491550px;}
.y7c{bottom:431.029950px;}
.y5b{bottom:432.132233px;}
.y21{bottom:433.725300px;}
.yd5{bottom:436.153350px;}
.y68{bottom:436.587113px;}
.y90{bottom:438.496050px;}
.y109{bottom:439.153350px;}
.y64{bottom:440.709724px;}
.y6d{bottom:447.933522px;}
.y62{bottom:451.526961px;}
.y20{bottom:451.720800px;}
.y8f{bottom:453.500550px;}
.y5c{bottom:454.775824px;}
.y63{bottom:455.280383px;}
.y108{bottom:455.653350px;}
.y70{bottom:459.538363px;}
.y57{bottom:462.824145px;}
.y8e{bottom:468.505050px;}
.y1f{bottom:469.716300px;}
.y107{bottom:472.153350px;}
.y8d{bottom:483.509550px;}
.y83{bottom:485.523750px;}
.y60{bottom:486.846042px;}
.y1e{bottom:487.711800px;}
.y106{bottom:488.653350px;}
.y69{bottom:490.537932px;}
.yd4{bottom:492.560850px;}
.y61{bottom:495.177407px;}
.y76{bottom:496.912596px;}
.y8c{bottom:498.514050px;}
.y105{bottom:505.153350px;}
.y1d{bottom:505.707300px;}
.yd3{bottom:510.556350px;}
.y8b{bottom:513.518550px;}
.y56{bottom:521.045250px;}
.y104{bottom:521.653350px;}
.y1c{bottom:523.702800px;}
.y74{bottom:525.844707px;}
.y8a{bottom:528.523050px;}
.yd2{bottom:528.551850px;}
.y6b{bottom:536.145080px;}
.y103{bottom:538.153350px;}
.y1b{bottom:541.698300px;}
.y89{bottom:543.514050px;}
.yd1{bottom:546.547350px;}
.y102{bottom:554.653350px;}
.y88{bottom:558.518550px;}
.y1a{bottom:559.693800px;}
.yd0{bottom:564.542850px;}
.y101{bottom:571.153350px;}
.y87{bottom:573.523050px;}
.y19{bottom:577.689300px;}
.ycf{bottom:582.538350px;}
.y100{bottom:587.653350px;}
.y86{bottom:588.527550px;}
.y18{bottom:595.684800px;}
.yae{bottom:597.366000px;}
.yce{bottom:600.533850px;}
.yff{bottom:604.153350px;}
.y17{bottom:613.680300px;}
.yad{bottom:615.361500px;}
.ycd{bottom:618.529350px;}
.yfe{bottom:620.653350px;}
.y55{bottom:630.379500px;}
.yac{bottom:633.357000px;}
.y16{bottom:636.180300px;}
.ycc{bottom:636.524850px;}
.yfd{bottom:637.153350px;}
.y54{bottom:648.375000px;}
.yab{bottom:651.352500px;}
.yfc{bottom:653.653350px;}
.ycb{bottom:654.520350px;}
.y53{bottom:666.370500px;}
.yaa{bottom:669.348000px;}
.yfb{bottom:670.153350px;}
.yca{bottom:672.515850px;}
.y139{bottom:678.510600px;}
.y52{bottom:684.366000px;}
.yfa{bottom:686.653350px;}
.ya9{bottom:687.343500px;}
.yc9{bottom:690.511350px;}
.y15{bottom:692.430300px;}
.y138{bottom:695.010600px;}
.y51{bottom:702.361500px;}
.yf9{bottom:703.153350px;}
.ya8{bottom:705.339000px;}
.yc8{bottom:708.506850px;}
.y14{bottom:708.930300px;}
.y137{bottom:711.510600px;}
.yf8{bottom:719.653350px;}
.y50{bottom:720.357000px;}
.ya7{bottom:723.334500px;}
.y13{bottom:725.430300px;}
.yc7{bottom:726.502350px;}
.y136{bottom:728.010600px;}
.y34{bottom:730.155900px;}
.yf7{bottom:736.153350px;}
.y4f{bottom:738.352500px;}
.ya6{bottom:741.330000px;}
.yc6{bottom:744.497850px;}
.y135{bottom:744.510600px;}
.y33{bottom:745.031550px;}
.yf6{bottom:752.653350px;}
.y4e{bottom:756.348000px;}
.ya5{bottom:759.325500px;}
.y12{bottom:759.930300px;}
.y134{bottom:761.010600px;}
.yc5{bottom:762.493350px;}
.yf5{bottom:769.153350px;}
.y4d{bottom:774.343500px;}
.y133{bottom:777.510600px;}
.yc4{bottom:780.488850px;}
.ya4{bottom:781.825500px;}
.y11{bottom:785.430300px;}
.yf4{bottom:785.653350px;}
.y4c{bottom:792.339000px;}
.y132{bottom:794.010600px;}
.yc3{bottom:798.484350px;}
.y10{bottom:801.930300px;}
.yf3{bottom:802.153350px;}
.y4b{bottom:810.334500px;}
.y131{bottom:810.510600px;}
.yc2{bottom:816.479850px;}
.yf{bottom:818.430300px;}
.yf2{bottom:818.653350px;}
.y130{bottom:827.010600px;}
.y4a{bottom:828.330000px;}
.yc1{bottom:834.475350px;}
.ye{bottom:834.930300px;}
.yf1{bottom:835.153350px;}
.ya3{bottom:838.101000px;}
.y12f{bottom:843.510600px;}
.y49{bottom:846.325500px;}
.yd{bottom:851.430300px;}
.yf0{bottom:851.653350px;}
.yc0{bottom:852.470850px;}
.ya2{bottom:856.096500px;}
.y12e{bottom:860.010600px;}
.yef{bottom:868.153350px;}
.y48{bottom:868.825500px;}
.ybf{bottom:870.466350px;}
.y12d{bottom:876.510600px;}
.ya1{bottom:878.601000px;}
.yee{bottom:884.653350px;}
.ybe{bottom:888.461850px;}
.y12c{bottom:893.010600px;}
.ya0{bottom:896.596500px;}
.y3a{bottom:900.258150px;}
.yed{bottom:901.153350px;}
.ybd{bottom:906.457350px;}
.y12b{bottom:909.510600px;}
.y9f{bottom:914.592000px;}
.yec{bottom:917.653350px;}
.y39{bottom:924.258150px;}
.ybc{bottom:924.452850px;}
.y47{bottom:925.098000px;}
.y12a{bottom:926.010600px;}
.y9e{bottom:932.587500px;}
.yeb{bottom:934.153350px;}
.y38{bottom:940.758150px;}
.ybb{bottom:942.448350px;}
.y129{bottom:942.510600px;}
.y46{bottom:943.093500px;}
.y9d{bottom:950.583000px;}
.yea{bottom:950.653350px;}
.y128{bottom:959.010600px;}
.yba{bottom:960.443850px;}
.y45{bottom:961.089000px;}
.ye9{bottom:967.153350px;}
.y9c{bottom:968.578500px;}
.y37{bottom:972.258150px;}
.y127{bottom:975.510600px;}
.yb9{bottom:978.439350px;}
.y44{bottom:979.084500px;}
.ye8{bottom:988.153350px;}
.y9b{bottom:991.083000px;}
.y126{bottom:992.010600px;}
.yb8{bottom:996.434850px;}
.y43{bottom:997.080000px;}
.y36{bottom:1008.258150px;}
.y125{bottom:1008.510600px;}
.y9a{bottom:1009.078500px;}
.yb7{bottom:1014.430350px;}
.y42{bottom:1015.093500px;}
.y124{bottom:1025.010600px;}
.y99{bottom:1031.583000px;}
.yb6{bottom:1032.425850px;}
.y41{bottom:1033.089000px;}
.y35{bottom:1038.858150px;}
.y123{bottom:1041.510600px;}
.ye7{bottom:1044.404850px;}
.y98{bottom:1049.578500px;}
.yb5{bottom:1050.421350px;}
.y40{bottom:1051.084500px;}
.y122{bottom:1058.010600px;}
.ye6{bottom:1062.400350px;}
.yb4{bottom:1068.416850px;}
.y3f{bottom:1069.080000px;}
.y121{bottom:1074.510600px;}
.y97{bottom:1079.575500px;}
.ye5{bottom:1086.407850px;}
.yb3{bottom:1086.412350px;}
.y3e{bottom:1087.075500px;}
.y120{bottom:1091.010600px;}
.y3{bottom:1103.536350px;}
.yb2{bottom:1104.407850px;}
.y11f{bottom:1107.510600px;}
.y3d{bottom:1109.575500px;}
.yb1{bottom:1122.403350px;}
.y11e{bottom:1124.010600px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y3c{bottom:1175.538600px;}
.h6{height:27.540000px;}
.h5{height:32.130000px;}
.h12{height:33.174518px;}
.h10{height:34.211514px;}
.h8{height:36.720000px;}
.h13{height:37.927401px;}
.hd{height:39.606000px;}
.h16{height:39.660000px;}
.h3{height:41.094000px;}
.hb{height:41.310000px;}
.h11{height:43.630293px;}
.h4{height:44.976000px;}
.h7{height:45.264000px;}
.h2{height:45.441000px;}
.h14{height:47.605958px;}
.hf{height:49.713864px;}
.h17{height:50.904000px;}
.ha{height:50.922000px;}
.hc{height:63.840000px;}
.h9{height:78.132000px;}
.he{height:95.574000px;}
.h15{height:388.680000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:513.273000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-270.843300px;}
.x0{left:0.000000px;}
.x31{left:46.334550px;}
.x3{left:81.000000px;}
.x2{left:93.000000px;}
.x8{left:195.579000px;}
.x4{left:288.000000px;}
.x30{left:289.240500px;}
.x5{left:306.000000px;}
.x2b{left:322.306703px;}
.x2c{left:323.625029px;}
.xa{left:333.462699px;}
.x2f{left:335.575050px;}
.x2e{left:349.476900px;}
.x2d{left:379.515900px;}
.xb{left:390.686994px;}
.x9{left:403.005600px;}
.x1e{left:445.622317px;}
.xe{left:469.545764px;}
.x26{left:491.315609px;}
.x17{left:492.804671px;}
.x11{left:513.060841px;}
.x24{left:522.598223px;}
.x10{left:540.430052px;}
.x18{left:572.906378px;}
.x20{left:592.079593px;}
.x13{left:611.388178px;}
.x25{left:619.633399px;}
.x19{left:624.457468px;}
.x15{left:629.650727px;}
.x2a{left:634.530102px;}
.x22{left:639.286560px;}
.x28{left:644.119350px;}
.x27{left:650.608356px;}
.x29{left:651.966525px;}
.x1d{left:669.080112px;}
.x1b{left:675.504001px;}
.x12{left:679.700449px;}
.x14{left:681.804826px;}
.x1f{left:682.986231px;}
.xd{left:685.053690px;}
.x16{left:702.024077px;}
.xf{left:703.193176px;}
.x1{left:717.106200px;}
.xc{left:723.744697px;}
.x21{left:726.624371px;}
.x1a{left:729.454820px;}
.x23{left:740.850454px;}
.x1c{left:750.793944px;}
@media print{
.v3{vertical-align:-15.952000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.920533pt;}
.v1{vertical-align:28.432000pt;}
.lse{letter-spacing:-9.456000pt;}
.lsa{letter-spacing:-1.618962pt;}
.lsd{letter-spacing:-0.816000pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.139749pt;}
.ls6{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.365867pt;}
.lsc{letter-spacing:0.369600pt;}
.ls2{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.479467pt;}
.ls9{letter-spacing:0.640000pt;}
.ls0{letter-spacing:2.880000pt;}
.ls1{letter-spacing:2511.018667pt;}
.wse{word-spacing:-18.405333pt;}
.ws1{word-spacing:-18.314667pt;}
.ws18{word-spacing:-17.770667pt;}
.wsf{word-spacing:-12.127067pt;}
.ws1e{word-spacing:-9.936000pt;}
.ws0{word-spacing:-8.832000pt;}
.ws2{word-spacing:-5.658987pt;}
.ws6{word-spacing:-1.706667pt;}
.ws8{word-spacing:-1.584000pt;}
.ws7{word-spacing:-1.578667pt;}
.ws27{word-spacing:-1.152000pt;}
.ws29{word-spacing:-0.896000pt;}
.ws15{word-spacing:-0.816000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.597333pt;}
.wsa{word-spacing:-0.528000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.336000pt;}
.ws1d{word-spacing:-0.298667pt;}
.ws11{word-spacing:-0.240000pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:0.181333pt;}
.ws1a{word-spacing:0.192000pt;}
.ws13{word-spacing:0.240000pt;}
.ws20{word-spacing:0.432000pt;}
.ws1f{word-spacing:0.672000pt;}
.ws24{word-spacing:0.960000pt;}
.ws21{word-spacing:1.056000pt;}
.ws12{word-spacing:1.104000pt;}
.ws5{word-spacing:1.109333pt;}
.ws23{word-spacing:1.248000pt;}
.ws4{word-spacing:1.322667pt;}
.ws26{word-spacing:1.493333pt;}
.ws17{word-spacing:1.618962pt;}
.ws28{word-spacing:1.920000pt;}
.ws16{word-spacing:2.064000pt;}
.wsb{word-spacing:2.448000pt;}
.ws2b{word-spacing:2.560000pt;}
.ws2c{word-spacing:2.602667pt;}
.ws22{word-spacing:2.688000pt;}
.ws1c{word-spacing:4.224000pt;}
.ws9{word-spacing:4.368000pt;}
.ws2a{word-spacing:4.437333pt;}
.ws1b{word-spacing:5.328000pt;}
.ws19{word-spacing:18.912000pt;}
._9{margin-left:-12.275200pt;}
._13{margin-left:-8.072533pt;}
._a{margin-left:-6.803733pt;}
._b{margin-left:-5.875200pt;}
._3{margin-left:-4.608000pt;}
._5{margin-left:-2.860800pt;}
._1{margin-left:-1.894400pt;}
._4{margin-left:-0.900267pt;}
._2{width:1.088000pt;}
._0{width:1.988267pt;}
._8{width:2.907733pt;}
._6{width:4.248000pt;}
._7{width:5.150400pt;}
._f{width:6.129600pt;}
._11{width:7.056000pt;}
._14{width:10.060800pt;}
._12{width:34.204800pt;}
._d{width:35.925333pt;}
._c{width:39.082667pt;}
._10{width:1536.554667pt;}
._e{width:1540.053333pt;}
.fs8{font-size:21.765333pt;}
.fs9{font-size:27.984000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fsc{font-size:42.429440pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:43.755733pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:48.508267pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:55.802133pt;}
.fse{font-size:58.126933pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.yb0{bottom:78.369600pt;}
.ye4{bottom:88.374533pt;}
.yaf{bottom:91.706933pt;}
.y11d{bottom:97.025200pt;}
.ye3{bottom:104.370533pt;}
.y11c{bottom:111.691867pt;}
.yc{bottom:113.493733pt;}
.y32{bottom:113.601600pt;}
.ye2{bottom:120.366533pt;}
.yb{bottom:123.093733pt;}
.y11b{bottom:126.358533pt;}
.y31{bottom:129.597600pt;}
.ya{bottom:132.693733pt;}
.ye1{bottom:136.362533pt;}
.y11a{bottom:141.025200pt;}
.y9{bottom:142.293733pt;}
.y30{bottom:145.593600pt;}
.y119{bottom:155.691867pt;}
.ye0{bottom:157.698533pt;}
.y2f{bottom:161.589600pt;}
.y118{bottom:170.358533pt;}
.ydf{bottom:173.694533pt;}
.y8{bottom:175.893733pt;}
.y84{bottom:177.380000pt;}
.y2e{bottom:177.585600pt;}
.y117{bottom:185.025200pt;}
.y7{bottom:187.093733pt;}
.y2d{bottom:193.581600pt;}
.yde{bottom:195.030533pt;}
.y6{bottom:198.293733pt;}
.y82{bottom:199.100891pt;}
.y116{bottom:199.691867pt;}
.y5{bottom:209.493733pt;}
.y2c{bottom:209.577600pt;}
.ydd{bottom:211.026533pt;}
.y115{bottom:214.358533pt;}
.y81{bottom:214.720553pt;}
.y5a{bottom:215.406371pt;}
.y67{bottom:219.420960pt;}
.y2b{bottom:225.573600pt;}
.y114{bottom:229.025200pt;}
.y80{bottom:230.340214pt;}
.ydc{bottom:232.362533pt;}
.y6e{bottom:236.770108pt;}
.y71{bottom:237.404566pt;}
.y2a{bottom:241.569600pt;}
.y113{bottom:243.691867pt;}
.y7f{bottom:245.959876pt;}
.y59{bottom:248.091904pt;}
.ydb{bottom:248.358533pt;}
.y5e{bottom:251.647057pt;}
.y6a{bottom:252.554989pt;}
.y85{bottom:254.196667pt;}
.y29{bottom:257.565600pt;}
.y112{bottom:258.358533pt;}
.y7e{bottom:261.579538pt;}
.yda{bottom:269.691867pt;}
.y111{bottom:273.025200pt;}
.y72{bottom:273.153000pt;}
.y28{bottom:273.561600pt;}
.y7d{bottom:277.199200pt;}
.y110{bottom:287.691867pt;}
.y27{bottom:289.557600pt;}
.y65{bottom:290.152103pt;}
.y79{bottom:295.820186pt;}
.y10f{bottom:302.358533pt;}
.y26{bottom:305.553600pt;}
.y96{bottom:309.750267pt;}
.y78{bottom:311.263426pt;}
.y73{bottom:311.953397pt;}
.y7b{bottom:317.011046pt;}
.y10e{bottom:317.025200pt;}
.yd9{bottom:319.703867pt;}
.y25{bottom:321.549600pt;}
.y95{bottom:323.087600pt;}
.y6f{bottom:323.833078pt;}
.y77{bottom:326.706667pt;}
.y10d{bottom:331.691867pt;}
.y75{bottom:332.332630pt;}
.y7a{bottom:332.454286pt;}
.yd8{bottom:335.699867pt;}
.y94{bottom:336.424933pt;}
.y24{bottom:337.545600pt;}
.y58{bottom:340.088333pt;}
.y6c{bottom:340.613402pt;}
.y66{bottom:340.635280pt;}
.y10c{bottom:346.358533pt;}
.y93{bottom:349.762267pt;}
.yd7{bottom:351.695867pt;}
.y23{bottom:353.541600pt;}
.y10b{bottom:361.025200pt;}
.y92{bottom:363.099600pt;}
.y5f{bottom:363.661735pt;}
.yd6{bottom:367.691867pt;}
.y5d{bottom:368.452987pt;}
.y22{bottom:369.537600pt;}
.y10a{bottom:375.691867pt;}
.y91{bottom:376.436933pt;}
.y7c{bottom:383.137733pt;}
.y5b{bottom:384.117540pt;}
.y21{bottom:385.533600pt;}
.yd5{bottom:387.691867pt;}
.y68{bottom:388.077434pt;}
.y90{bottom:389.774267pt;}
.y109{bottom:390.358533pt;}
.y64{bottom:391.741977pt;}
.y6d{bottom:398.163130pt;}
.y62{bottom:401.357299pt;}
.y20{bottom:401.529600pt;}
.y8f{bottom:403.111600pt;}
.y5c{bottom:404.245177pt;}
.y63{bottom:404.693674pt;}
.y108{bottom:405.025200pt;}
.y70{bottom:408.478545pt;}
.y57{bottom:411.399240pt;}
.y8e{bottom:416.448933pt;}
.y1f{bottom:417.525600pt;}
.y107{bottom:419.691867pt;}
.y8d{bottom:429.786267pt;}
.y83{bottom:431.576667pt;}
.y60{bottom:432.752038pt;}
.y1e{bottom:433.521600pt;}
.y106{bottom:434.358533pt;}
.y69{bottom:436.033718pt;}
.yd4{bottom:437.831867pt;}
.y61{bottom:440.157695pt;}
.y76{bottom:441.700085pt;}
.y8c{bottom:443.123600pt;}
.y105{bottom:449.025200pt;}
.y1d{bottom:449.517600pt;}
.yd3{bottom:453.827867pt;}
.y8b{bottom:456.460933pt;}
.y56{bottom:463.151333pt;}
.y104{bottom:463.691867pt;}
.y1c{bottom:465.513600pt;}
.y74{bottom:467.417517pt;}
.y8a{bottom:469.798267pt;}
.yd2{bottom:469.823867pt;}
.y6b{bottom:476.573405pt;}
.y103{bottom:478.358533pt;}
.y1b{bottom:481.509600pt;}
.y89{bottom:483.123600pt;}
.yd1{bottom:485.819867pt;}
.y102{bottom:493.025200pt;}
.y88{bottom:496.460933pt;}
.y1a{bottom:497.505600pt;}
.yd0{bottom:501.815867pt;}
.y101{bottom:507.691867pt;}
.y87{bottom:509.798267pt;}
.y19{bottom:513.501600pt;}
.ycf{bottom:517.811867pt;}
.y100{bottom:522.358533pt;}
.y86{bottom:523.135600pt;}
.y18{bottom:529.497600pt;}
.yae{bottom:530.992000pt;}
.yce{bottom:533.807867pt;}
.yff{bottom:537.025200pt;}
.y17{bottom:545.493600pt;}
.yad{bottom:546.988000pt;}
.ycd{bottom:549.803867pt;}
.yfe{bottom:551.691867pt;}
.y55{bottom:560.337333pt;}
.yac{bottom:562.984000pt;}
.y16{bottom:565.493600pt;}
.ycc{bottom:565.799867pt;}
.yfd{bottom:566.358533pt;}
.y54{bottom:576.333333pt;}
.yab{bottom:578.980000pt;}
.yfc{bottom:581.025200pt;}
.ycb{bottom:581.795867pt;}
.y53{bottom:592.329333pt;}
.yaa{bottom:594.976000pt;}
.yfb{bottom:595.691867pt;}
.yca{bottom:597.791867pt;}
.y139{bottom:603.120533pt;}
.y52{bottom:608.325333pt;}
.yfa{bottom:610.358533pt;}
.ya9{bottom:610.972000pt;}
.yc9{bottom:613.787867pt;}
.y15{bottom:615.493600pt;}
.y138{bottom:617.787200pt;}
.y51{bottom:624.321333pt;}
.yf9{bottom:625.025200pt;}
.ya8{bottom:626.968000pt;}
.yc8{bottom:629.783867pt;}
.y14{bottom:630.160267pt;}
.y137{bottom:632.453867pt;}
.yf8{bottom:639.691867pt;}
.y50{bottom:640.317333pt;}
.ya7{bottom:642.964000pt;}
.y13{bottom:644.826933pt;}
.yc7{bottom:645.779867pt;}
.y136{bottom:647.120533pt;}
.y34{bottom:649.027467pt;}
.yf7{bottom:654.358533pt;}
.y4f{bottom:656.313333pt;}
.ya6{bottom:658.960000pt;}
.yc6{bottom:661.775867pt;}
.y135{bottom:661.787200pt;}
.y33{bottom:662.250267pt;}
.yf6{bottom:669.025200pt;}
.y4e{bottom:672.309333pt;}
.ya5{bottom:674.956000pt;}
.y12{bottom:675.493600pt;}
.y134{bottom:676.453867pt;}
.yc5{bottom:677.771867pt;}
.yf5{bottom:683.691867pt;}
.y4d{bottom:688.305333pt;}
.y133{bottom:691.120533pt;}
.yc4{bottom:693.767867pt;}
.ya4{bottom:694.956000pt;}
.y11{bottom:698.160267pt;}
.yf4{bottom:698.358533pt;}
.y4c{bottom:704.301333pt;}
.y132{bottom:705.787200pt;}
.yc3{bottom:709.763867pt;}
.y10{bottom:712.826933pt;}
.yf3{bottom:713.025200pt;}
.y4b{bottom:720.297333pt;}
.y131{bottom:720.453867pt;}
.yc2{bottom:725.759867pt;}
.yf{bottom:727.493600pt;}
.yf2{bottom:727.691867pt;}
.y130{bottom:735.120533pt;}
.y4a{bottom:736.293333pt;}
.yc1{bottom:741.755867pt;}
.ye{bottom:742.160267pt;}
.yf1{bottom:742.358533pt;}
.ya3{bottom:744.978667pt;}
.y12f{bottom:749.787200pt;}
.y49{bottom:752.289333pt;}
.yd{bottom:756.826933pt;}
.yf0{bottom:757.025200pt;}
.yc0{bottom:757.751867pt;}
.ya2{bottom:760.974667pt;}
.y12e{bottom:764.453867pt;}
.yef{bottom:771.691867pt;}
.y48{bottom:772.289333pt;}
.ybf{bottom:773.747867pt;}
.y12d{bottom:779.120533pt;}
.ya1{bottom:780.978667pt;}
.yee{bottom:786.358533pt;}
.ybe{bottom:789.743867pt;}
.y12c{bottom:793.787200pt;}
.ya0{bottom:796.974667pt;}
.y3a{bottom:800.229467pt;}
.yed{bottom:801.025200pt;}
.ybd{bottom:805.739867pt;}
.y12b{bottom:808.453867pt;}
.y9f{bottom:812.970667pt;}
.yec{bottom:815.691867pt;}
.y39{bottom:821.562800pt;}
.ybc{bottom:821.735867pt;}
.y47{bottom:822.309333pt;}
.y12a{bottom:823.120533pt;}
.y9e{bottom:828.966667pt;}
.yeb{bottom:830.358533pt;}
.y38{bottom:836.229467pt;}
.ybb{bottom:837.731867pt;}
.y129{bottom:837.787200pt;}
.y46{bottom:838.305333pt;}
.y9d{bottom:844.962667pt;}
.yea{bottom:845.025200pt;}
.y128{bottom:852.453867pt;}
.yba{bottom:853.727867pt;}
.y45{bottom:854.301333pt;}
.ye9{bottom:859.691867pt;}
.y9c{bottom:860.958667pt;}
.y37{bottom:864.229467pt;}
.y127{bottom:867.120533pt;}
.yb9{bottom:869.723867pt;}
.y44{bottom:870.297333pt;}
.ye8{bottom:878.358533pt;}
.y9b{bottom:880.962667pt;}
.y126{bottom:881.787200pt;}
.yb8{bottom:885.719867pt;}
.y43{bottom:886.293333pt;}
.y36{bottom:896.229467pt;}
.y125{bottom:896.453867pt;}
.y9a{bottom:896.958667pt;}
.yb7{bottom:901.715867pt;}
.y42{bottom:902.305333pt;}
.y124{bottom:911.120533pt;}
.y99{bottom:916.962667pt;}
.yb6{bottom:917.711867pt;}
.y41{bottom:918.301333pt;}
.y35{bottom:923.429467pt;}
.y123{bottom:925.787200pt;}
.ye7{bottom:928.359867pt;}
.y98{bottom:932.958667pt;}
.yb5{bottom:933.707867pt;}
.y40{bottom:934.297333pt;}
.y122{bottom:940.453867pt;}
.ye6{bottom:944.355867pt;}
.yb4{bottom:949.703867pt;}
.y3f{bottom:950.293333pt;}
.y121{bottom:955.120533pt;}
.y97{bottom:959.622667pt;}
.ye5{bottom:965.695867pt;}
.yb3{bottom:965.699867pt;}
.y3e{bottom:966.289333pt;}
.y120{bottom:969.787200pt;}
.y3{bottom:980.921200pt;}
.yb2{bottom:981.695867pt;}
.y11f{bottom:984.453867pt;}
.y3d{bottom:986.289333pt;}
.yb1{bottom:997.691867pt;}
.y11e{bottom:999.120533pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y3c{bottom:1044.923200pt;}
.h6{height:24.480000pt;}
.h5{height:28.560000pt;}
.h12{height:29.488461pt;}
.h10{height:30.410235pt;}
.h8{height:32.640000pt;}
.h13{height:33.713245pt;}
.hd{height:35.205333pt;}
.h16{height:35.253333pt;}
.h3{height:36.528000pt;}
.hb{height:36.720000pt;}
.h11{height:38.782483pt;}
.h4{height:39.978667pt;}
.h7{height:40.234667pt;}
.h2{height:40.392000pt;}
.h14{height:42.316407pt;}
.hf{height:44.190101pt;}
.h17{height:45.248000pt;}
.ha{height:45.264000pt;}
.hc{height:56.746667pt;}
.h9{height:69.450667pt;}
.he{height:84.954667pt;}
.h15{height:345.493333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:456.242667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x31{left:41.186267pt;}
.x3{left:72.000000pt;}
.x2{left:82.666667pt;}
.x8{left:173.848000pt;}
.x4{left:256.000000pt;}
.x30{left:257.102667pt;}
.x5{left:272.000000pt;}
.x2b{left:286.494847pt;}
.x2c{left:287.666692pt;}
.xa{left:296.411288pt;}
.x2f{left:298.288933pt;}
.x2e{left:310.646133pt;}
.x2d{left:337.347467pt;}
.xb{left:347.277328pt;}
.x9{left:358.227200pt;}
.x1e{left:396.108726pt;}
.xe{left:417.374013pt;}
.x26{left:436.724986pt;}
.x17{left:438.048597pt;}
.x11{left:456.054081pt;}
.x24{left:464.531754pt;}
.x10{left:480.382269pt;}
.x18{left:509.250114pt;}
.x20{left:526.292972pt;}
.x13{left:543.456158pt;}
.x25{left:550.785243pt;}
.x19{left:555.073305pt;}
.x15{left:559.689535pt;}
.x2a{left:564.026757pt;}
.x22{left:568.254720pt;}
.x28{left:572.550533pt;}
.x27{left:578.318539pt;}
.x29{left:579.525800pt;}
.x1d{left:594.737878pt;}
.x1b{left:600.448001pt;}
.x12{left:604.178177pt;}
.x14{left:606.048735pt;}
.x1f{left:607.098872pt;}
.xd{left:608.936613pt;}
.x16{left:624.021402pt;}
.xf{left:625.060601pt;}
.x1{left:637.427733pt;}
.xc{left:643.328619pt;}
.x21{left:645.888330pt;}
.x1a{left:648.404285pt;}
.x23{left:658.533737pt;}
.x1c{left:667.372395pt;}
}




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