
    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_bfccaf5cba7eba4dd275dd8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_51a3ed97ce67b5d410700631.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_c31522cf5225479466bbfc5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_0d0793852f0a374d9be657a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_ee581e36c2390a05bd44b72d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890137;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_1ce71b352c4538563b7a010e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115723;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_f630dbc34855b89da61e6a18.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084473;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_fa37b3df8d98b6fa9bfba0b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084473;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.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:-93.060000px;}
.v7{vertical-align:-87.420000px;}
.v3{vertical-align:-38.880000px;}
.v5{vertical-align:-12.960000px;}
.v6{vertical-align:-9.660000px;}
.v1{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.840000px;}
.ls13{letter-spacing:-2.124000px;}
.ls27{letter-spacing:-1.764000px;}
.ls3{letter-spacing:-1.602000px;}
.lsb{letter-spacing:-1.512000px;}
.ls1d{letter-spacing:-1.488000px;}
.ls25{letter-spacing:-1.314000px;}
.ls5{letter-spacing:-1.170000px;}
.ls2d{letter-spacing:-0.449400px;}
.ls8{letter-spacing:-0.367800px;}
.ls12{letter-spacing:-0.342600px;}
.ls4{letter-spacing:-0.340800px;}
.ls2{letter-spacing:-0.304200px;}
.ls29{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.238800px;}
.ls1c{letter-spacing:-0.224400px;}
.ls28{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180600px;}
.ls17{letter-spacing:-0.169200px;}
.ls16{letter-spacing:-0.092400px;}
.ls2a{letter-spacing:-0.059040px;}
.lse{letter-spacing:-0.041040px;}
.ls23{letter-spacing:-0.000435px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.053424px;}
.ls24{letter-spacing:0.054720px;}
.ls26{letter-spacing:0.060600px;}
.ls1e{letter-spacing:0.106800px;}
.ls20{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.177000px;}
.ls2c{letter-spacing:0.201000px;}
.ls19{letter-spacing:0.204600px;}
.ls0{letter-spacing:0.219600px;}
.ls2b{letter-spacing:0.222000px;}
.ls18{letter-spacing:0.233280px;}
.lsd{letter-spacing:0.252600px;}
.ls2e{letter-spacing:0.265800px;}
.ls1f{letter-spacing:0.279600px;}
.ls9{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.484000px;}
.ls22{letter-spacing:111.549600px;}
.ls21{letter-spacing:111.600000px;}
.ls2f{letter-spacing:119.916000px;}
.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;}
}
.ws17{word-spacing:-323.748000px;}
.ws41{word-spacing:-68.702400px;}
.ws3a{word-spacing:-62.435640px;}
.ws9{word-spacing:-62.375040px;}
.ws14{word-spacing:-49.982400px;}
.ws15{word-spacing:-49.801800px;}
.wse{word-spacing:-43.655040px;}
.wsb{word-spacing:-43.617600px;}
.ws12{word-spacing:-37.477440px;}
.ws30{word-spacing:-37.440000px;}
.ws3b{word-spacing:-35.979840px;}
.ws1a{word-spacing:-28.368000px;}
.ws18{word-spacing:-28.117440px;}
.ws10{word-spacing:-28.080000px;}
.ws19{word-spacing:-27.749640px;}
.ws3c{word-spacing:-26.316000px;}
.ws20{word-spacing:-24.897600px;}
.ws23{word-spacing:-21.939840px;}
.ws39{word-spacing:-21.902400px;}
.ws13{word-spacing:-20.732400px;}
.ws38{word-spacing:-20.588400px;}
.ws1d{word-spacing:-18.720000px;}
.ws3f{word-spacing:-17.222400px;}
.ws1c{word-spacing:-17.208000px;}
.ws6{word-spacing:-17.155440px;}
.ws40{word-spacing:-16.773000px;}
.ws0{word-spacing:-15.575040px;}
.ws2d{word-spacing:-13.726320px;}
.ws2a{word-spacing:-13.651320px;}
.ws2b{word-spacing:-13.455360px;}
.ws28{word-spacing:-13.446720px;}
.ws29{word-spacing:-13.104120px;}
.ws2c{word-spacing:-11.958720px;}
.ws2{word-spacing:-1.584864px;}
.ws24{word-spacing:-1.512000px;}
.ws25{word-spacing:-1.374048px;}
.ws1f{word-spacing:-1.240200px;}
.ws7{word-spacing:-1.116000px;}
.ws34{word-spacing:-1.044000px;}
.ws32{word-spacing:-0.912000px;}
.wsd{word-spacing:-0.813888px;}
.ws36{word-spacing:-0.720000px;}
.ws33{word-spacing:-0.516000px;}
.ws26{word-spacing:-0.468000px;}
.ws27{word-spacing:-0.432000px;}
.ws35{word-spacing:-0.396000px;}
.ws2f{word-spacing:-0.324000px;}
.ws22{word-spacing:-0.311040px;}
.ws31{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.192480px;}
.ws16{word-spacing:-0.167760px;}
.wsc{word-spacing:-0.079440px;}
.ws8{word-spacing:0.000000px;}
.ws2e{word-spacing:0.036000px;}
.ws44{word-spacing:0.078336px;}
.ws4{word-spacing:0.364608px;}
.ws42{word-spacing:0.420000px;}
.ws1{word-spacing:0.501552px;}
.ws37{word-spacing:0.504000px;}
.ws11{word-spacing:0.576000px;}
.ws21{word-spacing:0.626160px;}
.ws1e{word-spacing:0.650160px;}
.ws5{word-spacing:0.687936px;}
.ws45{word-spacing:0.840000px;}
.ws3d{word-spacing:1.008000px;}
.ws3{word-spacing:1.138104px;}
.wsf{word-spacing:37.152000px;}
.ws3e{word-spacing:2146.753440px;}
.ws43{word-spacing:2419.656000px;}
.ws1b{word-spacing:2649.360000px;}
._8{margin-left:-13.456800px;}
._13{margin-left:-11.478240px;}
._6{margin-left:-9.905040px;}
._10{margin-left:-7.747920px;}
._2{margin-left:-5.034960px;}
._4{margin-left:-3.522960px;}
._5{margin-left:-2.520000px;}
._1{margin-left:-1.254960px;}
._0{width:1.135440px;}
._3{width:2.329680px;}
._9{width:3.774384px;}
._7{width:20.174400px;}
._d{width:24.225552px;}
._b{width:26.892000px;}
._a{width:35.481360px;}
._f{width:38.632560px;}
._15{width:40.005360px;}
._e{width:64.011360px;}
._c{width:413.986176px;}
._11{width:763.255920px;}
._12{width:2015.484000px;}
._14{width:2111.689680px;}
.fc11{color:rgb(112,173,71);}
.fc10{color:rgb(81,176,47);}
.fcf{color:rgb(166,166,166);}
.fce{color:rgb(47,153,255);}
.fcd{color:rgb(255,0,0);}
.fc0{color:rgb(114,120,121);}
.fc2{color:rgb(108,175,105);}
.fc9{color:rgb(0,101,198);}
.fca{color:rgb(0,69,136);}
.fcc{color:transparent;}
.fc3{color:rgb(0,158,224);}
.fc1{color:rgb(6,69,105);}
.fc4{color:rgb(85,90,91);}
.fc5{color:rgb(0,48,94);}
.fc6{color:rgb(255,255,255);}
.fc7{color:rgb(255,192,0);}
.fc8{color:rgb(32,33,34);}
.fcb{color:rgb(192,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:59.904000px;}
.fs5{font-size:66.240000px;}
.fs18{font-size:66.384000px;}
.fs13{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fse{font-size:84.240000px;}
.fs16{font-size:84.384000px;}
.fs14{font-size:95.760000px;}
.fs15{font-size:95.904000px;}
.fsc{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs1c{font-size:120.240000px;}
.fs20{font-size:120.384000px;}
.fs17{font-size:131.760000px;}
.fs1a{font-size:138.240000px;}
.fs1b{font-size:138.384000px;}
.fsb{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs1d{font-size:156.384000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs8{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.fs1f{font-size:216.000000px;}
.fs19{font-size:216.144000px;}
.fs2{font-size:239.760000px;}
.fs7{font-size:239.904000px;}
.fs1e{font-size:264.240000px;}
.fsf{font-size:264.384000px;}
.fs12{font-size:288.000000px;}
.fs10{font-size:324.000000px;}
.yc7{bottom:-250.740000px;}
.yc6{bottom:-218.340000px;}
.y36{bottom:-143.820000px;}
.y35{bottom:-111.420000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:8.280000px;}
.y3d{bottom:9.180000px;}
.yd2{bottom:12.852000px;}
.y51{bottom:12.960000px;}
.y4{bottom:14.328000px;}
.y9e{bottom:15.552000px;}
.ya9{bottom:18.720000px;}
.ye3{bottom:20.520000px;}
.ye6{bottom:21.060000px;}
.y33{bottom:21.132000px;}
.ye9{bottom:21.384000px;}
.yba{bottom:29.880000px;}
.yb7{bottom:30.528000px;}
.yb0{bottom:30.708000px;}
.y3c{bottom:30.780000px;}
.y28{bottom:31.896000px;}
.y3{bottom:32.364000px;}
.yd1{bottom:32.652000px;}
.y2e{bottom:34.776000px;}
.y86{bottom:39.348000px;}
.y9d{bottom:40.752000px;}
.y5{bottom:42.732000px;}
.ye8{bottom:50.184000px;}
.y5f{bottom:50.292000px;}
.y2{bottom:50.364000px;}
.ya8{bottom:51.120000px;}
.yb9{bottom:51.480000px;}
.yaf{bottom:52.308000px;}
.y3b{bottom:52.380000px;}
.yd0{bottom:52.452000px;}
.ye2{bottom:52.920000px;}
.ye5{bottom:53.460000px;}
.y32{bottom:53.568000px;}
.yb6{bottom:55.728000px;}
.y27{bottom:57.096000px;}
.y34{bottom:64.296000px;}
.y9c{bottom:65.952000px;}
.y1{bottom:68.364000px;}
.y85{bottom:71.748000px;}
.ycf{bottom:72.252000px;}
.yb8{bottom:73.080000px;}
.yb{bottom:73.116000px;}
.y3a{bottom:73.980000px;}
.ycd{bottom:82.584000px;}
.y57{bottom:88.920000px;}
.ycc{bottom:100.008000px;}
.y53{bottom:101.808000px;}
.y84{bottom:104.148000px;}
.yc9{bottom:107.028000px;}
.yc8{bottom:107.784000px;}
.y8{bottom:115.740000px;}
.y7a{bottom:116.172000px;}
.y56{bottom:121.320000px;}
.y98{bottom:131.184000px;}
.y96{bottom:133.596000px;}
.y52{bottom:134.208000px;}
.y79{bottom:138.852000px;}
.y83{bottom:146.268000px;}
.y5c{bottom:151.275000px;}
.ya7{bottom:151.410000px;}
.y23{bottom:151.455000px;}
.y55{bottom:153.720000px;}
.yc3{bottom:155.160000px;}
.y21{bottom:157.110000px;}
.y78{bottom:161.715000px;}
.y97{bottom:163.590000px;}
.y95{bottom:165.990000px;}
.y4e{bottom:170.895000px;}
.y45{bottom:176.835000px;}
.y8a{bottom:179.535000px;}
.y82{bottom:183.525000px;}
.y5b{bottom:183.705000px;}
.y77{bottom:184.395000px;}
.y54{bottom:186.150000px;}
.y37{bottom:186.270000px;}
.ya6{bottom:192.855000px;}
.yc2{bottom:205.560000px;}
.y44{bottom:205.635000px;}
.y76{bottom:207.255000px;}
.ye1{bottom:207.795000px;}
.y89{bottom:214.455000px;}
.y93{bottom:214.635000px;}
.y5a{bottom:216.105000px;}
.yb5{bottom:219.165000px;}
.y81{bottom:220.785000px;}
.yb4{bottom:222.195000px;}
.y4a{bottom:224.565000px;}
.y75{bottom:229.965000px;}
.ya5{bottom:234.255000px;}
.y43{bottom:234.435000px;}
.y26{bottom:237.315000px;}
.y9a{bottom:244.080000px;}
.y74{bottom:252.825000px;}
.yc1{bottom:255.990000px;}
.y49{bottom:257.010000px;}
.y80{bottom:258.090000px;}
.y42{bottom:263.235000px;}
.ye0{bottom:267.375000px;}
.y59{bottom:271.770000px;}
.yd4{bottom:272.910000px;}
.y73{bottom:275.505000px;}
.y92{bottom:279.435000px;}
.yda{bottom:279.795000px;}
.y25{bottom:280.515000px;}
.y48{bottom:289.410000px;}
.y4c{bottom:289.440000px;}
.y7f{bottom:295.350000px;}
.y72{bottom:298.365000px;}
.yae{bottom:299.130000px;}
.ydf{bottom:303.375000px;}
.y58{bottom:304.170000px;}
.y1c{bottom:308.490000px;}
.y2c{bottom:310.425000px;}
.y17{bottom:311.040000px;}
.y91{bottom:311.835000px;}
.y12{bottom:312.045000px;}
.y99{bottom:313.770000px;}
.ybd{bottom:314.535000px;}
.y7{bottom:316.110000px;}
.ybe{bottom:316.770000px;}
.y20{bottom:317.850000px;}
.y4b{bottom:318.240000px;}
.y4d{bottom:318.930000px;}
.yb3{bottom:319.830000px;}
.y71{bottom:321.045000px;}
.y47{bottom:321.810000px;}
.y41{bottom:322.275000px;}
.yd9{bottom:322.995000px;}
.y24{bottom:323.715000px;}
.y8e{bottom:329.250000px;}
.y7e{bottom:330.270000px;}
.yad{bottom:342.360000px;}
.yce{bottom:342.390000px;}
.y70{bottom:343.905000px;}
.yd3{bottom:344.190000px;}
.y90{bottom:344.265000px;}
.ycb{bottom:348.150000px;}
.y1f{bottom:350.250000px;}
.y40{bottom:351.075000px;}
.ya4{bottom:353.085000px;}
.y88{bottom:355.170000px;}
.yde{bottom:357.405000px;}
.y1a{bottom:359.460000px;}
.y16{bottom:361.470000px;}
.y8d{bottom:361.650000px;}
.y11{bottom:362.445000px;}
.yd8{bottom:366.225000px;}
.y6f{bottom:366.585000px;}
.y8f{bottom:376.665000px;}
.y3f{bottom:379.875000px;}
.ye4{bottom:384.225000px;}
.yac{bottom:385.560000px;}
.y6{bottom:385.770000px;}
.y2d{bottom:387.825000px;}
.y6e{bottom:389.490000px;}
.y2a{bottom:393.405000px;}
.y8c{bottom:394.050000px;}
.ya3{bottom:394.485000px;}
.yca{bottom:394.770000px;}
.ybf{bottom:402.450000px;}
.y3e{bottom:408.675000px;}
.y15{bottom:411.870000px;}
.y6d{bottom:412.170000px;}
.y10{bottom:412.890000px;}
.y7d{bottom:420.015000px;}
.yd7{bottom:427.425000px;}
.yab{bottom:428.760000px;}
.y6c{bottom:435.030000px;}
.ya2{bottom:435.885000px;}
.y46{bottom:438.450000px;}
.ydd{bottom:447.405000px;}
.y87{bottom:452.415000px;}
.y6b{bottom:457.710000px;}
.y94{bottom:457.890000px;}
.y14{bottom:462.270000px;}
.yd5{bottom:462.930000px;}
.yf{bottom:463.290000px;}
.y1b{bottom:468.255000px;}
.yd6{bottom:470.625000px;}
.yaa{bottom:471.960000px;}
.y1e{bottom:475.920000px;}
.ya1{bottom:477.285000px;}
.yb2{bottom:478.620000px;}
.y6a{bottom:480.570000px;}
.y7c{bottom:484.815000px;}
.y5e{bottom:497.055000px;}
.ydc{bottom:501.405000px;}
.y2b{bottom:502.635000px;}
.y69{bottom:503.250000px;}
.y31{bottom:506.625000px;}
.y1d{bottom:508.320000px;}
.y13{bottom:512.715000px;}
.ye{bottom:513.690000px;}
.y7b{bottom:517.215000px;}
.y68{bottom:526.110000px;}
.y22{bottom:527.400000px;}
.y5d{bottom:529.455000px;}
.y8b{bottom:531.870000px;}
.yc5{bottom:533.010000px;}
.yb1{bottom:536.790000px;}
.ydb{bottom:537.450000px;}
.y67{bottom:548.820000px;}
.y30{bottom:549.870000px;}
.y38{bottom:558.570000px;}
.y39{bottom:561.810000px;}
.y19{bottom:563.475000px;}
.ybc{bottom:565.530000px;}
.y66{bottom:571.680000px;}
.ye7{bottom:575.070000px;}
.yc4{bottom:583.410000px;}
.y2f{bottom:593.070000px;}
.y65{bottom:594.360000px;}
.ya0{bottom:596.130000px;}
.y50{bottom:599.370000px;}
.ya{bottom:599.835000px;}
.yc0{bottom:610.890000px;}
.y64{bottom:617.220000px;}
.y9{bottom:619.635000px;}
.yd{bottom:624.930000px;}
.y18{bottom:636.270000px;}
.y9f{bottom:637.530000px;}
.y4f{bottom:638.970000px;}
.y63{bottom:662.760000px;}
.y62{bottom:685.440000px;}
.y29{bottom:703.980000px;}
.yc{bottom:709.560000px;}
.y9b{bottom:715.140000px;}
.y61{bottom:731.010000px;}
.y60{bottom:776.550000px;}
.h7{height:41.317383px;}
.h1{height:45.724570px;}
.h2{height:45.834750px;}
.h6{height:50.682656px;}
.h16{height:55.089844px;}
.h5{height:55.200023px;}
.h1b{height:57.410156px;}
.h1c{height:57.534961px;}
.hf{height:64.455117px;}
.h19{height:64.565297px;}
.h17{height:73.269492px;}
.h18{height:73.379672px;}
.hd{height:82.634766px;}
.h14{height:82.744945px;}
.h1f{height:86.474766px;}
.h23{height:92.000039px;}
.h29{height:92.110219px;}
.h1d{height:93.603516px;}
.h1e{height:93.728320px;}
.h1a{height:100.814414px;}
.h21{height:105.772500px;}
.h22{height:105.882680px;}
.hc{height:110.179688px;}
.he{height:110.289867px;}
.h28{height:114.869906px;}
.h12{height:116.481797px;}
.h11{height:116.581781px;}
.h25{height:118.809516px;}
.h24{height:119.655141px;}
.ha{height:128.359336px;}
.hb{height:128.469516px;}
.h9{height:147.089883px;}
.h4{height:147.200063px;}
.h27{height:165.269531px;}
.h20{height:165.379711px;}
.h3{height:183.449180px;}
.h8{height:183.559359px;}
.h26{height:202.179727px;}
.h10{height:202.289906px;}
.h15{height:220.359375px;}
.h13{height:291.568359px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x77{left:-309.270021px;}
.x28{left:-33.912021px;}
.x0{left:0.000000px;}
.x79{left:20.375979px;}
.x4e{left:26.027979px;}
.x6e{left:29.591979px;}
.x23{left:32.651979px;}
.x2c{left:37.043979px;}
.x66{left:41.579979px;}
.x2d{left:42.803979px;}
.x67{left:44.819979px;}
.x2a{left:47.591979px;}
.x68{left:50.039979px;}
.x3{left:51.659979px;}
.x4{left:53.531979px;}
.x51{left:60.191979px;}
.x5f{left:61.559979px;}
.x4f{left:66.527979px;}
.xa{left:90.935979px;}
.x2e{left:92.159979px;}
.x9{left:94.715979px;}
.x6c{left:98.711979px;}
.x5e{left:100.079979px;}
.x7{left:103.427979px;}
.x6{left:105.299979px;}
.x52{left:110.627979px;}
.x65{left:111.959979px;}
.x6d{left:116.531979px;}
.x50{left:120.527979px;}
.xb{left:131.255979px;}
.x7f{left:143.927979px;}
.x8{left:168.329979px;}
.x1e{left:197.354979px;}
.x1{left:215.744979px;}
.x71{left:258.839979px;}
.x3a{left:291.749979px;}
.x37{left:295.844979px;}
.x38{left:334.724979px;}
.x54{left:344.909979px;}
.x83{left:349.454979px;}
.x2b{left:358.589979px;}
.x5{left:360.104979px;}
.x53{left:362.009979px;}
.x80{left:364.649979px;}
.x82{left:370.829979px;}
.x55{left:372.809979px;}
.x81{left:374.429979px;}
.x62{left:377.609979px;}
.x3c{left:378.644979px;}
.x78{left:380.009979px;}
.x27{left:381.344979px;}
.x48{left:390.629979px;}
.x26{left:401.759979px;}
.x7e{left:403.589979px;}
.x5d{left:411.479979px;}
.x6f{left:420.269979px;}
.x22{left:422.204979px;}
.x1f{left:426.569979px;}
.xd{left:436.319979px;}
.x64{left:437.684979px;}
.xe{left:443.339979px;}
.x49{left:446.324979px;}
.x69{left:455.069979px;}
.x29{left:482.429979px;}
.x19{left:484.994979px;}
.xc{left:499.529979px;}
.x4c{left:503.489979px;}
.x25{left:514.544979px;}
.x42{left:525.494979px;}
.x70{left:529.049979px;}
.x41{left:539.564979px;}
.x4d{left:560.054979px;}
.x1a{left:564.689979px;}
.x7a{left:570.029979px;}
.x3d{left:606.884979px;}
.x3e{left:638.249979px;}
.x7c{left:691.019979px;}
.x63{left:722.519979px;}
.x10{left:725.399979px;}
.x11{left:738.539979px;}
.xf{left:746.099979px;}
.x57{left:766.109979px;}
.x13{left:768.419979px;}
.x61{left:785.414979px;}
.x4b{left:790.814979px;}
.x4a{left:794.234979px;}
.x21{left:810.329979px;}
.x12{left:813.449979px;}
.x43{left:816.479979px;}
.x60{left:823.934979px;}
.x56{left:826.409979px;}
.x20{left:838.409979px;}
.x39{left:853.949979px;}
.x31{left:861.194979px;}
.x24{left:862.274979px;}
.x2f{left:866.054979px;}
.x30{left:871.814979px;}
.x1c{left:891.029979px;}
.x32{left:921.164979px;}
.x1b{left:923.474979px;}
.x3b{left:990.539979px;}
.x2{left:998.999979px;}
.x7d{left:1015.304979px;}
.x6b{left:1019.849979px;}
.x72{left:1036.769979px;}
.x59{left:1054.769979px;}
.x5a{left:1057.289979px;}
.x46{left:1067.579979px;}
.x58{left:1072.229979px;}
.x47{left:1076.549979px;}
.x45{left:1085.579979px;}
.x5b{left:1086.989979px;}
.x1d{left:1088.489979px;}
.x75{left:1090.769979px;}
.x44{left:1102.499979px;}
.x5c{left:1108.769979px;}
.x17{left:1110.164979px;}
.x7b{left:1113.014979px;}
.x14{left:1120.109979px;}
.x16{left:1126.229979px;}
.x76{left:1129.289979px;}
.x15{left:1151.609979px;}
.x74{left:1157.474979px;}
.x3f{left:1160.999979px;}
.x18{left:1180.949979px;}
.x34{left:1195.889979px;}
.x73{left:1212.404979px;}
.x40{left:1214.279979px;}
.x35{left:1225.589979px;}
.x6a{left:1237.889979px;}
.x36{left:1254.569979px;}
.x33{left:1260.749979px;}
@media print{
.v2{vertical-align:-82.720000pt;}
.v7{vertical-align:-77.706667pt;}
.v3{vertical-align:-34.560000pt;}
.v5{vertical-align:-11.520000pt;}
.v6{vertical-align:-8.586667pt;}
.v1{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.413333pt;}
.ls13{letter-spacing:-1.888000pt;}
.ls27{letter-spacing:-1.568000pt;}
.ls3{letter-spacing:-1.424000pt;}
.lsb{letter-spacing:-1.344000pt;}
.ls1d{letter-spacing:-1.322667pt;}
.ls25{letter-spacing:-1.168000pt;}
.ls5{letter-spacing:-1.040000pt;}
.ls2d{letter-spacing:-0.399467pt;}
.ls8{letter-spacing:-0.326933pt;}
.ls12{letter-spacing:-0.304533pt;}
.ls4{letter-spacing:-0.302933pt;}
.ls2{letter-spacing:-0.270400pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.212267pt;}
.ls1c{letter-spacing:-0.199467pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160533pt;}
.ls17{letter-spacing:-0.150400pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls2a{letter-spacing:-0.052480pt;}
.lse{letter-spacing:-0.036480pt;}
.ls23{letter-spacing:-0.000387pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.047488pt;}
.ls24{letter-spacing:0.048640pt;}
.ls26{letter-spacing:0.053867pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls20{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.157333pt;}
.ls2c{letter-spacing:0.178667pt;}
.ls19{letter-spacing:0.181867pt;}
.ls0{letter-spacing:0.195200pt;}
.ls2b{letter-spacing:0.197333pt;}
.ls18{letter-spacing:0.207360pt;}
.lsd{letter-spacing:0.224533pt;}
.ls2e{letter-spacing:0.236267pt;}
.ls1f{letter-spacing:0.248533pt;}
.ls9{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:2.208000pt;}
.ls22{letter-spacing:99.155200pt;}
.ls21{letter-spacing:99.200000pt;}
.ls2f{letter-spacing:106.592000pt;}
.ws17{word-spacing:-287.776000pt;}
.ws41{word-spacing:-61.068800pt;}
.ws3a{word-spacing:-55.498347pt;}
.ws9{word-spacing:-55.444480pt;}
.ws14{word-spacing:-44.428800pt;}
.ws15{word-spacing:-44.268267pt;}
.wse{word-spacing:-38.804480pt;}
.wsb{word-spacing:-38.771200pt;}
.ws12{word-spacing:-33.313280pt;}
.ws30{word-spacing:-33.280000pt;}
.ws3b{word-spacing:-31.982080pt;}
.ws1a{word-spacing:-25.216000pt;}
.ws18{word-spacing:-24.993280pt;}
.ws10{word-spacing:-24.960000pt;}
.ws19{word-spacing:-24.666347pt;}
.ws3c{word-spacing:-23.392000pt;}
.ws20{word-spacing:-22.131200pt;}
.ws23{word-spacing:-19.502080pt;}
.ws39{word-spacing:-19.468800pt;}
.ws13{word-spacing:-18.428800pt;}
.ws38{word-spacing:-18.300800pt;}
.ws1d{word-spacing:-16.640000pt;}
.ws3f{word-spacing:-15.308800pt;}
.ws1c{word-spacing:-15.296000pt;}
.ws6{word-spacing:-15.249280pt;}
.ws40{word-spacing:-14.909333pt;}
.ws0{word-spacing:-13.844480pt;}
.ws2d{word-spacing:-12.201173pt;}
.ws2a{word-spacing:-12.134507pt;}
.ws2b{word-spacing:-11.960320pt;}
.ws28{word-spacing:-11.952640pt;}
.ws29{word-spacing:-11.648107pt;}
.ws2c{word-spacing:-10.629973pt;}
.ws2{word-spacing:-1.408768pt;}
.ws24{word-spacing:-1.344000pt;}
.ws25{word-spacing:-1.221376pt;}
.ws1f{word-spacing:-1.102400pt;}
.ws7{word-spacing:-0.992000pt;}
.ws34{word-spacing:-0.928000pt;}
.ws32{word-spacing:-0.810667pt;}
.wsd{word-spacing:-0.723456pt;}
.ws36{word-spacing:-0.640000pt;}
.ws33{word-spacing:-0.458667pt;}
.ws26{word-spacing:-0.416000pt;}
.ws27{word-spacing:-0.384000pt;}
.ws35{word-spacing:-0.352000pt;}
.ws2f{word-spacing:-0.288000pt;}
.ws22{word-spacing:-0.276480pt;}
.ws31{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.171093pt;}
.ws16{word-spacing:-0.149120pt;}
.wsc{word-spacing:-0.070613pt;}
.ws8{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.032000pt;}
.ws44{word-spacing:0.069632pt;}
.ws4{word-spacing:0.324096pt;}
.ws42{word-spacing:0.373333pt;}
.ws1{word-spacing:0.445824pt;}
.ws37{word-spacing:0.448000pt;}
.ws11{word-spacing:0.512000pt;}
.ws21{word-spacing:0.556587pt;}
.ws1e{word-spacing:0.577920pt;}
.ws5{word-spacing:0.611499pt;}
.ws45{word-spacing:0.746667pt;}
.ws3d{word-spacing:0.896000pt;}
.ws3{word-spacing:1.011648pt;}
.wsf{word-spacing:33.024000pt;}
.ws3e{word-spacing:1908.225280pt;}
.ws43{word-spacing:2150.805333pt;}
.ws1b{word-spacing:2354.986667pt;}
._8{margin-left:-11.961600pt;}
._13{margin-left:-10.202880pt;}
._6{margin-left:-8.804480pt;}
._10{margin-left:-6.887040pt;}
._2{margin-left:-4.475520pt;}
._4{margin-left:-3.131520pt;}
._5{margin-left:-2.240000pt;}
._1{margin-left:-1.115520pt;}
._0{width:1.009280pt;}
._3{width:2.070827pt;}
._9{width:3.355008pt;}
._7{width:17.932800pt;}
._d{width:21.533824pt;}
._b{width:23.904000pt;}
._a{width:31.538987pt;}
._f{width:34.340053pt;}
._15{width:35.560320pt;}
._e{width:56.898987pt;}
._c{width:367.987712pt;}
._11{width:678.449707pt;}
._12{width:1791.541333pt;}
._14{width:1877.057493pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:53.248000pt;}
.fs5{font-size:58.880000pt;}
.fs18{font-size:59.008000pt;}
.fs13{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fse{font-size:74.880000pt;}
.fs16{font-size:75.008000pt;}
.fs14{font-size:85.120000pt;}
.fs15{font-size:85.248000pt;}
.fsc{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs1c{font-size:106.880000pt;}
.fs20{font-size:107.008000pt;}
.fs17{font-size:117.120000pt;}
.fs1a{font-size:122.880000pt;}
.fs1b{font-size:123.008000pt;}
.fsb{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs1d{font-size:139.008000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs8{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.fs1f{font-size:192.000000pt;}
.fs19{font-size:192.128000pt;}
.fs2{font-size:213.120000pt;}
.fs7{font-size:213.248000pt;}
.fs1e{font-size:234.880000pt;}
.fsf{font-size:235.008000pt;}
.fs12{font-size:256.000000pt;}
.fs10{font-size:288.000000pt;}
.yc7{bottom:-222.880000pt;}
.yc6{bottom:-194.080000pt;}
.y36{bottom:-127.840000pt;}
.y35{bottom:-99.040000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:7.360000pt;}
.y3d{bottom:8.160000pt;}
.yd2{bottom:11.424000pt;}
.y51{bottom:11.520000pt;}
.y4{bottom:12.736000pt;}
.y9e{bottom:13.824000pt;}
.ya9{bottom:16.640000pt;}
.ye3{bottom:18.240000pt;}
.ye6{bottom:18.720000pt;}
.y33{bottom:18.784000pt;}
.ye9{bottom:19.008000pt;}
.yba{bottom:26.560000pt;}
.yb7{bottom:27.136000pt;}
.yb0{bottom:27.296000pt;}
.y3c{bottom:27.360000pt;}
.y28{bottom:28.352000pt;}
.y3{bottom:28.768000pt;}
.yd1{bottom:29.024000pt;}
.y2e{bottom:30.912000pt;}
.y86{bottom:34.976000pt;}
.y9d{bottom:36.224000pt;}
.y5{bottom:37.984000pt;}
.ye8{bottom:44.608000pt;}
.y5f{bottom:44.704000pt;}
.y2{bottom:44.768000pt;}
.ya8{bottom:45.440000pt;}
.yb9{bottom:45.760000pt;}
.yaf{bottom:46.496000pt;}
.y3b{bottom:46.560000pt;}
.yd0{bottom:46.624000pt;}
.ye2{bottom:47.040000pt;}
.ye5{bottom:47.520000pt;}
.y32{bottom:47.616000pt;}
.yb6{bottom:49.536000pt;}
.y27{bottom:50.752000pt;}
.y34{bottom:57.152000pt;}
.y9c{bottom:58.624000pt;}
.y1{bottom:60.768000pt;}
.y85{bottom:63.776000pt;}
.ycf{bottom:64.224000pt;}
.yb8{bottom:64.960000pt;}
.yb{bottom:64.992000pt;}
.y3a{bottom:65.760000pt;}
.ycd{bottom:73.408000pt;}
.y57{bottom:79.040000pt;}
.ycc{bottom:88.896000pt;}
.y53{bottom:90.496000pt;}
.y84{bottom:92.576000pt;}
.yc9{bottom:95.136000pt;}
.yc8{bottom:95.808000pt;}
.y8{bottom:102.880000pt;}
.y7a{bottom:103.264000pt;}
.y56{bottom:107.840000pt;}
.y98{bottom:116.608000pt;}
.y96{bottom:118.752000pt;}
.y52{bottom:119.296000pt;}
.y79{bottom:123.424000pt;}
.y83{bottom:130.016000pt;}
.y5c{bottom:134.466667pt;}
.ya7{bottom:134.586667pt;}
.y23{bottom:134.626667pt;}
.y55{bottom:136.640000pt;}
.yc3{bottom:137.920000pt;}
.y21{bottom:139.653333pt;}
.y78{bottom:143.746667pt;}
.y97{bottom:145.413333pt;}
.y95{bottom:147.546667pt;}
.y4e{bottom:151.906667pt;}
.y45{bottom:157.186667pt;}
.y8a{bottom:159.586667pt;}
.y82{bottom:163.133333pt;}
.y5b{bottom:163.293333pt;}
.y77{bottom:163.906667pt;}
.y54{bottom:165.466667pt;}
.y37{bottom:165.573333pt;}
.ya6{bottom:171.426667pt;}
.yc2{bottom:182.720000pt;}
.y44{bottom:182.786667pt;}
.y76{bottom:184.226667pt;}
.ye1{bottom:184.706667pt;}
.y89{bottom:190.626667pt;}
.y93{bottom:190.786667pt;}
.y5a{bottom:192.093333pt;}
.yb5{bottom:194.813333pt;}
.y81{bottom:196.253333pt;}
.yb4{bottom:197.506667pt;}
.y4a{bottom:199.613333pt;}
.y75{bottom:204.413333pt;}
.ya5{bottom:208.226667pt;}
.y43{bottom:208.386667pt;}
.y26{bottom:210.946667pt;}
.y9a{bottom:216.960000pt;}
.y74{bottom:224.733333pt;}
.yc1{bottom:227.546667pt;}
.y49{bottom:228.453333pt;}
.y80{bottom:229.413333pt;}
.y42{bottom:233.986667pt;}
.ye0{bottom:237.666667pt;}
.y59{bottom:241.573333pt;}
.yd4{bottom:242.586667pt;}
.y73{bottom:244.893333pt;}
.y92{bottom:248.386667pt;}
.yda{bottom:248.706667pt;}
.y25{bottom:249.346667pt;}
.y48{bottom:257.253333pt;}
.y4c{bottom:257.280000pt;}
.y7f{bottom:262.533333pt;}
.y72{bottom:265.213333pt;}
.yae{bottom:265.893333pt;}
.ydf{bottom:269.666667pt;}
.y58{bottom:270.373333pt;}
.y1c{bottom:274.213333pt;}
.y2c{bottom:275.933333pt;}
.y17{bottom:276.480000pt;}
.y91{bottom:277.186667pt;}
.y12{bottom:277.373333pt;}
.y99{bottom:278.906667pt;}
.ybd{bottom:279.586667pt;}
.y7{bottom:280.986667pt;}
.ybe{bottom:281.573333pt;}
.y20{bottom:282.533333pt;}
.y4b{bottom:282.880000pt;}
.y4d{bottom:283.493333pt;}
.yb3{bottom:284.293333pt;}
.y71{bottom:285.373333pt;}
.y47{bottom:286.053333pt;}
.y41{bottom:286.466667pt;}
.yd9{bottom:287.106667pt;}
.y24{bottom:287.746667pt;}
.y8e{bottom:292.666667pt;}
.y7e{bottom:293.573333pt;}
.yad{bottom:304.320000pt;}
.yce{bottom:304.346667pt;}
.y70{bottom:305.693333pt;}
.yd3{bottom:305.946667pt;}
.y90{bottom:306.013333pt;}
.ycb{bottom:309.466667pt;}
.y1f{bottom:311.333333pt;}
.y40{bottom:312.066667pt;}
.ya4{bottom:313.853333pt;}
.y88{bottom:315.706667pt;}
.yde{bottom:317.693333pt;}
.y1a{bottom:319.520000pt;}
.y16{bottom:321.306667pt;}
.y8d{bottom:321.466667pt;}
.y11{bottom:322.173333pt;}
.yd8{bottom:325.533333pt;}
.y6f{bottom:325.853333pt;}
.y8f{bottom:334.813333pt;}
.y3f{bottom:337.666667pt;}
.ye4{bottom:341.533333pt;}
.yac{bottom:342.720000pt;}
.y6{bottom:342.906667pt;}
.y2d{bottom:344.733333pt;}
.y6e{bottom:346.213333pt;}
.y2a{bottom:349.693333pt;}
.y8c{bottom:350.266667pt;}
.ya3{bottom:350.653333pt;}
.yca{bottom:350.906667pt;}
.ybf{bottom:357.733333pt;}
.y3e{bottom:363.266667pt;}
.y15{bottom:366.106667pt;}
.y6d{bottom:366.373333pt;}
.y10{bottom:367.013333pt;}
.y7d{bottom:373.346667pt;}
.yd7{bottom:379.933333pt;}
.yab{bottom:381.120000pt;}
.y6c{bottom:386.693333pt;}
.ya2{bottom:387.453333pt;}
.y46{bottom:389.733333pt;}
.ydd{bottom:397.693333pt;}
.y87{bottom:402.146667pt;}
.y6b{bottom:406.853333pt;}
.y94{bottom:407.013333pt;}
.y14{bottom:410.906667pt;}
.yd5{bottom:411.493333pt;}
.yf{bottom:411.813333pt;}
.y1b{bottom:416.226667pt;}
.yd6{bottom:418.333333pt;}
.yaa{bottom:419.520000pt;}
.y1e{bottom:423.040000pt;}
.ya1{bottom:424.253333pt;}
.yb2{bottom:425.440000pt;}
.y6a{bottom:427.173333pt;}
.y7c{bottom:430.946667pt;}
.y5e{bottom:441.826667pt;}
.ydc{bottom:445.693333pt;}
.y2b{bottom:446.786667pt;}
.y69{bottom:447.333333pt;}
.y31{bottom:450.333333pt;}
.y1d{bottom:451.840000pt;}
.y13{bottom:455.746667pt;}
.ye{bottom:456.613333pt;}
.y7b{bottom:459.746667pt;}
.y68{bottom:467.653333pt;}
.y22{bottom:468.800000pt;}
.y5d{bottom:470.626667pt;}
.y8b{bottom:472.773333pt;}
.yc5{bottom:473.786667pt;}
.yb1{bottom:477.146667pt;}
.ydb{bottom:477.733333pt;}
.y67{bottom:487.840000pt;}
.y30{bottom:488.773333pt;}
.y38{bottom:496.506667pt;}
.y39{bottom:499.386667pt;}
.y19{bottom:500.866667pt;}
.ybc{bottom:502.693333pt;}
.y66{bottom:508.160000pt;}
.ye7{bottom:511.173333pt;}
.yc4{bottom:518.586667pt;}
.y2f{bottom:527.173333pt;}
.y65{bottom:528.320000pt;}
.ya0{bottom:529.893333pt;}
.y50{bottom:532.773333pt;}
.ya{bottom:533.186667pt;}
.yc0{bottom:543.013333pt;}
.y64{bottom:548.640000pt;}
.y9{bottom:550.786667pt;}
.yd{bottom:555.493333pt;}
.y18{bottom:565.573333pt;}
.y9f{bottom:566.693333pt;}
.y4f{bottom:567.973333pt;}
.y63{bottom:589.120000pt;}
.y62{bottom:609.280000pt;}
.y29{bottom:625.760000pt;}
.yc{bottom:630.720000pt;}
.y9b{bottom:635.680000pt;}
.y61{bottom:649.786667pt;}
.y60{bottom:690.266667pt;}
.h7{height:36.726562pt;}
.h1{height:40.644063pt;}
.h2{height:40.742000pt;}
.h6{height:45.051250pt;}
.h16{height:48.968750pt;}
.h5{height:49.066687pt;}
.h1b{height:51.031250pt;}
.h1c{height:51.142187pt;}
.hf{height:57.293437pt;}
.h19{height:57.391375pt;}
.h17{height:65.128438pt;}
.h18{height:65.226375pt;}
.hd{height:73.453125pt;}
.h14{height:73.551063pt;}
.h1f{height:76.866458pt;}
.h23{height:81.777812pt;}
.h29{height:81.875750pt;}
.h1d{height:83.203125pt;}
.h1e{height:83.314062pt;}
.h1a{height:89.612812pt;}
.h21{height:94.020000pt;}
.h22{height:94.117938pt;}
.hc{height:97.937500pt;}
.he{height:98.035438pt;}
.h28{height:102.106583pt;}
.h12{height:103.539375pt;}
.h11{height:103.628250pt;}
.h25{height:105.608458pt;}
.h24{height:106.360125pt;}
.ha{height:114.097187pt;}
.hb{height:114.195125pt;}
.h9{height:130.746563pt;}
.h4{height:130.844500pt;}
.h27{height:146.906250pt;}
.h20{height:147.004187pt;}
.h3{height:163.065937pt;}
.h8{height:163.163875pt;}
.h26{height:179.715313pt;}
.h10{height:179.813250pt;}
.h15{height:195.875000pt;}
.h13{height:259.171875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x77{left:-274.906686pt;}
.x28{left:-30.144019pt;}
.x0{left:0.000000pt;}
.x79{left:18.111981pt;}
.x4e{left:23.135981pt;}
.x6e{left:26.303981pt;}
.x23{left:29.023981pt;}
.x2c{left:32.927981pt;}
.x66{left:36.959981pt;}
.x2d{left:38.047981pt;}
.x67{left:39.839981pt;}
.x2a{left:42.303981pt;}
.x68{left:44.479981pt;}
.x3{left:45.919981pt;}
.x4{left:47.583981pt;}
.x51{left:53.503981pt;}
.x5f{left:54.719981pt;}
.x4f{left:59.135981pt;}
.xa{left:80.831981pt;}
.x2e{left:81.919981pt;}
.x9{left:84.191981pt;}
.x6c{left:87.743981pt;}
.x5e{left:88.959981pt;}
.x7{left:91.935981pt;}
.x6{left:93.599981pt;}
.x52{left:98.335981pt;}
.x65{left:99.519981pt;}
.x6d{left:103.583981pt;}
.x50{left:107.135981pt;}
.xb{left:116.671981pt;}
.x7f{left:127.935981pt;}
.x8{left:149.626648pt;}
.x1e{left:175.426648pt;}
.x1{left:191.773314pt;}
.x71{left:230.079981pt;}
.x3a{left:259.333314pt;}
.x37{left:262.973314pt;}
.x38{left:297.533314pt;}
.x54{left:306.586648pt;}
.x83{left:310.626648pt;}
.x2b{left:318.746648pt;}
.x5{left:320.093314pt;}
.x53{left:321.786648pt;}
.x80{left:324.133314pt;}
.x82{left:329.626648pt;}
.x55{left:331.386648pt;}
.x81{left:332.826648pt;}
.x62{left:335.653314pt;}
.x3c{left:336.573314pt;}
.x78{left:337.786648pt;}
.x27{left:338.973314pt;}
.x48{left:347.226648pt;}
.x26{left:357.119981pt;}
.x7e{left:358.746648pt;}
.x5d{left:365.759981pt;}
.x6f{left:373.573314pt;}
.x22{left:375.293314pt;}
.x1f{left:379.173314pt;}
.xd{left:387.839981pt;}
.x64{left:389.053314pt;}
.xe{left:394.079981pt;}
.x49{left:396.733314pt;}
.x69{left:404.506648pt;}
.x29{left:428.826648pt;}
.x19{left:431.106648pt;}
.xc{left:444.026648pt;}
.x4c{left:447.546648pt;}
.x25{left:457.373314pt;}
.x42{left:467.106648pt;}
.x70{left:470.266648pt;}
.x41{left:479.613314pt;}
.x4d{left:497.826648pt;}
.x1a{left:501.946648pt;}
.x7a{left:506.693314pt;}
.x3d{left:539.453314pt;}
.x3e{left:567.333314pt;}
.x7c{left:614.239981pt;}
.x63{left:642.239981pt;}
.x10{left:644.799981pt;}
.x11{left:656.479981pt;}
.xf{left:663.199981pt;}
.x57{left:680.986648pt;}
.x13{left:683.039981pt;}
.x61{left:698.146648pt;}
.x4b{left:702.946648pt;}
.x4a{left:705.986648pt;}
.x21{left:720.293314pt;}
.x12{left:723.066648pt;}
.x43{left:725.759981pt;}
.x60{left:732.386648pt;}
.x56{left:734.586648pt;}
.x20{left:745.253314pt;}
.x39{left:759.066648pt;}
.x31{left:765.506648pt;}
.x24{left:766.466648pt;}
.x2f{left:769.826648pt;}
.x30{left:774.946648pt;}
.x1c{left:792.026648pt;}
.x32{left:818.813314pt;}
.x1b{left:820.866648pt;}
.x3b{left:880.479981pt;}
.x2{left:887.999981pt;}
.x7d{left:902.493314pt;}
.x6b{left:906.533314pt;}
.x72{left:921.573314pt;}
.x59{left:937.573314pt;}
.x5a{left:939.813314pt;}
.x46{left:948.959981pt;}
.x58{left:953.093314pt;}
.x47{left:956.933314pt;}
.x45{left:964.959981pt;}
.x5b{left:966.213314pt;}
.x1d{left:967.546648pt;}
.x75{left:969.573314pt;}
.x44{left:979.999981pt;}
.x5c{left:985.573314pt;}
.x17{left:986.813314pt;}
.x7b{left:989.346648pt;}
.x14{left:995.653314pt;}
.x16{left:1001.093314pt;}
.x76{left:1003.813314pt;}
.x15{left:1023.653314pt;}
.x74{left:1028.866648pt;}
.x3f{left:1031.999981pt;}
.x18{left:1049.733314pt;}
.x34{left:1063.013314pt;}
.x73{left:1077.693314pt;}
.x40{left:1079.359981pt;}
.x35{left:1089.413314pt;}
.x6a{left:1100.346648pt;}
.x36{left:1115.173314pt;}
.x33{left:1120.666648pt;}
}




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