
    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_18ba0cd536a20b06e07fbfbe.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3fd2707d4096381b402739c7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3fba6fa201dd20cfecdb69f2.woff')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_16462e033b20c313901f42cd.woff')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_904831cfcc53a1a3d53219e5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_ddc8e6ae6e7a0089f1a6543e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.781000;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_52e0d703b27e695c4ac59fb6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.906308;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_8b72efbf79327fc751481218.woff')format("woff");}.ff8{font-family:ff8;line-height:0.715820;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_e22ffc17bb3bd51cc07d6150.woff')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_e06548761fb9266fe85e638e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.906308;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_45960362c1a8b319daa04ad8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_e42d727601372f562658b524.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919434;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_ddc8e6ae6e7a0089f1a6543e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.781000;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_52e0d703b27e695c4ac59fb6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.906308;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_8b72efbf79327fc751481218.woff')format("woff");}.fff{font-family:fff;line-height:0.715820;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_e22ffc17bb3bd51cc07d6150.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ddc8e6ae6e7a0089f1a6543e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.781000;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_52e0d703b27e695c4ac59fb6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.906308;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_8b72efbf79327fc751481218.woff')format("woff");}.ff13{font-family:ff13;line-height:0.715820;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_e22ffc17bb3bd51cc07d6150.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ddc8e6ae6e7a0089f1a6543e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.781000;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_52e0d703b27e695c4ac59fb6.woff')format("woff");}.ff16{font-family:ff16;line-height:0.906308;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:ff17;src:url('chunks/assets/font_8b72efbf79327fc751481218.woff')format("woff");}.ff17{font-family:ff17;line-height:0.715820;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:ff18;src:url('chunks/assets/font_e22ffc17bb3bd51cc07d6150.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_5d2dcc7beb73796443d81219.woff')format("woff");}.ff19{font-family:ff19;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-4.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001800px;}
.ls3{letter-spacing:0.003000px;}
.ls6{letter-spacing:2.100000px;}
.ls2{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls8{letter-spacing:14.400000px;}
.ls5{letter-spacing:27.000000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(38,122,200),0 0.015em rgb(38,122,200),0.015em 0 rgb(38,122,200),0 -0.015em  rgb(38,122,200);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(38,122,200);text-shadow:none;}
}
.ws0{word-spacing:-100.080000px;}
.ws2{word-spacing:-74.687035px;}
.ws1{word-spacing:-36.568231px;}
.wsa{word-spacing:-31.680000px;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-25.812000px;}
.ws1c{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.780000px;}
.wsb{word-spacing:-15.012000px;}
.wse{word-spacing:-14.400000px;}
.ws8{word-spacing:-12.240000px;}
.ws7{word-spacing:-2.100000px;}
.ws9{word-spacing:-1.776000px;}
.ws14{word-spacing:-1.080000px;}
.ws17{word-spacing:-0.300000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:1.320000px;}
.ws15{word-spacing:1.620000px;}
.wsd{word-spacing:2.160000px;}
.ws12{word-spacing:4.560000px;}
.ws13{word-spacing:5.220000px;}
.wsc{word-spacing:9.234000px;}
.ws11{word-spacing:10.380000px;}
.ws10{word-spacing:10.920000px;}
.wsf{word-spacing:12.840000px;}
.ws16{word-spacing:13.020000px;}
.ws1a{word-spacing:14.040000px;}
.ws1b{word-spacing:18.900000px;}
.ws18{word-spacing:27.600000px;}
._16{margin-left:-2916.981000px;}
._2c{margin-left:-880.344000px;}
._0{margin-left:-801.720000px;}
._28{margin-left:-648.144000px;}
._2{margin-left:-597.496282px;}
._2d{margin-left:-544.207200px;}
._29{margin-left:-504.180600px;}
._2b{margin-left:-468.874800px;}
._1{margin-left:-431.320972px;}
._2a{margin-left:-360.000000px;}
._15{margin-left:-16.196400px;}
._14{margin-left:-14.910600px;}
._7{margin-left:-13.296000px;}
._17{margin-left:-12.209400px;}
._8{margin-left:-10.800000px;}
._10{margin-left:-9.745800px;}
._d{margin-left:-7.839000px;}
._5{margin-left:-6.052200px;}
._6{margin-left:-5.042400px;}
._3{margin-left:-3.264000px;}
._4{margin-left:-2.025000px;}
._11{margin-left:-1.018200px;}
._13{width:1.087200px;}
._e{width:2.142000px;}
._21{width:3.175200px;}
._18{width:4.233600px;}
._19{width:6.016800px;}
._1b{width:7.028400px;}
._24{width:8.688000px;}
._f{width:9.688800px;}
._12{width:11.301600px;}
._1a{width:13.192800px;}
._23{width:14.304000px;}
._22{width:15.372000px;}
._27{width:16.461000px;}
._1f{width:18.640800px;}
._1c{width:20.141400px;}
._20{width:21.778200px;}
._25{width:23.760000px;}
._9{width:25.002000px;}
._c{width:27.000000px;}
._1d{width:32.896800px;}
._1e{width:34.133400px;}
._26{width:59.007000px;}
._b{width:105.361200px;}
._a{width:1012.597800px;}
.fc9{color:rgb(245,126,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(152,169,221);}
.fc5{color:rgb(66,178,60);}
.fc6{color:rgb(38,122,200);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(42,62,146);}
.fca{color:rgb(0,0,0);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:transparent;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:126.000000px;}
.fs1{font-size:131.540400px;}
.fs8{font-size:144.000000px;}
.fs7{font-size:180.000000px;}
.fs2{font-size:268.658400px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:78.581550px;}
.y11c{bottom:129.763200px;}
.y5b{bottom:132.431250px;}
.y12c{bottom:135.933300px;}
.y58{bottom:141.403650px;}
.y11b{bottom:147.763200px;}
.yba{bottom:148.115400px;}
.yf6{bottom:159.030450px;}
.y57{bottom:159.403650px;}
.y88{bottom:160.242600px;}
.y11a{bottom:165.763200px;}
.yb9{bottom:166.115400px;}
.yf5{bottom:177.030450px;}
.y56{bottom:177.403650px;}
.y87{bottom:177.792600px;}
.y119{bottom:183.763200px;}
.yb8{bottom:192.619200px;}
.yf4{bottom:195.030450px;}
.y86{bottom:195.342600px;}
.y55{bottom:195.403650px;}
.y118{bottom:201.763200px;}
.yb7{bottom:210.619200px;}
.yf3{bottom:213.030450px;}
.y54{bottom:213.403650px;}
.y2d{bottom:213.683400px;}
.y117{bottom:219.763200px;}
.y85{bottom:221.396550px;}
.yb6{bottom:228.619200px;}
.yf2{bottom:231.030450px;}
.y53{bottom:231.403650px;}
.y2c{bottom:231.683400px;}
.y116{bottom:237.763200px;}
.y84{bottom:238.946550px;}
.yb5{bottom:246.619200px;}
.yf1{bottom:249.030450px;}
.y52{bottom:249.403650px;}
.y2b{bottom:249.683400px;}
.y115{bottom:255.763200px;}
.y83{bottom:256.496550px;}
.yb4{bottom:264.619200px;}
.yf0{bottom:267.030450px;}
.y51{bottom:267.403650px;}
.y2a{bottom:267.683400px;}
.y114{bottom:273.763200px;}
.y82{bottom:282.550350px;}
.yb3{bottom:282.619200px;}
.yef{bottom:285.030450px;}
.y50{bottom:285.403650px;}
.y29{bottom:285.683400px;}
.y113{bottom:291.763200px;}
.y81{bottom:300.100500px;}
.y14f{bottom:302.845350px;}
.yee{bottom:303.030450px;}
.y4f{bottom:303.403650px;}
.y28{bottom:303.683400px;}
.y112{bottom:309.763200px;}
.y80{bottom:317.650500px;}
.y14e{bottom:320.845350px;}
.yed{bottom:321.030450px;}
.y4e{bottom:321.403650px;}
.y27{bottom:321.683400px;}
.y111{bottom:327.763200px;}
.yb2{bottom:330.208050px;}
.y7f{bottom:335.200500px;}
.yec{bottom:339.030450px;}
.y26{bottom:339.683400px;}
.y110{bottom:345.763200px;}
.y158{bottom:355.244250px;}
.yb1{bottom:356.712000px;}
.yeb{bottom:357.030450px;}
.y25{bottom:357.683400px;}
.y7e{bottom:361.254300px;}
.y10f{bottom:363.763200px;}
.yb0{bottom:374.712000px;}
.yea{bottom:375.030450px;}
.y157{bottom:375.044250px;}
.y24{bottom:375.683400px;}
.y7d{bottom:378.804450px;}
.y10e{bottom:381.763200px;}
.yaf{bottom:392.712000px;}
.ye9{bottom:393.030450px;}
.y23{bottom:393.683400px;}
.y156{bottom:394.844250px;}
.y7c{bottom:396.354450px;}
.y4d{bottom:402.176550px;}
.yae{bottom:410.712000px;}
.ye8{bottom:411.030450px;}
.y22{bottom:411.683400px;}
.y155{bottom:414.644250px;}
.y10d{bottom:417.763200px;}
.y4c{bottom:420.176550px;}
.y7b{bottom:422.408400px;}
.yad{bottom:428.712000px;}
.ye7{bottom:429.030450px;}
.y21{bottom:429.683400px;}
.y154{bottom:434.444250px;}
.y10c{bottom:435.763200px;}
.y4b{bottom:438.176550px;}
.y7a{bottom:439.958250px;}
.ye6{bottom:447.030450px;}
.y20{bottom:447.683400px;}
.y10b{bottom:453.763200px;}
.y4a{bottom:456.176550px;}
.y79{bottom:457.958250px;}
.y149{bottom:464.015100px;}
.ye5{bottom:465.030450px;}
.y1f{bottom:465.683400px;}
.y10a{bottom:469.963200px;}
.y49{bottom:474.176550px;}
.yac{bottom:474.624900px;}
.y12b{bottom:478.533750px;}
.y148{bottom:480.215100px;}
.ye4{bottom:483.030450px;}
.y1e{bottom:483.683400px;}
.y78{bottom:484.012200px;}
.y48{bottom:492.176550px;}
.y147{bottom:496.415100px;}
.y12a{bottom:496.533750px;}
.ye3{bottom:501.030450px;}
.yab{bottom:501.128850px;}
.y77{bottom:501.562200px;}
.y1d{bottom:501.683400px;}
.y146{bottom:512.615100px;}
.y129{bottom:514.533750px;}
.ye2{bottom:519.030450px;}
.y76{bottom:519.112200px;}
.yaa{bottom:519.128850px;}
.y1c{bottom:519.683400px;}
.y145{bottom:528.815100px;}
.y128{bottom:532.533750px;}
.ye1{bottom:537.030450px;}
.ya9{bottom:537.128850px;}
.y1b{bottom:537.683400px;}
.y144{bottom:545.015100px;}
.y75{bottom:545.166150px;}
.y127{bottom:550.533750px;}
.ye0{bottom:555.030450px;}
.ya8{bottom:555.128850px;}
.y1a{bottom:555.683400px;}
.y143{bottom:561.215100px;}
.y47{bottom:562.444800px;}
.y74{bottom:562.716150px;}
.y126{bottom:568.533750px;}
.ydf{bottom:573.030450px;}
.ya7{bottom:573.128850px;}
.y19{bottom:573.683400px;}
.y46{bottom:576.844800px;}
.y142{bottom:577.415100px;}
.y73{bottom:580.266150px;}
.y125{bottom:586.533750px;}
.yde{bottom:591.030450px;}
.ya6{bottom:591.128850px;}
.y45{bottom:591.244800px;}
.y18{bottom:591.683400px;}
.y141{bottom:593.615100px;}
.y124{bottom:604.533750px;}
.y44{bottom:605.644800px;}
.y72{bottom:606.320100px;}
.ydd{bottom:609.030450px;}
.y17{bottom:609.683400px;}
.y140{bottom:609.815100px;}
.y43{bottom:620.044800px;}
.ya3{bottom:620.433150px;}
.y123{bottom:622.533750px;}
.y71{bottom:623.870100px;}
.y13f{bottom:626.015100px;}
.y153{bottom:626.867850px;}
.ydc{bottom:627.030450px;}
.y16{bottom:627.683400px;}
.y42{bottom:634.444800px;}
.ya2{bottom:637.983150px;}
.y122{bottom:640.533750px;}
.y70{bottom:641.420100px;}
.y13e{bottom:642.215100px;}
.ydb{bottom:645.030450px;}
.y15{bottom:645.683400px;}
.y152{bottom:646.667850px;}
.y41{bottom:648.844800px;}
.yc0{bottom:657.530850px;}
.y13d{bottom:658.415100px;}
.y121{bottom:658.533750px;}
.yda{bottom:663.030450px;}
.y40{bottom:663.244800px;}
.y14{bottom:663.683400px;}
.ya1{bottom:664.037100px;}
.y151{bottom:666.467850px;}
.y6f{bottom:667.474050px;}
.ybf{bottom:677.330850px;}
.y3f{bottom:677.644800px;}
.yd9{bottom:681.030450px;}
.ya0{bottom:681.587100px;}
.y13{bottom:681.683400px;}
.y6e{bottom:685.024050px;}
.y150{bottom:686.267850px;}
.y3e{bottom:692.044800px;}
.y13c{bottom:692.615100px;}
.y120{bottom:694.533750px;}
.ybe{bottom:697.130850px;}
.yd8{bottom:699.030450px;}
.y9f{bottom:699.137100px;}
.y12{bottom:699.683400px;}
.y6d{bottom:702.574050px;}
.y3d{bottom:706.444800px;}
.y13b{bottom:710.615100px;}
.ybd{bottom:716.930850px;}
.yd7{bottom:717.030450px;}
.y11{bottom:717.683400px;}
.y3c{bottom:720.844800px;}
.y9e{bottom:725.191050px;}
.y13a{bottom:728.615100px;}
.y6c{bottom:728.628000px;}
.yd6{bottom:735.030450px;}
.y109{bottom:735.111150px;}
.y3b{bottom:735.244800px;}
.y10{bottom:735.683400px;}
.ybc{bottom:736.730850px;}
.y9d{bottom:742.741050px;}
.y6b{bottom:746.178000px;}
.y139{bottom:746.615100px;}
.y3a{bottom:749.644800px;}
.y14a{bottom:750.626550px;}
.yd5{bottom:753.030450px;}
.y108{bottom:753.111150px;}
.yf{bottom:753.683400px;}
.ybb{bottom:756.530850px;}
.y9c{bottom:760.291050px;}
.y6a{bottom:763.728000px;}
.y39{bottom:764.044800px;}
.y138{bottom:764.615100px;}
.y2{bottom:769.573800px;}
.yd4{bottom:771.030450px;}
.y107{bottom:771.111150px;}
.ye{bottom:771.683400px;}
.y38{bottom:778.444800px;}
.y137{bottom:782.614950px;}
.y9b{bottom:786.345000px;}
.yd3{bottom:789.030450px;}
.y106{bottom:789.111150px;}
.yd{bottom:789.683400px;}
.y69{bottom:789.781950px;}
.y37{bottom:792.844800px;}
.y136{bottom:800.614950px;}
.y9a{bottom:803.894850px;}
.y105{bottom:807.111150px;}
.y36{bottom:807.244800px;}
.y68{bottom:807.331950px;}
.y3{bottom:807.481350px;}
.yc{bottom:807.683400px;}
.yd2{bottom:815.534400px;}
.y135{bottom:818.614950px;}
.y99{bottom:821.444850px;}
.y35{bottom:821.644800px;}
.y14d{bottom:824.305800px;}
.y67{bottom:824.881950px;}
.y104{bottom:825.111150px;}
.yb{bottom:825.683400px;}
.y34{bottom:836.044800px;}
.y134{bottom:836.614950px;}
.y103{bottom:843.111150px;}
.ya{bottom:843.683400px;}
.y98{bottom:847.498950px;}
.y33{bottom:850.444800px;}
.y66{bottom:850.935900px;}
.y14c{bottom:854.409750px;}
.yd1{bottom:854.534400px;}
.y133{bottom:854.614950px;}
.y102{bottom:861.111150px;}
.y32{bottom:864.844800px;}
.y97{bottom:865.048800px;}
.y65{bottom:868.485900px;}
.y9{bottom:870.187350px;}
.yd0{bottom:872.534400px;}
.y132{bottom:872.614950px;}
.y101{bottom:879.111150px;}
.y31{bottom:879.244800px;}
.y96{bottom:882.598800px;}
.y14b{bottom:884.513700px;}
.y64{bottom:886.035900px;}
.y8{bottom:888.187350px;}
.ycf{bottom:890.534400px;}
.y30{bottom:893.644800px;}
.y131{bottom:899.119050px;}
.y100{bottom:905.614950px;}
.y2f{bottom:908.044800px;}
.yce{bottom:908.534400px;}
.y95{bottom:908.652900px;}
.y63{bottom:912.089850px;}
.y7{bottom:914.691300px;}
.y2e{bottom:922.444800px;}
.y94{bottom:926.202750px;}
.ycd{bottom:926.534400px;}
.y62{bottom:929.639850px;}
.y6{bottom:932.691300px;}
.y130{bottom:938.119050px;}
.ycc{bottom:944.534400px;}
.yff{bottom:944.614950px;}
.y1{bottom:946.740300px;}
.y93{bottom:952.256700px;}
.y61{bottom:955.693800px;}
.y12f{bottom:956.119050px;}
.ycb{bottom:962.534400px;}
.yfe{bottom:962.614950px;}
.y92{bottom:969.806700px;}
.y12e{bottom:974.119050px;}
.y60{bottom:975.493800px;}
.yca{bottom:980.534400px;}
.yfd{bottom:980.614950px;}
.y91{bottom:987.356850px;}
.y12d{bottom:992.119050px;}
.y5f{bottom:993.043800px;}
.yc9{bottom:998.534400px;}
.yfc{bottom:998.614950px;}
.y11f{bottom:1010.119050px;}
.y90{bottom:1013.410650px;}
.yc8{bottom:1016.534400px;}
.y5e{bottom:1019.097600px;}
.yfb{bottom:1025.119050px;}
.y11e{bottom:1028.119050px;}
.y8f{bottom:1030.960650px;}
.yc7{bottom:1034.534400px;}
.y5d{bottom:1036.647600px;}
.y11d{bottom:1046.119050px;}
.y8e{bottom:1048.510650px;}
.yc6{bottom:1052.534400px;}
.y5c{bottom:1054.197750px;}
.yfa{bottom:1064.119050px;}
.yc5{bottom:1070.534400px;}
.y8d{bottom:1074.564600px;}
.yf9{bottom:1082.119050px;}
.yc4{bottom:1088.534400px;}
.y8c{bottom:1092.114600px;}
.ya5{bottom:1093.837500px;}
.yf8{bottom:1100.119050px;}
.yc3{bottom:1106.534400px;}
.y8b{bottom:1109.664600px;}
.yf7{bottom:1118.119050px;}
.yc2{bottom:1124.534400px;}
.y8a{bottom:1135.718550px;}
.y5{bottom:1136.119050px;}
.ya4{bottom:1137.037500px;}
.yc1{bottom:1151.038350px;}
.y89{bottom:1153.268550px;}
.y4{bottom:1154.119050px;}
.y59{bottom:1188.116700px;}
.h12{height:34.945312px;}
.hb{height:34.968750px;}
.h11{height:34.992188px;}
.h13{height:38.988000px;}
.h7{height:39.313477px;}
.h6{height:39.339844px;}
.h8{height:39.366211px;}
.h17{height:41.923828px;}
.h18{height:42.070312px;}
.ha{height:42.539062px;}
.hf{height:43.320000px;}
.h5{height:43.681641px;}
.hd{height:43.710938px;}
.h1b{height:43.740234px;}
.h9{height:47.856445px;}
.h1d{height:48.082031px;}
.h15{height:48.114258px;}
.h16{height:50.308594px;}
.he{height:52.560000px;}
.hc{height:53.173828px;}
.h1c{height:58.491211px;}
.h1a{height:63.808594px;}
.h19{height:85.148438px;}
.h3{height:95.829237px;}
.h14{height:100.617188px;}
.h10{height:126.210938px;}
.h4{height:195.853023px;}
.h2{height:262.441406px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:31.351200px;}
.x2{left:52.138650px;}
.x12{left:64.449150px;}
.x7{left:68.031450px;}
.x1d{left:69.717150px;}
.x1b{left:74.031450px;}
.x10{left:81.637800px;}
.x19{left:89.497050px;}
.x1f{left:90.510600px;}
.x6{left:97.795350px;}
.x2b{left:101.877300px;}
.x11{left:109.077150px;}
.x17{left:110.551200px;}
.x31{left:113.191050px;}
.x32{left:123.120750px;}
.x8{left:127.559100px;}
.x1c{left:132.412500px;}
.x13{left:140.314950px;}
.x1e{left:170.593650px;}
.x2e{left:208.346400px;}
.x37{left:216.316050px;}
.x35{left:227.937750px;}
.x36{left:242.157600px;}
.x34{left:270.110250px;}
.x2f{left:319.105950px;}
.x20{left:327.101400px;}
.x21{left:330.628050px;}
.x24{left:337.087950px;}
.x23{left:343.115850px;}
.x38{left:345.754050px;}
.x33{left:369.641850px;}
.x30{left:379.223100px;}
.x2d{left:386.449200px;}
.xc{left:429.572400px;}
.xe{left:431.700150px;}
.xd{left:440.870100px;}
.x9{left:444.330750px;}
.x22{left:450.686550px;}
.x14{left:472.580700px;}
.xf{left:485.046000px;}
.xa{left:503.858250px;}
.xb{left:535.030200px;}
.x1a{left:546.792000px;}
.x27{left:576.566850px;}
.x29{left:588.955950px;}
.x5{left:633.932100px;}
.x25{left:652.990950px;}
.x2c{left:675.640650px;}
.x1{left:679.618950px;}
.x28{left:683.409150px;}
.x26{left:705.254400px;}
.x4{left:724.825650px;}
.x2a{left:726.768450px;}
.x18{left:769.436400px;}
.x15{left:776.636400px;}
.x16{left:855.632400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001600pt;}
.ls3{letter-spacing:0.002667pt;}
.ls6{letter-spacing:1.866667pt;}
.ls2{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls8{letter-spacing:12.800000pt;}
.ls5{letter-spacing:24.000000pt;}
.ws0{word-spacing:-88.960000pt;}
.ws2{word-spacing:-66.388476pt;}
.ws1{word-spacing:-32.505094pt;}
.wsa{word-spacing:-28.160000pt;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-22.944000pt;}
.ws1c{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.693333pt;}
.wsb{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.800000pt;}
.ws8{word-spacing:-10.880000pt;}
.ws7{word-spacing:-1.866667pt;}
.ws9{word-spacing:-1.578667pt;}
.ws14{word-spacing:-0.960000pt;}
.ws17{word-spacing:-0.266667pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:1.173333pt;}
.ws15{word-spacing:1.440000pt;}
.wsd{word-spacing:1.920000pt;}
.ws12{word-spacing:4.053333pt;}
.ws13{word-spacing:4.640000pt;}
.wsc{word-spacing:8.208000pt;}
.ws11{word-spacing:9.226667pt;}
.ws10{word-spacing:9.706667pt;}
.wsf{word-spacing:11.413333pt;}
.ws16{word-spacing:11.573333pt;}
.ws1a{word-spacing:12.480000pt;}
.ws1b{word-spacing:16.800000pt;}
.ws18{word-spacing:24.533333pt;}
._16{margin-left:-2592.872000pt;}
._2c{margin-left:-782.528000pt;}
._0{margin-left:-712.640000pt;}
._28{margin-left:-576.128000pt;}
._2{margin-left:-531.107806pt;}
._2d{margin-left:-483.739733pt;}
._29{margin-left:-448.160533pt;}
._2b{margin-left:-416.777600pt;}
._1{margin-left:-383.396419pt;}
._2a{margin-left:-320.000000pt;}
._15{margin-left:-14.396800pt;}
._14{margin-left:-13.253867pt;}
._7{margin-left:-11.818667pt;}
._17{margin-left:-10.852800pt;}
._8{margin-left:-9.600000pt;}
._10{margin-left:-8.662933pt;}
._d{margin-left:-6.968000pt;}
._5{margin-left:-5.379733pt;}
._6{margin-left:-4.482133pt;}
._3{margin-left:-2.901333pt;}
._4{margin-left:-1.800000pt;}
._11{margin-left:-0.905067pt;}
._13{width:0.966400pt;}
._e{width:1.904000pt;}
._21{width:2.822400pt;}
._18{width:3.763200pt;}
._19{width:5.348267pt;}
._1b{width:6.247467pt;}
._24{width:7.722667pt;}
._f{width:8.612267pt;}
._12{width:10.045867pt;}
._1a{width:11.726933pt;}
._23{width:12.714667pt;}
._22{width:13.664000pt;}
._27{width:14.632000pt;}
._1f{width:16.569600pt;}
._1c{width:17.903467pt;}
._20{width:19.358400pt;}
._25{width:21.120000pt;}
._9{width:22.224000pt;}
._c{width:24.000000pt;}
._1d{width:29.241600pt;}
._1e{width:30.340800pt;}
._26{width:52.450667pt;}
._b{width:93.654400pt;}
._a{width:900.086933pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:112.000000pt;}
.fs1{font-size:116.924800pt;}
.fs8{font-size:128.000000pt;}
.fs7{font-size:160.000000pt;}
.fs2{font-size:238.807467pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:69.850267pt;}
.y11c{bottom:115.345067pt;}
.y5b{bottom:117.716667pt;}
.y12c{bottom:120.829600pt;}
.y58{bottom:125.692133pt;}
.y11b{bottom:131.345067pt;}
.yba{bottom:131.658133pt;}
.yf6{bottom:141.360400pt;}
.y57{bottom:141.692133pt;}
.y88{bottom:142.437867pt;}
.y11a{bottom:147.345067pt;}
.yb9{bottom:147.658133pt;}
.yf5{bottom:157.360400pt;}
.y56{bottom:157.692133pt;}
.y87{bottom:158.037867pt;}
.y119{bottom:163.345067pt;}
.yb8{bottom:171.217067pt;}
.yf4{bottom:173.360400pt;}
.y86{bottom:173.637867pt;}
.y55{bottom:173.692133pt;}
.y118{bottom:179.345067pt;}
.yb7{bottom:187.217067pt;}
.yf3{bottom:189.360400pt;}
.y54{bottom:189.692133pt;}
.y2d{bottom:189.940800pt;}
.y117{bottom:195.345067pt;}
.y85{bottom:196.796933pt;}
.yb6{bottom:203.217067pt;}
.yf2{bottom:205.360400pt;}
.y53{bottom:205.692133pt;}
.y2c{bottom:205.940800pt;}
.y116{bottom:211.345067pt;}
.y84{bottom:212.396933pt;}
.yb5{bottom:219.217067pt;}
.yf1{bottom:221.360400pt;}
.y52{bottom:221.692133pt;}
.y2b{bottom:221.940800pt;}
.y115{bottom:227.345067pt;}
.y83{bottom:227.996933pt;}
.yb4{bottom:235.217067pt;}
.yf0{bottom:237.360400pt;}
.y51{bottom:237.692133pt;}
.y2a{bottom:237.940800pt;}
.y114{bottom:243.345067pt;}
.y82{bottom:251.155867pt;}
.yb3{bottom:251.217067pt;}
.yef{bottom:253.360400pt;}
.y50{bottom:253.692133pt;}
.y29{bottom:253.940800pt;}
.y113{bottom:259.345067pt;}
.y81{bottom:266.756000pt;}
.y14f{bottom:269.195867pt;}
.yee{bottom:269.360400pt;}
.y4f{bottom:269.692133pt;}
.y28{bottom:269.940800pt;}
.y112{bottom:275.345067pt;}
.y80{bottom:282.356000pt;}
.y14e{bottom:285.195867pt;}
.yed{bottom:285.360400pt;}
.y4e{bottom:285.692133pt;}
.y27{bottom:285.940800pt;}
.y111{bottom:291.345067pt;}
.yb2{bottom:293.518267pt;}
.y7f{bottom:297.956000pt;}
.yec{bottom:301.360400pt;}
.y26{bottom:301.940800pt;}
.y110{bottom:307.345067pt;}
.y158{bottom:315.772667pt;}
.yb1{bottom:317.077333pt;}
.yeb{bottom:317.360400pt;}
.y25{bottom:317.940800pt;}
.y7e{bottom:321.114933pt;}
.y10f{bottom:323.345067pt;}
.yb0{bottom:333.077333pt;}
.yea{bottom:333.360400pt;}
.y157{bottom:333.372667pt;}
.y24{bottom:333.940800pt;}
.y7d{bottom:336.715067pt;}
.y10e{bottom:339.345067pt;}
.yaf{bottom:349.077333pt;}
.ye9{bottom:349.360400pt;}
.y23{bottom:349.940800pt;}
.y156{bottom:350.972667pt;}
.y7c{bottom:352.315067pt;}
.y4d{bottom:357.490267pt;}
.yae{bottom:365.077333pt;}
.ye8{bottom:365.360400pt;}
.y22{bottom:365.940800pt;}
.y155{bottom:368.572667pt;}
.y10d{bottom:371.345067pt;}
.y4c{bottom:373.490267pt;}
.y7b{bottom:375.474133pt;}
.yad{bottom:381.077333pt;}
.ye7{bottom:381.360400pt;}
.y21{bottom:381.940800pt;}
.y154{bottom:386.172667pt;}
.y10c{bottom:387.345067pt;}
.y4b{bottom:389.490267pt;}
.y7a{bottom:391.074000pt;}
.ye6{bottom:397.360400pt;}
.y20{bottom:397.940800pt;}
.y10b{bottom:403.345067pt;}
.y4a{bottom:405.490267pt;}
.y79{bottom:407.074000pt;}
.y149{bottom:412.457867pt;}
.ye5{bottom:413.360400pt;}
.y1f{bottom:413.940800pt;}
.y10a{bottom:417.745067pt;}
.y49{bottom:421.490267pt;}
.yac{bottom:421.888800pt;}
.y12b{bottom:425.363333pt;}
.y148{bottom:426.857867pt;}
.ye4{bottom:429.360400pt;}
.y1e{bottom:429.940800pt;}
.y78{bottom:430.233067pt;}
.y48{bottom:437.490267pt;}
.y147{bottom:441.257867pt;}
.y12a{bottom:441.363333pt;}
.ye3{bottom:445.360400pt;}
.yab{bottom:445.447867pt;}
.y77{bottom:445.833067pt;}
.y1d{bottom:445.940800pt;}
.y146{bottom:455.657867pt;}
.y129{bottom:457.363333pt;}
.ye2{bottom:461.360400pt;}
.y76{bottom:461.433067pt;}
.yaa{bottom:461.447867pt;}
.y1c{bottom:461.940800pt;}
.y145{bottom:470.057867pt;}
.y128{bottom:473.363333pt;}
.ye1{bottom:477.360400pt;}
.ya9{bottom:477.447867pt;}
.y1b{bottom:477.940800pt;}
.y144{bottom:484.457867pt;}
.y75{bottom:484.592133pt;}
.y127{bottom:489.363333pt;}
.ye0{bottom:493.360400pt;}
.ya8{bottom:493.447867pt;}
.y1a{bottom:493.940800pt;}
.y143{bottom:498.857867pt;}
.y47{bottom:499.950933pt;}
.y74{bottom:500.192133pt;}
.y126{bottom:505.363333pt;}
.ydf{bottom:509.360400pt;}
.ya7{bottom:509.447867pt;}
.y19{bottom:509.940800pt;}
.y46{bottom:512.750933pt;}
.y142{bottom:513.257867pt;}
.y73{bottom:515.792133pt;}
.y125{bottom:521.363333pt;}
.yde{bottom:525.360400pt;}
.ya6{bottom:525.447867pt;}
.y45{bottom:525.550933pt;}
.y18{bottom:525.940800pt;}
.y141{bottom:527.657867pt;}
.y124{bottom:537.363333pt;}
.y44{bottom:538.350933pt;}
.y72{bottom:538.951200pt;}
.ydd{bottom:541.360400pt;}
.y17{bottom:541.940800pt;}
.y140{bottom:542.057867pt;}
.y43{bottom:551.150933pt;}
.ya3{bottom:551.496133pt;}
.y123{bottom:553.363333pt;}
.y71{bottom:554.551200pt;}
.y13f{bottom:556.457867pt;}
.y153{bottom:557.215867pt;}
.ydc{bottom:557.360400pt;}
.y16{bottom:557.940800pt;}
.y42{bottom:563.950933pt;}
.ya2{bottom:567.096133pt;}
.y122{bottom:569.363333pt;}
.y70{bottom:570.151200pt;}
.y13e{bottom:570.857867pt;}
.ydb{bottom:573.360400pt;}
.y15{bottom:573.940800pt;}
.y152{bottom:574.815867pt;}
.y41{bottom:576.750933pt;}
.yc0{bottom:584.471867pt;}
.y13d{bottom:585.257867pt;}
.y121{bottom:585.363333pt;}
.yda{bottom:589.360400pt;}
.y40{bottom:589.550933pt;}
.y14{bottom:589.940800pt;}
.ya1{bottom:590.255200pt;}
.y151{bottom:592.415867pt;}
.y6f{bottom:593.310267pt;}
.ybf{bottom:602.071867pt;}
.y3f{bottom:602.350933pt;}
.yd9{bottom:605.360400pt;}
.ya0{bottom:605.855200pt;}
.y13{bottom:605.940800pt;}
.y6e{bottom:608.910267pt;}
.y150{bottom:610.015867pt;}
.y3e{bottom:615.150933pt;}
.y13c{bottom:615.657867pt;}
.y120{bottom:617.363333pt;}
.ybe{bottom:619.671867pt;}
.yd8{bottom:621.360400pt;}
.y9f{bottom:621.455200pt;}
.y12{bottom:621.940800pt;}
.y6d{bottom:624.510267pt;}
.y3d{bottom:627.950933pt;}
.y13b{bottom:631.657867pt;}
.ybd{bottom:637.271867pt;}
.yd7{bottom:637.360400pt;}
.y11{bottom:637.940800pt;}
.y3c{bottom:640.750933pt;}
.y9e{bottom:644.614267pt;}
.y13a{bottom:647.657867pt;}
.y6c{bottom:647.669333pt;}
.yd6{bottom:653.360400pt;}
.y109{bottom:653.432133pt;}
.y3b{bottom:653.550933pt;}
.y10{bottom:653.940800pt;}
.ybc{bottom:654.871867pt;}
.y9d{bottom:660.214267pt;}
.y6b{bottom:663.269333pt;}
.y139{bottom:663.657867pt;}
.y3a{bottom:666.350933pt;}
.y14a{bottom:667.223600pt;}
.yd5{bottom:669.360400pt;}
.y108{bottom:669.432133pt;}
.yf{bottom:669.940800pt;}
.ybb{bottom:672.471867pt;}
.y9c{bottom:675.814267pt;}
.y6a{bottom:678.869333pt;}
.y39{bottom:679.150933pt;}
.y138{bottom:679.657867pt;}
.y2{bottom:684.065600pt;}
.yd4{bottom:685.360400pt;}
.y107{bottom:685.432133pt;}
.ye{bottom:685.940800pt;}
.y38{bottom:691.950933pt;}
.y137{bottom:695.657733pt;}
.y9b{bottom:698.973333pt;}
.yd3{bottom:701.360400pt;}
.y106{bottom:701.432133pt;}
.yd{bottom:701.940800pt;}
.y69{bottom:702.028400pt;}
.y37{bottom:704.750933pt;}
.y136{bottom:711.657733pt;}
.y9a{bottom:714.573200pt;}
.y105{bottom:717.432133pt;}
.y36{bottom:717.550933pt;}
.y68{bottom:717.628400pt;}
.y3{bottom:717.761200pt;}
.yc{bottom:717.940800pt;}
.yd2{bottom:724.919467pt;}
.y135{bottom:727.657733pt;}
.y99{bottom:730.173200pt;}
.y35{bottom:730.350933pt;}
.y14d{bottom:732.716267pt;}
.y67{bottom:733.228400pt;}
.y104{bottom:733.432133pt;}
.yb{bottom:733.940800pt;}
.y34{bottom:743.150933pt;}
.y134{bottom:743.657733pt;}
.y103{bottom:749.432133pt;}
.ya{bottom:749.940800pt;}
.y98{bottom:753.332400pt;}
.y33{bottom:755.950933pt;}
.y66{bottom:756.387467pt;}
.y14c{bottom:759.475333pt;}
.yd1{bottom:759.586133pt;}
.y133{bottom:759.657733pt;}
.y102{bottom:765.432133pt;}
.y32{bottom:768.750933pt;}
.y97{bottom:768.932267pt;}
.y65{bottom:771.987467pt;}
.y9{bottom:773.499867pt;}
.yd0{bottom:775.586133pt;}
.y132{bottom:775.657733pt;}
.y101{bottom:781.432133pt;}
.y31{bottom:781.550933pt;}
.y96{bottom:784.532267pt;}
.y14b{bottom:786.234400pt;}
.y64{bottom:787.587467pt;}
.y8{bottom:789.499867pt;}
.ycf{bottom:791.586133pt;}
.y30{bottom:794.350933pt;}
.y131{bottom:799.216933pt;}
.y100{bottom:804.991067pt;}
.y2f{bottom:807.150933pt;}
.yce{bottom:807.586133pt;}
.y95{bottom:807.691467pt;}
.y63{bottom:810.746533pt;}
.y7{bottom:813.058933pt;}
.y2e{bottom:819.950933pt;}
.y94{bottom:823.291333pt;}
.ycd{bottom:823.586133pt;}
.y62{bottom:826.346533pt;}
.y6{bottom:829.058933pt;}
.y130{bottom:833.883600pt;}
.ycc{bottom:839.586133pt;}
.yff{bottom:839.657733pt;}
.y1{bottom:841.546933pt;}
.y93{bottom:846.450400pt;}
.y61{bottom:849.505600pt;}
.y12f{bottom:849.883600pt;}
.ycb{bottom:855.586133pt;}
.yfe{bottom:855.657733pt;}
.y92{bottom:862.050400pt;}
.y12e{bottom:865.883600pt;}
.y60{bottom:867.105600pt;}
.yca{bottom:871.586133pt;}
.yfd{bottom:871.657733pt;}
.y91{bottom:877.650533pt;}
.y12d{bottom:881.883600pt;}
.y5f{bottom:882.705600pt;}
.yc9{bottom:887.586133pt;}
.yfc{bottom:887.657733pt;}
.y11f{bottom:897.883600pt;}
.y90{bottom:900.809467pt;}
.yc8{bottom:903.586133pt;}
.y5e{bottom:905.864533pt;}
.yfb{bottom:911.216933pt;}
.y11e{bottom:913.883600pt;}
.y8f{bottom:916.409467pt;}
.yc7{bottom:919.586133pt;}
.y5d{bottom:921.464533pt;}
.y11d{bottom:929.883600pt;}
.y8e{bottom:932.009467pt;}
.yc6{bottom:935.586133pt;}
.y5c{bottom:937.064667pt;}
.yfa{bottom:945.883600pt;}
.yc5{bottom:951.586133pt;}
.y8d{bottom:955.168533pt;}
.yf9{bottom:961.883600pt;}
.yc4{bottom:967.586133pt;}
.y8c{bottom:970.768533pt;}
.ya5{bottom:972.300000pt;}
.yf8{bottom:977.883600pt;}
.yc3{bottom:983.586133pt;}
.y8b{bottom:986.368533pt;}
.yf7{bottom:993.883600pt;}
.yc2{bottom:999.586133pt;}
.y8a{bottom:1009.527600pt;}
.y5{bottom:1009.883600pt;}
.ya4{bottom:1010.700000pt;}
.yc1{bottom:1023.145200pt;}
.y89{bottom:1025.127600pt;}
.y4{bottom:1025.883600pt;}
.y59{bottom:1056.103733pt;}
.h12{height:31.062500pt;}
.hb{height:31.083333pt;}
.h11{height:31.104167pt;}
.h13{height:34.656000pt;}
.h7{height:34.945312pt;}
.h6{height:34.968750pt;}
.h8{height:34.992188pt;}
.h17{height:37.265625pt;}
.h18{height:37.395833pt;}
.ha{height:37.812500pt;}
.hf{height:38.506667pt;}
.h5{height:38.828125pt;}
.hd{height:38.854167pt;}
.h1b{height:38.880208pt;}
.h9{height:42.539062pt;}
.h1d{height:42.739583pt;}
.h15{height:42.768229pt;}
.h16{height:44.718750pt;}
.he{height:46.720000pt;}
.hc{height:47.265625pt;}
.h1c{height:51.992188pt;}
.h1a{height:56.718750pt;}
.h19{height:75.687500pt;}
.h3{height:85.181544pt;}
.h14{height:89.437500pt;}
.h10{height:112.187500pt;}
.h4{height:174.091576pt;}
.h2{height:233.281250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:27.867733pt;}
.x2{left:46.345467pt;}
.x12{left:57.288133pt;}
.x7{left:60.472400pt;}
.x1d{left:61.970800pt;}
.x1b{left:65.805733pt;}
.x10{left:72.566933pt;}
.x19{left:79.552933pt;}
.x1f{left:80.453867pt;}
.x6{left:86.929200pt;}
.x2b{left:90.557600pt;}
.x11{left:96.957467pt;}
.x17{left:98.267733pt;}
.x31{left:100.614267pt;}
.x32{left:109.440667pt;}
.x8{left:113.385867pt;}
.x1c{left:117.700000pt;}
.x13{left:124.724400pt;}
.x1e{left:151.638800pt;}
.x2e{left:185.196800pt;}
.x37{left:192.280933pt;}
.x35{left:202.611333pt;}
.x36{left:215.251200pt;}
.x34{left:240.098000pt;}
.x2f{left:283.649733pt;}
.x20{left:290.756800pt;}
.x21{left:293.891600pt;}
.x24{left:299.633733pt;}
.x23{left:304.991867pt;}
.x38{left:307.336933pt;}
.x33{left:328.570533pt;}
.x30{left:337.087200pt;}
.x2d{left:343.510400pt;}
.xc{left:381.842133pt;}
.xe{left:383.733467pt;}
.xd{left:391.884533pt;}
.x9{left:394.960667pt;}
.x22{left:400.610267pt;}
.x14{left:420.071733pt;}
.xf{left:431.152000pt;}
.xa{left:447.874000pt;}
.xb{left:475.582400pt;}
.x1a{left:486.037333pt;}
.x27{left:512.503867pt;}
.x29{left:523.516400pt;}
.x5{left:563.495200pt;}
.x25{left:580.436400pt;}
.x2c{left:600.569467pt;}
.x1{left:604.105733pt;}
.x28{left:607.474800pt;}
.x26{left:626.892800pt;}
.x4{left:644.289467pt;}
.x2a{left:646.016400pt;}
.x18{left:683.943467pt;}
.x15{left:690.343467pt;}
.x16{left:760.562133pt;}
}




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