
    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_4c8e4f066e008ade9941445c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_916c3850606f362a688f4077.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_7ee52df83bceff79a7ac00f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961648;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_c9dcf846829779a75d21f98b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_4501ad01308c8ad3f48a4c54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_52f6f80e7a90f8b013da08c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_4c0dc117c4c99a1074355553.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_6b42f82532038e67fb17f9a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978000;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_988def9a50f45932eb08763d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707000;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_6828ffb1abf14b3a71314b14.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_70bc35f8b9ca0b0eb4de26fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_443b240a914bc5780963f974.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_916c3850606f362a688f4077.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_4067d7927c6e2baa7b80e3c3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692871;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_b2629e2fd1529602982bd38f.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_63d5343d2b556265595e394a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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;}
.m3{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.923600px;}
.v1{vertical-align:-1.402200px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:41.832000px;}
.ls4{letter-spacing:47.232000px;}
.ls5{letter-spacing:52.344000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-18.720000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:0.144000px;}
.ws8{word-spacing:0.288000px;}
.wse{word-spacing:11.640000px;}
.ws9{word-spacing:11.940000px;}
.wsa{word-spacing:12.600000px;}
.wsd{word-spacing:16.620000px;}
.wsb{word-spacing:24.300000px;}
.wsc{word-spacing:31.080000px;}
.ws0{word-spacing:31.881600px;}
.wsf{word-spacing:35.580000px;}
.ws1{word-spacing:931.579200px;}
.ws4{word-spacing:1716.003000px;}
._48{margin-left:-61.920000px;}
._6b{margin-left:-26.728800px;}
._1c{margin-left:-18.720000px;}
._2{margin-left:-15.192000px;}
._5e{margin-left:-14.032800px;}
._5b{margin-left:-13.032000px;}
._24{margin-left:-11.132400px;}
._10{margin-left:-9.986400px;}
._1d{margin-left:-8.755200px;}
._2c{margin-left:-7.639200px;}
._5{margin-left:-6.271200px;}
._2b{margin-left:-5.176800px;}
._0{margin-left:-3.168000px;}
._16{margin-left:-1.288800px;}
._1{width:1.144800px;}
._29{width:2.282400px;}
._6{width:3.636000px;}
._32{width:5.018400px;}
._1f{width:6.292800px;}
._c{width:7.552800px;}
._4a{width:8.683200px;}
._a{width:9.849600px;}
._4b{width:11.318400px;}
._21{width:12.506400px;}
._2e{width:13.651200px;}
._11{width:14.860800px;}
._f{width:15.976800px;}
._19{width:17.582400px;}
._7{width:20.728800px;}
._64{width:21.744000px;}
._3{width:22.744800px;}
._5c{width:24.120000px;}
._35{width:25.221600px;}
._12{width:27.201600px;}
._e{width:28.720800px;}
._15{width:30.283200px;}
._23{width:31.636800px;}
._1e{width:33.048000px;}
._b{width:35.085600px;}
._28{width:36.554400px;}
._4{width:37.706400px;}
._13{width:39.312000px;}
._37{width:41.097600px;}
._17{width:42.847200px;}
._14{width:44.380800px;}
._34{width:45.763200px;}
._22{width:47.664000px;}
._47{width:50.119200px;}
._9{width:51.206400px;}
._3c{width:52.394400px;}
._36{width:54.144000px;}
._3f{width:55.807200px;}
._8{width:57.247200px;}
._57{width:58.672800px;}
._42{width:59.904000px;}
._1a{width:62.028000px;}
._33{width:63.604800px;}
._d{width:65.304000px;}
._20{width:66.312000px;}
._5d{width:68.018400px;}
._5a{width:69.170400px;}
._2f{width:71.820000px;}
._3a{width:73.771200px;}
._54{width:75.816000px;}
._3e{width:77.587200px;}
._27{width:79.804800px;}
._6a{width:81.115200px;}
._59{width:82.584000px;}
._40{width:83.743200px;}
._4f{width:85.968000px;}
._3b{width:87.264000px;}
._58{width:88.531200px;}
._1b{width:89.532000px;}
._38{width:91.051200px;}
._51{width:95.184000px;}
._39{width:96.912000px;}
._46{width:99.288000px;}
._2a{width:100.440000px;}
._62{width:101.527200px;}
._50{width:102.672000px;}
._55{width:103.716000px;}
._2d{width:104.731200px;}
._68{width:105.876000px;}
._60{width:108.576000px;}
._3d{width:110.923200px;}
._52{width:113.688000px;}
._4d{width:115.524000px;}
._25{width:118.576800px;}
._30{width:120.600000px;}
._66{width:126.144000px;}
._45{width:129.420000px;}
._43{width:131.544000px;}
._56{width:133.452000px;}
._18{width:135.576000px;}
._31{width:139.939200px;}
._61{width:144.396000px;}
._67{width:150.804000px;}
._4c{width:161.424000px;}
._63{width:164.484000px;}
._65{width:167.976000px;}
._4e{width:173.520000px;}
._5f{width:185.623200px;}
._53{width:187.344000px;}
._26{width:197.280000px;}
._69{width:209.289600px;}
._41{width:211.975200px;}
._49{width:232.632000px;}
._44{width:270.079200px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.943200px;}
.y32{bottom:64.760550px;}
.y31{bottom:66.091050px;}
.yb0{bottom:88.050150px;}
.y9a{bottom:93.960150px;}
.y72{bottom:94.096050px;}
.y5d{bottom:94.846050px;}
.y27{bottom:104.467050px;}
.yaf{bottom:109.794150px;}
.y99{bottom:116.460150px;}
.y71{bottom:116.596050px;}
.y5c{bottom:117.346050px;}
.ydb{bottom:123.216150px;}
.y26{bottom:126.967050px;}
.yae{bottom:131.538150px;}
.y98{bottom:138.960150px;}
.y70{bottom:139.096050px;}
.y5b{bottom:139.846050px;}
.yda{bottom:145.716150px;}
.y25{bottom:149.467050px;}
.yad{bottom:153.282150px;}
.y97{bottom:161.460150px;}
.y6f{bottom:161.596050px;}
.y5a{bottom:162.346050px;}
.yd9{bottom:167.460150px;}
.y24{bottom:171.211050px;}
.yac{bottom:175.026150px;}
.y96{bottom:183.960150px;}
.y6e{bottom:184.096050px;}
.yd8{bottom:189.210150px;}
.yd7{bottom:189.246150px;}
.y23{bottom:192.955050px;}
.yab{bottom:196.770150px;}
.y59{bottom:196.846050px;}
.y95{bottom:206.460150px;}
.y6d{bottom:206.596050px;}
.yd6{bottom:210.990150px;}
.y22{bottom:214.699050px;}
.yaa{bottom:218.514150px;}
.y58{bottom:219.346050px;}
.y94{bottom:228.960150px;}
.y6c{bottom:229.096050px;}
.yd5{bottom:232.734150px;}
.y21{bottom:236.443050px;}
.ya9{bottom:240.258150px;}
.y57{bottom:241.096050px;}
.y93{bottom:251.460150px;}
.y6b{bottom:251.596050px;}
.yd4{bottom:254.478150px;}
.y20{bottom:258.223050px;}
.ya8{bottom:262.002150px;}
.y56{bottom:262.846050px;}
.y92{bottom:273.960150px;}
.yd3{bottom:276.222150px;}
.y1f{bottom:279.967050px;}
.ya7{bottom:283.746150px;}
.y55{bottom:284.596050px;}
.y91{bottom:296.460150px;}
.y6a{bottom:296.596050px;}
.yd2{bottom:297.966150px;}
.y1e{bottom:301.711050px;}
.ya6{bottom:305.490150px;}
.y54{bottom:306.388050px;}
.y90{bottom:318.960150px;}
.y69{bottom:319.096050px;}
.yd1{bottom:319.710150px;}
.yd0{bottom:319.752150px;}
.y1d{bottom:323.455050px;}
.ya5{bottom:327.234150px;}
.y53{bottom:328.132050px;}
.y8f{bottom:341.460150px;}
.ycf{bottom:341.496150px;}
.y68{bottom:341.596050px;}
.y1c{bottom:345.199050px;}
.ya4{bottom:348.978150px;}
.y52{bottom:349.876050px;}
.yce{bottom:363.240150px;}
.y9b{bottom:363.960150px;}
.y67{bottom:364.096050px;}
.y1b{bottom:366.943050px;}
.ya3{bottom:370.722150px;}
.y51{bottom:371.620050px;}
.ycd{bottom:384.984150px;}
.y8e{bottom:386.460150px;}
.y66{bottom:386.596050px;}
.y1a{bottom:389.443050px;}
.ya2{bottom:392.466150px;}
.y50{bottom:393.364050px;}
.ycc{bottom:406.728150px;}
.y8d{bottom:408.960150px;}
.y65{bottom:409.096050px;}
.ya1{bottom:414.210150px;}
.y4f{bottom:415.108050px;}
.y19{bottom:423.919050px;}
.ycb{bottom:428.472150px;}
.y8c{bottom:431.460150px;}
.y64{bottom:431.596050px;}
.y4e{bottom:436.852050px;}
.y18{bottom:444.925050px;}
.yca{bottom:450.216150px;}
.y8b{bottom:453.960150px;}
.y63{bottom:454.096050px;}
.y30{bottom:456.139950px;}
.ya0{bottom:457.722150px;}
.y4d{bottom:458.596050px;}
.y17{bottom:465.931050px;}
.yc9{bottom:471.960150px;}
.y8a{bottom:476.460150px;}
.y62{bottom:476.596050px;}
.y2f{bottom:478.639950px;}
.y9f{bottom:479.466150px;}
.y4c{bottom:480.346050px;}
.y16{bottom:486.937050px;}
.yc8{bottom:493.710150px;}
.y89{bottom:498.960150px;}
.y61{bottom:499.096050px;}
.y2e{bottom:501.139950px;}
.y9e{bottom:501.210150px;}
.y4b{bottom:502.096050px;}
.y15{bottom:507.943050px;}
.yc7{bottom:515.676150px;}
.y88{bottom:521.460150px;}
.y60{bottom:521.596050px;}
.y9d{bottom:522.960150px;}
.y4a{bottom:523.864050px;}
.y14{bottom:528.931050px;}
.yc6{bottom:537.420150px;}
.y2d{bottom:541.639950px;}
.y87{bottom:543.960150px;}
.y5f{bottom:544.096050px;}
.y9c{bottom:544.710150px;}
.y49{bottom:545.608050px;}
.y13{bottom:549.937050px;}
.yc5{bottom:559.164150px;}
.y86{bottom:566.460150px;}
.y5e{bottom:566.596050px;}
.y48{bottom:567.352050px;}
.y12{bottom:570.943050px;}
.yc4{bottom:580.908150px;}
.y2c{bottom:586.639950px;}
.y85{bottom:588.960150px;}
.y47{bottom:589.096050px;}
.y11{bottom:591.943050px;}
.yc3{bottom:602.652150px;}
.y84{bottom:611.460150px;}
.y46{bottom:611.596050px;}
.y10{bottom:612.901050px;}
.yc2{bottom:624.396150px;}
.y2b{bottom:627.139950px;}
.yf7{bottom:630.960150px;}
.yf{bottom:633.907050px;}
.y83{bottom:633.960150px;}
.y45{bottom:634.096050px;}
.yc1{bottom:646.140150px;}
.yf6{bottom:650.460150px;}
.ye{bottom:654.913050px;}
.y82{bottom:656.460150px;}
.y44{bottom:656.596050px;}
.ye8{bottom:662.460150px;}
.y2a{bottom:663.139950px;}
.yc0{bottom:667.884150px;}
.yf5{bottom:669.960150px;}
.yd{bottom:675.919050px;}
.y81{bottom:678.960150px;}
.y43{bottom:679.096050px;}
.ye7{bottom:684.960150px;}
.yf4{bottom:689.460150px;}
.ybf{bottom:689.628150px;}
.yc{bottom:696.925050px;}
.y29{bottom:699.139950px;}
.y80{bottom:701.460150px;}
.y42{bottom:701.596050px;}
.ye6{bottom:707.460150px;}
.yf3{bottom:708.960150px;}
.ybe{bottom:711.372150px;}
.yb{bottom:717.931050px;}
.y7f{bottom:723.960150px;}
.y41{bottom:724.096050px;}
.yf2{bottom:728.460150px;}
.ye5{bottom:729.960150px;}
.ybd{bottom:733.116150px;}
.y28{bottom:735.139950px;}
.ya{bottom:738.937050px;}
.y7e{bottom:746.460150px;}
.y40{bottom:746.596050px;}
.yf1{bottom:747.960150px;}
.ye4{bottom:752.460150px;}
.ybc{bottom:754.860150px;}
.y9{bottom:759.943050px;}
.yf0{bottom:767.460150px;}
.y7d{bottom:768.960150px;}
.y3f{bottom:769.096050px;}
.ye3{bottom:774.960150px;}
.ybb{bottom:776.604150px;}
.y8{bottom:780.943050px;}
.yef{bottom:786.960150px;}
.y7c{bottom:791.460150px;}
.y3e{bottom:791.596050px;}
.ye2{bottom:797.460150px;}
.yba{bottom:798.348150px;}
.yee{bottom:806.460150px;}
.y7b{bottom:813.960150px;}
.y3d{bottom:814.096050px;}
.ye1{bottom:819.960150px;}
.yb9{bottom:820.092150px;}
.yed{bottom:825.960150px;}
.y7{bottom:828.938550px;}
.y7a{bottom:836.460150px;}
.y3c{bottom:836.596050px;}
.yb8{bottom:841.836150px;}
.ye0{bottom:842.460150px;}
.yec{bottom:845.460150px;}
.y6{bottom:849.943050px;}
.y79{bottom:858.960150px;}
.y3b{bottom:859.096050px;}
.yb7{bottom:863.580150px;}
.ydf{bottom:864.960150px;}
.y5{bottom:870.943050px;}
.y78{bottom:881.460150px;}
.y3a{bottom:881.596050px;}
.yeb{bottom:884.460150px;}
.yb6{bottom:885.324150px;}
.yde{bottom:887.460150px;}
.y77{bottom:903.960150px;}
.y39{bottom:904.096050px;}
.yb5{bottom:907.068150px;}
.ydd{bottom:909.960150px;}
.y4{bottom:920.450550px;}
.y76{bottom:926.460150px;}
.y38{bottom:926.596050px;}
.yb4{bottom:928.812150px;}
.ydc{bottom:932.460150px;}
.y3{bottom:945.943050px;}
.y75{bottom:948.960150px;}
.y37{bottom:949.096050px;}
.yb3{bottom:950.556150px;}
.y74{bottom:971.460150px;}
.yea{bottom:971.466150px;}
.y36{bottom:971.596050px;}
.yb2{bottom:972.300150px;}
.y73{bottom:993.960150px;}
.ye9{bottom:993.966150px;}
.yb1{bottom:994.044150px;}
.y35{bottom:994.096050px;}
.y34{bottom:1024.979400px;}
.y2{bottom:1027.321050px;}
.y33{bottom:1039.979400px;}
.hc{height:32.507812px;}
.hd{height:33.351562px;}
.h9{height:40.634766px;}
.ha{height:41.689453px;}
.hb{height:42.000000px;}
.he{height:42.240000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h8{height:50.688000px;}
.h2{height:51.449400px;}
.h3{height:53.250000px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x2{left:65.194200px;}
.x1{left:74.553000px;}
.xe{left:85.039350px;}
.x26{left:90.779550px;}
.x22{left:105.612150px;}
.x1a{left:124.872150px;}
.x1b{left:129.551550px;}
.x14{left:182.978850px;}
.x13{left:186.560100px;}
.x8{left:224.187900px;}
.x11{left:250.297500px;}
.x10{left:259.459650px;}
.x3{left:287.595600px;}
.x12{left:311.262900px;}
.x7{left:314.208600px;}
.x4{left:332.303100px;}
.x1c{left:356.887800px;}
.x1d{left:368.502150px;}
.xf{left:374.424150px;}
.x17{left:399.938850px;}
.x25{left:409.547700px;}
.x19{left:410.736450px;}
.xd{left:412.540200px;}
.x15{left:421.195650px;}
.x24{left:426.935850px;}
.x23{left:441.761550px;}
.x21{left:451.553550px;}
.x1e{left:455.928150px;}
.x16{left:518.000850px;}
.x5{left:547.564200px;}
.x6{left:584.726100px;}
.xc{left:611.464200px;}
.xb{left:632.875800px;}
.x1f{left:656.816700px;}
.x18{left:663.871200px;}
.x20{left:677.284800px;}
.x27{left:705.774600px;}
.x9{left:710.503950px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v1{vertical-align:-1.246400pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:37.184000pt;}
.ls4{letter-spacing:41.984000pt;}
.ls5{letter-spacing:46.528000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:0.128000pt;}
.ws8{word-spacing:0.256000pt;}
.wse{word-spacing:10.346667pt;}
.ws9{word-spacing:10.613333pt;}
.wsa{word-spacing:11.200000pt;}
.wsd{word-spacing:14.773333pt;}
.wsb{word-spacing:21.600000pt;}
.wsc{word-spacing:27.626667pt;}
.ws0{word-spacing:28.339200pt;}
.wsf{word-spacing:31.626667pt;}
.ws1{word-spacing:828.070400pt;}
.ws4{word-spacing:1525.336000pt;}
._48{margin-left:-55.040000pt;}
._6b{margin-left:-23.758933pt;}
._1c{margin-left:-16.640000pt;}
._2{margin-left:-13.504000pt;}
._5e{margin-left:-12.473600pt;}
._5b{margin-left:-11.584000pt;}
._24{margin-left:-9.895467pt;}
._10{margin-left:-8.876800pt;}
._1d{margin-left:-7.782400pt;}
._2c{margin-left:-6.790400pt;}
._5{margin-left:-5.574400pt;}
._2b{margin-left:-4.601600pt;}
._0{margin-left:-2.816000pt;}
._16{margin-left:-1.145600pt;}
._1{width:1.017600pt;}
._29{width:2.028800pt;}
._6{width:3.232000pt;}
._32{width:4.460800pt;}
._1f{width:5.593600pt;}
._c{width:6.713600pt;}
._4a{width:7.718400pt;}
._a{width:8.755200pt;}
._4b{width:10.060800pt;}
._21{width:11.116800pt;}
._2e{width:12.134400pt;}
._11{width:13.209600pt;}
._f{width:14.201600pt;}
._19{width:15.628800pt;}
._7{width:18.425600pt;}
._64{width:19.328000pt;}
._3{width:20.217600pt;}
._5c{width:21.440000pt;}
._35{width:22.419200pt;}
._12{width:24.179200pt;}
._e{width:25.529600pt;}
._15{width:26.918400pt;}
._23{width:28.121600pt;}
._1e{width:29.376000pt;}
._b{width:31.187200pt;}
._28{width:32.492800pt;}
._4{width:33.516800pt;}
._13{width:34.944000pt;}
._37{width:36.531200pt;}
._17{width:38.086400pt;}
._14{width:39.449600pt;}
._34{width:40.678400pt;}
._22{width:42.368000pt;}
._47{width:44.550400pt;}
._9{width:45.516800pt;}
._3c{width:46.572800pt;}
._36{width:48.128000pt;}
._3f{width:49.606400pt;}
._8{width:50.886400pt;}
._57{width:52.153600pt;}
._42{width:53.248000pt;}
._1a{width:55.136000pt;}
._33{width:56.537600pt;}
._d{width:58.048000pt;}
._20{width:58.944000pt;}
._5d{width:60.460800pt;}
._5a{width:61.484800pt;}
._2f{width:63.840000pt;}
._3a{width:65.574400pt;}
._54{width:67.392000pt;}
._3e{width:68.966400pt;}
._27{width:70.937600pt;}
._6a{width:72.102400pt;}
._59{width:73.408000pt;}
._40{width:74.438400pt;}
._4f{width:76.416000pt;}
._3b{width:77.568000pt;}
._58{width:78.694400pt;}
._1b{width:79.584000pt;}
._38{width:80.934400pt;}
._51{width:84.608000pt;}
._39{width:86.144000pt;}
._46{width:88.256000pt;}
._2a{width:89.280000pt;}
._62{width:90.246400pt;}
._50{width:91.264000pt;}
._55{width:92.192000pt;}
._2d{width:93.094400pt;}
._68{width:94.112000pt;}
._60{width:96.512000pt;}
._3d{width:98.598400pt;}
._52{width:101.056000pt;}
._4d{width:102.688000pt;}
._25{width:105.401600pt;}
._30{width:107.200000pt;}
._66{width:112.128000pt;}
._45{width:115.040000pt;}
._43{width:116.928000pt;}
._56{width:118.624000pt;}
._18{width:120.512000pt;}
._31{width:124.390400pt;}
._61{width:128.352000pt;}
._67{width:134.048000pt;}
._4c{width:143.488000pt;}
._63{width:146.208000pt;}
._65{width:149.312000pt;}
._4e{width:154.240000pt;}
._5f{width:164.998400pt;}
._53{width:166.528000pt;}
._26{width:175.360000pt;}
._69{width:186.035200pt;}
._41{width:188.422400pt;}
._49{width:206.784000pt;}
._44{width:240.070400pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.838400pt;}
.y32{bottom:57.564933pt;}
.y31{bottom:58.747600pt;}
.yb0{bottom:78.266800pt;}
.y9a{bottom:83.520133pt;}
.y72{bottom:83.640933pt;}
.y5d{bottom:84.307600pt;}
.y27{bottom:92.859600pt;}
.yaf{bottom:97.594800pt;}
.y99{bottom:103.520133pt;}
.y71{bottom:103.640933pt;}
.y5c{bottom:104.307600pt;}
.ydb{bottom:109.525467pt;}
.y26{bottom:112.859600pt;}
.yae{bottom:116.922800pt;}
.y98{bottom:123.520133pt;}
.y70{bottom:123.640933pt;}
.y5b{bottom:124.307600pt;}
.yda{bottom:129.525467pt;}
.y25{bottom:132.859600pt;}
.yad{bottom:136.250800pt;}
.y97{bottom:143.520133pt;}
.y6f{bottom:143.640933pt;}
.y5a{bottom:144.307600pt;}
.yd9{bottom:148.853467pt;}
.y24{bottom:152.187600pt;}
.yac{bottom:155.578800pt;}
.y96{bottom:163.520133pt;}
.y6e{bottom:163.640933pt;}
.yd8{bottom:168.186800pt;}
.yd7{bottom:168.218800pt;}
.y23{bottom:171.515600pt;}
.yab{bottom:174.906800pt;}
.y59{bottom:174.974267pt;}
.y95{bottom:183.520133pt;}
.y6d{bottom:183.640933pt;}
.yd6{bottom:187.546800pt;}
.y22{bottom:190.843600pt;}
.yaa{bottom:194.234800pt;}
.y58{bottom:194.974267pt;}
.y94{bottom:203.520133pt;}
.y6c{bottom:203.640933pt;}
.yd5{bottom:206.874800pt;}
.y21{bottom:210.171600pt;}
.ya9{bottom:213.562800pt;}
.y57{bottom:214.307600pt;}
.y93{bottom:223.520133pt;}
.y6b{bottom:223.640933pt;}
.yd4{bottom:226.202800pt;}
.y20{bottom:229.531600pt;}
.ya8{bottom:232.890800pt;}
.y56{bottom:233.640933pt;}
.y92{bottom:243.520133pt;}
.yd3{bottom:245.530800pt;}
.y1f{bottom:248.859600pt;}
.ya7{bottom:252.218800pt;}
.y55{bottom:252.974267pt;}
.y91{bottom:263.520133pt;}
.y6a{bottom:263.640933pt;}
.yd2{bottom:264.858800pt;}
.y1e{bottom:268.187600pt;}
.ya6{bottom:271.546800pt;}
.y54{bottom:272.344933pt;}
.y90{bottom:283.520133pt;}
.y69{bottom:283.640933pt;}
.yd1{bottom:284.186800pt;}
.yd0{bottom:284.224133pt;}
.y1d{bottom:287.515600pt;}
.ya5{bottom:290.874800pt;}
.y53{bottom:291.672933pt;}
.y8f{bottom:303.520133pt;}
.ycf{bottom:303.552133pt;}
.y68{bottom:303.640933pt;}
.y1c{bottom:306.843600pt;}
.ya4{bottom:310.202800pt;}
.y52{bottom:311.000933pt;}
.yce{bottom:322.880133pt;}
.y9b{bottom:323.520133pt;}
.y67{bottom:323.640933pt;}
.y1b{bottom:326.171600pt;}
.ya3{bottom:329.530800pt;}
.y51{bottom:330.328933pt;}
.ycd{bottom:342.208133pt;}
.y8e{bottom:343.520133pt;}
.y66{bottom:343.640933pt;}
.y1a{bottom:346.171600pt;}
.ya2{bottom:348.858800pt;}
.y50{bottom:349.656933pt;}
.ycc{bottom:361.536133pt;}
.y8d{bottom:363.520133pt;}
.y65{bottom:363.640933pt;}
.ya1{bottom:368.186800pt;}
.y4f{bottom:368.984933pt;}
.y19{bottom:376.816933pt;}
.ycb{bottom:380.864133pt;}
.y8c{bottom:383.520133pt;}
.y64{bottom:383.640933pt;}
.y4e{bottom:388.312933pt;}
.y18{bottom:395.488933pt;}
.yca{bottom:400.192133pt;}
.y8b{bottom:403.520133pt;}
.y63{bottom:403.640933pt;}
.y30{bottom:405.457733pt;}
.ya0{bottom:406.864133pt;}
.y4d{bottom:407.640933pt;}
.y17{bottom:414.160933pt;}
.yc9{bottom:419.520133pt;}
.y8a{bottom:423.520133pt;}
.y62{bottom:423.640933pt;}
.y2f{bottom:425.457733pt;}
.y9f{bottom:426.192133pt;}
.y4c{bottom:426.974267pt;}
.y16{bottom:432.832933pt;}
.yc8{bottom:438.853467pt;}
.y89{bottom:443.520133pt;}
.y61{bottom:443.640933pt;}
.y2e{bottom:445.457733pt;}
.y9e{bottom:445.520133pt;}
.y4b{bottom:446.307600pt;}
.y15{bottom:451.504933pt;}
.yc7{bottom:458.378800pt;}
.y88{bottom:463.520133pt;}
.y60{bottom:463.640933pt;}
.y9d{bottom:464.853467pt;}
.y4a{bottom:465.656933pt;}
.y14{bottom:470.160933pt;}
.yc6{bottom:477.706800pt;}
.y2d{bottom:481.457733pt;}
.y87{bottom:483.520133pt;}
.y5f{bottom:483.640933pt;}
.y9c{bottom:484.186800pt;}
.y49{bottom:484.984933pt;}
.y13{bottom:488.832933pt;}
.yc5{bottom:497.034800pt;}
.y86{bottom:503.520133pt;}
.y5e{bottom:503.640933pt;}
.y48{bottom:504.312933pt;}
.y12{bottom:507.504933pt;}
.yc4{bottom:516.362800pt;}
.y2c{bottom:521.457733pt;}
.y85{bottom:523.520133pt;}
.y47{bottom:523.640933pt;}
.y11{bottom:526.171600pt;}
.yc3{bottom:535.690800pt;}
.y84{bottom:543.520133pt;}
.y46{bottom:543.640933pt;}
.y10{bottom:544.800933pt;}
.yc2{bottom:555.018800pt;}
.y2b{bottom:557.457733pt;}
.yf7{bottom:560.853467pt;}
.yf{bottom:563.472933pt;}
.y83{bottom:563.520133pt;}
.y45{bottom:563.640933pt;}
.yc1{bottom:574.346800pt;}
.yf6{bottom:578.186800pt;}
.ye{bottom:582.144933pt;}
.y82{bottom:583.520133pt;}
.y44{bottom:583.640933pt;}
.ye8{bottom:588.853467pt;}
.y2a{bottom:589.457733pt;}
.yc0{bottom:593.674800pt;}
.yf5{bottom:595.520133pt;}
.yd{bottom:600.816933pt;}
.y81{bottom:603.520133pt;}
.y43{bottom:603.640933pt;}
.ye7{bottom:608.853467pt;}
.yf4{bottom:612.853467pt;}
.ybf{bottom:613.002800pt;}
.yc{bottom:619.488933pt;}
.y29{bottom:621.457733pt;}
.y80{bottom:623.520133pt;}
.y42{bottom:623.640933pt;}
.ye6{bottom:628.853467pt;}
.yf3{bottom:630.186800pt;}
.ybe{bottom:632.330800pt;}
.yb{bottom:638.160933pt;}
.y7f{bottom:643.520133pt;}
.y41{bottom:643.640933pt;}
.yf2{bottom:647.520133pt;}
.ye5{bottom:648.853467pt;}
.ybd{bottom:651.658800pt;}
.y28{bottom:653.457733pt;}
.ya{bottom:656.832933pt;}
.y7e{bottom:663.520133pt;}
.y40{bottom:663.640933pt;}
.yf1{bottom:664.853467pt;}
.ye4{bottom:668.853467pt;}
.ybc{bottom:670.986800pt;}
.y9{bottom:675.504933pt;}
.yf0{bottom:682.186800pt;}
.y7d{bottom:683.520133pt;}
.y3f{bottom:683.640933pt;}
.ye3{bottom:688.853467pt;}
.ybb{bottom:690.314800pt;}
.y8{bottom:694.171600pt;}
.yef{bottom:699.520133pt;}
.y7c{bottom:703.520133pt;}
.y3e{bottom:703.640933pt;}
.ye2{bottom:708.853467pt;}
.yba{bottom:709.642800pt;}
.yee{bottom:716.853467pt;}
.y7b{bottom:723.520133pt;}
.y3d{bottom:723.640933pt;}
.ye1{bottom:728.853467pt;}
.yb9{bottom:728.970800pt;}
.yed{bottom:734.186800pt;}
.y7{bottom:736.834267pt;}
.y7a{bottom:743.520133pt;}
.y3c{bottom:743.640933pt;}
.yb8{bottom:748.298800pt;}
.ye0{bottom:748.853467pt;}
.yec{bottom:751.520133pt;}
.y6{bottom:755.504933pt;}
.y79{bottom:763.520133pt;}
.y3b{bottom:763.640933pt;}
.yb7{bottom:767.626800pt;}
.ydf{bottom:768.853467pt;}
.y5{bottom:774.171600pt;}
.y78{bottom:783.520133pt;}
.y3a{bottom:783.640933pt;}
.yeb{bottom:786.186800pt;}
.yb6{bottom:786.954800pt;}
.yde{bottom:788.853467pt;}
.y77{bottom:803.520133pt;}
.y39{bottom:803.640933pt;}
.yb5{bottom:806.282800pt;}
.ydd{bottom:808.853467pt;}
.y4{bottom:818.178267pt;}
.y76{bottom:823.520133pt;}
.y38{bottom:823.640933pt;}
.yb4{bottom:825.610800pt;}
.ydc{bottom:828.853467pt;}
.y3{bottom:840.838267pt;}
.y75{bottom:843.520133pt;}
.y37{bottom:843.640933pt;}
.yb3{bottom:844.938800pt;}
.y74{bottom:863.520133pt;}
.yea{bottom:863.525467pt;}
.y36{bottom:863.640933pt;}
.yb2{bottom:864.266800pt;}
.y73{bottom:883.520133pt;}
.ye9{bottom:883.525467pt;}
.yb1{bottom:883.594800pt;}
.y35{bottom:883.640933pt;}
.y34{bottom:911.092800pt;}
.y2{bottom:913.174267pt;}
.y33{bottom:924.426133pt;}
.hc{height:28.895833pt;}
.hd{height:29.645833pt;}
.h9{height:36.119792pt;}
.ha{height:37.057292pt;}
.hb{height:37.333333pt;}
.he{height:37.546667pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h8{height:45.056000pt;}
.h2{height:45.732800pt;}
.h3{height:47.333333pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x2{left:57.950400pt;}
.x1{left:66.269333pt;}
.xe{left:75.590533pt;}
.x26{left:80.692933pt;}
.x22{left:93.877467pt;}
.x1a{left:110.997467pt;}
.x1b{left:115.156933pt;}
.x14{left:162.647867pt;}
.x13{left:165.831200pt;}
.x8{left:199.278133pt;}
.x11{left:222.486667pt;}
.x10{left:230.630800pt;}
.x3{left:255.640533pt;}
.x12{left:276.678133pt;}
.x7{left:279.296533pt;}
.x4{left:295.380533pt;}
.x1c{left:317.233600pt;}
.x1d{left:327.557467pt;}
.xf{left:332.821467pt;}
.x17{left:355.501200pt;}
.x25{left:364.042400pt;}
.x19{left:365.099067pt;}
.xd{left:366.702400pt;}
.x15{left:374.396133pt;}
.x24{left:379.498533pt;}
.x23{left:392.676933pt;}
.x21{left:401.380933pt;}
.x1e{left:405.269467pt;}
.x16{left:460.445200pt;}
.x5{left:486.723733pt;}
.x6{left:519.756533pt;}
.xc{left:543.523733pt;}
.xb{left:562.556267pt;}
.x1f{left:583.837067pt;}
.x18{left:590.107733pt;}
.x20{left:602.030933pt;}
.x27{left:627.355200pt;}
.x9{left:631.559067pt;}
}




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