
    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_85a68d4abc63ccc118f8119f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_e70b7696c9b9a515de2bca07.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_f1b720527895382e191d630b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_2612d2595afb0dd01818c0a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_d6c53c12967e00f5b9829e26.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_1af7ff673f630505ec12adba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_eca1d224575eb059b3b3b9f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_5bb3f47c7e005748b0174fb3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_3db3c0907ea5754d9e294134.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_b8fbbc851044532f75d7fbb5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_eabacf76199fb1acc3e3b083.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_4bd77ee3b64fdf22aeed185e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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_322b606a62bc537b0fec52c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_3db3c0907ea5754d9e294134.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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_bf74236d63de37be5b48b8f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;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_a0c88d1a59487dcd48e567c9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;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_74fc4d6cbd84a7bad1790920.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.857910;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.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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-6.270000px;}
.ls10{letter-spacing:-1.248000px;}
.lsd{letter-spacing:-0.858000px;}
.ls13{letter-spacing:-0.780000px;}
.lse{letter-spacing:-0.726000px;}
.ls11{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.312000px;}
.ls9{letter-spacing:-0.234000px;}
.lsb{letter-spacing:-0.132000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.156000px;}
.ls7{letter-spacing:0.390000px;}
.ls4{letter-spacing:0.468000px;}
.lsc{letter-spacing:0.546000px;}
.ls8{letter-spacing:0.624000px;}
.lsa{letter-spacing:1.092000px;}
.lsf{letter-spacing:1.404000px;}
.ls6{letter-spacing:1.560000px;}
.ls12{letter-spacing:5.478000px;}
.ls14{letter-spacing:16.129800px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws5{word-spacing:-28.476000px;}
.ws4{word-spacing:-24.480000px;}
.wsa{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws13{word-spacing:-14.784000px;}
.ws0{word-spacing:-14.678320px;}
.ws17{word-spacing:-14.190000px;}
.ws16{word-spacing:-14.058000px;}
.ws6{word-spacing:-12.204000px;}
.wsb{word-spacing:-1.560000px;}
.ws19{word-spacing:-1.482000px;}
.ws14{word-spacing:-1.092000px;}
.ws10{word-spacing:-0.624000px;}
.ws18{word-spacing:-0.546000px;}
.ws8{word-spacing:-0.468000px;}
.wsd{word-spacing:-0.390000px;}
.ws7{word-spacing:-0.156000px;}
.wsf{word-spacing:-0.090000px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.132000px;}
.ws12{word-spacing:0.234000px;}
.ws1f{word-spacing:0.312000px;}
.ws1b{word-spacing:0.330000px;}
.wse{word-spacing:0.528000px;}
.ws1d{word-spacing:0.594000px;}
.ws1e{word-spacing:0.780000px;}
.ws1a{word-spacing:1.248000px;}
.wsc{word-spacing:3.630000px;}
.ws9{word-spacing:6.270000px;}
.ws1c{word-spacing:7.920000px;}
.ws11{word-spacing:10.032000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.470400px;}
._14{margin-left:-13.226545px;}
._1d{margin-left:-11.849017px;}
._16{margin-left:-7.219754px;}
._12{margin-left:-5.754983px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._11{width:5.871129px;}
._4{width:7.193961px;}
._15{width:8.514078px;}
._9{width:10.262944px;}
._13{width:12.210145px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._17{width:16.638600px;}
._1a{width:17.661684px;}
._1c{width:19.100400px;}
._5{width:20.492888px;}
._19{width:21.773400px;}
._18{width:22.789800px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._1b{width:37.224000px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.yb7{bottom:102.157350px;}
.y91{bottom:102.342600px;}
.ydf{bottom:103.265100px;}
.y11a{bottom:103.365450px;}
.ycd{bottom:103.459950px;}
.y6c{bottom:103.559100px;}
.y45{bottom:108.908400px;}
.yf8{bottom:114.383850px;}
.y119{bottom:119.713950px;}
.yb6{bottom:122.864850px;}
.y90{bottom:122.967600px;}
.y1b{bottom:123.419327px;}
.yde{bottom:123.972600px;}
.ycc{bottom:124.002450px;}
.y6b{bottom:124.184100px;}
.y44{bottom:125.108400px;}
.yf7{bottom:135.091350px;}
.y118{bottom:136.062450px;}
.y21{bottom:136.778700px;}
.y28{bottom:142.439400px;}
.yb5{bottom:143.572350px;}
.y8f{bottom:143.592600px;}
.ydd{bottom:144.515100px;}
.ycb{bottom:144.544950px;}
.y6a{bottom:144.809100px;}
.y43{bottom:145.560900px;}
.y117{bottom:152.410950px;}
.yf6{bottom:155.798850px;}
.y42{bottom:161.760900px;}
.y8e{bottom:164.217600px;}
.yb4{bottom:164.279850px;}
.ydc{bottom:165.057600px;}
.yca{bottom:165.087450px;}
.y69{bottom:165.434100px;}
.y116{bottom:168.759450px;}
.yf5{bottom:176.506350px;}
.y41{bottom:177.960900px;}
.y1a{bottom:179.601520px;}
.y27{bottom:184.431900px;}
.y8d{bottom:184.842600px;}
.yb3{bottom:184.987350px;}
.y115{bottom:185.107950px;}
.ydb{bottom:185.600100px;}
.yc9{bottom:185.629950px;}
.y68{bottom:186.059100px;}
.y19{bottom:189.619323px;}
.y40{bottom:194.160900px;}
.yf4{bottom:197.213850px;}
.y18{bottom:198.812130px;}
.y114{bottom:201.456450px;}
.y26{bottom:205.436400px;}
.y8c{bottom:205.467600px;}
.yb2{bottom:205.694850px;}
.yda{bottom:206.142600px;}
.yc8{bottom:206.172450px;}
.y67{bottom:206.684100px;}
.y17{bottom:207.156370px;}
.y3f{bottom:210.360900px;}
.y16{bottom:215.512396px;}
.y113{bottom:217.804950px;}
.yf3{bottom:217.921350px;}
.y15{bottom:223.868422px;}
.y8b{bottom:226.092600px;}
.yb1{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y3e{bottom:226.560900px;}
.yd9{bottom:226.685100px;}
.yc7{bottom:226.714950px;}
.y66{bottom:227.309100px;}
.y14{bottom:232.212662px;}
.y112{bottom:234.153450px;}
.yf2{bottom:238.628850px;}
.y13{bottom:240.568688px;}
.y3d{bottom:242.760900px;}
.y8a{bottom:246.717600px;}
.yb0{bottom:247.109850px;}
.yd8{bottom:247.227600px;}
.yc6{bottom:247.257450px;}
.y65{bottom:247.934100px;}
.y12{bottom:248.924714px;}
.y111{bottom:250.501950px;}
.y11{bottom:257.268954px;}
.y3c{bottom:258.960900px;}
.yf1{bottom:259.336350px;}
.y10{bottom:265.624980px;}
.y110{bottom:266.850450px;}
.y89{bottom:267.342600px;}
.yd7{bottom:267.770100px;}
.yc5{bottom:267.799950px;}
.yaf{bottom:267.817350px;}
.y64{bottom:268.559100px;}
.yf{bottom:273.981006px;}
.yf0{bottom:280.043850px;}
.y13d{bottom:282.280350px;}
.y10f{bottom:283.198950px;}
.y32{bottom:284.429700px;}
.y88{bottom:287.967600px;}
.yd6{bottom:288.312600px;}
.yc4{bottom:288.342450px;}
.yae{bottom:288.524850px;}
.y63{bottom:289.184100px;}
.ye{bottom:291.164483px;}
.y10e{bottom:299.547450px;}
.yef{bottom:300.751350px;}
.y13c{bottom:300.761850px;}
.y31{bottom:305.434200px;}
.y87{bottom:308.592600px;}
.yd5{bottom:308.855100px;}
.yc3{bottom:308.884950px;}
.yad{bottom:309.232350px;}
.y62{bottom:309.809100px;}
.y10d{bottom:315.895950px;}
.y13b{bottom:317.110350px;}
.yee{bottom:321.458850px;}
.y30{bottom:326.438700px;}
.y86{bottom:329.217600px;}
.yd4{bottom:329.397600px;}
.yc2{bottom:329.427450px;}
.yac{bottom:329.939850px;}
.y61{bottom:330.434100px;}
.y10c{bottom:332.244450px;}
.y13a{bottom:333.458850px;}
.yed{bottom:346.406850px;}
.y2f{bottom:347.443200px;}
.y10b{bottom:348.592950px;}
.y139{bottom:349.807350px;}
.y85{bottom:349.842600px;}
.yd3{bottom:349.940100px;}
.yc1{bottom:349.969950px;}
.yab{bottom:350.647350px;}
.y60{bottom:351.059100px;}
.y10a{bottom:364.941450px;}
.y138{bottom:366.155850px;}
.yec{bottom:367.114350px;}
.y2e{bottom:368.447700px;}
.yd2{bottom:370.482600px;}
.yc0{bottom:370.512450px;}
.yaa{bottom:371.354850px;}
.y5f{bottom:371.684100px;}
.y109{bottom:381.289950px;}
.y137{bottom:382.504350px;}
.yeb{bottom:387.821850px;}
.y84{bottom:388.325850px;}
.y2d{bottom:389.452200px;}
.yd1{bottom:391.025100px;}
.ybf{bottom:391.054950px;}
.ya9{bottom:392.062350px;}
.y5e{bottom:392.309100px;}
.y108{bottom:397.638450px;}
.y136{bottom:398.852850px;}
.yea{bottom:408.529350px;}
.y2c{bottom:410.456700px;}
.yd0{bottom:411.567600px;}
.ybe{bottom:411.597450px;}
.yd{bottom:412.250251px;}
.ya8{bottom:412.769850px;}
.y5d{bottom:412.934100px;}
.y107{bottom:413.986950px;}
.y135{bottom:415.201350px;}
.y83{bottom:415.325850px;}
.ye9{bottom:429.236850px;}
.y106{bottom:430.335450px;}
.y134{bottom:431.549850px;}
.ybd{bottom:432.139950px;}
.ya7{bottom:433.477350px;}
.y5c{bottom:433.559100px;}
.y105{bottom:446.683950px;}
.ye8{bottom:449.944350px;}
.ycf{bottom:449.975850px;}
.ybc{bottom:452.682450px;}
.y5b{bottom:454.184100px;}
.ya6{bottom:454.184850px;}
.y104{bottom:463.032450px;}
.ye7{bottom:470.651850px;}
.ybb{bottom:473.224950px;}
.y5a{bottom:474.809100px;}
.ya5{bottom:474.892350px;}
.yce{bottom:476.975850px;}
.y82{bottom:478.192350px;}
.y103{bottom:479.380950px;}
.ye6{bottom:491.359350px;}
.yba{bottom:493.767450px;}
.y59{bottom:495.434100px;}
.ya4{bottom:495.599850px;}
.y102{bottom:495.729450px;}
.y2b{bottom:498.056700px;}
.y81{bottom:498.734850px;}
.y133{bottom:498.928350px;}
.ye5{bottom:512.066850px;}
.y101{bottom:512.077950px;}
.y132{bottom:515.276850px;}
.y58{bottom:516.059100px;}
.ya3{bottom:516.307350px;}
.y80{bottom:519.277350px;}
.y100{bottom:528.426450px;}
.y131{bottom:531.625350px;}
.yb9{bottom:532.175850px;}
.y2a{bottom:532.256700px;}
.ye4{bottom:532.774350px;}
.y57{bottom:536.684100px;}
.ya2{bottom:537.014850px;}
.y7f{bottom:539.819850px;}
.yff{bottom:544.774950px;}
.y130{bottom:547.973850px;}
.ye3{bottom:553.481850px;}
.y56{bottom:557.309100px;}
.ya1{bottom:557.722350px;}
.yb8{bottom:559.175850px;}
.y7e{bottom:560.362350px;}
.yfe{bottom:561.123450px;}
.y12f{bottom:564.322350px;}
.y29{bottom:566.456700px;}
.ye2{bottom:574.189350px;}
.yc{bottom:574.420795px;}
.yfd{bottom:577.471950px;}
.y55{bottom:577.934100px;}
.ya0{bottom:578.429850px;}
.y12e{bottom:580.670850px;}
.y7d{bottom:580.904850px;}
.yfc{bottom:593.820450px;}
.ye1{bottom:594.896850px;}
.y12d{bottom:597.019350px;}
.y54{bottom:598.559100px;}
.y9f{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y7c{bottom:601.447350px;}
.yfb{bottom:610.168950px;}
.y3b{bottom:613.192350px;}
.y12c{bottom:613.367850px;}
.ya{bottom:613.549153px;}
.ye0{bottom:615.604350px;}
.y53{bottom:619.184100px;}
.y9e{bottom:619.844850px;}
.y7b{bottom:621.989850px;}
.yfa{bottom:626.517450px;}
.y12b{bottom:629.716350px;}
.y9{bottom:639.571869px;}
.y52{bottom:639.809100px;}
.y9d{bottom:640.552350px;}
.y7a{bottom:642.532350px;}
.y12a{bottom:646.064850px;}
.y3a{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y24{bottom:657.176850px;}
.y51{bottom:660.434100px;}
.yf9{bottom:660.725850px;}
.y9c{bottom:661.259850px;}
.y129{bottom:662.413350px;}
.y79{bottom:663.074850px;}
.y7{bottom:666.301723px;}
.y128{bottom:678.761850px;}
.y6{bottom:679.666650px;}
.y50{bottom:681.059100px;}
.y9b{bottom:681.967350px;}
.y78{bottom:683.617350px;}
.y39{bottom:688.792350px;}
.y127{bottom:695.110350px;}
.y4f{bottom:701.684100px;}
.y9a{bottom:702.674850px;}
.y77{bottom:704.159850px;}
.y126{bottom:711.458850px;}
.y4e{bottom:722.309100px;}
.y23{bottom:723.200850px;}
.y99{bottom:723.382350px;}
.y76{bottom:724.702350px;}
.y38{bottom:726.592350px;}
.y125{bottom:727.807350px;}
.y5{bottom:741.942024px;}
.y4d{bottom:742.934100px;}
.y98{bottom:744.089850px;}
.y124{bottom:744.155850px;}
.y75{bottom:745.244850px;}
.y123{bottom:760.504350px;}
.y4{bottom:761.765488px;}
.y4c{bottom:763.559100px;}
.y37{bottom:764.392350px;}
.y97{bottom:764.797350px;}
.y74{bottom:765.787350px;}
.y122{bottom:776.852850px;}
.y4b{bottom:784.184100px;}
.y3{bottom:785.148217px;}
.y96{bottom:785.504850px;}
.y73{bottom:786.329850px;}
.y121{bottom:793.201350px;}
.y4a{bottom:804.809100px;}
.y95{bottom:806.212350px;}
.y72{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y120{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y49{bottom:825.434100px;}
.y6d{bottom:825.760950px;}
.y11f{bottom:825.898350px;}
.y94{bottom:826.919850px;}
.y71{bottom:827.414850px;}
.y36{bottom:839.992350px;}
.y11e{bottom:842.246850px;}
.y48{bottom:846.059100px;}
.y93{bottom:847.627350px;}
.y70{bottom:847.957350px;}
.y11d{bottom:858.595350px;}
.y92{bottom:868.334850px;}
.y6f{bottom:868.499850px;}
.y11c{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y47{bottom:884.542350px;}
.y6e{bottom:889.042350px;}
.y11b{bottom:891.292350px;}
.y46{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.059276px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.074094px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h1d{height:42.820312px;}
.h1e{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.103732px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x14{left:46.771650px;}
.x1a{left:60.271650px;}
.x19{left:76.535400px;}
.x8{left:80.205750px;}
.x12{left:86.049900px;}
.x10{left:92.171400px;}
.x1c{left:97.797900px;}
.xd{left:106.916700px;}
.x13{left:114.182400px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x16{left:161.574750px;}
.x1b{left:182.826750px;}
.x7{left:190.392750px;}
.x11{left:208.083900px;}
.xf{left:220.095900px;}
.x23{left:240.330900px;}
.x24{left:266.304900px;}
.xa{left:281.522250px;}
.xe{left:307.133400px;}
.x25{left:311.340900px;}
.x1e{left:321.843900px;}
.x4{left:344.105623px;}
.x20{left:345.360900px;}
.x21{left:346.656900px;}
.x1d{left:356.660400px;}
.x26{left:358.793400px;}
.x15{left:407.083800px;}
.x22{left:419.759400px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x1f{left:486.314400px;}
.x17{left:634.923450px;}
.x18{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-5.573333pt;}
.ls10{letter-spacing:-1.109333pt;}
.lsd{letter-spacing:-0.762667pt;}
.ls13{letter-spacing:-0.693333pt;}
.lse{letter-spacing:-0.645333pt;}
.ls11{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.277333pt;}
.ls9{letter-spacing:-0.208000pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.138667pt;}
.ls7{letter-spacing:0.346667pt;}
.ls4{letter-spacing:0.416000pt;}
.lsc{letter-spacing:0.485333pt;}
.ls8{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.970667pt;}
.lsf{letter-spacing:1.248000pt;}
.ls6{letter-spacing:1.386667pt;}
.ls12{letter-spacing:4.869333pt;}
.ls14{letter-spacing:14.337600pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws5{word-spacing:-25.312000pt;}
.ws4{word-spacing:-21.760000pt;}
.wsa{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws13{word-spacing:-13.141333pt;}
.ws0{word-spacing:-13.047395pt;}
.ws17{word-spacing:-12.613333pt;}
.ws16{word-spacing:-12.496000pt;}
.ws6{word-spacing:-10.848000pt;}
.wsb{word-spacing:-1.386667pt;}
.ws19{word-spacing:-1.317333pt;}
.ws14{word-spacing:-0.970667pt;}
.ws10{word-spacing:-0.554667pt;}
.ws18{word-spacing:-0.485333pt;}
.ws8{word-spacing:-0.416000pt;}
.wsd{word-spacing:-0.346667pt;}
.ws7{word-spacing:-0.138667pt;}
.wsf{word-spacing:-0.080000pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.117333pt;}
.ws12{word-spacing:0.208000pt;}
.ws1f{word-spacing:0.277333pt;}
.ws1b{word-spacing:0.293333pt;}
.wse{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.528000pt;}
.ws1e{word-spacing:0.693333pt;}
.ws1a{word-spacing:1.109333pt;}
.wsc{word-spacing:3.226667pt;}
.ws9{word-spacing:5.573333pt;}
.ws1c{word-spacing:7.040000pt;}
.ws11{word-spacing:8.917333pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.751467pt;}
._14{margin-left:-11.756929pt;}
._1d{margin-left:-10.532460pt;}
._16{margin-left:-6.417559pt;}
._12{margin-left:-5.115540pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._11{width:5.218782pt;}
._4{width:6.394632pt;}
._15{width:7.568070pt;}
._9{width:9.122617pt;}
._13{width:10.853462pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._17{width:14.789867pt;}
._1a{width:15.699275pt;}
._1c{width:16.978133pt;}
._5{width:18.215901pt;}
._19{width:19.354133pt;}
._18{width:20.257600pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._1b{width:33.088000pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.yb7{bottom:90.806533pt;}
.y91{bottom:90.971200pt;}
.ydf{bottom:91.791200pt;}
.y11a{bottom:91.880400pt;}
.ycd{bottom:91.964400pt;}
.y6c{bottom:92.052533pt;}
.y45{bottom:96.807467pt;}
.yf8{bottom:101.674533pt;}
.y119{bottom:106.412400pt;}
.yb6{bottom:109.213200pt;}
.y90{bottom:109.304533pt;}
.y1b{bottom:109.706068pt;}
.yde{bottom:110.197867pt;}
.ycc{bottom:110.224400pt;}
.y6b{bottom:110.385867pt;}
.y44{bottom:111.207467pt;}
.yf7{bottom:120.081200pt;}
.y118{bottom:120.944400pt;}
.y21{bottom:121.581067pt;}
.y28{bottom:126.612800pt;}
.yb5{bottom:127.619867pt;}
.y8f{bottom:127.637867pt;}
.ydd{bottom:128.457867pt;}
.ycb{bottom:128.484400pt;}
.y6a{bottom:128.719200pt;}
.y43{bottom:129.387467pt;}
.y117{bottom:135.476400pt;}
.yf6{bottom:138.487867pt;}
.y42{bottom:143.787467pt;}
.y8e{bottom:145.971200pt;}
.yb4{bottom:146.026533pt;}
.ydc{bottom:146.717867pt;}
.yca{bottom:146.744400pt;}
.y69{bottom:147.052533pt;}
.y116{bottom:150.008400pt;}
.yf5{bottom:156.894533pt;}
.y41{bottom:158.187467pt;}
.y1a{bottom:159.645796pt;}
.y27{bottom:163.939467pt;}
.y8d{bottom:164.304533pt;}
.yb3{bottom:164.433200pt;}
.y115{bottom:164.540400pt;}
.ydb{bottom:164.977867pt;}
.yc9{bottom:165.004400pt;}
.y68{bottom:165.385867pt;}
.y19{bottom:168.550509pt;}
.y40{bottom:172.587467pt;}
.yf4{bottom:175.301200pt;}
.y18{bottom:176.721893pt;}
.y114{bottom:179.072400pt;}
.y26{bottom:182.610133pt;}
.y8c{bottom:182.637867pt;}
.yb2{bottom:182.839867pt;}
.yda{bottom:183.237867pt;}
.yc8{bottom:183.264400pt;}
.y67{bottom:183.719200pt;}
.y17{bottom:184.138996pt;}
.y3f{bottom:186.987467pt;}
.y16{bottom:191.566574pt;}
.y113{bottom:193.604400pt;}
.yf3{bottom:193.707867pt;}
.y15{bottom:198.994153pt;}
.y8b{bottom:200.971200pt;}
.yb1{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y3e{bottom:201.387467pt;}
.yd9{bottom:201.497867pt;}
.yc7{bottom:201.524400pt;}
.y66{bottom:202.052533pt;}
.y14{bottom:206.411255pt;}
.y112{bottom:208.136400pt;}
.yf2{bottom:212.114533pt;}
.y13{bottom:213.838834pt;}
.y3d{bottom:215.787467pt;}
.y8a{bottom:219.304533pt;}
.yb0{bottom:219.653200pt;}
.yd8{bottom:219.757867pt;}
.yc6{bottom:219.784400pt;}
.y65{bottom:220.385867pt;}
.y12{bottom:221.266412pt;}
.y111{bottom:222.668400pt;}
.y11{bottom:228.683515pt;}
.y3c{bottom:230.187467pt;}
.yf1{bottom:230.521200pt;}
.y10{bottom:236.111093pt;}
.y110{bottom:237.200400pt;}
.y89{bottom:237.637867pt;}
.yd7{bottom:238.017867pt;}
.yc5{bottom:238.044400pt;}
.yaf{bottom:238.059867pt;}
.y64{bottom:238.719200pt;}
.yf{bottom:243.538672pt;}
.yf0{bottom:248.927867pt;}
.y13d{bottom:250.915867pt;}
.y10f{bottom:251.732400pt;}
.y32{bottom:252.826400pt;}
.y88{bottom:255.971200pt;}
.yd6{bottom:256.277867pt;}
.yc4{bottom:256.304400pt;}
.yae{bottom:256.466533pt;}
.y63{bottom:257.052533pt;}
.ye{bottom:258.812874pt;}
.y10e{bottom:266.264400pt;}
.yef{bottom:267.334533pt;}
.y13c{bottom:267.343867pt;}
.y31{bottom:271.497067pt;}
.y87{bottom:274.304533pt;}
.yd5{bottom:274.537867pt;}
.yc3{bottom:274.564400pt;}
.yad{bottom:274.873200pt;}
.y62{bottom:275.385867pt;}
.y10d{bottom:280.796400pt;}
.y13b{bottom:281.875867pt;}
.yee{bottom:285.741200pt;}
.y30{bottom:290.167733pt;}
.y86{bottom:292.637867pt;}
.yd4{bottom:292.797867pt;}
.yc2{bottom:292.824400pt;}
.yac{bottom:293.279867pt;}
.y61{bottom:293.719200pt;}
.y10c{bottom:295.328400pt;}
.y13a{bottom:296.407867pt;}
.yed{bottom:307.917200pt;}
.y2f{bottom:308.838400pt;}
.y10b{bottom:309.860400pt;}
.y139{bottom:310.939867pt;}
.y85{bottom:310.971200pt;}
.yd3{bottom:311.057867pt;}
.yc1{bottom:311.084400pt;}
.yab{bottom:311.686533pt;}
.y60{bottom:312.052533pt;}
.y10a{bottom:324.392400pt;}
.y138{bottom:325.471867pt;}
.yec{bottom:326.323867pt;}
.y2e{bottom:327.509067pt;}
.yd2{bottom:329.317867pt;}
.yc0{bottom:329.344400pt;}
.yaa{bottom:330.093200pt;}
.y5f{bottom:330.385867pt;}
.y109{bottom:338.924400pt;}
.y137{bottom:340.003867pt;}
.yeb{bottom:344.730533pt;}
.y84{bottom:345.178533pt;}
.y2d{bottom:346.179733pt;}
.yd1{bottom:347.577867pt;}
.ybf{bottom:347.604400pt;}
.ya9{bottom:348.499867pt;}
.y5e{bottom:348.719200pt;}
.y108{bottom:353.456400pt;}
.y136{bottom:354.535867pt;}
.yea{bottom:363.137200pt;}
.y2c{bottom:364.850400pt;}
.yd0{bottom:365.837867pt;}
.ybe{bottom:365.864400pt;}
.yd{bottom:366.444668pt;}
.ya8{bottom:366.906533pt;}
.y5d{bottom:367.052533pt;}
.y107{bottom:367.988400pt;}
.y135{bottom:369.067867pt;}
.y83{bottom:369.178533pt;}
.ye9{bottom:381.543867pt;}
.y106{bottom:382.520400pt;}
.y134{bottom:383.599867pt;}
.ybd{bottom:384.124400pt;}
.ya7{bottom:385.313200pt;}
.y5c{bottom:385.385867pt;}
.y105{bottom:397.052400pt;}
.ye8{bottom:399.950533pt;}
.ycf{bottom:399.978533pt;}
.ybc{bottom:402.384400pt;}
.y5b{bottom:403.719200pt;}
.ya6{bottom:403.719867pt;}
.y104{bottom:411.584400pt;}
.ye7{bottom:418.357200pt;}
.ybb{bottom:420.644400pt;}
.y5a{bottom:422.052533pt;}
.ya5{bottom:422.126533pt;}
.yce{bottom:423.978533pt;}
.y82{bottom:425.059867pt;}
.y103{bottom:426.116400pt;}
.ye6{bottom:436.763867pt;}
.yba{bottom:438.904400pt;}
.y59{bottom:440.385867pt;}
.ya4{bottom:440.533200pt;}
.y102{bottom:440.648400pt;}
.y2b{bottom:442.717067pt;}
.y81{bottom:443.319867pt;}
.y133{bottom:443.491867pt;}
.ye5{bottom:455.170533pt;}
.y101{bottom:455.180400pt;}
.y132{bottom:458.023867pt;}
.y58{bottom:458.719200pt;}
.ya3{bottom:458.939867pt;}
.y80{bottom:461.579867pt;}
.y100{bottom:469.712400pt;}
.y131{bottom:472.555867pt;}
.yb9{bottom:473.045200pt;}
.y2a{bottom:473.117067pt;}
.ye4{bottom:473.577200pt;}
.y57{bottom:477.052533pt;}
.ya2{bottom:477.346533pt;}
.y7f{bottom:479.839867pt;}
.yff{bottom:484.244400pt;}
.y130{bottom:487.087867pt;}
.ye3{bottom:491.983867pt;}
.y56{bottom:495.385867pt;}
.ya1{bottom:495.753200pt;}
.yb8{bottom:497.045200pt;}
.y7e{bottom:498.099867pt;}
.yfe{bottom:498.776400pt;}
.y12f{bottom:501.619867pt;}
.y29{bottom:503.517067pt;}
.ye2{bottom:510.390533pt;}
.yc{bottom:510.596263pt;}
.yfd{bottom:513.308400pt;}
.y55{bottom:513.719200pt;}
.ya0{bottom:514.159867pt;}
.y12e{bottom:516.151867pt;}
.y7d{bottom:516.359867pt;}
.yfc{bottom:527.840400pt;}
.ye1{bottom:528.797200pt;}
.y12d{bottom:530.683867pt;}
.y54{bottom:532.052533pt;}
.y9f{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y7c{bottom:534.619867pt;}
.yfb{bottom:542.372400pt;}
.y3b{bottom:545.059867pt;}
.y12c{bottom:545.215867pt;}
.ya{bottom:545.377025pt;}
.ye0{bottom:547.203867pt;}
.y53{bottom:550.385867pt;}
.y9e{bottom:550.973200pt;}
.y7b{bottom:552.879867pt;}
.yfa{bottom:556.904400pt;}
.y12b{bottom:559.747867pt;}
.y9{bottom:568.508328pt;}
.y52{bottom:568.719200pt;}
.y9d{bottom:569.379867pt;}
.y7a{bottom:571.139867pt;}
.y12a{bottom:574.279867pt;}
.y3a{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y24{bottom:584.157200pt;}
.y51{bottom:587.052533pt;}
.yf9{bottom:587.311867pt;}
.y9c{bottom:587.786533pt;}
.y129{bottom:588.811867pt;}
.y79{bottom:589.399867pt;}
.y7{bottom:592.268198pt;}
.y128{bottom:603.343867pt;}
.y6{bottom:604.148133pt;}
.y50{bottom:605.385867pt;}
.y9b{bottom:606.193200pt;}
.y78{bottom:607.659867pt;}
.y39{bottom:612.259867pt;}
.y127{bottom:617.875867pt;}
.y4f{bottom:623.719200pt;}
.y9a{bottom:624.599867pt;}
.y77{bottom:625.919867pt;}
.y126{bottom:632.407867pt;}
.y4e{bottom:642.052533pt;}
.y23{bottom:642.845200pt;}
.y99{bottom:643.006533pt;}
.y76{bottom:644.179867pt;}
.y38{bottom:645.859867pt;}
.y125{bottom:646.939867pt;}
.y5{bottom:659.504022pt;}
.y4d{bottom:660.385867pt;}
.y98{bottom:661.413200pt;}
.y124{bottom:661.471867pt;}
.y75{bottom:662.439867pt;}
.y123{bottom:676.003867pt;}
.y4{bottom:677.124878pt;}
.y4c{bottom:678.719200pt;}
.y37{bottom:679.459867pt;}
.y97{bottom:679.819867pt;}
.y74{bottom:680.699867pt;}
.y122{bottom:690.535867pt;}
.y4b{bottom:697.052533pt;}
.y3{bottom:697.909527pt;}
.y96{bottom:698.226533pt;}
.y73{bottom:698.959867pt;}
.y121{bottom:705.067867pt;}
.y4a{bottom:715.385867pt;}
.y95{bottom:716.633200pt;}
.y72{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y120{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y49{bottom:733.719200pt;}
.y6d{bottom:734.009733pt;}
.y11f{bottom:734.131867pt;}
.y94{bottom:735.039867pt;}
.y71{bottom:735.479867pt;}
.y36{bottom:746.659867pt;}
.y11e{bottom:748.663867pt;}
.y48{bottom:752.052533pt;}
.y93{bottom:753.446533pt;}
.y70{bottom:753.739867pt;}
.y11d{bottom:763.195867pt;}
.y92{bottom:771.853200pt;}
.y6f{bottom:771.999867pt;}
.y11c{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y47{bottom:786.259867pt;}
.y6e{bottom:790.259867pt;}
.y11b{bottom:792.259867pt;}
.y46{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.941578pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.176973pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h1d{height:38.062500pt;}
.h1e{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.647762pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x14{left:41.574800pt;}
.x1a{left:53.574800pt;}
.x19{left:68.031467pt;}
.x8{left:71.294000pt;}
.x12{left:76.488800pt;}
.x10{left:81.930133pt;}
.x1c{left:86.931467pt;}
.xd{left:95.037067pt;}
.x13{left:101.495467pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x16{left:143.622000pt;}
.x1b{left:162.512667pt;}
.x7{left:169.238000pt;}
.x11{left:184.963467pt;}
.xf{left:195.640800pt;}
.x23{left:213.627467pt;}
.x24{left:236.715467pt;}
.xa{left:250.242000pt;}
.xe{left:273.007467pt;}
.x25{left:276.747467pt;}
.x1e{left:286.083467pt;}
.x4{left:305.871665pt;}
.x20{left:306.987467pt;}
.x21{left:308.139467pt;}
.x1d{left:317.031467pt;}
.x26{left:318.927467pt;}
.x15{left:361.852267pt;}
.x22{left:373.119467pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x1f{left:432.279467pt;}
.x17{left:564.376400pt;}
.x18{left:570.047200pt;}
}




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