
    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_9fe1948378a0eab582b2134c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72cf4299ef336b86b01d9e75.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_68bce6dfd8b211280ac32fa9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_ea1b2e011d207e4693c949ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_dda0803bc9b1d2a530a13b58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_f7a9ed9a90319e87f77fe1de.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_b5c2f8cf7200cefce62d8cde.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_df0aebd9f6d58196b7518ab6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_377fa088f80b802da1a310a1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_ad305b683577ed194ebe385f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_753b6344d68b4af543e71e21.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_2ae4d6c34e6e2803ccc68262.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2e28cbdf8493ba6f5dd3ef5d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_62f42e3f7deb70a300049da1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_dabdd1c4b5343e0a07126b6e.woff')format("woff");}.fff{font-family:fff;line-height:1.006348;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_5e1654dd8fef8aaa5788525b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ac9adc6e0d38e142c9112d7e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_160c341d387895f7df906d2e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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:ff13;src:url('chunks/assets/font_cc8f85de12c0e2c9183d1517.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_59a617ac12c9472b595146d3.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_1d7d08b67cfc27cb0f82d823.woff')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsd{letter-spacing:-7.023888px;}
.ls11{letter-spacing:-2.530368px;}
.ls1d{letter-spacing:-0.569088px;}
.ls19{letter-spacing:-0.470592px;}
.ls7{letter-spacing:-0.454176px;}
.ls17{letter-spacing:-0.447552px;}
.ls1c{letter-spacing:-0.432288px;}
.ls20{letter-spacing:-0.421344px;}
.ls1b{letter-spacing:-0.361152px;}
.ls14{letter-spacing:-0.338688px;}
.ls15{letter-spacing:-0.320544px;}
.ls13{letter-spacing:-0.241920px;}
.lsa{letter-spacing:-0.241200px;}
.ls16{letter-spacing:-0.223776px;}
.ls1f{letter-spacing:-0.213408px;}
.ls8{letter-spacing:-0.186048px;}
.lse{letter-spacing:-0.173808px;}
.ls1e{letter-spacing:-0.169632px;}
.ls4{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.132912px;}
.ls6{letter-spacing:-0.125856px;}
.ls10{letter-spacing:-0.119232px;}
.ls9{letter-spacing:-0.115776px;}
.lsb{letter-spacing:-0.102240px;}
.lsf{letter-spacing:-0.079488px;}
.ls12{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.014400px;}
.ls21{letter-spacing:0.123552px;}
.ls2{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240480px;}
.ls18{letter-spacing:0.275616px;}
.ls22{letter-spacing:0.308880px;}
.ls1{letter-spacing:73.440000px;}
.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;}
}
.ws3{word-spacing:-26.821440px;}
.ws4{word-spacing:-26.580240px;}
.ws5{word-spacing:-22.973328px;}
.ws0{word-spacing:-18.288864px;}
.wsf{word-spacing:-18.014400px;}
.ws9{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.wse{word-spacing:-16.257600px;}
.ws7{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.672448px;}
.wsb{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wsc{word-spacing:-13.866048px;}
.wsd{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-7.695360px;}
._5{margin-left:-4.962240px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.073952px;}
._8{width:2.384640px;}
._7{width:4.294080px;}
._c{width:5.832000px;}
._6{width:6.850080px;}
._d{width:8.004960px;}
._e{width:9.172800px;}
._1d{width:10.578240px;}
._a{width:12.156624px;}
._15{width:13.644000px;}
._11{width:14.644800px;}
._b{width:16.135200px;}
._13{width:19.432800px;}
._16{width:20.455776px;}
._12{width:21.628512px;}
._14{width:23.054688px;}
._1c{width:24.249312px;}
._1e{width:25.516800px;}
._17{width:26.863200px;}
._18{width:27.897120px;}
._1a{width:29.070864px;}
._1f{width:30.075408px;}
._10{width:31.888800px;}
._f{width:33.868800px;}
._22{width:35.236800px;}
._19{width:42.120000px;}
._21{width:52.862400px;}
._1b{width:57.585600px;}
._9{width:78.630768px;}
._23{width:688.867200px;}
._20{width:989.919360px;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs8{font-size:18.720000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:4.440000px;}
.y14{bottom:4.800000px;}
.y5a{bottom:5.460000px;}
.y76{bottom:5.940000px;}
.y50{bottom:6.960000px;}
.ye{bottom:13.560000px;}
.y4e{bottom:14.460000px;}
.y9{bottom:20.400000px;}
.y73{bottom:22.980000px;}
.y3e{bottom:23.460000px;}
.y13{bottom:24.240000px;}
.y1b{bottom:26.220000px;}
.y75{bottom:26.460000px;}
.y4d{bottom:31.740000px;}
.y8{bottom:42.720000px;}
.y12{bottom:43.320000px;}
.y72{bottom:43.860000px;}
.y3d{bottom:44.340000px;}
.yd{bottom:44.520000px;}
.y1a{bottom:47.100000px;}
.y4c{bottom:49.020000px;}
.y4{bottom:57.240000px;}
.y10{bottom:60.600000px;}
.y11{bottom:62.400000px;}
.y71{bottom:64.740000px;}
.y3c{bottom:65.220000px;}
.y58{bottom:65.520000px;}
.y4b{bottom:66.300000px;}
.y19{bottom:67.980000px;}
.yc{bottom:75.840000px;}
.y3{bottom:76.320000px;}
.y57{bottom:82.080000px;}
.y4a{bottom:83.580000px;}
.y70{bottom:85.260000px;}
.y3b{bottom:85.740000px;}
.y59{bottom:88.500000px;}
.y18{bottom:88.860000px;}
.y56{bottom:98.640000px;}
.y6f{bottom:106.140000px;}
.y3a{bottom:106.620000px;}
.yb{bottom:106.800000px;}
.y52{bottom:109.440000px;}
.y17{bottom:109.740000px;}
.ye9{bottom:117.360000px;}
.ya5{bottom:121.680000px;}
.y4f{bottom:123.000000px;}
.y6e{bottom:126.660000px;}
.y39{bottom:127.140000px;}
.yba{bottom:128.520000px;}
.y16{bottom:130.980000px;}
.ya{bottom:137.760000px;}
.y85{bottom:140.760000px;}
.y1c{bottom:142.500000px;}
.y6d{bottom:147.540000px;}
.y38{bottom:148.020000px;}
.ye8{bottom:148.320000px;}
.yd7{bottom:149.040000px;}
.y7{bottom:156.840000px;}
.yb9{bottom:159.480000px;}
.y103{bottom:161.280000px;}
.ya4{bottom:162.000000px;}
.y6c{bottom:168.060000px;}
.yc5{bottom:168.480000px;}
.y37{bottom:168.540000px;}
.y84{bottom:171.720000px;}
.ye7{bottom:179.280000px;}
.yd6{bottom:180.360000px;}
.y6b{bottom:188.940000px;}
.y36{bottom:189.420000px;}
.y102{bottom:192.240000px;}
.yc4{bottom:197.640000px;}
.ya3{bottom:198.360000px;}
.yb8{bottom:199.800000px;}
.y83{bottom:203.040000px;}
.y6a{bottom:209.460000px;}
.y35{bottom:209.940000px;}
.yd5{bottom:211.320000px;}
.y101{bottom:223.560000px;}
.ya2{bottom:225.360000px;}
.ye6{bottom:228.240000px;}
.y69{bottom:230.340000px;}
.yb7{bottom:230.760000px;}
.y34{bottom:230.820000px;}
.y82{bottom:234.000000px;}
.y3f{bottom:238.500000px;}
.yd4{bottom:242.280000px;}
.y68{bottom:250.860000px;}
.y33{bottom:251.340000px;}
.y100{bottom:254.520000px;}
.ya1{bottom:256.320000px;}
.ye5{bottom:259.560000px;}
.yb6{bottom:261.720000px;}
.y67{bottom:271.740000px;}
.y32{bottom:272.220000px;}
.yd3{bottom:273.240000px;}
.y81{bottom:273.960000px;}
.ya0{bottom:287.280000px;}
.ye4{bottom:290.520000px;}
.y66{bottom:292.260000px;}
.yb5{bottom:292.680000px;}
.y31{bottom:292.740000px;}
.yff{bottom:303.480000px;}
.yd2{bottom:304.560000px;}
.y80{bottom:304.920000px;}
.y65{bottom:313.140000px;}
.y30{bottom:313.620000px;}
.y9f{bottom:318.240000px;}
.yb4{bottom:333.000000px;}
.y64{bottom:333.660000px;}
.y2f{bottom:334.140000px;}
.yfe{bottom:334.440000px;}
.y7f{bottom:335.880000px;}
.ye3{bottom:339.480000px;}
.y49{bottom:340.740000px;}
.y9e{bottom:349.560000px;}
.yd1{bottom:353.520000px;}
.y63{bottom:354.540000px;}
.y2e{bottom:355.020000px;}
.y48{bottom:358.020000px;}
.yfd{bottom:365.760000px;}
.y7e{bottom:367.200000px;}
.yb3{bottom:369.000000px;}
.ye2{bottom:370.440000px;}
.y62{bottom:375.060000px;}
.y47{bottom:375.300000px;}
.y2d{bottom:375.540000px;}
.y9d{bottom:380.520000px;}
.yc3{bottom:389.520000px;}
.y46{bottom:392.580000px;}
.yd0{bottom:393.480000px;}
.y61{bottom:395.940000px;}
.y2c{bottom:396.420000px;}
.yfc{bottom:396.720000px;}
.y7d{bottom:398.160000px;}
.yb2{bottom:402.480000px;}
.y45{bottom:409.860000px;}
.y9c{bottom:411.480000px;}
.y60{bottom:416.460000px;}
.y2b{bottom:416.940000px;}
.ye1{bottom:419.760000px;}
.yc2{bottom:420.480000px;}
.y44{bottom:427.140000px;}
.y7c{bottom:429.120000px;}
.yb1{bottom:433.440000px;}
.y5f{bottom:437.340000px;}
.y2a{bottom:437.820000px;}
.y112{bottom:438.480000px;}
.y43{bottom:444.420000px;}
.yfb{bottom:445.680000px;}
.ye0{bottom:450.720000px;}
.y9b{bottom:451.440000px;}
.y5e{bottom:457.860000px;}
.y29{bottom:458.340000px;}
.y7b{bottom:460.080000px;}
.y42{bottom:461.700000px;}
.yb0{bottom:464.760000px;}
.y111{bottom:469.800000px;}
.yfa{bottom:476.640000px;}
.y5d{bottom:478.740000px;}
.y41{bottom:478.980000px;}
.y28{bottom:479.220000px;}
.y9a{bottom:482.760000px;}
.y7a{bottom:491.400000px;}
.yaf{bottom:495.720000px;}
.y40{bottom:496.260000px;}
.y5c{bottom:499.260000px;}
.ydf{bottom:499.680000px;}
.y27{bottom:499.740000px;}
.y110{bottom:501.120000px;}
.yf9{bottom:507.600000px;}
.y99{bottom:513.720000px;}
.y26{bottom:520.620000px;}
.y79{bottom:522.360000px;}
.yc1{bottom:522.720000px;}
.ycf{bottom:526.680000px;}
.yde{bottom:530.640000px;}
.y10f{bottom:532.440000px;}
.yae{bottom:535.680000px;}
.yf8{bottom:538.920000px;}
.y25{bottom:541.140000px;}
.y78{bottom:543.240000px;}
.y98{bottom:544.680000px;}
.yc0{bottom:553.680000px;}
.yce{bottom:557.640000px;}
.ydd{bottom:561.600000px;}
.y24{bottom:562.020000px;}
.y10e{bottom:563.760000px;}
.yad{bottom:566.640000px;}
.y77{bottom:574.200000px;}
.y97{bottom:575.640000px;}
.y23{bottom:582.540000px;}
.ybf{bottom:584.640000px;}
.yf7{bottom:587.880000px;}
.y74{bottom:589.500000px;}
.ydc{bottom:592.920000px;}
.y10d{bottom:595.080000px;}
.yac{bottom:597.600000px;}
.y22{bottom:603.420000px;}
.y96{bottom:615.600000px;}
.yf6{bottom:618.840000px;}
.y21{bottom:623.940000px;}
.y10c{bottom:626.400000px;}
.yab{bottom:628.920000px;}
.y5b{bottom:631.500000px;}
.ydb{bottom:641.880000px;}
.y20{bottom:644.820000px;}
.y95{bottom:646.920000px;}
.y10b{bottom:657.720000px;}
.ycd{bottom:659.880000px;}
.y1f{bottom:665.340000px;}
.yf5{bottom:667.800000px;}
.yaa{bottom:668.880000px;}
.yda{bottom:672.840000px;}
.y94{bottom:677.880000px;}
.y10a{bottom:689.040000px;}
.ycc{bottom:690.840000px;}
.yf4{bottom:699.120000px;}
.ya9{bottom:699.840000px;}
.yd9{bottom:703.800000px;}
.y1e{bottom:704.220000px;}
.y93{bottom:708.840000px;}
.y109{bottom:720.360000px;}
.ycb{bottom:721.800000px;}
.ya8{bottom:730.800000px;}
.y1d{bottom:734.820000px;}
.y92{bottom:739.800000px;}
.yf3{bottom:748.080000px;}
.y15{bottom:748.500000px;}
.ybe{bottom:748.800000px;}
.y108{bottom:751.680000px;}
.yca{bottom:753.120000px;}
.y91{bottom:771.120000px;}
.yf2{bottom:779.040000px;}
.ybd{bottom:780.120000px;}
.y107{bottom:783.360000px;}
.yd8{bottom:793.080000px;}
.y90{bottom:802.080000px;}
.ybc{bottom:811.080000px;}
.y106{bottom:814.680000px;}
.yf1{bottom:828.000000px;}
.ya7{bottom:833.040000px;}
.y8f{bottom:842.040000px;}
.y105{bottom:846.000000px;}
.yf0{bottom:859.320000px;}
.ya6{bottom:864.000000px;}
.y8e{bottom:873.000000px;}
.y104{bottom:877.320000px;}
.yef{bottom:890.280000px;}
.yc9{bottom:895.320000px;}
.yf{bottom:897.000000px;}
.y8d{bottom:904.320000px;}
.yc8{bottom:926.280000px;}
.y8c{bottom:935.280000px;}
.yee{bottom:939.240000px;}
.yc7{bottom:957.240000px;}
.y8b{bottom:966.240000px;}
.yed{bottom:970.200000px;}
.y6{bottom:975.000000px;}
.yc6{bottom:988.200000px;}
.y8a{bottom:997.200000px;}
.ybb{bottom:1006.200000px;}
.yec{bottom:1019.520000px;}
.y89{bottom:1037.520000px;}
.yeb{bottom:1050.480000px;}
.y88{bottom:1068.480000px;}
.yea{bottom:1081.440000px;}
.y87{bottom:1099.440000px;}
.y86{bottom:1130.400000px;}
.y55{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y54{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y53{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h1e{height:3.839063px;}
.h1f{height:12.476953px;}
.h14{height:21.000000px;}
.h17{height:24.000000px;}
.h16{height:36.405703px;}
.h1d{height:36.471094px;}
.h4{height:41.574375px;}
.h15{height:41.868281px;}
.h12{height:41.993438px;}
.h1c{height:43.500000px;}
.ha{height:44.149219px;}
.h9{height:45.992813px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.hf{height:49.289063px;}
.h10{height:50.027344px;}
.h19{height:54.000000px;}
.he{height:56.593125px;}
.hc{height:62.472656px;}
.h1b{height:63.175781px;}
.h1a{height:63.949219px;}
.h6{height:72.360000px;}
.h8{height:78.000000px;}
.h7{height:84.318047px;}
.h13{height:97.500000px;}
.hb{height:148.500000px;}
.h5{height:174.000000px;}
.h11{height:511.500000px;}
.h18{height:516.000000px;}
.hd{height:754.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.500000px;}
.w5{width:120.000000px;}
.w2{width:249.000000px;}
.w3{width:552.000000px;}
.w6{width:666.000000px;}
.w7{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:8.743296px;}
.xa{left:13.250604px;}
.x12{left:21.688464px;}
.x9{left:31.136700px;}
.xd{left:35.790888px;}
.x8{left:37.480584px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.x16{left:55.125000px;}
.x11{left:77.433096px;}
.x10{left:86.072772px;}
.xf{left:89.254416px;}
.x15{left:107.174916px;}
.x4{left:124.379904px;}
.xc{left:172.700400px;}
.x14{left:174.000000px;}
.xe{left:201.765720px;}
.x5{left:233.819832px;}
.x7{left:289.500000px;}
.x2{left:685.130400px;}
.x13{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsd{letter-spacing:-6.243456pt;}
.ls11{letter-spacing:-2.249216pt;}
.ls1d{letter-spacing:-0.505856pt;}
.ls19{letter-spacing:-0.418304pt;}
.ls7{letter-spacing:-0.403712pt;}
.ls17{letter-spacing:-0.397824pt;}
.ls1c{letter-spacing:-0.384256pt;}
.ls20{letter-spacing:-0.374528pt;}
.ls1b{letter-spacing:-0.321024pt;}
.ls14{letter-spacing:-0.301056pt;}
.ls15{letter-spacing:-0.284928pt;}
.ls13{letter-spacing:-0.215040pt;}
.lsa{letter-spacing:-0.214400pt;}
.ls16{letter-spacing:-0.198912pt;}
.ls1f{letter-spacing:-0.189696pt;}
.ls8{letter-spacing:-0.165376pt;}
.lse{letter-spacing:-0.154496pt;}
.ls1e{letter-spacing:-0.150784pt;}
.ls4{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.118144pt;}
.ls6{letter-spacing:-0.111872pt;}
.ls10{letter-spacing:-0.105984pt;}
.ls9{letter-spacing:-0.102912pt;}
.lsb{letter-spacing:-0.090880pt;}
.lsf{letter-spacing:-0.070656pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.012800pt;}
.ls21{letter-spacing:0.109824pt;}
.ls2{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213760pt;}
.ls18{letter-spacing:0.244992pt;}
.ls22{letter-spacing:0.274560pt;}
.ls1{letter-spacing:65.280000pt;}
.ws3{word-spacing:-23.841280pt;}
.ws4{word-spacing:-23.626880pt;}
.ws5{word-spacing:-20.420736pt;}
.ws0{word-spacing:-16.256768pt;}
.wsf{word-spacing:-16.012800pt;}
.ws9{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.wse{word-spacing:-14.451200pt;}
.ws7{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.042176pt;}
.wsb{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wsc{word-spacing:-12.325376pt;}
.wsd{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-6.840320pt;}
._5{margin-left:-4.410880pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.954624pt;}
._8{width:2.119680pt;}
._7{width:3.816960pt;}
._c{width:5.184000pt;}
._6{width:6.088960pt;}
._d{width:7.115520pt;}
._e{width:8.153600pt;}
._1d{width:9.402880pt;}
._a{width:10.805888pt;}
._15{width:12.128000pt;}
._11{width:13.017600pt;}
._b{width:14.342400pt;}
._13{width:17.273600pt;}
._16{width:18.182912pt;}
._12{width:19.225344pt;}
._14{width:20.493056pt;}
._1c{width:21.554944pt;}
._1e{width:22.681600pt;}
._17{width:23.878400pt;}
._18{width:24.797440pt;}
._1a{width:25.840768pt;}
._1f{width:26.733696pt;}
._10{width:28.345600pt;}
._f{width:30.105600pt;}
._22{width:31.321600pt;}
._19{width:37.440000pt;}
._21{width:46.988800pt;}
._1b{width:51.187200pt;}
._9{width:69.894016pt;}
._23{width:612.326400pt;}
._20{width:879.928320pt;}
.fs7{font-size:5.120000pt;}
.fs8{font-size:16.640000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.946667pt;}
.y14{bottom:4.266667pt;}
.y5a{bottom:4.853333pt;}
.y76{bottom:5.280000pt;}
.y50{bottom:6.186667pt;}
.ye{bottom:12.053333pt;}
.y4e{bottom:12.853333pt;}
.y9{bottom:18.133333pt;}
.y73{bottom:20.426667pt;}
.y3e{bottom:20.853333pt;}
.y13{bottom:21.546667pt;}
.y1b{bottom:23.306667pt;}
.y75{bottom:23.520000pt;}
.y4d{bottom:28.213333pt;}
.y8{bottom:37.973333pt;}
.y12{bottom:38.506667pt;}
.y72{bottom:38.986667pt;}
.y3d{bottom:39.413333pt;}
.yd{bottom:39.573333pt;}
.y1a{bottom:41.866667pt;}
.y4c{bottom:43.573333pt;}
.y4{bottom:50.880000pt;}
.y10{bottom:53.866667pt;}
.y11{bottom:55.466667pt;}
.y71{bottom:57.546667pt;}
.y3c{bottom:57.973333pt;}
.y58{bottom:58.240000pt;}
.y4b{bottom:58.933333pt;}
.y19{bottom:60.426667pt;}
.yc{bottom:67.413333pt;}
.y3{bottom:67.840000pt;}
.y57{bottom:72.960000pt;}
.y4a{bottom:74.293333pt;}
.y70{bottom:75.786667pt;}
.y3b{bottom:76.213333pt;}
.y59{bottom:78.666667pt;}
.y18{bottom:78.986667pt;}
.y56{bottom:87.680000pt;}
.y6f{bottom:94.346667pt;}
.y3a{bottom:94.773333pt;}
.yb{bottom:94.933333pt;}
.y52{bottom:97.280000pt;}
.y17{bottom:97.546667pt;}
.ye9{bottom:104.320000pt;}
.ya5{bottom:108.160000pt;}
.y4f{bottom:109.333333pt;}
.y6e{bottom:112.586667pt;}
.y39{bottom:113.013333pt;}
.yba{bottom:114.240000pt;}
.y16{bottom:116.426667pt;}
.ya{bottom:122.453333pt;}
.y85{bottom:125.120000pt;}
.y1c{bottom:126.666667pt;}
.y6d{bottom:131.146667pt;}
.y38{bottom:131.573333pt;}
.ye8{bottom:131.840000pt;}
.yd7{bottom:132.480000pt;}
.y7{bottom:139.413333pt;}
.yb9{bottom:141.760000pt;}
.y103{bottom:143.360000pt;}
.ya4{bottom:144.000000pt;}
.y6c{bottom:149.386667pt;}
.yc5{bottom:149.760000pt;}
.y37{bottom:149.813333pt;}
.y84{bottom:152.640000pt;}
.ye7{bottom:159.360000pt;}
.yd6{bottom:160.320000pt;}
.y6b{bottom:167.946667pt;}
.y36{bottom:168.373333pt;}
.y102{bottom:170.880000pt;}
.yc4{bottom:175.680000pt;}
.ya3{bottom:176.320000pt;}
.yb8{bottom:177.600000pt;}
.y83{bottom:180.480000pt;}
.y6a{bottom:186.186667pt;}
.y35{bottom:186.613333pt;}
.yd5{bottom:187.840000pt;}
.y101{bottom:198.720000pt;}
.ya2{bottom:200.320000pt;}
.ye6{bottom:202.880000pt;}
.y69{bottom:204.746667pt;}
.yb7{bottom:205.120000pt;}
.y34{bottom:205.173333pt;}
.y82{bottom:208.000000pt;}
.y3f{bottom:212.000000pt;}
.yd4{bottom:215.360000pt;}
.y68{bottom:222.986667pt;}
.y33{bottom:223.413333pt;}
.y100{bottom:226.240000pt;}
.ya1{bottom:227.840000pt;}
.ye5{bottom:230.720000pt;}
.yb6{bottom:232.640000pt;}
.y67{bottom:241.546667pt;}
.y32{bottom:241.973333pt;}
.yd3{bottom:242.880000pt;}
.y81{bottom:243.520000pt;}
.ya0{bottom:255.360000pt;}
.ye4{bottom:258.240000pt;}
.y66{bottom:259.786667pt;}
.yb5{bottom:260.160000pt;}
.y31{bottom:260.213333pt;}
.yff{bottom:269.760000pt;}
.yd2{bottom:270.720000pt;}
.y80{bottom:271.040000pt;}
.y65{bottom:278.346667pt;}
.y30{bottom:278.773333pt;}
.y9f{bottom:282.880000pt;}
.yb4{bottom:296.000000pt;}
.y64{bottom:296.586667pt;}
.y2f{bottom:297.013333pt;}
.yfe{bottom:297.280000pt;}
.y7f{bottom:298.560000pt;}
.ye3{bottom:301.760000pt;}
.y49{bottom:302.880000pt;}
.y9e{bottom:310.720000pt;}
.yd1{bottom:314.240000pt;}
.y63{bottom:315.146667pt;}
.y2e{bottom:315.573333pt;}
.y48{bottom:318.240000pt;}
.yfd{bottom:325.120000pt;}
.y7e{bottom:326.400000pt;}
.yb3{bottom:328.000000pt;}
.ye2{bottom:329.280000pt;}
.y62{bottom:333.386667pt;}
.y47{bottom:333.600000pt;}
.y2d{bottom:333.813333pt;}
.y9d{bottom:338.240000pt;}
.yc3{bottom:346.240000pt;}
.y46{bottom:348.960000pt;}
.yd0{bottom:349.760000pt;}
.y61{bottom:351.946667pt;}
.y2c{bottom:352.373333pt;}
.yfc{bottom:352.640000pt;}
.y7d{bottom:353.920000pt;}
.yb2{bottom:357.760000pt;}
.y45{bottom:364.320000pt;}
.y9c{bottom:365.760000pt;}
.y60{bottom:370.186667pt;}
.y2b{bottom:370.613333pt;}
.ye1{bottom:373.120000pt;}
.yc2{bottom:373.760000pt;}
.y44{bottom:379.680000pt;}
.y7c{bottom:381.440000pt;}
.yb1{bottom:385.280000pt;}
.y5f{bottom:388.746667pt;}
.y2a{bottom:389.173333pt;}
.y112{bottom:389.760000pt;}
.y43{bottom:395.040000pt;}
.yfb{bottom:396.160000pt;}
.ye0{bottom:400.640000pt;}
.y9b{bottom:401.280000pt;}
.y5e{bottom:406.986667pt;}
.y29{bottom:407.413333pt;}
.y7b{bottom:408.960000pt;}
.y42{bottom:410.400000pt;}
.yb0{bottom:413.120000pt;}
.y111{bottom:417.600000pt;}
.yfa{bottom:423.680000pt;}
.y5d{bottom:425.546667pt;}
.y41{bottom:425.760000pt;}
.y28{bottom:425.973333pt;}
.y9a{bottom:429.120000pt;}
.y7a{bottom:436.800000pt;}
.yaf{bottom:440.640000pt;}
.y40{bottom:441.120000pt;}
.y5c{bottom:443.786667pt;}
.ydf{bottom:444.160000pt;}
.y27{bottom:444.213333pt;}
.y110{bottom:445.440000pt;}
.yf9{bottom:451.200000pt;}
.y99{bottom:456.640000pt;}
.y26{bottom:462.773333pt;}
.y79{bottom:464.320000pt;}
.yc1{bottom:464.640000pt;}
.ycf{bottom:468.160000pt;}
.yde{bottom:471.680000pt;}
.y10f{bottom:473.280000pt;}
.yae{bottom:476.160000pt;}
.yf8{bottom:479.040000pt;}
.y25{bottom:481.013333pt;}
.y78{bottom:482.880000pt;}
.y98{bottom:484.160000pt;}
.yc0{bottom:492.160000pt;}
.yce{bottom:495.680000pt;}
.ydd{bottom:499.200000pt;}
.y24{bottom:499.573333pt;}
.y10e{bottom:501.120000pt;}
.yad{bottom:503.680000pt;}
.y77{bottom:510.400000pt;}
.y97{bottom:511.680000pt;}
.y23{bottom:517.813333pt;}
.ybf{bottom:519.680000pt;}
.yf7{bottom:522.560000pt;}
.y74{bottom:524.000000pt;}
.ydc{bottom:527.040000pt;}
.y10d{bottom:528.960000pt;}
.yac{bottom:531.200000pt;}
.y22{bottom:536.373333pt;}
.y96{bottom:547.200000pt;}
.yf6{bottom:550.080000pt;}
.y21{bottom:554.613333pt;}
.y10c{bottom:556.800000pt;}
.yab{bottom:559.040000pt;}
.y5b{bottom:561.333333pt;}
.ydb{bottom:570.560000pt;}
.y20{bottom:573.173333pt;}
.y95{bottom:575.040000pt;}
.y10b{bottom:584.640000pt;}
.ycd{bottom:586.560000pt;}
.y1f{bottom:591.413333pt;}
.yf5{bottom:593.600000pt;}
.yaa{bottom:594.560000pt;}
.yda{bottom:598.080000pt;}
.y94{bottom:602.560000pt;}
.y10a{bottom:612.480000pt;}
.ycc{bottom:614.080000pt;}
.yf4{bottom:621.440000pt;}
.ya9{bottom:622.080000pt;}
.yd9{bottom:625.600000pt;}
.y1e{bottom:625.973333pt;}
.y93{bottom:630.080000pt;}
.y109{bottom:640.320000pt;}
.ycb{bottom:641.600000pt;}
.ya8{bottom:649.600000pt;}
.y1d{bottom:653.173333pt;}
.y92{bottom:657.600000pt;}
.yf3{bottom:664.960000pt;}
.y15{bottom:665.333333pt;}
.ybe{bottom:665.600000pt;}
.y108{bottom:668.160000pt;}
.yca{bottom:669.440000pt;}
.y91{bottom:685.440000pt;}
.yf2{bottom:692.480000pt;}
.ybd{bottom:693.440000pt;}
.y107{bottom:696.320000pt;}
.yd8{bottom:704.960000pt;}
.y90{bottom:712.960000pt;}
.ybc{bottom:720.960000pt;}
.y106{bottom:724.160000pt;}
.yf1{bottom:736.000000pt;}
.ya7{bottom:740.480000pt;}
.y8f{bottom:748.480000pt;}
.y105{bottom:752.000000pt;}
.yf0{bottom:763.840000pt;}
.ya6{bottom:768.000000pt;}
.y8e{bottom:776.000000pt;}
.y104{bottom:779.840000pt;}
.yef{bottom:791.360000pt;}
.yc9{bottom:795.840000pt;}
.yf{bottom:797.333333pt;}
.y8d{bottom:803.840000pt;}
.yc8{bottom:823.360000pt;}
.y8c{bottom:831.360000pt;}
.yee{bottom:834.880000pt;}
.yc7{bottom:850.880000pt;}
.y8b{bottom:858.880000pt;}
.yed{bottom:862.400000pt;}
.y6{bottom:866.666667pt;}
.yc6{bottom:878.400000pt;}
.y8a{bottom:886.400000pt;}
.ybb{bottom:894.400000pt;}
.yec{bottom:906.240000pt;}
.y89{bottom:922.240000pt;}
.yeb{bottom:933.760000pt;}
.y88{bottom:949.760000pt;}
.yea{bottom:961.280000pt;}
.y87{bottom:977.280000pt;}
.y86{bottom:1004.800000pt;}
.y55{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y54{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y53{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h1e{height:3.412500pt;}
.h1f{height:11.090625pt;}
.h14{height:18.666667pt;}
.h17{height:21.333333pt;}
.h16{height:32.360625pt;}
.h1d{height:32.418750pt;}
.h4{height:36.955000pt;}
.h15{height:37.216250pt;}
.h12{height:37.327500pt;}
.h1c{height:38.666667pt;}
.ha{height:39.243750pt;}
.h9{height:40.882500pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.hf{height:43.812500pt;}
.h10{height:44.468750pt;}
.h19{height:48.000000pt;}
.he{height:50.305000pt;}
.hc{height:55.531250pt;}
.h1b{height:56.156250pt;}
.h1a{height:56.843750pt;}
.h6{height:64.320000pt;}
.h8{height:69.333333pt;}
.h7{height:74.949375pt;}
.h13{height:86.666667pt;}
.hb{height:132.000000pt;}
.h5{height:154.666667pt;}
.h11{height:454.666667pt;}
.h18{height:458.666667pt;}
.hd{height:670.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.333333pt;}
.w5{width:106.666667pt;}
.w2{width:221.333333pt;}
.w3{width:490.666667pt;}
.w6{width:592.000000pt;}
.w7{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:7.771819pt;}
.xa{left:11.778315pt;}
.x12{left:19.278635pt;}
.x9{left:27.677067pt;}
.xd{left:31.814123pt;}
.x8{left:33.316075pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.x16{left:49.000000pt;}
.x11{left:68.829419pt;}
.x10{left:76.509131pt;}
.xf{left:79.337259pt;}
.x15{left:95.266592pt;}
.x4{left:110.559915pt;}
.xc{left:153.511467pt;}
.x14{left:154.666667pt;}
.xe{left:179.347307pt;}
.x5{left:207.839851pt;}
.x7{left:257.333333pt;}
.x2{left:609.004800pt;}
.x13{left:721.333333pt;}
}




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