
    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_7996a7a3dc19446f912b7b69.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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f60b2140e1a814a59f02b943.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_62379f633635c8a2bfdaa034.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_0076fca956c2ef6683e166b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854980;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_68008e096836ee66a617c865.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2205a92188d9ba388aeefb39.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_779e82dcb0dc1fd83230c406.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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:-4.740000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.936000px;}
.ls10{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-2.106000px;}
.lsb{letter-spacing:-1.908000px;}
.ls18{letter-spacing:-1.764000px;}
.ls2{letter-spacing:-1.512000px;}
.ls17{letter-spacing:-1.314000px;}
.ls12{letter-spacing:-0.417600px;}
.ls25{letter-spacing:-0.367800px;}
.lsd{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.342600px;}
.ls21{letter-spacing:-0.230400px;}
.ls1b{letter-spacing:-0.179400px;}
.ls2d{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.054720px;}
.ls23{letter-spacing:-0.027660px;}
.ls14{letter-spacing:-0.014820px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.015840px;}
.ls1e{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.054720px;}
.ls27{letter-spacing:0.057060px;}
.lsc{letter-spacing:0.060600px;}
.ls22{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.125280px;}
.ls2f{letter-spacing:0.126720px;}
.ls2a{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.196800px;}
.ls20{letter-spacing:0.201000px;}
.lse{letter-spacing:0.208200px;}
.ls1f{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.334200px;}
.ls2c{letter-spacing:0.360000px;}
.lsa{letter-spacing:23.796000px;}
.ls6{letter-spacing:39.945600px;}
.ls5{letter-spacing:39.996000px;}
.ls2b{letter-spacing:47.664000px;}
.ls8{letter-spacing:63.705600px;}
.ls7{letter-spacing:63.756000px;}
.ls1a{letter-spacing:86.349600px;}
.ls19{letter-spacing:86.400000px;}
.lsf{letter-spacing:97.509600px;}
.ls24{letter-spacing:103.284000px;}
.ls29{letter-spacing:103.308000px;}
.ls1c{letter-spacing:111.600000px;}
.ls2e{letter-spacing:113.616000px;}
.ls4{letter-spacing:119.865600px;}
.ls3{letter-spacing:119.916000px;}
.ls9{letter-spacing:122.184000px;}
.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;}
}
.ws13{word-spacing:-62.435640px;}
.wsc{word-spacing:-62.337600px;}
.ws1b{word-spacing:-56.160000px;}
.ws2c{word-spacing:-43.655040px;}
.ws2b{word-spacing:-43.617600px;}
.ws22{word-spacing:-39.830400px;}
.ws23{word-spacing:-39.744000px;}
.ws20{word-spacing:-37.728000px;}
.ws27{word-spacing:-37.674240px;}
.ws2f{word-spacing:-37.477440px;}
.ws6{word-spacing:-37.440000px;}
.ws33{word-spacing:-36.276600px;}
.ws1d{word-spacing:-35.979840px;}
.ws32{word-spacing:-35.942400px;}
.ws9{word-spacing:-34.257600px;}
.ws8{word-spacing:-31.299840px;}
.ws5{word-spacing:-31.262400px;}
.wsa{word-spacing:-29.615040px;}
.ws14{word-spacing:-28.117440px;}
.ws10{word-spacing:-28.080000px;}
.ws26{word-spacing:-27.749640px;}
.ws31{word-spacing:-26.981280px;}
.ws30{word-spacing:-26.621280px;}
.ws1e{word-spacing:-26.316000px;}
.ws12{word-spacing:-26.172000px;}
.wse{word-spacing:-24.897600px;}
.ws19{word-spacing:-24.842880px;}
.ws18{word-spacing:-22.791600px;}
.ws25{word-spacing:-21.939840px;}
.ws7{word-spacing:-21.902400px;}
.ws1c{word-spacing:-20.588400px;}
.ws17{word-spacing:-18.965640px;}
.ws3{word-spacing:-18.757440px;}
.ws15{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.360000px;}
.ws1{word-spacing:-17.208000px;}
.ws0{word-spacing:-15.537600px;}
.ws24{word-spacing:-1.339200px;}
.ws21{word-spacing:-1.252512px;}
.ws2{word-spacing:-1.116000px;}
.ws34{word-spacing:-1.047120px;}
.ws1a{word-spacing:-0.526788px;}
.ws2d{word-spacing:-0.364320px;}
.ws4{word-spacing:0.000000px;}
.ws28{word-spacing:0.507072px;}
.ws2e{word-spacing:1.007712px;}
.ws29{word-spacing:1.087248px;}
.ws11{word-spacing:1.296000px;}
.ws2a{word-spacing:1.543680px;}
.wsd{word-spacing:904.632000px;}
.wsb{word-spacing:996.617520px;}
.wsf{word-spacing:2537.655120px;}
.ws1f{word-spacing:3136.680000px;}
._c{margin-left:-4938.360000px;}
._11{margin-left:-19.672128px;}
._b{margin-left:-16.783200px;}
._10{margin-left:-12.475008px;}
._9{margin-left:-9.028800px;}
._f{margin-left:-6.912000px;}
._2{margin-left:-5.034960px;}
._7{margin-left:-3.847680px;}
._4{margin-left:-2.448000px;}
._5{margin-left:-1.254960px;}
._1{width:1.254960px;}
._3{width:2.397600px;}
._6{width:4.741920px;}
._0{width:16.753536px;}
._13{width:20.724960px;}
._d{width:26.496000px;}
._8{width:30.240960px;}
._e{width:39.480000px;}
._12{width:67.631520px;}
._a{width:1046.998320px;}
.fc11{color:rgb(255,192,0);}
.fc10{color:rgb(0,0,0);}
.fcf{color:rgb(255,0,255);}
.fce{color:rgb(47,153,255);}
.fcd{color:rgb(192,0,0);}
.fc0{color:rgb(114,120,121);}
.fcc{color:rgb(252,190,78);}
.fc2{color:rgb(166,166,166);}
.fca{color:rgb(255,255,255);}
.fcb{color:rgb(0,176,80);}
.fc3{color:rgb(81,176,47);}
.fc7{color:transparent;}
.fc8{color:rgb(108,175,105);}
.fc4{color:rgb(0,158,224);}
.fc1{color:rgb(6,69,105);}
.fc5{color:rgb(85,90,91);}
.fc9{color:rgb(63,41,104);}
.fc6{color:rgb(0,48,94);}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:59.904000px;}
.fs7{font-size:66.240000px;}
.fs1c{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fsc{font-size:84.240000px;}
.fs1b{font-size:84.384000px;}
.fs11{font-size:95.760000px;}
.fs21{font-size:95.904000px;}
.fs15{font-size:108.000000px;}
.fs16{font-size:108.144000px;}
.fsf{font-size:113.760000px;}
.fs10{font-size:113.904000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fse{font-size:131.760000px;}
.fs19{font-size:138.240000px;}
.fs1a{font-size:138.384000px;}
.fs4{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs12{font-size:167.760000px;}
.fs1e{font-size:167.904000px;}
.fs1d{font-size:192.240000px;}
.fs5{font-size:192.384000px;}
.fs17{font-size:216.000000px;}
.fs18{font-size:216.144000px;}
.fs2{font-size:239.760000px;}
.fs3{font-size:239.904000px;}
.fs20{font-size:264.384000px;}
.fs1f{font-size:396.144000px;}
.fs14{font-size:432.000000px;}
.fs13{font-size:432.144000px;}
.yba{bottom:-177.630000px;}
.yb9{bottom:-145.224000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.328000px;}
.yea{bottom:9.072000px;}
.y5c{bottom:9.144000px;}
.y76{bottom:15.552000px;}
.yd2{bottom:17.928000px;}
.y1a{bottom:18.000000px;}
.y49{bottom:18.720000px;}
.y56{bottom:20.772000px;}
.yc9{bottom:21.132000px;}
.yc5{bottom:21.456000px;}
.y4b{bottom:22.428000px;}
.y8f{bottom:22.716000px;}
.y5{bottom:23.328000px;}
.ye1{bottom:23.364000px;}
.y10c{bottom:26.064000px;}
.yce{bottom:29.592000px;}
.ye9{bottom:37.152000px;}
.y5b{bottom:37.944000px;}
.ybb{bottom:39.348000px;}
.y75{bottom:40.752000px;}
.y4{bottom:41.328000px;}
.y1{bottom:42.732000px;}
.y19{bottom:47.160000px;}
.yd1{bottom:50.328000px;}
.y48{bottom:51.120000px;}
.y10b{bottom:51.264000px;}
.y8e{bottom:51.516000px;}
.ye0{bottom:52.164000px;}
.y55{bottom:53.172000px;}
.yc8{bottom:53.568000px;}
.yc4{bottom:53.856000px;}
.ycd{bottom:54.792000px;}
.y4a{bottom:54.864000px;}
.y3{bottom:59.364000px;}
.y74{bottom:65.952000px;}
.y5a{bottom:66.744000px;}
.ye{bottom:73.116000px;}
.y2{bottom:77.364000px;}
.y31{bottom:101.232000px;}
.yf4{bottom:109.728000px;}
.yf6{bottom:109.800000px;}
.y51{bottom:115.056000px;}
.yb{bottom:115.308000px;}
.yf{bottom:116.784000px;}
.yb8{bottom:117.108000px;}
.yd6{bottom:118.980000px;}
.yb7{bottom:120.492000px;}
.y65{bottom:123.012000px;}
.y38{bottom:126.540000px;}
.y47{bottom:127.404000px;}
.y3e{bottom:128.304000px;}
.y46{bottom:128.952000px;}
.ybf{bottom:134.712000px;}
.ybd{bottom:135.720000px;}
.y5e{bottom:141.084000px;}
.y54{bottom:142.308000px;}
.y102{bottom:142.416000px;}
.yf2{bottom:142.524000px;}
.yb5{bottom:142.920000px;}
.yd5{bottom:147.780000px;}
.y7f{bottom:151.410000px;}
.y37{bottom:151.740000px;}
.ydd{bottom:152.250000px;}
.y64{bottom:155.415000px;}
.y43{bottom:158.610000px;}
.y4e{bottom:160.815000px;}
.y32{bottom:165.270000px;}
.ye8{bottom:168.150000px;}
.yb6{bottom:170.565000px;}
.y5d{bottom:173.490000px;}
.y68{bottom:174.165000px;}
.yf1{bottom:174.960000px;}
.yd4{bottom:176.580000px;}
.y36{bottom:176.940000px;}
.ybe{bottom:177.945000px;}
.ybc{bottom:178.950000px;}
.y6a{bottom:179.175000px;}
.y4d{bottom:182.370000px;}
.y10d{bottom:182.550000px;}
.y63{bottom:187.815000px;}
.yb4{bottom:188.280000px;}
.y101{bottom:188.310000px;}
.y18{bottom:190.695000px;}
.y7e{bottom:192.855000px;}
.ydc{bottom:195.450000px;}
.y3d{bottom:200.340000px;}
.y35{bottom:202.140000px;}
.y88{bottom:205.125000px;}
.yd3{bottom:205.380000px;}
.yf0{bottom:207.360000px;}
.yad{bottom:209.955000px;}
.y17{bottom:210.495000px;}
.ye7{bottom:211.395000px;}
.yf9{bottom:218.010000px;}
.ya{bottom:218.490000px;}
.y62{bottom:220.215000px;}
.y61{bottom:224.565000px;}
.y4c{bottom:225.615000px;}
.y34{bottom:227.370000px;}
.y7d{bottom:234.255000px;}
.yac{bottom:235.185000px;}
.y72{bottom:235.950000px;}
.ydb{bottom:238.650000px;}
.yef{bottom:239.760000px;}
.yaf{bottom:240.555000px;}
.yf8{bottom:250.410000px;}
.y30{bottom:251.280000px;}
.y60{bottom:253.365000px;}
.ye6{bottom:254.595000px;}
.yab{bottom:260.385000px;}
.ydf{bottom:261.795000px;}
.yae{bottom:265.755000px;}
.y71{bottom:268.380000px;}
.y3c{bottom:272.340000px;}
.yed{bottom:272.595000px;}
.y100{bottom:280.155000px;}
.y9{bottom:282.030000px;}
.y2f{bottom:282.060000px;}
.y5f{bottom:282.165000px;}
.yf7{bottom:282.810000px;}
.yaa{bottom:285.585000px;}
.y10a{bottom:293.760000px;}
.ye5{bottom:297.795000px;}
.y84{bottom:299.130000px;}
.y21{bottom:300.750000px;}
.y70{bottom:300.780000px;}
.yde{bottom:304.995000px;}
.ya9{bottom:310.785000px;}
.yda{bottom:312.270000px;}
.yec{bottom:315.795000px;}
.y59{bottom:315.975000px;}
.y2e{bottom:321.870000px;}
.y27{bottom:327.525000px;}
.y95{bottom:328.425000px;}
.y41{bottom:329.430000px;}
.yd0{bottom:330.765000px;}
.y6f{bottom:333.180000px;}
.y9d{bottom:334.800000px;}
.yff{bottom:339.555000px;}
.y8{bottom:340.380000px;}
.yb3{bottom:340.845000px;}
.ya8{bottom:342.285000px;}
.y83{bottom:342.360000px;}
.y67{bottom:342.465000px;}
.y20{bottom:345.750000px;}
.y58{bottom:348.375000px;}
.y109{bottom:351.390000px;}
.y2d{bottom:352.650000px;}
.y7c{bottom:353.085000px;}
.y94{bottom:353.625000px;}
.y3f{bottom:358.095000px;}
.ye4{bottom:359.025000px;}
.y26{bottom:363.570000px;}
.y6e{bottom:365.580000px;}
.ya7{bottom:367.485000px;}
.yc3{bottom:376.845000px;}
.y53{bottom:377.460000px;}
.y108{bottom:380.010000px;}
.y57{bottom:380.805000px;}
.yfe{bottom:380.985000px;}
.y50{bottom:382.830000px;}
.y2c{bottom:383.430000px;}
.y8d{bottom:384.225000px;}
.y82{bottom:385.560000px;}
.yb2{bottom:386.250000px;}
.y9c{bottom:387.975000px;}
.y1f{bottom:390.780000px;}
.ya6{bottom:392.685000px;}
.y7b{bottom:394.485000px;}
.y93{bottom:394.530000px;}
.y6d{bottom:397.980000px;}
.y52{bottom:399.060000px;}
.yeb{bottom:402.225000px;}
.y4f{bottom:404.430000px;}
.y16{bottom:407.805000px;}
.y25{bottom:408.570000px;}
.y107{bottom:408.810000px;}
.yf5{bottom:411.945000px;}
.y40{bottom:412.305000px;}
.y7{bottom:412.380000px;}
.yf3{bottom:414.075000px;}
.ye3{bottom:420.225000px;}
.y2b{bottom:423.210000px;}
.yc2{bottom:427.245000px;}
.y8c{bottom:427.425000px;}
.y81{bottom:428.760000px;}
.y6c{bottom:430.410000px;}
.ya5{bottom:430.710000px;}
.y1e{bottom:435.780000px;}
.y7a{bottom:435.885000px;}
.y106{bottom:437.610000px;}
.yfd{bottom:440.385000px;}
.y15{bottom:443.805000px;}
.ya1{bottom:443.955000px;}
.y24{bottom:444.570000px;}
.yee{bottom:445.425000px;}
.ya4{bottom:450.540000px;}
.y87{bottom:453.525000px;}
.y2a{bottom:463.035000px;}
.ye2{bottom:463.425000px;}
.ya0{bottom:469.155000px;}
.ya3{bottom:470.340000px;}
.y8b{bottom:470.625000px;}
.y80{bottom:471.960000px;}
.y79{bottom:477.285000px;}
.y92{bottom:477.540000px;}
.yc1{bottom:477.645000px;}
.y6b{bottom:479.190000px;}
.y69{bottom:480.420000px;}
.y23{bottom:480.570000px;}
.y1d{bottom:482.400000px;}
.ya2{bottom:490.320000px;}
.y29{bottom:493.815000px;}
.y105{bottom:495.255000px;}
.y14{bottom:497.805000px;}
.yfc{bottom:499.785000px;}
.y91{bottom:502.740000px;}
.yc7{bottom:506.625000px;}
.yd9{bottom:509.730000px;}
.y3a{bottom:514.875000px;}
.y1c{bottom:525.600000px;}
.y22{bottom:527.220000px;}
.yc0{bottom:528.090000px;}
.y9b{bottom:529.920000px;}
.y8a{bottom:531.870000px;}
.y13{bottom:533.850000px;}
.y28{bottom:534.675000px;}
.y86{bottom:536.370000px;}
.ycf{bottom:537.480000px;}
.yb1{bottom:540.795000px;}
.yfb{bottom:545.730000px;}
.y90{bottom:549.465000px;}
.yc6{bottom:549.870000px;}
.y104{bottom:554.475000px;}
.y9a{bottom:555.120000px;}
.yd8{bottom:567.330000px;}
.y89{bottom:575.070000px;}
.y45{bottom:580.110000px;}
.y99{bottom:580.320000px;}
.yd{bottom:581.550000px;}
.yb0{bottom:586.155000px;}
.y12{bottom:587.850000px;}
.ycc{bottom:587.880000px;}
.yfa{bottom:591.630000px;}
.y66{bottom:593.070000px;}
.y78{bottom:596.130000px;}
.yc{bottom:601.350000px;}
.y3b{bottom:611.100000px;}
.y98{bottom:613.440000px;}
.y33{bottom:619.125000px;}
.y85{bottom:619.170000px;}
.yd7{bottom:624.930000px;}
.y44{bottom:630.510000px;}
.y42{bottom:636.270000px;}
.y77{bottom:637.530000px;}
.ycb{bottom:638.280000px;}
.y97{bottom:638.670000px;}
.y11{bottom:641.850000px;}
.y9f{bottom:642.030000px;}
.y9e{bottom:667.230000px;}
.y96{bottom:668.625000px;}
.y10{bottom:709.560000px;}
.y1b{bottom:711.105000px;}
.y73{bottom:715.140000px;}
.y103{bottom:718.095000px;}
.yca{bottom:720.510000px;}
.y39{bottom:746.460000px;}
.h9{height:41.317383px;}
.h1e{height:44.149219px;}
.h1f{height:44.245195px;}
.h1{height:45.724570px;}
.h2{height:45.834750px;}
.h8{height:50.682656px;}
.h7{height:55.089844px;}
.ha{height:55.200023px;}
.hd{height:64.455117px;}
.h1d{height:64.565297px;}
.h24{height:69.996445px;}
.h12{height:73.269492px;}
.h27{height:73.379672px;}
.h16{height:82.634766px;}
.h18{height:82.744945px;}
.h10{height:87.041953px;}
.h11{height:87.152133px;}
.h26{height:91.354219px;}
.hb{height:92.000039px;}
.hc{height:92.110219px;}
.h17{height:92.570766px;}
.hf{height:100.814414px;}
.h1b{height:105.772500px;}
.h1c{height:105.882680px;}
.h23{height:109.406250px;}
.h5{height:110.179688px;}
.he{height:110.289867px;}
.h13{height:128.359336px;}
.h21{height:128.469516px;}
.h20{height:147.089883px;}
.h6{height:147.200063px;}
.h19{height:165.269531px;}
.h1a{height:165.379711px;}
.h3{height:183.449180px;}
.h4{height:183.559359px;}
.h25{height:202.289906px;}
.h22{height:303.104320px;}
.h15{height:330.539062px;}
.h14{height:330.649242px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2c{left:17.099979px;}
.x21{left:22.355979px;}
.x28{left:27.647979px;}
.x7b{left:34.487979px;}
.x65{left:39.779979px;}
.x43{left:41.579979px;}
.x80{left:42.767979px;}
.x44{left:44.819979px;}
.x45{left:50.039979px;}
.x3{left:51.659979px;}
.x7e{left:58.067979px;}
.x67{left:61.559979px;}
.x2b{left:63.899979px;}
.xd{left:65.015979px;}
.x7f{left:66.887979px;}
.x29{left:70.199979px;}
.x68{left:75.959979px;}
.x82{left:82.799979px;}
.x46{left:89.999979px;}
.x61{left:93.563979px;}
.x8{left:103.427979px;}
.x7{left:105.299979px;}
.x66{left:108.179979px;}
.x42{left:111.959979px;}
.x6b{left:120.563979px;}
.x74{left:123.515979px;}
.x9{left:143.927979px;}
.x81{left:150.224979px;}
.x14{left:154.724979px;}
.x6c{left:161.069979px;}
.x15{left:167.114979px;}
.x75{left:195.689979px;}
.x38{left:199.769979px;}
.x2{left:210.314979px;}
.x37{left:212.654979px;}
.x13{left:218.339979px;}
.x62{left:230.549979px;}
.x47{left:241.304979px;}
.x18{left:268.559979px;}
.x6e{left:277.379979px;}
.x5f{left:320.114979px;}
.x73{left:357.869979px;}
.x5{left:360.104979px;}
.x25{left:366.659979px;}
.x3f{left:377.609979px;}
.x2d{left:379.649979px;}
.x23{left:384.224979px;}
.x76{left:388.259979px;}
.x7d{left:392.684979px;}
.x6d{left:395.099979px;}
.x6a{left:401.759979px;}
.x69{left:403.664979px;}
.x48{left:409.289979px;}
.x83{left:425.234979px;}
.xc{left:435.029979px;}
.x41{left:437.684979px;}
.x60{left:440.924979px;}
.x22{left:496.364979px;}
.x78{left:497.669979px;}
.x84{left:505.904979px;}
.x7a{left:523.049979px;}
.x79{left:530.789979px;}
.xb{left:550.229979px;}
.xe{left:565.349979px;}
.xf{left:566.429979px;}
.x77{left:571.649979px;}
.x1f{left:572.909979px;}
.x10{left:592.889979px;}
.x1c{left:631.589979px;}
.x36{left:636.869979px;}
.x1a{left:638.969979px;}
.x55{left:648.869979px;}
.x56{left:656.069979px;}
.x5c{left:668.804979px;}
.x5b{left:670.424979px;}
.x1b{left:677.849979px;}
.x5a{left:684.749979px;}
.x7c{left:688.289979px;}
.x1e{left:698.579979px;}
.x5e{left:707.684979px;}
.x40{left:722.519979px;}
.x16{left:741.314979px;}
.x17{left:754.634979px;}
.x2a{left:787.784979px;}
.x63{left:797.324979px;}
.x54{left:836.354979px;}
.x53{left:854.669979px;}
.x4f{left:874.874979px;}
.x4{left:888.584979px;}
.x19{left:893.849979px;}
.x27{left:903.344979px;}
.xa{left:930.704979px;}
.x64{left:933.764979px;}
.x26{left:938.984979px;}
.x1d{left:941.759979px;}
.x2f{left:954.029979px;}
.x57{left:962.564979px;}
.x51{left:964.184979px;}
.x30{left:966.989979px;}
.x52{left:972.644979px;}
.x58{left:977.504979px;}
.x24{left:990.539979px;}
.x31{left:992.909979px;}
.x6{left:996.869979px;}
.x1{left:998.999979px;}
.x59{left:1001.804979px;}
.x11{left:1005.329979px;}
.x2e{left:1014.329979px;}
.x20{left:1022.549979px;}
.x50{left:1042.709979px;}
.x5d{left:1044.149979px;}
.x12{left:1045.829979px;}
.x3a{left:1101.599979px;}
.x39{left:1134.824979px;}
.x3b{left:1140.224979px;}
.x34{left:1152.539979px;}
.x3e{left:1155.884979px;}
.x3d{left:1162.724979px;}
.x3c{left:1165.064979px;}
.x32{left:1177.379979px;}
.x33{left:1180.979979px;}
.x35{left:1198.259979px;}
.x72{left:1236.494979px;}
.x6f{left:1257.404979px;}
.x70{left:1261.004979px;}
.x71{left:1267.304979px;}
.x4a{left:1314.794979px;}
.x4e{left:1317.779979px;}
.x4b{left:1321.994979px;}
.x4d{left:1329.659979px;}
.x4c{left:1337.189979px;}
.x49{left:1338.299979px;}
@media print{
.v2{vertical-align:-4.213333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.832000pt;}
.ls10{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-1.872000pt;}
.lsb{letter-spacing:-1.696000pt;}
.ls18{letter-spacing:-1.568000pt;}
.ls2{letter-spacing:-1.344000pt;}
.ls17{letter-spacing:-1.168000pt;}
.ls12{letter-spacing:-0.371200pt;}
.ls25{letter-spacing:-0.326933pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.304533pt;}
.ls21{letter-spacing:-0.204800pt;}
.ls1b{letter-spacing:-0.159467pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.048640pt;}
.ls23{letter-spacing:-0.024587pt;}
.ls14{letter-spacing:-0.013173pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.014080pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.048640pt;}
.ls27{letter-spacing:0.050720pt;}
.lsc{letter-spacing:0.053867pt;}
.ls22{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.111360pt;}
.ls2f{letter-spacing:0.112640pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.174933pt;}
.ls20{letter-spacing:0.178667pt;}
.lse{letter-spacing:0.185067pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.297067pt;}
.ls2c{letter-spacing:0.320000pt;}
.lsa{letter-spacing:21.152000pt;}
.ls6{letter-spacing:35.507200pt;}
.ls5{letter-spacing:35.552000pt;}
.ls2b{letter-spacing:42.368000pt;}
.ls8{letter-spacing:56.627200pt;}
.ls7{letter-spacing:56.672000pt;}
.ls1a{letter-spacing:76.755200pt;}
.ls19{letter-spacing:76.800000pt;}
.lsf{letter-spacing:86.675200pt;}
.ls24{letter-spacing:91.808000pt;}
.ls29{letter-spacing:91.829333pt;}
.ls1c{letter-spacing:99.200000pt;}
.ls2e{letter-spacing:100.992000pt;}
.ls4{letter-spacing:106.547200pt;}
.ls3{letter-spacing:106.592000pt;}
.ls9{letter-spacing:108.608000pt;}
.ws13{word-spacing:-55.498347pt;}
.wsc{word-spacing:-55.411200pt;}
.ws1b{word-spacing:-49.920000pt;}
.ws2c{word-spacing:-38.804480pt;}
.ws2b{word-spacing:-38.771200pt;}
.ws22{word-spacing:-35.404800pt;}
.ws23{word-spacing:-35.328000pt;}
.ws20{word-spacing:-33.536000pt;}
.ws27{word-spacing:-33.488213pt;}
.ws2f{word-spacing:-33.313280pt;}
.ws6{word-spacing:-33.280000pt;}
.ws33{word-spacing:-32.245867pt;}
.ws1d{word-spacing:-31.982080pt;}
.ws32{word-spacing:-31.948800pt;}
.ws9{word-spacing:-30.451200pt;}
.ws8{word-spacing:-27.822080pt;}
.ws5{word-spacing:-27.788800pt;}
.wsa{word-spacing:-26.324480pt;}
.ws14{word-spacing:-24.993280pt;}
.ws10{word-spacing:-24.960000pt;}
.ws26{word-spacing:-24.666347pt;}
.ws31{word-spacing:-23.983360pt;}
.ws30{word-spacing:-23.663360pt;}
.ws1e{word-spacing:-23.392000pt;}
.ws12{word-spacing:-23.264000pt;}
.wse{word-spacing:-22.131200pt;}
.ws19{word-spacing:-22.082560pt;}
.ws18{word-spacing:-20.259200pt;}
.ws25{word-spacing:-19.502080pt;}
.ws7{word-spacing:-19.468800pt;}
.ws1c{word-spacing:-18.300800pt;}
.ws17{word-spacing:-16.858347pt;}
.ws3{word-spacing:-16.673280pt;}
.ws15{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.320000pt;}
.ws1{word-spacing:-15.296000pt;}
.ws0{word-spacing:-13.811200pt;}
.ws24{word-spacing:-1.190400pt;}
.ws21{word-spacing:-1.113344pt;}
.ws2{word-spacing:-0.992000pt;}
.ws34{word-spacing:-0.930773pt;}
.ws1a{word-spacing:-0.468256pt;}
.ws2d{word-spacing:-0.323840pt;}
.ws4{word-spacing:0.000000pt;}
.ws28{word-spacing:0.450731pt;}
.ws2e{word-spacing:0.895744pt;}
.ws29{word-spacing:0.966443pt;}
.ws11{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.372160pt;}
.wsd{word-spacing:804.117333pt;}
.wsb{word-spacing:885.882240pt;}
.wsf{word-spacing:2255.693440pt;}
.ws1f{word-spacing:2788.160000pt;}
._c{margin-left:-4389.653333pt;}
._11{margin-left:-17.486336pt;}
._b{margin-left:-14.918400pt;}
._10{margin-left:-11.088896pt;}
._9{margin-left:-8.025600pt;}
._f{margin-left:-6.144000pt;}
._2{margin-left:-4.475520pt;}
._7{margin-left:-3.420160pt;}
._4{margin-left:-2.176000pt;}
._5{margin-left:-1.115520pt;}
._1{width:1.115520pt;}
._3{width:2.131200pt;}
._6{width:4.215040pt;}
._0{width:14.892032pt;}
._13{width:18.422187pt;}
._d{width:23.552000pt;}
._8{width:26.880853pt;}
._e{width:35.093333pt;}
._12{width:60.116907pt;}
._a{width:930.665173pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:53.248000pt;}
.fs7{font-size:58.880000pt;}
.fs1c{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fsc{font-size:74.880000pt;}
.fs1b{font-size:75.008000pt;}
.fs11{font-size:85.120000pt;}
.fs21{font-size:85.248000pt;}
.fs15{font-size:96.000000pt;}
.fs16{font-size:96.128000pt;}
.fsf{font-size:101.120000pt;}
.fs10{font-size:101.248000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fse{font-size:117.120000pt;}
.fs19{font-size:122.880000pt;}
.fs1a{font-size:123.008000pt;}
.fs4{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs12{font-size:149.120000pt;}
.fs1e{font-size:149.248000pt;}
.fs1d{font-size:170.880000pt;}
.fs5{font-size:171.008000pt;}
.fs17{font-size:192.000000pt;}
.fs18{font-size:192.128000pt;}
.fs2{font-size:213.120000pt;}
.fs3{font-size:213.248000pt;}
.fs20{font-size:235.008000pt;}
.fs1f{font-size:352.128000pt;}
.fs14{font-size:384.000000pt;}
.fs13{font-size:384.128000pt;}
.yba{bottom:-157.893333pt;}
.yb9{bottom:-129.088000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.736000pt;}
.yea{bottom:8.064000pt;}
.y5c{bottom:8.128000pt;}
.y76{bottom:13.824000pt;}
.yd2{bottom:15.936000pt;}
.y1a{bottom:16.000000pt;}
.y49{bottom:16.640000pt;}
.y56{bottom:18.464000pt;}
.yc9{bottom:18.784000pt;}
.yc5{bottom:19.072000pt;}
.y4b{bottom:19.936000pt;}
.y8f{bottom:20.192000pt;}
.y5{bottom:20.736000pt;}
.ye1{bottom:20.768000pt;}
.y10c{bottom:23.168000pt;}
.yce{bottom:26.304000pt;}
.ye9{bottom:33.024000pt;}
.y5b{bottom:33.728000pt;}
.ybb{bottom:34.976000pt;}
.y75{bottom:36.224000pt;}
.y4{bottom:36.736000pt;}
.y1{bottom:37.984000pt;}
.y19{bottom:41.920000pt;}
.yd1{bottom:44.736000pt;}
.y48{bottom:45.440000pt;}
.y10b{bottom:45.568000pt;}
.y8e{bottom:45.792000pt;}
.ye0{bottom:46.368000pt;}
.y55{bottom:47.264000pt;}
.yc8{bottom:47.616000pt;}
.yc4{bottom:47.872000pt;}
.ycd{bottom:48.704000pt;}
.y4a{bottom:48.768000pt;}
.y3{bottom:52.768000pt;}
.y74{bottom:58.624000pt;}
.y5a{bottom:59.328000pt;}
.ye{bottom:64.992000pt;}
.y2{bottom:68.768000pt;}
.y31{bottom:89.984000pt;}
.yf4{bottom:97.536000pt;}
.yf6{bottom:97.600000pt;}
.y51{bottom:102.272000pt;}
.yb{bottom:102.496000pt;}
.yf{bottom:103.808000pt;}
.yb8{bottom:104.096000pt;}
.yd6{bottom:105.760000pt;}
.yb7{bottom:107.104000pt;}
.y65{bottom:109.344000pt;}
.y38{bottom:112.480000pt;}
.y47{bottom:113.248000pt;}
.y3e{bottom:114.048000pt;}
.y46{bottom:114.624000pt;}
.ybf{bottom:119.744000pt;}
.ybd{bottom:120.640000pt;}
.y5e{bottom:125.408000pt;}
.y54{bottom:126.496000pt;}
.y102{bottom:126.592000pt;}
.yf2{bottom:126.688000pt;}
.yb5{bottom:127.040000pt;}
.yd5{bottom:131.360000pt;}
.y7f{bottom:134.586667pt;}
.y37{bottom:134.880000pt;}
.ydd{bottom:135.333333pt;}
.y64{bottom:138.146667pt;}
.y43{bottom:140.986667pt;}
.y4e{bottom:142.946667pt;}
.y32{bottom:146.906667pt;}
.ye8{bottom:149.466667pt;}
.yb6{bottom:151.613333pt;}
.y5d{bottom:154.213333pt;}
.y68{bottom:154.813333pt;}
.yf1{bottom:155.520000pt;}
.yd4{bottom:156.960000pt;}
.y36{bottom:157.280000pt;}
.ybe{bottom:158.173333pt;}
.ybc{bottom:159.066667pt;}
.y6a{bottom:159.266667pt;}
.y4d{bottom:162.106667pt;}
.y10d{bottom:162.266667pt;}
.y63{bottom:166.946667pt;}
.yb4{bottom:167.360000pt;}
.y101{bottom:167.386667pt;}
.y18{bottom:169.506667pt;}
.y7e{bottom:171.426667pt;}
.ydc{bottom:173.733333pt;}
.y3d{bottom:178.080000pt;}
.y35{bottom:179.680000pt;}
.y88{bottom:182.333333pt;}
.yd3{bottom:182.560000pt;}
.yf0{bottom:184.320000pt;}
.yad{bottom:186.626667pt;}
.y17{bottom:187.106667pt;}
.ye7{bottom:187.906667pt;}
.yf9{bottom:193.786667pt;}
.ya{bottom:194.213333pt;}
.y62{bottom:195.746667pt;}
.y61{bottom:199.613333pt;}
.y4c{bottom:200.546667pt;}
.y34{bottom:202.106667pt;}
.y7d{bottom:208.226667pt;}
.yac{bottom:209.053333pt;}
.y72{bottom:209.733333pt;}
.ydb{bottom:212.133333pt;}
.yef{bottom:213.120000pt;}
.yaf{bottom:213.826667pt;}
.yf8{bottom:222.586667pt;}
.y30{bottom:223.360000pt;}
.y60{bottom:225.213333pt;}
.ye6{bottom:226.306667pt;}
.yab{bottom:231.453333pt;}
.ydf{bottom:232.706667pt;}
.yae{bottom:236.226667pt;}
.y71{bottom:238.560000pt;}
.y3c{bottom:242.080000pt;}
.yed{bottom:242.306667pt;}
.y100{bottom:249.026667pt;}
.y9{bottom:250.693333pt;}
.y2f{bottom:250.720000pt;}
.y5f{bottom:250.813333pt;}
.yf7{bottom:251.386667pt;}
.yaa{bottom:253.853333pt;}
.y10a{bottom:261.120000pt;}
.ye5{bottom:264.706667pt;}
.y84{bottom:265.893333pt;}
.y21{bottom:267.333333pt;}
.y70{bottom:267.360000pt;}
.yde{bottom:271.106667pt;}
.ya9{bottom:276.253333pt;}
.yda{bottom:277.573333pt;}
.yec{bottom:280.706667pt;}
.y59{bottom:280.866667pt;}
.y2e{bottom:286.106667pt;}
.y27{bottom:291.133333pt;}
.y95{bottom:291.933333pt;}
.y41{bottom:292.826667pt;}
.yd0{bottom:294.013333pt;}
.y6f{bottom:296.160000pt;}
.y9d{bottom:297.600000pt;}
.yff{bottom:301.826667pt;}
.y8{bottom:302.560000pt;}
.yb3{bottom:302.973333pt;}
.ya8{bottom:304.253333pt;}
.y83{bottom:304.320000pt;}
.y67{bottom:304.413333pt;}
.y20{bottom:307.333333pt;}
.y58{bottom:309.666667pt;}
.y109{bottom:312.346667pt;}
.y2d{bottom:313.466667pt;}
.y7c{bottom:313.853333pt;}
.y94{bottom:314.333333pt;}
.y3f{bottom:318.306667pt;}
.ye4{bottom:319.133333pt;}
.y26{bottom:323.173333pt;}
.y6e{bottom:324.960000pt;}
.ya7{bottom:326.653333pt;}
.yc3{bottom:334.973333pt;}
.y53{bottom:335.520000pt;}
.y108{bottom:337.786667pt;}
.y57{bottom:338.493333pt;}
.yfe{bottom:338.653333pt;}
.y50{bottom:340.293333pt;}
.y2c{bottom:340.826667pt;}
.y8d{bottom:341.533333pt;}
.y82{bottom:342.720000pt;}
.yb2{bottom:343.333333pt;}
.y9c{bottom:344.866667pt;}
.y1f{bottom:347.360000pt;}
.ya6{bottom:349.053333pt;}
.y7b{bottom:350.653333pt;}
.y93{bottom:350.693333pt;}
.y6d{bottom:353.760000pt;}
.y52{bottom:354.720000pt;}
.yeb{bottom:357.533333pt;}
.y4f{bottom:359.493333pt;}
.y16{bottom:362.493333pt;}
.y25{bottom:363.173333pt;}
.y107{bottom:363.386667pt;}
.yf5{bottom:366.173333pt;}
.y40{bottom:366.493333pt;}
.y7{bottom:366.560000pt;}
.yf3{bottom:368.066667pt;}
.ye3{bottom:373.533333pt;}
.y2b{bottom:376.186667pt;}
.yc2{bottom:379.773333pt;}
.y8c{bottom:379.933333pt;}
.y81{bottom:381.120000pt;}
.y6c{bottom:382.586667pt;}
.ya5{bottom:382.853333pt;}
.y1e{bottom:387.360000pt;}
.y7a{bottom:387.453333pt;}
.y106{bottom:388.986667pt;}
.yfd{bottom:391.453333pt;}
.y15{bottom:394.493333pt;}
.ya1{bottom:394.626667pt;}
.y24{bottom:395.173333pt;}
.yee{bottom:395.933333pt;}
.ya4{bottom:400.480000pt;}
.y87{bottom:403.133333pt;}
.y2a{bottom:411.586667pt;}
.ye2{bottom:411.933333pt;}
.ya0{bottom:417.026667pt;}
.ya3{bottom:418.080000pt;}
.y8b{bottom:418.333333pt;}
.y80{bottom:419.520000pt;}
.y79{bottom:424.253333pt;}
.y92{bottom:424.480000pt;}
.yc1{bottom:424.573333pt;}
.y6b{bottom:425.946667pt;}
.y69{bottom:427.040000pt;}
.y23{bottom:427.173333pt;}
.y1d{bottom:428.800000pt;}
.ya2{bottom:435.840000pt;}
.y29{bottom:438.946667pt;}
.y105{bottom:440.226667pt;}
.y14{bottom:442.493333pt;}
.yfc{bottom:444.253333pt;}
.y91{bottom:446.880000pt;}
.yc7{bottom:450.333333pt;}
.yd9{bottom:453.093333pt;}
.y3a{bottom:457.666667pt;}
.y1c{bottom:467.200000pt;}
.y22{bottom:468.640000pt;}
.yc0{bottom:469.413333pt;}
.y9b{bottom:471.040000pt;}
.y8a{bottom:472.773333pt;}
.y13{bottom:474.533333pt;}
.y28{bottom:475.266667pt;}
.y86{bottom:476.773333pt;}
.ycf{bottom:477.760000pt;}
.yb1{bottom:480.706667pt;}
.yfb{bottom:485.093333pt;}
.y90{bottom:488.413333pt;}
.yc6{bottom:488.773333pt;}
.y104{bottom:492.866667pt;}
.y9a{bottom:493.440000pt;}
.yd8{bottom:504.293333pt;}
.y89{bottom:511.173333pt;}
.y45{bottom:515.653333pt;}
.y99{bottom:515.840000pt;}
.yd{bottom:516.933333pt;}
.yb0{bottom:521.026667pt;}
.y12{bottom:522.533333pt;}
.ycc{bottom:522.560000pt;}
.yfa{bottom:525.893333pt;}
.y66{bottom:527.173333pt;}
.y78{bottom:529.893333pt;}
.yc{bottom:534.533333pt;}
.y3b{bottom:543.200000pt;}
.y98{bottom:545.280000pt;}
.y33{bottom:550.333333pt;}
.y85{bottom:550.373333pt;}
.yd7{bottom:555.493333pt;}
.y44{bottom:560.453333pt;}
.y42{bottom:565.573333pt;}
.y77{bottom:566.693333pt;}
.ycb{bottom:567.360000pt;}
.y97{bottom:567.706667pt;}
.y11{bottom:570.533333pt;}
.y9f{bottom:570.693333pt;}
.y9e{bottom:593.093333pt;}
.y96{bottom:594.333333pt;}
.y10{bottom:630.720000pt;}
.y1b{bottom:632.093333pt;}
.y73{bottom:635.680000pt;}
.y103{bottom:638.306667pt;}
.yca{bottom:640.453333pt;}
.y39{bottom:663.520000pt;}
.h9{height:36.726562pt;}
.h1e{height:39.243750pt;}
.h1f{height:39.329062pt;}
.h1{height:40.644063pt;}
.h2{height:40.742000pt;}
.h8{height:45.051250pt;}
.h7{height:48.968750pt;}
.ha{height:49.066687pt;}
.hd{height:57.293437pt;}
.h1d{height:57.391375pt;}
.h24{height:62.219062pt;}
.h12{height:65.128438pt;}
.h27{height:65.226375pt;}
.h16{height:73.453125pt;}
.h18{height:73.551063pt;}
.h10{height:77.370625pt;}
.h11{height:77.468562pt;}
.h26{height:81.203750pt;}
.hb{height:81.777812pt;}
.hc{height:81.875750pt;}
.h17{height:82.285125pt;}
.hf{height:89.612812pt;}
.h1b{height:94.020000pt;}
.h1c{height:94.117938pt;}
.h23{height:97.250000pt;}
.h5{height:97.937500pt;}
.he{height:98.035438pt;}
.h13{height:114.097187pt;}
.h21{height:114.195125pt;}
.h20{height:130.746563pt;}
.h6{height:130.844500pt;}
.h19{height:146.906250pt;}
.h1a{height:147.004187pt;}
.h3{height:163.065937pt;}
.h4{height:163.163875pt;}
.h25{height:179.813250pt;}
.h22{height:269.426063pt;}
.h15{height:293.812500pt;}
.h14{height:293.910438pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:15.199981pt;}
.x21{left:19.871981pt;}
.x28{left:24.575981pt;}
.x7b{left:30.655981pt;}
.x65{left:35.359981pt;}
.x43{left:36.959981pt;}
.x80{left:38.015981pt;}
.x44{left:39.839981pt;}
.x45{left:44.479981pt;}
.x3{left:45.919981pt;}
.x7e{left:51.615981pt;}
.x67{left:54.719981pt;}
.x2b{left:56.799981pt;}
.xd{left:57.791981pt;}
.x7f{left:59.455981pt;}
.x29{left:62.399981pt;}
.x68{left:67.519981pt;}
.x82{left:73.599981pt;}
.x46{left:79.999981pt;}
.x61{left:83.167981pt;}
.x8{left:91.935981pt;}
.x7{left:93.599981pt;}
.x66{left:96.159981pt;}
.x42{left:99.519981pt;}
.x6b{left:107.167981pt;}
.x74{left:109.791981pt;}
.x9{left:127.935981pt;}
.x81{left:133.533314pt;}
.x14{left:137.533314pt;}
.x6c{left:143.173314pt;}
.x15{left:148.546648pt;}
.x75{left:173.946648pt;}
.x38{left:177.573314pt;}
.x2{left:186.946648pt;}
.x37{left:189.026648pt;}
.x13{left:194.079981pt;}
.x62{left:204.933314pt;}
.x47{left:214.493314pt;}
.x18{left:238.719981pt;}
.x6e{left:246.559981pt;}
.x5f{left:284.546648pt;}
.x73{left:318.106648pt;}
.x5{left:320.093314pt;}
.x25{left:325.919981pt;}
.x3f{left:335.653314pt;}
.x2d{left:337.466648pt;}
.x23{left:341.533314pt;}
.x76{left:345.119981pt;}
.x7d{left:349.053314pt;}
.x6d{left:351.199981pt;}
.x6a{left:357.119981pt;}
.x69{left:358.813314pt;}
.x48{left:363.813314pt;}
.x83{left:377.986648pt;}
.xc{left:386.693314pt;}
.x41{left:389.053314pt;}
.x60{left:391.933314pt;}
.x22{left:441.213314pt;}
.x78{left:442.373314pt;}
.x84{left:449.693314pt;}
.x7a{left:464.933314pt;}
.x79{left:471.813314pt;}
.xb{left:489.093314pt;}
.xe{left:502.533314pt;}
.xf{left:503.493314pt;}
.x77{left:508.133314pt;}
.x1f{left:509.253314pt;}
.x10{left:527.013314pt;}
.x1c{left:561.413314pt;}
.x36{left:566.106648pt;}
.x1a{left:567.973314pt;}
.x55{left:576.773314pt;}
.x56{left:583.173314pt;}
.x5c{left:594.493314pt;}
.x5b{left:595.933314pt;}
.x1b{left:602.533314pt;}
.x5a{left:608.666648pt;}
.x7c{left:611.813314pt;}
.x1e{left:620.959981pt;}
.x5e{left:629.053314pt;}
.x40{left:642.239981pt;}
.x16{left:658.946648pt;}
.x17{left:670.786648pt;}
.x2a{left:700.253314pt;}
.x63{left:708.733314pt;}
.x54{left:743.426648pt;}
.x53{left:759.706648pt;}
.x4f{left:777.666648pt;}
.x4{left:789.853314pt;}
.x19{left:794.533314pt;}
.x27{left:802.973314pt;}
.xa{left:827.293314pt;}
.x64{left:830.013314pt;}
.x26{left:834.653314pt;}
.x1d{left:837.119981pt;}
.x2f{left:848.026648pt;}
.x57{left:855.613314pt;}
.x51{left:857.053314pt;}
.x30{left:859.546648pt;}
.x52{left:864.573314pt;}
.x58{left:868.893314pt;}
.x24{left:880.479981pt;}
.x31{left:882.586648pt;}
.x6{left:886.106648pt;}
.x1{left:887.999981pt;}
.x59{left:890.493314pt;}
.x11{left:893.626648pt;}
.x2e{left:901.626648pt;}
.x20{left:908.933314pt;}
.x50{left:926.853314pt;}
.x5d{left:928.133314pt;}
.x12{left:929.626648pt;}
.x3a{left:979.199981pt;}
.x39{left:1008.733314pt;}
.x3b{left:1013.533314pt;}
.x34{left:1024.479981pt;}
.x3e{left:1027.453314pt;}
.x3d{left:1033.533314pt;}
.x3c{left:1035.613314pt;}
.x32{left:1046.559981pt;}
.x33{left:1049.759981pt;}
.x35{left:1065.119981pt;}
.x72{left:1099.106648pt;}
.x6f{left:1117.693314pt;}
.x70{left:1120.893314pt;}
.x71{left:1126.493314pt;}
.x4a{left:1168.706648pt;}
.x4e{left:1171.359981pt;}
.x4b{left:1175.106648pt;}
.x4d{left:1181.919981pt;}
.x4c{left:1188.613314pt;}
.x49{left:1189.599981pt;}
}




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