
    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_57b563fd29a5faddc06b0156.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005859;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_f8911406196cb947d60b2370.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057129;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_251111687f39e0ad8af320fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_98158282d7a5920cf000078b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_d309d27a65bf48732148c655.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042480;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_ed2ea970d042b488440f6396.woff2')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_a48c14146959578006bbe47a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710449;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_d3c89cf0d0c420726bbfa84f.woff2')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_82dd78e0189d5ca8ad75e260.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977051;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_8b793b4a809308629fa5832d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.054688;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_ecd46a4ab97897a189990550.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056641;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_54d38a53ad3bfbe68f3335af.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.054688;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_cfe5b5b2faac2d23e487f706.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.007812;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_75f483f958ef40acdb49aae0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.977051;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_80092161100740e5745a1662.woff2')format("woff");}.fff{font-family:fff;line-height:1.057129;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_1ec6ff82c4ed790e22d5e036.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008789;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:13.896486px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:-0.010393px;}
.ls15{letter-spacing:-0.006000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000399px;}
.ls3{letter-spacing:0.008000px;}
.ls5{letter-spacing:0.010393px;}
.ls9{letter-spacing:0.010846px;}
.ls7{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.016800px;}
.lsb{letter-spacing:0.024000px;}
.lse{letter-spacing:0.438000px;}
.lsf{letter-spacing:0.450000px;}
.ls11{letter-spacing:0.480000px;}
.lsa{letter-spacing:1.050000px;}
.ls4{letter-spacing:1.806000px;}
.lsd{letter-spacing:2.586000px;}
.lsc{letter-spacing:2.592000px;}
.ls10{letter-spacing:13.212000px;}
.ls12{letter-spacing:17.334000px;}
.ls14{letter-spacing:17.344020px;}
.ls13{letter-spacing:17.346000px;}
.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;}
}
.wse{word-spacing:-32.346000px;}
.ws11{word-spacing:-32.334000px;}
.wsf{word-spacing:-28.212000px;}
.wsb{word-spacing:-17.592000px;}
.wsc{word-spacing:-17.586000px;}
.ws10{word-spacing:-15.480000px;}
.wsd{word-spacing:-15.450000px;}
.ws0{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.994000px;}
.ws8{word-spacing:-14.988000px;}
.wsa{word-spacing:-13.557616px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.002229px;}
.ws5{word-spacing:-12.991836px;}
.ws7{word-spacing:-12.981443px;}
.ws9{word-spacing:-12.963149px;}
.ws1{word-spacing:-10.008001px;}
.ws2{word-spacing:-10.000001px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-17.304480px;}
._1f{margin-left:-13.212000px;}
._1b{margin-left:-7.482000px;}
._1{margin-left:-5.880000px;}
._3{margin-left:-4.521000px;}
._a{margin-left:-3.368040px;}
._7{margin-left:-2.188020px;}
._0{margin-left:-1.062000px;}
._2{width:1.092000px;}
._5{width:2.720400px;}
._6{width:4.397597px;}
._4{width:5.451600px;}
._9{width:7.443120px;}
._8{width:9.037680px;}
._b{width:10.905540px;}
._c{width:11.994420px;}
._13{width:13.751580px;}
._14{width:16.032000px;}
._19{width:17.670000px;}
._12{width:19.422000px;}
._11{width:20.778000px;}
._16{width:21.996000px;}
._e{width:23.514000px;}
._18{width:24.552000px;}
._d{width:25.740000px;}
._f{width:26.976000px;}
._17{width:28.308000px;}
._15{width:29.556000px;}
._10{width:30.972000px;}
._1a{width:32.511608px;}
._21{width:36.360000px;}
._1e{width:38.700000px;}
._1c{width:40.039200px;}
._22{width:53.660340px;}
._1d{width:55.938420px;}
.fc2{color:transparent;}
.fc1{color:rgb(227,142,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:40.000002px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.852594px;}
.fs5{font-size:51.967344px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:54.230466px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yca{bottom:3.595200px;}
.y82{bottom:3.603150px;}
.ydb{bottom:3.760050px;}
.ye1{bottom:3.760200px;}
.y37{bottom:6.628410px;}
.y39{bottom:7.050000px;}
.y6{bottom:8.285550px;}
.y6e{bottom:8.345100px;}
.y97{bottom:8.410050px;}
.yeb{bottom:8.640900px;}
.yd5{bottom:8.708700px;}
.yee{bottom:11.487900px;}
.y69{bottom:11.660160px;}
.y6b{bottom:11.914050px;}
.y7b{bottom:13.087200px;}
.ye9{bottom:13.657200px;}
.ya4{bottom:14.256495px;}
.y33{bottom:16.160160px;}
.y105{bottom:17.660160px;}
.ycc{bottom:18.762000px;}
.yc9{bottom:18.762150px;}
.y8d{bottom:18.803550px;}
.y81{bottom:18.803700px;}
.yda{bottom:19.622400px;}
.ye0{bottom:19.622550px;}
.yd3{bottom:20.660160px;}
.y96{bottom:23.610600px;}
.yea{bottom:24.503250px;}
.yf0{bottom:26.943600px;}
.yed{bottom:27.350250px;}
.y7a{bottom:28.287750px;}
.y91{bottom:29.326950px;}
.ya3{bottom:29.456940px;}
.yf8{bottom:31.048950px;}
.y68{bottom:31.160160px;}
.yc8{bottom:33.928950px;}
.y8c{bottom:34.003950px;}
.y80{bottom:34.004100px;}
.yde{bottom:35.484750px;}
.yd9{bottom:35.484900px;}
.y32{bottom:35.660160px;}
.y104{bottom:37.160160px;}
.y36{bottom:37.905765px;}
.y95{bottom:38.811000px;}
.yd2{bottom:40.160160px;}
.yc5{bottom:42.679050px;}
.y79{bottom:43.488150px;}
.y90{bottom:44.527350px;}
.ya2{bottom:44.657340px;}
.yf7{bottom:46.911300px;}
.yc7{bottom:49.095900px;}
.y7f{bottom:49.204500px;}
.y67{bottom:50.660190px;}
.ydd{bottom:51.347250px;}
.ydf{bottom:51.347400px;}
.ye6{bottom:52.364100px;}
.y94{bottom:54.011400px;}
.y31{bottom:55.160190px;}
.y103{bottom:56.660190px;}
.yc4{bottom:57.846000px;}
.y78{bottom:58.688550px;}
.yd1{bottom:59.660190px;}
.y8f{bottom:59.727900px;}
.y38{bottom:59.729520px;}
.ye3{bottom:60.092100px;}
.y35{bottom:60.479235px;}
.yf6{bottom:62.773800px;}
.ya0{bottom:63.040740px;}
.ycb{bottom:64.262700px;}
.y8b{bottom:64.404900px;}
.y7e{bottom:64.405050px;}
.y93{bottom:69.211950px;}
.y66{bottom:70.160190px;}
.yc3{bottom:73.012800px;}
.y87{bottom:73.694100px;}
.yf2{bottom:73.823250px;}
.y77{bottom:73.889100px;}
.y30{bottom:74.660190px;}
.y102{bottom:76.160190px;}
.y4{bottom:76.536300px;}
.y9f{bottom:78.241290px;}
.yf5{bottom:78.636150px;}
.yd0{bottom:79.160190px;}
.y8a{bottom:79.605300px;}
.y7d{bottom:79.605450px;}
.y92{bottom:84.412350px;}
.y73{bottom:85.386750px;}
.yd7{bottom:85.512600px;}
.yc2{bottom:88.179750px;}
.y86{bottom:88.894500px;}
.y76{bottom:89.089500px;}
.y9a{bottom:89.349150px;}
.y65{bottom:89.660190px;}
.y9e{bottom:93.441690px;}
.y2f{bottom:94.160190px;}
.yf4{bottom:94.498500px;}
.y7c{bottom:94.805850px;}
.y101{bottom:95.660190px;}
.y3{bottom:96.036300px;}
.ycf{bottom:98.660190px;}
.y72{bottom:100.587300px;}
.y85{bottom:104.095050px;}
.y75{bottom:104.289900px;}
.y99{bottom:104.549700px;}
.y10a{bottom:106.828140px;}
.y7{bottom:108.685410px;}
.y64{bottom:109.160190px;}
.y89{bottom:110.006250px;}
.y9d{bottom:113.373060px;}
.y2e{bottom:113.660190px;}
.y100{bottom:115.160190px;}
.y2{bottom:115.536300px;}
.y71{bottom:115.787700px;}
.yce{bottom:118.160190px;}
.y84{bottom:119.295450px;}
.y109{bottom:123.328140px;}
.y63{bottom:128.660190px;}
.y70{bottom:130.988100px;}
.y2d{bottom:133.160190px;}
.yff{bottom:134.660190px;}
.ycd{bottom:137.660190px;}
.y108{bottom:139.828140px;}
.y62{bottom:148.160190px;}
.y2c{bottom:152.660190px;}
.yfe{bottom:154.160190px;}
.y107{bottom:156.328140px;}
.y61{bottom:167.660190px;}
.ya1{bottom:171.771300px;}
.y2b{bottom:172.160190px;}
.y106{bottom:172.828140px;}
.yfd{bottom:173.660190px;}
.y60{bottom:187.160190px;}
.y34{bottom:191.660190px;}
.yfc{bottom:193.160190px;}
.y5f{bottom:206.660190px;}
.y2a{bottom:211.160190px;}
.y5e{bottom:226.160190px;}
.ybe{bottom:230.660190px;}
.yfb{bottom:232.160190px;}
.y5d{bottom:245.660190px;}
.ybd{bottom:250.160190px;}
.y5c{bottom:265.160190px;}
.y29{bottom:269.244090px;}
.ybc{bottom:269.660190px;}
.yfa{bottom:271.160190px;}
.y98{bottom:280.318200px;}
.y5b{bottom:284.660190px;}
.yf1{bottom:284.722050px;}
.y28{bottom:285.744090px;}
.ybb{bottom:289.160190px;}
.y27{bottom:302.244090px;}
.y5a{bottom:304.160190px;}
.yf9{bottom:305.660190px;}
.yba{bottom:308.660190px;}
.y26{bottom:318.744090px;}
.y59{bottom:323.660190px;}
.yb9{bottom:328.160190px;}
.y25{bottom:335.244090px;}
.y58{bottom:343.160190px;}
.yb8{bottom:347.660190px;}
.y24{bottom:351.744090px;}
.y57{bottom:362.660190px;}
.yb7{bottom:367.160190px;}
.y23{bottom:368.244090px;}
.y9c{bottom:373.664400px;}
.y56{bottom:382.160190px;}
.y22{bottom:384.744090px;}
.yb6{bottom:386.660190px;}
.yf3{bottom:393.559950px;}
.y6a{bottom:393.883500px;}
.y21{bottom:401.244090px;}
.y55{bottom:401.660190px;}
.yb5{bottom:406.160190px;}
.y20{bottom:417.744090px;}
.y54{bottom:421.160190px;}
.yb4{bottom:425.660190px;}
.y1f{bottom:434.244090px;}
.y9b{bottom:436.609950px;}
.y53{bottom:440.660190px;}
.yef{bottom:443.384250px;}
.yb3{bottom:445.160190px;}
.y1e{bottom:450.744090px;}
.y52{bottom:460.160190px;}
.yb2{bottom:464.660190px;}
.y1d{bottom:467.244090px;}
.y51{bottom:479.660190px;}
.y1c{bottom:483.744090px;}
.yb1{bottom:484.160190px;}
.y8e{bottom:484.354950px;}
.y50{bottom:499.160190px;}
.y1b{bottom:500.244090px;}
.yc0{bottom:503.660190px;}
.yec{bottom:509.070900px;}
.y1a{bottom:516.744090px;}
.y4f{bottom:518.660190px;}
.yb0{bottom:523.160190px;}
.y19{bottom:533.244090px;}
.y4e{bottom:538.160190px;}
.ybf{bottom:542.660190px;}
.y18{bottom:549.744090px;}
.y4d{bottom:557.660190px;}
.ye8{bottom:558.895050px;}
.yaf{bottom:562.160190px;}
.y17{bottom:566.244090px;}
.y4c{bottom:577.160190px;}
.yae{bottom:581.660190px;}
.y83{bottom:582.508200px;}
.y16{bottom:582.744090px;}
.y4b{bottom:596.660190px;}
.ye5{bottom:597.737700px;}
.y15{bottom:599.244090px;}
.yad{bottom:601.160190px;}
.y14{bottom:615.744090px;}
.y4a{bottom:616.160190px;}
.yac{bottom:620.660190px;}
.y49{bottom:635.660190px;}
.yab{bottom:640.160190px;}
.ye7{bottom:647.561850px;}
.y48{bottom:655.160190px;}
.yaa{bottom:659.660190px;}
.y88{bottom:660.654150px;}
.y13{bottom:672.328140px;}
.y47{bottom:674.660190px;}
.ya9{bottom:679.160190px;}
.y12{bottom:688.828140px;}
.y46{bottom:694.160190px;}
.ya8{bottom:698.660190px;}
.y11{bottom:705.328140px;}
.ye2{bottom:713.248500px;}
.y45{bottom:713.660190px;}
.ya7{bottom:718.160190px;}
.y10{bottom:721.828140px;}
.y44{bottom:733.160190px;}
.ya6{bottom:737.660190px;}
.yf{bottom:738.328140px;}
.y43{bottom:752.660190px;}
.ye{bottom:754.828140px;}
.ya5{bottom:757.160190px;}
.y42{bottom:772.160190px;}
.ye4{bottom:778.935150px;}
.y6f{bottom:784.401300px;}
.yd{bottom:791.660190px;}
.yc{bottom:811.160190px;}
.y41{bottom:830.660190px;}
.yd6{bottom:844.621800px;}
.y40{bottom:850.160190px;}
.yb{bottom:851.824290px;}
.y3f{bottom:869.660190px;}
.ya{bottom:880.324290px;}
.y3e{bottom:889.160190px;}
.y74{bottom:892.948050px;}
.yc1{bottom:902.881500px;}
.y3d{bottom:908.660190px;}
.y9{bottom:908.824290px;}
.ydc{bottom:910.308600px;}
.y3c{bottom:928.160190px;}
.y3b{bottom:947.660190px;}
.y3a{bottom:967.160190px;}
.y8{bottom:969.253440px;}
.yd8{bottom:975.995250px;}
.yc6{bottom:980.854800px;}
.y6d{bottom:1010.979000px;}
.yd4{bottom:1025.819400px;}
.y6c{bottom:1057.931550px;}
.y1{bottom:1078.809300px;}
.y5{bottom:1147.060050px;}
.hd{height:22.050000px;}
.hf{height:23.100585px;}
.h12{height:25.528950px;}
.h29{height:26.640720px;}
.hc{height:31.992188px;}
.he{height:32.976562px;}
.h11{height:33.253905px;}
.h13{height:37.376903px;}
.h9{height:37.429688px;}
.h27{height:37.952655px;}
.h32{height:38.368050px;}
.h2a{height:39.004627px;}
.h2e{height:39.693100px;}
.h25{height:40.307290px;}
.h15{height:40.396490px;}
.h17{height:40.523363px;}
.ha{height:42.108398px;}
.h2c{height:42.288112px;}
.h7{height:42.444000px;}
.h3{height:43.916016px;}
.h4{height:46.787109px;}
.h1e{height:47.290275px;}
.h2d{height:49.349730px;}
.hb{height:51.622560px;}
.h22{height:57.943590px;}
.h26{height:62.352750px;}
.h1f{height:62.490735px;}
.h2f{height:65.212140px;}
.h8{height:65.501953px;}
.h5{height:66.750735px;}
.h28{height:77.519625px;}
.h1b{height:77.691180px;}
.h20{height:92.891625px;}
.h1c{height:97.698600px;}
.h18{height:108.092070px;}
.h34{height:108.363480px;}
.h31{height:115.036380px;}
.h16{height:117.576105px;}
.h1a{height:123.292515px;}
.h30{height:130.898790px;}
.h2{height:135.001470px;}
.h24{height:140.326095px;}
.h33{height:158.187750px;}
.h21{height:166.490400px;}
.h2b{height:180.723000px;}
.h19{height:201.438450px;}
.h1d{height:203.582100px;}
.h14{height:226.122900px;}
.h23{height:982.500000px;}
.h6{height:986.431800px;}
.h10{height:986.625300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:21.750000px;}
.w3{width:25.875735px;}
.we{width:107.762745px;}
.wa{width:108.001215px;}
.w12{width:117.048675px;}
.wf{width:124.463415px;}
.wb{width:124.738845px;}
.w13{width:137.626365px;}
.w14{width:171.648900px;}
.w10{width:191.814600px;}
.wc{width:192.238950px;}
.w15{width:195.941550px;}
.w11{width:198.377250px;}
.wd{width:198.816300px;}
.w7{width:206.833050px;}
.w2{width:310.366800px;}
.w5{width:432.526650px;}
.w9{width:722.841300px;}
.w8{width:731.092050px;}
.w16{width:732.730800px;}
.w4{width:734.392350px;}
.w17{width:736.090200px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.529905px;}
.x4{left:6.750300px;}
.x1d{left:10.178535px;}
.x2{left:12.376095px;}
.x27{left:13.537650px;}
.x1e{left:14.615940px;}
.x23{left:16.335150px;}
.x24{left:17.577900px;}
.x22{left:19.300800px;}
.x30{left:20.371200px;}
.x1f{left:21.540075px;}
.x21{left:23.084850px;}
.x31{left:24.178650px;}
.x2d{left:25.879125px;}
.x18{left:27.016200px;}
.xd{left:28.570680px;}
.x16{left:30.544875px;}
.x20{left:32.533575px;}
.x2e{left:34.489050px;}
.x6{left:35.539290px;}
.xc{left:37.800300px;}
.x25{left:40.040850px;}
.x29{left:42.152100px;}
.x38{left:44.224800px;}
.x2a{left:46.895250px;}
.x2b{left:48.243750px;}
.x35{left:52.102800px;}
.x3a{left:54.666450px;}
.x1a{left:56.255850px;}
.x1c{left:57.910950px;}
.x34{left:61.242000px;}
.x33{left:62.560950px;}
.x2c{left:64.844550px;}
.x26{left:67.908600px;}
.x32{left:70.909800px;}
.x1{left:72.663270px;}
.x28{left:74.683650px;}
.x12{left:75.871260px;}
.x2f{left:77.871450px;}
.x5{left:79.263855px;}
.x9{left:81.509460px;}
.x13{left:85.039380px;}
.x11{left:93.039390px;}
.x14{left:121.354770px;}
.x3b{left:129.147720px;}
.x15{left:133.878975px;}
.x17{left:242.334900px;}
.x36{left:252.081300px;}
.x19{left:367.528500px;}
.xe{left:383.617095px;}
.x7{left:385.267245px;}
.x37{left:390.182250px;}
.x10{left:404.876940px;}
.xf{left:408.062295px;}
.x8{left:409.712445px;}
.x3{left:439.709700px;}
.x1b{left:560.222250px;}
.x39{left:562.305600px;}
.xb{left:604.347900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.352432pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:-0.009239pt;}
.ls15{letter-spacing:-0.005333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000355pt;}
.ls3{letter-spacing:0.007111pt;}
.ls5{letter-spacing:0.009239pt;}
.ls9{letter-spacing:0.009641pt;}
.ls7{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.014933pt;}
.lsb{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.389333pt;}
.lsf{letter-spacing:0.400000pt;}
.ls11{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.933333pt;}
.ls4{letter-spacing:1.605333pt;}
.lsd{letter-spacing:2.298667pt;}
.lsc{letter-spacing:2.304000pt;}
.ls10{letter-spacing:11.744000pt;}
.ls12{letter-spacing:15.408000pt;}
.ls14{letter-spacing:15.416907pt;}
.ls13{letter-spacing:15.418667pt;}
.wse{word-spacing:-28.752000pt;}
.ws11{word-spacing:-28.741333pt;}
.wsf{word-spacing:-25.077333pt;}
.wsb{word-spacing:-15.637333pt;}
.wsc{word-spacing:-15.632000pt;}
.ws10{word-spacing:-13.760000pt;}
.wsd{word-spacing:-13.733333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws12{word-spacing:-13.328000pt;}
.ws8{word-spacing:-13.322667pt;}
.wsa{word-spacing:-12.051215pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.557537pt;}
.ws5{word-spacing:-11.548299pt;}
.ws7{word-spacing:-11.539060pt;}
.ws9{word-spacing:-11.522799pt;}
.ws1{word-spacing:-8.896000pt;}
.ws2{word-spacing:-8.888889pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-15.381760pt;}
._1f{margin-left:-11.744000pt;}
._1b{margin-left:-6.650667pt;}
._1{margin-left:-5.226667pt;}
._3{margin-left:-4.018667pt;}
._a{margin-left:-2.993813pt;}
._7{margin-left:-1.944907pt;}
._0{margin-left:-0.944000pt;}
._2{width:0.970667pt;}
._5{width:2.418133pt;}
._6{width:3.908975pt;}
._4{width:4.845867pt;}
._9{width:6.616107pt;}
._8{width:8.033493pt;}
._b{width:9.693813pt;}
._c{width:10.661707pt;}
._13{width:12.223627pt;}
._14{width:14.250667pt;}
._19{width:15.706667pt;}
._12{width:17.264000pt;}
._11{width:18.469333pt;}
._16{width:19.552000pt;}
._e{width:20.901333pt;}
._18{width:21.824000pt;}
._d{width:22.880000pt;}
._f{width:23.978667pt;}
._17{width:25.162667pt;}
._15{width:26.272000pt;}
._10{width:27.530667pt;}
._1a{width:28.899207pt;}
._21{width:32.320000pt;}
._1e{width:34.400000pt;}
._1c{width:35.590400pt;}
._22{width:47.698080pt;}
._1d{width:49.723040pt;}
.fs3{font-size:35.555557pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:46.091195pt;}
.fs5{font-size:46.193195pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:48.204859pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:3.195733pt;}
.y82{bottom:3.202800pt;}
.ydb{bottom:3.342267pt;}
.ye1{bottom:3.342400pt;}
.y37{bottom:5.891920pt;}
.y39{bottom:6.266667pt;}
.y6{bottom:7.364933pt;}
.y6e{bottom:7.417867pt;}
.y97{bottom:7.475600pt;}
.yeb{bottom:7.680800pt;}
.yd5{bottom:7.741067pt;}
.yee{bottom:10.211467pt;}
.y69{bottom:10.364587pt;}
.y6b{bottom:10.590267pt;}
.y7b{bottom:11.633067pt;}
.ye9{bottom:12.139733pt;}
.ya4{bottom:12.672440pt;}
.y33{bottom:14.364587pt;}
.y105{bottom:15.697920pt;}
.ycc{bottom:16.677333pt;}
.yc9{bottom:16.677467pt;}
.y8d{bottom:16.714267pt;}
.y81{bottom:16.714400pt;}
.yda{bottom:17.442133pt;}
.ye0{bottom:17.442267pt;}
.yd3{bottom:18.364587pt;}
.y96{bottom:20.987200pt;}
.yea{bottom:21.780667pt;}
.yf0{bottom:23.949867pt;}
.yed{bottom:24.311333pt;}
.y7a{bottom:25.144667pt;}
.y91{bottom:26.068400pt;}
.ya3{bottom:26.183947pt;}
.yf8{bottom:27.599067pt;}
.y68{bottom:27.697920pt;}
.yc8{bottom:30.159067pt;}
.y8c{bottom:30.225733pt;}
.y80{bottom:30.225867pt;}
.yde{bottom:31.542000pt;}
.yd9{bottom:31.542133pt;}
.y32{bottom:31.697920pt;}
.y104{bottom:33.031253pt;}
.y36{bottom:33.694013pt;}
.y95{bottom:34.498667pt;}
.yd2{bottom:35.697920pt;}
.yc5{bottom:37.936933pt;}
.y79{bottom:38.656133pt;}
.y90{bottom:39.579867pt;}
.ya2{bottom:39.695413pt;}
.yf7{bottom:41.698933pt;}
.yc7{bottom:43.640800pt;}
.y7f{bottom:43.737333pt;}
.y67{bottom:45.031280pt;}
.ydd{bottom:45.642000pt;}
.ydf{bottom:45.642133pt;}
.ye6{bottom:46.545867pt;}
.y94{bottom:48.010133pt;}
.y31{bottom:49.031280pt;}
.y103{bottom:50.364613pt;}
.yc4{bottom:51.418667pt;}
.y78{bottom:52.167600pt;}
.yd1{bottom:53.031280pt;}
.y8f{bottom:53.091467pt;}
.y38{bottom:53.092907pt;}
.ye3{bottom:53.415200pt;}
.y35{bottom:53.759320pt;}
.yf6{bottom:55.798933pt;}
.ya0{bottom:56.036213pt;}
.ycb{bottom:57.122400pt;}
.y8b{bottom:57.248800pt;}
.y7e{bottom:57.248933pt;}
.y93{bottom:61.521733pt;}
.y66{bottom:62.364613pt;}
.yc3{bottom:64.900267pt;}
.y87{bottom:65.505867pt;}
.yf2{bottom:65.620667pt;}
.y77{bottom:65.679200pt;}
.y30{bottom:66.364613pt;}
.y102{bottom:67.697947pt;}
.y4{bottom:68.032267pt;}
.y9f{bottom:69.547813pt;}
.yf5{bottom:69.898800pt;}
.yd0{bottom:70.364613pt;}
.y8a{bottom:70.760267pt;}
.y7d{bottom:70.760400pt;}
.y92{bottom:75.033200pt;}
.y73{bottom:75.899333pt;}
.yd7{bottom:76.011200pt;}
.yc2{bottom:78.382000pt;}
.y86{bottom:79.017333pt;}
.y76{bottom:79.190667pt;}
.y9a{bottom:79.421467pt;}
.y65{bottom:79.697947pt;}
.y9e{bottom:83.059280pt;}
.y2f{bottom:83.697947pt;}
.yf4{bottom:83.998667pt;}
.y7c{bottom:84.271867pt;}
.y101{bottom:85.031280pt;}
.y3{bottom:85.365600pt;}
.ycf{bottom:87.697947pt;}
.y72{bottom:89.410933pt;}
.y85{bottom:92.528933pt;}
.y75{bottom:92.702133pt;}
.y99{bottom:92.933067pt;}
.y10a{bottom:94.958347pt;}
.y7{bottom:96.609253pt;}
.y64{bottom:97.031280pt;}
.y89{bottom:97.783333pt;}
.y9d{bottom:100.776053pt;}
.y2e{bottom:101.031280pt;}
.y100{bottom:102.364613pt;}
.y2{bottom:102.698933pt;}
.y71{bottom:102.922400pt;}
.yce{bottom:105.031280pt;}
.y84{bottom:106.040400pt;}
.y109{bottom:109.625013pt;}
.y63{bottom:114.364613pt;}
.y70{bottom:116.433867pt;}
.y2d{bottom:118.364613pt;}
.yff{bottom:119.697947pt;}
.ycd{bottom:122.364613pt;}
.y108{bottom:124.291680pt;}
.y62{bottom:131.697947pt;}
.y2c{bottom:135.697947pt;}
.yfe{bottom:137.031280pt;}
.y107{bottom:138.958347pt;}
.y61{bottom:149.031280pt;}
.ya1{bottom:152.685600pt;}
.y2b{bottom:153.031280pt;}
.y106{bottom:153.625013pt;}
.yfd{bottom:154.364613pt;}
.y60{bottom:166.364613pt;}
.y34{bottom:170.364613pt;}
.yfc{bottom:171.697947pt;}
.y5f{bottom:183.697947pt;}
.y2a{bottom:187.697947pt;}
.y5e{bottom:201.031280pt;}
.ybe{bottom:205.031280pt;}
.yfb{bottom:206.364613pt;}
.y5d{bottom:218.364613pt;}
.ybd{bottom:222.364613pt;}
.y5c{bottom:235.697947pt;}
.y29{bottom:239.328080pt;}
.ybc{bottom:239.697947pt;}
.yfa{bottom:241.031280pt;}
.y98{bottom:249.171733pt;}
.y5b{bottom:253.031280pt;}
.yf1{bottom:253.086267pt;}
.y28{bottom:253.994747pt;}
.ybb{bottom:257.031280pt;}
.y27{bottom:268.661413pt;}
.y5a{bottom:270.364613pt;}
.yf9{bottom:271.697947pt;}
.yba{bottom:274.364613pt;}
.y26{bottom:283.328080pt;}
.y59{bottom:287.697947pt;}
.yb9{bottom:291.697947pt;}
.y25{bottom:297.994747pt;}
.y58{bottom:305.031280pt;}
.yb8{bottom:309.031280pt;}
.y24{bottom:312.661413pt;}
.y57{bottom:322.364613pt;}
.yb7{bottom:326.364613pt;}
.y23{bottom:327.328080pt;}
.y9c{bottom:332.146133pt;}
.y56{bottom:339.697947pt;}
.y22{bottom:341.994747pt;}
.yb6{bottom:343.697947pt;}
.yf3{bottom:349.831067pt;}
.y6a{bottom:350.118667pt;}
.y21{bottom:356.661413pt;}
.y55{bottom:357.031280pt;}
.yb5{bottom:361.031280pt;}
.y20{bottom:371.328080pt;}
.y54{bottom:374.364613pt;}
.yb4{bottom:378.364613pt;}
.y1f{bottom:385.994747pt;}
.y9b{bottom:388.097733pt;}
.y53{bottom:391.697947pt;}
.yef{bottom:394.119333pt;}
.yb3{bottom:395.697947pt;}
.y1e{bottom:400.661413pt;}
.y52{bottom:409.031280pt;}
.yb2{bottom:413.031280pt;}
.y1d{bottom:415.328080pt;}
.y51{bottom:426.364613pt;}
.y1c{bottom:429.994747pt;}
.yb1{bottom:430.364613pt;}
.y8e{bottom:430.537733pt;}
.y50{bottom:443.697947pt;}
.y1b{bottom:444.661413pt;}
.yc0{bottom:447.697947pt;}
.yec{bottom:452.507467pt;}
.y1a{bottom:459.328080pt;}
.y4f{bottom:461.031280pt;}
.yb0{bottom:465.031280pt;}
.y19{bottom:473.994747pt;}
.y4e{bottom:478.364613pt;}
.ybf{bottom:482.364613pt;}
.y18{bottom:488.661413pt;}
.y4d{bottom:495.697947pt;}
.ye8{bottom:496.795600pt;}
.yaf{bottom:499.697947pt;}
.y17{bottom:503.328080pt;}
.y4c{bottom:513.031280pt;}
.yae{bottom:517.031280pt;}
.y83{bottom:517.785067pt;}
.y16{bottom:517.994747pt;}
.y4b{bottom:530.364613pt;}
.ye5{bottom:531.322400pt;}
.y15{bottom:532.661413pt;}
.yad{bottom:534.364613pt;}
.y14{bottom:547.328080pt;}
.y4a{bottom:547.697947pt;}
.yac{bottom:551.697947pt;}
.y49{bottom:565.031280pt;}
.yab{bottom:569.031280pt;}
.ye7{bottom:575.610533pt;}
.y48{bottom:582.364613pt;}
.yaa{bottom:586.364613pt;}
.y88{bottom:587.248133pt;}
.y13{bottom:597.625013pt;}
.y47{bottom:599.697947pt;}
.ya9{bottom:603.697947pt;}
.y12{bottom:612.291680pt;}
.y46{bottom:617.031280pt;}
.ya8{bottom:621.031280pt;}
.y11{bottom:626.958347pt;}
.ye2{bottom:633.998667pt;}
.y45{bottom:634.364613pt;}
.ya7{bottom:638.364613pt;}
.y10{bottom:641.625013pt;}
.y44{bottom:651.697947pt;}
.ya6{bottom:655.697947pt;}
.yf{bottom:656.291680pt;}
.y43{bottom:669.031280pt;}
.ye{bottom:670.958347pt;}
.ya5{bottom:673.031280pt;}
.y42{bottom:686.364613pt;}
.ye4{bottom:692.386800pt;}
.y6f{bottom:697.245600pt;}
.yd{bottom:703.697947pt;}
.yc{bottom:721.031280pt;}
.y41{bottom:738.364613pt;}
.yd6{bottom:750.774933pt;}
.y40{bottom:755.697947pt;}
.yb{bottom:757.177147pt;}
.y3f{bottom:773.031280pt;}
.ya{bottom:782.510480pt;}
.y3e{bottom:790.364613pt;}
.y74{bottom:793.731600pt;}
.yc1{bottom:802.561333pt;}
.y3d{bottom:807.697947pt;}
.y9{bottom:807.843813pt;}
.ydc{bottom:809.163200pt;}
.y3c{bottom:825.031280pt;}
.y3b{bottom:842.364613pt;}
.y3a{bottom:859.697947pt;}
.y8{bottom:861.558613pt;}
.yd8{bottom:867.551333pt;}
.yc6{bottom:871.870933pt;}
.y6d{bottom:898.648000pt;}
.yd4{bottom:911.839467pt;}
.y6c{bottom:940.383600pt;}
.y1{bottom:958.941600pt;}
.y5{bottom:1019.608933pt;}
.hd{height:19.600000pt;}
.hf{height:20.533853pt;}
.h12{height:22.692400pt;}
.h29{height:23.680640pt;}
.hc{height:28.437500pt;}
.he{height:29.312500pt;}
.h11{height:29.559027pt;}
.h13{height:33.223914pt;}
.h9{height:33.270833pt;}
.h27{height:33.735694pt;}
.h32{height:34.104933pt;}
.h2a{height:34.670780pt;}
.h2e{height:35.282755pt;}
.h25{height:35.828702pt;}
.h15{height:35.907991pt;}
.h17{height:36.020768pt;}
.ha{height:37.429688pt;}
.h2c{height:37.589433pt;}
.h7{height:37.728000pt;}
.h3{height:39.036458pt;}
.h4{height:41.588542pt;}
.h1e{height:42.035800pt;}
.h2d{height:43.866427pt;}
.hb{height:45.886720pt;}
.h22{height:51.505413pt;}
.h26{height:55.424667pt;}
.h1f{height:55.547320pt;}
.h2f{height:57.966347pt;}
.h8{height:58.223958pt;}
.h5{height:59.333987pt;}
.h28{height:68.906333pt;}
.h1b{height:69.058827pt;}
.h20{height:82.570333pt;}
.h1c{height:86.843200pt;}
.h18{height:96.081840pt;}
.h34{height:96.323093pt;}
.h31{height:102.254560pt;}
.h16{height:104.512093pt;}
.h1a{height:109.593347pt;}
.h30{height:116.354480pt;}
.h2{height:120.001307pt;}
.h24{height:124.734307pt;}
.h33{height:140.611333pt;}
.h21{height:147.991467pt;}
.h2b{height:160.642667pt;}
.h19{height:179.056400pt;}
.h1d{height:180.961867pt;}
.h14{height:200.998133pt;}
.h23{height:873.333333pt;}
.h6{height:876.828267pt;}
.h10{height:877.000267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:19.333333pt;}
.w3{width:23.000653pt;}
.we{width:95.789107pt;}
.wa{width:96.001080pt;}
.w12{width:104.043267pt;}
.wf{width:110.634147pt;}
.wb{width:110.878973pt;}
.w13{width:122.334547pt;}
.w14{width:152.576800pt;}
.w10{width:170.501867pt;}
.wc{width:170.879067pt;}
.w15{width:174.170267pt;}
.w11{width:176.335333pt;}
.wd{width:176.725600pt;}
.w7{width:183.851600pt;}
.w2{width:275.881600pt;}
.w5{width:384.468133pt;}
.w9{width:642.525600pt;}
.w8{width:649.859600pt;}
.w16{width:651.316267pt;}
.w4{width:652.793200pt;}
.w17{width:654.302400pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.137693pt;}
.x4{left:6.000267pt;}
.x1d{left:9.047587pt;}
.x2{left:11.000973pt;}
.x27{left:12.033467pt;}
.x1e{left:12.991947pt;}
.x23{left:14.520133pt;}
.x24{left:15.624800pt;}
.x22{left:17.156267pt;}
.x30{left:18.107733pt;}
.x1f{left:19.146733pt;}
.x21{left:20.519867pt;}
.x31{left:21.492133pt;}
.x2d{left:23.003667pt;}
.x18{left:24.014400pt;}
.xd{left:25.396160pt;}
.x16{left:27.151000pt;}
.x20{left:28.918733pt;}
.x2e{left:30.656933pt;}
.x6{left:31.590480pt;}
.xc{left:33.600267pt;}
.x25{left:35.591867pt;}
.x29{left:37.468533pt;}
.x38{left:39.310933pt;}
.x2a{left:41.684667pt;}
.x2b{left:42.883333pt;}
.x35{left:46.313600pt;}
.x3a{left:48.592400pt;}
.x1a{left:50.005200pt;}
.x1c{left:51.476400pt;}
.x34{left:54.437333pt;}
.x33{left:55.609733pt;}
.x2c{left:57.639600pt;}
.x26{left:60.363200pt;}
.x32{left:63.030933pt;}
.x1{left:64.589573pt;}
.x28{left:66.385467pt;}
.x12{left:67.441120pt;}
.x2f{left:69.219067pt;}
.x5{left:70.456760pt;}
.x9{left:72.452853pt;}
.x13{left:75.590560pt;}
.x11{left:82.701680pt;}
.x14{left:107.870907pt;}
.x3b{left:114.797973pt;}
.x15{left:119.003533pt;}
.x17{left:215.408800pt;}
.x36{left:224.072267pt;}
.x19{left:326.692000pt;}
.xe{left:340.992973pt;}
.x7{left:342.459773pt;}
.x37{left:346.828667pt;}
.x10{left:359.890613pt;}
.xf{left:362.722040pt;}
.x8{left:364.188840pt;}
.x3{left:390.853067pt;}
.x1b{left:497.975333pt;}
.x39{left:499.827200pt;}
.xb{left:537.198133pt;}
}




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