
    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_4c33ec16c010e57798148ece.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.757324;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_a64b9fea663353dc885582de.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_9cef7e9f91d8a242887d6506.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_c0d36d34c165c26760cfafc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_b984c68c8fc20ba6cdf8b893.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927246;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_aea97ba6557e14c9208be06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914551;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_5ee6be261f9fd8d9429e4b50.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_e6ff1fe80416490118222f76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_0f446330833c107010e2ffca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.757324;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;}
.m6{transform:matrix(0.000000,-0.250018,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250018,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250018,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.253335,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253335,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253335,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.235384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235384,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247876,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,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);}
.m5{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.284728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284728,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.502000px;}
.v2{vertical-align:51.787800px;}
.v1{vertical-align:76.800000px;}
.ls16{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018164px;}
.ls11{letter-spacing:0.018457px;}
.lse{letter-spacing:2.039655px;}
.ls12{letter-spacing:3.367380px;}
.ls5{letter-spacing:3.367968px;}
.lsf{letter-spacing:3.576996px;}
.ls10{letter-spacing:6.039758px;}
.ls9{letter-spacing:6.061548px;}
.ls3{letter-spacing:6.124157px;}
.lsb{letter-spacing:6.153446px;}
.lsd{letter-spacing:6.183000px;}
.lsc{letter-spacing:6.185400px;}
.ls6{letter-spacing:6.190124px;}
.ls8{letter-spacing:6.197461px;}
.ls1{letter-spacing:6.198350px;}
.ls7{letter-spacing:6.199861px;}
.ls2{letter-spacing:6.203798px;}
.ls14{letter-spacing:6.203902px;}
.ls0{letter-spacing:6.208583px;}
.ls13{letter-spacing:6.223548px;}
.lsa{letter-spacing:6.287957px;}
.ls4{letter-spacing:473.538000px;}
.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;}
}
.ws6{word-spacing:-506.898000px;}
.ws0{word-spacing:-120.000000px;}
.ws9{word-spacing:-103.609584px;}
.ws2{word-spacing:-54.953928px;}
.ws1{word-spacing:-54.720000px;}
.ws10{word-spacing:-46.288195px;}
.ws15{word-spacing:-43.776000px;}
.ws4{word-spacing:-43.399305px;}
.ws3{word-spacing:-37.190722px;}
.wsd{word-spacing:-33.575098px;}
.ws7{word-spacing:-33.574277px;}
.ws12{word-spacing:-33.378457px;}
.ws14{word-spacing:-33.378164px;}
.ws5{word-spacing:-33.360000px;}
.ws8{word-spacing:-30.727968px;}
.ws13{word-spacing:-30.727380px;}
.ws17{word-spacing:-30.096000px;}
.wsf{word-spacing:-29.018837px;}
.wsa{word-spacing:-28.454400px;}
.ws11{word-spacing:-27.360000px;}
.wsb{word-spacing:-19.029838px;}
.ws18{word-spacing:0.000000px;}
.ws16{word-spacing:6.602508px;}
.wsc{word-spacing:276.279022px;}
.wse{word-spacing:511.583588px;}
._8{margin-left:-473.538000px;}
._2{margin-left:-23.208829px;}
._f{margin-left:-18.455094px;}
._3{margin-left:-12.645108px;}
._16{margin-left:-10.767302px;}
._c{margin-left:-7.778936px;}
._5{margin-left:-6.480912px;}
._b{margin-left:-4.631357px;}
._a{margin-left:-3.363288px;}
._e{margin-left:-2.352953px;}
._1d{margin-left:-1.105815px;}
._10{width:1.305035px;}
._6{width:2.790253px;}
._9{width:3.899888px;}
._d{width:4.947670px;}
._7{width:6.189840px;}
._0{width:7.674624px;}
._1{width:8.805336px;}
._4{width:9.836448px;}
._24{width:11.440293px;}
._23{width:14.335041px;}
._19{width:17.238597px;}
._18{width:18.909144px;}
._22{width:20.332300px;}
._15{width:21.655633px;}
._14{width:23.286089px;}
._17{width:24.475758px;}
._25{width:25.574980px;}
._1b{width:31.528141px;}
._1f{width:33.715992px;}
._1c{width:37.796803px;}
._1e{width:39.811378px;}
._21{width:47.381451px;}
._1a{width:48.450626px;}
._13{width:49.535070px;}
._20{width:70.212538px;}
._12{width:309.443804px;}
._11{width:520.260658px;}
.fc7{color:transparent;}
.fc6{color:rgb(25,25,25);}
.fc5{color:rgb(27,27,27);}
.fc4{color:rgb(7,7,7);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(230,230,230);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(30,184,228);}
.fsf{font-size:43.403880px;}
.fs12{font-size:76.014600px;}
.fse{font-size:83.464200px;}
.fs8{font-size:90.000000px;}
.fs0{font-size:120.000000px;}
.fsd{font-size:124.800000px;}
.fs14{font-size:127.275600px;}
.fs7{font-size:132.000000px;}
.fs9{font-size:147.255600px;}
.fs13{font-size:147.259200px;}
.fs4{font-size:163.117200px;}
.fsc{font-size:192.000000px;}
.fs11{font-size:198.847200px;}
.fs16{font-size:203.008200px;}
.fsa{font-size:203.013000px;}
.fs15{font-size:203.018400px;}
.fs1{font-size:240.000000px;}
.fs6{font-size:241.026000px;}
.fs10{font-size:305.050800px;}
.fs3{font-size:360.000000px;}
.fsb{font-size:454.428000px;}
.fs5{font-size:454.428600px;}
.fs2{font-size:719.442000px;}
.y0{bottom:0.000000px;}
.y25{bottom:7.800000px;}
.y20{bottom:21.870000px;}
.y21{bottom:111.619500px;}
.y7d{bottom:112.985100px;}
.y79{bottom:113.351400px;}
.y26{bottom:116.209500px;}
.y82{bottom:121.027500px;}
.y110{bottom:125.312550px;}
.y7c{bottom:145.985100px;}
.y78{bottom:146.351400px;}
.y15{bottom:159.628200px;}
.yc4{bottom:159.975000px;}
.y10f{bottom:176.184300px;}
.y81{bottom:187.027500px;}
.y22{bottom:201.364050px;}
.y14{bottom:225.910050px;}
.yc3{bottom:225.975000px;}
.y10e{bottom:227.056050px;}
.y111{bottom:227.056500px;}
.y80{bottom:253.027500px;}
.y23{bottom:291.109200px;}
.yc2{bottom:291.975000px;}
.y13{bottom:292.192500px;}
.y10c{bottom:314.547600px;}
.y7f{bottom:319.027500px;}
.y10b{bottom:365.419350px;}
.y24{bottom:380.854500px;}
.y10a{bottom:416.291100px;}
.y10d{bottom:416.291550px;}
.yb{bottom:418.002000px;}
.y32{bottom:418.504500px;}
.y43{bottom:431.975850px;}
.y8e{bottom:432.253050px;}
.y7b{bottom:444.792000px;}
.ycb{bottom:454.512000px;}
.y42{bottom:476.832900px;}
.y8d{bottom:477.110700px;}
.y98{bottom:485.974500px;}
.y3b{bottom:486.442500px;}
.yca{bottom:499.369050px;}
.yc{bottom:503.291700px;}
.y36{bottom:503.794200px;}
.y108{bottom:504.201150px;}
.y7a{bottom:506.271000px;}
.y33{bottom:513.274500px;}
.y41{bottom:521.690550px;}
.y8c{bottom:522.066750px;}
.yc9{bottom:544.226700px;}
.y3a{bottom:554.029500px;}
.y107{bottom:555.072900px;}
.y40{bottom:566.646600px;}
.y8b{bottom:567.022800px;}
.y37{bottom:589.099050px;}
.y9a{bottom:589.099650px;}
.yc8{bottom:589.182750px;}
.ya{bottom:589.338000px;}
.y106{bottom:605.944650px;}
.y109{bottom:605.945100px;}
.y99{bottom:608.044050px;}
.y34{bottom:608.044650px;}
.y3f{bottom:611.603250px;}
.y8a{bottom:611.978850px;}
.yc7{bottom:634.139400px;}
.y3e{bottom:656.559900px;}
.y89{bottom:656.835900px;}
.yd{bottom:673.886700px;}
.y38{bottom:674.389350px;}
.y9b{bottom:674.389950px;}
.yc6{bottom:678.996450px;}
.y104{bottom:686.893200px;}
.y3d{bottom:701.416950px;}
.y88{bottom:701.692950px;}
.y35{bottom:702.829350px;}
.y75{bottom:719.592000px;}
.y76{bottom:723.250500px;}
.yc5{bottom:723.853500px;}
.y103{bottom:737.764950px;}
.y3c{bottom:746.274000px;}
.y87{bottom:746.550000px;}
.ye{bottom:759.191550px;}
.y39{bottom:759.694200px;}
.y9c{bottom:759.694800px;}
.y102{bottom:788.636700px;}
.y105{bottom:788.637150px;}
.y9d{bottom:791.551500px;}
.y44{bottom:791.552850px;}
.y77{bottom:802.882500px;}
.yd7{bottom:843.560700px;}
.y97{bottom:843.560850px;}
.y46{bottom:850.693500px;}
.ya0{bottom:851.886000px;}
.y101{bottom:876.127800px;}
.y74{bottom:886.880850px;}
.y96{bottom:888.417900px;}
.yd6{bottom:888.418350px;}
.y71{bottom:899.982000px;}
.y73{bottom:905.884500px;}
.y55{bottom:915.879450px;}
.y100{bottom:927.000000px;}
.y4b{bottom:928.243500px;}
.y47{bottom:931.933500px;}
.yd5{bottom:933.374400px;}
.y95{bottom:933.374550px;}
.yce{bottom:937.190850px;}
.ya1{bottom:937.191450px;}
.y9f{bottom:949.069500px;}
.y45{bottom:959.698500px;}
.y54{bottom:960.737100px;}
.y6f{bottom:962.987400px;}
.y94{bottom:978.330600px;}
.yd4{bottom:978.331050px;}
.y6e{bottom:983.853150px;}
.y4f{bottom:986.233500px;}
.ya5{bottom:987.426000px;}
.y6d{bottom:1004.719500px;}
.y53{bottom:1005.693150px;}
.y4c{bottom:1005.780000px;}
.y48{bottom:1013.173200px;}
.ycc{bottom:1013.173800px;}
.yff{bottom:1014.958050px;}
.ya2{bottom:1022.481150px;}
.y93{bottom:1023.187650px;}
.yd3{bottom:1023.188100px;}
.y70{bottom:1042.208550px;}
.y52{bottom:1050.649800px;}
.yfe{bottom:1065.829800px;}
.yd2{bottom:1068.144150px;}
.y92{bottom:1068.144300px;}
.y4d{bottom:1083.330000px;}
.y49{bottom:1094.398200px;}
.ycd{bottom:1094.398800px;}
.y51{bottom:1095.506850px;}
.ya3{bottom:1107.786000px;}
.y91{bottom:1113.100350px;}
.yd1{bottom:1113.100800px;}
.yfd{bottom:1116.702000px;}
.y50{bottom:1140.364500px;}
.yd0{bottom:1157.957850px;}
.y90{bottom:1157.958000px;}
.y4e{bottom:1160.880000px;}
.y4a{bottom:1175.638500px;}
.ya4{bottom:1193.076000px;}
.y8f{bottom:1202.815050px;}
.ycf{bottom:1202.815500px;}
.yfc{bottom:1204.660050px;}
.y9e{bottom:1231.236000px;}
.y56{bottom:1231.236450px;}
.yfb{bottom:1255.532250px;}
.y72{bottom:1304.973000px;}
.y31{bottom:1305.100500px;}
.y86{bottom:1305.103500px;}
.yfa{bottom:1306.404000px;}
.y6c{bottom:1427.373000px;}
.yf9{bottom:1427.401500px;}
.y1f{bottom:1462.330500px;}
.yb8{bottom:1469.587500px;}
.yb9{bottom:1483.657620px;}
.yb6{bottom:1501.139400px;}
.y1e{bottom:1510.380750px;}
.ydf{bottom:1530.770250px;}
.yb5{bottom:1545.996450px;}
.y1d{bottom:1555.238400px;}
.yde{bottom:1575.627900px;}
.yba{bottom:1577.685000px;}
.yb4{bottom:1590.853500px;}
.y1c{bottom:1600.095450px;}
.ybe{bottom:1607.295000px;}
.ydd{bottom:1620.484950px;}
.y6b{bottom:1628.209650px;}
.yf7{bottom:1628.610000px;}
.yb3{bottom:1635.711150px;}
.y1b{bottom:1644.952500px;}
.ydc{bottom:1665.342600px;}
.ybb{bottom:1671.705150px;}
.yb2{bottom:1680.667200px;}
.y1a{bottom:1689.909150px;}
.y6a{bottom:1694.209650px;}
.yf6{bottom:1694.610000px;}
.ydb{bottom:1710.298650px;}
.yb1{bottom:1725.623250px;}
.y19{bottom:1734.865200px;}
.yda{bottom:1755.255300px;}
.y69{bottom:1760.209650px;}
.yf5{bottom:1760.610000px;}
.ybc{bottom:1765.725300px;}
.yb0{bottom:1770.480900px;}
.y18{bottom:1779.722850px;}
.yd9{bottom:1800.112350px;}
.yaf{bottom:1815.337950px;}
.y17{bottom:1824.579900px;}
.y68{bottom:1826.209650px;}
.yf4{bottom:1826.610000px;}
.yd8{bottom:1844.970000px;}
.ybd{bottom:1859.745000px;}
.yae{bottom:1860.195000px;}
.y67{bottom:1892.355000px;}
.yf3{bottom:1892.610000px;}
.yb7{bottom:1910.030400px;}
.ye0{bottom:1910.036250px;}
.y16{bottom:1910.040000px;}
.yf2{bottom:1977.210000px;}
.yad{bottom:1979.295000px;}
.y2f{bottom:1979.835000px;}
.y66{bottom:2019.404400px;}
.y8{bottom:2024.955000px;}
.yf1{bottom:2030.010000px;}
.y27{bottom:2044.230000px;}
.ya7{bottom:2044.335000px;}
.y2b{bottom:2044.635000px;}
.yaa{bottom:2044.732500px;}
.y2c{bottom:2044.890000px;}
.ye2{bottom:2045.280000px;}
.y9{bottom:2069.460000px;}
.y65{bottom:2072.204400px;}
.yf0{bottom:2082.810000px;}
.yac{bottom:2100.030000px;}
.y2a{bottom:2104.275000px;}
.ye1{bottom:2104.920000px;}
.ya9{bottom:2105.745000px;}
.y64{bottom:2125.004400px;}
.yab{bottom:2133.030000px;}
.yef{bottom:2135.610000px;}
.y29{bottom:2137.275000px;}
.y2e{bottom:2137.920000px;}
.ya8{bottom:2138.745000px;}
.y63{bottom:2177.804400px;}
.yee{bottom:2188.410000px;}
.y62{bottom:2230.604400px;}
.yed{bottom:2241.210000px;}
.y61{bottom:2283.404400px;}
.yec{bottom:2294.010000px;}
.y60{bottom:2336.204400px;}
.yeb{bottom:2346.810000px;}
.y5f{bottom:2389.004400px;}
.yea{bottom:2399.610000px;}
.y28{bottom:2430.525000px;}
.y2d{bottom:2431.170000px;}
.y5e{bottom:2441.804400px;}
.ye9{bottom:2452.410000px;}
.y5d{bottom:2494.605000px;}
.ya6{bottom:2499.045000px;}
.y30{bottom:2499.585000px;}
.ye8{bottom:2505.210000px;}
.y5c{bottom:2547.405000px;}
.ye7{bottom:2558.010000px;}
.y5b{bottom:2600.205000px;}
.y85{bottom:2608.140000px;}
.yc1{bottom:2608.350000px;}
.y12{bottom:2608.710000px;}
.ye6{bottom:2610.810000px;}
.y5a{bottom:2653.005000px;}
.ye5{bottom:2663.610000px;}
.y84{bottom:2674.140000px;}
.yc0{bottom:2674.350000px;}
.y11{bottom:2674.710000px;}
.y59{bottom:2705.805000px;}
.ye4{bottom:2716.410000px;}
.y83{bottom:2740.140000px;}
.ybf{bottom:2740.350000px;}
.y10{bottom:2740.710000px;}
.y58{bottom:2758.605000px;}
.ye3{bottom:2769.210000px;}
.yf8{bottom:2883.135000px;}
.y7e{bottom:2883.270000px;}
.y57{bottom:2883.420000px;}
.yf{bottom:2883.690000px;}
.y7{bottom:3142.065900px;}
.y3{bottom:3162.430050px;}
.y2{bottom:3229.125000px;}
.y6{bottom:3273.907050px;}
.y1{bottom:3319.905000px;}
.y5{bottom:3433.030050px;}
.y4{bottom:3630.877050px;}
.h16{height:55.414940px;}
.h13{height:60.845728px;}
.hc{height:65.610352px;}
.h6{height:87.363281px;}
.he{height:87.480469px;}
.h1{height:89.062500px;}
.hb{height:96.099609px;}
.h1a{height:96.228516px;}
.h1b{height:97.968750px;}
.hd{height:107.349908px;}
.h17{height:107.352532px;}
.h5{height:118.753782px;}
.h9{height:118.913076px;}
.h11{height:139.968750px;}
.h15{height:144.766199px;}
.h19{height:147.795521px;}
.hf{height:147.799015px;}
.h18{height:147.802946px;}
.h12{height:167.779687px;}
.h2{height:174.960938px;}
.h8{height:175.708896px;}
.h4{height:262.441406px;}
.h14{height:274.171025px;}
.h10{height:331.279787px;}
.h7{height:331.280225px;}
.ha{height:432.000000px;}
.h3{height:524.476028px;}
.h0{height:3888.000000px;}
.w1{width:540.000000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x1a{left:31.800000px;}
.x18{left:47.400000px;}
.x17{left:55.740000px;}
.x16{left:64.095000px;}
.x3e{left:67.901400px;}
.x31{left:73.233000px;}
.x45{left:76.331250px;}
.x35{left:104.036250px;}
.x3b{left:108.704224px;}
.x39{left:126.470451px;}
.x38{left:127.647600px;}
.x33{left:141.933750px;}
.x34{left:165.833250px;}
.x19{left:176.115000px;}
.x3a{left:179.879835px;}
.x32{left:200.776500px;}
.x36{left:208.694700px;}
.x30{left:211.588500px;}
.x46{left:250.612050px;}
.x40{left:252.208500px;}
.x37{left:266.034000px;}
.x3d{left:357.352500px;}
.x44{left:388.197000px;}
.x41{left:406.357500px;}
.x3f{left:649.275000px;}
.x42{left:653.526000px;}
.x43{left:660.801585px;}
.x3c{left:687.877500px;}
.x5{left:883.840500px;}
.x4{left:926.080500px;}
.x4d{left:1037.725500px;}
.x61{left:1039.863000px;}
.x4a{left:1044.831150px;}
.x6a{left:1047.514500px;}
.x51{left:1057.657500px;}
.x5b{left:1060.659000px;}
.x49{left:1067.079750px;}
.x5a{left:1068.999000px;}
.x53{left:1072.605000px;}
.x59{left:1077.346500px;}
.x52{left:1080.952500px;}
.x69{left:1088.450802px;}
.x64{left:1093.265250px;}
.x4c{left:1095.300000px;}
.x4e{left:1118.546850px;}
.x8{left:1122.337500px;}
.x65{left:1124.767500px;}
.x62{left:1148.866500px;}
.x63{left:1156.731000px;}
.x67{left:1159.727100px;}
.x48{left:1165.458000px;}
.x47{left:1172.517000px;}
.x5c{left:1183.911000px;}
.x68{left:1200.471000px;}
.x57{left:1203.091785px;}
.x56{left:1205.316000px;}
.x4b{left:1259.217150px;}
.x4f{left:1343.011500px;}
.x55{left:1384.012500px;}
.x58{left:1390.620000px;}
.x54{left:1398.967500px;}
.x5e{left:1469.589000px;}
.x5f{left:1540.532550px;}
.x66{left:1596.495000px;}
.x5d{left:1648.125000px;}
.x50{left:1665.990000px;}
.x6{left:1672.390500px;}
.x60{left:1798.184550px;}
.x7f{left:2084.625000px;}
.x85{left:2099.475000px;}
.x6c{left:2111.640000px;}
.x72{left:2115.840000px;}
.x79{left:2122.440000px;}
.x74{left:2130.120000px;}
.x6f{left:2131.530000px;}
.x7c{left:2136.525000px;}
.x73{left:2138.475000px;}
.x6d{left:2158.209150px;}
.x87{left:2180.610000px;}
.x80{left:2184.390000px;}
.xb{left:2185.575000px;}
.x86{left:2208.480000px;}
.x7e{left:2222.337630px;}
.x6b{left:2239.470000px;}
.x6e{left:2260.402650px;}
.x78{left:2261.938710px;}
.x77{left:2264.163510px;}
.x70{left:2268.520500px;}
.x7{left:2351.848500px;}
.x71{left:2402.610000px;}
.x75{left:2442.195000px;}
.x7b{left:2448.795000px;}
.x7a{left:2457.150000px;}
.xa{left:2459.055000px;}
.x82{left:2527.665000px;}
.x83{left:2534.940585px;}
.x7d{left:2655.945000px;}
.x81{left:2707.740000px;}
.x76{left:2723.430000px;}
.x84{left:2857.800000px;}
.x15{left:3144.795000px;}
.x20{left:3160.320000px;}
.x29{left:3178.095000px;}
.x2c{left:3184.695000px;}
.x27{left:3193.035000px;}
.x10{left:3195.405000px;}
.x24{left:3197.415000px;}
.x26{left:3201.390000px;}
.x11{left:3221.025933px;}
.xd{left:3227.280000px;}
.x12{left:3228.355123px;}
.x22{left:3241.440000px;}
.xe{left:3243.327000px;}
.x23{left:3249.615000px;}
.x9{left:3253.440000px;}
.x21{left:3269.325000px;}
.x13{left:3282.525000px;}
.xc{left:3313.920000px;}
.x2f{left:3323.522730px;}
.x2b{left:3325.754010px;}
.xf{left:3344.385000px;}
.x25{left:3411.180000px;}
.x28{left:3504.450000px;}
.x2d{left:3511.050000px;}
.x1b{left:3519.450000px;}
.x1d{left:3588.495000px;}
.x1e{left:3595.770585px;}
.x14{left:3707.154000px;}
.x1c{left:3768.570000px;}
.x2e{left:3785.160000px;}
.x2a{left:3786.420000px;}
.x1f{left:3918.630000px;}
.x3{left:4052.530500px;}
.x93{left:4219.373400px;}
.x88{left:4220.955000px;}
.x92{left:4227.582000px;}
.x91{left:4229.236050px;}
.x90{left:4255.830000px;}
.x8a{left:4261.205865px;}
.x8b{left:4270.833990px;}
.x89{left:4273.950000px;}
.x8c{left:4305.899940px;}
.x8f{left:4334.685000px;}
.x8e{left:4345.260000px;}
.x8d{left:4381.484190px;}
.x2{left:4391.295000px;}
.x1{left:4895.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.224000pt;}
.v2{vertical-align:46.033600pt;}
.v1{vertical-align:68.266667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016145pt;}
.ls11{letter-spacing:0.016406pt;}
.lse{letter-spacing:1.813027pt;}
.ls12{letter-spacing:2.993227pt;}
.ls5{letter-spacing:2.993749pt;}
.lsf{letter-spacing:3.179552pt;}
.ls10{letter-spacing:5.368674pt;}
.ls9{letter-spacing:5.388043pt;}
.ls3{letter-spacing:5.443695pt;}
.lsb{letter-spacing:5.469730pt;}
.lsd{letter-spacing:5.496000pt;}
.lsc{letter-spacing:5.498133pt;}
.ls6{letter-spacing:5.502333pt;}
.ls8{letter-spacing:5.508854pt;}
.ls1{letter-spacing:5.509645pt;}
.ls7{letter-spacing:5.510988pt;}
.ls2{letter-spacing:5.514487pt;}
.ls14{letter-spacing:5.514579pt;}
.ls0{letter-spacing:5.518741pt;}
.ls13{letter-spacing:5.532043pt;}
.lsa{letter-spacing:5.589295pt;}
.ls4{letter-spacing:420.922667pt;}
.ws6{word-spacing:-450.576000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws9{word-spacing:-92.097408pt;}
.ws2{word-spacing:-48.847936pt;}
.ws1{word-spacing:-48.640000pt;}
.ws10{word-spacing:-41.145062pt;}
.ws15{word-spacing:-38.912000pt;}
.ws4{word-spacing:-38.577160pt;}
.ws3{word-spacing:-33.058419pt;}
.wsd{word-spacing:-29.844531pt;}
.ws7{word-spacing:-29.843802pt;}
.ws12{word-spacing:-29.669739pt;}
.ws14{word-spacing:-29.669479pt;}
.ws5{word-spacing:-29.653333pt;}
.ws8{word-spacing:-27.313749pt;}
.ws13{word-spacing:-27.313227pt;}
.ws17{word-spacing:-26.752000pt;}
.wsf{word-spacing:-25.794522pt;}
.wsa{word-spacing:-25.292800pt;}
.ws11{word-spacing:-24.320000pt;}
.wsb{word-spacing:-16.915411pt;}
.ws18{word-spacing:0.000000pt;}
.ws16{word-spacing:5.868896pt;}
.wsc{word-spacing:245.581353pt;}
.wse{word-spacing:454.740967pt;}
._8{margin-left:-420.922667pt;}
._2{margin-left:-20.630070pt;}
._f{margin-left:-16.404528pt;}
._3{margin-left:-11.240096pt;}
._16{margin-left:-9.570935pt;}
._c{margin-left:-6.914609pt;}
._5{margin-left:-5.760811pt;}
._b{margin-left:-4.116761pt;}
._a{margin-left:-2.989589pt;}
._e{margin-left:-2.091514pt;}
._1d{margin-left:-0.982947pt;}
._10{width:1.160031pt;}
._6{width:2.480225pt;}
._9{width:3.466567pt;}
._d{width:4.397929pt;}
._7{width:5.502080pt;}
._0{width:6.821888pt;}
._1{width:7.826965pt;}
._4{width:8.743509pt;}
._24{width:10.169149pt;}
._23{width:12.742259pt;}
._19{width:15.323198pt;}
._18{width:16.808128pt;}
._22{width:18.073156pt;}
._15{width:19.249452pt;}
._14{width:20.698746pt;}
._17{width:21.756229pt;}
._25{width:22.733316pt;}
._1b{width:28.025014pt;}
._1f{width:29.969770pt;}
._1c{width:33.597159pt;}
._1e{width:35.387892pt;}
._21{width:42.116845pt;}
._1a{width:43.067223pt;}
._13{width:44.031174pt;}
._20{width:62.411145pt;}
._12{width:275.061159pt;}
._11{width:462.453918pt;}
.fsf{font-size:38.581227pt;}
.fs12{font-size:67.568533pt;}
.fse{font-size:74.190400pt;}
.fs8{font-size:80.000000pt;}
.fs0{font-size:106.666667pt;}
.fsd{font-size:110.933333pt;}
.fs14{font-size:113.133867pt;}
.fs7{font-size:117.333333pt;}
.fs9{font-size:130.893867pt;}
.fs13{font-size:130.897067pt;}
.fs4{font-size:144.993067pt;}
.fsc{font-size:170.666667pt;}
.fs11{font-size:176.753067pt;}
.fs16{font-size:180.451733pt;}
.fsa{font-size:180.456000pt;}
.fs15{font-size:180.460800pt;}
.fs1{font-size:213.333333pt;}
.fs6{font-size:214.245333pt;}
.fs10{font-size:271.156267pt;}
.fs3{font-size:320.000000pt;}
.fsb{font-size:403.936000pt;}
.fs5{font-size:403.936533pt;}
.fs2{font-size:639.504000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:6.933333pt;}
.y20{bottom:19.440000pt;}
.y21{bottom:99.217333pt;}
.y7d{bottom:100.431200pt;}
.y79{bottom:100.756800pt;}
.y26{bottom:103.297333pt;}
.y82{bottom:107.580000pt;}
.y110{bottom:111.388933pt;}
.y7c{bottom:129.764533pt;}
.y78{bottom:130.090133pt;}
.y15{bottom:141.891733pt;}
.yc4{bottom:142.200000pt;}
.y10f{bottom:156.608267pt;}
.y81{bottom:166.246667pt;}
.y22{bottom:178.990267pt;}
.y14{bottom:200.808933pt;}
.yc3{bottom:200.866667pt;}
.y10e{bottom:201.827600pt;}
.y111{bottom:201.828000pt;}
.y80{bottom:224.913333pt;}
.y23{bottom:258.763733pt;}
.yc2{bottom:259.533333pt;}
.y13{bottom:259.726667pt;}
.y10c{bottom:279.597867pt;}
.y7f{bottom:283.580000pt;}
.y10b{bottom:324.817200pt;}
.y24{bottom:338.537333pt;}
.y10a{bottom:370.036533pt;}
.y10d{bottom:370.036933pt;}
.yb{bottom:371.557333pt;}
.y32{bottom:372.004000pt;}
.y43{bottom:383.978533pt;}
.y8e{bottom:384.224933pt;}
.y7b{bottom:395.370667pt;}
.ycb{bottom:404.010667pt;}
.y42{bottom:423.851467pt;}
.y8d{bottom:424.098400pt;}
.y98{bottom:431.977333pt;}
.y3b{bottom:432.393333pt;}
.yca{bottom:443.883600pt;}
.yc{bottom:447.370400pt;}
.y36{bottom:447.817067pt;}
.y108{bottom:448.178800pt;}
.y7a{bottom:450.018667pt;}
.y33{bottom:456.244000pt;}
.y41{bottom:463.724933pt;}
.y8c{bottom:464.059333pt;}
.yc9{bottom:483.757067pt;}
.y3a{bottom:492.470667pt;}
.y107{bottom:493.398133pt;}
.y40{bottom:503.685867pt;}
.y8b{bottom:504.020267pt;}
.y37{bottom:523.643600pt;}
.y9a{bottom:523.644133pt;}
.yc8{bottom:523.718000pt;}
.ya{bottom:523.856000pt;}
.y106{bottom:538.617467pt;}
.y109{bottom:538.617867pt;}
.y99{bottom:540.483600pt;}
.y34{bottom:540.484133pt;}
.y3f{bottom:543.647333pt;}
.y8a{bottom:543.981200pt;}
.yc7{bottom:563.679467pt;}
.y3e{bottom:583.608800pt;}
.y89{bottom:583.854133pt;}
.yd{bottom:599.010400pt;}
.y38{bottom:599.457200pt;}
.y9b{bottom:599.457733pt;}
.yc6{bottom:603.552400pt;}
.y104{bottom:610.571733pt;}
.y3d{bottom:623.481733pt;}
.y88{bottom:623.727067pt;}
.y35{bottom:624.737200pt;}
.y75{bottom:639.637333pt;}
.y76{bottom:642.889333pt;}
.yc5{bottom:643.425333pt;}
.y103{bottom:655.791067pt;}
.y3c{bottom:663.354667pt;}
.y87{bottom:663.600000pt;}
.ye{bottom:674.836933pt;}
.y39{bottom:675.283733pt;}
.y9c{bottom:675.284267pt;}
.y102{bottom:701.010400pt;}
.y105{bottom:701.010800pt;}
.y9d{bottom:703.601333pt;}
.y44{bottom:703.602533pt;}
.y77{bottom:713.673333pt;}
.yd7{bottom:749.831733pt;}
.y97{bottom:749.831867pt;}
.y46{bottom:756.172000pt;}
.ya0{bottom:757.232000pt;}
.y101{bottom:778.780267pt;}
.y74{bottom:788.338533pt;}
.y96{bottom:789.704800pt;}
.yd6{bottom:789.705200pt;}
.y71{bottom:799.984000pt;}
.y73{bottom:805.230667pt;}
.y55{bottom:814.115067pt;}
.y100{bottom:824.000000pt;}
.y4b{bottom:825.105333pt;}
.y47{bottom:828.385333pt;}
.yd5{bottom:829.666133pt;}
.y95{bottom:829.666267pt;}
.yce{bottom:833.058533pt;}
.ya1{bottom:833.059067pt;}
.y9f{bottom:843.617333pt;}
.y45{bottom:853.065333pt;}
.y54{bottom:853.988533pt;}
.y6f{bottom:855.988800pt;}
.y94{bottom:869.627200pt;}
.yd4{bottom:869.627600pt;}
.y6e{bottom:874.536133pt;}
.y4f{bottom:876.652000pt;}
.ya5{bottom:877.712000pt;}
.y6d{bottom:893.084000pt;}
.y53{bottom:893.949467pt;}
.y4c{bottom:894.026667pt;}
.y48{bottom:900.598400pt;}
.ycc{bottom:900.598933pt;}
.yff{bottom:902.184933pt;}
.ya2{bottom:908.872133pt;}
.y93{bottom:909.500133pt;}
.yd3{bottom:909.500533pt;}
.y70{bottom:926.407600pt;}
.y52{bottom:933.910933pt;}
.yfe{bottom:947.404267pt;}
.yd2{bottom:949.461467pt;}
.y92{bottom:949.461600pt;}
.y4d{bottom:962.960000pt;}
.y49{bottom:972.798400pt;}
.ycd{bottom:972.798933pt;}
.y51{bottom:973.783867pt;}
.ya3{bottom:984.698667pt;}
.y91{bottom:989.422533pt;}
.yd1{bottom:989.422933pt;}
.yfd{bottom:992.624000pt;}
.y50{bottom:1013.657333pt;}
.yd0{bottom:1029.295867pt;}
.y90{bottom:1029.296000pt;}
.y4e{bottom:1031.893333pt;}
.y4a{bottom:1045.012000pt;}
.ya4{bottom:1060.512000pt;}
.y8f{bottom:1069.168933pt;}
.ycf{bottom:1069.169333pt;}
.yfc{bottom:1070.808933pt;}
.y9e{bottom:1094.432000pt;}
.y56{bottom:1094.432400pt;}
.yfb{bottom:1116.028667pt;}
.y72{bottom:1159.976000pt;}
.y31{bottom:1160.089333pt;}
.y86{bottom:1160.092000pt;}
.yfa{bottom:1161.248000pt;}
.y6c{bottom:1268.776000pt;}
.yf9{bottom:1268.801333pt;}
.y1f{bottom:1299.849333pt;}
.yb8{bottom:1306.300000pt;}
.yb9{bottom:1318.806773pt;}
.yb6{bottom:1334.346133pt;}
.y1e{bottom:1342.560667pt;}
.ydf{bottom:1360.684667pt;}
.yb5{bottom:1374.219067pt;}
.y1d{bottom:1382.434133pt;}
.yde{bottom:1400.558133pt;}
.yba{bottom:1402.386667pt;}
.yb4{bottom:1414.092000pt;}
.y1c{bottom:1422.307067pt;}
.ybe{bottom:1428.706667pt;}
.ydd{bottom:1440.431067pt;}
.y6b{bottom:1447.297467pt;}
.yf7{bottom:1447.653333pt;}
.yb3{bottom:1453.965467pt;}
.y1b{bottom:1462.180000pt;}
.ydc{bottom:1480.304533pt;}
.ybb{bottom:1485.960133pt;}
.yb2{bottom:1493.926400pt;}
.y1a{bottom:1502.141467pt;}
.y6a{bottom:1505.964133pt;}
.yf6{bottom:1506.320000pt;}
.ydb{bottom:1520.265467pt;}
.yb1{bottom:1533.887333pt;}
.y19{bottom:1542.102400pt;}
.yda{bottom:1560.226933pt;}
.y69{bottom:1564.630800pt;}
.yf5{bottom:1564.986667pt;}
.ybc{bottom:1569.533600pt;}
.yb0{bottom:1573.760800pt;}
.y18{bottom:1581.975867pt;}
.yd9{bottom:1600.099867pt;}
.yaf{bottom:1613.633733pt;}
.y17{bottom:1621.848800pt;}
.y68{bottom:1623.297467pt;}
.yf4{bottom:1623.653333pt;}
.yd8{bottom:1639.973333pt;}
.ybd{bottom:1653.106667pt;}
.yae{bottom:1653.506667pt;}
.y67{bottom:1682.093333pt;}
.yf3{bottom:1682.320000pt;}
.yb7{bottom:1697.804800pt;}
.ye0{bottom:1697.810000pt;}
.y16{bottom:1697.813333pt;}
.yf2{bottom:1757.520000pt;}
.yad{bottom:1759.373333pt;}
.y2f{bottom:1759.853333pt;}
.y66{bottom:1795.026133pt;}
.y8{bottom:1799.960000pt;}
.yf1{bottom:1804.453333pt;}
.y27{bottom:1817.093333pt;}
.ya7{bottom:1817.186667pt;}
.y2b{bottom:1817.453333pt;}
.yaa{bottom:1817.540000pt;}
.y2c{bottom:1817.680000pt;}
.ye2{bottom:1818.026667pt;}
.y9{bottom:1839.520000pt;}
.y65{bottom:1841.959467pt;}
.yf0{bottom:1851.386667pt;}
.yac{bottom:1866.693333pt;}
.y2a{bottom:1870.466667pt;}
.ye1{bottom:1871.040000pt;}
.ya9{bottom:1871.773333pt;}
.y64{bottom:1888.892800pt;}
.yab{bottom:1896.026667pt;}
.yef{bottom:1898.320000pt;}
.y29{bottom:1899.800000pt;}
.y2e{bottom:1900.373333pt;}
.ya8{bottom:1901.106667pt;}
.y63{bottom:1935.826133pt;}
.yee{bottom:1945.253333pt;}
.y62{bottom:1982.759467pt;}
.yed{bottom:1992.186667pt;}
.y61{bottom:2029.692800pt;}
.yec{bottom:2039.120000pt;}
.y60{bottom:2076.626133pt;}
.yeb{bottom:2086.053333pt;}
.y5f{bottom:2123.559467pt;}
.yea{bottom:2132.986667pt;}
.y28{bottom:2160.466667pt;}
.y2d{bottom:2161.040000pt;}
.y5e{bottom:2170.492800pt;}
.ye9{bottom:2179.920000pt;}
.y5d{bottom:2217.426667pt;}
.ya6{bottom:2221.373333pt;}
.y30{bottom:2221.853333pt;}
.ye8{bottom:2226.853333pt;}
.y5c{bottom:2264.360000pt;}
.ye7{bottom:2273.786667pt;}
.y5b{bottom:2311.293333pt;}
.y85{bottom:2318.346667pt;}
.yc1{bottom:2318.533333pt;}
.y12{bottom:2318.853333pt;}
.ye6{bottom:2320.720000pt;}
.y5a{bottom:2358.226667pt;}
.ye5{bottom:2367.653333pt;}
.y84{bottom:2377.013333pt;}
.yc0{bottom:2377.200000pt;}
.y11{bottom:2377.520000pt;}
.y59{bottom:2405.160000pt;}
.ye4{bottom:2414.586667pt;}
.y83{bottom:2435.680000pt;}
.ybf{bottom:2435.866667pt;}
.y10{bottom:2436.186667pt;}
.y58{bottom:2452.093333pt;}
.ye3{bottom:2461.520000pt;}
.yf8{bottom:2562.786667pt;}
.y7e{bottom:2562.906667pt;}
.y57{bottom:2563.040000pt;}
.yf{bottom:2563.280000pt;}
.y7{bottom:2792.947467pt;}
.y3{bottom:2811.048933pt;}
.y2{bottom:2870.333333pt;}
.y6{bottom:2910.139600pt;}
.y1{bottom:2951.026667pt;}
.y5{bottom:3051.582267pt;}
.y4{bottom:3227.446267pt;}
.h16{height:49.257725pt;}
.h13{height:54.085091pt;}
.hc{height:58.320313pt;}
.h6{height:77.656250pt;}
.he{height:77.760417pt;}
.h1{height:79.166667pt;}
.hb{height:85.421875pt;}
.h1a{height:85.536458pt;}
.h1b{height:87.083333pt;}
.hd{height:95.422140pt;}
.h17{height:95.424473pt;}
.h5{height:105.558917pt;}
.h9{height:105.700512pt;}
.h11{height:124.416667pt;}
.h15{height:128.681066pt;}
.h19{height:131.373796pt;}
.hf{height:131.376902pt;}
.h18{height:131.380397pt;}
.h12{height:149.137500pt;}
.h2{height:155.520833pt;}
.h8{height:156.185685pt;}
.h4{height:233.281250pt;}
.h14{height:243.707578pt;}
.h10{height:294.470922pt;}
.h7{height:294.471311pt;}
.ha{height:384.000000pt;}
.h3{height:466.200914pt;}
.h0{height:3456.000000pt;}
.w1{width:480.000000pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:28.266667pt;}
.x18{left:42.133333pt;}
.x17{left:49.546667pt;}
.x16{left:56.973333pt;}
.x3e{left:60.356800pt;}
.x31{left:65.096000pt;}
.x45{left:67.850000pt;}
.x35{left:92.476667pt;}
.x3b{left:96.625977pt;}
.x39{left:112.418179pt;}
.x38{left:113.464533pt;}
.x33{left:126.163333pt;}
.x34{left:147.407333pt;}
.x19{left:156.546667pt;}
.x3a{left:159.893187pt;}
.x32{left:178.468000pt;}
.x36{left:185.506400pt;}
.x30{left:188.078667pt;}
.x46{left:222.766267pt;}
.x40{left:224.185333pt;}
.x37{left:236.474667pt;}
.x3d{left:317.646667pt;}
.x44{left:345.064000pt;}
.x41{left:361.206667pt;}
.x3f{left:577.133333pt;}
.x42{left:580.912000pt;}
.x43{left:587.379187pt;}
.x3c{left:611.446667pt;}
.x5{left:785.636000pt;}
.x4{left:823.182667pt;}
.x4d{left:922.422667pt;}
.x61{left:924.322667pt;}
.x4a{left:928.738800pt;}
.x6a{left:931.124000pt;}
.x51{left:940.140000pt;}
.x5b{left:942.808000pt;}
.x49{left:948.515333pt;}
.x5a{left:950.221333pt;}
.x53{left:953.426667pt;}
.x59{left:957.641333pt;}
.x52{left:960.846667pt;}
.x69{left:967.511824pt;}
.x64{left:971.791333pt;}
.x4c{left:973.600000pt;}
.x4e{left:994.263867pt;}
.x8{left:997.633333pt;}
.x65{left:999.793333pt;}
.x62{left:1021.214667pt;}
.x63{left:1028.205333pt;}
.x67{left:1030.868533pt;}
.x48{left:1035.962667pt;}
.x47{left:1042.237333pt;}
.x5c{left:1052.365333pt;}
.x68{left:1067.085333pt;}
.x57{left:1069.414920pt;}
.x56{left:1071.392000pt;}
.x4b{left:1119.304133pt;}
.x4f{left:1193.788000pt;}
.x55{left:1230.233333pt;}
.x58{left:1236.106667pt;}
.x54{left:1243.526667pt;}
.x5e{left:1306.301333pt;}
.x5f{left:1369.362267pt;}
.x66{left:1419.106667pt;}
.x5d{left:1465.000000pt;}
.x50{left:1480.880000pt;}
.x6{left:1486.569333pt;}
.x60{left:1598.386267pt;}
.x7f{left:1853.000000pt;}
.x85{left:1866.200000pt;}
.x6c{left:1877.013333pt;}
.x72{left:1880.746667pt;}
.x79{left:1886.613333pt;}
.x74{left:1893.440000pt;}
.x6f{left:1894.693333pt;}
.x7c{left:1899.133333pt;}
.x73{left:1900.866667pt;}
.x6d{left:1918.408133pt;}
.x87{left:1938.320000pt;}
.x80{left:1941.680000pt;}
.xb{left:1942.733333pt;}
.x86{left:1963.093333pt;}
.x7e{left:1975.411227pt;}
.x6b{left:1990.640000pt;}
.x6e{left:2009.246800pt;}
.x78{left:2010.612187pt;}
.x77{left:2012.589787pt;}
.x70{left:2016.462667pt;}
.x7{left:2090.532000pt;}
.x71{left:2135.653333pt;}
.x75{left:2170.840000pt;}
.x7b{left:2176.706667pt;}
.x7a{left:2184.133333pt;}
.xa{left:2185.826667pt;}
.x82{left:2246.813333pt;}
.x83{left:2253.280520pt;}
.x7d{left:2360.840000pt;}
.x81{left:2406.880000pt;}
.x76{left:2420.826667pt;}
.x84{left:2540.266667pt;}
.x15{left:2795.373333pt;}
.x20{left:2809.173333pt;}
.x29{left:2824.973333pt;}
.x2c{left:2830.840000pt;}
.x27{left:2838.253333pt;}
.x10{left:2840.360000pt;}
.x24{left:2842.146667pt;}
.x26{left:2845.680000pt;}
.x11{left:2863.134163pt;}
.xd{left:2868.693333pt;}
.x12{left:2869.648999pt;}
.x22{left:2881.280000pt;}
.xe{left:2882.957333pt;}
.x23{left:2888.546667pt;}
.x9{left:2891.946667pt;}
.x21{left:2906.066667pt;}
.x13{left:2917.800000pt;}
.xc{left:2945.706667pt;}
.x2f{left:2954.242427pt;}
.x2b{left:2956.225787pt;}
.xf{left:2972.786667pt;}
.x25{left:3032.160000pt;}
.x28{left:3115.066667pt;}
.x2d{left:3120.933333pt;}
.x1b{left:3128.400000pt;}
.x1d{left:3189.773333pt;}
.x1e{left:3196.240520pt;}
.x14{left:3295.248000pt;}
.x1c{left:3349.840000pt;}
.x2e{left:3364.586667pt;}
.x2a{left:3365.706667pt;}
.x1f{left:3483.226667pt;}
.x3{left:3602.249333pt;}
.x93{left:3750.554133pt;}
.x88{left:3751.960000pt;}
.x92{left:3757.850667pt;}
.x91{left:3759.320933pt;}
.x90{left:3782.960000pt;}
.x8a{left:3787.738547pt;}
.x8b{left:3796.296880pt;}
.x89{left:3799.066667pt;}
.x8c{left:3827.466613pt;}
.x8f{left:3853.053333pt;}
.x8e{left:3862.453333pt;}
.x8d{left:3894.652613pt;}
.x2{left:3903.373333pt;}
.x1{left:4351.146667pt;}
}




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