
    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_418617181ea84ec34a98ae02.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ea137c90b29ed21d39f0a474.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8736741d3e62a5c8480a5efa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_dadc0590c96710a83a7402c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4da5efe0cb671d5f53a1db57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b672ea4cbbacfdd1253fe4ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_56648dee358982fe0ba8e38b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c62b2caa0d05ad7e4b1727eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7652e4066ab76ef4c4178e5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa0de08f719bcf1cf2c4d109.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_774497f51bb856d0feb076c7.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_31bc28ea9b790f5f5dd04873.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f973c883c4398fae77df1747.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bea13b382fe48fa6353d5a17.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.056641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_efbe57854a06178697d1b18f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.056641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_91410cf493be6857421e02d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.875977;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.298200px;}
.ls17{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.127200px;}
.ls14{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.038160px;}
.lsa{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.087600px;}
.ls16{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.319680px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls13{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.786240px;}
.ls1a{letter-spacing:1.039680px;}
.ls1c{letter-spacing:3.780000px;}
.ls1e{letter-spacing:16.506720px;}
.ls1d{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.166000px;}
.wsb{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.353600px;}
.ws11{word-spacing:-13.147200px;}
.ws6{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.816720px;}
.ws5{word-spacing:-12.366000px;}
.ws0{word-spacing:-12.258000px;}
.ws1{word-spacing:-12.186000px;}
.wsc{word-spacing:-9.732960px;}
.ws13{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._12{margin-left:-7.035360px;}
._5{margin-left:-5.575680px;}
._3{margin-left:-4.050000px;}
._2{margin-left:-3.047760px;}
._0{margin-left:-1.080000px;}
._1{width:1.092000px;}
._4{width:2.155440px;}
._d{width:3.709440px;}
._c{width:4.900320px;}
._13{width:5.915280px;}
._f{width:6.982320px;}
._9{width:8.578320px;}
._8{width:9.605040px;}
._7{width:11.218560px;}
._e{width:12.267120px;}
._10{width:13.273200px;}
._b{width:16.553520px;}
._a{width:18.047520px;}
._16{width:20.720400px;}
._6{width:22.646880px;}
._11{width:23.694240px;}
._14{width:24.860160px;}
._15{width:27.442080px;}
.fc8{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.ya7{bottom:-12.780000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.060000px;}
.y3e{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y43{bottom:3.960000px;}
.yb6{bottom:4.140000px;}
.ya6{bottom:7.560000px;}
.ye{bottom:9.540000px;}
.y41{bottom:10.620000px;}
.yb8{bottom:10.800000px;}
.y17{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y3d{bottom:20.520000px;}
.y42{bottom:22.320000px;}
.y15{bottom:23.940000px;}
.y40{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y3c{bottom:37.800000px;}
.y14{bottom:40.500000px;}
.y5{bottom:41.940000px;}
.ya{bottom:46.620000px;}
.y13{bottom:52.740000px;}
.y3b{bottom:55.080000px;}
.yea{bottom:57.240000px;}
.y1{bottom:64.440000px;}
.y12{bottom:68.040000px;}
.y3a{bottom:72.360000px;}
.y9{bottom:73.470000px;}
.y11{bottom:87.120000px;}
.y39{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.ye2{bottom:93.240000px;}
.y38{bottom:106.740000px;}
.y10{bottom:111.420000px;}
.y7{bottom:111.450000px;}
.yb5{bottom:112.176000px;}
.yb4{bottom:117.576000px;}
.y94{bottom:122.076000px;}
.y37{bottom:124.050000px;}
.y27{bottom:132.690000px;}
.y56{bottom:132.696000px;}
.yb3{bottom:134.856000px;}
.y93{bottom:139.356000px;}
.y36{bottom:141.330000px;}
.y55{bottom:144.756000px;}
.ya3{bottom:144.936000px;}
.y26{bottom:147.990000px;}
.yd5{bottom:148.896000px;}
.yb2{bottom:151.950000px;}
.y92{bottom:156.630000px;}
.y35{bottom:158.610000px;}
.y54{bottom:162.030000px;}
.ya2{bottom:162.210000px;}
.yb1{bottom:165.990000px;}
.y25{bottom:166.170000px;}
.y91{bottom:173.910000px;}
.ya4{bottom:174.450000px;}
.y34{bottom:175.890000px;}
.y53{bottom:179.310000px;}
.yd4{bottom:183.450000px;}
.y24{bottom:183.630000px;}
.y90{bottom:191.010000px;}
.y33{bottom:192.990000px;}
.y52{bottom:196.410000px;}
.ya1{bottom:196.590000px;}
.yd3{bottom:200.730000px;}
.y23{bottom:200.910000px;}
.y8f{bottom:208.290000px;}
.y32{bottom:210.270000px;}
.y51{bottom:213.690000px;}
.ya0{bottom:213.870000px;}
.yd2{bottom:217.830000px;}
.y22{bottom:218.370000px;}
.y8e{bottom:225.570000px;}
.y31{bottom:227.550000px;}
.y9f{bottom:227.910000px;}
.yf5{bottom:230.790000px;}
.y50{bottom:230.970000px;}
.yd1{bottom:235.110000px;}
.y21{bottom:235.830000px;}
.y8d{bottom:242.850000px;}
.y30{bottom:244.830000px;}
.y4f{bottom:248.250000px;}
.yd0{bottom:252.390000px;}
.y20{bottom:253.110000px;}
.y8c{bottom:260.130000px;}
.y2f{bottom:262.110000px;}
.ycf{bottom:269.670000px;}
.y1f{bottom:270.570000px;}
.y4e{bottom:270.750000px;}
.y8b{bottom:277.410000px;}
.y2e{bottom:279.210000px;}
.y4d{bottom:282.810000px;}
.yce{bottom:286.950000px;}
.y1e{bottom:288.030000px;}
.y8a{bottom:294.510000px;}
.y2d{bottom:296.490000px;}
.y4c{bottom:299.910000px;}
.ycd{bottom:304.230000px;}
.y1d{bottom:305.310000px;}
.y89{bottom:311.790000px;}
.y2c{bottom:313.770000px;}
.ycc{bottom:318.990000px;}
.y4b{bottom:322.410000px;}
.y1c{bottom:322.770000px;}
.y88{bottom:329.070000px;}
.y2b{bottom:331.050000px;}
.y4a{bottom:334.470000px;}
.ycb{bottom:337.035000px;}
.y1b{bottom:340.410000px;}
.y87{bottom:346.395000px;}
.y2a{bottom:348.330000px;}
.y49{bottom:351.795000px;}
.yca{bottom:355.035000px;}
.y86{bottom:363.675000px;}
.y29{bottom:365.610000px;}
.y1a{bottom:367.770000px;}
.y48{bottom:369.075000px;}
.yc9{bottom:373.035000px;}
.y85{bottom:380.775000px;}
.y28{bottom:382.755000px;}
.y19{bottom:385.455000px;}
.y47{bottom:386.355000px;}
.yc8{bottom:391.035000px;}
.y84{bottom:398.055000px;}
.yf4{bottom:403.275000px;}
.y46{bottom:403.455000px;}
.yc7{bottom:409.035000px;}
.y83{bottom:415.335000px;}
.y45{bottom:420.735000px;}
.yc6{bottom:426.855000px;}
.y82{bottom:432.615000px;}
.y44{bottom:438.015000px;}
.yb7{bottom:444.855000px;}
.yb0{bottom:449.715000px;}
.y81{bottom:449.895000px;}
.y3f{bottom:452.055000px;}
.yc5{bottom:462.855000px;}
.yaf{bottom:466.995000px;}
.y80{bottom:467.175000px;}
.yf3{bottom:472.395000px;}
.yc4{bottom:480.855000px;}
.y7f{bottom:484.275000px;}
.y18{bottom:488.595000px;}
.yc3{bottom:498.855000px;}
.y7e{bottom:501.555000px;}
.y9e{bottom:507.855000px;}
.yae{bottom:515.595000px;}
.yc2{bottom:516.855000px;}
.y7d{bottom:518.835000px;}
.y9d{bottom:525.135000px;}
.yc1{bottom:534.855000px;}
.y7c{bottom:536.115000px;}
.y9c{bottom:542.415000px;}
.ya5{bottom:545.475000px;}
.yc0{bottom:552.855000px;}
.y7b{bottom:553.395000px;}
.y9b{bottom:559.695000px;}
.y7a{bottom:570.675000px;}
.ybf{bottom:570.855000px;}
.y9a{bottom:576.975000px;}
.y79{bottom:587.775000px;}
.y99{bottom:594.255000px;}
.y78{bottom:605.085000px;}
.y98{bottom:608.145000px;}
.ybe{bottom:609.405000px;}
.y77{bottom:622.365000px;}
.ybd{bottom:626.685000px;}
.y76{bottom:639.645000px;}
.yef{bottom:641.445000px;}
.y75{bottom:656.925000px;}
.yee{bottom:659.445000px;}
.y74{bottom:674.025000px;}
.ye9{bottom:677.445000px;}
.y73{bottom:691.305000px;}
.yed{bottom:695.445000px;}
.yf2{bottom:696.525000px;}
.y72{bottom:708.585000px;}
.yec{bottom:713.445000px;}
.y71{bottom:725.865000px;}
.yeb{bottom:731.445000px;}
.y70{bottom:743.145000px;}
.yf1{bottom:748.365000px;}
.ye8{bottom:749.445000px;}
.y6f{bottom:760.425000px;}
.ye1{bottom:767.445000px;}
.y6e{bottom:777.525000px;}
.ye7{bottom:785.445000px;}
.y6d{bottom:794.805000px;}
.ye6{bottom:803.445000px;}
.y6c{bottom:812.085000px;}
.ye5{bottom:821.445000px;}
.y6b{bottom:829.365000px;}
.ye4{bottom:839.445000px;}
.yad{bottom:843.585000px;}
.y6a{bottom:846.645000px;}
.ye3{bottom:857.445000px;}
.y97{bottom:859.245000px;}
.yac{bottom:860.865000px;}
.y69{bottom:863.925000px;}
.y96{bottom:873.330000px;}
.yb9{bottom:874.050000px;}
.ye0{bottom:875.490000px;}
.yab{bottom:878.190000px;}
.y68{bottom:881.070000px;}
.y16{bottom:885.390000px;}
.ydf{bottom:893.490000px;}
.yaa{bottom:895.290000px;}
.y67{bottom:898.350000px;}
.yde{bottom:911.490000px;}
.ya9{bottom:912.570000px;}
.yf{bottom:914.910000px;}
.y66{bottom:915.630000px;}
.ya8{bottom:926.610000px;}
.ydd{bottom:929.490000px;}
.y65{bottom:932.910000px;}
.y64{bottom:950.190000px;}
.y63{bottom:967.470000px;}
.ybc{bottom:972.150000px;}
.y62{bottom:984.570000px;}
.ybb{bottom:989.430000px;}
.y61{bottom:1001.850000px;}
.ydc{bottom:1004.190000px;}
.y60{bottom:1019.130000px;}
.ydb{bottom:1022.190000px;}
.y5f{bottom:1036.410000px;}
.yda{bottom:1040.190000px;}
.yd{bottom:1041.450000px;}
.y5e{bottom:1053.690000px;}
.yd9{bottom:1058.190000px;}
.y6{bottom:1066.830000px;}
.y5d{bottom:1070.790000px;}
.yd8{bottom:1076.190000px;}
.y5c{bottom:1088.070000px;}
.yd7{bottom:1094.190000px;}
.y5b{bottom:1105.350000px;}
.yd6{bottom:1112.190000px;}
.y5a{bottom:1122.630000px;}
.yf0{bottom:1127.850000px;}
.y95{bottom:1139.940000px;}
.y59{bottom:1145.160000px;}
.y58{bottom:1157.220000px;}
.y57{bottom:1174.320000px;}
.h28{height:17.100000px;}
.h26{height:17.280000px;}
.h2b{height:17.316000px;}
.h22{height:18.180000px;}
.h25{height:18.360000px;}
.h24{height:21.780000px;}
.hb{height:25.020000px;}
.h1e{height:27.147656px;}
.h20{height:27.432422px;}
.h12{height:29.520000px;}
.h11{height:32.103633px;}
.h2{height:32.976000px;}
.h29{height:34.560000px;}
.h27{height:34.596000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h21{height:41.493516px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h18{height:42.186445px;}
.h2e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h4{height:47.223633px;}
.h15{height:47.980898px;}
.h1f{height:48.027656px;}
.h1d{height:48.207656px;}
.h2d{height:48.312422px;}
.h17{height:49.742227px;}
.h23{height:50.364141px;}
.h1c{height:52.260820px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h2c{height:71.280000px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h2a{height:107.316000px;}
.h7{height:121.536000px;}
.hc{height:126.540000px;}
.h14{height:396.795000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w15{width:85.176000px;}
.wf{width:89.316000px;}
.w11{width:90.576000px;}
.w17{width:109.080000px;}
.w12{width:145.260000px;}
.w5{width:151.950000px;}
.w18{width:213.510000px;}
.w8{width:223.275000px;}
.w14{width:291.450000px;}
.w16{width:336.675000px;}
.wc{width:392.295000px;}
.we{width:408.315000px;}
.w10{width:419.115000px;}
.w13{width:454.425000px;}
.wd{width:480.525000px;}
.wb{width:499.425000px;}
.wa{width:512.925000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w19{width:660.705000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.560000px;}
.x2{left:8.640000px;}
.x19{left:10.800000px;}
.xe{left:12.600000px;}
.xf{left:21.456000px;}
.xc{left:25.596000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x2c{left:108.035987px;}
.x16{left:126.395987px;}
.x2d{left:135.035987px;}
.x1e{left:159.509987px;}
.x25{left:163.290000px;}
.x18{left:179.130000px;}
.x1a{left:185.970000px;}
.x11{left:215.175000px;}
.x20{left:223.770000px;}
.x6{left:224.850000px;}
.xd{left:226.335000px;}
.x21{left:241.230000px;}
.x1f{left:252.030000px;}
.x23{left:262.289987px;}
.x24{left:277.814987px;}
.x22{left:282.674987px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x10{left:320.655000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x14{left:419.834987px;}
.xa{left:455.700000px;}
.x2a{left:496.545000px;}
.x29{left:528.405000px;}
.x26{left:583.305000px;}
.x2b{left:606.345000px;}
.x1d{left:637.844987px;}
.x1b{left:639.104987px;}
.x15{left:646.124987px;}
.x17{left:647.924987px;}
.x13{left:649.004987px;}
.x1c{left:650.264987px;}
.x28{left:674.610000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.265067pt;}
.ls17{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls14{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.033920pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.077867pt;}
.ls16{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.284160pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls13{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1a{letter-spacing:0.924160pt;}
.ls1c{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls1d{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.096533pt;}
.ws15{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.592000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.869867pt;}
.ws11{word-spacing:-11.686400pt;}
.ws6{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.392640pt;}
.ws5{word-spacing:-10.992000pt;}
.ws0{word-spacing:-10.896000pt;}
.ws1{word-spacing:-10.832000pt;}
.wsc{word-spacing:-8.651520pt;}
.ws13{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._12{margin-left:-6.253653pt;}
._5{margin-left:-4.956160pt;}
._3{margin-left:-3.600000pt;}
._2{margin-left:-2.709120pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.970667pt;}
._4{width:1.915947pt;}
._d{width:3.297280pt;}
._c{width:4.355840pt;}
._13{width:5.258027pt;}
._f{width:6.206507pt;}
._9{width:7.625173pt;}
._8{width:8.537813pt;}
._7{width:9.972053pt;}
._e{width:10.904107pt;}
._10{width:11.798400pt;}
._b{width:14.714240pt;}
._a{width:16.042240pt;}
._16{width:18.418133pt;}
._6{width:20.130560pt;}
._11{width:21.061547pt;}
._14{width:22.097920pt;}
._15{width:24.392960pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.ya7{bottom:-11.360000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.720000pt;}
.y3e{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y43{bottom:3.520000pt;}
.yb6{bottom:3.680000pt;}
.ya6{bottom:6.720000pt;}
.ye{bottom:8.480000pt;}
.y41{bottom:9.440000pt;}
.yb8{bottom:9.600000pt;}
.y17{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y3d{bottom:18.240000pt;}
.y42{bottom:19.840000pt;}
.y15{bottom:21.280000pt;}
.y40{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y3c{bottom:33.600000pt;}
.y14{bottom:36.000000pt;}
.y5{bottom:37.280000pt;}
.ya{bottom:41.440000pt;}
.y13{bottom:46.880000pt;}
.y3b{bottom:48.960000pt;}
.yea{bottom:50.880000pt;}
.y1{bottom:57.280000pt;}
.y12{bottom:60.480000pt;}
.y3a{bottom:64.320000pt;}
.y9{bottom:65.306667pt;}
.y11{bottom:77.440000pt;}
.y39{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.ye2{bottom:82.880000pt;}
.y38{bottom:94.880000pt;}
.y10{bottom:99.040000pt;}
.y7{bottom:99.066667pt;}
.yb5{bottom:99.712000pt;}
.yb4{bottom:104.512000pt;}
.y94{bottom:108.512000pt;}
.y37{bottom:110.266667pt;}
.y27{bottom:117.946667pt;}
.y56{bottom:117.952000pt;}
.yb3{bottom:119.872000pt;}
.y93{bottom:123.872000pt;}
.y36{bottom:125.626667pt;}
.y55{bottom:128.672000pt;}
.ya3{bottom:128.832000pt;}
.y26{bottom:131.546667pt;}
.yd5{bottom:132.352000pt;}
.yb2{bottom:135.066667pt;}
.y92{bottom:139.226667pt;}
.y35{bottom:140.986667pt;}
.y54{bottom:144.026667pt;}
.ya2{bottom:144.186667pt;}
.yb1{bottom:147.546667pt;}
.y25{bottom:147.706667pt;}
.y91{bottom:154.586667pt;}
.ya4{bottom:155.066667pt;}
.y34{bottom:156.346667pt;}
.y53{bottom:159.386667pt;}
.yd4{bottom:163.066667pt;}
.y24{bottom:163.226667pt;}
.y90{bottom:169.786667pt;}
.y33{bottom:171.546667pt;}
.y52{bottom:174.586667pt;}
.ya1{bottom:174.746667pt;}
.yd3{bottom:178.426667pt;}
.y23{bottom:178.586667pt;}
.y8f{bottom:185.146667pt;}
.y32{bottom:186.906667pt;}
.y51{bottom:189.946667pt;}
.ya0{bottom:190.106667pt;}
.yd2{bottom:193.626667pt;}
.y22{bottom:194.106667pt;}
.y8e{bottom:200.506667pt;}
.y31{bottom:202.266667pt;}
.y9f{bottom:202.586667pt;}
.yf5{bottom:205.146667pt;}
.y50{bottom:205.306667pt;}
.yd1{bottom:208.986667pt;}
.y21{bottom:209.626667pt;}
.y8d{bottom:215.866667pt;}
.y30{bottom:217.626667pt;}
.y4f{bottom:220.666667pt;}
.yd0{bottom:224.346667pt;}
.y20{bottom:224.986667pt;}
.y8c{bottom:231.226667pt;}
.y2f{bottom:232.986667pt;}
.ycf{bottom:239.706667pt;}
.y1f{bottom:240.506667pt;}
.y4e{bottom:240.666667pt;}
.y8b{bottom:246.586667pt;}
.y2e{bottom:248.186667pt;}
.y4d{bottom:251.386667pt;}
.yce{bottom:255.066667pt;}
.y1e{bottom:256.026667pt;}
.y8a{bottom:261.786667pt;}
.y2d{bottom:263.546667pt;}
.y4c{bottom:266.586667pt;}
.ycd{bottom:270.426667pt;}
.y1d{bottom:271.386667pt;}
.y89{bottom:277.146667pt;}
.y2c{bottom:278.906667pt;}
.ycc{bottom:283.546667pt;}
.y4b{bottom:286.586667pt;}
.y1c{bottom:286.906667pt;}
.y88{bottom:292.506667pt;}
.y2b{bottom:294.266667pt;}
.y4a{bottom:297.306667pt;}
.ycb{bottom:299.586667pt;}
.y1b{bottom:302.586667pt;}
.y87{bottom:307.906667pt;}
.y2a{bottom:309.626667pt;}
.y49{bottom:312.706667pt;}
.yca{bottom:315.586667pt;}
.y86{bottom:323.266667pt;}
.y29{bottom:324.986667pt;}
.y1a{bottom:326.906667pt;}
.y48{bottom:328.066667pt;}
.yc9{bottom:331.586667pt;}
.y85{bottom:338.466667pt;}
.y28{bottom:340.226667pt;}
.y19{bottom:342.626667pt;}
.y47{bottom:343.426667pt;}
.yc8{bottom:347.586667pt;}
.y84{bottom:353.826667pt;}
.yf4{bottom:358.466667pt;}
.y46{bottom:358.626667pt;}
.yc7{bottom:363.586667pt;}
.y83{bottom:369.186667pt;}
.y45{bottom:373.986667pt;}
.yc6{bottom:379.426667pt;}
.y82{bottom:384.546667pt;}
.y44{bottom:389.346667pt;}
.yb7{bottom:395.426667pt;}
.yb0{bottom:399.746667pt;}
.y81{bottom:399.906667pt;}
.y3f{bottom:401.826667pt;}
.yc5{bottom:411.426667pt;}
.yaf{bottom:415.106667pt;}
.y80{bottom:415.266667pt;}
.yf3{bottom:419.906667pt;}
.yc4{bottom:427.426667pt;}
.y7f{bottom:430.466667pt;}
.y18{bottom:434.306667pt;}
.yc3{bottom:443.426667pt;}
.y7e{bottom:445.826667pt;}
.y9e{bottom:451.426667pt;}
.yae{bottom:458.306667pt;}
.yc2{bottom:459.426667pt;}
.y7d{bottom:461.186667pt;}
.y9d{bottom:466.786667pt;}
.yc1{bottom:475.426667pt;}
.y7c{bottom:476.546667pt;}
.y9c{bottom:482.146667pt;}
.ya5{bottom:484.866667pt;}
.yc0{bottom:491.426667pt;}
.y7b{bottom:491.906667pt;}
.y9b{bottom:497.506667pt;}
.y7a{bottom:507.266667pt;}
.ybf{bottom:507.426667pt;}
.y9a{bottom:512.866667pt;}
.y79{bottom:522.466667pt;}
.y99{bottom:528.226667pt;}
.y78{bottom:537.853333pt;}
.y98{bottom:540.573333pt;}
.ybe{bottom:541.693333pt;}
.y77{bottom:553.213333pt;}
.ybd{bottom:557.053333pt;}
.y76{bottom:568.573333pt;}
.yef{bottom:570.173333pt;}
.y75{bottom:583.933333pt;}
.yee{bottom:586.173333pt;}
.y74{bottom:599.133333pt;}
.ye9{bottom:602.173333pt;}
.y73{bottom:614.493333pt;}
.yed{bottom:618.173333pt;}
.yf2{bottom:619.133333pt;}
.y72{bottom:629.853333pt;}
.yec{bottom:634.173333pt;}
.y71{bottom:645.213333pt;}
.yeb{bottom:650.173333pt;}
.y70{bottom:660.573333pt;}
.yf1{bottom:665.213333pt;}
.ye8{bottom:666.173333pt;}
.y6f{bottom:675.933333pt;}
.ye1{bottom:682.173333pt;}
.y6e{bottom:691.133333pt;}
.ye7{bottom:698.173333pt;}
.y6d{bottom:706.493333pt;}
.ye6{bottom:714.173333pt;}
.y6c{bottom:721.853333pt;}
.ye5{bottom:730.173333pt;}
.y6b{bottom:737.213333pt;}
.ye4{bottom:746.173333pt;}
.yad{bottom:749.853333pt;}
.y6a{bottom:752.573333pt;}
.ye3{bottom:762.173333pt;}
.y97{bottom:763.773333pt;}
.yac{bottom:765.213333pt;}
.y69{bottom:767.933333pt;}
.y96{bottom:776.293333pt;}
.yb9{bottom:776.933333pt;}
.ye0{bottom:778.213333pt;}
.yab{bottom:780.613333pt;}
.y68{bottom:783.173333pt;}
.y16{bottom:787.013333pt;}
.ydf{bottom:794.213333pt;}
.yaa{bottom:795.813333pt;}
.y67{bottom:798.533333pt;}
.yde{bottom:810.213333pt;}
.ya9{bottom:811.173333pt;}
.yf{bottom:813.253333pt;}
.y66{bottom:813.893333pt;}
.ya8{bottom:823.653333pt;}
.ydd{bottom:826.213333pt;}
.y65{bottom:829.253333pt;}
.y64{bottom:844.613333pt;}
.y63{bottom:859.973333pt;}
.ybc{bottom:864.133333pt;}
.y62{bottom:875.173333pt;}
.ybb{bottom:879.493333pt;}
.y61{bottom:890.533333pt;}
.ydc{bottom:892.613333pt;}
.y60{bottom:905.893333pt;}
.ydb{bottom:908.613333pt;}
.y5f{bottom:921.253333pt;}
.yda{bottom:924.613333pt;}
.yd{bottom:925.733333pt;}
.y5e{bottom:936.613333pt;}
.yd9{bottom:940.613333pt;}
.y6{bottom:948.293333pt;}
.y5d{bottom:951.813333pt;}
.yd8{bottom:956.613333pt;}
.y5c{bottom:967.173333pt;}
.yd7{bottom:972.613333pt;}
.y5b{bottom:982.533333pt;}
.yd6{bottom:988.613333pt;}
.y5a{bottom:997.893333pt;}
.yf0{bottom:1002.533333pt;}
.y95{bottom:1013.280000pt;}
.y59{bottom:1017.920000pt;}
.y58{bottom:1028.640000pt;}
.y57{bottom:1043.840000pt;}
.h28{height:15.200000pt;}
.h26{height:15.360000pt;}
.h2b{height:15.392000pt;}
.h22{height:16.160000pt;}
.h25{height:16.320000pt;}
.h24{height:19.360000pt;}
.hb{height:22.240000pt;}
.h1e{height:24.131250pt;}
.h20{height:24.384375pt;}
.h12{height:26.240000pt;}
.h11{height:28.536563pt;}
.h2{height:29.312000pt;}
.h29{height:30.720000pt;}
.h27{height:30.752000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h21{height:36.883125pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h18{height:37.499062pt;}
.h2e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h4{height:41.976562pt;}
.h15{height:42.649687pt;}
.h1f{height:42.691250pt;}
.h1d{height:42.851250pt;}
.h2d{height:42.944375pt;}
.h17{height:44.215312pt;}
.h23{height:44.768125pt;}
.h1c{height:46.454062pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h2c{height:63.360000pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h2a{height:95.392000pt;}
.h7{height:108.032000pt;}
.hc{height:112.480000pt;}
.h14{height:352.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w15{width:75.712000pt;}
.wf{width:79.392000pt;}
.w11{width:80.512000pt;}
.w17{width:96.960000pt;}
.w12{width:129.120000pt;}
.w5{width:135.066667pt;}
.w18{width:189.786667pt;}
.w8{width:198.466667pt;}
.w14{width:259.066667pt;}
.w16{width:299.266667pt;}
.wc{width:348.706667pt;}
.we{width:362.946667pt;}
.w10{width:372.546667pt;}
.w13{width:403.933333pt;}
.wd{width:427.133333pt;}
.wb{width:443.933333pt;}
.wa{width:455.933333pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w19{width:587.293333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.720000pt;}
.x2{left:7.680000pt;}
.x19{left:9.600000pt;}
.xe{left:11.200000pt;}
.xf{left:19.072000pt;}
.xc{left:22.752000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x2c{left:96.031988pt;}
.x16{left:112.351988pt;}
.x2d{left:120.031988pt;}
.x1e{left:141.786655pt;}
.x25{left:145.146667pt;}
.x18{left:159.226667pt;}
.x1a{left:165.306667pt;}
.x11{left:191.266667pt;}
.x20{left:198.906667pt;}
.x6{left:199.866667pt;}
.xd{left:201.186667pt;}
.x21{left:214.426667pt;}
.x1f{left:224.026667pt;}
.x23{left:233.146655pt;}
.x24{left:246.946655pt;}
.x22{left:251.266655pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x10{left:285.026667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x14{left:373.186655pt;}
.xa{left:405.066667pt;}
.x2a{left:441.373333pt;}
.x29{left:469.693333pt;}
.x26{left:518.493333pt;}
.x2b{left:538.973333pt;}
.x1d{left:566.973322pt;}
.x1b{left:568.093322pt;}
.x15{left:574.333322pt;}
.x17{left:575.933322pt;}
.x13{left:576.893322pt;}
.x1c{left:578.013322pt;}
.x28{left:599.653333pt;}
.x3{left:663.013333pt;}
}




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