
    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_c495a46e78440b57d69fba31.woff')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_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_2567a4530cc787074c9af653.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10fa7c25a905a31fc0d3ba62.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8623f8dcd641c37b8ea6b989.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b141bec8758e8c3425452d1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6b5de50b56e705ee163bae1c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_0952e94536b63249f9657ded.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_e0b41a01fa6e72f42e493d25.woff')format("woff");}.fff{font-family:fff;line-height:1.063477;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_c2e7cdb685c148e6ca155b00.woff')format("woff");}.ff10{font-family:ff10;line-height:1.063477;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_d18861fe735072766e52e0f0.woff')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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7943cc4a3d79168b601d2938.woff')format("woff");}.ff12{font-family:ff12;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.v7{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.ls1e{letter-spacing:-0.924000px;}
.ls4{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.149760px;}
.ls13{letter-spacing:0.154800px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.279600px;}
.ls18{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.532800px;}
.ls7{letter-spacing:5.220000px;}
.ls8{letter-spacing:5.340000px;}
.ls1c{letter-spacing:13.491360px;}
.ls1b{letter-spacing:14.079600px;}
.ls21{letter-spacing:16.506720px;}
.ls1f{letter-spacing:19.386720px;}
.lsd{letter-spacing:46.026720px;}
.ls15{letter-spacing:55.362720px;}
.ls10{letter-spacing:55.386720px;}
.ls12{letter-spacing:64.002720px;}
.lse{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.016000px;}
.ws13{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.532080px;}
.wsa{word-spacing:0.771120px;}
.wsc{word-spacing:3.412080px;}
.wse{word-spacing:4.165200px;}
.ws12{word-spacing:5.779440px;}
.ws7{word-spacing:12.669600px;}
._1b{margin-left:-8.153280px;}
._6{margin-left:-7.052640px;}
._5{margin-left:-4.894080px;}
._1c{margin-left:-3.848400px;}
._4{margin-left:-2.848320px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._c{width:2.358240px;}
._7{width:3.899040px;}
._13{width:5.181600px;}
._9{width:6.633360px;}
._8{width:7.828560px;}
._19{width:8.895600px;}
._15{width:9.977040px;}
._a{width:11.172240px;}
._b{width:12.247200px;}
._10{width:13.330800px;}
._18{width:14.887920px;}
._11{width:16.075440px;}
._1d{width:17.246640px;}
._14{width:18.346320px;}
._1a{width:19.684800px;}
._22{width:22.768560px;}
._12{width:24.023520px;}
._16{width:25.275360px;}
._1e{width:26.413920px;}
._21{width:27.595200px;}
._f{width:30.417840px;}
._e{width:35.853120px;}
._17{width:43.149600px;}
._3{width:44.290080px;}
._d{width:70.038720px;}
._1f{width:86.825040px;}
._20{width:136.679760px;}
._1{width:1100.028000px;}
.fc7{color:rgb(238,0,0);}
.fc6{color:transparent;}
.fc4{color:rgb(70,120,134);}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc8{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:7.200000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.yea{bottom:3.240000px;}
.ye8{bottom:3.270000px;}
.y51{bottom:5.760000px;}
.y3c{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y3a{bottom:10.980000px;}
.y50{bottom:25.560000px;}
.y39{bottom:30.960000px;}
.y6{bottom:36.000000px;}
.y4f{bottom:45.540000px;}
.y38{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y4e{bottom:65.340000px;}
.y37{bottom:70.560000px;}
.yed{bottom:78.840000px;}
.y4{bottom:81.720000px;}
.y110{bottom:83.880000px;}
.y4d{bottom:85.140000px;}
.y168{bottom:86.580000px;}
.y23{bottom:89.100000px;}
.y36{bottom:90.360000px;}
.yb5{bottom:94.680000px;}
.y16f{bottom:95.580000px;}
.yec{bottom:96.840000px;}
.y88{bottom:97.380000px;}
.ycb{bottom:99.180000px;}
.y10f{bottom:103.680000px;}
.y4c{bottom:104.940000px;}
.y15d{bottom:106.380000px;}
.y9{bottom:108.570000px;}
.y22{bottom:108.900000px;}
.y35{bottom:110.160000px;}
.yb4{bottom:114.480000px;}
.yeb{bottom:114.840000px;}
.y16e{bottom:115.380000px;}
.y87{bottom:117.180000px;}
.y3{bottom:118.110000px;}
.yca{bottom:118.980000px;}
.y10e{bottom:123.480000px;}
.y4b{bottom:124.740000px;}
.y15c{bottom:126.180000px;}
.y21{bottom:128.700000px;}
.y34{bottom:130.140000px;}
.y8{bottom:130.530000px;}
.ye9{bottom:132.840000px;}
.yb3{bottom:134.460000px;}
.y16d{bottom:135.180000px;}
.y86{bottom:136.980000px;}
.yc9{bottom:138.780000px;}
.y10d{bottom:143.280000px;}
.y4a{bottom:144.720000px;}
.y15b{bottom:145.980000px;}
.y20{bottom:148.500000px;}
.y33{bottom:149.940000px;}
.ye7{bottom:150.840000px;}
.y16c{bottom:155.010000px;}
.yb2{bottom:155.370000px;}
.y85{bottom:156.810000px;}
.yc8{bottom:158.790000px;}
.y49{bottom:164.520000px;}
.y15a{bottom:165.810000px;}
.y1f{bottom:168.330000px;}
.y32{bottom:169.740000px;}
.y139{bottom:169.770000px;}
.ye6{bottom:172.110000px;}
.y10c{bottom:172.290000px;}
.y16b{bottom:174.810000px;}
.yb1{bottom:176.250000px;}
.y84{bottom:176.790000px;}
.yc7{bottom:178.590000px;}
.y48{bottom:184.365000px;}
.y159{bottom:185.790000px;}
.y1e{bottom:188.310000px;}
.y138{bottom:189.570000px;}
.y31{bottom:189.585000px;}
.ye5{bottom:191.910000px;}
.y10b{bottom:192.090000px;}
.y16a{bottom:194.790000px;}
.y83{bottom:196.590000px;}
.yb0{bottom:197.130000px;}
.yc6{bottom:198.390000px;}
.y47{bottom:204.165000px;}
.y137{bottom:204.330000px;}
.y158{bottom:205.590000px;}
.y1d{bottom:208.110000px;}
.y30{bottom:209.385000px;}
.ye4{bottom:211.890000px;}
.y169{bottom:214.590000px;}
.y82{bottom:216.390000px;}
.yaf{bottom:216.930000px;}
.y46{bottom:223.965000px;}
.y136{bottom:225.030000px;}
.y167{bottom:225.390000px;}
.yc5{bottom:227.190000px;}
.y24{bottom:227.370000px;}
.y2f{bottom:229.365000px;}
.ye3{bottom:231.690000px;}
.y157{bottom:234.390000px;}
.y81{bottom:236.190000px;}
.yae{bottom:236.910000px;}
.y45{bottom:243.945000px;}
.y166{bottom:245.190000px;}
.y135{bottom:245.550000px;}
.yc4{bottom:246.990000px;}
.y2e{bottom:249.165000px;}
.ye2{bottom:251.490000px;}
.y156{bottom:254.190000px;}
.y80{bottom:255.990000px;}
.yad{bottom:256.710000px;}
.y44{bottom:263.745000px;}
.y165{bottom:264.990000px;}
.y134{bottom:266.070000px;}
.yc3{bottom:266.970000px;}
.y2d{bottom:268.965000px;}
.y10a{bottom:271.470000px;}
.y155{bottom:273.990000px;}
.y7f{bottom:275.970000px;}
.ye1{bottom:280.290000px;}
.y43{bottom:283.545000px;}
.y164{bottom:284.970000px;}
.yac{bottom:285.510000px;}
.yc2{bottom:286.770000px;}
.y2c{bottom:288.765000px;}
.y109{bottom:291.270000px;}
.y154{bottom:293.970000px;}
.y7e{bottom:295.770000px;}
.ye0{bottom:300.090000px;}
.y42{bottom:303.345000px;}
.y163{bottom:304.770000px;}
.yab{bottom:305.310000px;}
.yc1{bottom:306.570000px;}
.y2b{bottom:308.565000px;}
.y108{bottom:311.070000px;}
.y133{bottom:313.050000px;}
.y153{bottom:313.770000px;}
.y7d{bottom:315.570000px;}
.ydf{bottom:320.070000px;}
.y41{bottom:323.145000px;}
.y162{bottom:324.570000px;}
.yaa{bottom:325.110000px;}
.yc0{bottom:326.370000px;}
.y2a{bottom:328.545000px;}
.y107{bottom:330.870000px;}
.y132{bottom:333.030000px;}
.y152{bottom:333.570000px;}
.y7c{bottom:335.370000px;}
.yde{bottom:339.870000px;}
.ya9{bottom:341.670000px;}
.y40{bottom:343.125000px;}
.y161{bottom:344.370000px;}
.ybf{bottom:346.170000px;}
.y29{bottom:348.345000px;}
.ya8{bottom:349.230000px;}
.y106{bottom:350.670000px;}
.y131{bottom:352.290000px;}
.y151{bottom:353.370000px;}
.y7b{bottom:355.170000px;}
.ydd{bottom:359.670000px;}
.y130{bottom:362.370000px;}
.y3f{bottom:362.925000px;}
.y160{bottom:364.170000px;}
.ybe{bottom:366.150000px;}
.y28{bottom:368.145000px;}
.y105{bottom:370.650000px;}
.ya7{bottom:372.990000px;}
.y150{bottom:373.170000px;}
.y7a{bottom:375.150000px;}
.ydc{bottom:379.470000px;}
.y3e{bottom:382.725000px;}
.y15f{bottom:384.150000px;}
.ybd{bottom:385.950000px;}
.y27{bottom:387.945000px;}
.y104{bottom:390.450000px;}
.y12f{bottom:392.250000px;}
.ya6{bottom:392.790000px;}
.y14f{bottom:393.150000px;}
.y79{bottom:394.950000px;}
.ydb{bottom:399.270000px;}
.y3d{bottom:402.525000px;}
.y15e{bottom:403.995000px;}
.ybc{bottom:405.795000px;}
.y26{bottom:407.745000px;}
.y103{bottom:410.295000px;}
.y12e{bottom:412.095000px;}
.y14e{bottom:412.995000px;}
.ya5{bottom:413.715000px;}
.y78{bottom:414.795000px;}
.yda{bottom:419.295000px;}
.ya1{bottom:423.795000px;}
.ybb{bottom:425.595000px;}
.y25{bottom:427.755000px;}
.y102{bottom:430.095000px;}
.y12d{bottom:431.895000px;}
.y14d{bottom:432.795000px;}
.ya4{bottom:433.515000px;}
.y77{bottom:434.595000px;}
.yd9{bottom:439.095000px;}
.ya0{bottom:443.595000px;}
.yba{bottom:445.395000px;}
.y101{bottom:449.895000px;}
.y14c{bottom:452.595000px;}
.ya3{bottom:453.315000px;}
.y76{bottom:454.395000px;}
.y12c{bottom:460.875000px;}
.y9f{bottom:463.395000px;}
.yb9{bottom:465.375000px;}
.yd8{bottom:467.895000px;}
.y100{bottom:469.875000px;}
.y14b{bottom:472.395000px;}
.ya2{bottom:473.295000px;}
.y75{bottom:474.375000px;}
.y12b{bottom:480.675000px;}
.y9e{bottom:483.375000px;}
.yb8{bottom:485.175000px;}
.yd7{bottom:487.695000px;}
.yff{bottom:489.675000px;}
.y14a{bottom:492.375000px;}
.y74{bottom:494.175000px;}
.y12a{bottom:500.475000px;}
.y9d{bottom:503.175000px;}
.yb7{bottom:504.975000px;}
.yd6{bottom:507.495000px;}
.y149{bottom:512.175000px;}
.y73{bottom:513.975000px;}
.yfe{bottom:518.475000px;}
.y129{bottom:520.275000px;}
.y9c{bottom:522.975000px;}
.yb6{bottom:524.775000px;}
.yd5{bottom:527.475000px;}
.y148{bottom:531.975000px;}
.y72{bottom:533.775000px;}
.yfd{bottom:538.275000px;}
.y9b{bottom:542.775000px;}
.yd4{bottom:547.275000px;}
.y128{bottom:549.075000px;}
.y147{bottom:551.775000px;}
.y71{bottom:553.575000px;}
.yfc{bottom:558.075000px;}
.y9a{bottom:562.575000px;}
.yd3{bottom:567.075000px;}
.y127{bottom:569.055000px;}
.y146{bottom:571.575000px;}
.y70{bottom:573.555000px;}
.yfb{bottom:578.055000px;}
.y99{bottom:582.555000px;}
.yd2{bottom:586.875000px;}
.y126{bottom:588.855000px;}
.y145{bottom:591.555000px;}
.y6f{bottom:593.355000px;}
.yfa{bottom:597.855000px;}
.y98{bottom:602.355000px;}
.yd1{bottom:606.675000px;}
.y125{bottom:608.655000px;}
.y144{bottom:611.355000px;}
.y6e{bottom:613.155000px;}
.yf9{bottom:617.655000px;}
.y97{bottom:622.155000px;}
.yd0{bottom:626.655000px;}
.y124{bottom:628.455000px;}
.y143{bottom:631.155000px;}
.y6d{bottom:632.955000px;}
.yf8{bottom:637.455000px;}
.y96{bottom:641.955000px;}
.y123{bottom:648.255000px;}
.y3b{bottom:649.185000px;}
.y142{bottom:650.985000px;}
.y6c{bottom:652.785000px;}
.ycf{bottom:655.485000px;}
.yf7{bottom:657.285000px;}
.y95{bottom:661.785000px;}
.y141{bottom:670.785000px;}
.y6b{bottom:672.765000px;}
.yce{bottom:675.285000px;}
.yf6{bottom:677.265000px;}
.y94{bottom:681.765000px;}
.y1c{bottom:682.665000px;}
.y140{bottom:690.765000px;}
.y6a{bottom:692.565000px;}
.ycd{bottom:695.085000px;}
.yf5{bottom:697.065000px;}
.y93{bottom:701.565000px;}
.y1b{bottom:707.865000px;}
.y13f{bottom:710.565000px;}
.y69{bottom:712.365000px;}
.ycc{bottom:714.885000px;}
.yf4{bottom:716.865000px;}
.y92{bottom:721.365000px;}
.y1a{bottom:727.665000px;}
.y13e{bottom:730.365000px;}
.y68{bottom:732.165000px;}
.yf3{bottom:736.665000px;}
.y91{bottom:741.165000px;}
.y19{bottom:744.945000px;}
.y13d{bottom:750.165000px;}
.yf2{bottom:751.425000px;}
.y122{bottom:756.465000px;}
.y67{bottom:760.965000px;}
.y18{bottom:762.225000px;}
.y13c{bottom:769.965000px;}
.yf1{bottom:772.125000px;}
.y121{bottom:776.445000px;}
.y66{bottom:780.945000px;}
.y17{bottom:782.025000px;}
.y13b{bottom:789.945000px;}
.yf0{bottom:792.645000px;}
.y120{bottom:796.245000px;}
.y16{bottom:796.605000px;}
.y65{bottom:800.745000px;}
.y13a{bottom:809.745000px;}
.yef{bottom:813.165000px;}
.y11f{bottom:816.045000px;}
.y64{bottom:820.545000px;}
.y15{bottom:821.625000px;}
.y90{bottom:829.545000px;}
.yee{bottom:833.865000px;}
.y11e{bottom:835.845000px;}
.y14{bottom:836.205000px;}
.y63{bottom:840.345000px;}
.y8f{bottom:849.345000px;}
.y11d{bottom:855.645000px;}
.y62{bottom:860.145000px;}
.y13{bottom:861.225000px;}
.y8e{bottom:869.145000px;}
.y11c{bottom:875.625000px;}
.y12{bottom:875.985000px;}
.y61{bottom:880.125000px;}
.y8d{bottom:889.125000px;}
.y11b{bottom:895.425000px;}
.y60{bottom:899.970000px;}
.y11{bottom:901.050000px;}
.y8c{bottom:908.970000px;}
.y11a{bottom:915.270000px;}
.y10{bottom:916.170000px;}
.y5f{bottom:919.770000px;}
.y8b{bottom:928.770000px;}
.y119{bottom:930.030000px;}
.yf{bottom:937.950000px;}
.y5e{bottom:939.570000px;}
.y8a{bottom:948.570000px;}
.y118{bottom:950.730000px;}
.ye{bottom:959.190000px;}
.y5d{bottom:959.370000px;}
.y89{bottom:968.370000px;}
.y117{bottom:971.250000px;}
.yd{bottom:982.770000px;}
.y5c{bottom:988.350000px;}
.y116{bottom:991.770000px;}
.y5b{bottom:1008.150000px;}
.y115{bottom:1012.470000px;}
.yc{bottom:1014.450000px;}
.y5a{bottom:1027.950000px;}
.ya{bottom:1040.190000px;}
.y59{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.y114{bottom:1058.550000px;}
.y58{bottom:1067.550000px;}
.y113{bottom:1078.530000px;}
.y57{bottom:1087.530000px;}
.y112{bottom:1098.330000px;}
.y56{bottom:1107.330000px;}
.y111{bottom:1118.130000px;}
.y55{bottom:1127.130000px;}
.y54{bottom:1146.960000px;}
.y53{bottom:1166.760000px;}
.y52{bottom:1195.740000px;}
.h14{height:17.280000px;}
.h13{height:17.316000px;}
.h16{height:19.800000px;}
.hd{height:19.980000px;}
.ha{height:27.147656px;}
.h15{height:39.600000px;}
.h5{height:40.773164px;}
.h8{height:41.726953px;}
.hb{height:42.164648px;}
.h10{height:43.506914px;}
.h19{height:43.681992px;}
.h9{height:53.224453px;}
.hf{height:65.884219px;}
.h7{height:67.565039px;}
.h11{height:70.474219px;}
.h6{height:71.613281px;}
.h12{height:71.966953px;}
.h3{height:73.722656px;}
.h18{height:90.684141px;}
.h17{height:96.444141px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.he{height:416.550000px;}
.hc{height:441.795000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:63.000000px;}
.w10{width:104.976000px;}
.wf{width:115.956000px;}
.w14{width:116.316000px;}
.w8{width:124.200000px;}
.w16{width:124.380000px;}
.wb{width:126.216000px;}
.w12{width:126.720000px;}
.w2{width:127.656000px;}
.w13{width:137.376000px;}
.w11{width:137.916000px;}
.w9{width:138.816000px;}
.w15{width:156.630000px;}
.w4{width:157.170000px;}
.we{width:160.410000px;}
.wc{width:179.310000px;}
.w19{width:182.190000px;}
.w17{width:185.430000px;}
.w18{width:191.190000px;}
.wd{width:200.550000px;}
.w6{width:285.555000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:67.499987px;}
.xd{left:80.999987px;}
.x1f{left:103.896000px;}
.xe{left:108.035987px;}
.x7{left:114.885000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x12{left:135.035987px;}
.x1a{left:160.410000px;}
.xf{left:162.029987px;}
.x3{left:181.650000px;}
.x11{left:189.029987px;}
.xc{left:214.049987px;}
.x20{left:228.990000px;}
.x13{left:270.074987px;}
.x14{left:282.855000px;}
.x1b{left:299.055000px;}
.xb{left:342.795000px;}
.x1e{left:344.054987px;}
.x17{left:361.875000px;}
.x15{left:407.775000px;}
.x21{left:415.155000px;}
.x1c{left:426.675000px;}
.x16{left:547.305000px;}
.x18{left:563.145000px;}
.x1d{left:564.765000px;}
.x22{left:607.065000px;}
.x10{left:659.669987px;}
.x9{left:681.450000px;}
.x19{left:724.290000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.v7{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.ls1e{letter-spacing:-0.821333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133120pt;}
.ls13{letter-spacing:0.137600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.248533pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.473600pt;}
.ls7{letter-spacing:4.640000pt;}
.ls8{letter-spacing:4.746667pt;}
.ls1c{letter-spacing:11.992320pt;}
.ls1b{letter-spacing:12.515200pt;}
.ls21{letter-spacing:14.672640pt;}
.ls1f{letter-spacing:17.232640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls15{letter-spacing:49.211307pt;}
.ls10{letter-spacing:49.232640pt;}
.ls12{letter-spacing:56.891307pt;}
.lse{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.458667pt;}
.ws13{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.472960pt;}
.wsa{word-spacing:0.685440pt;}
.wsc{word-spacing:3.032960pt;}
.wse{word-spacing:3.702400pt;}
.ws12{word-spacing:5.137280pt;}
.ws7{word-spacing:11.261867pt;}
._1b{margin-left:-7.247360pt;}
._6{margin-left:-6.269013pt;}
._5{margin-left:-4.350293pt;}
._1c{margin-left:-3.420800pt;}
._4{margin-left:-2.531840pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._c{width:2.096213pt;}
._7{width:3.465813pt;}
._13{width:4.605867pt;}
._9{width:5.896320pt;}
._8{width:6.958720pt;}
._19{width:7.907200pt;}
._15{width:8.868480pt;}
._a{width:9.930880pt;}
._b{width:10.886400pt;}
._10{width:11.849600pt;}
._18{width:13.233707pt;}
._11{width:14.289280pt;}
._1d{width:15.330347pt;}
._14{width:16.307840pt;}
._1a{width:17.497600pt;}
._22{width:20.238720pt;}
._12{width:21.354240pt;}
._16{width:22.466987pt;}
._1e{width:23.479040pt;}
._21{width:24.529067pt;}
._f{width:27.038080pt;}
._e{width:31.869440pt;}
._17{width:38.355200pt;}
._3{width:39.368960pt;}
._d{width:62.256640pt;}
._1f{width:77.177813pt;}
._20{width:121.493120pt;}
._1{width:977.802667pt;}
.fs8{font-size:6.400000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.yea{bottom:2.880000pt;}
.ye8{bottom:2.906667pt;}
.y51{bottom:5.120000pt;}
.y3c{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y3a{bottom:9.760000pt;}
.y50{bottom:22.720000pt;}
.y39{bottom:27.520000pt;}
.y6{bottom:32.000000pt;}
.y4f{bottom:40.480000pt;}
.y38{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y4e{bottom:58.080000pt;}
.y37{bottom:62.720000pt;}
.yed{bottom:70.080000pt;}
.y4{bottom:72.640000pt;}
.y110{bottom:74.560000pt;}
.y4d{bottom:75.680000pt;}
.y168{bottom:76.960000pt;}
.y23{bottom:79.200000pt;}
.y36{bottom:80.320000pt;}
.yb5{bottom:84.160000pt;}
.y16f{bottom:84.960000pt;}
.yec{bottom:86.080000pt;}
.y88{bottom:86.560000pt;}
.ycb{bottom:88.160000pt;}
.y10f{bottom:92.160000pt;}
.y4c{bottom:93.280000pt;}
.y15d{bottom:94.560000pt;}
.y9{bottom:96.506667pt;}
.y22{bottom:96.800000pt;}
.y35{bottom:97.920000pt;}
.yb4{bottom:101.760000pt;}
.yeb{bottom:102.080000pt;}
.y16e{bottom:102.560000pt;}
.y87{bottom:104.160000pt;}
.y3{bottom:104.986667pt;}
.yca{bottom:105.760000pt;}
.y10e{bottom:109.760000pt;}
.y4b{bottom:110.880000pt;}
.y15c{bottom:112.160000pt;}
.y21{bottom:114.400000pt;}
.y34{bottom:115.680000pt;}
.y8{bottom:116.026667pt;}
.ye9{bottom:118.080000pt;}
.yb3{bottom:119.520000pt;}
.y16d{bottom:120.160000pt;}
.y86{bottom:121.760000pt;}
.yc9{bottom:123.360000pt;}
.y10d{bottom:127.360000pt;}
.y4a{bottom:128.640000pt;}
.y15b{bottom:129.760000pt;}
.y20{bottom:132.000000pt;}
.y33{bottom:133.280000pt;}
.ye7{bottom:134.080000pt;}
.y16c{bottom:137.786667pt;}
.yb2{bottom:138.106667pt;}
.y85{bottom:139.386667pt;}
.yc8{bottom:141.146667pt;}
.y49{bottom:146.240000pt;}
.y15a{bottom:147.386667pt;}
.y1f{bottom:149.626667pt;}
.y32{bottom:150.880000pt;}
.y139{bottom:150.906667pt;}
.ye6{bottom:152.986667pt;}
.y10c{bottom:153.146667pt;}
.y16b{bottom:155.386667pt;}
.yb1{bottom:156.666667pt;}
.y84{bottom:157.146667pt;}
.yc7{bottom:158.746667pt;}
.y48{bottom:163.880000pt;}
.y159{bottom:165.146667pt;}
.y1e{bottom:167.386667pt;}
.y138{bottom:168.506667pt;}
.y31{bottom:168.520000pt;}
.ye5{bottom:170.586667pt;}
.y10b{bottom:170.746667pt;}
.y16a{bottom:173.146667pt;}
.y83{bottom:174.746667pt;}
.yb0{bottom:175.226667pt;}
.yc6{bottom:176.346667pt;}
.y47{bottom:181.480000pt;}
.y137{bottom:181.626667pt;}
.y158{bottom:182.746667pt;}
.y1d{bottom:184.986667pt;}
.y30{bottom:186.120000pt;}
.ye4{bottom:188.346667pt;}
.y169{bottom:190.746667pt;}
.y82{bottom:192.346667pt;}
.yaf{bottom:192.826667pt;}
.y46{bottom:199.080000pt;}
.y136{bottom:200.026667pt;}
.y167{bottom:200.346667pt;}
.yc5{bottom:201.946667pt;}
.y24{bottom:202.106667pt;}
.y2f{bottom:203.880000pt;}
.ye3{bottom:205.946667pt;}
.y157{bottom:208.346667pt;}
.y81{bottom:209.946667pt;}
.yae{bottom:210.586667pt;}
.y45{bottom:216.840000pt;}
.y166{bottom:217.946667pt;}
.y135{bottom:218.266667pt;}
.yc4{bottom:219.546667pt;}
.y2e{bottom:221.480000pt;}
.ye2{bottom:223.546667pt;}
.y156{bottom:225.946667pt;}
.y80{bottom:227.546667pt;}
.yad{bottom:228.186667pt;}
.y44{bottom:234.440000pt;}
.y165{bottom:235.546667pt;}
.y134{bottom:236.506667pt;}
.yc3{bottom:237.306667pt;}
.y2d{bottom:239.080000pt;}
.y10a{bottom:241.306667pt;}
.y155{bottom:243.546667pt;}
.y7f{bottom:245.306667pt;}
.ye1{bottom:249.146667pt;}
.y43{bottom:252.040000pt;}
.y164{bottom:253.306667pt;}
.yac{bottom:253.786667pt;}
.yc2{bottom:254.906667pt;}
.y2c{bottom:256.680000pt;}
.y109{bottom:258.906667pt;}
.y154{bottom:261.306667pt;}
.y7e{bottom:262.906667pt;}
.ye0{bottom:266.746667pt;}
.y42{bottom:269.640000pt;}
.y163{bottom:270.906667pt;}
.yab{bottom:271.386667pt;}
.yc1{bottom:272.506667pt;}
.y2b{bottom:274.280000pt;}
.y108{bottom:276.506667pt;}
.y133{bottom:278.266667pt;}
.y153{bottom:278.906667pt;}
.y7d{bottom:280.506667pt;}
.ydf{bottom:284.506667pt;}
.y41{bottom:287.240000pt;}
.y162{bottom:288.506667pt;}
.yaa{bottom:288.986667pt;}
.yc0{bottom:290.106667pt;}
.y2a{bottom:292.040000pt;}
.y107{bottom:294.106667pt;}
.y132{bottom:296.026667pt;}
.y152{bottom:296.506667pt;}
.y7c{bottom:298.106667pt;}
.yde{bottom:302.106667pt;}
.ya9{bottom:303.706667pt;}
.y40{bottom:305.000000pt;}
.y161{bottom:306.106667pt;}
.ybf{bottom:307.706667pt;}
.y29{bottom:309.640000pt;}
.ya8{bottom:310.426667pt;}
.y106{bottom:311.706667pt;}
.y131{bottom:313.146667pt;}
.y151{bottom:314.106667pt;}
.y7b{bottom:315.706667pt;}
.ydd{bottom:319.706667pt;}
.y130{bottom:322.106667pt;}
.y3f{bottom:322.600000pt;}
.y160{bottom:323.706667pt;}
.ybe{bottom:325.466667pt;}
.y28{bottom:327.240000pt;}
.y105{bottom:329.466667pt;}
.ya7{bottom:331.546667pt;}
.y150{bottom:331.706667pt;}
.y7a{bottom:333.466667pt;}
.ydc{bottom:337.306667pt;}
.y3e{bottom:340.200000pt;}
.y15f{bottom:341.466667pt;}
.ybd{bottom:343.066667pt;}
.y27{bottom:344.840000pt;}
.y104{bottom:347.066667pt;}
.y12f{bottom:348.666667pt;}
.ya6{bottom:349.146667pt;}
.y14f{bottom:349.466667pt;}
.y79{bottom:351.066667pt;}
.ydb{bottom:354.906667pt;}
.y3d{bottom:357.800000pt;}
.y15e{bottom:359.106667pt;}
.ybc{bottom:360.706667pt;}
.y26{bottom:362.440000pt;}
.y103{bottom:364.706667pt;}
.y12e{bottom:366.306667pt;}
.y14e{bottom:367.106667pt;}
.ya5{bottom:367.746667pt;}
.y78{bottom:368.706667pt;}
.yda{bottom:372.706667pt;}
.ya1{bottom:376.706667pt;}
.ybb{bottom:378.306667pt;}
.y25{bottom:380.226667pt;}
.y102{bottom:382.306667pt;}
.y12d{bottom:383.906667pt;}
.y14d{bottom:384.706667pt;}
.ya4{bottom:385.346667pt;}
.y77{bottom:386.306667pt;}
.yd9{bottom:390.306667pt;}
.ya0{bottom:394.306667pt;}
.yba{bottom:395.906667pt;}
.y101{bottom:399.906667pt;}
.y14c{bottom:402.306667pt;}
.ya3{bottom:402.946667pt;}
.y76{bottom:403.906667pt;}
.y12c{bottom:409.666667pt;}
.y9f{bottom:411.906667pt;}
.yb9{bottom:413.666667pt;}
.yd8{bottom:415.906667pt;}
.y100{bottom:417.666667pt;}
.y14b{bottom:419.906667pt;}
.ya2{bottom:420.706667pt;}
.y75{bottom:421.666667pt;}
.y12b{bottom:427.266667pt;}
.y9e{bottom:429.666667pt;}
.yb8{bottom:431.266667pt;}
.yd7{bottom:433.506667pt;}
.yff{bottom:435.266667pt;}
.y14a{bottom:437.666667pt;}
.y74{bottom:439.266667pt;}
.y12a{bottom:444.866667pt;}
.y9d{bottom:447.266667pt;}
.yb7{bottom:448.866667pt;}
.yd6{bottom:451.106667pt;}
.y149{bottom:455.266667pt;}
.y73{bottom:456.866667pt;}
.yfe{bottom:460.866667pt;}
.y129{bottom:462.466667pt;}
.y9c{bottom:464.866667pt;}
.yb6{bottom:466.466667pt;}
.yd5{bottom:468.866667pt;}
.y148{bottom:472.866667pt;}
.y72{bottom:474.466667pt;}
.yfd{bottom:478.466667pt;}
.y9b{bottom:482.466667pt;}
.yd4{bottom:486.466667pt;}
.y128{bottom:488.066667pt;}
.y147{bottom:490.466667pt;}
.y71{bottom:492.066667pt;}
.yfc{bottom:496.066667pt;}
.y9a{bottom:500.066667pt;}
.yd3{bottom:504.066667pt;}
.y127{bottom:505.826667pt;}
.y146{bottom:508.066667pt;}
.y70{bottom:509.826667pt;}
.yfb{bottom:513.826667pt;}
.y99{bottom:517.826667pt;}
.yd2{bottom:521.666667pt;}
.y126{bottom:523.426667pt;}
.y145{bottom:525.826667pt;}
.y6f{bottom:527.426667pt;}
.yfa{bottom:531.426667pt;}
.y98{bottom:535.426667pt;}
.yd1{bottom:539.266667pt;}
.y125{bottom:541.026667pt;}
.y144{bottom:543.426667pt;}
.y6e{bottom:545.026667pt;}
.yf9{bottom:549.026667pt;}
.y97{bottom:553.026667pt;}
.yd0{bottom:557.026667pt;}
.y124{bottom:558.626667pt;}
.y143{bottom:561.026667pt;}
.y6d{bottom:562.626667pt;}
.yf8{bottom:566.626667pt;}
.y96{bottom:570.626667pt;}
.y123{bottom:576.226667pt;}
.y3b{bottom:577.053333pt;}
.y142{bottom:578.653333pt;}
.y6c{bottom:580.253333pt;}
.ycf{bottom:582.653333pt;}
.yf7{bottom:584.253333pt;}
.y95{bottom:588.253333pt;}
.y141{bottom:596.253333pt;}
.y6b{bottom:598.013333pt;}
.yce{bottom:600.253333pt;}
.yf6{bottom:602.013333pt;}
.y94{bottom:606.013333pt;}
.y1c{bottom:606.813333pt;}
.y140{bottom:614.013333pt;}
.y6a{bottom:615.613333pt;}
.ycd{bottom:617.853333pt;}
.yf5{bottom:619.613333pt;}
.y93{bottom:623.613333pt;}
.y1b{bottom:629.213333pt;}
.y13f{bottom:631.613333pt;}
.y69{bottom:633.213333pt;}
.ycc{bottom:635.453333pt;}
.yf4{bottom:637.213333pt;}
.y92{bottom:641.213333pt;}
.y1a{bottom:646.813333pt;}
.y13e{bottom:649.213333pt;}
.y68{bottom:650.813333pt;}
.yf3{bottom:654.813333pt;}
.y91{bottom:658.813333pt;}
.y19{bottom:662.173333pt;}
.y13d{bottom:666.813333pt;}
.yf2{bottom:667.933333pt;}
.y122{bottom:672.413333pt;}
.y67{bottom:676.413333pt;}
.y18{bottom:677.533333pt;}
.y13c{bottom:684.413333pt;}
.yf1{bottom:686.333333pt;}
.y121{bottom:690.173333pt;}
.y66{bottom:694.173333pt;}
.y17{bottom:695.133333pt;}
.y13b{bottom:702.173333pt;}
.yf0{bottom:704.573333pt;}
.y120{bottom:707.773333pt;}
.y16{bottom:708.093333pt;}
.y65{bottom:711.773333pt;}
.y13a{bottom:719.773333pt;}
.yef{bottom:722.813333pt;}
.y11f{bottom:725.373333pt;}
.y64{bottom:729.373333pt;}
.y15{bottom:730.333333pt;}
.y90{bottom:737.373333pt;}
.yee{bottom:741.213333pt;}
.y11e{bottom:742.973333pt;}
.y14{bottom:743.293333pt;}
.y63{bottom:746.973333pt;}
.y8f{bottom:754.973333pt;}
.y11d{bottom:760.573333pt;}
.y62{bottom:764.573333pt;}
.y13{bottom:765.533333pt;}
.y8e{bottom:772.573333pt;}
.y11c{bottom:778.333333pt;}
.y12{bottom:778.653333pt;}
.y61{bottom:782.333333pt;}
.y8d{bottom:790.333333pt;}
.y11b{bottom:795.933333pt;}
.y60{bottom:799.973333pt;}
.y11{bottom:800.933333pt;}
.y8c{bottom:807.973333pt;}
.y11a{bottom:813.573333pt;}
.y10{bottom:814.373333pt;}
.y5f{bottom:817.573333pt;}
.y8b{bottom:825.573333pt;}
.y119{bottom:826.693333pt;}
.yf{bottom:833.733333pt;}
.y5e{bottom:835.173333pt;}
.y8a{bottom:843.173333pt;}
.y118{bottom:845.093333pt;}
.ye{bottom:852.613333pt;}
.y5d{bottom:852.773333pt;}
.y89{bottom:860.773333pt;}
.y117{bottom:863.333333pt;}
.yd{bottom:873.573333pt;}
.y5c{bottom:878.533333pt;}
.y116{bottom:881.573333pt;}
.y5b{bottom:896.133333pt;}
.y115{bottom:899.973333pt;}
.yc{bottom:901.733333pt;}
.y5a{bottom:913.733333pt;}
.ya{bottom:924.613333pt;}
.y59{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.y114{bottom:940.933333pt;}
.y58{bottom:948.933333pt;}
.y113{bottom:958.693333pt;}
.y57{bottom:966.693333pt;}
.y112{bottom:976.293333pt;}
.y56{bottom:984.293333pt;}
.y111{bottom:993.893333pt;}
.y55{bottom:1001.893333pt;}
.y54{bottom:1019.520000pt;}
.y53{bottom:1037.120000pt;}
.y52{bottom:1062.880000pt;}
.h14{height:15.360000pt;}
.h13{height:15.392000pt;}
.h16{height:17.600000pt;}
.hd{height:17.760000pt;}
.ha{height:24.131250pt;}
.h15{height:35.200000pt;}
.h5{height:36.242812pt;}
.h8{height:37.090625pt;}
.hb{height:37.479688pt;}
.h10{height:38.672812pt;}
.h19{height:38.828437pt;}
.h9{height:47.310625pt;}
.hf{height:58.563750pt;}
.h7{height:60.057813pt;}
.h11{height:62.643750pt;}
.h6{height:63.656250pt;}
.h12{height:63.970625pt;}
.h3{height:65.531250pt;}
.h18{height:80.608125pt;}
.h17{height:85.728125pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.he{height:370.266667pt;}
.hc{height:392.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:56.000000pt;}
.w10{width:93.312000pt;}
.wf{width:103.072000pt;}
.w14{width:103.392000pt;}
.w8{width:110.400000pt;}
.w16{width:110.560000pt;}
.wb{width:112.192000pt;}
.w12{width:112.640000pt;}
.w2{width:113.472000pt;}
.w13{width:122.112000pt;}
.w11{width:122.592000pt;}
.w9{width:123.392000pt;}
.w15{width:139.226667pt;}
.w4{width:139.706667pt;}
.we{width:142.586667pt;}
.wc{width:159.386667pt;}
.w19{width:161.946667pt;}
.w17{width:164.826667pt;}
.w18{width:169.946667pt;}
.wd{width:178.266667pt;}
.w6{width:253.826667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:59.999988pt;}
.xd{left:71.999988pt;}
.x1f{left:92.352000pt;}
.xe{left:96.031988pt;}
.x7{left:102.120000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x12{left:120.031988pt;}
.x1a{left:142.586667pt;}
.xf{left:144.026655pt;}
.x3{left:161.466667pt;}
.x11{left:168.026655pt;}
.xc{left:190.266655pt;}
.x20{left:203.546667pt;}
.x13{left:240.066655pt;}
.x14{left:251.426667pt;}
.x1b{left:265.826667pt;}
.xb{left:304.706667pt;}
.x1e{left:305.826655pt;}
.x17{left:321.666667pt;}
.x15{left:362.466667pt;}
.x21{left:369.026667pt;}
.x1c{left:379.266667pt;}
.x16{left:486.493333pt;}
.x18{left:500.573333pt;}
.x1d{left:502.013333pt;}
.x22{left:539.613333pt;}
.x10{left:586.373322pt;}
.x9{left:605.733333pt;}
.x19{left:643.813333pt;}
}




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