
    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_6a2e829adda0b2683a96e974.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_7a860710154901c28d945e5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906250;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_bc0d929fce9ac19443667487.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906250;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_c543f5ccb6fe3640dc74a4a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a1b337c5172e504c965f9611.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_58ec691d99d6d19a05ff28c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_5bfab6f061dd89d7e99e1f1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_a4a61125357ec4f563950aec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_a84eda710b3c24bf78fc2ac1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_d33cfabd8e4544686c51f0eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_5f3e334f9845d8c6016394fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_5b22e0d9b431dc932fc4f363.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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_033f08488048f8152c3617a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_6ef9a817ae371a627cf23dbc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_07284917ea4366b1a31d579e.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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_553cfd89ccb4c44aec475943.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_61fe8ad3d7fbbf88c74f3577.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-104.400000px;}
.v7{vertical-align:-82.800000px;}
.v6{vertical-align:-79.920000px;}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-48.960000px;}
.vd{vertical-align:-26.640000px;}
.v3{vertical-align:-23.760000px;}
.vb{vertical-align:-10.080000px;}
.v8{vertical-align:-5.760000px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.760000px;}
.vc{vertical-align:10.080000px;}
.v2{vertical-align:23.760000px;}
.va{vertical-align:26.640000px;}
.ls14{letter-spacing:-20.160000px;}
.ls18{letter-spacing:-17.280000px;}
.ls13{letter-spacing:-15.120000px;}
.ls17{letter-spacing:-11.520000px;}
.ls19{letter-spacing:-4.320000px;}
.ls8{letter-spacing:-3.600000px;}
.ls9{letter-spacing:-0.738000px;}
.ls7{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.202800px;}
.lse{letter-spacing:-0.178800px;}
.ls2c{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.102000px;}
.lsd{letter-spacing:-0.038160px;}
.ls6{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.178560px;}
.ls1d{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.269280px;}
.ls29{letter-spacing:0.269400px;}
.ls25{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.389280px;}
.ls16{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.864000px;}
.ls1e{letter-spacing:2.736000px;}
.ls1f{letter-spacing:3.888000px;}
.ls23{letter-spacing:5.760000px;}
.ls22{letter-spacing:7.200000px;}
.ls0{letter-spacing:10.697760px;}
.lsc{letter-spacing:15.720000px;}
.ls5{letter-spacing:21.060000px;}
.ls11{letter-spacing:30.240000px;}
.ls10{letter-spacing:34.128000px;}
.ls2a{letter-spacing:55.008000px;}
.lsf{letter-spacing:57.060000px;}
.ls1c{letter-spacing:64.026720px;}
.ls20{letter-spacing:64.512000px;}
.ls3{letter-spacing:89.629920px;}
.ls4{letter-spacing:90.349920px;}
.ls15{letter-spacing:109.386720px;}
.ls1{letter-spacing:157.716000px;}
.ls2b{letter-spacing:692.040000px;}
.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;}
}
.ws18{word-spacing:-72.000000px;}
.ws2{word-spacing:-50.400000px;}
.ws0{word-spacing:-48.240000px;}
.ws1{word-spacing:-47.520000px;}
.wsf{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.970240px;}
.wse{word-spacing:-14.940000px;}
.ws6{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.816720px;}
.ws17{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.329400px;}
.ws10{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.466000px;}
.wsa{word-spacing:-11.430480px;}
.ws4{word-spacing:-10.699440px;}
.ws8{word-spacing:-10.440000px;}
.ws11{word-spacing:-9.187200px;}
.wsb{word-spacing:0.000000px;}
.ws13{word-spacing:3.672000px;}
.ws16{word-spacing:4.392000px;}
.ws12{word-spacing:31.618800px;}
._0{margin-left:-6.480000px;}
._10{margin-left:-5.328000px;}
._2{margin-left:-3.816000px;}
._4{margin-left:-2.789280px;}
._1{margin-left:-1.713600px;}
._3{width:1.533600px;}
._5{width:2.988000px;}
._8{width:4.636800px;}
._e{width:6.120000px;}
._f{width:7.560000px;}
._c{width:8.867520px;}
._6{width:9.875520px;}
._7{width:10.981440px;}
._d{width:12.456000px;}
._a{width:14.097600px;}
._9{width:15.408000px;}
._17{width:16.608000px;}
._1c{width:17.700000px;}
._b{width:19.065600px;}
._1d{width:20.080800px;}
._11{width:21.127200px;}
._12{width:22.392000px;}
._1b{width:23.616000px;}
._15{width:24.624000px;}
._16{width:25.636800px;}
._13{width:28.152000px;}
._14{width:29.232000px;}
._1a{width:48.816000px;}
._18{width:138.384000px;}
._19{width:197.976000px;}
.fc4{color:rgb(0,172,255);}
.fc1{color:rgb(0,31,95);}
.fc3{color:rgb(44,54,58);}
.fc2{color:rgb(26,23,27);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:74.880000px;}
.fsc{font-size:75.893905px;}
.fsd{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fsa{font-size:99.360000px;}
.y0{bottom:0.000000px;}
.y119{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y116{bottom:14.220000px;}
.y11d{bottom:14.400000px;}
.y118{bottom:24.660000px;}
.y13f{bottom:24.705000px;}
.y114{bottom:30.990000px;}
.y115{bottom:34.950000px;}
.y13a{bottom:35.100000px;}
.y138{bottom:41.400000px;}
.y13c{bottom:45.360000px;}
.y117{bottom:45.390000px;}
.y3a{bottom:54.000000px;}
.y139{bottom:55.800000px;}
.y13b{bottom:66.060000px;}
.y3{bottom:71.496000px;}
.y1{bottom:71.676000px;}
.yc7{bottom:91.116000px;}
.y112{bottom:91.836000px;}
.yf4{bottom:94.176000px;}
.y136{bottom:94.536000px;}
.y9e{bottom:95.616000px;}
.yaa{bottom:98.316000px;}
.y39{bottom:99.936000px;}
.y6b{bottom:106.056000px;}
.yf9{bottom:107.136000px;}
.yc6{bottom:111.816000px;}
.y111{bottom:112.536000px;}
.yf3{bottom:114.876000px;}
.y135{bottom:115.236000px;}
.y9d{bottom:116.316000px;}
.y38{bottom:117.216000px;}
.ya9{bottom:119.016000px;}
.y6a{bottom:126.756000px;}
.yf8{bottom:127.836000px;}
.yc5{bottom:132.516000px;}
.y110{bottom:133.236000px;}
.y16e{bottom:133.596000px;}
.y37{bottom:134.496000px;}
.yf2{bottom:135.576000px;}
.y134{bottom:135.936000px;}
.y9c{bottom:137.016000px;}
.ya8{bottom:139.716000px;}
.y69{bottom:147.456000px;}
.yf7{bottom:148.536000px;}
.y36{bottom:151.770000px;}
.yc4{bottom:153.210000px;}
.y10f{bottom:153.930000px;}
.y16d{bottom:154.290000px;}
.yf1{bottom:156.270000px;}
.y133{bottom:156.630000px;}
.y9b{bottom:157.710000px;}
.ya7{bottom:160.410000px;}
.y68{bottom:168.150000px;}
.y35{bottom:169.050000px;}
.yf6{bottom:169.230000px;}
.yc3{bottom:173.910000px;}
.y10e{bottom:174.630000px;}
.y16c{bottom:174.990000px;}
.yf0{bottom:176.970000px;}
.y132{bottom:177.330000px;}
.y9a{bottom:178.410000px;}
.ya6{bottom:181.110000px;}
.yf5{bottom:185.970000px;}
.y34{bottom:186.150000px;}
.y67{bottom:188.850000px;}
.yc2{bottom:194.610000px;}
.y10d{bottom:195.330000px;}
.y16b{bottom:195.690000px;}
.yef{bottom:197.670000px;}
.y131{bottom:198.030000px;}
.y99{bottom:199.110000px;}
.ya5{bottom:201.810000px;}
.y33{bottom:203.430000px;}
.y66{bottom:209.550000px;}
.yc1{bottom:215.310000px;}
.y10c{bottom:216.030000px;}
.y16a{bottom:216.390000px;}
.yee{bottom:218.370000px;}
.y130{bottom:218.730000px;}
.y98{bottom:219.810000px;}
.y32{bottom:220.710000px;}
.ya4{bottom:222.510000px;}
.y65{bottom:230.250000px;}
.yc0{bottom:236.010000px;}
.y10b{bottom:236.730000px;}
.y169{bottom:237.090000px;}
.y31{bottom:237.990000px;}
.yed{bottom:239.070000px;}
.y12f{bottom:239.430000px;}
.y97{bottom:240.510000px;}
.ya3{bottom:243.210000px;}
.y64{bottom:250.950000px;}
.y30{bottom:255.270000px;}
.ybf{bottom:256.710000px;}
.y140{bottom:256.890000px;}
.y10a{bottom:257.430000px;}
.y168{bottom:257.790000px;}
.yec{bottom:259.770000px;}
.y96{bottom:261.210000px;}
.ya2{bottom:263.910000px;}
.y63{bottom:271.650000px;}
.y2f{bottom:272.550000px;}
.ybe{bottom:277.410000px;}
.y109{bottom:278.130000px;}
.y167{bottom:278.490000px;}
.yeb{bottom:280.470000px;}
.y95{bottom:281.910000px;}
.ya1{bottom:284.610000px;}
.y62{bottom:292.350000px;}
.ybd{bottom:298.110000px;}
.y108{bottom:298.830000px;}
.y13e{bottom:299.010000px;}
.y166{bottom:299.190000px;}
.yea{bottom:301.170000px;}
.y94{bottom:302.610000px;}
.ya0{bottom:305.310000px;}
.y2e{bottom:306.930000px;}
.y61{bottom:313.050000px;}
.ybc{bottom:318.855000px;}
.y107{bottom:319.575000px;}
.y165{bottom:319.935000px;}
.ye9{bottom:321.915000px;}
.y9f{bottom:322.095000px;}
.y93{bottom:323.355000px;}
.y2d{bottom:324.435000px;}
.ybb{bottom:339.555000px;}
.y106{bottom:340.275000px;}
.y164{bottom:340.635000px;}
.y13d{bottom:341.175000px;}
.y2c{bottom:342.255000px;}
.ye8{bottom:342.615000px;}
.y92{bottom:344.055000px;}
.y60{bottom:354.495000px;}
.yba{bottom:360.255000px;}
.y105{bottom:360.975000px;}
.y2b{bottom:361.155000px;}
.y163{bottom:361.335000px;}
.ye7{bottom:363.315000px;}
.y91{bottom:364.755000px;}
.y5f{bottom:375.195000px;}
.y2a{bottom:380.055000px;}
.yb9{bottom:380.955000px;}
.y104{bottom:381.675000px;}
.y162{bottom:382.035000px;}
.y137{bottom:383.295000px;}
.ye6{bottom:384.015000px;}
.y90{bottom:385.455000px;}
.y5e{bottom:395.895000px;}
.y29{bottom:399.135000px;}
.yb8{bottom:401.655000px;}
.y103{bottom:402.375000px;}
.y161{bottom:402.735000px;}
.ye5{bottom:404.715000px;}
.y8f{bottom:406.155000px;}
.y5d{bottom:416.595000px;}
.y28{bottom:418.035000px;}
.yb7{bottom:422.355000px;}
.y102{bottom:423.075000px;}
.y160{bottom:423.435000px;}
.ye4{bottom:425.415000px;}
.y8e{bottom:426.855000px;}
.y27{bottom:437.115000px;}
.y5c{bottom:437.295000px;}
.yb6{bottom:443.055000px;}
.y101{bottom:443.775000px;}
.y15f{bottom:444.135000px;}
.ye3{bottom:446.115000px;}
.y8d{bottom:447.555000px;}
.y26{bottom:456.015000px;}
.y5b{bottom:457.995000px;}
.yb5{bottom:463.755000px;}
.y100{bottom:464.475000px;}
.y15e{bottom:464.835000px;}
.ye2{bottom:466.815000px;}
.y8c{bottom:468.255000px;}
.y25{bottom:474.915000px;}
.y5a{bottom:478.695000px;}
.yb4{bottom:484.455000px;}
.yff{bottom:485.175000px;}
.y15d{bottom:485.535000px;}
.ye1{bottom:487.515000px;}
.y8b{bottom:488.955000px;}
.y24{bottom:493.995000px;}
.y59{bottom:499.395000px;}
.yb3{bottom:505.155000px;}
.y12e{bottom:505.875000px;}
.y15c{bottom:506.235000px;}
.ye0{bottom:508.215000px;}
.y8a{bottom:509.655000px;}
.y23{bottom:512.895000px;}
.y58{bottom:520.095000px;}
.yb2{bottom:525.855000px;}
.yfe{bottom:526.575000px;}
.y15b{bottom:526.935000px;}
.ydf{bottom:528.915000px;}
.y89{bottom:530.355000px;}
.y22{bottom:531.975000px;}
.y57{bottom:540.795000px;}
.yb1{bottom:546.555000px;}
.yfd{bottom:547.275000px;}
.y15a{bottom:547.635000px;}
.yde{bottom:549.615000px;}
.y21{bottom:550.695000px;}
.y88{bottom:551.055000px;}
.y56{bottom:561.495000px;}
.yb0{bottom:567.255000px;}
.y12d{bottom:567.975000px;}
.y159{bottom:568.365000px;}
.y20{bottom:569.085000px;}
.yfc{bottom:569.265000px;}
.ydd{bottom:570.345000px;}
.y87{bottom:571.785000px;}
.y55{bottom:582.225000px;}
.y1f{bottom:582.945000px;}
.yae{bottom:587.985000px;}
.yaf{bottom:588.705000px;}
.y158{bottom:589.065000px;}
.yfb{bottom:589.965000px;}
.ydc{bottom:591.045000px;}
.y86{bottom:592.485000px;}
.y54{bottom:602.925000px;}
.y1e{bottom:608.505000px;}
.y12c{bottom:609.405000px;}
.y157{bottom:609.765000px;}
.yad{bottom:610.125000px;}
.ydb{bottom:611.745000px;}
.yfa{bottom:611.925000px;}
.y85{bottom:613.185000px;}
.y53{bottom:623.625000px;}
.y12b{bottom:630.105000px;}
.y156{bottom:630.465000px;}
.yac{bottom:631.185000px;}
.yda{bottom:632.445000px;}
.y1d{bottom:633.525000px;}
.y84{bottom:633.885000px;}
.y52{bottom:644.325000px;}
.y1c{bottom:646.665000px;}
.y12a{bottom:650.805000px;}
.y155{bottom:651.165000px;}
.yd9{bottom:653.145000px;}
.yab{bottom:653.325000px;}
.y83{bottom:654.585000px;}
.y51{bottom:665.025000px;}
.y1b{bottom:669.525000px;}
.y129{bottom:671.505000px;}
.y154{bottom:671.865000px;}
.yd8{bottom:673.845000px;}
.y82{bottom:675.285000px;}
.y50{bottom:685.725000px;}
.y128{bottom:692.205000px;}
.y153{bottom:692.565000px;}
.y1a{bottom:694.185000px;}
.yd7{bottom:694.545000px;}
.y81{bottom:695.985000px;}
.y16f{bottom:698.685000px;}
.y4f{bottom:706.425000px;}
.y127{bottom:712.905000px;}
.y152{bottom:713.265000px;}
.yd6{bottom:715.245000px;}
.y80{bottom:716.685000px;}
.y4e{bottom:727.125000px;}
.y19{bottom:729.465000px;}
.y126{bottom:733.605000px;}
.y151{bottom:733.965000px;}
.yd5{bottom:735.945000px;}
.y7f{bottom:737.385000px;}
.y4d{bottom:747.825000px;}
.y125{bottom:754.305000px;}
.y150{bottom:754.665000px;}
.yd4{bottom:756.645000px;}
.y7e{bottom:758.085000px;}
.y18{bottom:766.905000px;}
.y4c{bottom:768.525000px;}
.y124{bottom:775.005000px;}
.y14f{bottom:775.365000px;}
.yd3{bottom:777.345000px;}
.y7d{bottom:778.785000px;}
.y4b{bottom:789.225000px;}
.y17{bottom:795.345000px;}
.y123{bottom:795.705000px;}
.y14e{bottom:796.065000px;}
.yd2{bottom:798.045000px;}
.y7c{bottom:799.485000px;}
.y4a{bottom:809.925000px;}
.y122{bottom:816.405000px;}
.y14d{bottom:816.765000px;}
.yd1{bottom:818.745000px;}
.y7b{bottom:820.230000px;}
.y16{bottom:826.710000px;}
.y49{bottom:830.670000px;}
.y121{bottom:837.150000px;}
.y14c{bottom:837.510000px;}
.yd0{bottom:839.490000px;}
.y7a{bottom:840.930000px;}
.y48{bottom:851.370000px;}
.y15{bottom:855.150000px;}
.y120{bottom:857.850000px;}
.y14b{bottom:858.210000px;}
.ycf{bottom:860.190000px;}
.y79{bottom:861.630000px;}
.y47{bottom:872.070000px;}
.y11f{bottom:878.550000px;}
.y14a{bottom:878.910000px;}
.yce{bottom:880.890000px;}
.y78{bottom:882.330000px;}
.y14{bottom:886.650000px;}
.y46{bottom:892.770000px;}
.y149{bottom:899.610000px;}
.ycd{bottom:901.590000px;}
.y77{bottom:903.030000px;}
.y45{bottom:913.470000px;}
.y11e{bottom:919.950000px;}
.y148{bottom:920.310000px;}
.y13{bottom:921.930000px;}
.ycc{bottom:922.290000px;}
.y76{bottom:923.730000px;}
.y44{bottom:934.170000px;}
.y11c{bottom:937.410000px;}
.y147{bottom:941.010000px;}
.ycb{bottom:942.990000px;}
.y75{bottom:944.430000px;}
.y43{bottom:954.870000px;}
.y146{bottom:961.710000px;}
.yca{bottom:963.690000px;}
.y74{bottom:965.130000px;}
.y12{bottom:971.250000px;}
.y42{bottom:975.570000px;}
.y11b{bottom:979.710000px;}
.y145{bottom:982.410000px;}
.yc8{bottom:984.390000px;}
.yc9{bottom:985.110000px;}
.y73{bottom:985.830000px;}
.y11{bottom:988.890000px;}
.y41{bottom:996.270000px;}
.y11a{bottom:1001.130000px;}
.y144{bottom:1003.110000px;}
.y72{bottom:1006.530000px;}
.y10{bottom:1007.790000px;}
.y40{bottom:1016.970000px;}
.y143{bottom:1023.810000px;}
.y71{bottom:1027.230000px;}
.yf{bottom:1031.550000px;}
.y3f{bottom:1037.670000px;}
.y113{bottom:1043.250000px;}
.y142{bottom:1044.510000px;}
.y70{bottom:1047.930000px;}
.y3e{bottom:1058.370000px;}
.y141{bottom:1065.750000px;}
.yb{bottom:1068.270000px;}
.y6f{bottom:1068.630000px;}
.ya{bottom:1086.480000px;}
.y6e{bottom:1089.360000px;}
.y7{bottom:1090.440000px;}
.y3d{bottom:1099.080000px;}
.y6{bottom:1107.000000px;}
.y9{bottom:1107.900000px;}
.ye{bottom:1108.440000px;}
.y6d{bottom:1110.060000px;}
.y3c{bottom:1116.180000px;}
.y5{bottom:1121.220000px;}
.yd{bottom:1122.660000px;}
.y8{bottom:1129.680000px;}
.y6c{bottom:1130.760000px;}
.y3b{bottom:1133.460000px;}
.y4{bottom:1135.800000px;}
.yc{bottom:1136.160000px;}
.h20{height:20.700000px;}
.h1{height:21.420000px;}
.h6{height:33.930000px;}
.hf{height:41.250937px;}
.h1f{height:41.400000px;}
.h22{height:41.436000px;}
.hb{height:41.535703px;}
.h11{height:43.554375px;}
.h12{height:47.309062px;}
.h4{height:47.344922px;}
.h5{height:47.980898px;}
.h3{height:50.171484px;}
.h13{height:50.312812px;}
.h16{height:52.066406px;}
.h7{height:53.709961px;}
.ha{height:58.621992px;}
.h15{height:58.651172px;}
.hc{height:59.439023px;}
.h1c{height:60.679688px;}
.h1e{height:62.136000px;}
.h2{height:65.010937px;}
.hd{height:65.884219px;}
.he{height:66.757500px;}
.h1b{height:67.784062px;}
.h14{height:69.086250px;}
.h9{height:70.628906px;}
.h10{height:70.664062px;}
.h18{height:72.562500px;}
.h17{height:74.004654px;}
.h8{height:74.477812px;}
.h19{height:74.953125px;}
.h1d{height:75.093750px;}
.h1a{height:78.006975px;}
.h21{height:82.800000px;}
.h23{height:84.898125px;}
.h0{height:1188.000000px;}
.w1{width:25.740000px;}
.wd{width:55.080000px;}
.wc{width:55.980000px;}
.w7{width:58.860000px;}
.w6{width:59.976000px;}
.we{width:70.776000px;}
.wf{width:78.840000px;}
.w10{width:79.056000px;}
.wb{width:91.836000px;}
.wa{width:102.600000px;}
.w5{width:121.860000px;}
.w8{width:132.516000px;}
.w4{width:134.676000px;}
.w9{width:301.935000px;}
.w3{width:328.935000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:4.500000px;}
.x1d{left:7.560000px;}
.x1f{left:23.040000px;}
.x3{left:46.439986px;}
.xf{left:48.239986px;}
.x13{left:55.439986px;}
.x11{left:60.659986px;}
.x4{left:71.279986px;}
.x14{left:73.439986px;}
.xc{left:78.299986px;}
.x1c{left:100.475986px;}
.x1a{left:210.269986px;}
.x24{left:221.069986px;}
.x17{left:236.909986px;}
.x5{left:249.689986px;}
.x6{left:274.529986px;}
.x16{left:280.469986px;}
.x7{left:299.414986px;}
.xe{left:315.434986px;}
.x12{left:326.954986px;}
.x10{left:338.474986px;}
.x25{left:349.635000px;}
.x8{left:371.774986px;}
.x1e{left:376.635000px;}
.x18{left:386.894986px;}
.x26{left:452.595000px;}
.x1{left:453.675000px;}
.xd{left:466.454986px;}
.x1b{left:474.014986px;}
.x20{left:511.665000px;}
.x27{left:544.785000px;}
.x28{left:601.125000px;}
.x21{left:633.885000px;}
.x29{left:656.565000px;}
.x22{left:694.230000px;}
.x2a{left:727.710000px;}
.x19{left:748.589986px;}
.x23{left:753.450000px;}
.xa{left:758.849986px;}
.x15{left:787.829986px;}
.x9{left:797.369986px;}
.x2b{left:806.910000px;}
.xb{left:823.469986px;}
@media print{
.v1{vertical-align:-92.800000pt;}
.v7{vertical-align:-73.600000pt;}
.v6{vertical-align:-71.040000pt;}
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-43.520000pt;}
.vd{vertical-align:-23.680000pt;}
.v3{vertical-align:-21.120000pt;}
.vb{vertical-align:-8.960000pt;}
.v8{vertical-align:-5.120000pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.120000pt;}
.vc{vertical-align:8.960000pt;}
.v2{vertical-align:21.120000pt;}
.va{vertical-align:23.680000pt;}
.ls14{letter-spacing:-17.920000pt;}
.ls18{letter-spacing:-15.360000pt;}
.ls13{letter-spacing:-13.440000pt;}
.ls17{letter-spacing:-10.240000pt;}
.ls19{letter-spacing:-3.840000pt;}
.ls8{letter-spacing:-3.200000pt;}
.ls9{letter-spacing:-0.656000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.180267pt;}
.lse{letter-spacing:-0.158933pt;}
.ls2c{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.090667pt;}
.lsd{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.158720pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.239360pt;}
.ls29{letter-spacing:0.239467pt;}
.ls25{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.346027pt;}
.ls16{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:2.432000pt;}
.ls1f{letter-spacing:3.456000pt;}
.ls23{letter-spacing:5.120000pt;}
.ls22{letter-spacing:6.400000pt;}
.ls0{letter-spacing:9.509120pt;}
.lsc{letter-spacing:13.973333pt;}
.ls5{letter-spacing:18.720000pt;}
.ls11{letter-spacing:26.880000pt;}
.ls10{letter-spacing:30.336000pt;}
.ls2a{letter-spacing:48.896000pt;}
.lsf{letter-spacing:50.720000pt;}
.ls1c{letter-spacing:56.912640pt;}
.ls20{letter-spacing:57.344000pt;}
.ls3{letter-spacing:79.671040pt;}
.ls4{letter-spacing:80.311040pt;}
.ls15{letter-spacing:97.232640pt;}
.ls1{letter-spacing:140.192000pt;}
.ls2b{letter-spacing:615.146667pt;}
.ws18{word-spacing:-64.000000pt;}
.ws2{word-spacing:-44.800000pt;}
.ws0{word-spacing:-42.880000pt;}
.ws1{word-spacing:-42.240000pt;}
.wsf{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.280000pt;}
.ws6{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.392640pt;}
.ws17{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.959467pt;}
.ws10{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.192000pt;}
.wsa{word-spacing:-10.160427pt;}
.ws4{word-spacing:-9.510613pt;}
.ws8{word-spacing:-9.280000pt;}
.ws11{word-spacing:-8.166400pt;}
.wsb{word-spacing:0.000000pt;}
.ws13{word-spacing:3.264000pt;}
.ws16{word-spacing:3.904000pt;}
.ws12{word-spacing:28.105600pt;}
._0{margin-left:-5.760000pt;}
._10{margin-left:-4.736000pt;}
._2{margin-left:-3.392000pt;}
._4{margin-left:-2.479360pt;}
._1{margin-left:-1.523200pt;}
._3{width:1.363200pt;}
._5{width:2.656000pt;}
._8{width:4.121600pt;}
._e{width:5.440000pt;}
._f{width:6.720000pt;}
._c{width:7.882240pt;}
._6{width:8.778240pt;}
._7{width:9.761280pt;}
._d{width:11.072000pt;}
._a{width:12.531200pt;}
._9{width:13.696000pt;}
._17{width:14.762667pt;}
._1c{width:15.733333pt;}
._b{width:16.947200pt;}
._1d{width:17.849600pt;}
._11{width:18.779733pt;}
._12{width:19.904000pt;}
._1b{width:20.992000pt;}
._15{width:21.888000pt;}
._16{width:22.788267pt;}
._13{width:25.024000pt;}
._14{width:25.984000pt;}
._1a{width:43.392000pt;}
._18{width:123.008000pt;}
._19{width:175.978667pt;}
.fs3{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:66.560000pt;}
.fsc{font-size:67.461249pt;}
.fsd{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fsa{font-size:88.320000pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y116{bottom:12.640000pt;}
.y11d{bottom:12.800000pt;}
.y118{bottom:21.920000pt;}
.y13f{bottom:21.960000pt;}
.y114{bottom:27.546667pt;}
.y115{bottom:31.066667pt;}
.y13a{bottom:31.200000pt;}
.y138{bottom:36.800000pt;}
.y13c{bottom:40.320000pt;}
.y117{bottom:40.346667pt;}
.y3a{bottom:48.000000pt;}
.y139{bottom:49.600000pt;}
.y13b{bottom:58.720000pt;}
.y3{bottom:63.552000pt;}
.y1{bottom:63.712000pt;}
.yc7{bottom:80.992000pt;}
.y112{bottom:81.632000pt;}
.yf4{bottom:83.712000pt;}
.y136{bottom:84.032000pt;}
.y9e{bottom:84.992000pt;}
.yaa{bottom:87.392000pt;}
.y39{bottom:88.832000pt;}
.y6b{bottom:94.272000pt;}
.yf9{bottom:95.232000pt;}
.yc6{bottom:99.392000pt;}
.y111{bottom:100.032000pt;}
.yf3{bottom:102.112000pt;}
.y135{bottom:102.432000pt;}
.y9d{bottom:103.392000pt;}
.y38{bottom:104.192000pt;}
.ya9{bottom:105.792000pt;}
.y6a{bottom:112.672000pt;}
.yf8{bottom:113.632000pt;}
.yc5{bottom:117.792000pt;}
.y110{bottom:118.432000pt;}
.y16e{bottom:118.752000pt;}
.y37{bottom:119.552000pt;}
.yf2{bottom:120.512000pt;}
.y134{bottom:120.832000pt;}
.y9c{bottom:121.792000pt;}
.ya8{bottom:124.192000pt;}
.y69{bottom:131.072000pt;}
.yf7{bottom:132.032000pt;}
.y36{bottom:134.906667pt;}
.yc4{bottom:136.186667pt;}
.y10f{bottom:136.826667pt;}
.y16d{bottom:137.146667pt;}
.yf1{bottom:138.906667pt;}
.y133{bottom:139.226667pt;}
.y9b{bottom:140.186667pt;}
.ya7{bottom:142.586667pt;}
.y68{bottom:149.466667pt;}
.y35{bottom:150.266667pt;}
.yf6{bottom:150.426667pt;}
.yc3{bottom:154.586667pt;}
.y10e{bottom:155.226667pt;}
.y16c{bottom:155.546667pt;}
.yf0{bottom:157.306667pt;}
.y132{bottom:157.626667pt;}
.y9a{bottom:158.586667pt;}
.ya6{bottom:160.986667pt;}
.yf5{bottom:165.306667pt;}
.y34{bottom:165.466667pt;}
.y67{bottom:167.866667pt;}
.yc2{bottom:172.986667pt;}
.y10d{bottom:173.626667pt;}
.y16b{bottom:173.946667pt;}
.yef{bottom:175.706667pt;}
.y131{bottom:176.026667pt;}
.y99{bottom:176.986667pt;}
.ya5{bottom:179.386667pt;}
.y33{bottom:180.826667pt;}
.y66{bottom:186.266667pt;}
.yc1{bottom:191.386667pt;}
.y10c{bottom:192.026667pt;}
.y16a{bottom:192.346667pt;}
.yee{bottom:194.106667pt;}
.y130{bottom:194.426667pt;}
.y98{bottom:195.386667pt;}
.y32{bottom:196.186667pt;}
.ya4{bottom:197.786667pt;}
.y65{bottom:204.666667pt;}
.yc0{bottom:209.786667pt;}
.y10b{bottom:210.426667pt;}
.y169{bottom:210.746667pt;}
.y31{bottom:211.546667pt;}
.yed{bottom:212.506667pt;}
.y12f{bottom:212.826667pt;}
.y97{bottom:213.786667pt;}
.ya3{bottom:216.186667pt;}
.y64{bottom:223.066667pt;}
.y30{bottom:226.906667pt;}
.ybf{bottom:228.186667pt;}
.y140{bottom:228.346667pt;}
.y10a{bottom:228.826667pt;}
.y168{bottom:229.146667pt;}
.yec{bottom:230.906667pt;}
.y96{bottom:232.186667pt;}
.ya2{bottom:234.586667pt;}
.y63{bottom:241.466667pt;}
.y2f{bottom:242.266667pt;}
.ybe{bottom:246.586667pt;}
.y109{bottom:247.226667pt;}
.y167{bottom:247.546667pt;}
.yeb{bottom:249.306667pt;}
.y95{bottom:250.586667pt;}
.ya1{bottom:252.986667pt;}
.y62{bottom:259.866667pt;}
.ybd{bottom:264.986667pt;}
.y108{bottom:265.626667pt;}
.y13e{bottom:265.786667pt;}
.y166{bottom:265.946667pt;}
.yea{bottom:267.706667pt;}
.y94{bottom:268.986667pt;}
.ya0{bottom:271.386667pt;}
.y2e{bottom:272.826667pt;}
.y61{bottom:278.266667pt;}
.ybc{bottom:283.426667pt;}
.y107{bottom:284.066667pt;}
.y165{bottom:284.386667pt;}
.ye9{bottom:286.146667pt;}
.y9f{bottom:286.306667pt;}
.y93{bottom:287.426667pt;}
.y2d{bottom:288.386667pt;}
.ybb{bottom:301.826667pt;}
.y106{bottom:302.466667pt;}
.y164{bottom:302.786667pt;}
.y13d{bottom:303.266667pt;}
.y2c{bottom:304.226667pt;}
.ye8{bottom:304.546667pt;}
.y92{bottom:305.826667pt;}
.y60{bottom:315.106667pt;}
.yba{bottom:320.226667pt;}
.y105{bottom:320.866667pt;}
.y2b{bottom:321.026667pt;}
.y163{bottom:321.186667pt;}
.ye7{bottom:322.946667pt;}
.y91{bottom:324.226667pt;}
.y5f{bottom:333.506667pt;}
.y2a{bottom:337.826667pt;}
.yb9{bottom:338.626667pt;}
.y104{bottom:339.266667pt;}
.y162{bottom:339.586667pt;}
.y137{bottom:340.706667pt;}
.ye6{bottom:341.346667pt;}
.y90{bottom:342.626667pt;}
.y5e{bottom:351.906667pt;}
.y29{bottom:354.786667pt;}
.yb8{bottom:357.026667pt;}
.y103{bottom:357.666667pt;}
.y161{bottom:357.986667pt;}
.ye5{bottom:359.746667pt;}
.y8f{bottom:361.026667pt;}
.y5d{bottom:370.306667pt;}
.y28{bottom:371.586667pt;}
.yb7{bottom:375.426667pt;}
.y102{bottom:376.066667pt;}
.y160{bottom:376.386667pt;}
.ye4{bottom:378.146667pt;}
.y8e{bottom:379.426667pt;}
.y27{bottom:388.546667pt;}
.y5c{bottom:388.706667pt;}
.yb6{bottom:393.826667pt;}
.y101{bottom:394.466667pt;}
.y15f{bottom:394.786667pt;}
.ye3{bottom:396.546667pt;}
.y8d{bottom:397.826667pt;}
.y26{bottom:405.346667pt;}
.y5b{bottom:407.106667pt;}
.yb5{bottom:412.226667pt;}
.y100{bottom:412.866667pt;}
.y15e{bottom:413.186667pt;}
.ye2{bottom:414.946667pt;}
.y8c{bottom:416.226667pt;}
.y25{bottom:422.146667pt;}
.y5a{bottom:425.506667pt;}
.yb4{bottom:430.626667pt;}
.yff{bottom:431.266667pt;}
.y15d{bottom:431.586667pt;}
.ye1{bottom:433.346667pt;}
.y8b{bottom:434.626667pt;}
.y24{bottom:439.106667pt;}
.y59{bottom:443.906667pt;}
.yb3{bottom:449.026667pt;}
.y12e{bottom:449.666667pt;}
.y15c{bottom:449.986667pt;}
.ye0{bottom:451.746667pt;}
.y8a{bottom:453.026667pt;}
.y23{bottom:455.906667pt;}
.y58{bottom:462.306667pt;}
.yb2{bottom:467.426667pt;}
.yfe{bottom:468.066667pt;}
.y15b{bottom:468.386667pt;}
.ydf{bottom:470.146667pt;}
.y89{bottom:471.426667pt;}
.y22{bottom:472.866667pt;}
.y57{bottom:480.706667pt;}
.yb1{bottom:485.826667pt;}
.yfd{bottom:486.466667pt;}
.y15a{bottom:486.786667pt;}
.yde{bottom:488.546667pt;}
.y21{bottom:489.506667pt;}
.y88{bottom:489.826667pt;}
.y56{bottom:499.106667pt;}
.yb0{bottom:504.226667pt;}
.y12d{bottom:504.866667pt;}
.y159{bottom:505.213333pt;}
.y20{bottom:505.853333pt;}
.yfc{bottom:506.013333pt;}
.ydd{bottom:506.973333pt;}
.y87{bottom:508.253333pt;}
.y55{bottom:517.533333pt;}
.y1f{bottom:518.173333pt;}
.yae{bottom:522.653333pt;}
.yaf{bottom:523.293333pt;}
.y158{bottom:523.613333pt;}
.yfb{bottom:524.413333pt;}
.ydc{bottom:525.373333pt;}
.y86{bottom:526.653333pt;}
.y54{bottom:535.933333pt;}
.y1e{bottom:540.893333pt;}
.y12c{bottom:541.693333pt;}
.y157{bottom:542.013333pt;}
.yad{bottom:542.333333pt;}
.ydb{bottom:543.773333pt;}
.yfa{bottom:543.933333pt;}
.y85{bottom:545.053333pt;}
.y53{bottom:554.333333pt;}
.y12b{bottom:560.093333pt;}
.y156{bottom:560.413333pt;}
.yac{bottom:561.053333pt;}
.yda{bottom:562.173333pt;}
.y1d{bottom:563.133333pt;}
.y84{bottom:563.453333pt;}
.y52{bottom:572.733333pt;}
.y1c{bottom:574.813333pt;}
.y12a{bottom:578.493333pt;}
.y155{bottom:578.813333pt;}
.yd9{bottom:580.573333pt;}
.yab{bottom:580.733333pt;}
.y83{bottom:581.853333pt;}
.y51{bottom:591.133333pt;}
.y1b{bottom:595.133333pt;}
.y129{bottom:596.893333pt;}
.y154{bottom:597.213333pt;}
.yd8{bottom:598.973333pt;}
.y82{bottom:600.253333pt;}
.y50{bottom:609.533333pt;}
.y128{bottom:615.293333pt;}
.y153{bottom:615.613333pt;}
.y1a{bottom:617.053333pt;}
.yd7{bottom:617.373333pt;}
.y81{bottom:618.653333pt;}
.y16f{bottom:621.053333pt;}
.y4f{bottom:627.933333pt;}
.y127{bottom:633.693333pt;}
.y152{bottom:634.013333pt;}
.yd6{bottom:635.773333pt;}
.y80{bottom:637.053333pt;}
.y4e{bottom:646.333333pt;}
.y19{bottom:648.413333pt;}
.y126{bottom:652.093333pt;}
.y151{bottom:652.413333pt;}
.yd5{bottom:654.173333pt;}
.y7f{bottom:655.453333pt;}
.y4d{bottom:664.733333pt;}
.y125{bottom:670.493333pt;}
.y150{bottom:670.813333pt;}
.yd4{bottom:672.573333pt;}
.y7e{bottom:673.853333pt;}
.y18{bottom:681.693333pt;}
.y4c{bottom:683.133333pt;}
.y124{bottom:688.893333pt;}
.y14f{bottom:689.213333pt;}
.yd3{bottom:690.973333pt;}
.y7d{bottom:692.253333pt;}
.y4b{bottom:701.533333pt;}
.y17{bottom:706.973333pt;}
.y123{bottom:707.293333pt;}
.y14e{bottom:707.613333pt;}
.yd2{bottom:709.373333pt;}
.y7c{bottom:710.653333pt;}
.y4a{bottom:719.933333pt;}
.y122{bottom:725.693333pt;}
.y14d{bottom:726.013333pt;}
.yd1{bottom:727.773333pt;}
.y7b{bottom:729.093333pt;}
.y16{bottom:734.853333pt;}
.y49{bottom:738.373333pt;}
.y121{bottom:744.133333pt;}
.y14c{bottom:744.453333pt;}
.yd0{bottom:746.213333pt;}
.y7a{bottom:747.493333pt;}
.y48{bottom:756.773333pt;}
.y15{bottom:760.133333pt;}
.y120{bottom:762.533333pt;}
.y14b{bottom:762.853333pt;}
.ycf{bottom:764.613333pt;}
.y79{bottom:765.893333pt;}
.y47{bottom:775.173333pt;}
.y11f{bottom:780.933333pt;}
.y14a{bottom:781.253333pt;}
.yce{bottom:783.013333pt;}
.y78{bottom:784.293333pt;}
.y14{bottom:788.133333pt;}
.y46{bottom:793.573333pt;}
.y149{bottom:799.653333pt;}
.ycd{bottom:801.413333pt;}
.y77{bottom:802.693333pt;}
.y45{bottom:811.973333pt;}
.y11e{bottom:817.733333pt;}
.y148{bottom:818.053333pt;}
.y13{bottom:819.493333pt;}
.ycc{bottom:819.813333pt;}
.y76{bottom:821.093333pt;}
.y44{bottom:830.373333pt;}
.y11c{bottom:833.253333pt;}
.y147{bottom:836.453333pt;}
.ycb{bottom:838.213333pt;}
.y75{bottom:839.493333pt;}
.y43{bottom:848.773333pt;}
.y146{bottom:854.853333pt;}
.yca{bottom:856.613333pt;}
.y74{bottom:857.893333pt;}
.y12{bottom:863.333333pt;}
.y42{bottom:867.173333pt;}
.y11b{bottom:870.853333pt;}
.y145{bottom:873.253333pt;}
.yc8{bottom:875.013333pt;}
.yc9{bottom:875.653333pt;}
.y73{bottom:876.293333pt;}
.y11{bottom:879.013333pt;}
.y41{bottom:885.573333pt;}
.y11a{bottom:889.893333pt;}
.y144{bottom:891.653333pt;}
.y72{bottom:894.693333pt;}
.y10{bottom:895.813333pt;}
.y40{bottom:903.973333pt;}
.y143{bottom:910.053333pt;}
.y71{bottom:913.093333pt;}
.yf{bottom:916.933333pt;}
.y3f{bottom:922.373333pt;}
.y113{bottom:927.333333pt;}
.y142{bottom:928.453333pt;}
.y70{bottom:931.493333pt;}
.y3e{bottom:940.773333pt;}
.y141{bottom:947.333333pt;}
.yb{bottom:949.573333pt;}
.y6f{bottom:949.893333pt;}
.ya{bottom:965.760000pt;}
.y6e{bottom:968.320000pt;}
.y7{bottom:969.280000pt;}
.y3d{bottom:976.960000pt;}
.y6{bottom:984.000000pt;}
.y9{bottom:984.800000pt;}
.ye{bottom:985.280000pt;}
.y6d{bottom:986.720000pt;}
.y3c{bottom:992.160000pt;}
.y5{bottom:996.640000pt;}
.yd{bottom:997.920000pt;}
.y8{bottom:1004.160000pt;}
.y6c{bottom:1005.120000pt;}
.y3b{bottom:1007.520000pt;}
.y4{bottom:1009.600000pt;}
.yc{bottom:1009.920000pt;}
.h20{height:18.400000pt;}
.h1{height:19.040000pt;}
.h6{height:30.160000pt;}
.hf{height:36.667500pt;}
.h1f{height:36.800000pt;}
.h22{height:36.832000pt;}
.hb{height:36.920625pt;}
.h11{height:38.715000pt;}
.h12{height:42.052500pt;}
.h4{height:42.084375pt;}
.h5{height:42.649687pt;}
.h3{height:44.596875pt;}
.h13{height:44.722500pt;}
.h16{height:46.281250pt;}
.h7{height:47.742188pt;}
.ha{height:52.108438pt;}
.h15{height:52.134375pt;}
.hc{height:52.834688pt;}
.h1c{height:53.937500pt;}
.h1e{height:55.232000pt;}
.h2{height:57.787500pt;}
.hd{height:58.563750pt;}
.he{height:59.340000pt;}
.h1b{height:60.252500pt;}
.h14{height:61.410000pt;}
.h9{height:62.781250pt;}
.h10{height:62.812500pt;}
.h18{height:64.500000pt;}
.h17{height:65.781915pt;}
.h8{height:66.202500pt;}
.h19{height:66.625000pt;}
.h1d{height:66.750000pt;}
.h1a{height:69.339533pt;}
.h21{height:73.600000pt;}
.h23{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w1{width:22.880000pt;}
.wd{width:48.960000pt;}
.wc{width:49.760000pt;}
.w7{width:52.320000pt;}
.w6{width:53.312000pt;}
.we{width:62.912000pt;}
.wf{width:70.080000pt;}
.w10{width:70.272000pt;}
.wb{width:81.632000pt;}
.wa{width:91.200000pt;}
.w5{width:108.320000pt;}
.w8{width:117.792000pt;}
.w4{width:119.712000pt;}
.w9{width:268.386667pt;}
.w3{width:292.386667pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.000000pt;}
.x1d{left:6.720000pt;}
.x1f{left:20.480000pt;}
.x3{left:41.279988pt;}
.xf{left:42.879988pt;}
.x13{left:49.279988pt;}
.x11{left:53.919988pt;}
.x4{left:63.359988pt;}
.x14{left:65.279988pt;}
.xc{left:69.599988pt;}
.x1c{left:89.311988pt;}
.x1a{left:186.906655pt;}
.x24{left:196.506655pt;}
.x17{left:210.586655pt;}
.x5{left:221.946655pt;}
.x6{left:244.026655pt;}
.x16{left:249.306655pt;}
.x7{left:266.146655pt;}
.xe{left:280.386655pt;}
.x12{left:290.626655pt;}
.x10{left:300.866655pt;}
.x25{left:310.786667pt;}
.x8{left:330.466655pt;}
.x1e{left:334.786667pt;}
.x18{left:343.906655pt;}
.x26{left:402.306667pt;}
.x1{left:403.266667pt;}
.xd{left:414.626655pt;}
.x1b{left:421.346655pt;}
.x20{left:454.813333pt;}
.x27{left:484.253333pt;}
.x28{left:534.333333pt;}
.x21{left:563.453333pt;}
.x29{left:583.613333pt;}
.x22{left:617.093333pt;}
.x2a{left:646.853333pt;}
.x19{left:665.413321pt;}
.x23{left:669.733333pt;}
.xa{left:674.533321pt;}
.x15{left:700.293321pt;}
.x9{left:708.773321pt;}
.x2b{left:717.253333pt;}
.xb{left:731.973321pt;}
}




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