
    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_90f840ece0428f7242cc2e25.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_f00c902c59e036ed6559fb72.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_c8514da5c2d01fc5b4199a0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_02e0a09d5d670971900cb136.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_f56e3d96fa73b7fad97eb84a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_95e705c29b9ce41fb26ebdb0.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_11fe4110c3d039d802eacb88.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_52c0c20fe1b1f99faa1d92d2.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_75429dba0aee1b6812d0e9ac.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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_00109a1e2bed909591fb4abc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.933594;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_1f2bb2f17e66cabb3eb8d18d.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_018d22c4e121ff13bdefb9af.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls22{letter-spacing:-4.266000px;}
.ls10{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.298200px;}
.lsd{letter-spacing:-0.127200px;}
.ls26{letter-spacing:-0.107400px;}
.ls1a{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.038160px;}
.lsc{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.087600px;}
.ls14{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls24{letter-spacing:0.153600px;}
.ls18{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.200160px;}
.ls19{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.lsa{letter-spacing:0.894240px;}
.ls20{letter-spacing:2.334240px;}
.ls1f{letter-spacing:3.054240px;}
.ls6{letter-spacing:3.774240px;}
.ls1c{letter-spacing:4.494240px;}
.ls1b{letter-spacing:5.214240px;}
.ls9{letter-spacing:5.220000px;}
.ls1d{letter-spacing:8.094240px;}
.ls25{letter-spacing:15.066720px;}
.ls17{letter-spacing:46.026720px;}
.ls23{letter-spacing:201.204000px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsc{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.479800px;}
.ws4{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.398360px;}
.ws8{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.816720px;}
.ws6{word-spacing:-12.276000px;}
.ws0{word-spacing:-12.186000px;}
.ws14{word-spacing:-10.674000px;}
.ws15{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsf{word-spacing:0.000000px;}
._16{margin-left:-7.758480px;}
._12{margin-left:-6.697440px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-3.874560px;}
._2{margin-left:-2.753040px;}
._0{margin-left:-1.122000px;}
._1{width:1.026000px;}
._5{width:2.100000px;}
._d{width:3.525840px;}
._c{width:4.541760px;}
._7{width:6.095520px;}
._6{width:7.290720px;}
._a{width:8.416080px;}
._b{width:9.561600px;}
._9{width:10.876320px;}
._8{width:12.011760px;}
._f{width:13.120320px;}
._e{width:16.066800px;}
._1b{width:17.210880px;}
._10{width:18.635040px;}
._11{width:19.794000px;}
._15{width:20.796480px;}
._1d{width:22.383120px;}
._1e{width:24.849600px;}
._18{width:32.021760px;}
._17{width:33.350880px;}
._14{width:67.399200px;}
._13{width:68.425200px;}
._1c{width:72.130320px;}
._19{width:83.544480px;}
._1a{width:85.073760px;}
.fc8{color:transparent;}
.fc7{color:rgb(238,0,0);}
.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);}
.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;}
.y0{bottom:0.000000px;}
.y50{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y55{bottom:3.960000px;}
.yf{bottom:9.360000px;}
.y53{bottom:10.620000px;}
.y29{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y3{bottom:20.160000px;}
.y27{bottom:20.190000px;}
.ycc{bottom:20.340000px;}
.y4f{bottom:20.520000px;}
.y110{bottom:21.240000px;}
.y54{bottom:22.314000px;}
.y52{bottom:25.194000px;}
.y6{bottom:25.740000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.yc2{bottom:37.620000px;}
.y4e{bottom:37.800000px;}
.y26{bottom:40.530000px;}
.yfd{bottom:42.840000px;}
.yb{bottom:46.620000px;}
.y1{bottom:48.240000px;}
.y25{bottom:53.130000px;}
.ycb{bottom:54.900000px;}
.y4d{bottom:55.080000px;}
.yca{bottom:72.180000px;}
.y4c{bottom:72.360000px;}
.ya{bottom:73.470000px;}
.y4b{bottom:89.460000px;}
.y24{bottom:89.850000px;}
.y9{bottom:93.090000px;}
.y23{bottom:106.410000px;}
.y4a{bottom:106.740000px;}
.y8{bottom:111.450000px;}
.yb9{bottom:112.896000px;}
.y56{bottom:116.496000px;}
.y134{bottom:117.576000px;}
.yfb{bottom:118.836000px;}
.y22{bottom:119.010000px;}
.y93{bottom:123.516000px;}
.yc9{bottom:123.840000px;}
.y49{bottom:124.020000px;}
.ycd{bottom:125.676000px;}
.y15f{bottom:128.916000px;}
.yb8{bottom:130.176000px;}
.y51{bottom:130.896000px;}
.y39{bottom:132.840000px;}
.y133{bottom:134.856000px;}
.y21{bottom:139.350000px;}
.y92{bottom:140.796000px;}
.yc8{bottom:141.120000px;}
.y48{bottom:141.300000px;}
.y15e{bottom:147.096000px;}
.yb7{bottom:147.456000px;}
.y38{bottom:148.140000px;}
.y20{bottom:151.950000px;}
.yf7{bottom:154.110000px;}
.y91{bottom:158.070000px;}
.yc7{bottom:158.400000px;}
.y47{bottom:158.580000px;}
.yc5{bottom:160.950000px;}
.yb6{bottom:164.730000px;}
.y15d{bottom:165.450000px;}
.y37{bottom:166.140000px;}
.y2a{bottom:167.430000px;}
.y132{bottom:169.230000px;}
.y1f{bottom:172.290000px;}
.yc6{bottom:175.725000px;}
.y46{bottom:175.905000px;}
.y90{bottom:176.070000px;}
.yb5{bottom:182.010000px;}
.y36{bottom:183.645000px;}
.y15c{bottom:183.810000px;}
.y1e{bottom:185.070000px;}
.y131{bottom:186.510000px;}
.yfa{bottom:189.390000px;}
.y45{bottom:193.005000px;}
.y8f{bottom:194.250000px;}
.yb4{bottom:199.110000px;}
.y35{bottom:201.105000px;}
.y15b{bottom:201.450000px;}
.y130{bottom:203.790000px;}
.y1d{bottom:205.230000px;}
.y44{bottom:210.285000px;}
.y8e{bottom:211.890000px;}
.yb3{bottom:216.390000px;}
.y1c{bottom:218.010000px;}
.y34{bottom:218.385000px;}
.y15a{bottom:218.550000px;}
.y12f{bottom:221.070000px;}
.yf9{bottom:224.670000px;}
.y43{bottom:227.565000px;}
.y8d{bottom:229.170000px;}
.y159{bottom:235.830000px;}
.y33{bottom:235.845000px;}
.yb2{bottom:237.270000px;}
.y1b{bottom:238.170000px;}
.y12e{bottom:238.350000px;}
.y42{bottom:244.845000px;}
.y8c{bottom:247.170000px;}
.y158{bottom:253.110000px;}
.y32{bottom:253.125000px;}
.y1a{bottom:254.730000px;}
.yb1{bottom:254.910000px;}
.y12d{bottom:255.450000px;}
.yf8{bottom:259.950000px;}
.y41{bottom:262.125000px;}
.y8b{bottom:265.350000px;}
.y19{bottom:267.690000px;}
.y157{bottom:270.390000px;}
.y31{bottom:270.585000px;}
.yb0{bottom:272.190000px;}
.y12c{bottom:272.730000px;}
.y40{bottom:279.405000px;}
.y8a{bottom:283.710000px;}
.y18{bottom:286.095000px;}
.y156{bottom:287.670000px;}
.y30{bottom:288.045000px;}
.yaf{bottom:289.290000px;}
.y12b{bottom:290.010000px;}
.y3f{bottom:296.505000px;}
.yf6{bottom:298.290000px;}
.y89{bottom:302.070000px;}
.y17{bottom:304.455000px;}
.y155{bottom:304.770000px;}
.y2f{bottom:305.325000px;}
.yae{bottom:306.570000px;}
.y12a{bottom:307.290000px;}
.y3e{bottom:313.785000px;}
.yf5{bottom:315.570000px;}
.y88{bottom:319.710000px;}
.y154{bottom:322.050000px;}
.y2e{bottom:322.785000px;}
.y16{bottom:322.815000px;}
.yad{bottom:323.850000px;}
.y129{bottom:327.270000px;}
.y3d{bottom:331.065000px;}
.yf4{bottom:332.850000px;}
.y87{bottom:336.855000px;}
.y153{bottom:339.375000px;}
.y2d{bottom:340.425000px;}
.y15{bottom:341.715000px;}
.yac{bottom:344.775000px;}
.y128{bottom:348.195000px;}
.y3c{bottom:348.345000px;}
.yf3{bottom:350.175000px;}
.y86{bottom:356.835000px;}
.y152{bottom:359.355000px;}
.yab{bottom:362.415000px;}
.y3b{bottom:365.625000px;}
.y14{bottom:367.455000px;}
.y2c{bottom:367.785000px;}
.y127{bottom:368.535000px;}
.yc4{bottom:368.715000px;}
.y85{bottom:376.815000px;}
.y151{bottom:379.335000px;}
.yaa{bottom:379.695000px;}
.y3a{bottom:382.905000px;}
.yf2{bottom:384.735000px;}
.y2b{bottom:385.425000px;}
.yc3{bottom:386.715000px;}
.y126{bottom:388.515000px;}
.y13{bottom:393.195000px;}
.y84{bottom:396.795000px;}
.y150{bottom:399.315000px;}
.yf1{bottom:401.835000px;}
.yc1{bottom:404.715000px;}
.y125{bottom:408.495000px;}
.y83{bottom:414.075000px;}
.y184{bottom:415.875000px;}
.y12{bottom:418.935000px;}
.yf0{bottom:419.115000px;}
.y14f{bottom:419.295000px;}
.y124{bottom:425.775000px;}
.y82{bottom:431.355000px;}
.y183{bottom:433.875000px;}
.y14e{bottom:439.275000px;}
.yef{bottom:439.995000px;}
.y123{bottom:442.875000px;}
.y11{bottom:443.415000px;}
.y81{bottom:448.635000px;}
.y182{bottom:452.235000px;}
.y14d{bottom:456.555000px;}
.yc0{bottom:457.095000px;}
.yee{bottom:457.635000px;}
.y122{bottom:460.155000px;}
.y80{bottom:465.915000px;}
.y181{bottom:470.415000px;}
.y14c{bottom:473.835000px;}
.yed{bottom:474.915000px;}
.ybf{bottom:475.095000px;}
.y121{bottom:477.435000px;}
.y7f{bottom:483.195000px;}
.y180{bottom:488.775000px;}
.y14b{bottom:491.115000px;}
.yec{bottom:492.195000px;}
.y120{bottom:494.715000px;}
.ybe{bottom:496.335000px;}
.y7e{bottom:500.295000px;}
.y17f{bottom:507.135000px;}
.y14a{bottom:508.215000px;}
.yeb{bottom:509.295000px;}
.y11f{bottom:511.995000px;}
.ybd{bottom:513.615000px;}
.y7d{bottom:517.575000px;}
.y149{bottom:525.495000px;}
.yea{bottom:526.575000px;}
.y11e{bottom:526.755000px;}
.ybc{bottom:534.495000px;}
.y7c{bottom:534.855000px;}
.y148{bottom:542.775000px;}
.y17e{bottom:543.675000px;}
.ye9{bottom:543.855000px;}
.y7b{bottom:552.135000px;}
.ye8{bottom:561.135000px;}
.y11d{bottom:561.855000px;}
.y17d{bottom:562.035000px;}
.y147{bottom:563.655000px;}
.y28{bottom:564.195000px;}
.y7a{bottom:569.415000px;}
.ye7{bottom:578.415000px;}
.y17c{bottom:580.395000px;}
.y146{bottom:581.295000px;}
.y11c{bottom:583.095000px;}
.y79{bottom:586.695000px;}
.ybb{bottom:590.115000px;}
.y10{bottom:593.715000px;}
.ye6{bottom:595.515000px;}
.y145{bottom:598.575000px;}
.y11b{bottom:600.375000px;}
.y78{bottom:603.825000px;}
.yba{bottom:607.605000px;}
.y144{bottom:615.705000px;}
.y17b{bottom:616.965000px;}
.y11a{bottom:617.685000px;}
.ye5{bottom:618.045000px;}
.y77{bottom:621.105000px;}
.y143{bottom:632.985000px;}
.y119{bottom:634.965000px;}
.ye4{bottom:635.325000px;}
.y76{bottom:638.385000px;}
.ye3{bottom:650.085000px;}
.y142{bottom:650.265000px;}
.y118{bottom:652.245000px;}
.y17a{bottom:653.685000px;}
.y75{bottom:655.665000px;}
.y141{bottom:667.545000px;}
.y117{bottom:669.525000px;}
.ye2{bottom:670.065000px;}
.y179{bottom:671.865000px;}
.y74{bottom:672.945000px;}
.ya9{bottom:676.365000px;}
.y140{bottom:684.825000px;}
.y73{bottom:690.045000px;}
.y116{bottom:690.225000px;}
.ya8{bottom:694.005000px;}
.y13f{bottom:701.925000px;}
.y72{bottom:707.325000px;}
.y115{bottom:707.865000px;}
.y178{bottom:708.585000px;}
.ya7{bottom:711.285000px;}
.y13e{bottom:719.205000px;}
.ye1{bottom:722.085000px;}
.y71{bottom:724.605000px;}
.y114{bottom:725.145000px;}
.y177{bottom:726.945000px;}
.ya6{bottom:728.565000px;}
.y13d{bottom:736.485000px;}
.y70{bottom:741.885000px;}
.y113{bottom:742.425000px;}
.y176{bottom:745.125000px;}
.ya5{bottom:745.845000px;}
.y13c{bottom:753.765000px;}
.y6f{bottom:759.165000px;}
.y112{bottom:759.705000px;}
.ya4{bottom:763.125000px;}
.y175{bottom:763.485000px;}
.y13b{bottom:771.045000px;}
.ye0{bottom:774.645000px;}
.y6e{bottom:776.445000px;}
.y111{bottom:776.985000px;}
.ya3{bottom:780.405000px;}
.y174{bottom:781.845000px;}
.y13a{bottom:788.325000px;}
.y10f{bottom:791.745000px;}
.y6d{bottom:797.145000px;}
.ya2{bottom:797.505000px;}
.y173{bottom:800.025000px;}
.y139{bottom:805.425000px;}
.ydf{bottom:809.745000px;}
.y6c{bottom:814.785000px;}
.ya1{bottom:818.385000px;}
.y138{bottom:822.705000px;}
.y10e{bottom:827.745000px;}
.yde{bottom:830.985000px;}
.y6b{bottom:832.065000px;}
.ya0{bottom:836.025000px;}
.y172{bottom:836.745000px;}
.y137{bottom:839.985000px;}
.ydd{bottom:848.265000px;}
.y10d{bottom:848.985000px;}
.y6a{bottom:849.345000px;}
.y9f{bottom:853.305000px;}
.y171{bottom:855.105000px;}
.y136{bottom:857.265000px;}
.ydc{bottom:865.545000px;}
.y10c{bottom:866.085000px;}
.y69{bottom:870.225000px;}
.y170{bottom:873.330000px;}
.y9e{bottom:874.230000px;}
.y135{bottom:874.590000px;}
.ydb{bottom:882.870000px;}
.y10b{bottom:883.410000px;}
.y68{bottom:887.910000px;}
.y16f{bottom:891.690000px;}
.y9d{bottom:891.870000px;}
.yda{bottom:900.150000px;}
.y10a{bottom:900.690000px;}
.y67{bottom:905.010000px;}
.y9c{bottom:908.970000px;}
.y16e{bottom:910.050000px;}
.yd9{bottom:917.430000px;}
.y109{bottom:917.970000px;}
.y66{bottom:922.290000px;}
.y9b{bottom:926.250000px;}
.y16d{bottom:928.410000px;}
.yd8{bottom:934.530000px;}
.y108{bottom:938.670000px;}
.y65{bottom:939.570000px;}
.y9a{bottom:943.530000px;}
.y16c{bottom:946.590000px;}
.yd7{bottom:951.810000px;}
.y64{bottom:956.850000px;}
.y107{bottom:959.010000px;}
.y99{bottom:960.810000px;}
.y16b{bottom:964.950000px;}
.yd6{bottom:969.090000px;}
.y63{bottom:974.130000px;}
.y98{bottom:978.090000px;}
.y106{bottom:978.990000px;}
.y16a{bottom:983.310000px;}
.yd5{bottom:989.970000px;}
.y62{bottom:991.410000px;}
.y97{bottom:995.370000px;}
.y105{bottom:998.970000px;}
.y169{bottom:1001.490000px;}
.yd4{bottom:1007.610000px;}
.y61{bottom:1008.510000px;}
.y96{bottom:1012.470000px;}
.y104{bottom:1018.950000px;}
.y168{bottom:1019.850000px;}
.yd3{bottom:1024.710000px;}
.y60{bottom:1025.790000px;}
.y95{bottom:1029.750000px;}
.y167{bottom:1038.210000px;}
.y103{bottom:1039.830000px;}
.yd2{bottom:1044.690000px;}
.y5f{bottom:1046.670000px;}
.y94{bottom:1047.030000px;}
.ye{bottom:1052.250000px;}
.y166{bottom:1056.570000px;}
.y102{bottom:1057.470000px;}
.yd1{bottom:1061.970000px;}
.y5e{bottom:1064.310000px;}
.y101{bottom:1074.750000px;}
.y7{bottom:1077.450000px;}
.yd0{bottom:1079.250000px;}
.y5d{bottom:1081.590000px;}
.y100{bottom:1092.030000px;}
.y165{bottom:1093.110000px;}
.ycf{bottom:1094.010000px;}
.y5c{bottom:1098.690000px;}
.yff{bottom:1109.310000px;}
.y164{bottom:1111.470000px;}
.y5b{bottom:1115.970000px;}
.yfe{bottom:1126.590000px;}
.y163{bottom:1129.830000px;}
.y5a{bottom:1133.250000px;}
.yfc{bottom:1141.380000px;}
.yce{bottom:1146.600000px;}
.y162{bottom:1148.040000px;}
.y59{bottom:1150.560000px;}
.y161{bottom:1166.400000px;}
.y58{bottom:1167.840000px;}
.y160{bottom:1184.760000px;}
.y57{bottom:1185.120000px;}
.h29{height:17.100000px;}
.h1f{height:17.280000px;}
.hb{height:24.840000px;}
.h26{height:27.907031px;}
.h11{height:28.968750px;}
.h13{height:29.520000px;}
.h24{height:34.380000px;}
.h22{height:34.560000px;}
.h2a{height:35.100000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1d{height:42.164648px;}
.h1a{height:42.894141px;}
.h12{height:43.453125px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1c{height:48.088125px;}
.h25{height:48.787031px;}
.h2{height:49.536000px;}
.h20{height:51.660000px;}
.h23{height:51.876000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h28{height:56.880000px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.h27{height:140.220000px;}
.h21{height:207.030000px;}
.h15{height:396.750000px;}
.hc{height:458.535000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:52.416000px;}
.wf{width:57.816000px;}
.w14{width:67.536000px;}
.w3{width:73.080000px;}
.wd{width:75.240000px;}
.w20{width:86.940000px;}
.w1d{width:109.980000px;}
.w10{width:110.520000px;}
.w11{width:112.896000px;}
.w12{width:115.056000px;}
.w13{width:125.820000px;}
.w17{width:129.780000px;}
.wc{width:132.696000px;}
.wb{width:132.876000px;}
.w15{width:135.540000px;}
.w1f{width:142.236000px;}
.w1e{width:142.416000px;}
.w1c{width:143.136000px;}
.w19{width:150.330000px;}
.w5{width:151.950000px;}
.wa{width:153.570000px;}
.w18{width:157.530000px;}
.w1a{width:162.930000px;}
.w1b{width:165.270000px;}
.w21{width:212.790000px;}
.w8{width:223.455000px;}
.we{width:232.230000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.560000px;}
.x2{left:8.676000px;}
.xc{left:13.536000px;}
.xd{left:16.056000px;}
.x10{left:17.496000px;}
.xb{left:22.176000px;}
.x13{left:28.296000px;}
.x15{left:37.656000px;}
.x11{left:39.816000px;}
.x18{left:41.076000px;}
.x34{left:57.456000px;}
.x17{left:63.396000px;}
.x35{left:75.090000px;}
.x40{left:79.559987px;}
.x1{left:81.000000px;}
.x36{left:82.079987px;}
.xf{left:90.570000px;}
.x16{left:95.430000px;}
.x4{left:98.130000px;}
.x2e{left:99.935987px;}
.x3f{left:102.275987px;}
.x41{left:106.595987px;}
.x1c{left:108.035987px;}
.x1e{left:110.735987px;}
.x1d{left:135.035987px;}
.x1f{left:137.735987px;}
.x28{left:140.436000px;}
.xe{left:204.195000px;}
.x1a{left:215.175000px;}
.x22{left:223.049987px;}
.x3b{left:224.850000px;}
.x5{left:232.950000px;}
.x24{left:236.010000px;}
.x37{left:247.710000px;}
.x2a{left:251.670000px;}
.x30{left:265.350000px;}
.x8{left:272.235000px;}
.x12{left:286.815000px;}
.x1b{left:304.455000px;}
.x19{left:312.375000px;}
.x14{left:328.035000px;}
.x6{left:331.995000px;}
.x2f{left:342.434987px;}
.x7{left:351.255000px;}
.x20{left:357.914987px;}
.xa{left:365.475000px;}
.x3c{left:367.815000px;}
.x25{left:369.615000px;}
.x38{left:391.575000px;}
.x31{left:423.615000px;}
.x9{left:439.500000px;}
.x23{left:446.474987px;}
.x2b{left:481.065000px;}
.x26{left:503.205000px;}
.x3d{left:510.765000px;}
.x39{left:535.425000px;}
.x32{left:574.665000px;}
.x27{left:579.165000px;}
.x3e{left:598.605000px;}
.x2c{left:607.605000px;}
.x3a{left:646.125000px;}
.x33{left:648.465000px;}
.x2d{left:675.870000px;}
.x3{left:739.050000px;}
.x21{left:740.129987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls22{letter-spacing:-3.792000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.265067pt;}
.lsd{letter-spacing:-0.113067pt;}
.ls26{letter-spacing:-0.095467pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.033920pt;}
.lsc{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.077867pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls24{letter-spacing:0.136533pt;}
.ls18{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.177920pt;}
.ls19{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.lsa{letter-spacing:0.794880pt;}
.ls20{letter-spacing:2.074880pt;}
.ls1f{letter-spacing:2.714880pt;}
.ls6{letter-spacing:3.354880pt;}
.ls1c{letter-spacing:3.994880pt;}
.ls1b{letter-spacing:4.634880pt;}
.ls9{letter-spacing:4.640000pt;}
.ls1d{letter-spacing:7.194880pt;}
.ls25{letter-spacing:13.392640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls23{letter-spacing:178.848000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsc{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.870933pt;}
.ws4{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.392640pt;}
.ws6{word-spacing:-10.912000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws14{word-spacing:-9.488000pt;}
.ws15{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsf{word-spacing:0.000000pt;}
._16{margin-left:-6.896427pt;}
._12{margin-left:-5.953280pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.444053pt;}
._2{margin-left:-2.447147pt;}
._0{margin-left:-0.997333pt;}
._1{width:0.912000pt;}
._5{width:1.866667pt;}
._d{width:3.134080pt;}
._c{width:4.037120pt;}
._7{width:5.418240pt;}
._6{width:6.480640pt;}
._a{width:7.480960pt;}
._b{width:8.499200pt;}
._9{width:9.667840pt;}
._8{width:10.677120pt;}
._f{width:11.662507pt;}
._e{width:14.281600pt;}
._1b{width:15.298560pt;}
._10{width:16.564480pt;}
._11{width:17.594667pt;}
._15{width:18.485760pt;}
._1d{width:19.896107pt;}
._1e{width:22.088533pt;}
._18{width:28.463787pt;}
._17{width:29.645227pt;}
._14{width:59.910400pt;}
._13{width:60.822400pt;}
._1c{width:64.115840pt;}
._19{width:74.261760pt;}
._1a{width:75.621120pt;}
.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;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y55{bottom:3.520000pt;}
.yf{bottom:8.320000pt;}
.y53{bottom:9.440000pt;}
.y29{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y3{bottom:17.920000pt;}
.y27{bottom:17.946667pt;}
.ycc{bottom:18.080000pt;}
.y4f{bottom:18.240000pt;}
.y110{bottom:18.880000pt;}
.y54{bottom:19.834667pt;}
.y52{bottom:22.394667pt;}
.y6{bottom:22.880000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.yc2{bottom:33.440000pt;}
.y4e{bottom:33.600000pt;}
.y26{bottom:36.026667pt;}
.yfd{bottom:38.080000pt;}
.yb{bottom:41.440000pt;}
.y1{bottom:42.880000pt;}
.y25{bottom:47.226667pt;}
.ycb{bottom:48.800000pt;}
.y4d{bottom:48.960000pt;}
.yca{bottom:64.160000pt;}
.y4c{bottom:64.320000pt;}
.ya{bottom:65.306667pt;}
.y4b{bottom:79.520000pt;}
.y24{bottom:79.866667pt;}
.y9{bottom:82.746667pt;}
.y23{bottom:94.586667pt;}
.y4a{bottom:94.880000pt;}
.y8{bottom:99.066667pt;}
.yb9{bottom:100.352000pt;}
.y56{bottom:103.552000pt;}
.y134{bottom:104.512000pt;}
.yfb{bottom:105.632000pt;}
.y22{bottom:105.786667pt;}
.y93{bottom:109.792000pt;}
.yc9{bottom:110.080000pt;}
.y49{bottom:110.240000pt;}
.ycd{bottom:111.712000pt;}
.y15f{bottom:114.592000pt;}
.yb8{bottom:115.712000pt;}
.y51{bottom:116.352000pt;}
.y39{bottom:118.080000pt;}
.y133{bottom:119.872000pt;}
.y21{bottom:123.866667pt;}
.y92{bottom:125.152000pt;}
.yc8{bottom:125.440000pt;}
.y48{bottom:125.600000pt;}
.y15e{bottom:130.752000pt;}
.yb7{bottom:131.072000pt;}
.y38{bottom:131.680000pt;}
.y20{bottom:135.066667pt;}
.yf7{bottom:136.986667pt;}
.y91{bottom:140.506667pt;}
.yc7{bottom:140.800000pt;}
.y47{bottom:140.960000pt;}
.yc5{bottom:143.066667pt;}
.yb6{bottom:146.426667pt;}
.y15d{bottom:147.066667pt;}
.y37{bottom:147.680000pt;}
.y2a{bottom:148.826667pt;}
.y132{bottom:150.426667pt;}
.y1f{bottom:153.146667pt;}
.yc6{bottom:156.200000pt;}
.y46{bottom:156.360000pt;}
.y90{bottom:156.506667pt;}
.yb5{bottom:161.786667pt;}
.y36{bottom:163.240000pt;}
.y15c{bottom:163.386667pt;}
.y1e{bottom:164.506667pt;}
.y131{bottom:165.786667pt;}
.yfa{bottom:168.346667pt;}
.y45{bottom:171.560000pt;}
.y8f{bottom:172.666667pt;}
.yb4{bottom:176.986667pt;}
.y35{bottom:178.760000pt;}
.y15b{bottom:179.066667pt;}
.y130{bottom:181.146667pt;}
.y1d{bottom:182.426667pt;}
.y44{bottom:186.920000pt;}
.y8e{bottom:188.346667pt;}
.yb3{bottom:192.346667pt;}
.y1c{bottom:193.786667pt;}
.y34{bottom:194.120000pt;}
.y15a{bottom:194.266667pt;}
.y12f{bottom:196.506667pt;}
.yf9{bottom:199.706667pt;}
.y43{bottom:202.280000pt;}
.y8d{bottom:203.706667pt;}
.y159{bottom:209.626667pt;}
.y33{bottom:209.640000pt;}
.yb2{bottom:210.906667pt;}
.y1b{bottom:211.706667pt;}
.y12e{bottom:211.866667pt;}
.y42{bottom:217.640000pt;}
.y8c{bottom:219.706667pt;}
.y158{bottom:224.986667pt;}
.y32{bottom:225.000000pt;}
.y1a{bottom:226.426667pt;}
.yb1{bottom:226.586667pt;}
.y12d{bottom:227.066667pt;}
.yf8{bottom:231.066667pt;}
.y41{bottom:233.000000pt;}
.y8b{bottom:235.866667pt;}
.y19{bottom:237.946667pt;}
.y157{bottom:240.346667pt;}
.y31{bottom:240.520000pt;}
.yb0{bottom:241.946667pt;}
.y12c{bottom:242.426667pt;}
.y40{bottom:248.360000pt;}
.y8a{bottom:252.186667pt;}
.y18{bottom:254.306667pt;}
.y156{bottom:255.706667pt;}
.y30{bottom:256.040000pt;}
.yaf{bottom:257.146667pt;}
.y12b{bottom:257.786667pt;}
.y3f{bottom:263.560000pt;}
.yf6{bottom:265.146667pt;}
.y89{bottom:268.506667pt;}
.y17{bottom:270.626667pt;}
.y155{bottom:270.906667pt;}
.y2f{bottom:271.400000pt;}
.yae{bottom:272.506667pt;}
.y12a{bottom:273.146667pt;}
.y3e{bottom:278.920000pt;}
.yf5{bottom:280.506667pt;}
.y88{bottom:284.186667pt;}
.y154{bottom:286.266667pt;}
.y2e{bottom:286.920000pt;}
.y16{bottom:286.946667pt;}
.yad{bottom:287.866667pt;}
.y129{bottom:290.906667pt;}
.y3d{bottom:294.280000pt;}
.yf4{bottom:295.866667pt;}
.y87{bottom:299.426667pt;}
.y153{bottom:301.666667pt;}
.y2d{bottom:302.600000pt;}
.y15{bottom:303.746667pt;}
.yac{bottom:306.466667pt;}
.y128{bottom:309.506667pt;}
.y3c{bottom:309.640000pt;}
.yf3{bottom:311.266667pt;}
.y86{bottom:317.186667pt;}
.y152{bottom:319.426667pt;}
.yab{bottom:322.146667pt;}
.y3b{bottom:325.000000pt;}
.y14{bottom:326.626667pt;}
.y2c{bottom:326.920000pt;}
.y127{bottom:327.586667pt;}
.yc4{bottom:327.746667pt;}
.y85{bottom:334.946667pt;}
.y151{bottom:337.186667pt;}
.yaa{bottom:337.506667pt;}
.y3a{bottom:340.360000pt;}
.yf2{bottom:341.986667pt;}
.y2b{bottom:342.600000pt;}
.yc3{bottom:343.746667pt;}
.y126{bottom:345.346667pt;}
.y13{bottom:349.506667pt;}
.y84{bottom:352.706667pt;}
.y150{bottom:354.946667pt;}
.yf1{bottom:357.186667pt;}
.yc1{bottom:359.746667pt;}
.y125{bottom:363.106667pt;}
.y83{bottom:368.066667pt;}
.y184{bottom:369.666667pt;}
.y12{bottom:372.386667pt;}
.yf0{bottom:372.546667pt;}
.y14f{bottom:372.706667pt;}
.y124{bottom:378.466667pt;}
.y82{bottom:383.426667pt;}
.y183{bottom:385.666667pt;}
.y14e{bottom:390.466667pt;}
.yef{bottom:391.106667pt;}
.y123{bottom:393.666667pt;}
.y11{bottom:394.146667pt;}
.y81{bottom:398.786667pt;}
.y182{bottom:401.986667pt;}
.y14d{bottom:405.826667pt;}
.yc0{bottom:406.306667pt;}
.yee{bottom:406.786667pt;}
.y122{bottom:409.026667pt;}
.y80{bottom:414.146667pt;}
.y181{bottom:418.146667pt;}
.y14c{bottom:421.186667pt;}
.yed{bottom:422.146667pt;}
.ybf{bottom:422.306667pt;}
.y121{bottom:424.386667pt;}
.y7f{bottom:429.506667pt;}
.y180{bottom:434.466667pt;}
.y14b{bottom:436.546667pt;}
.yec{bottom:437.506667pt;}
.y120{bottom:439.746667pt;}
.ybe{bottom:441.186667pt;}
.y7e{bottom:444.706667pt;}
.y17f{bottom:450.786667pt;}
.y14a{bottom:451.746667pt;}
.yeb{bottom:452.706667pt;}
.y11f{bottom:455.106667pt;}
.ybd{bottom:456.546667pt;}
.y7d{bottom:460.066667pt;}
.y149{bottom:467.106667pt;}
.yea{bottom:468.066667pt;}
.y11e{bottom:468.226667pt;}
.ybc{bottom:475.106667pt;}
.y7c{bottom:475.426667pt;}
.y148{bottom:482.466667pt;}
.y17e{bottom:483.266667pt;}
.ye9{bottom:483.426667pt;}
.y7b{bottom:490.786667pt;}
.ye8{bottom:498.786667pt;}
.y11d{bottom:499.426667pt;}
.y17d{bottom:499.586667pt;}
.y147{bottom:501.026667pt;}
.y28{bottom:501.506667pt;}
.y7a{bottom:506.146667pt;}
.ye7{bottom:514.146667pt;}
.y17c{bottom:515.906667pt;}
.y146{bottom:516.706667pt;}
.y11c{bottom:518.306667pt;}
.y79{bottom:521.506667pt;}
.ybb{bottom:524.546667pt;}
.y10{bottom:527.746667pt;}
.ye6{bottom:529.346667pt;}
.y145{bottom:532.066667pt;}
.y11b{bottom:533.666667pt;}
.y78{bottom:536.733333pt;}
.yba{bottom:540.093333pt;}
.y144{bottom:547.293333pt;}
.y17b{bottom:548.413333pt;}
.y11a{bottom:549.053333pt;}
.ye5{bottom:549.373333pt;}
.y77{bottom:552.093333pt;}
.y143{bottom:562.653333pt;}
.y119{bottom:564.413333pt;}
.ye4{bottom:564.733333pt;}
.y76{bottom:567.453333pt;}
.ye3{bottom:577.853333pt;}
.y142{bottom:578.013333pt;}
.y118{bottom:579.773333pt;}
.y17a{bottom:581.053333pt;}
.y75{bottom:582.813333pt;}
.y141{bottom:593.373333pt;}
.y117{bottom:595.133333pt;}
.ye2{bottom:595.613333pt;}
.y179{bottom:597.213333pt;}
.y74{bottom:598.173333pt;}
.ya9{bottom:601.213333pt;}
.y140{bottom:608.733333pt;}
.y73{bottom:613.373333pt;}
.y116{bottom:613.533333pt;}
.ya8{bottom:616.893333pt;}
.y13f{bottom:623.933333pt;}
.y72{bottom:628.733333pt;}
.y115{bottom:629.213333pt;}
.y178{bottom:629.853333pt;}
.ya7{bottom:632.253333pt;}
.y13e{bottom:639.293333pt;}
.ye1{bottom:641.853333pt;}
.y71{bottom:644.093333pt;}
.y114{bottom:644.573333pt;}
.y177{bottom:646.173333pt;}
.ya6{bottom:647.613333pt;}
.y13d{bottom:654.653333pt;}
.y70{bottom:659.453333pt;}
.y113{bottom:659.933333pt;}
.y176{bottom:662.333333pt;}
.ya5{bottom:662.973333pt;}
.y13c{bottom:670.013333pt;}
.y6f{bottom:674.813333pt;}
.y112{bottom:675.293333pt;}
.ya4{bottom:678.333333pt;}
.y175{bottom:678.653333pt;}
.y13b{bottom:685.373333pt;}
.ye0{bottom:688.573333pt;}
.y6e{bottom:690.173333pt;}
.y111{bottom:690.653333pt;}
.ya3{bottom:693.693333pt;}
.y174{bottom:694.973333pt;}
.y13a{bottom:700.733333pt;}
.y10f{bottom:703.773333pt;}
.y6d{bottom:708.573333pt;}
.ya2{bottom:708.893333pt;}
.y173{bottom:711.133333pt;}
.y139{bottom:715.933333pt;}
.ydf{bottom:719.773333pt;}
.y6c{bottom:724.253333pt;}
.ya1{bottom:727.453333pt;}
.y138{bottom:731.293333pt;}
.y10e{bottom:735.773333pt;}
.yde{bottom:738.653333pt;}
.y6b{bottom:739.613333pt;}
.ya0{bottom:743.133333pt;}
.y172{bottom:743.773333pt;}
.y137{bottom:746.653333pt;}
.ydd{bottom:754.013333pt;}
.y10d{bottom:754.653333pt;}
.y6a{bottom:754.973333pt;}
.y9f{bottom:758.493333pt;}
.y171{bottom:760.093333pt;}
.y136{bottom:762.013333pt;}
.ydc{bottom:769.373333pt;}
.y10c{bottom:769.853333pt;}
.y69{bottom:773.533333pt;}
.y170{bottom:776.293333pt;}
.y9e{bottom:777.093333pt;}
.y135{bottom:777.413333pt;}
.ydb{bottom:784.773333pt;}
.y10b{bottom:785.253333pt;}
.y68{bottom:789.253333pt;}
.y16f{bottom:792.613333pt;}
.y9d{bottom:792.773333pt;}
.yda{bottom:800.133333pt;}
.y10a{bottom:800.613333pt;}
.y67{bottom:804.453333pt;}
.y9c{bottom:807.973333pt;}
.y16e{bottom:808.933333pt;}
.yd9{bottom:815.493333pt;}
.y109{bottom:815.973333pt;}
.y66{bottom:819.813333pt;}
.y9b{bottom:823.333333pt;}
.y16d{bottom:825.253333pt;}
.yd8{bottom:830.693333pt;}
.y108{bottom:834.373333pt;}
.y65{bottom:835.173333pt;}
.y9a{bottom:838.693333pt;}
.y16c{bottom:841.413333pt;}
.yd7{bottom:846.053333pt;}
.y64{bottom:850.533333pt;}
.y107{bottom:852.453333pt;}
.y99{bottom:854.053333pt;}
.y16b{bottom:857.733333pt;}
.yd6{bottom:861.413333pt;}
.y63{bottom:865.893333pt;}
.y98{bottom:869.413333pt;}
.y106{bottom:870.213333pt;}
.y16a{bottom:874.053333pt;}
.yd5{bottom:879.973333pt;}
.y62{bottom:881.253333pt;}
.y97{bottom:884.773333pt;}
.y105{bottom:887.973333pt;}
.y169{bottom:890.213333pt;}
.yd4{bottom:895.653333pt;}
.y61{bottom:896.453333pt;}
.y96{bottom:899.973333pt;}
.y104{bottom:905.733333pt;}
.y168{bottom:906.533333pt;}
.yd3{bottom:910.853333pt;}
.y60{bottom:911.813333pt;}
.y95{bottom:915.333333pt;}
.y167{bottom:922.853333pt;}
.y103{bottom:924.293333pt;}
.yd2{bottom:928.613333pt;}
.y5f{bottom:930.373333pt;}
.y94{bottom:930.693333pt;}
.ye{bottom:935.333333pt;}
.y166{bottom:939.173333pt;}
.y102{bottom:939.973333pt;}
.yd1{bottom:943.973333pt;}
.y5e{bottom:946.053333pt;}
.y101{bottom:955.333333pt;}
.y7{bottom:957.733333pt;}
.yd0{bottom:959.333333pt;}
.y5d{bottom:961.413333pt;}
.y100{bottom:970.693333pt;}
.y165{bottom:971.653333pt;}
.ycf{bottom:972.453333pt;}
.y5c{bottom:976.613333pt;}
.yff{bottom:986.053333pt;}
.y164{bottom:987.973333pt;}
.y5b{bottom:991.973333pt;}
.yfe{bottom:1001.413333pt;}
.y163{bottom:1004.293333pt;}
.y5a{bottom:1007.333333pt;}
.yfc{bottom:1014.560000pt;}
.yce{bottom:1019.200000pt;}
.y162{bottom:1020.480000pt;}
.y59{bottom:1022.720000pt;}
.y161{bottom:1036.800000pt;}
.y58{bottom:1038.080000pt;}
.y160{bottom:1053.120000pt;}
.y57{bottom:1053.440000pt;}
.h29{height:15.200000pt;}
.h1f{height:15.360000pt;}
.hb{height:22.080000pt;}
.h26{height:24.806250pt;}
.h11{height:25.750000pt;}
.h13{height:26.240000pt;}
.h24{height:30.560000pt;}
.h22{height:30.720000pt;}
.h2a{height:31.200000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1d{height:37.479688pt;}
.h1a{height:38.128125pt;}
.h12{height:38.625000pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h25{height:43.366250pt;}
.h2{height:44.032000pt;}
.h20{height:45.920000pt;}
.h23{height:46.112000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h28{height:50.560000pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.h27{height:124.640000pt;}
.h21{height:184.026667pt;}
.h15{height:352.666667pt;}
.hc{height:407.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:46.592000pt;}
.wf{width:51.392000pt;}
.w14{width:60.032000pt;}
.w3{width:64.960000pt;}
.wd{width:66.880000pt;}
.w20{width:77.280000pt;}
.w1d{width:97.760000pt;}
.w10{width:98.240000pt;}
.w11{width:100.352000pt;}
.w12{width:102.272000pt;}
.w13{width:111.840000pt;}
.w17{width:115.360000pt;}
.wc{width:117.952000pt;}
.wb{width:118.112000pt;}
.w15{width:120.480000pt;}
.w1f{width:126.432000pt;}
.w1e{width:126.592000pt;}
.w1c{width:127.232000pt;}
.w19{width:133.626667pt;}
.w5{width:135.066667pt;}
.wa{width:136.506667pt;}
.w18{width:140.026667pt;}
.w1a{width:144.826667pt;}
.w1b{width:146.906667pt;}
.w21{width:189.146667pt;}
.w8{width:198.626667pt;}
.we{width:206.426667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.720000pt;}
.x2{left:7.712000pt;}
.xc{left:12.032000pt;}
.xd{left:14.272000pt;}
.x10{left:15.552000pt;}
.xb{left:19.712000pt;}
.x13{left:25.152000pt;}
.x15{left:33.472000pt;}
.x11{left:35.392000pt;}
.x18{left:36.512000pt;}
.x34{left:51.072000pt;}
.x17{left:56.352000pt;}
.x35{left:66.746667pt;}
.x40{left:70.719988pt;}
.x1{left:72.000000pt;}
.x36{left:72.959988pt;}
.xf{left:80.506667pt;}
.x16{left:84.826667pt;}
.x4{left:87.226667pt;}
.x2e{left:88.831988pt;}
.x3f{left:90.911988pt;}
.x41{left:94.751988pt;}
.x1c{left:96.031988pt;}
.x1e{left:98.431988pt;}
.x1d{left:120.031988pt;}
.x1f{left:122.431988pt;}
.x28{left:124.832000pt;}
.xe{left:181.506667pt;}
.x1a{left:191.266667pt;}
.x22{left:198.266655pt;}
.x3b{left:199.866667pt;}
.x5{left:207.066667pt;}
.x24{left:209.786667pt;}
.x37{left:220.186667pt;}
.x2a{left:223.706667pt;}
.x30{left:235.866667pt;}
.x8{left:241.986667pt;}
.x12{left:254.946667pt;}
.x1b{left:270.626667pt;}
.x19{left:277.666667pt;}
.x14{left:291.586667pt;}
.x6{left:295.106667pt;}
.x2f{left:304.386655pt;}
.x7{left:312.226667pt;}
.x20{left:318.146655pt;}
.xa{left:324.866667pt;}
.x3c{left:326.946667pt;}
.x25{left:328.546667pt;}
.x38{left:348.066667pt;}
.x31{left:376.546667pt;}
.x9{left:390.666667pt;}
.x23{left:396.866655pt;}
.x2b{left:427.613333pt;}
.x26{left:447.293333pt;}
.x3d{left:454.013333pt;}
.x39{left:475.933333pt;}
.x32{left:510.813333pt;}
.x27{left:514.813333pt;}
.x3e{left:532.093333pt;}
.x2c{left:540.093333pt;}
.x3a{left:574.333333pt;}
.x33{left:576.413333pt;}
.x2d{left:600.773333pt;}
.x3{left:656.933333pt;}
.x21{left:657.893322pt;}
}




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