
    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_d3a429035ab2afdbe10fde11.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_65ced135789b3436c9c6c84a.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_59d75719fcb3899a8acea85a.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_0970f619941c4ba6b91de78a.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_7fb5a26e02e7b6f0ed379c3c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_c47eabd11154ba5340c913d1.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_f929cb284d81634f97d122d0.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_a7feb6cc81d74ac17d704ccc.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_593b6770539b19defdf37447.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_c143306a00b5f9eddefea5fa.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_b09ab8a97ac62eb830dd0008.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_510e44eef6cdad72c2ea33bc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.849609;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_c47eabd11154ba5340c913d1.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_f929cb284d81634f97d122d0.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_a7feb6cc81d74ac17d704ccc.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_593b6770539b19defdf37447.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_c47eabd11154ba5340c913d1.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_f929cb284d81634f97d122d0.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_a7feb6cc81d74ac17d704ccc.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_593b6770539b19defdf37447.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_c47eabd11154ba5340c913d1.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_f929cb284d81634f97d122d0.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_a7feb6cc81d74ac17d704ccc.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_593b6770539b19defdf37447.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_bd71a4437816f7bbb2ce1a1c.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;}
.v1{vertical-align:32.400000px;}
.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;}
.ls7{letter-spacing:14.400000px;}
.ls5{letter-spacing:27.000000px;}
.ls9{letter-spacing:107.842200px;}
.ls8{letter-spacing:212.618400px;}
.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;}
.ws16{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.780000px;}
.ws8{word-spacing:-16.680000px;}
.ws9{word-spacing:-15.012000px;}
.wsb{word-spacing:-14.400000px;}
.wsf{word-spacing:-2.820000px;}
.ws7{word-spacing:-2.100000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:2.220000px;}
.wsd{word-spacing:3.060000px;}
.ws10{word-spacing:4.080000px;}
.ws11{word-spacing:7.380000px;}
.ws14{word-spacing:8.340000px;}
.wsc{word-spacing:9.000000px;}
.wsa{word-spacing:10.098000px;}
.ws15{word-spacing:23.760000px;}
.wse{word-spacing:25.560000px;}
.ws13{word-spacing:1124.740200px;}
._16{margin-left:-2916.981000px;}
._2a{margin-left:-880.344000px;}
._0{margin-left:-801.720000px;}
._26{margin-left:-648.144000px;}
._2{margin-left:-597.496282px;}
._2b{margin-left:-544.207200px;}
._27{margin-left:-504.180600px;}
._29{margin-left:-468.875400px;}
._1{margin-left:-431.320972px;}
._28{margin-left:-360.000000px;}
._11{margin-left:-16.606200px;}
._15{margin-left:-14.910600px;}
._7{margin-left:-13.296000px;}
._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;}
._12{margin-left:-1.018200px;}
._14{width:1.087200px;}
._e{width:2.142000px;}
._1c{width:3.516000px;}
._1e{width:4.675200px;}
._17{width:5.788800px;}
._18{width:7.773000px;}
._f{width:9.688800px;}
._13{width:11.301600px;}
._22{width:12.308400px;}
._21{width:13.422000px;}
._1d{width:14.484000px;}
._1b{width:16.135200px;}
._20{width:18.672000px;}
._1f{width:19.788000px;}
._23{width:23.058000px;}
._9{width:25.002000px;}
._c{width:27.000000px;}
._19{width:29.197200px;}
._1a{width:30.242400px;}
._24{width:31.977600px;}
._25{width:59.007000px;}
._b{width:105.361200px;}
._a{width:1012.597800px;}
.fca{color:rgb(5,99,193);}
.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);}
.fcb{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;}
.yb5{bottom:130.232550px;}
.y5b{bottom:132.431250px;}
.yeb{bottom:141.111000px;}
.y58{bottom:141.403650px;}
.y128{bottom:144.116400px;}
.yb4{bottom:148.232550px;}
.yea{bottom:159.111000px;}
.y57{bottom:159.403650px;}
.y88{bottom:160.242600px;}
.y127{bottom:162.116400px;}
.yb3{bottom:166.232550px;}
.ye9{bottom:177.111000px;}
.y56{bottom:177.403650px;}
.y87{bottom:177.792600px;}
.y126{bottom:180.116400px;}
.yb2{bottom:184.232550px;}
.ye8{bottom:195.111000px;}
.y86{bottom:195.342600px;}
.y55{bottom:195.403650px;}
.y125{bottom:198.116400px;}
.yb1{bottom:210.736500px;}
.ye7{bottom:213.111000px;}
.y54{bottom:213.403650px;}
.y2d{bottom:213.683400px;}
.y85{bottom:221.396550px;}
.y124{bottom:224.620350px;}
.ye6{bottom:231.111000px;}
.y53{bottom:231.403650px;}
.y2c{bottom:231.683400px;}
.y84{bottom:238.946550px;}
.ye5{bottom:249.111000px;}
.y52{bottom:249.403650px;}
.y2b{bottom:249.683400px;}
.yb0{bottom:249.736500px;}
.y83{bottom:256.496550px;}
.y123{bottom:263.620350px;}
.ye4{bottom:267.111000px;}
.y51{bottom:267.403650px;}
.y2a{bottom:267.683400px;}
.yaf{bottom:267.736500px;}
.y82{bottom:274.046550px;}
.y122{bottom:281.620350px;}
.ye3{bottom:285.111000px;}
.y50{bottom:285.403650px;}
.y29{bottom:285.683400px;}
.yae{bottom:285.736500px;}
.y121{bottom:299.620350px;}
.y81{bottom:300.100500px;}
.y139{bottom:302.845350px;}
.ye2{bottom:303.111000px;}
.y4f{bottom:303.403650px;}
.y28{bottom:303.683400px;}
.yad{bottom:303.736500px;}
.y120{bottom:317.620350px;}
.y80{bottom:317.650500px;}
.y138{bottom:320.845350px;}
.ye1{bottom:321.111000px;}
.y4e{bottom:321.403650px;}
.y27{bottom:321.683400px;}
.yac{bottom:321.736500px;}
.y7f{bottom:335.200500px;}
.y11f{bottom:335.620350px;}
.ye0{bottom:339.111000px;}
.y26{bottom:339.683400px;}
.yab{bottom:339.736500px;}
.y11e{bottom:353.620350px;}
.y142{bottom:355.244250px;}
.ydf{bottom:357.111000px;}
.y25{bottom:357.683400px;}
.yaa{bottom:357.736500px;}
.y7e{bottom:361.254300px;}
.y11d{bottom:371.620350px;}
.y141{bottom:375.044250px;}
.yde{bottom:375.111000px;}
.y24{bottom:375.683400px;}
.ya9{bottom:375.736500px;}
.y7d{bottom:378.804450px;}
.y11c{bottom:389.620350px;}
.ydd{bottom:393.111000px;}
.y23{bottom:393.683400px;}
.ya8{bottom:393.736500px;}
.y140{bottom:394.844250px;}
.y7c{bottom:396.804450px;}
.y4d{bottom:402.176550px;}
.y11b{bottom:407.620350px;}
.ydc{bottom:411.111000px;}
.y22{bottom:411.683400px;}
.ya7{bottom:411.736500px;}
.y13f{bottom:414.644250px;}
.y4c{bottom:420.176550px;}
.y7b{bottom:422.858250px;}
.y11a{bottom:425.620350px;}
.ydb{bottom:429.111000px;}
.y21{bottom:429.683400px;}
.y13e{bottom:434.444250px;}
.y4b{bottom:438.176550px;}
.ya6{bottom:438.240450px;}
.y7a{bottom:440.408400px;}
.y119{bottom:443.620350px;}
.yda{bottom:447.111000px;}
.y20{bottom:447.683400px;}
.y4a{bottom:456.176550px;}
.y79{bottom:457.958250px;}
.y118{bottom:461.620350px;}
.yd9{bottom:465.111000px;}
.y1f{bottom:465.683400px;}
.y49{bottom:474.176550px;}
.ya5{bottom:477.240450px;}
.y117{bottom:479.620350px;}
.yd8{bottom:483.111000px;}
.y1e{bottom:483.683400px;}
.y78{bottom:484.012200px;}
.y48{bottom:492.176550px;}
.y116{bottom:497.620350px;}
.yd7{bottom:501.111000px;}
.y77{bottom:501.562200px;}
.y1d{bottom:501.683400px;}
.ya4{bottom:501.944400px;}
.y115{bottom:515.620350px;}
.ya3{bottom:518.144400px;}
.yd6{bottom:519.111000px;}
.y76{bottom:519.112200px;}
.y1c{bottom:519.683400px;}
.ya2{bottom:534.344400px;}
.yd5{bottom:537.111000px;}
.y1b{bottom:537.683400px;}
.y75{bottom:545.166150px;}
.ya1{bottom:550.544400px;}
.y114{bottom:551.620350px;}
.yd4{bottom:555.111000px;}
.y1a{bottom:555.683400px;}
.y47{bottom:562.444800px;}
.y74{bottom:562.716150px;}
.y113{bottom:570.370350px;}
.ya0{bottom:572.372700px;}
.yd3{bottom:573.111000px;}
.y19{bottom:573.683400px;}
.y46{bottom:576.844800px;}
.y73{bottom:580.266150px;}
.y112{bottom:586.570350px;}
.yd2{bottom:591.111000px;}
.y45{bottom:591.244800px;}
.y18{bottom:591.683400px;}
.y10f{bottom:594.670350px;}
.y9f{bottom:597.076650px;}
.y111{bottom:602.770500px;}
.y44{bottom:605.644800px;}
.y72{bottom:606.320100px;}
.yd1{bottom:609.111000px;}
.y17{bottom:609.683400px;}
.y9e{bottom:613.276650px;}
.y110{bottom:618.970350px;}
.y43{bottom:620.044800px;}
.y71{bottom:623.870100px;}
.y13d{bottom:626.867850px;}
.yd0{bottom:627.111000px;}
.y16{bottom:627.683400px;}
.y9d{bottom:629.476650px;}
.y42{bottom:634.444800px;}
.y10e{bottom:640.798800px;}
.y70{bottom:641.420100px;}
.ycf{bottom:645.111000px;}
.y9c{bottom:645.676650px;}
.y15{bottom:645.683400px;}
.y13c{bottom:646.667850px;}
.y41{bottom:648.844800px;}
.y10d{bottom:656.998800px;}
.yce{bottom:663.111000px;}
.y40{bottom:663.244800px;}
.y14{bottom:663.683400px;}
.y10a{bottom:665.098800px;}
.y13b{bottom:666.467850px;}
.y6f{bottom:667.474050px;}
.y9b{bottom:667.505100px;}
.y10c{bottom:673.198800px;}
.y3f{bottom:677.644800px;}
.y13{bottom:681.683400px;}
.y6e{bottom:685.024050px;}
.y13a{bottom:686.267850px;}
.y10b{bottom:689.398800px;}
.ycd{bottom:689.614950px;}
.y3e{bottom:692.044800px;}
.y9a{bottom:692.209050px;}
.y12{bottom:699.683400px;}
.y6d{bottom:702.574050px;}
.y3d{bottom:706.444800px;}
.y99{bottom:708.408900px;}
.y107{bottom:711.227250px;}
.y11{bottom:717.683400px;}
.y109{bottom:719.327250px;}
.y3c{bottom:720.844800px;}
.y98{bottom:724.609050px;}
.y106{bottom:727.427100px;}
.ycc{bottom:728.614950px;}
.y6c{bottom:728.628000px;}
.y3b{bottom:735.244800px;}
.y103{bottom:735.527100px;}
.y10{bottom:735.683400px;}
.y97{bottom:740.809050px;}
.y105{bottom:743.627250px;}
.y6b{bottom:746.178000px;}
.ycb{bottom:746.614950px;}
.y3a{bottom:749.644800px;}
.y134{bottom:750.626550px;}
.y108{bottom:751.727250px;}
.yf{bottom:753.683400px;}
.y104{bottom:759.827250px;}
.y6a{bottom:763.728000px;}
.y39{bottom:764.044800px;}
.yca{bottom:764.614950px;}
.y2{bottom:769.573800px;}
.ye{bottom:771.683400px;}
.y38{bottom:778.444800px;}
.y102{bottom:781.655550px;}
.yd{bottom:789.683400px;}
.y69{bottom:789.781950px;}
.yc9{bottom:791.118900px;}
.y37{bottom:792.844800px;}
.y100{bottom:797.855550px;}
.y96{bottom:798.637350px;}
.y36{bottom:807.244800px;}
.y68{bottom:807.331950px;}
.y3{bottom:807.481350px;}
.yc{bottom:807.683400px;}
.y101{bottom:814.055550px;}
.y95{bottom:818.437350px;}
.y35{bottom:821.644800px;}
.y137{bottom:824.305800px;}
.y67{bottom:824.881950px;}
.yb{bottom:825.683400px;}
.yc8{bottom:830.118900px;}
.yff{bottom:835.883850px;}
.y34{bottom:836.044800px;}
.ya{bottom:843.683400px;}
.yc7{bottom:848.118900px;}
.y33{bottom:850.444800px;}
.y66{bottom:850.935900px;}
.yfe{bottom:852.083850px;}
.y136{bottom:854.409750px;}
.yf9{bottom:860.183850px;}
.y32{bottom:864.844800px;}
.yc6{bottom:866.118900px;}
.yfd{bottom:868.283850px;}
.y65{bottom:868.485900px;}
.y9{bottom:870.187350px;}
.yf7{bottom:876.383850px;}
.y94{bottom:877.837350px;}
.y31{bottom:879.244800px;}
.y133{bottom:882.318900px;}
.yc5{bottom:884.118900px;}
.yfc{bottom:884.483850px;}
.y135{bottom:884.513700px;}
.y64{bottom:886.035900px;}
.y8{bottom:888.187350px;}
.yf8{bottom:892.583850px;}
.y30{bottom:893.644800px;}
.y93{bottom:897.637350px;}
.y132{bottom:898.518900px;}
.yfb{bottom:900.683850px;}
.yc4{bottom:902.118900px;}
.y2f{bottom:908.044800px;}
.y63{bottom:912.089850px;}
.y7{bottom:914.691300px;}
.y131{bottom:914.718900px;}
.yfa{bottom:916.883850px;}
.y92{bottom:917.437350px;}
.yc3{bottom:920.118900px;}
.y2e{bottom:922.444800px;}
.y62{bottom:929.639850px;}
.y130{bottom:930.919050px;}
.y6{bottom:932.691300px;}
.y91{bottom:937.237350px;}
.yc2{bottom:938.118900px;}
.yf6{bottom:938.712300px;}
.y1{bottom:946.740300px;}
.y12f{bottom:947.119050px;}
.yf5{bottom:954.912300px;}
.y61{bottom:955.693800px;}
.yc1{bottom:956.118900px;}
.y90{bottom:957.037350px;}
.yf2{bottom:963.012300px;}
.y12e{bottom:963.318900px;}
.yf1{bottom:971.112300px;}
.yc0{bottom:974.118900px;}
.y60{bottom:975.493800px;}
.y8f{bottom:976.837350px;}
.y12d{bottom:979.518900px;}
.yf4{bottom:987.312300px;}
.ybf{bottom:992.118900px;}
.y5f{bottom:993.043800px;}
.y12c{bottom:995.719050px;}
.yf3{bottom:1003.512300px;}
.ybe{bottom:1010.118900px;}
.y12b{bottom:1011.919050px;}
.y5e{bottom:1019.097600px;}
.yf0{bottom:1025.340600px;}
.ybd{bottom:1028.118900px;}
.y5d{bottom:1036.647600px;}
.ybc{bottom:1046.118900px;}
.y12a{bottom:1046.119050px;}
.yef{bottom:1047.919050px;}
.y8e{bottom:1050.637350px;}
.y5c{bottom:1054.197750px;}
.ybb{bottom:1064.118900px;}
.y129{bottom:1064.119050px;}
.yba{bottom:1082.118900px;}
.yee{bottom:1082.119050px;}
.y8d{bottom:1093.837350px;}
.yb9{bottom:1100.118900px;}
.yed{bottom:1100.119050px;}
.yb8{bottom:1118.118900px;}
.yec{bottom:1118.119050px;}
.y8b{bottom:1118.168550px;}
.y8a{bottom:1135.718550px;}
.yb7{bottom:1136.118900px;}
.y5{bottom:1136.119050px;}
.y8c{bottom:1137.037350px;}
.y89{bottom:1153.268550px;}
.yb6{bottom:1154.118900px;}
.y4{bottom:1154.119050px;}
.y59{bottom:1188.116700px;}
.h10{height:34.945312px;}
.ha{height:34.968750px;}
.h9{height:35.179688px;}
.h11{height:38.988000px;}
.h7{height:39.313477px;}
.h6{height:39.339844px;}
.h8{height:39.577148px;}
.h15{height:42.568359px;}
.he{height:43.320000px;}
.h5{height:43.681641px;}
.hc{height:43.710938px;}
.hb{height:43.974609px;}
.h13{height:48.049805px;}
.h1a{height:48.082031px;}
.h19{height:48.372070px;}
.h14{height:51.082031px;}
.hd{height:52.560000px;}
.h18{height:52.769531px;}
.h16{height:71.977148px;}
.h17{height:85.148438px;}
.h3{height:95.829237px;}
.h12{height:102.164062px;}
.hf{height:127.705078px;}
.h4{height:195.590661px;}
.h2{height:262.089844px;}
.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;}
.x24{left:74.031450px;}
.x10{left:81.637800px;}
.x2e{left:83.427150px;}
.x19{left:86.895450px;}
.x27{left:89.739900px;}
.x30{left:93.357000px;}
.x6{left:97.795350px;}
.x2f{left:102.477150px;}
.x25{left:105.477150px;}
.x11{left:109.077150px;}
.x17{left:110.551200px;}
.x28{left:124.206450px;}
.x8{left:127.559100px;}
.x1a{left:131.702100px;}
.x13{left:140.314950px;}
.x2b{left:178.582650px;}
.x35{left:186.552150px;}
.x1b{left:192.557550px;}
.x33{left:198.173850px;}
.x34{left:212.393850px;}
.x32{left:240.346350px;}
.x29{left:255.156450px;}
.x2c{left:289.342200px;}
.x36{left:315.990150px;}
.x31{left:339.878100px;}
.x2d{left:349.459350px;}
.x2a{left:356.685450px;}
.x23{left:375.777300px;}
.xc{left:429.572400px;}
.xe{left:431.700150px;}
.xd{left:440.870100px;}
.x9{left:444.330750px;}
.x1e{left:461.668350px;}
.x14{left:472.580700px;}
.xf{left:485.046000px;}
.xa{left:503.858250px;}
.x1c{left:520.040250px;}
.xb{left:535.030200px;}
.x21{left:539.107350px;}
.x22{left:541.116450px;}
.x1d{left:544.153800px;}
.x20{left:599.847150px;}
.x1f{left:610.291500px;}
.x5{left:633.932100px;}
.x26{left:675.640650px;}
.x1{left:679.618950px;}
.x4{left:724.825650px;}
.x18{left:773.036250px;}
.x15{left:776.636400px;}
.x16{left:855.632400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.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;}
.ls7{letter-spacing:12.800000pt;}
.ls5{letter-spacing:24.000000pt;}
.ls9{letter-spacing:95.859733pt;}
.ls8{letter-spacing:188.994133pt;}
.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;}
.ws16{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.693333pt;}
.ws8{word-spacing:-14.826667pt;}
.ws9{word-spacing:-13.344000pt;}
.wsb{word-spacing:-12.800000pt;}
.wsf{word-spacing:-2.506667pt;}
.ws7{word-spacing:-1.866667pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:1.973333pt;}
.wsd{word-spacing:2.720000pt;}
.ws10{word-spacing:3.626667pt;}
.ws11{word-spacing:6.560000pt;}
.ws14{word-spacing:7.413333pt;}
.wsc{word-spacing:8.000000pt;}
.wsa{word-spacing:8.976000pt;}
.ws15{word-spacing:21.120000pt;}
.wse{word-spacing:22.720000pt;}
.ws13{word-spacing:999.769067pt;}
._16{margin-left:-2592.872000pt;}
._2a{margin-left:-782.528000pt;}
._0{margin-left:-712.640000pt;}
._26{margin-left:-576.128000pt;}
._2{margin-left:-531.107806pt;}
._2b{margin-left:-483.739733pt;}
._27{margin-left:-448.160533pt;}
._29{margin-left:-416.778133pt;}
._1{margin-left:-383.396419pt;}
._28{margin-left:-320.000000pt;}
._11{margin-left:-14.761067pt;}
._15{margin-left:-13.253867pt;}
._7{margin-left:-11.818667pt;}
._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;}
._12{margin-left:-0.905067pt;}
._14{width:0.966400pt;}
._e{width:1.904000pt;}
._1c{width:3.125333pt;}
._1e{width:4.155733pt;}
._17{width:5.145600pt;}
._18{width:6.909333pt;}
._f{width:8.612267pt;}
._13{width:10.045867pt;}
._22{width:10.940800pt;}
._21{width:11.930667pt;}
._1d{width:12.874667pt;}
._1b{width:14.342400pt;}
._20{width:16.597333pt;}
._1f{width:17.589333pt;}
._23{width:20.496000pt;}
._9{width:22.224000pt;}
._c{width:24.000000pt;}
._19{width:25.953067pt;}
._1a{width:26.882133pt;}
._24{width:28.424533pt;}
._25{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;}
.yb5{bottom:115.762267pt;}
.y5b{bottom:117.716667pt;}
.yeb{bottom:125.432000pt;}
.y58{bottom:125.692133pt;}
.y128{bottom:128.103467pt;}
.yb4{bottom:131.762267pt;}
.yea{bottom:141.432000pt;}
.y57{bottom:141.692133pt;}
.y88{bottom:142.437867pt;}
.y127{bottom:144.103467pt;}
.yb3{bottom:147.762267pt;}
.ye9{bottom:157.432000pt;}
.y56{bottom:157.692133pt;}
.y87{bottom:158.037867pt;}
.y126{bottom:160.103467pt;}
.yb2{bottom:163.762267pt;}
.ye8{bottom:173.432000pt;}
.y86{bottom:173.637867pt;}
.y55{bottom:173.692133pt;}
.y125{bottom:176.103467pt;}
.yb1{bottom:187.321333pt;}
.ye7{bottom:189.432000pt;}
.y54{bottom:189.692133pt;}
.y2d{bottom:189.940800pt;}
.y85{bottom:196.796933pt;}
.y124{bottom:199.662533pt;}
.ye6{bottom:205.432000pt;}
.y53{bottom:205.692133pt;}
.y2c{bottom:205.940800pt;}
.y84{bottom:212.396933pt;}
.ye5{bottom:221.432000pt;}
.y52{bottom:221.692133pt;}
.y2b{bottom:221.940800pt;}
.yb0{bottom:221.988000pt;}
.y83{bottom:227.996933pt;}
.y123{bottom:234.329200pt;}
.ye4{bottom:237.432000pt;}
.y51{bottom:237.692133pt;}
.y2a{bottom:237.940800pt;}
.yaf{bottom:237.988000pt;}
.y82{bottom:243.596933pt;}
.y122{bottom:250.329200pt;}
.ye3{bottom:253.432000pt;}
.y50{bottom:253.692133pt;}
.y29{bottom:253.940800pt;}
.yae{bottom:253.988000pt;}
.y121{bottom:266.329200pt;}
.y81{bottom:266.756000pt;}
.y139{bottom:269.195867pt;}
.ye2{bottom:269.432000pt;}
.y4f{bottom:269.692133pt;}
.y28{bottom:269.940800pt;}
.yad{bottom:269.988000pt;}
.y120{bottom:282.329200pt;}
.y80{bottom:282.356000pt;}
.y138{bottom:285.195867pt;}
.ye1{bottom:285.432000pt;}
.y4e{bottom:285.692133pt;}
.y27{bottom:285.940800pt;}
.yac{bottom:285.988000pt;}
.y7f{bottom:297.956000pt;}
.y11f{bottom:298.329200pt;}
.ye0{bottom:301.432000pt;}
.y26{bottom:301.940800pt;}
.yab{bottom:301.988000pt;}
.y11e{bottom:314.329200pt;}
.y142{bottom:315.772667pt;}
.ydf{bottom:317.432000pt;}
.y25{bottom:317.940800pt;}
.yaa{bottom:317.988000pt;}
.y7e{bottom:321.114933pt;}
.y11d{bottom:330.329200pt;}
.y141{bottom:333.372667pt;}
.yde{bottom:333.432000pt;}
.y24{bottom:333.940800pt;}
.ya9{bottom:333.988000pt;}
.y7d{bottom:336.715067pt;}
.y11c{bottom:346.329200pt;}
.ydd{bottom:349.432000pt;}
.y23{bottom:349.940800pt;}
.ya8{bottom:349.988000pt;}
.y140{bottom:350.972667pt;}
.y7c{bottom:352.715067pt;}
.y4d{bottom:357.490267pt;}
.y11b{bottom:362.329200pt;}
.ydc{bottom:365.432000pt;}
.y22{bottom:365.940800pt;}
.ya7{bottom:365.988000pt;}
.y13f{bottom:368.572667pt;}
.y4c{bottom:373.490267pt;}
.y7b{bottom:375.874000pt;}
.y11a{bottom:378.329200pt;}
.ydb{bottom:381.432000pt;}
.y21{bottom:381.940800pt;}
.y13e{bottom:386.172667pt;}
.y4b{bottom:389.490267pt;}
.ya6{bottom:389.547067pt;}
.y7a{bottom:391.474133pt;}
.y119{bottom:394.329200pt;}
.yda{bottom:397.432000pt;}
.y20{bottom:397.940800pt;}
.y4a{bottom:405.490267pt;}
.y79{bottom:407.074000pt;}
.y118{bottom:410.329200pt;}
.yd9{bottom:413.432000pt;}
.y1f{bottom:413.940800pt;}
.y49{bottom:421.490267pt;}
.ya5{bottom:424.213733pt;}
.y117{bottom:426.329200pt;}
.yd8{bottom:429.432000pt;}
.y1e{bottom:429.940800pt;}
.y78{bottom:430.233067pt;}
.y48{bottom:437.490267pt;}
.y116{bottom:442.329200pt;}
.yd7{bottom:445.432000pt;}
.y77{bottom:445.833067pt;}
.y1d{bottom:445.940800pt;}
.ya4{bottom:446.172800pt;}
.y115{bottom:458.329200pt;}
.ya3{bottom:460.572800pt;}
.yd6{bottom:461.432000pt;}
.y76{bottom:461.433067pt;}
.y1c{bottom:461.940800pt;}
.ya2{bottom:474.972800pt;}
.yd5{bottom:477.432000pt;}
.y1b{bottom:477.940800pt;}
.y75{bottom:484.592133pt;}
.ya1{bottom:489.372800pt;}
.y114{bottom:490.329200pt;}
.yd4{bottom:493.432000pt;}
.y1a{bottom:493.940800pt;}
.y47{bottom:499.950933pt;}
.y74{bottom:500.192133pt;}
.y113{bottom:506.995867pt;}
.ya0{bottom:508.775733pt;}
.yd3{bottom:509.432000pt;}
.y19{bottom:509.940800pt;}
.y46{bottom:512.750933pt;}
.y73{bottom:515.792133pt;}
.y112{bottom:521.395867pt;}
.yd2{bottom:525.432000pt;}
.y45{bottom:525.550933pt;}
.y18{bottom:525.940800pt;}
.y10f{bottom:528.595867pt;}
.y9f{bottom:530.734800pt;}
.y111{bottom:535.796000pt;}
.y44{bottom:538.350933pt;}
.y72{bottom:538.951200pt;}
.yd1{bottom:541.432000pt;}
.y17{bottom:541.940800pt;}
.y9e{bottom:545.134800pt;}
.y110{bottom:550.195867pt;}
.y43{bottom:551.150933pt;}
.y71{bottom:554.551200pt;}
.y13d{bottom:557.215867pt;}
.yd0{bottom:557.432000pt;}
.y16{bottom:557.940800pt;}
.y9d{bottom:559.534800pt;}
.y42{bottom:563.950933pt;}
.y10e{bottom:569.598933pt;}
.y70{bottom:570.151200pt;}
.ycf{bottom:573.432000pt;}
.y9c{bottom:573.934800pt;}
.y15{bottom:573.940800pt;}
.y13c{bottom:574.815867pt;}
.y41{bottom:576.750933pt;}
.y10d{bottom:583.998933pt;}
.yce{bottom:589.432000pt;}
.y40{bottom:589.550933pt;}
.y14{bottom:589.940800pt;}
.y10a{bottom:591.198933pt;}
.y13b{bottom:592.415867pt;}
.y6f{bottom:593.310267pt;}
.y9b{bottom:593.337867pt;}
.y10c{bottom:598.398933pt;}
.y3f{bottom:602.350933pt;}
.y13{bottom:605.940800pt;}
.y6e{bottom:608.910267pt;}
.y13a{bottom:610.015867pt;}
.y10b{bottom:612.798933pt;}
.ycd{bottom:612.991067pt;}
.y3e{bottom:615.150933pt;}
.y9a{bottom:615.296933pt;}
.y12{bottom:621.940800pt;}
.y6d{bottom:624.510267pt;}
.y3d{bottom:627.950933pt;}
.y99{bottom:629.696800pt;}
.y107{bottom:632.202000pt;}
.y11{bottom:637.940800pt;}
.y109{bottom:639.402000pt;}
.y3c{bottom:640.750933pt;}
.y98{bottom:644.096933pt;}
.y106{bottom:646.601867pt;}
.ycc{bottom:647.657733pt;}
.y6c{bottom:647.669333pt;}
.y3b{bottom:653.550933pt;}
.y103{bottom:653.801867pt;}
.y10{bottom:653.940800pt;}
.y97{bottom:658.496933pt;}
.y105{bottom:661.002000pt;}
.y6b{bottom:663.269333pt;}
.ycb{bottom:663.657733pt;}
.y3a{bottom:666.350933pt;}
.y134{bottom:667.223600pt;}
.y108{bottom:668.202000pt;}
.yf{bottom:669.940800pt;}
.y104{bottom:675.402000pt;}
.y6a{bottom:678.869333pt;}
.y39{bottom:679.150933pt;}
.yca{bottom:679.657733pt;}
.y2{bottom:684.065600pt;}
.ye{bottom:685.940800pt;}
.y38{bottom:691.950933pt;}
.y102{bottom:694.804933pt;}
.yd{bottom:701.940800pt;}
.y69{bottom:702.028400pt;}
.yc9{bottom:703.216800pt;}
.y37{bottom:704.750933pt;}
.y100{bottom:709.204933pt;}
.y96{bottom:709.899867pt;}
.y36{bottom:717.550933pt;}
.y68{bottom:717.628400pt;}
.y3{bottom:717.761200pt;}
.yc{bottom:717.940800pt;}
.y101{bottom:723.604933pt;}
.y95{bottom:727.499867pt;}
.y35{bottom:730.350933pt;}
.y137{bottom:732.716267pt;}
.y67{bottom:733.228400pt;}
.yb{bottom:733.940800pt;}
.yc8{bottom:737.883467pt;}
.yff{bottom:743.007867pt;}
.y34{bottom:743.150933pt;}
.ya{bottom:749.940800pt;}
.yc7{bottom:753.883467pt;}
.y33{bottom:755.950933pt;}
.y66{bottom:756.387467pt;}
.yfe{bottom:757.407867pt;}
.y136{bottom:759.475333pt;}
.yf9{bottom:764.607867pt;}
.y32{bottom:768.750933pt;}
.yc6{bottom:769.883467pt;}
.yfd{bottom:771.807867pt;}
.y65{bottom:771.987467pt;}
.y9{bottom:773.499867pt;}
.yf7{bottom:779.007867pt;}
.y94{bottom:780.299867pt;}
.y31{bottom:781.550933pt;}
.y133{bottom:784.283467pt;}
.yc5{bottom:785.883467pt;}
.yfc{bottom:786.207867pt;}
.y135{bottom:786.234400pt;}
.y64{bottom:787.587467pt;}
.y8{bottom:789.499867pt;}
.yf8{bottom:793.407867pt;}
.y30{bottom:794.350933pt;}
.y93{bottom:797.899867pt;}
.y132{bottom:798.683467pt;}
.yfb{bottom:800.607867pt;}
.yc4{bottom:801.883467pt;}
.y2f{bottom:807.150933pt;}
.y63{bottom:810.746533pt;}
.y7{bottom:813.058933pt;}
.y131{bottom:813.083467pt;}
.yfa{bottom:815.007867pt;}
.y92{bottom:815.499867pt;}
.yc3{bottom:817.883467pt;}
.y2e{bottom:819.950933pt;}
.y62{bottom:826.346533pt;}
.y130{bottom:827.483600pt;}
.y6{bottom:829.058933pt;}
.y91{bottom:833.099867pt;}
.yc2{bottom:833.883467pt;}
.yf6{bottom:834.410933pt;}
.y1{bottom:841.546933pt;}
.y12f{bottom:841.883600pt;}
.yf5{bottom:848.810933pt;}
.y61{bottom:849.505600pt;}
.yc1{bottom:849.883467pt;}
.y90{bottom:850.699867pt;}
.yf2{bottom:856.010933pt;}
.y12e{bottom:856.283467pt;}
.yf1{bottom:863.210933pt;}
.yc0{bottom:865.883467pt;}
.y60{bottom:867.105600pt;}
.y8f{bottom:868.299867pt;}
.y12d{bottom:870.683467pt;}
.yf4{bottom:877.610933pt;}
.ybf{bottom:881.883467pt;}
.y5f{bottom:882.705600pt;}
.y12c{bottom:885.083600pt;}
.yf3{bottom:892.010933pt;}
.ybe{bottom:897.883467pt;}
.y12b{bottom:899.483600pt;}
.y5e{bottom:905.864533pt;}
.yf0{bottom:911.413867pt;}
.ybd{bottom:913.883467pt;}
.y5d{bottom:921.464533pt;}
.ybc{bottom:929.883467pt;}
.y12a{bottom:929.883600pt;}
.yef{bottom:931.483600pt;}
.y8e{bottom:933.899867pt;}
.y5c{bottom:937.064667pt;}
.ybb{bottom:945.883467pt;}
.y129{bottom:945.883600pt;}
.yba{bottom:961.883467pt;}
.yee{bottom:961.883600pt;}
.y8d{bottom:972.299867pt;}
.yb9{bottom:977.883467pt;}
.yed{bottom:977.883600pt;}
.yb8{bottom:993.883467pt;}
.yec{bottom:993.883600pt;}
.y8b{bottom:993.927600pt;}
.y8a{bottom:1009.527600pt;}
.yb7{bottom:1009.883467pt;}
.y5{bottom:1009.883600pt;}
.y8c{bottom:1010.699867pt;}
.y89{bottom:1025.127600pt;}
.yb6{bottom:1025.883467pt;}
.y4{bottom:1025.883600pt;}
.y59{bottom:1056.103733pt;}
.h10{height:31.062500pt;}
.ha{height:31.083333pt;}
.h9{height:31.270833pt;}
.h11{height:34.656000pt;}
.h7{height:34.945312pt;}
.h6{height:34.968750pt;}
.h8{height:35.179688pt;}
.h15{height:37.838542pt;}
.he{height:38.506667pt;}
.h5{height:38.828125pt;}
.hc{height:38.854167pt;}
.hb{height:39.088542pt;}
.h13{height:42.710938pt;}
.h1a{height:42.739583pt;}
.h19{height:42.997396pt;}
.h14{height:45.406250pt;}
.hd{height:46.720000pt;}
.h18{height:46.906250pt;}
.h16{height:63.979687pt;}
.h17{height:75.687500pt;}
.h3{height:85.181544pt;}
.h12{height:90.812500pt;}
.hf{height:113.515625pt;}
.h4{height:173.858366pt;}
.h2{height:232.968750pt;}
.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;}
.x24{left:65.805733pt;}
.x10{left:72.566933pt;}
.x2e{left:74.157467pt;}
.x19{left:77.240400pt;}
.x27{left:79.768800pt;}
.x30{left:82.984000pt;}
.x6{left:86.929200pt;}
.x2f{left:91.090800pt;}
.x25{left:93.757467pt;}
.x11{left:96.957467pt;}
.x17{left:98.267733pt;}
.x28{left:110.405733pt;}
.x8{left:113.385867pt;}
.x1a{left:117.068533pt;}
.x13{left:124.724400pt;}
.x2b{left:158.740133pt;}
.x35{left:165.824133pt;}
.x1b{left:171.162267pt;}
.x33{left:176.154533pt;}
.x34{left:188.794533pt;}
.x32{left:213.641200pt;}
.x29{left:226.805733pt;}
.x2c{left:257.193067pt;}
.x36{left:280.880133pt;}
.x31{left:302.113867pt;}
.x2d{left:310.630533pt;}
.x2a{left:317.053733pt;}
.x23{left:334.024267pt;}
.xc{left:381.842133pt;}
.xe{left:383.733467pt;}
.xd{left:391.884533pt;}
.x9{left:394.960667pt;}
.x1e{left:410.371867pt;}
.x14{left:420.071733pt;}
.xf{left:431.152000pt;}
.xa{left:447.874000pt;}
.x1c{left:462.258000pt;}
.xb{left:475.582400pt;}
.x21{left:479.206533pt;}
.x22{left:480.992400pt;}
.x1d{left:483.692267pt;}
.x20{left:533.197467pt;}
.x1f{left:542.481333pt;}
.x5{left:563.495200pt;}
.x26{left:600.569467pt;}
.x1{left:604.105733pt;}
.x4{left:644.289467pt;}
.x18{left:687.143333pt;}
.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; }
  