
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_dcca74c4de71b7a5cfd2f04a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_50eece92f52552c4bb40a538.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_069c7e0f615c2c01d52f925a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af59584081f852be40503eb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.813477;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_a09468b22d12624d38c974b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_f7f5e00d0b9617d40a0db218.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_cc257d11d0a900b99b07883c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_42b758d75ba31d785cd125fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_b5155ba7ebd08f5fdeee8b06.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.957031;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_21c13e6342e4c69332d4be28.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8f85c246eeda30aecddb9c12.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_1d89949dbf5b00691643f8e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b9e5fbf803f9015109671d22.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.095703;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:-20.880000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.160000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:61.740000px;}
.ls1e{letter-spacing:-6.600000px;}
.ls1d{letter-spacing:-4.428000px;}
.lsa{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.511800px;}
.lsc{letter-spacing:0.513600px;}
.ls11{letter-spacing:1.386720px;}
.ls1f{letter-spacing:6.660000px;}
.ls20{letter-spacing:16.506720px;}
.ls4{letter-spacing:19.620000px;}
.lse{letter-spacing:22.986720px;}
.ls3{letter-spacing:25.356000px;}
.ls1a{letter-spacing:41.706720px;}
.lsd{letter-spacing:46.026720px;}
.ls0{letter-spacing:80.100000px;}
.ls12{letter-spacing:95.520000px;}
.ls13{letter-spacing:806.340000px;}
.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:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.ws16{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.146400px;}
.ws15{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.wse{word-spacing:-14.976000px;}
.ws6{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.479800px;}
.ws1b{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.500000px;}
.ws19{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws1a{word-spacing:-8.340000px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:68.108400px;}
.wsd{word-spacing:72.961920px;}
.ws11{word-spacing:88.443120px;}
.wsc{word-spacing:95.581920px;}
.ws10{word-spacing:150.696720px;}
.wsb{word-spacing:237.540960px;}
.wsf{word-spacing:283.200960px;}
._3{margin-left:-8.879760px;}
._7{margin-left:-6.835200px;}
._8{margin-left:-5.280000px;}
._a{margin-left:-4.193280px;}
._1{margin-left:-3.179520px;}
._4{margin-left:-2.149200px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._5{width:2.552880px;}
._b{width:4.116480px;}
._11{width:5.387760px;}
._12{width:6.803280px;}
._26{width:8.054880px;}
._16{width:9.063840px;}
._6{width:10.134720px;}
._9{width:11.672640px;}
._13{width:12.728880px;}
._14{width:13.766400px;}
._18{width:16.374240px;}
._17{width:17.868240px;}
._f{width:19.075680px;}
._e{width:20.257920px;}
._15{width:21.358560px;}
._10{width:23.425920px;}
._c{width:26.304480px;}
._28{width:29.456640px;}
._25{width:31.483440px;}
._27{width:32.987520px;}
._24{width:36.871920px;}
._29{width:48.245040px;}
._23{width:49.600800px;}
._22{width:51.094800px;}
._d{width:90.058320px;}
._1f{width:107.472000px;}
._20{width:118.750560px;}
._1a{width:133.208400px;}
._21{width:134.283840px;}
._1b{width:143.562432px;}
._1c{width:187.654080px;}
._1e{width:200.920800px;}
._1d{width:214.920000px;}
._19{width:246.246960px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(70,120,134);}
.fc6{color:rgb(11,30,49);}
.fc1{color:rgb(79,129,189);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y50{bottom:2.340000px;}
.y69{bottom:2.520000px;}
.y5e{bottom:2.565000px;}
.y72{bottom:2.700000px;}
.y100{bottom:3.240000px;}
.y70{bottom:5.040000px;}
.ydb{bottom:5.400000px;}
.yd9{bottom:5.430000px;}
.y19{bottom:5.760000px;}
.y30{bottom:5.940000px;}
.yb1{bottom:6.225000px;}
.yaf{bottom:6.300000px;}
.yf2{bottom:8.280000px;}
.ye7{bottom:8.460000px;}
.y114{bottom:9.000000px;}
.ye3{bottom:10.260000px;}
.y98{bottom:10.620000px;}
.y82{bottom:10.650000px;}
.y9a{bottom:10.800000px;}
.y6c{bottom:12.240000px;}
.yb8{bottom:13.500000px;}
.ycf{bottom:13.890000px;}
.ya5{bottom:14.010000px;}
.y61{bottom:14.400000px;}
.y7{bottom:14.760000px;}
.y110{bottom:15.300000px;}
.ycb{bottom:15.480000px;}
.y7f{bottom:16.020000px;}
.y11b{bottom:16.200000px;}
.y75{bottom:16.740000px;}
.y11f{bottom:16.785000px;}
.yed{bottom:17.640000px;}
.y117{bottom:17.820000px;}
.yb4{bottom:17.850000px;}
.y112{bottom:19.440000px;}
.y8d{bottom:21.060000px;}
.y89{bottom:21.525000px;}
.y53{bottom:23.940000px;}
.ye5{bottom:25.020000px;}
.yeb{bottom:25.560000px;}
.y121{bottom:25.605000px;}
.y2f{bottom:25.740000px;}
.y10f{bottom:25.770000px;}
.yc1{bottom:25.920000px;}
.y118{bottom:27.180000px;}
.y113{bottom:28.800000px;}
.yf3{bottom:34.200000px;}
.yce{bottom:35.565000px;}
.ya4{bottom:35.670000px;}
.y11a{bottom:36.000000px;}
.y11e{bottom:36.585000px;}
.y116{bottom:37.620000px;}
.yf0{bottom:40.320000px;}
.y6{bottom:43.920000px;}
.y11c{bottom:45.360000px;}
.y2e{bottom:45.540000px;}
.y83{bottom:45.690000px;}
.y120{bottom:46.485000px;}
.y88{bottom:51.735000px;}
.ycd{bottom:56.550000px;}
.yd{bottom:57.240000px;}
.ya3{bottom:57.390000px;}
.yde{bottom:63.540000px;}
.y5{bottom:64.080000px;}
.y2d{bottom:65.385000px;}
.yd0{bottom:67.110000px;}
.y7e{bottom:73.440000px;}
.yb{bottom:73.800000px;}
.yff{bottom:75.780000px;}
.ya{bottom:78.300000px;}
.y5c{bottom:78.840000px;}
.ya2{bottom:79.050000px;}
.yca{bottom:81.900000px;}
.y87{bottom:81.975000px;}
.y2c{bottom:85.185000px;}
.y4{bottom:86.400000px;}
.yfe{bottom:93.060000px;}
.y154{bottom:95.400000px;}
.y12f{bottom:96.120000px;}
.y159{bottom:96.480000px;}
.yd1{bottom:97.350000px;}
.y5b{bottom:98.640000px;}
.ya1{bottom:100.050000px;}
.y7d{bottom:103.500000px;}
.y3c{bottom:104.220000px;}
.y2b{bottom:105.165000px;}
.y9{bottom:107.490000px;}
.ya6{bottom:110.595000px;}
.yc9{bottom:111.420000px;}
.y86{bottom:112.170000px;}
.y153{bottom:115.200000px;}
.y12e{bottom:115.920000px;}
.y158{bottom:116.280000px;}
.y5a{bottom:118.440000px;}
.y3{bottom:122.610000px;}
.y7c{bottom:123.300000px;}
.y81{bottom:123.450000px;}
.y3b{bottom:124.020000px;}
.y2a{bottom:124.965000px;}
.ydd{bottom:126.180000px;}
.yd2{bottom:127.590000px;}
.yc8{bottom:131.220000px;}
.ya7{bottom:134.790000px;}
.ydc{bottom:135.000000px;}
.y152{bottom:135.180000px;}
.y12d{bottom:135.720000px;}
.y157{bottom:136.080000px;}
.y8{bottom:136.650000px;}
.y59{bottom:138.240000px;}
.y85{bottom:142.380000px;}
.y3a{bottom:143.820000px;}
.y29{bottom:144.765000px;}
.y151{bottom:155.010000px;}
.y12c{bottom:155.730000px;}
.y156{bottom:155.910000px;}
.yd3{bottom:157.785000px;}
.y58{bottom:158.250000px;}
.ya8{bottom:158.970000px;}
.y39{bottom:163.830000px;}
.y28{bottom:164.565000px;}
.y9f{bottom:167.250000px;}
.yd8{bottom:170.280000px;}
.y84{bottom:171.330000px;}
.y150{bottom:174.810000px;}
.y12b{bottom:175.530000px;}
.y155{bottom:175.890000px;}
.y57{bottom:178.050000px;}
.ya9{bottom:183.165000px;}
.y38{bottom:183.630000px;}
.y27{bottom:184.365000px;}
.y9e{bottom:187.230000px;}
.yd4{bottom:188.025000px;}
.y14f{bottom:194.610000px;}
.y12a{bottom:195.330000px;}
.y56{bottom:197.850000px;}
.y37{bottom:203.430000px;}
.y26{bottom:204.165000px;}
.y9d{bottom:207.030000px;}
.yaa{bottom:207.330000px;}
.y14e{bottom:214.410000px;}
.y129{bottom:215.130000px;}
.y55{bottom:217.650000px;}
.yd5{bottom:218.265000px;}
.y36{bottom:223.230000px;}
.y25{bottom:224.145000px;}
.y9c{bottom:226.830000px;}
.yab{bottom:231.510000px;}
.y14d{bottom:234.390000px;}
.y128{bottom:234.930000px;}
.y67{bottom:236.910000px;}
.y54{bottom:237.450000px;}
.y35{bottom:243.030000px;}
.y24{bottom:243.945000px;}
.y9b{bottom:246.630000px;}
.yd6{bottom:248.475000px;}
.y52{bottom:251.490000px;}
.y14c{bottom:254.190000px;}
.y127{bottom:254.910000px;}
.yac{bottom:255.705000px;}
.y66{bottom:256.890000px;}
.y34{bottom:263.010000px;}
.y23{bottom:263.745000px;}
.y99{bottom:269.670000px;}
.y14b{bottom:273.990000px;}
.y126{bottom:274.710000px;}
.yda{bottom:275.400000px;}
.y65{bottom:276.690000px;}
.yd7{bottom:278.715000px;}
.yad{bottom:279.900000px;}
.y33{bottom:282.810000px;}
.y22{bottom:283.545000px;}
.y51{bottom:289.470000px;}
.y14a{bottom:293.790000px;}
.y97{bottom:294.510000px;}
.y64{bottom:296.490000px;}
.y32{bottom:302.610000px;}
.y21{bottom:303.345000px;}
.y4f{bottom:309.270000px;}
.y149{bottom:313.590000px;}
.y125{bottom:314.310000px;}
.y63{bottom:316.290000px;}
.y96{bottom:319.170000px;}
.yb3{bottom:322.020000px;}
.y31{bottom:322.410000px;}
.y20{bottom:323.355000px;}
.y148{bottom:333.570000px;}
.y124{bottom:334.110000px;}
.y62{bottom:336.090000px;}
.y1a{bottom:337.170000px;}
.yc7{bottom:339.870000px;}
.y1f{bottom:343.155000px;}
.y7b{bottom:345.450000px;}
.y60{bottom:350.130000px;}
.y147{bottom:353.370000px;}
.y123{bottom:354.090000px;}
.yfd{bottom:358.050000px;}
.yc6{bottom:359.670000px;}
.y1e{bottom:362.955000px;}
.y7a{bottom:365.250000px;}
.y146{bottom:373.170000px;}
.y122{bottom:373.890000px;}
.yfc{bottom:377.850000px;}
.y5f{bottom:378.570000px;}
.yc5{bottom:379.470000px;}
.y1d{bottom:382.755000px;}
.y79{bottom:385.230000px;}
.y11d{bottom:388.650000px;}
.y145{bottom:392.970000px;}
.yfb{bottom:397.650000px;}
.y5d{bottom:398.370000px;}
.yc4{bottom:399.270000px;}
.y1c{bottom:402.555000px;}
.y78{bottom:405.075000px;}
.y144{bottom:412.815000px;}
.yfa{bottom:417.495000px;}
.yc3{bottom:419.295000px;}
.y1b{bottom:422.535000px;}
.y77{bottom:424.875000px;}
.y143{bottom:432.795000px;}
.yc2{bottom:439.095000px;}
.y76{bottom:444.675000px;}
.yb0{bottom:448.200000px;}
.yf9{bottom:449.535000px;}
.y119{bottom:451.155000px;}
.y142{bottom:452.595000px;}
.yc0{bottom:453.135000px;}
.y74{bottom:467.715000px;}
.yf8{bottom:469.515000px;}
.y141{bottom:472.395000px;}
.yf7{bottom:489.495000px;}
.yb2{bottom:489.780000px;}
.y140{bottom:492.195000px;}
.ybf{bottom:493.095000px;}
.y73{bottom:498.495000px;}
.yf6{bottom:509.475000px;}
.y13f{bottom:511.995000px;}
.y115{bottom:512.355000px;}
.ybe{bottom:512.895000px;}
.ycc{bottom:515.700000px;}
.y6f{bottom:518.295000px;}
.y13e{bottom:531.975000px;}
.yf5{bottom:541.335000px;}
.y13d{bottom:551.775000px;}
.yf4{bottom:555.375000px;}
.yae{bottom:561.600000px;}
.y13c{bottom:571.575000px;}
.y111{bottom:576.615000px;}
.yee{bottom:583.815000px;}
.y13b{bottom:591.375000px;}
.y95{bottom:609.375000px;}
.y13a{bottom:611.175000px;}
.y10e{bottom:624.315000px;}
.y94{bottom:629.175000px;}
.y139{bottom:631.155000px;}
.yf1{bottom:632.775000px;}
.y93{bottom:648.975000px;}
.y138{bottom:650.985000px;}
.yef{bottom:655.845000px;}
.y10d{bottom:664.845000px;}
.y92{bottom:668.805000px;}
.y137{bottom:670.785000px;}
.y91{bottom:688.785000px;}
.y136{bottom:690.585000px;}
.y10c{bottom:691.305000px;}
.y71{bottom:692.025000px;}
.y90{bottom:708.585000px;}
.y135{bottom:710.385000px;}
.yec{bottom:710.925000px;}
.y10b{bottom:711.105000px;}
.y8f{bottom:728.385000px;}
.y134{bottom:730.365000px;}
.y10a{bottom:730.905000px;}
.ye6{bottom:743.325000px;}
.y8e{bottom:748.185000px;}
.y133{bottom:750.165000px;}
.y109{bottom:750.705000px;}
.y8c{bottom:762.225000px;}
.y132{bottom:769.965000px;}
.y108{bottom:770.505000px;}
.y18{bottom:774.465000px;}
.yea{bottom:783.825000px;}
.y107{bottom:784.545000px;}
.y131{bottom:789.765000px;}
.y8b{bottom:797.325000px;}
.y17{bottom:800.025000px;}
.y130{bottom:809.565000px;}
.y106{bottom:812.985000px;}
.y8a{bottom:817.125000px;}
.ya0{bottom:820.260000px;}
.ybd{bottom:821.265000px;}
.ye9{bottom:824.145000px;}
.y16{bottom:825.045000px;}
.y4e{bottom:829.545000px;}
.y105{bottom:832.965000px;}
.ybc{bottom:841.245000px;}
.y15{bottom:845.025000px;}
.y4d{bottom:849.345000px;}
.y6e{bottom:860.145000px;}
.ybb{bottom:861.045000px;}
.ye8{bottom:864.645000px;}
.y14{bottom:864.825000px;}
.y4c{bottom:869.145000px;}
.y6d{bottom:879.945000px;}
.yba{bottom:880.845000px;}
.y13{bottom:884.625000px;}
.y4b{bottom:888.945000px;}
.y12{bottom:899.790000px;}
.yb9{bottom:900.690000px;}
.ye4{bottom:905.370000px;}
.y4a{bottom:908.790000px;}
.yb7{bottom:914.730000px;}
.y11{bottom:921.750000px;}
.y6b{bottom:922.830000px;}
.y49{bottom:928.770000px;}
.yb6{bottom:942.270000px;}
.ye2{bottom:945.150000px;}
.y10{bottom:946.050000px;}
.y48{bottom:948.570000px;}
.y6a{bottom:949.110000px;}
.yb5{bottom:962.250000px;}
.y47{bottom:968.370000px;}
.y68{bottom:968.910000px;}
.yf{bottom:970.890000px;}
.y80{bottom:972.360000px;}
.ye1{bottom:975.930000px;}
.y46{bottom:988.170000px;}
.ye0{bottom:995.730000px;}
.ye{bottom:1002.750000px;}
.y45{bottom:1007.970000px;}
.ydf{bottom:1015.710000px;}
.y44{bottom:1027.950000px;}
.yc{bottom:1030.110000px;}
.y1{bottom:1047.750000px;}
.y43{bottom:1067.550000px;}
.y42{bottom:1087.350000px;}
.y104{bottom:1098.330000px;}
.y41{bottom:1107.150000px;}
.y103{bottom:1118.130000px;}
.y40{bottom:1127.130000px;}
.y102{bottom:1137.930000px;}
.y3f{bottom:1146.960000px;}
.y101{bottom:1152.000000px;}
.y3e{bottom:1166.760000px;}
.y3d{bottom:1195.740000px;}
.h3{height:2.864531px;}
.h40{height:17.280000px;}
.hd{height:19.800000px;}
.h2a{height:19.980000px;}
.h26{height:21.420000px;}
.h31{height:21.960000px;}
.h3d{height:22.356000px;}
.h34{height:24.300000px;}
.h23{height:24.660000px;}
.h24{height:24.840000px;}
.h16{height:26.280000px;}
.h2b{height:27.540000px;}
.h14{height:28.440000px;}
.h41{height:28.800000px;}
.h2f{height:29.520000px;}
.h1c{height:30.060000px;}
.h1a{height:30.780000px;}
.h3a{height:31.680000px;}
.hb{height:34.855313px;}
.h21{height:35.100000px;}
.h11{height:37.980000px;}
.h35{height:39.060000px;}
.h39{height:39.600000px;}
.h38{height:39.780000px;}
.h43{height:39.816000px;}
.h2d{height:39.960000px;}
.h37{height:39.996000px;}
.he{height:44.294766px;}
.h27{height:46.669922px;}
.h44{height:46.980000px;}
.h3e{height:48.240000px;}
.h12{height:48.496641px;}
.h9{height:49.097812px;}
.h33{height:52.581797px;}
.hc{height:53.573906px;}
.h1f{height:53.703000px;}
.h3c{height:54.360000px;}
.ha{height:54.712969px;}
.h7{height:59.383125px;}
.h46{height:60.480000px;}
.h47{height:61.596000px;}
.h6{height:62.226562px;}
.h45{height:63.540000px;}
.h5{height:67.824844px;}
.h8{height:70.978359px;}
.h4{height:105.060586px;}
.h1e{height:115.313906px;}
.h3b{height:158.790000px;}
.h2{height:161.310000px;}
.h18{height:162.180000px;}
.h19{height:173.730000px;}
.h32{height:199.260000px;}
.h36{height:201.090000px;}
.h2e{height:202.890000px;}
.h1d{height:208.440000px;}
.h15{height:211.890000px;}
.h1b{height:216.390000px;}
.h29{height:218.550000px;}
.h3f{height:250.050000px;}
.h42{height:259.410000px;}
.h28{height:281.700000px;}
.h22{height:284.430000px;}
.h30{height:299.880000px;}
.h25{height:300.960000px;}
.h2c{height:302.610000px;}
.h20{height:304.050000px;}
.h17{height:335.910000px;}
.hf{height:436.575000px;}
.h10{height:514.335000px;}
.h13{height:584.025000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:27.900000px;}
.w26{width:32.436000px;}
.w15{width:35.100000px;}
.w1d{width:36.540000px;}
.w1e{width:36.720000px;}
.w20{width:42.516000px;}
.w22{width:83.880000px;}
.w25{width:106.560000px;}
.w23{width:106.596000px;}
.w24{width:106.740000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w21{width:182.910000px;}
.wd{width:264.990000px;}
.w7{width:287.895000px;}
.wc{width:290.775000px;}
.w2a{width:291.090000px;}
.w17{width:297.750000px;}
.w18{width:329.655000px;}
.w2b{width:398.955000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w1f{width:501.480000px;}
.w29{width:548.385000px;}
.we{width:555.765000px;}
.w16{width:566.100000px;}
.w10{width:584.280000px;}
.w19{width:627.405000px;}
.w12{width:637.845000px;}
.wb{width:638.070000px;}
.wf{width:640.365000px;}
.w13{width:648.000000px;}
.w1b{width:659.085000px;}
.w11{width:672.405000px;}
.w1c{width:684.000000px;}
.w1a{width:709.845000px;}
.w28{width:733.680000px;}
.w27{width:768.600000px;}
.w6{width:781.200000px;}
.wa{width:799.380000px;}
.w9{width:799.560000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:4.890000px;}
.x9{left:8.100000px;}
.x52{left:18.720000px;}
.x4a{left:22.350000px;}
.x23{left:30.636000px;}
.x53{left:40.140000px;}
.x2b{left:41.220000px;}
.xd{left:46.800000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x41{left:61.305000px;}
.x24{left:62.640000px;}
.x3c{left:66.414000px;}
.x37{left:70.554000px;}
.x4b{left:79.740000px;}
.xc{left:80.999987px;}
.x14{left:83.340000px;}
.x39{left:91.656000px;}
.x3e{left:99.540000px;}
.x50{left:101.556000px;}
.x44{left:104.796000px;}
.x54{left:108.035987px;}
.x7{left:109.845000px;}
.x12{left:116.850000px;}
.x2a{left:118.260000px;}
.x5{left:119.385000px;}
.x40{left:125.070000px;}
.x1e{left:126.396000px;}
.x28{left:127.656000px;}
.x33{left:132.876000px;}
.x2{left:136.290000px;}
.x17{left:139.350000px;}
.x21{left:140.619000px;}
.x13{left:144.750000px;}
.x2c{left:146.160000px;}
.x3b{left:148.314000px;}
.x20{left:159.339000px;}
.x16{left:160.410000px;}
.x31{left:162.900000px;}
.x10{left:164.190000px;}
.x32{left:166.140000px;}
.x18{left:168.690000px;}
.x4e{left:172.290000px;}
.x42{left:174.780000px;}
.x3f{left:182.595000px;}
.x1c{left:184.005000px;}
.x1d{left:197.865000px;}
.x22{left:199.950000px;}
.x3{left:208.470000px;}
.x27{left:211.899000px;}
.xb{left:215.309987px;}
.x1b{left:226.305000px;}
.x38{left:233.859000px;}
.x6{left:236.385000px;}
.xf{left:247.395000px;}
.x43{left:259.530000px;}
.x4d{left:264.315000px;}
.x36{left:279.615000px;}
.x19{left:282.675000px;}
.x45{left:287.715000px;}
.x34{left:296.139000px;}
.x30{left:299.880000px;}
.x25{left:303.045000px;}
.xa{left:343.875000px;}
.x46{left:371.595000px;}
.x51{left:392.655000px;}
.x35{left:430.635000px;}
.x1a{left:459.465000px;}
.x47{left:478.185000px;}
.x2d{left:495.720000px;}
.x3d{left:509.829000px;}
.x4f{left:540.120000px;}
.x2f{left:546.660000px;}
.x48{left:584.925000px;}
.x1f{left:588.354000px;}
.x29{left:602.574000px;}
.x15{left:611.610000px;}
.x26{left:656.214000px;}
.x8{left:681.270000px;}
.x3a{left:692.214000px;}
.x4c{left:730.440000px;}
.xe{left:756.510000px;}
.x11{left:791.280000px;}
.x49{left:798.090000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.586667pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:54.880000pt;}
.ls1e{letter-spacing:-5.866667pt;}
.ls1d{letter-spacing:-3.936000pt;}
.lsa{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.454933pt;}
.lsc{letter-spacing:0.456533pt;}
.ls11{letter-spacing:1.232640pt;}
.ls1f{letter-spacing:5.920000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls4{letter-spacing:17.440000pt;}
.lse{letter-spacing:20.432640pt;}
.ls3{letter-spacing:22.538667pt;}
.ls1a{letter-spacing:37.072640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls0{letter-spacing:71.200000pt;}
.ls12{letter-spacing:84.906667pt;}
.ls13{letter-spacing:716.746667pt;}
.ws17{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.ws16{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.463467pt;}
.ws15{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.312000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws18{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.870933pt;}
.ws1b{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws19{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws1a{word-spacing:-7.413333pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:60.540800pt;}
.wsd{word-spacing:64.855040pt;}
.ws11{word-spacing:78.616107pt;}
.wsc{word-spacing:84.961707pt;}
.ws10{word-spacing:133.952640pt;}
.wsb{word-spacing:211.147520pt;}
.wsf{word-spacing:251.734187pt;}
._3{margin-left:-7.893120pt;}
._7{margin-left:-6.075733pt;}
._8{margin-left:-4.693333pt;}
._a{margin-left:-3.727360pt;}
._1{margin-left:-2.826240pt;}
._4{margin-left:-1.910400pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._5{width:2.269227pt;}
._b{width:3.659093pt;}
._11{width:4.789120pt;}
._12{width:6.047360pt;}
._26{width:7.159893pt;}
._16{width:8.056747pt;}
._6{width:9.008640pt;}
._9{width:10.375680pt;}
._13{width:11.314560pt;}
._14{width:12.236800pt;}
._18{width:14.554880pt;}
._17{width:15.882880pt;}
._f{width:16.956160pt;}
._e{width:18.007040pt;}
._15{width:18.985387pt;}
._10{width:20.823040pt;}
._c{width:23.381760pt;}
._28{width:26.183680pt;}
._25{width:27.985280pt;}
._27{width:29.322240pt;}
._24{width:32.775040pt;}
._29{width:42.884480pt;}
._23{width:44.089600pt;}
._22{width:45.417600pt;}
._d{width:80.051840pt;}
._1f{width:95.530667pt;}
._20{width:105.556053pt;}
._1a{width:118.407467pt;}
._21{width:119.363413pt;}
._1b{width:127.611051pt;}
._1c{width:166.803627pt;}
._1e{width:178.596267pt;}
._1d{width:191.040000pt;}
._19{width:218.886187pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y50{bottom:2.080000pt;}
.y69{bottom:2.240000pt;}
.y5e{bottom:2.280000pt;}
.y72{bottom:2.400000pt;}
.y100{bottom:2.880000pt;}
.y70{bottom:4.480000pt;}
.ydb{bottom:4.800000pt;}
.yd9{bottom:4.826667pt;}
.y19{bottom:5.120000pt;}
.y30{bottom:5.280000pt;}
.yb1{bottom:5.533333pt;}
.yaf{bottom:5.600000pt;}
.yf2{bottom:7.360000pt;}
.ye7{bottom:7.520000pt;}
.y114{bottom:8.000000pt;}
.ye3{bottom:9.120000pt;}
.y98{bottom:9.440000pt;}
.y82{bottom:9.466667pt;}
.y9a{bottom:9.600000pt;}
.y6c{bottom:10.880000pt;}
.yb8{bottom:12.000000pt;}
.ycf{bottom:12.346667pt;}
.ya5{bottom:12.453333pt;}
.y61{bottom:12.800000pt;}
.y7{bottom:13.120000pt;}
.y110{bottom:13.600000pt;}
.ycb{bottom:13.760000pt;}
.y7f{bottom:14.240000pt;}
.y11b{bottom:14.400000pt;}
.y75{bottom:14.880000pt;}
.y11f{bottom:14.920000pt;}
.yed{bottom:15.680000pt;}
.y117{bottom:15.840000pt;}
.yb4{bottom:15.866667pt;}
.y112{bottom:17.280000pt;}
.y8d{bottom:18.720000pt;}
.y89{bottom:19.133333pt;}
.y53{bottom:21.280000pt;}
.ye5{bottom:22.240000pt;}
.yeb{bottom:22.720000pt;}
.y121{bottom:22.760000pt;}
.y2f{bottom:22.880000pt;}
.y10f{bottom:22.906667pt;}
.yc1{bottom:23.040000pt;}
.y118{bottom:24.160000pt;}
.y113{bottom:25.600000pt;}
.yf3{bottom:30.400000pt;}
.yce{bottom:31.613333pt;}
.ya4{bottom:31.706667pt;}
.y11a{bottom:32.000000pt;}
.y11e{bottom:32.520000pt;}
.y116{bottom:33.440000pt;}
.yf0{bottom:35.840000pt;}
.y6{bottom:39.040000pt;}
.y11c{bottom:40.320000pt;}
.y2e{bottom:40.480000pt;}
.y83{bottom:40.613333pt;}
.y120{bottom:41.320000pt;}
.y88{bottom:45.986667pt;}
.ycd{bottom:50.266667pt;}
.yd{bottom:50.880000pt;}
.ya3{bottom:51.013333pt;}
.yde{bottom:56.480000pt;}
.y5{bottom:56.960000pt;}
.y2d{bottom:58.120000pt;}
.yd0{bottom:59.653333pt;}
.y7e{bottom:65.280000pt;}
.yb{bottom:65.600000pt;}
.yff{bottom:67.360000pt;}
.ya{bottom:69.600000pt;}
.y5c{bottom:70.080000pt;}
.ya2{bottom:70.266667pt;}
.yca{bottom:72.800000pt;}
.y87{bottom:72.866667pt;}
.y2c{bottom:75.720000pt;}
.y4{bottom:76.800000pt;}
.yfe{bottom:82.720000pt;}
.y154{bottom:84.800000pt;}
.y12f{bottom:85.440000pt;}
.y159{bottom:85.760000pt;}
.yd1{bottom:86.533333pt;}
.y5b{bottom:87.680000pt;}
.ya1{bottom:88.933333pt;}
.y7d{bottom:92.000000pt;}
.y3c{bottom:92.640000pt;}
.y2b{bottom:93.480000pt;}
.y9{bottom:95.546667pt;}
.ya6{bottom:98.306667pt;}
.yc9{bottom:99.040000pt;}
.y86{bottom:99.706667pt;}
.y153{bottom:102.400000pt;}
.y12e{bottom:103.040000pt;}
.y158{bottom:103.360000pt;}
.y5a{bottom:105.280000pt;}
.y3{bottom:108.986667pt;}
.y7c{bottom:109.600000pt;}
.y81{bottom:109.733333pt;}
.y3b{bottom:110.240000pt;}
.y2a{bottom:111.080000pt;}
.ydd{bottom:112.160000pt;}
.yd2{bottom:113.413333pt;}
.yc8{bottom:116.640000pt;}
.ya7{bottom:119.813333pt;}
.ydc{bottom:120.000000pt;}
.y152{bottom:120.160000pt;}
.y12d{bottom:120.640000pt;}
.y157{bottom:120.960000pt;}
.y8{bottom:121.466667pt;}
.y59{bottom:122.880000pt;}
.y85{bottom:126.560000pt;}
.y3a{bottom:127.840000pt;}
.y29{bottom:128.680000pt;}
.y151{bottom:137.786667pt;}
.y12c{bottom:138.426667pt;}
.y156{bottom:138.586667pt;}
.yd3{bottom:140.253333pt;}
.y58{bottom:140.666667pt;}
.ya8{bottom:141.306667pt;}
.y39{bottom:145.626667pt;}
.y28{bottom:146.280000pt;}
.y9f{bottom:148.666667pt;}
.yd8{bottom:151.360000pt;}
.y84{bottom:152.293333pt;}
.y150{bottom:155.386667pt;}
.y12b{bottom:156.026667pt;}
.y155{bottom:156.346667pt;}
.y57{bottom:158.266667pt;}
.ya9{bottom:162.813333pt;}
.y38{bottom:163.226667pt;}
.y27{bottom:163.880000pt;}
.y9e{bottom:166.426667pt;}
.yd4{bottom:167.133333pt;}
.y14f{bottom:172.986667pt;}
.y12a{bottom:173.626667pt;}
.y56{bottom:175.866667pt;}
.y37{bottom:180.826667pt;}
.y26{bottom:181.480000pt;}
.y9d{bottom:184.026667pt;}
.yaa{bottom:184.293333pt;}
.y14e{bottom:190.586667pt;}
.y129{bottom:191.226667pt;}
.y55{bottom:193.466667pt;}
.yd5{bottom:194.013333pt;}
.y36{bottom:198.426667pt;}
.y25{bottom:199.240000pt;}
.y9c{bottom:201.626667pt;}
.yab{bottom:205.786667pt;}
.y14d{bottom:208.346667pt;}
.y128{bottom:208.826667pt;}
.y67{bottom:210.586667pt;}
.y54{bottom:211.066667pt;}
.y35{bottom:216.026667pt;}
.y24{bottom:216.840000pt;}
.y9b{bottom:219.226667pt;}
.yd6{bottom:220.866667pt;}
.y52{bottom:223.546667pt;}
.y14c{bottom:225.946667pt;}
.y127{bottom:226.586667pt;}
.yac{bottom:227.293333pt;}
.y66{bottom:228.346667pt;}
.y34{bottom:233.786667pt;}
.y23{bottom:234.440000pt;}
.y99{bottom:239.706667pt;}
.y14b{bottom:243.546667pt;}
.y126{bottom:244.186667pt;}
.yda{bottom:244.800000pt;}
.y65{bottom:245.946667pt;}
.yd7{bottom:247.746667pt;}
.yad{bottom:248.800000pt;}
.y33{bottom:251.386667pt;}
.y22{bottom:252.040000pt;}
.y51{bottom:257.306667pt;}
.y14a{bottom:261.146667pt;}
.y97{bottom:261.786667pt;}
.y64{bottom:263.546667pt;}
.y32{bottom:268.986667pt;}
.y21{bottom:269.640000pt;}
.y4f{bottom:274.906667pt;}
.y149{bottom:278.746667pt;}
.y125{bottom:279.386667pt;}
.y63{bottom:281.146667pt;}
.y96{bottom:283.706667pt;}
.yb3{bottom:286.240000pt;}
.y31{bottom:286.586667pt;}
.y20{bottom:287.426667pt;}
.y148{bottom:296.506667pt;}
.y124{bottom:296.986667pt;}
.y62{bottom:298.746667pt;}
.y1a{bottom:299.706667pt;}
.yc7{bottom:302.106667pt;}
.y1f{bottom:305.026667pt;}
.y7b{bottom:307.066667pt;}
.y60{bottom:311.226667pt;}
.y147{bottom:314.106667pt;}
.y123{bottom:314.746667pt;}
.yfd{bottom:318.266667pt;}
.yc6{bottom:319.706667pt;}
.y1e{bottom:322.626667pt;}
.y7a{bottom:324.666667pt;}
.y146{bottom:331.706667pt;}
.y122{bottom:332.346667pt;}
.yfc{bottom:335.866667pt;}
.y5f{bottom:336.506667pt;}
.yc5{bottom:337.306667pt;}
.y1d{bottom:340.226667pt;}
.y79{bottom:342.426667pt;}
.y11d{bottom:345.466667pt;}
.y145{bottom:349.306667pt;}
.yfb{bottom:353.466667pt;}
.y5d{bottom:354.106667pt;}
.yc4{bottom:354.906667pt;}
.y1c{bottom:357.826667pt;}
.y78{bottom:360.066667pt;}
.y144{bottom:366.946667pt;}
.yfa{bottom:371.106667pt;}
.yc3{bottom:372.706667pt;}
.y1b{bottom:375.586667pt;}
.y77{bottom:377.666667pt;}
.y143{bottom:384.706667pt;}
.yc2{bottom:390.306667pt;}
.y76{bottom:395.266667pt;}
.yb0{bottom:398.400000pt;}
.yf9{bottom:399.586667pt;}
.y119{bottom:401.026667pt;}
.y142{bottom:402.306667pt;}
.yc0{bottom:402.786667pt;}
.y74{bottom:415.746667pt;}
.yf8{bottom:417.346667pt;}
.y141{bottom:419.906667pt;}
.yf7{bottom:435.106667pt;}
.yb2{bottom:435.360000pt;}
.y140{bottom:437.506667pt;}
.ybf{bottom:438.306667pt;}
.y73{bottom:443.106667pt;}
.yf6{bottom:452.866667pt;}
.y13f{bottom:455.106667pt;}
.y115{bottom:455.426667pt;}
.ybe{bottom:455.906667pt;}
.ycc{bottom:458.400000pt;}
.y6f{bottom:460.706667pt;}
.y13e{bottom:472.866667pt;}
.yf5{bottom:481.186667pt;}
.y13d{bottom:490.466667pt;}
.yf4{bottom:493.666667pt;}
.yae{bottom:499.200000pt;}
.y13c{bottom:508.066667pt;}
.y111{bottom:512.546667pt;}
.yee{bottom:518.946667pt;}
.y13b{bottom:525.666667pt;}
.y95{bottom:541.666667pt;}
.y13a{bottom:543.266667pt;}
.y10e{bottom:554.946667pt;}
.y94{bottom:559.266667pt;}
.y139{bottom:561.026667pt;}
.yf1{bottom:562.466667pt;}
.y93{bottom:576.866667pt;}
.y138{bottom:578.653333pt;}
.yef{bottom:582.973333pt;}
.y10d{bottom:590.973333pt;}
.y92{bottom:594.493333pt;}
.y137{bottom:596.253333pt;}
.y91{bottom:612.253333pt;}
.y136{bottom:613.853333pt;}
.y10c{bottom:614.493333pt;}
.y71{bottom:615.133333pt;}
.y90{bottom:629.853333pt;}
.y135{bottom:631.453333pt;}
.yec{bottom:631.933333pt;}
.y10b{bottom:632.093333pt;}
.y8f{bottom:647.453333pt;}
.y134{bottom:649.213333pt;}
.y10a{bottom:649.693333pt;}
.ye6{bottom:660.733333pt;}
.y8e{bottom:665.053333pt;}
.y133{bottom:666.813333pt;}
.y109{bottom:667.293333pt;}
.y8c{bottom:677.533333pt;}
.y132{bottom:684.413333pt;}
.y108{bottom:684.893333pt;}
.y18{bottom:688.413333pt;}
.yea{bottom:696.733333pt;}
.y107{bottom:697.373333pt;}
.y131{bottom:702.013333pt;}
.y8b{bottom:708.733333pt;}
.y17{bottom:711.133333pt;}
.y130{bottom:719.613333pt;}
.y106{bottom:722.653333pt;}
.y8a{bottom:726.333333pt;}
.ya0{bottom:729.120000pt;}
.ybd{bottom:730.013333pt;}
.ye9{bottom:732.573333pt;}
.y16{bottom:733.373333pt;}
.y4e{bottom:737.373333pt;}
.y105{bottom:740.413333pt;}
.ybc{bottom:747.773333pt;}
.y15{bottom:751.133333pt;}
.y4d{bottom:754.973333pt;}
.y6e{bottom:764.573333pt;}
.ybb{bottom:765.373333pt;}
.ye8{bottom:768.573333pt;}
.y14{bottom:768.733333pt;}
.y4c{bottom:772.573333pt;}
.y6d{bottom:782.173333pt;}
.yba{bottom:782.973333pt;}
.y13{bottom:786.333333pt;}
.y4b{bottom:790.173333pt;}
.y12{bottom:799.813333pt;}
.yb9{bottom:800.613333pt;}
.ye4{bottom:804.773333pt;}
.y4a{bottom:807.813333pt;}
.yb7{bottom:813.093333pt;}
.y11{bottom:819.333333pt;}
.y6b{bottom:820.293333pt;}
.y49{bottom:825.573333pt;}
.yb6{bottom:837.573333pt;}
.ye2{bottom:840.133333pt;}
.y10{bottom:840.933333pt;}
.y48{bottom:843.173333pt;}
.y6a{bottom:843.653333pt;}
.yb5{bottom:855.333333pt;}
.y47{bottom:860.773333pt;}
.y68{bottom:861.253333pt;}
.yf{bottom:863.013333pt;}
.y80{bottom:864.320000pt;}
.ye1{bottom:867.493333pt;}
.y46{bottom:878.373333pt;}
.ye0{bottom:885.093333pt;}
.ye{bottom:891.333333pt;}
.y45{bottom:895.973333pt;}
.ydf{bottom:902.853333pt;}
.y44{bottom:913.733333pt;}
.yc{bottom:915.653333pt;}
.y1{bottom:931.333333pt;}
.y43{bottom:948.933333pt;}
.y42{bottom:966.533333pt;}
.y104{bottom:976.293333pt;}
.y41{bottom:984.133333pt;}
.y103{bottom:993.893333pt;}
.y40{bottom:1001.893333pt;}
.y102{bottom:1011.493333pt;}
.y3f{bottom:1019.520000pt;}
.y101{bottom:1024.000000pt;}
.y3e{bottom:1037.120000pt;}
.y3d{bottom:1062.880000pt;}
.h3{height:2.546250pt;}
.h40{height:15.360000pt;}
.hd{height:17.600000pt;}
.h2a{height:17.760000pt;}
.h26{height:19.040000pt;}
.h31{height:19.520000pt;}
.h3d{height:19.872000pt;}
.h34{height:21.600000pt;}
.h23{height:21.920000pt;}
.h24{height:22.080000pt;}
.h16{height:23.360000pt;}
.h2b{height:24.480000pt;}
.h14{height:25.280000pt;}
.h41{height:25.600000pt;}
.h2f{height:26.240000pt;}
.h1c{height:26.720000pt;}
.h1a{height:27.360000pt;}
.h3a{height:28.160000pt;}
.hb{height:30.982500pt;}
.h21{height:31.200000pt;}
.h11{height:33.760000pt;}
.h35{height:34.720000pt;}
.h39{height:35.200000pt;}
.h38{height:35.360000pt;}
.h43{height:35.392000pt;}
.h2d{height:35.520000pt;}
.h37{height:35.552000pt;}
.he{height:39.373125pt;}
.h27{height:41.484375pt;}
.h44{height:41.760000pt;}
.h3e{height:42.880000pt;}
.h12{height:43.108125pt;}
.h9{height:43.642500pt;}
.h33{height:46.739375pt;}
.hc{height:47.621250pt;}
.h1f{height:47.736000pt;}
.h3c{height:48.320000pt;}
.ha{height:48.633750pt;}
.h7{height:52.785000pt;}
.h46{height:53.760000pt;}
.h47{height:54.752000pt;}
.h6{height:55.312500pt;}
.h45{height:56.480000pt;}
.h5{height:60.288750pt;}
.h8{height:63.091875pt;}
.h4{height:93.387187pt;}
.h1e{height:102.501250pt;}
.h3b{height:141.146667pt;}
.h2{height:143.386667pt;}
.h18{height:144.160000pt;}
.h19{height:154.426667pt;}
.h32{height:177.120000pt;}
.h36{height:178.746667pt;}
.h2e{height:180.346667pt;}
.h1d{height:185.280000pt;}
.h15{height:188.346667pt;}
.h1b{height:192.346667pt;}
.h29{height:194.266667pt;}
.h3f{height:222.266667pt;}
.h42{height:230.586667pt;}
.h28{height:250.400000pt;}
.h22{height:252.826667pt;}
.h30{height:266.560000pt;}
.h25{height:267.520000pt;}
.h2c{height:268.986667pt;}
.h20{height:270.266667pt;}
.h17{height:298.586667pt;}
.hf{height:388.066667pt;}
.h10{height:457.186667pt;}
.h13{height:519.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:24.800000pt;}
.w26{width:28.832000pt;}
.w15{width:31.200000pt;}
.w1d{width:32.480000pt;}
.w1e{width:32.640000pt;}
.w20{width:37.792000pt;}
.w22{width:74.560000pt;}
.w25{width:94.720000pt;}
.w23{width:94.752000pt;}
.w24{width:94.880000pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w21{width:162.586667pt;}
.wd{width:235.546667pt;}
.w7{width:255.906667pt;}
.wc{width:258.466667pt;}
.w2a{width:258.746667pt;}
.w17{width:264.666667pt;}
.w18{width:293.026667pt;}
.w2b{width:354.626667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w1f{width:445.760000pt;}
.w29{width:487.453333pt;}
.we{width:494.013333pt;}
.w16{width:503.200000pt;}
.w10{width:519.360000pt;}
.w19{width:557.693333pt;}
.w12{width:566.973333pt;}
.wb{width:567.173333pt;}
.wf{width:569.213333pt;}
.w13{width:576.000000pt;}
.w1b{width:585.853333pt;}
.w11{width:597.693333pt;}
.w1c{width:608.000000pt;}
.w1a{width:630.973333pt;}
.w28{width:652.160000pt;}
.w27{width:683.200000pt;}
.w6{width:694.400000pt;}
.wa{width:710.560000pt;}
.w9{width:710.720000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:4.346667pt;}
.x9{left:7.200000pt;}
.x52{left:16.640000pt;}
.x4a{left:19.866667pt;}
.x23{left:27.232000pt;}
.x53{left:35.680000pt;}
.x2b{left:36.640000pt;}
.xd{left:41.600000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x41{left:54.493333pt;}
.x24{left:55.680000pt;}
.x3c{left:59.034667pt;}
.x37{left:62.714667pt;}
.x4b{left:70.880000pt;}
.xc{left:71.999988pt;}
.x14{left:74.080000pt;}
.x39{left:81.472000pt;}
.x3e{left:88.480000pt;}
.x50{left:90.272000pt;}
.x44{left:93.152000pt;}
.x54{left:96.031988pt;}
.x7{left:97.640000pt;}
.x12{left:103.866667pt;}
.x2a{left:105.120000pt;}
.x5{left:106.120000pt;}
.x40{left:111.173333pt;}
.x1e{left:112.352000pt;}
.x28{left:113.472000pt;}
.x33{left:118.112000pt;}
.x2{left:121.146667pt;}
.x17{left:123.866667pt;}
.x21{left:124.994667pt;}
.x13{left:128.666667pt;}
.x2c{left:129.920000pt;}
.x3b{left:131.834667pt;}
.x20{left:141.634667pt;}
.x16{left:142.586667pt;}
.x31{left:144.800000pt;}
.x10{left:145.946667pt;}
.x32{left:147.680000pt;}
.x18{left:149.946667pt;}
.x4e{left:153.146667pt;}
.x42{left:155.360000pt;}
.x3f{left:162.306667pt;}
.x1c{left:163.560000pt;}
.x1d{left:175.880000pt;}
.x22{left:177.733333pt;}
.x3{left:185.306667pt;}
.x27{left:188.354667pt;}
.xb{left:191.386655pt;}
.x1b{left:201.160000pt;}
.x38{left:207.874667pt;}
.x6{left:210.120000pt;}
.xf{left:219.906667pt;}
.x43{left:230.693333pt;}
.x4d{left:234.946667pt;}
.x36{left:248.546667pt;}
.x19{left:251.266667pt;}
.x45{left:255.746667pt;}
.x34{left:263.234667pt;}
.x30{left:266.560000pt;}
.x25{left:269.373333pt;}
.xa{left:305.666667pt;}
.x46{left:330.306667pt;}
.x51{left:349.026667pt;}
.x35{left:382.786667pt;}
.x1a{left:408.413333pt;}
.x47{left:425.053333pt;}
.x2d{left:440.640000pt;}
.x3d{left:453.181333pt;}
.x4f{left:480.106667pt;}
.x2f{left:485.920000pt;}
.x48{left:519.933333pt;}
.x1f{left:522.981333pt;}
.x29{left:535.621333pt;}
.x15{left:543.653333pt;}
.x26{left:583.301333pt;}
.x8{left:605.573333pt;}
.x3a{left:615.301333pt;}
.x4c{left:649.280000pt;}
.xe{left:672.453333pt;}
.x11{left:703.360000pt;}
.x49{left:709.413333pt;}
}




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