
    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_52639ad4a7bc712106404140.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886719;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_3d63abb1d387ad996684930e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.125000;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_28b8aaa04f33826fa43c0ca2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_e0f18dde8d3d72f4088beef0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_c80527a305bb523aa234ffa6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_a241d1e1f82f959f09d04a32.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_c4285871be72d958e3bc131e.woff2')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_b31839261c37a72e1dd100e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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_8c28665adf51cdff5826dc38.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fbcccfc438e6fb11f587147b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_43dde242d742045afcf39340.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.778238;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_20250238fe8881037083a0de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.862793;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_ccb79492629cfd002ff36629.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.717285;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_1b521e7618ed1a5159305c22.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904297;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_bce9fc39856e86114def58f4.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;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_99102fba578e21b481383825.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1fe3d6a492369a5aea93b03f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.979980;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_5242fe1624be92aa16cf98b0.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9695952de9a4c8a49d33a0b6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871094;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_2d11c52c58cba154ea2689d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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_bf1368a309ef6b991db7f988.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.909180;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:ff16;src:url('chunks/assets/font_7dbe53eac1c7e8476c72de4d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.696777;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.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,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);}
.m1{transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls12{letter-spacing:-15.768000px;}
.ls4{letter-spacing:-0.086400px;}
.ls3{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.057173px;}
.lsb{letter-spacing:-0.042880px;}
.ls18{letter-spacing:-0.034720px;}
.ls16{letter-spacing:-0.028933px;}
.lsc{letter-spacing:-0.028587px;}
.ls6{letter-spacing:-0.021600px;}
.lse{letter-spacing:-0.014293px;}
.ls17{letter-spacing:-0.011573px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006702px;}
.ls19{letter-spacing:0.011573px;}
.ls14{letter-spacing:0.017360px;}
.ls11{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.034720px;}
.lsa{letter-spacing:0.042880px;}
.ls5{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.046293px;}
.lsf{letter-spacing:0.057173px;}
.ls2{letter-spacing:0.064800px;}
.ls10{letter-spacing:0.071466px;}
.ls7{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.792000px;}
.ls9{letter-spacing:16.144841px;}
.ls13{letter-spacing:353.986133px;}
.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;}
}
.ws15{word-spacing:-80.064000px;}
.ws14{word-spacing:-70.056000px;}
.ws1e{word-spacing:-63.384000px;}
.ws1{word-spacing:-60.048000px;}
.ws7{word-spacing:-0.302400px;}
.ws2{word-spacing:-0.280800px;}
.ws5{word-spacing:-0.259200px;}
.ws9{word-spacing:-0.252000px;}
.wsa{word-spacing:-0.248967px;}
.ws13{word-spacing:-0.237600px;}
.ws8{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.214399px;}
.ws10{word-spacing:-0.200106px;}
.ws6{word-spacing:-0.194400px;}
.ws11{word-spacing:-0.185812px;}
.ws1d{word-spacing:-0.162027px;}
.ws3{word-spacing:-0.151200px;}
.wsb{word-spacing:-0.142933px;}
.ws4{word-spacing:-0.129600px;}
.wsf{word-spacing:-0.128639px;}
.ws1c{word-spacing:-0.121520px;}
.wsd{word-spacing:-0.114346px;}
.wsc{word-spacing:-0.100053px;}
.ws16{word-spacing:-0.086800px;}
.wse{word-spacing:-0.085760px;}
.ws1a{word-spacing:-0.075227px;}
.ws18{word-spacing:-0.057867px;}
.ws1b{word-spacing:-0.052080px;}
.ws19{word-spacing:-0.046293px;}
.ws17{word-spacing:-0.028933px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-43.228800px;}
._13{margin-left:-40.291200px;}
._1c{margin-left:-38.297400px;}
._18{margin-left:-36.850800px;}
._1a{margin-left:-35.355600px;}
._1{margin-left:-33.000000px;}
._21{margin-left:-31.800000px;}
._1d{margin-left:-30.218400px;}
._2{margin-left:-28.347000px;}
._22{margin-left:-27.316200px;}
._1b{margin-left:-25.174800px;}
._14{margin-left:-22.390800px;}
._4{margin-left:-20.428800px;}
._3{margin-left:-18.909000px;}
._1e{margin-left:-17.878800px;}
._c{margin-left:-16.710000px;}
._11{margin-left:-14.196600px;}
._20{margin-left:-12.677400px;}
._f{margin-left:-11.520000px;}
._12{margin-left:-8.380800px;}
._9{margin-left:-6.375600px;}
._0{margin-left:-4.719000px;}
._a{margin-left:-3.118200px;}
._d{margin-left:-2.008800px;}
._19{margin-left:-1.000528px;}
._17{width:1.014000px;}
._6{width:5.586000px;}
._8{width:7.408800px;}
._b{width:8.424000px;}
._16{width:9.834000px;}
._e{width:15.076800px;}
._5{width:18.635400px;}
._7{width:20.420400px;}
._1f{width:341.030820px;}
._15{width:1684.404060px;}
.fc6{color:rgb(0,45,153);}
.fc3{color:transparent;}
.fc5{color:rgb(77,77,77);}
.fc4{color:rgb(179,179,179);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(65,65,65);}
.fsa{font-size:57.866666px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:86.800000px;}
.fsb{font-size:115.733333px;}
.fs8{font-size:142.932600px;}
.fs4{font-size:216.000000px;}
.fs1{font-size:228.000000px;}
.fs7{font-size:248.966976px;}
.fs3{font-size:252.000000px;}
.fs5{font-size:288.000000px;}
.fs6{font-size:300.000000px;}
.fsc{font-size:318.000000px;}
.fs0{font-size:330.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.616500px;}
.y9{bottom:4.500000px;}
.ya{bottom:6.000000px;}
.y97{bottom:12.055350px;}
.y95{bottom:12.055650px;}
.ya8{bottom:13.155467px;}
.y99{bottom:21.699900px;}
.y25{bottom:22.500000px;}
.yad{bottom:24.000000px;}
.y6{bottom:25.500000px;}
.yb{bottom:30.000000px;}
.y8{bottom:33.000000px;}
.y11{bottom:45.000000px;}
.y91{bottom:62.688750px;}
.yb0{bottom:64.500000px;}
.y61{bottom:67.423815px;}
.y51{bottom:69.491350px;}
.y71{bottom:78.000000px;}
.y89{bottom:79.500000px;}
.y90{bottom:79.566450px;}
.y3c{bottom:80.250000px;}
.y93{bottom:89.211150px;}
.y36{bottom:91.500000px;}
.y8f{bottom:96.444300px;}
.y52{bottom:100.500000px;}
.y24{bottom:106.500000px;}
.ya0{bottom:108.506750px;}
.y31{bottom:109.500000px;}
.y60{bottom:113.082765px;}
.y8e{bottom:113.322150px;}
.y7f{bottom:114.000000px;}
.yac{bottom:115.500000px;}
.y5{bottom:121.500000px;}
.y8d{bottom:130.199850px;}
.y9f{bottom:133.823450px;}
.y70{bottom:139.500000px;}
.y88{bottom:141.000000px;}
.y3b{bottom:141.750000px;}
.y10{bottom:144.000000px;}
.y7b{bottom:145.500000px;}
.y5f{bottom:150.801165px;}
.y35{bottom:153.000000px;}
.yaf{bottom:154.500000px;}
.y4f{bottom:169.500000px;}
.y30{bottom:171.000000px;}
.y65{bottom:172.500000px;}
.y7e{bottom:175.500000px;}
.y23{bottom:190.500000px;}
.y5e{bottom:196.460115px;}
.y6f{bottom:201.000000px;}
.y3a{bottom:203.250000px;}
.y7a{bottom:207.000000px;}
.ya2{bottom:207.916700px;}
.yf{bottom:216.000000px;}
.y4{bottom:217.500000px;}
.ya1{bottom:233.233400px;}
.y5d{bottom:234.178365px;}
.y7d{bottom:237.000000px;}
.y9e{bottom:238.467950px;}
.y4e{bottom:241.500000px;}
.y1e{bottom:244.500000px;}
.y84{bottom:247.500000px;}
.y9d{bottom:263.784650px;}
.y21{bottom:274.500000px;}
.y5c{bottom:279.837465px;}
.y34{bottom:284.250000px;}
.y5b{bottom:285.792915px;}
.ye{bottom:288.000000px;}
.y9c{bottom:290.306750px;}
.y44{bottom:291.000000px;}
.y2f{bottom:293.250000px;}
.yae{bottom:295.500000px;}
.yab{bottom:298.500000px;}
.ya4{bottom:304.411700px;}
.y1d{bottom:306.000000px;}
.y8a{bottom:307.500000px;}
.y3{bottom:313.500000px;}
.y9b{bottom:315.623450px;}
.y22{bottom:316.500000px;}
.y39{bottom:320.250000px;}
.y5a{bottom:325.496415px;}
.ya3{bottom:329.728400px;}
.y20{bottom:336.000000px;}
.y7{bottom:340.500000px;}
.y33{bottom:345.750000px;}
.y2e{bottom:354.750000px;}
.yd{bottom:360.000000px;}
.y59{bottom:363.214815px;}
.y1c{bottom:367.500000px;}
.y6c{bottom:370.500000px;}
.y79{bottom:376.500000px;}
.y4d{bottom:381.000000px;}
.y38{bottom:381.750000px;}
.y64{bottom:384.000000px;}
.y43{bottom:387.000000px;}
.yaa{bottom:390.000000px;}
.y1f{bottom:397.500000px;}
.y83{bottom:400.500000px;}
.y6e{bottom:402.000000px;}
.y7c{bottom:406.500000px;}
.y32{bottom:407.250000px;}
.y58{bottom:408.873765px;}
.y2{bottom:409.500000px;}
.ya5{bottom:415.081733px;}
.y2d{bottom:416.250000px;}
.y1b{bottom:429.000000px;}
.yc{bottom:432.000000px;}
.y78{bottom:438.000000px;}
.ya6{bottom:441.422783px;}
.y37{bottom:443.250000px;}
.y57{bottom:446.592165px;}
.y4c{bottom:453.000000px;}
.y63{bottom:456.000000px;}
.y6d{bottom:463.500000px;}
.y75{bottom:467.250000px;}
.y82{bottom:472.500000px;}
.y42{bottom:483.000000px;}
.y1{bottom:486.000000px;}
.y56{bottom:492.251265px;}
.y6b{bottom:493.500000px;}
.y4b{bottom:525.000000px;}
.y62{bottom:528.000000px;}
.y55{bottom:529.969515px;}
.y2c{bottom:537.000000px;}
.y3e{bottom:545.250000px;}
.ya9{bottom:547.500000px;}
.y85{bottom:555.000000px;}
.y74{bottom:563.250000px;}
.y76{bottom:588.000000px;}
.ya7{bottom:593.322833px;}
.y2b{bottom:598.500000px;}
.y3d{bottom:606.750000px;}
.y8b{bottom:608.745800px;}
.y81{bottom:609.000000px;}
.y54{bottom:630.224265px;}
.y17{bottom:634.500000px;}
.y73{bottom:659.250000px;}
.y1a{bottom:664.500000px;}
.y53{bottom:667.942515px;}
.y6a{bottom:678.000000px;}
.y80{bottom:681.000000px;}
.y48{bottom:688.500000px;}
.y16{bottom:696.000000px;}
.y41{bottom:711.750000px;}
.y4a{bottom:724.500000px;}
.y19{bottom:726.000000px;}
.y8c{bottom:734.431050px;}
.y69{bottom:739.500000px;}
.y92{bottom:742.869750px;}
.y98{bottom:752.514300px;}
.y72{bottom:755.250000px;}
.y15{bottom:757.500000px;}
.y47{bottom:760.500000px;}
.y2a{bottom:762.000000px;}
.y96{bottom:763.364400px;}
.y18{bottom:787.500000px;}
.y94{bottom:795.914100px;}
.y49{bottom:796.500000px;}
.y40{bottom:800.250000px;}
.y14{bottom:819.000000px;}
.y46{bottom:831.000000px;}
.y28{bottom:882.000000px;}
.y68{bottom:888.750000px;}
.y50{bottom:894.000000px;}
.y3f{bottom:896.250000px;}
.y77{bottom:927.000000px;}
.y29{bottom:958.500000px;}
.y67{bottom:962.250000px;}
.y27{bottom:963.000000px;}
.y87{bottom:1000.500000px;}
.y13{bottom:1017.000000px;}
.y45{bottom:1035.000000px;}
.y66{bottom:1035.750000px;}
.y26{bottom:1044.000000px;}
.y86{bottom:1062.000000px;}
.y12{bottom:1078.500000px;}
.h5{height:22.500000px;}
.h21{height:24.111105px;}
.h20{height:24.111150px;}
.h22{height:34.961100px;}
.h24{height:40.094140px;}
.h1d{height:40.744010px;}
.h6{height:52.804688px;}
.h23{height:60.141211px;}
.h1b{height:60.268359px;}
.h1f{height:60.692187px;}
.h25{height:79.340625px;}
.h3{height:90.000000px;}
.h15{height:97.847415px;}
.h17{height:102.523432px;}
.h16{height:103.779676px;}
.h10{height:108.000000px;}
.h1e{height:108.499965px;}
.h1c{height:143.460930px;}
.h11{height:169.171875px;}
.h13{height:170.435401px;}
.h12{height:177.000000px;}
.hd{height:184.500000px;}
.h18{height:189.000000px;}
.h9{height:193.324219px;}
.h4{height:204.064453px;}
.h28{height:211.500000px;}
.h19{height:221.484375px;}
.hf{height:225.000000px;}
.h8{height:225.544922px;}
.he{height:247.500000px;}
.hb{height:253.125000px;}
.hc{height:257.765625px;}
.h27{height:279.181641px;}
.h2{height:289.716797px;}
.ha{height:297.000000px;}
.h26{height:564.000000px;}
.h1{height:639.000000px;}
.h1a{height:651.000000px;}
.h14{height:736.500000px;}
.h7{height:1152.000000px;}
.h0{height:1182.000000px;}
.wc{width:108.562500px;}
.wd{width:108.562545px;}
.wb{width:236.424900px;}
.w3{width:301.500000px;}
.wa{width:512.656200px;}
.w9{width:868.500000px;}
.w4{width:927.000000px;}
.w1{width:1248.000000px;}
.w2{width:1278.000000px;}
.we{width:1297.500000px;}
.w7{width:1381.500000px;}
.w5{width:1392.000000px;}
.w6{width:1402.500150px;}
.w8{width:1447.500000px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.x9{left:3.000000px;}
.xa{left:7.500000px;}
.x74{left:9.133200px;}
.x79{left:12.721350px;}
.x76{left:23.418600px;}
.x28{left:27.000000px;}
.x80{left:30.005639px;}
.x3c{left:31.885845px;}
.x7a{left:34.232400px;}
.x3b{left:35.794200px;}
.x25{left:37.435545px;}
.x36{left:43.894035px;}
.x45{left:48.568365px;}
.x4e{left:49.674316px;}
.x3a{left:52.500000px;}
.x62{left:55.500000px;}
.x81{left:57.739968px;}
.x7f{left:60.734978px;}
.x4{left:62.109735px;}
.x38{left:67.020990px;}
.x24{left:72.000000px;}
.x2f{left:76.107420px;}
.x35{left:78.116460px;}
.x30{left:82.107420px;}
.x10{left:85.500000px;}
.x1f{left:91.822260px;}
.x43{left:97.716795px;}
.x2a{left:99.196650px;}
.xb{left:102.656985px;}
.x20{left:104.953125px;}
.x87{left:106.500000px;}
.x5f{left:113.091795px;}
.xd{left:116.422845px;}
.x52{left:123.423330px;}
.x39{left:126.329595px;}
.x1{left:127.500000px;}
.x7{left:129.000000px;}
.x67{left:131.765625px;}
.x5e{left:138.409785px;}
.x31{left:141.459960px;}
.x54{left:143.670405px;}
.x3d{left:144.907500px;}
.x44{left:153.549315px;}
.x21{left:155.484375px;}
.xc{left:158.135745px;}
.x27{left:165.000000px;}
.x3e{left:170.711400px;}
.x2c{left:178.478025px;}
.x53{left:182.393550px;}
.x6d{left:190.790775px;}
.x6c{left:198.307590px;}
.x23{left:201.574215px;}
.x63{left:203.250000px;}
.x37{left:204.347190px;}
.x32{left:210.528750px;}
.x5{left:212.567550px;}
.x2d{left:222.406860px;}
.x85{left:227.528700px;}
.x2{left:240.121200px;}
.x22{left:248.595750px;}
.x66{left:250.945320px;}
.x8{left:254.208300px;}
.x4f{left:262.730041px;}
.x88{left:263.958300px;}
.x13{left:266.522460px;}
.x6f{left:271.500000px;}
.x12{left:276.726570px;}
.x1a{left:278.809575px;}
.x3{left:285.258600px;}
.x84{left:288.929968px;}
.xe{left:290.149590px;}
.x6{left:292.872000px;}
.x70{left:297.000000px;}
.x71{left:298.233150px;}
.x86{left:304.913100px;}
.x19{left:312.783690px;}
.x26{left:323.959050px;}
.x1b{left:326.257320px;}
.x7e{left:328.524802px;}
.x18{left:329.803710px;}
.x2b{left:348.079050px;}
.x61{left:354.345750px;}
.x11{left:355.643550px;}
.x82{left:360.988050px;}
.x5a{left:367.110345px;}
.x5b{left:369.246090px;}
.x14{left:381.971250px;}
.x7b{left:384.322649px;}
.x7c{left:387.148030px;}
.x7d{left:388.801912px;}
.x65{left:403.472152px;}
.x8a{left:429.405750px;}
.x72{left:430.492350px;}
.x5c{left:434.214840px;}
.x64{left:444.750000px;}
.x6e{left:475.382850px;}
.x60{left:572.501550px;}
.x55{left:589.866210px;}
.x77{left:604.192500px;}
.x56{left:613.754880px;}
.x83{left:614.884050px;}
.x73{left:616.254750px;}
.x51{left:617.399415px;}
.x89{left:648.750000px;}
.x75{left:680.185950px;}
.x50{left:683.436030px;}
.x68{left:705.092280px;}
.x2e{left:721.455300px;}
.x78{left:745.323600px;}
.x69{left:759.335445px;}
.x15{left:775.500000px;}
.x1c{left:788.626470px;}
.x29{left:792.000000px;}
.x16{left:795.290040px;}
.x3f{left:807.408900px;}
.x4b{left:810.105465px;}
.x48{left:817.565190px;}
.x49{left:823.256100px;}
.x4c{left:835.406985px;}
.x17{left:847.760745px;}
.x5d{left:862.344720px;}
.x46{left:874.107420px;}
.x1e{left:875.493165px;}
.x33{left:889.716795px;}
.x1d{left:906.922845px;}
.x6a{left:913.082550px;}
.xf{left:919.521300px;}
.x40{left:920.992800px;}
.x4a{left:930.276150px;}
.x6b{left:937.880850px;}
.x41{left:946.796850px;}
.x42{left:974.585550px;}
.x47{left:976.504350px;}
.x34{left:988.251000px;}
.x4d{left:1008.349350px;}
.x58{left:1042.803225px;}
.x59{left:1055.380365px;}
.x57{left:1077.041010px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-14.016000pt;}
.ls4{letter-spacing:-0.076800pt;}
.ls3{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.050820pt;}
.lsb{letter-spacing:-0.038115pt;}
.ls18{letter-spacing:-0.030862pt;}
.ls16{letter-spacing:-0.025719pt;}
.lsc{letter-spacing:-0.025410pt;}
.ls6{letter-spacing:-0.019200pt;}
.lse{letter-spacing:-0.012705pt;}
.ls17{letter-spacing:-0.010287pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005957pt;}
.ls19{letter-spacing:0.010287pt;}
.ls14{letter-spacing:0.015431pt;}
.ls11{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.030862pt;}
.lsa{letter-spacing:0.038115pt;}
.ls5{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.041150pt;}
.lsf{letter-spacing:0.050820pt;}
.ls2{letter-spacing:0.057600pt;}
.ls10{letter-spacing:0.063526pt;}
.ls7{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.704000pt;}
.ls9{letter-spacing:14.350969pt;}
.ls13{letter-spacing:314.654340pt;}
.ws15{word-spacing:-71.168000pt;}
.ws14{word-spacing:-62.272000pt;}
.ws1e{word-spacing:-56.341333pt;}
.ws1{word-spacing:-53.376000pt;}
.ws7{word-spacing:-0.268800pt;}
.ws2{word-spacing:-0.249600pt;}
.ws5{word-spacing:-0.230400pt;}
.ws9{word-spacing:-0.224000pt;}
.wsa{word-spacing:-0.221304pt;}
.ws13{word-spacing:-0.211200pt;}
.ws8{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.190577pt;}
.ws10{word-spacing:-0.177872pt;}
.ws6{word-spacing:-0.172800pt;}
.ws11{word-spacing:-0.165167pt;}
.ws1d{word-spacing:-0.144024pt;}
.ws3{word-spacing:-0.134400pt;}
.wsb{word-spacing:-0.127051pt;}
.ws4{word-spacing:-0.115200pt;}
.wsf{word-spacing:-0.114346pt;}
.ws1c{word-spacing:-0.108018pt;}
.wsd{word-spacing:-0.101641pt;}
.wsc{word-spacing:-0.088936pt;}
.ws16{word-spacing:-0.077156pt;}
.wse{word-spacing:-0.076231pt;}
.ws1a{word-spacing:-0.066868pt;}
.ws18{word-spacing:-0.051437pt;}
.ws1b{word-spacing:-0.046293pt;}
.ws19{word-spacing:-0.041150pt;}
.ws17{word-spacing:-0.025719pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-38.425600pt;}
._13{margin-left:-35.814400pt;}
._1c{margin-left:-34.042133pt;}
._18{margin-left:-32.756267pt;}
._1a{margin-left:-31.427200pt;}
._1{margin-left:-29.333333pt;}
._21{margin-left:-28.266667pt;}
._1d{margin-left:-26.860800pt;}
._2{margin-left:-25.197333pt;}
._22{margin-left:-24.281067pt;}
._1b{margin-left:-22.377600pt;}
._14{margin-left:-19.902933pt;}
._4{margin-left:-18.158933pt;}
._3{margin-left:-16.808000pt;}
._1e{margin-left:-15.892267pt;}
._c{margin-left:-14.853333pt;}
._11{margin-left:-12.619200pt;}
._20{margin-left:-11.268800pt;}
._f{margin-left:-10.240000pt;}
._12{margin-left:-7.449600pt;}
._9{margin-left:-5.667200pt;}
._0{margin-left:-4.194667pt;}
._a{margin-left:-2.771733pt;}
._d{margin-left:-1.785600pt;}
._19{margin-left:-0.889358pt;}
._17{width:0.901333pt;}
._6{width:4.965333pt;}
._8{width:6.585600pt;}
._b{width:7.488000pt;}
._16{width:8.741333pt;}
._e{width:13.401600pt;}
._5{width:16.564800pt;}
._7{width:18.151467pt;}
._1f{width:303.138507pt;}
._15{width:1497.248053pt;}
.fsa{font-size:51.437037pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:77.155555pt;}
.fsb{font-size:102.874074pt;}
.fs8{font-size:127.051200pt;}
.fs4{font-size:192.000000pt;}
.fs1{font-size:202.666667pt;}
.fs7{font-size:221.303979pt;}
.fs3{font-size:224.000000pt;}
.fs5{font-size:256.000000pt;}
.fs6{font-size:266.666667pt;}
.fsc{font-size:282.666667pt;}
.fs0{font-size:293.333333pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:3.214667pt;}
.y9{bottom:4.000000pt;}
.ya{bottom:5.333333pt;}
.y97{bottom:10.715867pt;}
.y95{bottom:10.716133pt;}
.ya8{bottom:11.693748pt;}
.y99{bottom:19.288800pt;}
.y25{bottom:20.000000pt;}
.yad{bottom:21.333333pt;}
.y6{bottom:22.666667pt;}
.yb{bottom:26.666667pt;}
.y8{bottom:29.333333pt;}
.y11{bottom:40.000000pt;}
.y91{bottom:55.723333pt;}
.yb0{bottom:57.333333pt;}
.y61{bottom:59.932280pt;}
.y51{bottom:61.770089pt;}
.y71{bottom:69.333333pt;}
.y89{bottom:70.666667pt;}
.y90{bottom:70.725733pt;}
.y3c{bottom:71.333333pt;}
.y93{bottom:79.298800pt;}
.y36{bottom:81.333333pt;}
.y8f{bottom:85.728267pt;}
.y52{bottom:89.333333pt;}
.y24{bottom:94.666667pt;}
.ya0{bottom:96.450445pt;}
.y31{bottom:97.333333pt;}
.y60{bottom:100.518013pt;}
.y8e{bottom:100.730800pt;}
.y7f{bottom:101.333333pt;}
.yac{bottom:102.666667pt;}
.y5{bottom:108.000000pt;}
.y8d{bottom:115.733200pt;}
.y9f{bottom:118.954178pt;}
.y70{bottom:124.000000pt;}
.y88{bottom:125.333333pt;}
.y3b{bottom:126.000000pt;}
.y10{bottom:128.000000pt;}
.y7b{bottom:129.333333pt;}
.y5f{bottom:134.045480pt;}
.y35{bottom:136.000000pt;}
.yaf{bottom:137.333333pt;}
.y4f{bottom:150.666667pt;}
.y30{bottom:152.000000pt;}
.y65{bottom:153.333333pt;}
.y7e{bottom:156.000000pt;}
.y23{bottom:169.333333pt;}
.y5e{bottom:174.631213pt;}
.y6f{bottom:178.666667pt;}
.y3a{bottom:180.666667pt;}
.y7a{bottom:184.000000pt;}
.ya2{bottom:184.814845pt;}
.yf{bottom:192.000000pt;}
.y4{bottom:193.333333pt;}
.ya1{bottom:207.318578pt;}
.y5d{bottom:208.158547pt;}
.y7d{bottom:210.666667pt;}
.y9e{bottom:211.971511pt;}
.y4e{bottom:214.666667pt;}
.y1e{bottom:217.333333pt;}
.y84{bottom:220.000000pt;}
.y9d{bottom:234.475245pt;}
.y21{bottom:244.000000pt;}
.y5c{bottom:248.744413pt;}
.y34{bottom:252.666667pt;}
.y5b{bottom:254.038147pt;}
.ye{bottom:256.000000pt;}
.y9c{bottom:258.050445pt;}
.y44{bottom:258.666667pt;}
.y2f{bottom:260.666667pt;}
.yae{bottom:262.666667pt;}
.yab{bottom:265.333333pt;}
.ya4{bottom:270.588178pt;}
.y1d{bottom:272.000000pt;}
.y8a{bottom:273.333333pt;}
.y3{bottom:278.666667pt;}
.y9b{bottom:280.554178pt;}
.y22{bottom:281.333333pt;}
.y39{bottom:284.666667pt;}
.y5a{bottom:289.330147pt;}
.ya3{bottom:293.091911pt;}
.y20{bottom:298.666667pt;}
.y7{bottom:302.666667pt;}
.y33{bottom:307.333333pt;}
.y2e{bottom:315.333333pt;}
.yd{bottom:320.000000pt;}
.y59{bottom:322.857613pt;}
.y1c{bottom:326.666667pt;}
.y6c{bottom:329.333333pt;}
.y79{bottom:334.666667pt;}
.y4d{bottom:338.666667pt;}
.y38{bottom:339.333333pt;}
.y64{bottom:341.333333pt;}
.y43{bottom:344.000000pt;}
.yaa{bottom:346.666667pt;}
.y1f{bottom:353.333333pt;}
.y83{bottom:356.000000pt;}
.y6e{bottom:357.333333pt;}
.y7c{bottom:361.333333pt;}
.y32{bottom:362.000000pt;}
.y58{bottom:363.443347pt;}
.y2{bottom:364.000000pt;}
.ya5{bottom:368.961541pt;}
.y2d{bottom:370.000000pt;}
.y1b{bottom:381.333333pt;}
.yc{bottom:384.000000pt;}
.y78{bottom:389.333333pt;}
.ya6{bottom:392.375807pt;}
.y37{bottom:394.000000pt;}
.y57{bottom:396.970813pt;}
.y4c{bottom:402.666667pt;}
.y63{bottom:405.333333pt;}
.y6d{bottom:412.000000pt;}
.y75{bottom:415.333333pt;}
.y82{bottom:420.000000pt;}
.y42{bottom:429.333333pt;}
.y1{bottom:432.000000pt;}
.y56{bottom:437.556680pt;}
.y6b{bottom:438.666667pt;}
.y4b{bottom:466.666667pt;}
.y62{bottom:469.333333pt;}
.y55{bottom:471.084013pt;}
.y2c{bottom:477.333333pt;}
.y3e{bottom:484.666667pt;}
.ya9{bottom:486.666667pt;}
.y85{bottom:493.333333pt;}
.y74{bottom:500.666667pt;}
.y76{bottom:522.666667pt;}
.ya7{bottom:527.398074pt;}
.y2b{bottom:532.000000pt;}
.y3d{bottom:539.333333pt;}
.y8b{bottom:541.107378pt;}
.y81{bottom:541.333333pt;}
.y54{bottom:560.199347pt;}
.y17{bottom:564.000000pt;}
.y73{bottom:586.000000pt;}
.y1a{bottom:590.666667pt;}
.y53{bottom:593.726680pt;}
.y6a{bottom:602.666667pt;}
.y80{bottom:605.333333pt;}
.y48{bottom:612.000000pt;}
.y16{bottom:618.666667pt;}
.y41{bottom:632.666667pt;}
.y4a{bottom:644.000000pt;}
.y19{bottom:645.333333pt;}
.y8c{bottom:652.827600pt;}
.y69{bottom:657.333333pt;}
.y92{bottom:660.328667pt;}
.y98{bottom:668.901600pt;}
.y72{bottom:671.333333pt;}
.y15{bottom:673.333333pt;}
.y47{bottom:676.000000pt;}
.y2a{bottom:677.333333pt;}
.y96{bottom:678.546133pt;}
.y18{bottom:700.000000pt;}
.y94{bottom:707.479200pt;}
.y49{bottom:708.000000pt;}
.y40{bottom:711.333333pt;}
.y14{bottom:728.000000pt;}
.y46{bottom:738.666667pt;}
.y28{bottom:784.000000pt;}
.y68{bottom:790.000000pt;}
.y50{bottom:794.666667pt;}
.y3f{bottom:796.666667pt;}
.y77{bottom:824.000000pt;}
.y29{bottom:852.000000pt;}
.y67{bottom:855.333333pt;}
.y27{bottom:856.000000pt;}
.y87{bottom:889.333333pt;}
.y13{bottom:904.000000pt;}
.y45{bottom:920.000000pt;}
.y66{bottom:920.666667pt;}
.y26{bottom:928.000000pt;}
.y86{bottom:944.000000pt;}
.y12{bottom:958.666667pt;}
.h5{height:20.000000pt;}
.h21{height:21.432093pt;}
.h20{height:21.432133pt;}
.h22{height:31.076533pt;}
.h24{height:35.639236pt;}
.h1d{height:36.216898pt;}
.h6{height:46.937500pt;}
.h23{height:53.458854pt;}
.h1b{height:53.571875pt;}
.h1f{height:53.948611pt;}
.h25{height:70.525000pt;}
.h3{height:80.000000pt;}
.h15{height:86.975480pt;}
.h17{height:91.131940pt;}
.h16{height:92.248601pt;}
.h10{height:96.000000pt;}
.h1e{height:96.444413pt;}
.h1c{height:127.520827pt;}
.h11{height:150.375000pt;}
.h13{height:151.498134pt;}
.h12{height:157.333333pt;}
.hd{height:164.000000pt;}
.h18{height:168.000000pt;}
.h9{height:171.843750pt;}
.h4{height:181.390625pt;}
.h28{height:188.000000pt;}
.h19{height:196.875000pt;}
.hf{height:200.000000pt;}
.h8{height:200.484375pt;}
.he{height:220.000000pt;}
.hb{height:225.000000pt;}
.hc{height:229.125000pt;}
.h27{height:248.161458pt;}
.h2{height:257.526042pt;}
.ha{height:264.000000pt;}
.h26{height:501.333333pt;}
.h1{height:568.000000pt;}
.h1a{height:578.666667pt;}
.h14{height:654.666667pt;}
.h7{height:1024.000000pt;}
.h0{height:1050.666667pt;}
.wc{width:96.500000pt;}
.wd{width:96.500040pt;}
.wb{width:210.155467pt;}
.w3{width:268.000000pt;}
.wa{width:455.694400pt;}
.w9{width:772.000000pt;}
.w4{width:824.000000pt;}
.w1{width:1109.333333pt;}
.w2{width:1136.000000pt;}
.we{width:1153.333333pt;}
.w7{width:1228.000000pt;}
.w5{width:1237.333333pt;}
.w6{width:1246.666800pt;}
.w8{width:1286.666667pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x9{left:2.666667pt;}
.xa{left:6.666667pt;}
.x74{left:8.118400pt;}
.x79{left:11.307867pt;}
.x76{left:20.816533pt;}
.x28{left:24.000000pt;}
.x80{left:26.671679pt;}
.x3c{left:28.342973pt;}
.x7a{left:30.428800pt;}
.x3b{left:31.817067pt;}
.x25{left:33.276040pt;}
.x36{left:39.016920pt;}
.x45{left:43.171880pt;}
.x4e{left:44.154948pt;}
.x3a{left:46.666667pt;}
.x62{left:49.333333pt;}
.x81{left:51.324416pt;}
.x7f{left:53.986647pt;}
.x4{left:55.208653pt;}
.x38{left:59.574213pt;}
.x24{left:64.000000pt;}
.x2f{left:67.651040pt;}
.x35{left:69.436853pt;}
.x30{left:72.984373pt;}
.x10{left:76.000000pt;}
.x1f{left:81.619787pt;}
.x43{left:86.859373pt;}
.x2a{left:88.174800pt;}
.xb{left:91.250653pt;}
.x20{left:93.291667pt;}
.x87{left:94.666667pt;}
.x5f{left:100.526040pt;}
.xd{left:103.486973pt;}
.x52{left:109.709627pt;}
.x39{left:112.292973pt;}
.x1{left:113.333333pt;}
.x7{left:114.666667pt;}
.x67{left:117.125000pt;}
.x5e{left:123.030920pt;}
.x31{left:125.742187pt;}
.x54{left:127.707027pt;}
.x3d{left:128.806667pt;}
.x44{left:136.488280pt;}
.x21{left:138.208333pt;}
.xc{left:140.565107pt;}
.x27{left:146.666667pt;}
.x3e{left:151.743467pt;}
.x2c{left:158.647133pt;}
.x53{left:162.127600pt;}
.x6d{left:169.591800pt;}
.x6c{left:176.273413pt;}
.x23{left:179.177080pt;}
.x63{left:180.666667pt;}
.x37{left:181.641947pt;}
.x32{left:187.136667pt;}
.x5{left:188.948933pt;}
.x2d{left:197.694987pt;}
.x85{left:202.247733pt;}
.x2{left:213.441067pt;}
.x22{left:220.974000pt;}
.x66{left:223.062507pt;}
.x8{left:225.962933pt;}
.x4f{left:233.537815pt;}
.x88{left:234.629600pt;}
.x13{left:236.908853pt;}
.x6f{left:241.333333pt;}
.x12{left:245.979173pt;}
.x1a{left:247.830733pt;}
.x3{left:253.563200pt;}
.x84{left:256.826638pt;}
.xe{left:257.910747pt;}
.x6{left:260.330667pt;}
.x70{left:264.000000pt;}
.x71{left:265.096133pt;}
.x86{left:271.033867pt;}
.x19{left:278.029947pt;}
.x26{left:287.963600pt;}
.x1b{left:290.006507pt;}
.x7e{left:292.022046pt;}
.x18{left:293.158853pt;}
.x2b{left:309.403600pt;}
.x61{left:314.974000pt;}
.x11{left:316.127600pt;}
.x82{left:320.878267pt;}
.x5a{left:326.320307pt;}
.x5b{left:328.218747pt;}
.x14{left:339.530000pt;}
.x7b{left:341.620132pt;}
.x7c{left:344.131582pt;}
.x7d{left:345.601700pt;}
.x65{left:358.641913pt;}
.x8a{left:381.694000pt;}
.x72{left:382.659867pt;}
.x5c{left:385.968747pt;}
.x64{left:395.333333pt;}
.x6e{left:422.562533pt;}
.x60{left:508.890267pt;}
.x55{left:524.325520pt;}
.x77{left:537.060000pt;}
.x56{left:545.559893pt;}
.x83{left:546.563600pt;}
.x73{left:547.782000pt;}
.x51{left:548.799480pt;}
.x89{left:576.666667pt;}
.x75{left:604.609733pt;}
.x50{left:607.498693pt;}
.x68{left:626.748693pt;}
.x2e{left:641.293600pt;}
.x78{left:662.509867pt;}
.x69{left:674.964840pt;}
.x15{left:689.333333pt;}
.x1c{left:701.001307pt;}
.x29{left:704.000000pt;}
.x16{left:706.924480pt;}
.x3f{left:717.696800pt;}
.x4b{left:720.093747pt;}
.x48{left:726.724613pt;}
.x49{left:731.783200pt;}
.x4c{left:742.583987pt;}
.x17{left:753.565107pt;}
.x5d{left:766.528640pt;}
.x46{left:776.984373pt;}
.x1e{left:778.216147pt;}
.x33{left:790.859373pt;}
.x1d{left:806.153640pt;}
.x6a{left:811.628933pt;}
.xf{left:817.352267pt;}
.x40{left:818.660267pt;}
.x4a{left:826.912133pt;}
.x6b{left:833.671867pt;}
.x41{left:841.597200pt;}
.x42{left:866.298267pt;}
.x47{left:868.003867pt;}
.x34{left:878.445333pt;}
.x4d{left:896.310533pt;}
.x58{left:926.936200pt;}
.x59{left:938.115880pt;}
.x57{left:957.369787pt;}
}




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