
    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_216824a35a10fd39237a252d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942871;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_fcd3835e1cbb6b06ad2148d0.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_eb9cc13add6a9892d8fa8330.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_949a3ba4d31aaf5eea350b6c.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_836a6c1451e77c87427ec238.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_2e307b4f2f5253e66bfa7c12.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_8a2b45592cdc31c6ee11af16.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_74d7afc17f759b9984962e44.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_a2561b7225b1ffe996a794dc.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_1bea8dcd7c76f0ac32daa097.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_da5239c22101639223563b05.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900879;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_44a0eaa3364381c06e949e3c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.927734;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_2e307b4f2f5253e66bfa7c12.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_8a2b45592cdc31c6ee11af16.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_74d7afc17f759b9984962e44.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_a2561b7225b1ffe996a794dc.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_2e307b4f2f5253e66bfa7c12.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_8a2b45592cdc31c6ee11af16.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_74d7afc17f759b9984962e44.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_a2561b7225b1ffe996a794dc.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_2e307b4f2f5253e66bfa7c12.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_8a2b45592cdc31c6ee11af16.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_74d7afc17f759b9984962e44.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_a2561b7225b1ffe996a794dc.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_a3bc9be2ec18c1dad727e497.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;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-25.812000px;}
.ws14{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.780000px;}
.wsb{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.344000px;}
.ws8{word-spacing:-12.240000px;}
.ws7{word-spacing:-2.100000px;}
.wsa{word-spacing:-1.776000px;}
.wse{word-spacing:-1.680000px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:0.420000px;}
.ws10{word-spacing:2.040000px;}
.ws12{word-spacing:3.360000px;}
.ws13{word-spacing:3.720000px;}
.wsf{word-spacing:4.380000px;}
.ws11{word-spacing:5.280000px;}
._16{margin-left:-2916.981000px;}
._28{margin-left:-880.344000px;}
._0{margin-left:-801.720000px;}
._24{margin-left:-648.144000px;}
._2{margin-left:-597.496282px;}
._29{margin-left:-544.207200px;}
._25{margin-left:-504.180600px;}
._27{margin-left:-468.875400px;}
._1{margin-left:-431.320972px;}
._26{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;}
._19{width:3.225600px;}
._18{width:4.233600px;}
._1c{width:5.626800px;}
._1a{width:7.416600px;}
._1b{width:8.603400px;}
._f{width:9.688800px;}
._12{width:11.301600px;}
._1e{width:12.960000px;}
._1f{width:13.978800px;}
._21{width:15.168000px;}
._1d{width:17.728200px;}
._20{width:22.176000px;}
._22{width:23.244000px;}
._9{width:25.002000px;}
._c{width:27.000000px;}
._23{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);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fca{color:rgb(0,173,239);}
.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;}
.ybb{bottom:112.301550px;}
.yba{bottom:129.851550px;}
.yce{bottom:131.201700px;}
.y5b{bottom:132.431250px;}
.y58{bottom:141.403650px;}
.yb9{bottom:147.401700px;}
.ycd{bottom:148.751550px;}
.y14c{bottom:149.527200px;}
.y102{bottom:151.393650px;}
.y57{bottom:159.403650px;}
.y16d{bottom:159.440100px;}
.ycc{bottom:166.301550px;}
.y14b{bottom:167.527200px;}
.y101{bottom:169.393650px;}
.yb8{bottom:173.455500px;}
.y16c{bottom:175.640100px;}
.y56{bottom:177.403650px;}
.y87{bottom:177.792600px;}
.y135{bottom:183.526500px;}
.y14a{bottom:185.527200px;}
.y100{bottom:187.393650px;}
.yb7{bottom:191.455500px;}
.y16b{bottom:191.840100px;}
.ycb{bottom:192.355650px;}
.y86{bottom:195.342600px;}
.y55{bottom:195.403650px;}
.y134{bottom:201.526500px;}
.y149{bottom:203.527200px;}
.yff{bottom:205.393650px;}
.y16a{bottom:208.040100px;}
.yb6{bottom:209.005500px;}
.yca{bottom:209.905500px;}
.y54{bottom:213.403650px;}
.y2d{bottom:213.683400px;}
.y133{bottom:219.526500px;}
.y85{bottom:221.396550px;}
.yfe{bottom:223.393650px;}
.y169{bottom:224.239950px;}
.yc9{bottom:227.455500px;}
.y53{bottom:231.403650px;}
.y2c{bottom:231.683400px;}
.yb5{bottom:235.059600px;}
.y132{bottom:237.526500px;}
.y84{bottom:238.946550px;}
.y148{bottom:239.527200px;}
.y168{bottom:240.440100px;}
.yfd{bottom:241.393650px;}
.y52{bottom:249.403650px;}
.y2b{bottom:249.683400px;}
.yb4{bottom:253.059600px;}
.yc8{bottom:253.509450px;}
.y131{bottom:255.526500px;}
.y147{bottom:255.727200px;}
.y83{bottom:256.496550px;}
.y167{bottom:256.640100px;}
.yfc{bottom:259.393650px;}
.y51{bottom:267.403650px;}
.y2a{bottom:267.683400px;}
.yb3{bottom:270.609450px;}
.yc7{bottom:271.059600px;}
.y166{bottom:272.840100px;}
.y130{bottom:273.526500px;}
.y82{bottom:282.550350px;}
.y50{bottom:285.403650px;}
.y29{bottom:285.683400px;}
.yfb{bottom:285.897600px;}
.yc6{bottom:288.609450px;}
.y165{bottom:289.040100px;}
.y12f{bottom:291.526500px;}
.yb2{bottom:296.663400px;}
.y81{bottom:300.100500px;}
.y173{bottom:302.845350px;}
.y4f{bottom:303.403650px;}
.y28{bottom:303.683400px;}
.y164{bottom:305.239950px;}
.y12e{bottom:309.526500px;}
.yb1{bottom:314.663400px;}
.y80{bottom:317.650500px;}
.y172{bottom:320.845350px;}
.y4e{bottom:321.403650px;}
.y163{bottom:321.440100px;}
.y27{bottom:321.683400px;}
.y12d{bottom:327.526500px;}
.yb0{bottom:332.213400px;}
.yfa{bottom:334.477050px;}
.y162{bottom:337.640100px;}
.y26{bottom:339.683400px;}
.y7f{bottom:343.704450px;}
.y12c{bottom:345.526500px;}
.yc5{bottom:349.763400px;}
.y17c{bottom:355.244250px;}
.y25{bottom:357.683400px;}
.yaf{bottom:358.267350px;}
.yf9{bottom:360.981000px;}
.y7e{bottom:361.254300px;}
.y12b{bottom:363.526500px;}
.y161{bottom:371.840100px;}
.y17b{bottom:375.044250px;}
.y24{bottom:375.683400px;}
.yae{bottom:375.817350px;}
.y7d{bottom:378.804450px;}
.yf8{bottom:378.981000px;}
.y160{bottom:389.840100px;}
.y12a{bottom:390.030450px;}
.yad{bottom:393.367350px;}
.y23{bottom:393.683400px;}
.y17a{bottom:394.844250px;}
.y7c{bottom:396.354450px;}
.yf7{bottom:396.981000px;}
.y4d{bottom:402.176550px;}
.y15f{bottom:407.840100px;}
.yc4{bottom:410.917350px;}
.y22{bottom:411.683400px;}
.y179{bottom:414.644250px;}
.yf6{bottom:414.981000px;}
.yac{bottom:419.421300px;}
.y4c{bottom:420.176550px;}
.y7b{bottom:422.408400px;}
.y15e{bottom:425.840100px;}
.y129{bottom:429.030450px;}
.y21{bottom:429.683400px;}
.yf5{bottom:432.981000px;}
.y178{bottom:434.444250px;}
.yab{bottom:436.971300px;}
.y4b{bottom:438.176550px;}
.y7a{bottom:439.958250px;}
.y15d{bottom:443.840100px;}
.y146{bottom:445.072200px;}
.y128{bottom:447.030450px;}
.y20{bottom:447.683400px;}
.yf4{bottom:450.981000px;}
.yaa{bottom:454.521300px;}
.y4a{bottom:456.176550px;}
.y79{bottom:457.508400px;}
.y15c{bottom:461.840100px;}
.y145{bottom:463.072200px;}
.y1f{bottom:465.683400px;}
.yf3{bottom:468.981000px;}
.yc3{bottom:472.071300px;}
.y127{bottom:473.534400px;}
.y49{bottom:474.176550px;}
.y15b{bottom:479.840100px;}
.ya9{bottom:480.575250px;}
.y144{bottom:481.072200px;}
.y78{bottom:483.562200px;}
.y1e{bottom:483.683400px;}
.yf2{bottom:486.981000px;}
.y48{bottom:492.176550px;}
.y15a{bottom:497.840100px;}
.ya8{bottom:498.125250px;}
.y143{bottom:499.072200px;}
.y77{bottom:501.112200px;}
.y1d{bottom:501.683400px;}
.y126{bottom:512.534400px;}
.ya7{bottom:515.675250px;}
.y159{bottom:515.840100px;}
.y142{bottom:517.072200px;}
.y76{bottom:519.112200px;}
.y1c{bottom:519.683400px;}
.yf1{bottom:525.990300px;}
.y125{bottom:530.534400px;}
.yc2{bottom:533.225250px;}
.y158{bottom:533.840100px;}
.y141{bottom:535.072200px;}
.y1b{bottom:537.683400px;}
.ya6{bottom:541.729200px;}
.y75{bottom:545.166150px;}
.y124{bottom:548.534400px;}
.yf0{bottom:552.494250px;}
.y140{bottom:553.072200px;}
.y1a{bottom:555.683400px;}
.ya5{bottom:559.279200px;}
.y157{bottom:560.344050px;}
.y47{bottom:562.444800px;}
.y74{bottom:562.716150px;}
.y123{bottom:566.534400px;}
.yef{bottom:570.494250px;}
.y13f{bottom:571.072200px;}
.y19{bottom:573.683400px;}
.yc1{bottom:576.829200px;}
.y46{bottom:576.844800px;}
.y73{bottom:580.266150px;}
.y122{bottom:584.534400px;}
.ya4{bottom:585.333150px;}
.yee{bottom:588.494250px;}
.y13e{bottom:589.072200px;}
.y45{bottom:591.244800px;}
.y18{bottom:591.683400px;}
.yc0{bottom:594.379200px;}
.y156{bottom:599.344050px;}
.y121{bottom:602.534400px;}
.ya3{bottom:602.883150px;}
.y44{bottom:605.644800px;}
.y72{bottom:606.320100px;}
.yed{bottom:606.494250px;}
.y13d{bottom:607.072200px;}
.y17{bottom:609.683400px;}
.y155{bottom:617.344050px;}
.y43{bottom:620.044800px;}
.ya2{bottom:620.433150px;}
.y120{bottom:620.534400px;}
.y71{bottom:623.870100px;}
.yec{bottom:624.494250px;}
.y13c{bottom:625.072200px;}
.y177{bottom:626.867850px;}
.y16{bottom:627.683400px;}
.y42{bottom:634.444800px;}
.y154{bottom:635.344050px;}
.ya1{bottom:637.983150px;}
.y11f{bottom:638.534400px;}
.y70{bottom:641.420100px;}
.yeb{bottom:642.494250px;}
.y13b{bottom:643.072200px;}
.y15{bottom:645.683400px;}
.y176{bottom:646.667850px;}
.y41{bottom:648.844800px;}
.y11e{bottom:656.534400px;}
.y13a{bottom:661.072200px;}
.y40{bottom:663.244800px;}
.y14{bottom:663.683400px;}
.ya0{bottom:664.037100px;}
.y175{bottom:666.467850px;}
.y6f{bottom:667.474050px;}
.y153{bottom:671.344050px;}
.y11d{bottom:674.534400px;}
.y3f{bottom:677.644800px;}
.y139{bottom:679.072200px;}
.yea{bottom:680.514600px;}
.y9f{bottom:681.587100px;}
.y13{bottom:681.683400px;}
.y6e{bottom:685.024050px;}
.y174{bottom:686.267850px;}
.y3e{bottom:692.044800px;}
.y11c{bottom:692.534400px;}
.y138{bottom:697.072200px;}
.ybf{bottom:699.137100px;}
.y12{bottom:699.683400px;}
.y6d{bottom:702.574050px;}
.y3d{bottom:706.444800px;}
.ye9{bottom:707.018400px;}
.y9e{bottom:707.641050px;}
.y11b{bottom:710.534400px;}
.y137{bottom:715.072200px;}
.y11{bottom:717.683400px;}
.y3c{bottom:720.844800px;}
.ye8{bottom:725.018400px;}
.y9d{bottom:725.191050px;}
.y11a{bottom:728.534400px;}
.y6c{bottom:728.628000px;}
.y3b{bottom:735.244800px;}
.y10{bottom:735.683400px;}
.y9c{bottom:742.741050px;}
.ye7{bottom:743.018400px;}
.y6b{bottom:746.178000px;}
.y119{bottom:746.534400px;}
.y3a{bottom:749.644800px;}
.y16e{bottom:750.626550px;}
.y136{bottom:751.072200px;}
.yf{bottom:753.683400px;}
.ybe{bottom:760.291050px;}
.ye6{bottom:761.018400px;}
.y6a{bottom:763.728000px;}
.y39{bottom:764.044800px;}
.y118{bottom:764.534400px;}
.y9b{bottom:768.795000px;}
.y2{bottom:769.573800px;}
.ye{bottom:771.683400px;}
.y38{bottom:778.444800px;}
.ye5{bottom:779.018400px;}
.y117{bottom:782.534400px;}
.y9a{bottom:786.345000px;}
.yd{bottom:789.683400px;}
.y69{bottom:789.781950px;}
.y37{bottom:792.844800px;}
.ye4{bottom:797.018400px;}
.y116{bottom:800.534400px;}
.y99{bottom:803.894850px;}
.y36{bottom:807.244800px;}
.y68{bottom:807.331950px;}
.y3{bottom:807.481350px;}
.yc{bottom:807.683400px;}
.ye3{bottom:815.018400px;}
.y115{bottom:818.534400px;}
.y35{bottom:821.644800px;}
.y171{bottom:824.305800px;}
.y67{bottom:824.881950px;}
.yb{bottom:825.683400px;}
.y98{bottom:829.948950px;}
.y34{bottom:836.044800px;}
.y114{bottom:836.534400px;}
.ya{bottom:843.683400px;}
.y152{bottom:844.818900px;}
.y97{bottom:847.498950px;}
.y33{bottom:850.444800px;}
.y66{bottom:850.935900px;}
.y170{bottom:854.409750px;}
.y113{bottom:854.534400px;}
.y32{bottom:864.844800px;}
.y96{bottom:865.048800px;}
.y65{bottom:868.485900px;}
.y9{bottom:870.187350px;}
.y112{bottom:872.534400px;}
.y31{bottom:879.244800px;}
.y151{bottom:880.818900px;}
.y16f{bottom:884.513700px;}
.y64{bottom:886.035900px;}
.y8{bottom:888.187350px;}
.y111{bottom:890.534400px;}
.y95{bottom:891.102750px;}
.y30{bottom:893.644800px;}
.y150{bottom:898.818900px;}
.ye2{bottom:899.437350px;}
.y2f{bottom:908.044800px;}
.y110{bottom:908.534400px;}
.y94{bottom:908.652900px;}
.y63{bottom:912.089850px;}
.y7{bottom:914.691300px;}
.y14f{bottom:916.818900px;}
.ye1{bottom:919.237350px;}
.y2e{bottom:922.444800px;}
.y93{bottom:926.202750px;}
.y10f{bottom:926.534400px;}
.yda{bottom:927.053100px;}
.y62{bottom:929.639850px;}
.y6{bottom:932.691300px;}
.y14e{bottom:934.818900px;}
.y10e{bottom:944.534400px;}
.yd9{bottom:944.603100px;}
.y1{bottom:946.740300px;}
.y92{bottom:952.256700px;}
.y61{bottom:955.693800px;}
.ye0{bottom:958.837350px;}
.y10d{bottom:962.534400px;}
.y91{bottom:969.806700px;}
.yd8{bottom:970.657050px;}
.y14d{bottom:970.818900px;}
.y60{bottom:975.493800px;}
.ydf{bottom:978.637350px;}
.y10c{bottom:980.534400px;}
.ybd{bottom:987.356850px;}
.yd7{bottom:988.207050px;}
.y5f{bottom:993.043800px;}
.y90{bottom:995.860650px;}
.y10b{bottom:998.534400px;}
.y8f{bottom:1013.410650px;}
.yd6{bottom:1014.261000px;}
.y10a{bottom:1016.534400px;}
.yde{bottom:1018.237350px;}
.y5e{bottom:1019.097600px;}
.y8e{bottom:1030.960650px;}
.yd5{bottom:1031.811000px;}
.y109{bottom:1034.534400px;}
.y5d{bottom:1036.647600px;}
.ydd{bottom:1038.037350px;}
.ybc{bottom:1048.510650px;}
.y108{bottom:1052.534400px;}
.y5c{bottom:1054.197750px;}
.y8d{bottom:1057.014600px;}
.yd4{bottom:1057.864950px;}
.y107{bottom:1070.534400px;}
.y8c{bottom:1074.564600px;}
.yd3{bottom:1075.414950px;}
.y106{bottom:1088.534400px;}
.y8b{bottom:1092.114600px;}
.yd2{bottom:1092.964950px;}
.ydc{bottom:1093.837350px;}
.y105{bottom:1106.534400px;}
.y8a{bottom:1118.168550px;}
.yd1{bottom:1119.018900px;}
.y104{bottom:1124.534400px;}
.y89{bottom:1135.718550px;}
.y5{bottom:1136.119050px;}
.yd0{bottom:1136.568900px;}
.ydb{bottom:1137.037350px;}
.y103{bottom:1151.038350px;}
.y88{bottom:1153.268550px;}
.ycf{bottom:1154.118900px;}
.y4{bottom:1154.119050px;}
.y59{bottom:1188.116700px;}
.h12{height:34.945312px;}
.hb{height:34.968750px;}
.h11{height:35.156250px;}
.h13{height:38.988000px;}
.h7{height:39.313477px;}
.h6{height:39.339844px;}
.h8{height:39.550781px;}
.ha{height:42.539062px;}
.h18{height:42.568359px;}
.hf{height:43.320000px;}
.h5{height:43.681641px;}
.hd{height:43.710938px;}
.h1b{height:43.945312px;}
.h9{height:47.856445px;}
.h15{height:48.049805px;}
.h1d{height:48.082031px;}
.h16{height:48.339844px;}
.h17{height:51.082031px;}
.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:102.164062px;}
.h10{height:127.705078px;}
.h4{height:196.771289px;}
.h2{height:263.671875px;}
.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;}
.x1e{left:74.031450px;}
.x10{left:81.637800px;}
.x26{left:83.427150px;}
.x27{left:93.357000px;}
.x6{left:97.795350px;}
.x1f{left:101.877300px;}
.x11{left:109.077150px;}
.x17{left:110.551200px;}
.x8{left:127.559100px;}
.x13{left:140.314950px;}
.x23{left:178.582650px;}
.x2c{left:186.552150px;}
.x2a{left:198.173850px;}
.x2b{left:212.393850px;}
.x19{left:223.125900px;}
.x29{left:240.346350px;}
.x24{left:289.342200px;}
.x2d{left:315.990150px;}
.x28{left:339.878100px;}
.x25{left:349.459350px;}
.x22{left:356.685450px;}
.x1b{left:415.752900px;}
.xc{left:429.572400px;}
.xe{left:431.700150px;}
.xd{left:440.870100px;}
.x9{left:444.330750px;}
.x14{left:472.580700px;}
.xf{left:485.046000px;}
.xa{left:503.858250px;}
.x1d{left:512.418600px;}
.x1a{left:523.714050px;}
.xb{left:535.030200px;}
.x1c{left:627.322500px;}
.x4{left:647.269500px;}
.x21{left:664.967400px;}
.x20{left:675.640650px;}
.x1{left:679.618950px;}
.x5{left:689.808600px;}
.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;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-22.944000pt;}
.ws14{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.693333pt;}
.wsb{word-spacing:-13.344000pt;}
.wsc{word-spacing:-12.800000pt;}
.ws9{word-spacing:-11.861333pt;}
.ws8{word-spacing:-10.880000pt;}
.ws7{word-spacing:-1.866667pt;}
.wsa{word-spacing:-1.578667pt;}
.wse{word-spacing:-1.493333pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:0.373333pt;}
.ws10{word-spacing:1.813333pt;}
.ws12{word-spacing:2.986667pt;}
.ws13{word-spacing:3.306667pt;}
.wsf{word-spacing:3.893333pt;}
.ws11{word-spacing:4.693333pt;}
._16{margin-left:-2592.872000pt;}
._28{margin-left:-782.528000pt;}
._0{margin-left:-712.640000pt;}
._24{margin-left:-576.128000pt;}
._2{margin-left:-531.107806pt;}
._29{margin-left:-483.739733pt;}
._25{margin-left:-448.160533pt;}
._27{margin-left:-416.778133pt;}
._1{margin-left:-383.396419pt;}
._26{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;}
._19{width:2.867200pt;}
._18{width:3.763200pt;}
._1c{width:5.001600pt;}
._1a{width:6.592533pt;}
._1b{width:7.647467pt;}
._f{width:8.612267pt;}
._12{width:10.045867pt;}
._1e{width:11.520000pt;}
._1f{width:12.425600pt;}
._21{width:13.482667pt;}
._1d{width:15.758400pt;}
._20{width:19.712000pt;}
._22{width:20.661333pt;}
._9{width:22.224000pt;}
._c{width:24.000000pt;}
._23{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;}
.ybb{bottom:99.823600pt;}
.yba{bottom:115.423600pt;}
.yce{bottom:116.623733pt;}
.y5b{bottom:117.716667pt;}
.y58{bottom:125.692133pt;}
.yb9{bottom:131.023733pt;}
.ycd{bottom:132.223600pt;}
.y14c{bottom:132.913067pt;}
.y102{bottom:134.572133pt;}
.y57{bottom:141.692133pt;}
.y16d{bottom:141.724533pt;}
.ycc{bottom:147.823600pt;}
.y14b{bottom:148.913067pt;}
.y101{bottom:150.572133pt;}
.yb8{bottom:154.182667pt;}
.y16c{bottom:156.124533pt;}
.y56{bottom:157.692133pt;}
.y87{bottom:158.037867pt;}
.y135{bottom:163.134667pt;}
.y14a{bottom:164.913067pt;}
.y100{bottom:166.572133pt;}
.yb7{bottom:170.182667pt;}
.y16b{bottom:170.524533pt;}
.ycb{bottom:170.982800pt;}
.y86{bottom:173.637867pt;}
.y55{bottom:173.692133pt;}
.y134{bottom:179.134667pt;}
.y149{bottom:180.913067pt;}
.yff{bottom:182.572133pt;}
.y16a{bottom:184.924533pt;}
.yb6{bottom:185.782667pt;}
.yca{bottom:186.582667pt;}
.y54{bottom:189.692133pt;}
.y2d{bottom:189.940800pt;}
.y133{bottom:195.134667pt;}
.y85{bottom:196.796933pt;}
.yfe{bottom:198.572133pt;}
.y169{bottom:199.324400pt;}
.yc9{bottom:202.182667pt;}
.y53{bottom:205.692133pt;}
.y2c{bottom:205.940800pt;}
.yb5{bottom:208.941867pt;}
.y132{bottom:211.134667pt;}
.y84{bottom:212.396933pt;}
.y148{bottom:212.913067pt;}
.y168{bottom:213.724533pt;}
.yfd{bottom:214.572133pt;}
.y52{bottom:221.692133pt;}
.y2b{bottom:221.940800pt;}
.yb4{bottom:224.941867pt;}
.yc8{bottom:225.341733pt;}
.y131{bottom:227.134667pt;}
.y147{bottom:227.313067pt;}
.y83{bottom:227.996933pt;}
.y167{bottom:228.124533pt;}
.yfc{bottom:230.572133pt;}
.y51{bottom:237.692133pt;}
.y2a{bottom:237.940800pt;}
.yb3{bottom:240.541733pt;}
.yc7{bottom:240.941867pt;}
.y166{bottom:242.524533pt;}
.y130{bottom:243.134667pt;}
.y82{bottom:251.155867pt;}
.y50{bottom:253.692133pt;}
.y29{bottom:253.940800pt;}
.yfb{bottom:254.131200pt;}
.yc6{bottom:256.541733pt;}
.y165{bottom:256.924533pt;}
.y12f{bottom:259.134667pt;}
.yb2{bottom:263.700800pt;}
.y81{bottom:266.756000pt;}
.y173{bottom:269.195867pt;}
.y4f{bottom:269.692133pt;}
.y28{bottom:269.940800pt;}
.y164{bottom:271.324400pt;}
.y12e{bottom:275.134667pt;}
.yb1{bottom:279.700800pt;}
.y80{bottom:282.356000pt;}
.y172{bottom:285.195867pt;}
.y4e{bottom:285.692133pt;}
.y163{bottom:285.724533pt;}
.y27{bottom:285.940800pt;}
.y12d{bottom:291.134667pt;}
.yb0{bottom:295.300800pt;}
.yfa{bottom:297.312933pt;}
.y162{bottom:300.124533pt;}
.y26{bottom:301.940800pt;}
.y7f{bottom:305.515067pt;}
.y12c{bottom:307.134667pt;}
.yc5{bottom:310.900800pt;}
.y17c{bottom:315.772667pt;}
.y25{bottom:317.940800pt;}
.yaf{bottom:318.459867pt;}
.yf9{bottom:320.872000pt;}
.y7e{bottom:321.114933pt;}
.y12b{bottom:323.134667pt;}
.y161{bottom:330.524533pt;}
.y17b{bottom:333.372667pt;}
.y24{bottom:333.940800pt;}
.yae{bottom:334.059867pt;}
.y7d{bottom:336.715067pt;}
.yf8{bottom:336.872000pt;}
.y160{bottom:346.524533pt;}
.y12a{bottom:346.693733pt;}
.yad{bottom:349.659867pt;}
.y23{bottom:349.940800pt;}
.y17a{bottom:350.972667pt;}
.y7c{bottom:352.315067pt;}
.yf7{bottom:352.872000pt;}
.y4d{bottom:357.490267pt;}
.y15f{bottom:362.524533pt;}
.yc4{bottom:365.259867pt;}
.y22{bottom:365.940800pt;}
.y179{bottom:368.572667pt;}
.yf6{bottom:368.872000pt;}
.yac{bottom:372.818933pt;}
.y4c{bottom:373.490267pt;}
.y7b{bottom:375.474133pt;}
.y15e{bottom:378.524533pt;}
.y129{bottom:381.360400pt;}
.y21{bottom:381.940800pt;}
.yf5{bottom:384.872000pt;}
.y178{bottom:386.172667pt;}
.yab{bottom:388.418933pt;}
.y4b{bottom:389.490267pt;}
.y7a{bottom:391.074000pt;}
.y15d{bottom:394.524533pt;}
.y146{bottom:395.619733pt;}
.y128{bottom:397.360400pt;}
.y20{bottom:397.940800pt;}
.yf4{bottom:400.872000pt;}
.yaa{bottom:404.018933pt;}
.y4a{bottom:405.490267pt;}
.y79{bottom:406.674133pt;}
.y15c{bottom:410.524533pt;}
.y145{bottom:411.619733pt;}
.y1f{bottom:413.940800pt;}
.yf3{bottom:416.872000pt;}
.yc3{bottom:419.618933pt;}
.y127{bottom:420.919467pt;}
.y49{bottom:421.490267pt;}
.y15b{bottom:426.524533pt;}
.ya9{bottom:427.178000pt;}
.y144{bottom:427.619733pt;}
.y78{bottom:429.833067pt;}
.y1e{bottom:429.940800pt;}
.yf2{bottom:432.872000pt;}
.y48{bottom:437.490267pt;}
.y15a{bottom:442.524533pt;}
.ya8{bottom:442.778000pt;}
.y143{bottom:443.619733pt;}
.y77{bottom:445.433067pt;}
.y1d{bottom:445.940800pt;}
.y126{bottom:455.586133pt;}
.ya7{bottom:458.378000pt;}
.y159{bottom:458.524533pt;}
.y142{bottom:459.619733pt;}
.y76{bottom:461.433067pt;}
.y1c{bottom:461.940800pt;}
.yf1{bottom:467.546933pt;}
.y125{bottom:471.586133pt;}
.yc2{bottom:473.978000pt;}
.y158{bottom:474.524533pt;}
.y141{bottom:475.619733pt;}
.y1b{bottom:477.940800pt;}
.ya6{bottom:481.537067pt;}
.y75{bottom:484.592133pt;}
.y124{bottom:487.586133pt;}
.yf0{bottom:491.106000pt;}
.y140{bottom:491.619733pt;}
.y1a{bottom:493.940800pt;}
.ya5{bottom:497.137067pt;}
.y157{bottom:498.083600pt;}
.y47{bottom:499.950933pt;}
.y74{bottom:500.192133pt;}
.y123{bottom:503.586133pt;}
.yef{bottom:507.106000pt;}
.y13f{bottom:507.619733pt;}
.y19{bottom:509.940800pt;}
.yc1{bottom:512.737067pt;}
.y46{bottom:512.750933pt;}
.y73{bottom:515.792133pt;}
.y122{bottom:519.586133pt;}
.ya4{bottom:520.296133pt;}
.yee{bottom:523.106000pt;}
.y13e{bottom:523.619733pt;}
.y45{bottom:525.550933pt;}
.y18{bottom:525.940800pt;}
.yc0{bottom:528.337067pt;}
.y156{bottom:532.750267pt;}
.y121{bottom:535.586133pt;}
.ya3{bottom:535.896133pt;}
.y44{bottom:538.350933pt;}
.y72{bottom:538.951200pt;}
.yed{bottom:539.106000pt;}
.y13d{bottom:539.619733pt;}
.y17{bottom:541.940800pt;}
.y155{bottom:548.750267pt;}
.y43{bottom:551.150933pt;}
.ya2{bottom:551.496133pt;}
.y120{bottom:551.586133pt;}
.y71{bottom:554.551200pt;}
.yec{bottom:555.106000pt;}
.y13c{bottom:555.619733pt;}
.y177{bottom:557.215867pt;}
.y16{bottom:557.940800pt;}
.y42{bottom:563.950933pt;}
.y154{bottom:564.750267pt;}
.ya1{bottom:567.096133pt;}
.y11f{bottom:567.586133pt;}
.y70{bottom:570.151200pt;}
.yeb{bottom:571.106000pt;}
.y13b{bottom:571.619733pt;}
.y15{bottom:573.940800pt;}
.y176{bottom:574.815867pt;}
.y41{bottom:576.750933pt;}
.y11e{bottom:583.586133pt;}
.y13a{bottom:587.619733pt;}
.y40{bottom:589.550933pt;}
.y14{bottom:589.940800pt;}
.ya0{bottom:590.255200pt;}
.y175{bottom:592.415867pt;}
.y6f{bottom:593.310267pt;}
.y153{bottom:596.750267pt;}
.y11d{bottom:599.586133pt;}
.y3f{bottom:602.350933pt;}
.y139{bottom:603.619733pt;}
.yea{bottom:604.901867pt;}
.y9f{bottom:605.855200pt;}
.y13{bottom:605.940800pt;}
.y6e{bottom:608.910267pt;}
.y174{bottom:610.015867pt;}
.y3e{bottom:615.150933pt;}
.y11c{bottom:615.586133pt;}
.y138{bottom:619.619733pt;}
.ybf{bottom:621.455200pt;}
.y12{bottom:621.940800pt;}
.y6d{bottom:624.510267pt;}
.y3d{bottom:627.950933pt;}
.ye9{bottom:628.460800pt;}
.y9e{bottom:629.014267pt;}
.y11b{bottom:631.586133pt;}
.y137{bottom:635.619733pt;}
.y11{bottom:637.940800pt;}
.y3c{bottom:640.750933pt;}
.ye8{bottom:644.460800pt;}
.y9d{bottom:644.614267pt;}
.y11a{bottom:647.586133pt;}
.y6c{bottom:647.669333pt;}
.y3b{bottom:653.550933pt;}
.y10{bottom:653.940800pt;}
.y9c{bottom:660.214267pt;}
.ye7{bottom:660.460800pt;}
.y6b{bottom:663.269333pt;}
.y119{bottom:663.586133pt;}
.y3a{bottom:666.350933pt;}
.y16e{bottom:667.223600pt;}
.y136{bottom:667.619733pt;}
.yf{bottom:669.940800pt;}
.ybe{bottom:675.814267pt;}
.ye6{bottom:676.460800pt;}
.y6a{bottom:678.869333pt;}
.y39{bottom:679.150933pt;}
.y118{bottom:679.586133pt;}
.y9b{bottom:683.373333pt;}
.y2{bottom:684.065600pt;}
.ye{bottom:685.940800pt;}
.y38{bottom:691.950933pt;}
.ye5{bottom:692.460800pt;}
.y117{bottom:695.586133pt;}
.y9a{bottom:698.973333pt;}
.yd{bottom:701.940800pt;}
.y69{bottom:702.028400pt;}
.y37{bottom:704.750933pt;}
.ye4{bottom:708.460800pt;}
.y116{bottom:711.586133pt;}
.y99{bottom:714.573200pt;}
.y36{bottom:717.550933pt;}
.y68{bottom:717.628400pt;}
.y3{bottom:717.761200pt;}
.yc{bottom:717.940800pt;}
.ye3{bottom:724.460800pt;}
.y115{bottom:727.586133pt;}
.y35{bottom:730.350933pt;}
.y171{bottom:732.716267pt;}
.y67{bottom:733.228400pt;}
.yb{bottom:733.940800pt;}
.y98{bottom:737.732400pt;}
.y34{bottom:743.150933pt;}
.y114{bottom:743.586133pt;}
.ya{bottom:749.940800pt;}
.y152{bottom:750.950133pt;}
.y97{bottom:753.332400pt;}
.y33{bottom:755.950933pt;}
.y66{bottom:756.387467pt;}
.y170{bottom:759.475333pt;}
.y113{bottom:759.586133pt;}
.y32{bottom:768.750933pt;}
.y96{bottom:768.932267pt;}
.y65{bottom:771.987467pt;}
.y9{bottom:773.499867pt;}
.y112{bottom:775.586133pt;}
.y31{bottom:781.550933pt;}
.y151{bottom:782.950133pt;}
.y16f{bottom:786.234400pt;}
.y64{bottom:787.587467pt;}
.y8{bottom:789.499867pt;}
.y111{bottom:791.586133pt;}
.y95{bottom:792.091333pt;}
.y30{bottom:794.350933pt;}
.y150{bottom:798.950133pt;}
.ye2{bottom:799.499867pt;}
.y2f{bottom:807.150933pt;}
.y110{bottom:807.586133pt;}
.y94{bottom:807.691467pt;}
.y63{bottom:810.746533pt;}
.y7{bottom:813.058933pt;}
.y14f{bottom:814.950133pt;}
.ye1{bottom:817.099867pt;}
.y2e{bottom:819.950933pt;}
.y93{bottom:823.291333pt;}
.y10f{bottom:823.586133pt;}
.yda{bottom:824.047200pt;}
.y62{bottom:826.346533pt;}
.y6{bottom:829.058933pt;}
.y14e{bottom:830.950133pt;}
.y10e{bottom:839.586133pt;}
.yd9{bottom:839.647200pt;}
.y1{bottom:841.546933pt;}
.y92{bottom:846.450400pt;}
.y61{bottom:849.505600pt;}
.ye0{bottom:852.299867pt;}
.y10d{bottom:855.586133pt;}
.y91{bottom:862.050400pt;}
.yd8{bottom:862.806267pt;}
.y14d{bottom:862.950133pt;}
.y60{bottom:867.105600pt;}
.ydf{bottom:869.899867pt;}
.y10c{bottom:871.586133pt;}
.ybd{bottom:877.650533pt;}
.yd7{bottom:878.406267pt;}
.y5f{bottom:882.705600pt;}
.y90{bottom:885.209467pt;}
.y10b{bottom:887.586133pt;}
.y8f{bottom:900.809467pt;}
.yd6{bottom:901.565333pt;}
.y10a{bottom:903.586133pt;}
.yde{bottom:905.099867pt;}
.y5e{bottom:905.864533pt;}
.y8e{bottom:916.409467pt;}
.yd5{bottom:917.165333pt;}
.y109{bottom:919.586133pt;}
.y5d{bottom:921.464533pt;}
.ydd{bottom:922.699867pt;}
.ybc{bottom:932.009467pt;}
.y108{bottom:935.586133pt;}
.y5c{bottom:937.064667pt;}
.y8d{bottom:939.568533pt;}
.yd4{bottom:940.324400pt;}
.y107{bottom:951.586133pt;}
.y8c{bottom:955.168533pt;}
.yd3{bottom:955.924400pt;}
.y106{bottom:967.586133pt;}
.y8b{bottom:970.768533pt;}
.yd2{bottom:971.524400pt;}
.ydc{bottom:972.299867pt;}
.y105{bottom:983.586133pt;}
.y8a{bottom:993.927600pt;}
.yd1{bottom:994.683467pt;}
.y104{bottom:999.586133pt;}
.y89{bottom:1009.527600pt;}
.y5{bottom:1009.883600pt;}
.yd0{bottom:1010.283467pt;}
.ydb{bottom:1010.699867pt;}
.y103{bottom:1023.145200pt;}
.y88{bottom:1025.127600pt;}
.ycf{bottom:1025.883467pt;}
.y4{bottom:1025.883600pt;}
.y59{bottom:1056.103733pt;}
.h12{height:31.062500pt;}
.hb{height:31.083333pt;}
.h11{height:31.250000pt;}
.h13{height:34.656000pt;}
.h7{height:34.945312pt;}
.h6{height:34.968750pt;}
.h8{height:35.156250pt;}
.ha{height:37.812500pt;}
.h18{height:37.838542pt;}
.hf{height:38.506667pt;}
.h5{height:38.828125pt;}
.hd{height:38.854167pt;}
.h1b{height:39.062500pt;}
.h9{height:42.539062pt;}
.h15{height:42.710938pt;}
.h1d{height:42.739583pt;}
.h16{height:42.968750pt;}
.h17{height:45.406250pt;}
.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:90.812500pt;}
.h10{height:113.515625pt;}
.h4{height:174.907813pt;}
.h2{height:234.375000pt;}
.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;}
.x1e{left:65.805733pt;}
.x10{left:72.566933pt;}
.x26{left:74.157467pt;}
.x27{left:82.984000pt;}
.x6{left:86.929200pt;}
.x1f{left:90.557600pt;}
.x11{left:96.957467pt;}
.x17{left:98.267733pt;}
.x8{left:113.385867pt;}
.x13{left:124.724400pt;}
.x23{left:158.740133pt;}
.x2c{left:165.824133pt;}
.x2a{left:176.154533pt;}
.x2b{left:188.794533pt;}
.x19{left:198.334133pt;}
.x29{left:213.641200pt;}
.x24{left:257.193067pt;}
.x2d{left:280.880133pt;}
.x28{left:302.113867pt;}
.x25{left:310.630533pt;}
.x22{left:317.053733pt;}
.x1b{left:369.558133pt;}
.xc{left:381.842133pt;}
.xe{left:383.733467pt;}
.xd{left:391.884533pt;}
.x9{left:394.960667pt;}
.x14{left:420.071733pt;}
.xf{left:431.152000pt;}
.xa{left:447.874000pt;}
.x1d{left:455.483200pt;}
.x1a{left:465.523600pt;}
.xb{left:475.582400pt;}
.x1c{left:557.620000pt;}
.x4{left:575.350667pt;}
.x21{left:591.082133pt;}
.x20{left:600.569467pt;}
.x1{left:604.105733pt;}
.x5{left:613.163200pt;}
.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; }
  