
    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_e7ca15e81c46fd230a46f52b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_04c34a7dd0e3e2be8d7edf18.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_6a7cec0b7bf2bd088e12b4c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_7274fb84b8b8882bfc489b6e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_846851a1a3cd13fee5eec4ae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_510c9ffa9716aa99999f2021.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ecdbd69a7901b9abec771bb4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_e375e9a3b192fdd79eaf7faf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.805176;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_1ff9e5cffa9e607cd17fbdcf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.799316;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v6{vertical-align:-38.961000px;}
.v4{vertical-align:-23.976000px;}
.v7{vertical-align:-21.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:19.980000px;}
.v8{vertical-align:21.978000px;}
.v5{vertical-align:23.976000px;}
.ls5{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000300px;}
.ls3a{letter-spacing:0.000600px;}
.ls30{letter-spacing:0.001449px;}
.ls39{letter-spacing:0.001656px;}
.ls3{letter-spacing:0.003600px;}
.lsb{letter-spacing:0.011328px;}
.ls42{letter-spacing:0.014400px;}
.ls3e{letter-spacing:0.015000px;}
.ls31{letter-spacing:0.015600px;}
.ls59{letter-spacing:0.016200px;}
.ls58{letter-spacing:0.016800px;}
.ls38{letter-spacing:0.017856px;}
.ls18{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.080400px;}
.ls32{letter-spacing:0.171000px;}
.ls33{letter-spacing:0.195600px;}
.ls4{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.421656px;}
.ls11{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.630000px;}
.ls1a{letter-spacing:0.645600px;}
.ls17{letter-spacing:0.646200px;}
.ls2b{letter-spacing:0.696600px;}
.lsf{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.997800px;}
.ls57{letter-spacing:1.086600px;}
.ls24{letter-spacing:1.141800px;}
.ls25{letter-spacing:1.142400px;}
.ls3c{letter-spacing:1.274400px;}
.ls3d{letter-spacing:1.275000px;}
.ls3b{letter-spacing:1.318200px;}
.ls36{letter-spacing:1.603800px;}
.ls37{letter-spacing:1.604400px;}
.ls34{letter-spacing:1.646400px;}
.ls35{letter-spacing:1.647000px;}
.ls53{letter-spacing:1.719000px;}
.ls10{letter-spacing:1.746000px;}
.ls12{letter-spacing:1.746600px;}
.lsc{letter-spacing:2.075400px;}
.ls5b{letter-spacing:2.098200px;}
.ls49{letter-spacing:2.450400px;}
.ls16{letter-spacing:2.575200px;}
.ls4f{letter-spacing:2.880000px;}
.ls2{letter-spacing:3.000000px;}
.ls23{letter-spacing:3.216000px;}
.ls50{letter-spacing:3.291600px;}
.lse{letter-spacing:3.600000px;}
.ls22{letter-spacing:3.908400px;}
.ls21{letter-spacing:3.909000px;}
.ls48{letter-spacing:3.998400px;}
.ls46{letter-spacing:3.999000px;}
.ls29{letter-spacing:3.999600px;}
.ls2a{letter-spacing:4.050600px;}
.ls52{letter-spacing:4.125600px;}
.ls51{letter-spacing:4.126200px;}
.ls9{letter-spacing:4.197333px;}
.ls6{letter-spacing:4.200000px;}
.lsa{letter-spacing:4.210000px;}
.ls4a{letter-spacing:4.411800px;}
.ls4b{letter-spacing:4.412400px;}
.ls28{letter-spacing:4.614000px;}
.ls1b{letter-spacing:4.792200px;}
.ls4e{letter-spacing:4.808400px;}
.ls4d{letter-spacing:4.809000px;}
.ls27{letter-spacing:5.272800px;}
.ls8{letter-spacing:5.400000px;}
.ls7{letter-spacing:5.413333px;}
.ls5a{letter-spacing:5.478000px;}
.ls3f{letter-spacing:5.700000px;}
.ls55{letter-spacing:6.166800px;}
.ls0{letter-spacing:6.600000px;}
.ls44{letter-spacing:6.601800px;}
.ls43{letter-spacing:6.602400px;}
.ls56{letter-spacing:7.081800px;}
.ls45{letter-spacing:7.200000px;}
.ls1c{letter-spacing:8.214000px;}
.ls1d{letter-spacing:8.214600px;}
.lsd{letter-spacing:8.400000px;}
.ls14{letter-spacing:8.463000px;}
.ls54{letter-spacing:9.028800px;}
.ls2e{letter-spacing:9.078600px;}
.ls4c{letter-spacing:9.226800px;}
.ls40{letter-spacing:9.315600px;}
.ls2f{letter-spacing:9.532200px;}
.ls2d{letter-spacing:9.532800px;}
.ls1{letter-spacing:10.800000px;}
.ls26{letter-spacing:10.979400px;}
.ls20{letter-spacing:11.017200px;}
.ls1f{letter-spacing:13.221000px;}
.ls1e{letter-spacing:14.915400px;}
.ls13{letter-spacing:16.217400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-25.146000px;}
.ws1{word-spacing:-23.604000px;}
.ws8{word-spacing:-20.952000px;}
.ws4{word-spacing:-20.592000px;}
.wsd{word-spacing:-20.232000px;}
.ws18{word-spacing:-18.546000px;}
.wsc{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.wsb{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.703000px;}
.wsa{word-spacing:-17.460000px;}
.ws7{word-spacing:-16.860000px;}
.ws19{word-spacing:-16.302000px;}
.ws5{word-spacing:-16.017000px;}
.wse{word-spacing:-14.820000px;}
.ws15{word-spacing:-14.162400px;}
.wsf{word-spacing:-14.079000px;}
.ws13{word-spacing:-11.795256px;}
.ws2{word-spacing:-9.829380px;}
.ws11{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.066000px;}
.ws10{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-21.132600px;}
._21{margin-left:-18.828000px;}
._1a{margin-left:-17.784000px;}
._15{margin-left:-13.764000px;}
._16{margin-left:-12.660000px;}
._1f{margin-left:-11.196000px;}
._7{margin-left:-10.152000px;}
._6{margin-left:-8.748000px;}
._1d{margin-left:-7.604400px;}
._3{margin-left:-6.480000px;}
._13{margin-left:-5.269800px;}
._f{margin-left:-4.008000px;}
._e{margin-left:-2.860800px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._a{width:2.478000px;}
._c{width:4.176000px;}
._d{width:5.184000px;}
._11{width:7.128000px;}
._b{width:8.400000px;}
._18{width:9.628800px;}
._8{width:10.912667px;}
._1c{width:12.383400px;}
._17{width:13.464000px;}
._1b{width:15.082800px;}
._10{width:16.920000px;}
._9{width:19.929000px;}
._1e{width:24.408000px;}
._20{width:42.470289px;}
._12{width:57.720420px;}
._14{width:59.086389px;}
._0{width:198.000000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
.fc4{color:rgb(128,128,0);}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs8{font-size:33.231000px;}
.fs6{font-size:34.980000px;}
.fsd{font-size:36.729000px;}
.fs10{font-size:38.478000px;}
.fsb{font-size:41.976000px;}
.fs9{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fse{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:61.673850px;}
.y27{bottom:61.674000px;}
.y133{bottom:61.674450px;}
.y1{bottom:77.873850px;}
.y26{bottom:77.874000px;}
.y132{bottom:77.874450px;}
.y7a{bottom:127.558950px;}
.y51{bottom:127.559250px;}
.y25{bottom:132.304200px;}
.y131{bottom:139.990500px;}
.y9e{bottom:144.058950px;}
.y50{bottom:144.059250px;}
.yeb{bottom:148.804200px;}
.y24{bottom:148.818900px;}
.y79{bottom:149.053950px;}
.y130{bottom:159.490500px;}
.yc7{bottom:160.558950px;}
.y23{bottom:165.318900px;}
.y9d{bottom:165.553950px;}
.y4f{bottom:165.554250px;}
.yc6{bottom:177.058950px;}
.y12f{bottom:178.990500px;}
.yea{bottom:184.996950px;}
.y22{bottom:186.813900px;}
.y4e{bottom:186.814050px;}
.y78{bottom:187.304850px;}
.yc5{bottom:193.558950px;}
.y12e{bottom:198.490500px;}
.ye9{bottom:205.996950px;}
.y77{bottom:208.304850px;}
.yc4{bottom:210.058950px;}
.y21{bottom:214.494450px;}
.y9c{bottom:215.100900px;}
.y12d{bottom:217.990500px;}
.y4d{bottom:222.601050px;}
.ye8{bottom:226.996950px;}
.yc3{bottom:231.304200px;}
.y20{bottom:236.994450px;}
.y12c{bottom:237.490500px;}
.y9b{bottom:237.600900px;}
.y4c{bottom:243.601050px;}
.yc2{bottom:247.818900px;}
.ye7{bottom:247.996950px;}
.y76{bottom:256.304850px;}
.y12b{bottom:256.990500px;}
.y1f{bottom:259.494450px;}
.y9a{bottom:260.100900px;}
.y4b{bottom:264.601050px;}
.ye6{bottom:268.996950px;}
.yc1{bottom:269.064150px;}
.y12a{bottom:276.490500px;}
.y75{bottom:278.804850px;}
.y1e{bottom:281.994450px;}
.y4a{bottom:285.601050px;}
.ye5{bottom:289.996950px;}
.yc0{bottom:290.573700px;}
.y129{bottom:295.990500px;}
.ye4{bottom:300.496950px;}
.y1d{bottom:304.494450px;}
.y99{bottom:305.100900px;}
.ybf{bottom:314.805750px;}
.y128{bottom:315.490500px;}
.y49{bottom:317.101050px;}
.ye3{bottom:322.996950px;}
.y74{bottom:323.804850px;}
.y98{bottom:326.100900px;}
.y1c{bottom:326.994450px;}
.y127{bottom:334.990500px;}
.ybe{bottom:337.305750px;}
.y48{bottom:339.601050px;}
.y73{bottom:344.804850px;}
.ye2{bottom:345.496950px;}
.y97{bottom:347.100900px;}
.y1b{bottom:349.494450px;}
.y126{bottom:354.490500px;}
.ybd{bottom:359.805750px;}
.y104{bottom:360.600900px;}
.y47{bottom:362.101050px;}
.y72{bottom:365.804850px;}
.ye1{bottom:367.996950px;}
.y96{bottom:368.100900px;}
.y1a{bottom:371.994450px;}
.y125{bottom:373.990500px;}
.ybc{bottom:382.305750px;}
.y103{bottom:383.100900px;}
.y46{bottom:384.601050px;}
.y71{bottom:386.804850px;}
.y95{bottom:389.100900px;}
.ye0{bottom:390.496950px;}
.y124{bottom:393.490500px;}
.y19{bottom:394.494450px;}
.ybb{bottom:404.805750px;}
.y102{bottom:405.600900px;}
.y45{bottom:407.101050px;}
.y70{bottom:407.804850px;}
.y123{bottom:412.990500px;}
.y18{bottom:416.994450px;}
.y94{bottom:420.600900px;}
.y101{bottom:428.100900px;}
.y6f{bottom:428.804850px;}
.y44{bottom:429.601050px;}
.y122{bottom:432.490500px;}
.y17{bottom:439.494450px;}
.y93{bottom:443.100900px;}
.ydf{bottom:444.000900px;}
.y6e{bottom:449.804850px;}
.yba{bottom:449.805750px;}
.y100{bottom:450.600900px;}
.y121{bottom:451.990500px;}
.y16{bottom:461.994450px;}
.y43{bottom:462.601050px;}
.y92{bottom:465.600900px;}
.y6d{bottom:470.804850px;}
.yb9{bottom:470.805750px;}
.y120{bottom:471.490500px;}
.yff{bottom:473.100900px;}
.y42{bottom:483.601050px;}
.y15{bottom:484.494450px;}
.y91{bottom:488.100900px;}
.y11f{bottom:490.990500px;}
.y6c{bottom:491.804850px;}
.yb8{bottom:491.805750px;}
.yfe{bottom:495.600900px;}
.y90{bottom:498.600900px;}
.y41{bottom:504.601050px;}
.y14{bottom:506.994450px;}
.y11e{bottom:510.490500px;}
.yde{bottom:510.600900px;}
.y6b{bottom:512.804850px;}
.yb7{bottom:512.805750px;}
.yfd{bottom:518.100900px;}
.y8f{bottom:519.600900px;}
.y40{bottom:525.601050px;}
.y13{bottom:529.494450px;}
.y11d{bottom:529.990500px;}
.ydd{bottom:531.600900px;}
.y6a{bottom:533.804850px;}
.y8e{bottom:540.600900px;}
.yb6{bottom:544.305750px;}
.y3f{bottom:546.601050px;}
.y11c{bottom:549.490500px;}
.y12{bottom:551.994450px;}
.ydc{bottom:552.600900px;}
.y69{bottom:554.804850px;}
.y8d{bottom:561.600900px;}
.yfc{bottom:563.100900px;}
.yb5{bottom:566.805750px;}
.y3e{bottom:567.601050px;}
.y11b{bottom:568.990500px;}
.ydb{bottom:573.600900px;}
.y11{bottom:574.494450px;}
.y68{bottom:575.804850px;}
.y8c{bottom:582.600900px;}
.yfb{bottom:585.600900px;}
.y11a{bottom:588.490500px;}
.y3d{bottom:588.601050px;}
.yb4{bottom:589.305750px;}
.yda{bottom:594.600900px;}
.y67{bottom:596.804850px;}
.y10{bottom:596.994450px;}
.y119{bottom:607.990500px;}
.yfa{bottom:608.100900px;}
.y3c{bottom:609.601050px;}
.y8b{bottom:614.100900px;}
.yd9{bottom:615.600900px;}
.y66{bottom:617.804850px;}
.yf{bottom:619.494450px;}
.yb3{bottom:622.305750px;}
.y118{bottom:627.490500px;}
.yf9{bottom:630.600900px;}
.y3b{bottom:630.601050px;}
.y8a{bottom:636.600900px;}
.y65{bottom:638.804850px;}
.ye{bottom:641.994450px;}
.yb2{bottom:643.305750px;}
.y117{bottom:646.990500px;}
.yf8{bottom:653.100900px;}
.yd8{bottom:657.600900px;}
.y64{bottom:659.804850px;}
.y3a{bottom:662.101050px;}
.yb1{bottom:664.305750px;}
.yd{bottom:664.494450px;}
.y116{bottom:666.490500px;}
.y89{bottom:669.600900px;}
.yf7{bottom:675.600900px;}
.yd7{bottom:678.600900px;}
.y39{bottom:684.601050px;}
.y115{bottom:685.990500px;}
.yc{bottom:686.994450px;}
.y88{bottom:690.600900px;}
.y63{bottom:691.304850px;}
.yb0{bottom:695.805750px;}
.yf6{bottom:698.100900px;}
.yd6{bottom:699.600900px;}
.y114{bottom:705.490500px;}
.y38{bottom:707.101050px;}
.yb{bottom:709.494450px;}
.y87{bottom:711.600900px;}
.y62{bottom:713.804850px;}
.yaf{bottom:718.305750px;}
.yd5{bottom:720.600900px;}
.y113{bottom:724.990500px;}
.y37{bottom:729.601050px;}
.ya{bottom:731.994450px;}
.y86{bottom:732.600900px;}
.yae{bottom:740.805750px;}
.yd4{bottom:741.600900px;}
.yf5{bottom:743.100900px;}
.y112{bottom:744.490500px;}
.yd3{bottom:752.100900px;}
.y36{bottom:752.101050px;}
.y85{bottom:753.600900px;}
.y9{bottom:754.494450px;}
.y61{bottom:758.804850px;}
.y111{bottom:763.990500px;}
.yf4{bottom:765.600900px;}
.yad{bottom:773.805750px;}
.y84{bottom:774.600900px;}
.y35{bottom:774.601050px;}
.y60{bottom:781.304850px;}
.yf3{bottom:788.100900px;}
.yac{bottom:794.805750px;}
.y83{bottom:795.600900px;}
.yd2{bottom:797.100900px;}
.y34{bottom:797.101050px;}
.y5f{bottom:803.804850px;}
.y8{bottom:807.998400px;}
.yf2{bottom:810.600900px;}
.y110{bottom:811.494450px;}
.yab{bottom:815.805750px;}
.y82{bottom:816.600900px;}
.yd1{bottom:819.600900px;}
.y5e{bottom:826.304850px;}
.yaa{bottom:836.805750px;}
.y81{bottom:837.600900px;}
.yd0{bottom:842.100900px;}
.y5d{bottom:848.804850px;}
.y142{bottom:849.803100px;}
.y33{bottom:850.605000px;}
.ya9{bottom:857.805750px;}
.y80{bottom:858.600900px;}
.yf1{bottom:864.104850px;}
.ycf{bottom:864.600900px;}
.y141{bottom:866.903100px;}
.y7{bottom:878.198550px;}
.ya8{bottom:878.805750px;}
.y10f{bottom:884.798400px;}
.yce{bottom:887.100900px;}
.y7f{bottom:890.100900px;}
.y140{bottom:906.503100px;}
.ycd{bottom:909.600900px;}
.ya7{bottom:910.305750px;}
.y7e{bottom:912.600900px;}
.y10e{bottom:915.098400px;}
.y5c{bottom:916.304850px;}
.y32{bottom:920.805000px;}
.y13f{bottom:926.303100px;}
.ya6{bottom:932.805750px;}
.yf0{bottom:934.304850px;}
.y10d{bottom:934.898400px;}
.y7d{bottom:935.100900px;}
.y5b{bottom:938.804850px;}
.y6{bottom:941.198550px;}
.y31{bottom:943.305000px;}
.y13e{bottom:946.103100px;}
.y10c{bottom:954.698400px;}
.yef{bottom:955.304850px;}
.ya5{bottom:955.305750px;}
.y7c{bottom:957.600900px;}
.y5a{bottom:961.304850px;}
.ycc{bottom:963.104850px;}
.y30{bottom:965.805000px;}
.y13d{bottom:965.903100px;}
.y5{bottom:973.598550px;}
.y10b{bottom:974.498400px;}
.yee{bottom:976.304850px;}
.ya4{bottom:977.805750px;}
.y59{bottom:983.804850px;}
.y13c{bottom:985.703100px;}
.y2f{bottom:988.305000px;}
.y10a{bottom:994.298400px;}
.yed{bottom:997.304850px;}
.ya3{bottom:1000.305750px;}
.y13b{bottom:1005.503100px;}
.y58{bottom:1006.304850px;}
.y2e{bottom:1010.805000px;}
.y7b{bottom:1011.104850px;}
.y109{bottom:1014.098400px;}
.yec{bottom:1018.304850px;}
.ya2{bottom:1022.805750px;}
.y13a{bottom:1025.303100px;}
.ycb{bottom:1033.304850px;}
.y2d{bottom:1033.305000px;}
.y108{bottom:1033.898400px;}
.y57{bottom:1039.304850px;}
.y139{bottom:1045.103100px;}
.ya1{bottom:1045.305750px;}
.y107{bottom:1053.698400px;}
.yca{bottom:1055.804850px;}
.y2c{bottom:1055.805000px;}
.y56{bottom:1060.304850px;}
.y138{bottom:1064.903100px;}
.ya0{bottom:1067.805750px;}
.y106{bottom:1073.498400px;}
.yc9{bottom:1078.304850px;}
.y2b{bottom:1078.305000px;}
.y55{bottom:1081.304850px;}
.y137{bottom:1084.703100px;}
.yc8{bottom:1100.804850px;}
.y2a{bottom:1100.805000px;}
.y54{bottom:1102.304850px;}
.y4{bottom:1104.502500px;}
.y136{bottom:1104.503100px;}
.y9f{bottom:1121.309700px;}
.y53{bottom:1123.304850px;}
.y29{bottom:1123.305000px;}
.y105{bottom:1124.302350px;}
.y3{bottom:1124.302500px;}
.y135{bottom:1124.303100px;}
.y52{bottom:1176.323550px;}
.y28{bottom:1176.323700px;}
.y134{bottom:1176.324300px;}
.ha{height:29.418902px;}
.h8{height:29.702256px;}
.hc{height:30.967266px;}
.h3{height:45.852539px;}
.h2{height:47.988281px;}
.h9{height:48.399902px;}
.hd{height:49.682256px;}
.hb{height:50.947266px;}
.he{height:53.494629px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x2{left:127.559100px;}
.x4{left:148.818900px;}
.x3{left:192.727800px;}
.x6{left:674.562450px;}
.x5{left:683.524350px;}
@media print{
.v6{vertical-align:-34.632000pt;}
.v4{vertical-align:-21.312000pt;}
.v7{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:17.760000pt;}
.v8{vertical-align:19.536000pt;}
.v5{vertical-align:21.312000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000267pt;}
.ls3a{letter-spacing:0.000533pt;}
.ls30{letter-spacing:0.001288pt;}
.ls39{letter-spacing:0.001472pt;}
.ls3{letter-spacing:0.003200pt;}
.lsb{letter-spacing:0.010069pt;}
.ls42{letter-spacing:0.012800pt;}
.ls3e{letter-spacing:0.013333pt;}
.ls31{letter-spacing:0.013867pt;}
.ls59{letter-spacing:0.014400pt;}
.ls58{letter-spacing:0.014933pt;}
.ls38{letter-spacing:0.015872pt;}
.ls18{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.071467pt;}
.ls32{letter-spacing:0.152000pt;}
.ls33{letter-spacing:0.173867pt;}
.ls4{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.374805pt;}
.ls11{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.560000pt;}
.ls1a{letter-spacing:0.573867pt;}
.ls17{letter-spacing:0.574400pt;}
.ls2b{letter-spacing:0.619200pt;}
.lsf{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.886933pt;}
.ls57{letter-spacing:0.965867pt;}
.ls24{letter-spacing:1.014933pt;}
.ls25{letter-spacing:1.015467pt;}
.ls3c{letter-spacing:1.132800pt;}
.ls3d{letter-spacing:1.133333pt;}
.ls3b{letter-spacing:1.171733pt;}
.ls36{letter-spacing:1.425600pt;}
.ls37{letter-spacing:1.426133pt;}
.ls34{letter-spacing:1.463467pt;}
.ls35{letter-spacing:1.464000pt;}
.ls53{letter-spacing:1.528000pt;}
.ls10{letter-spacing:1.552000pt;}
.ls12{letter-spacing:1.552533pt;}
.lsc{letter-spacing:1.844800pt;}
.ls5b{letter-spacing:1.865067pt;}
.ls49{letter-spacing:2.178133pt;}
.ls16{letter-spacing:2.289067pt;}
.ls4f{letter-spacing:2.560000pt;}
.ls2{letter-spacing:2.666667pt;}
.ls23{letter-spacing:2.858667pt;}
.ls50{letter-spacing:2.925867pt;}
.lse{letter-spacing:3.200000pt;}
.ls22{letter-spacing:3.474133pt;}
.ls21{letter-spacing:3.474667pt;}
.ls48{letter-spacing:3.554133pt;}
.ls46{letter-spacing:3.554667pt;}
.ls29{letter-spacing:3.555200pt;}
.ls2a{letter-spacing:3.600533pt;}
.ls52{letter-spacing:3.667200pt;}
.ls51{letter-spacing:3.667733pt;}
.ls9{letter-spacing:3.730963pt;}
.ls6{letter-spacing:3.733333pt;}
.lsa{letter-spacing:3.742222pt;}
.ls4a{letter-spacing:3.921600pt;}
.ls4b{letter-spacing:3.922133pt;}
.ls28{letter-spacing:4.101333pt;}
.ls1b{letter-spacing:4.259733pt;}
.ls4e{letter-spacing:4.274133pt;}
.ls4d{letter-spacing:4.274667pt;}
.ls27{letter-spacing:4.686933pt;}
.ls8{letter-spacing:4.800000pt;}
.ls7{letter-spacing:4.811852pt;}
.ls5a{letter-spacing:4.869333pt;}
.ls3f{letter-spacing:5.066667pt;}
.ls55{letter-spacing:5.481600pt;}
.ls0{letter-spacing:5.866667pt;}
.ls44{letter-spacing:5.868267pt;}
.ls43{letter-spacing:5.868800pt;}
.ls56{letter-spacing:6.294933pt;}
.ls45{letter-spacing:6.400000pt;}
.ls1c{letter-spacing:7.301333pt;}
.ls1d{letter-spacing:7.301867pt;}
.lsd{letter-spacing:7.466667pt;}
.ls14{letter-spacing:7.522667pt;}
.ls54{letter-spacing:8.025600pt;}
.ls2e{letter-spacing:8.069867pt;}
.ls4c{letter-spacing:8.201600pt;}
.ls40{letter-spacing:8.280533pt;}
.ls2f{letter-spacing:8.473067pt;}
.ls2d{letter-spacing:8.473600pt;}
.ls1{letter-spacing:9.600000pt;}
.ls26{letter-spacing:9.759467pt;}
.ls20{letter-spacing:9.793067pt;}
.ls1f{letter-spacing:11.752000pt;}
.ls1e{letter-spacing:13.258133pt;}
.ls13{letter-spacing:14.415467pt;}
.ws17{word-spacing:-22.352000pt;}
.ws1{word-spacing:-20.981333pt;}
.ws8{word-spacing:-18.624000pt;}
.ws4{word-spacing:-18.304000pt;}
.wsd{word-spacing:-17.984000pt;}
.ws18{word-spacing:-16.485333pt;}
.wsc{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.736000pt;}
.wsa{word-spacing:-15.520000pt;}
.ws7{word-spacing:-14.986667pt;}
.ws19{word-spacing:-14.490667pt;}
.ws5{word-spacing:-14.237333pt;}
.wse{word-spacing:-13.173333pt;}
.ws15{word-spacing:-12.588800pt;}
.wsf{word-spacing:-12.514667pt;}
.ws13{word-spacing:-10.484672pt;}
.ws2{word-spacing:-8.737227pt;}
.ws11{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.058667pt;}
.ws10{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-18.784533pt;}
._21{margin-left:-16.736000pt;}
._1a{margin-left:-15.808000pt;}
._15{margin-left:-12.234667pt;}
._16{margin-left:-11.253333pt;}
._1f{margin-left:-9.952000pt;}
._7{margin-left:-9.024000pt;}
._6{margin-left:-7.776000pt;}
._1d{margin-left:-6.759467pt;}
._3{margin-left:-5.760000pt;}
._13{margin-left:-4.684267pt;}
._f{margin-left:-3.562667pt;}
._e{margin-left:-2.542933pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._a{width:2.202667pt;}
._c{width:3.712000pt;}
._d{width:4.608000pt;}
._11{width:6.336000pt;}
._b{width:7.466667pt;}
._18{width:8.558933pt;}
._8{width:9.700148pt;}
._1c{width:11.007467pt;}
._17{width:11.968000pt;}
._1b{width:13.406933pt;}
._10{width:15.040000pt;}
._9{width:17.714667pt;}
._1e{width:21.696000pt;}
._20{width:37.751368pt;}
._12{width:51.307040pt;}
._14{width:52.521235pt;}
._0{width:176.000000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
.fs8{font-size:29.538667pt;}
.fs6{font-size:31.093333pt;}
.fsd{font-size:32.648000pt;}
.fs10{font-size:34.202667pt;}
.fsb{font-size:37.312000pt;}
.fs9{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:54.821200pt;}
.y27{bottom:54.821333pt;}
.y133{bottom:54.821733pt;}
.y1{bottom:69.221200pt;}
.y26{bottom:69.221333pt;}
.y132{bottom:69.221733pt;}
.y7a{bottom:113.385733pt;}
.y51{bottom:113.386000pt;}
.y25{bottom:117.603733pt;}
.y131{bottom:124.436000pt;}
.y9e{bottom:128.052400pt;}
.y50{bottom:128.052667pt;}
.yeb{bottom:132.270400pt;}
.y24{bottom:132.283467pt;}
.y79{bottom:132.492400pt;}
.y130{bottom:141.769333pt;}
.yc7{bottom:142.719067pt;}
.y23{bottom:146.950133pt;}
.y9d{bottom:147.159067pt;}
.y4f{bottom:147.159333pt;}
.yc6{bottom:157.385733pt;}
.y12f{bottom:159.102667pt;}
.yea{bottom:164.441733pt;}
.y22{bottom:166.056800pt;}
.y4e{bottom:166.056933pt;}
.y78{bottom:166.493200pt;}
.yc5{bottom:172.052400pt;}
.y12e{bottom:176.436000pt;}
.ye9{bottom:183.108400pt;}
.y77{bottom:185.159867pt;}
.yc4{bottom:186.719067pt;}
.y21{bottom:190.661733pt;}
.y9c{bottom:191.200800pt;}
.y12d{bottom:193.769333pt;}
.y4d{bottom:197.867600pt;}
.ye8{bottom:201.775067pt;}
.yc3{bottom:205.603733pt;}
.y20{bottom:210.661733pt;}
.y12c{bottom:211.102667pt;}
.y9b{bottom:211.200800pt;}
.y4c{bottom:216.534267pt;}
.yc2{bottom:220.283467pt;}
.ye7{bottom:220.441733pt;}
.y76{bottom:227.826533pt;}
.y12b{bottom:228.436000pt;}
.y1f{bottom:230.661733pt;}
.y9a{bottom:231.200800pt;}
.y4b{bottom:235.200933pt;}
.ye6{bottom:239.108400pt;}
.yc1{bottom:239.168133pt;}
.y12a{bottom:245.769333pt;}
.y75{bottom:247.826533pt;}
.y1e{bottom:250.661733pt;}
.y4a{bottom:253.867600pt;}
.ye5{bottom:257.775067pt;}
.yc0{bottom:258.287733pt;}
.y129{bottom:263.102667pt;}
.ye4{bottom:267.108400pt;}
.y1d{bottom:270.661733pt;}
.y99{bottom:271.200800pt;}
.ybf{bottom:279.827333pt;}
.y128{bottom:280.436000pt;}
.y49{bottom:281.867600pt;}
.ye3{bottom:287.108400pt;}
.y74{bottom:287.826533pt;}
.y98{bottom:289.867467pt;}
.y1c{bottom:290.661733pt;}
.y127{bottom:297.769333pt;}
.ybe{bottom:299.827333pt;}
.y48{bottom:301.867600pt;}
.y73{bottom:306.493200pt;}
.ye2{bottom:307.108400pt;}
.y97{bottom:308.534133pt;}
.y1b{bottom:310.661733pt;}
.y126{bottom:315.102667pt;}
.ybd{bottom:319.827333pt;}
.y104{bottom:320.534133pt;}
.y47{bottom:321.867600pt;}
.y72{bottom:325.159867pt;}
.ye1{bottom:327.108400pt;}
.y96{bottom:327.200800pt;}
.y1a{bottom:330.661733pt;}
.y125{bottom:332.436000pt;}
.ybc{bottom:339.827333pt;}
.y103{bottom:340.534133pt;}
.y46{bottom:341.867600pt;}
.y71{bottom:343.826533pt;}
.y95{bottom:345.867467pt;}
.ye0{bottom:347.108400pt;}
.y124{bottom:349.769333pt;}
.y19{bottom:350.661733pt;}
.ybb{bottom:359.827333pt;}
.y102{bottom:360.534133pt;}
.y45{bottom:361.867600pt;}
.y70{bottom:362.493200pt;}
.y123{bottom:367.102667pt;}
.y18{bottom:370.661733pt;}
.y94{bottom:373.867467pt;}
.y101{bottom:380.534133pt;}
.y6f{bottom:381.159867pt;}
.y44{bottom:381.867600pt;}
.y122{bottom:384.436000pt;}
.y17{bottom:390.661733pt;}
.y93{bottom:393.867467pt;}
.ydf{bottom:394.667467pt;}
.y6e{bottom:399.826533pt;}
.yba{bottom:399.827333pt;}
.y100{bottom:400.534133pt;}
.y121{bottom:401.769333pt;}
.y16{bottom:410.661733pt;}
.y43{bottom:411.200933pt;}
.y92{bottom:413.867467pt;}
.y6d{bottom:418.493200pt;}
.yb9{bottom:418.494000pt;}
.y120{bottom:419.102667pt;}
.yff{bottom:420.534133pt;}
.y42{bottom:429.867600pt;}
.y15{bottom:430.661733pt;}
.y91{bottom:433.867467pt;}
.y11f{bottom:436.436000pt;}
.y6c{bottom:437.159867pt;}
.yb8{bottom:437.160667pt;}
.yfe{bottom:440.534133pt;}
.y90{bottom:443.200800pt;}
.y41{bottom:448.534267pt;}
.y14{bottom:450.661733pt;}
.y11e{bottom:453.769333pt;}
.yde{bottom:453.867467pt;}
.y6b{bottom:455.826533pt;}
.yb7{bottom:455.827333pt;}
.yfd{bottom:460.534133pt;}
.y8f{bottom:461.867467pt;}
.y40{bottom:467.200933pt;}
.y13{bottom:470.661733pt;}
.y11d{bottom:471.102667pt;}
.ydd{bottom:472.534133pt;}
.y6a{bottom:474.493200pt;}
.y8e{bottom:480.534133pt;}
.yb6{bottom:483.827333pt;}
.y3f{bottom:485.867600pt;}
.y11c{bottom:488.436000pt;}
.y12{bottom:490.661733pt;}
.ydc{bottom:491.200800pt;}
.y69{bottom:493.159867pt;}
.y8d{bottom:499.200800pt;}
.yfc{bottom:500.534133pt;}
.yb5{bottom:503.827333pt;}
.y3e{bottom:504.534267pt;}
.y11b{bottom:505.769333pt;}
.ydb{bottom:509.867467pt;}
.y11{bottom:510.661733pt;}
.y68{bottom:511.826533pt;}
.y8c{bottom:517.867467pt;}
.yfb{bottom:520.534133pt;}
.y11a{bottom:523.102667pt;}
.y3d{bottom:523.200933pt;}
.yb4{bottom:523.827333pt;}
.yda{bottom:528.534133pt;}
.y67{bottom:530.493200pt;}
.y10{bottom:530.661733pt;}
.y119{bottom:540.436000pt;}
.yfa{bottom:540.534133pt;}
.y3c{bottom:541.867600pt;}
.y8b{bottom:545.867467pt;}
.yd9{bottom:547.200800pt;}
.y66{bottom:549.159867pt;}
.yf{bottom:550.661733pt;}
.yb3{bottom:553.160667pt;}
.y118{bottom:557.769333pt;}
.yf9{bottom:560.534133pt;}
.y3b{bottom:560.534267pt;}
.y8a{bottom:565.867467pt;}
.y65{bottom:567.826533pt;}
.ye{bottom:570.661733pt;}
.yb2{bottom:571.827333pt;}
.y117{bottom:575.102667pt;}
.yf8{bottom:580.534133pt;}
.yd8{bottom:584.534133pt;}
.y64{bottom:586.493200pt;}
.y3a{bottom:588.534267pt;}
.yb1{bottom:590.494000pt;}
.yd{bottom:590.661733pt;}
.y116{bottom:592.436000pt;}
.y89{bottom:595.200800pt;}
.yf7{bottom:600.534133pt;}
.yd7{bottom:603.200800pt;}
.y39{bottom:608.534267pt;}
.y115{bottom:609.769333pt;}
.yc{bottom:610.661733pt;}
.y88{bottom:613.867467pt;}
.y63{bottom:614.493200pt;}
.yb0{bottom:618.494000pt;}
.yf6{bottom:620.534133pt;}
.yd6{bottom:621.867467pt;}
.y114{bottom:627.102667pt;}
.y38{bottom:628.534267pt;}
.yb{bottom:630.661733pt;}
.y87{bottom:632.534133pt;}
.y62{bottom:634.493200pt;}
.yaf{bottom:638.494000pt;}
.yd5{bottom:640.534133pt;}
.y113{bottom:644.436000pt;}
.y37{bottom:648.534267pt;}
.ya{bottom:650.661733pt;}
.y86{bottom:651.200800pt;}
.yae{bottom:658.494000pt;}
.yd4{bottom:659.200800pt;}
.yf5{bottom:660.534133pt;}
.y112{bottom:661.769333pt;}
.yd3{bottom:668.534133pt;}
.y36{bottom:668.534267pt;}
.y85{bottom:669.867467pt;}
.y9{bottom:670.661733pt;}
.y61{bottom:674.493200pt;}
.y111{bottom:679.102667pt;}
.yf4{bottom:680.534133pt;}
.yad{bottom:687.827333pt;}
.y84{bottom:688.534133pt;}
.y35{bottom:688.534267pt;}
.y60{bottom:694.493200pt;}
.yf3{bottom:700.534133pt;}
.yac{bottom:706.494000pt;}
.y83{bottom:707.200800pt;}
.yd2{bottom:708.534133pt;}
.y34{bottom:708.534267pt;}
.y5f{bottom:714.493200pt;}
.y8{bottom:718.220800pt;}
.yf2{bottom:720.534133pt;}
.y110{bottom:721.328400pt;}
.yab{bottom:725.160667pt;}
.y82{bottom:725.867467pt;}
.yd1{bottom:728.534133pt;}
.y5e{bottom:734.493200pt;}
.yaa{bottom:743.827333pt;}
.y81{bottom:744.534133pt;}
.yd0{bottom:748.534133pt;}
.y5d{bottom:754.493200pt;}
.y142{bottom:755.380533pt;}
.y33{bottom:756.093333pt;}
.ya9{bottom:762.494000pt;}
.y80{bottom:763.200800pt;}
.yf1{bottom:768.093200pt;}
.ycf{bottom:768.534133pt;}
.y141{bottom:770.580533pt;}
.y7{bottom:780.620933pt;}
.ya8{bottom:781.160667pt;}
.y10f{bottom:786.487467pt;}
.yce{bottom:788.534133pt;}
.y7f{bottom:791.200800pt;}
.y140{bottom:805.780533pt;}
.ycd{bottom:808.534133pt;}
.ya7{bottom:809.160667pt;}
.y7e{bottom:811.200800pt;}
.y10e{bottom:813.420800pt;}
.y5c{bottom:814.493200pt;}
.y32{bottom:818.493333pt;}
.y13f{bottom:823.380533pt;}
.ya6{bottom:829.160667pt;}
.yf0{bottom:830.493200pt;}
.y10d{bottom:831.020800pt;}
.y7d{bottom:831.200800pt;}
.y5b{bottom:834.493200pt;}
.y6{bottom:836.620933pt;}
.y31{bottom:838.493333pt;}
.y13e{bottom:840.980533pt;}
.y10c{bottom:848.620800pt;}
.yef{bottom:849.159867pt;}
.ya5{bottom:849.160667pt;}
.y7c{bottom:851.200800pt;}
.y5a{bottom:854.493200pt;}
.ycc{bottom:856.093200pt;}
.y30{bottom:858.493333pt;}
.y13d{bottom:858.580533pt;}
.y5{bottom:865.420933pt;}
.y10b{bottom:866.220800pt;}
.yee{bottom:867.826533pt;}
.ya4{bottom:869.160667pt;}
.y59{bottom:874.493200pt;}
.y13c{bottom:876.180533pt;}
.y2f{bottom:878.493333pt;}
.y10a{bottom:883.820800pt;}
.yed{bottom:886.493200pt;}
.ya3{bottom:889.160667pt;}
.y13b{bottom:893.780533pt;}
.y58{bottom:894.493200pt;}
.y2e{bottom:898.493333pt;}
.y7b{bottom:898.759867pt;}
.y109{bottom:901.420800pt;}
.yec{bottom:905.159867pt;}
.ya2{bottom:909.160667pt;}
.y13a{bottom:911.380533pt;}
.ycb{bottom:918.493200pt;}
.y2d{bottom:918.493333pt;}
.y108{bottom:919.020800pt;}
.y57{bottom:923.826533pt;}
.y139{bottom:928.980533pt;}
.ya1{bottom:929.160667pt;}
.y107{bottom:936.620800pt;}
.yca{bottom:938.493200pt;}
.y2c{bottom:938.493333pt;}
.y56{bottom:942.493200pt;}
.y138{bottom:946.580533pt;}
.ya0{bottom:949.160667pt;}
.y106{bottom:954.220800pt;}
.yc9{bottom:958.493200pt;}
.y2b{bottom:958.493333pt;}
.y55{bottom:961.159867pt;}
.y137{bottom:964.180533pt;}
.yc8{bottom:978.493200pt;}
.y2a{bottom:978.493333pt;}
.y54{bottom:979.826533pt;}
.y4{bottom:981.780000pt;}
.y136{bottom:981.780533pt;}
.y9f{bottom:996.719733pt;}
.y53{bottom:998.493200pt;}
.y29{bottom:998.493333pt;}
.y105{bottom:999.379867pt;}
.y3{bottom:999.380000pt;}
.y135{bottom:999.380533pt;}
.y52{bottom:1045.620933pt;}
.y28{bottom:1045.621067pt;}
.y134{bottom:1045.621600pt;}
.ha{height:26.150135pt;}
.h8{height:26.402005pt;}
.hc{height:27.526458pt;}
.h3{height:40.757812pt;}
.h2{height:42.656250pt;}
.h9{height:43.022135pt;}
.hd{height:44.162005pt;}
.hb{height:45.286458pt;}
.he{height:47.550781pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x2{left:113.385867pt;}
.x4{left:132.283467pt;}
.x3{left:171.313600pt;}
.x6{left:599.611067pt;}
.x5{left:607.577200pt;}
}




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