
    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_8063bc76455ac19ad4be38db.woff')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_4de136f5c7fb2d8d991321a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_37f4050c76a49c8ef81da00c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_5652a5d06f675af2d8cb69e9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752441;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_5992ed9b7c15c5dde7cdde72.woff')format("woff");}.ff5{font-family:ff5;line-height:0.998047;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_7e62f0b24debd2b15cd6970d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.829590;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_622130c817f95baf1a0def8a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_1cd2ae94387414dd4455b0d2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.998047;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_e9f9c75a259757c65db5d94f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f0cfb32b2d6fa97616121ddf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_622130c817f95baf1a0def8a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_57be5847f6dbf7790da24b42.woff')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_6f725879a34bc81e6e993954.woff')format("woff");}.ffd{font-family:ffd;line-height:1.193359;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_db664c772c139a43f1083a1c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.011230;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_fa9d7dba2a8b5b6052f4bf18.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d3be79df406538713b7a5e4f.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_6ef975de90624ebd23c818b3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.930000;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;}
.m2{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.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);}
.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);}
.m3{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);}
.v1{vertical-align:-8.232000px;}
.v4{vertical-align:-6.468000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.977400px;}
.v2{vertical-align:23.976000px;}
.ls8{letter-spacing:-15.768000px;}
.ls3{letter-spacing:-14.472000px;}
.lse{letter-spacing:-12.816000px;}
.ls0{letter-spacing:-11.448000px;}
.ls1{letter-spacing:-1.620000px;}
.ls6{letter-spacing:-1.553112px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.378000px;}
.ls5{letter-spacing:1.188000px;}
.lsa{letter-spacing:3.240000px;}
.ls9{letter-spacing:5.544000px;}
.ls11{letter-spacing:5.608800px;}
.ls12{letter-spacing:8.431200px;}
.ls10{letter-spacing:9.043200px;}
.lsf{letter-spacing:9.828000px;}
.lsc{letter-spacing:13.320000px;}
.lsb{letter-spacing:13.334400px;}
.ls4{letter-spacing:55.960200px;}
.ls7{letter-spacing:55.960800px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.ws11{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.500000px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.494000px;}
.wsa{word-spacing:-9.619500px;}
.ws9{word-spacing:-8.940888px;}
.ws0{word-spacing:-6.552000px;}
.wsf{word-spacing:-5.184000px;}
.ws13{word-spacing:-5.112000px;}
.wsc{word-spacing:-2.232000px;}
.ws10{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.720000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:1.782000px;}
.ws5{word-spacing:3.294000px;}
.wse{word-spacing:5.670000px;}
.ws8{word-spacing:6.426000px;}
.ws7{word-spacing:9.396000px;}
.ws4{word-spacing:14.472000px;}
._1a{margin-left:-10.287000px;}
._18{margin-left:-8.254800px;}
._7{margin-left:-6.771600px;}
._0{margin-left:-5.313000px;}
._8{margin-left:-3.814800px;}
._2{margin-left:-2.435400px;}
._1{margin-left:-1.141800px;}
._a{width:1.102200px;}
._13{width:2.290200px;}
._5{width:4.164600px;}
._4{width:5.306400px;}
._d{width:7.055400px;}
._c{width:8.593200px;}
._6{width:10.157400px;}
._f{width:11.477400px;}
._15{width:12.686400px;}
._e{width:13.695000px;}
._12{width:14.856600px;}
._17{width:16.840800px;}
._9{width:17.846400px;}
._b{width:19.258800px;}
._11{width:20.651400px;}
._3{width:22.057200px;}
._10{width:23.773200px;}
._19{width:29.436000px;}
._14{width:34.636800px;}
._16{width:85.960800px;}
._1b{width:177.480000px;}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(192,0,0);}
.fc4{color:rgb(100,99,99);}
.fc7{color:rgb(255,51,204);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc8{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.478000px;}
.fs6{font-size:41.976000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:46.489950px;}
.y37{bottom:56.625900px;}
.y1{bottom:59.803050px;}
.y35{bottom:60.865950px;}
.y5d{bottom:62.689950px;}
.y36{bottom:72.825900px;}
.y3{bottom:106.299150px;}
.y7e{bottom:106.299450px;}
.ya5{bottom:106.303650px;}
.ye9{bottom:106.303800px;}
.y107{bottom:106.308450px;}
.y5c{bottom:106.312950px;}
.yc7{bottom:106.317300px;}
.y19b{bottom:111.888600px;}
.y170{bottom:119.379150px;}
.ya4{bottom:124.299150px;}
.ye8{bottom:124.299300px;}
.y106{bottom:124.303950px;}
.y5b{bottom:124.308450px;}
.yc6{bottom:124.312800px;}
.y17d{bottom:129.371250px;}
.y7d{bottom:132.803550px;}
.y19a{bottom:138.888600px;}
.y1e{bottom:141.897600px;}
.y34{bottom:141.914100px;}
.y105{bottom:142.299450px;}
.y5a{bottom:142.303950px;}
.yc5{bottom:142.308300px;}
.y16f{bottom:146.379150px;}
.ya3{bottom:150.807600px;}
.y125{bottom:150.807900px;}
.y142{bottom:150.812400px;}
.ye7{bottom:150.821400px;}
.y17c{bottom:156.371250px;}
.y7c{bottom:159.333600px;}
.y59{bottom:160.299450px;}
.yc4{bottom:160.303800px;}
.y1d{bottom:161.697600px;}
.y33{bottom:161.714100px;}
.ya2{bottom:168.803100px;}
.y124{bottom:168.803400px;}
.y141{bottom:168.807900px;}
.y104{bottom:168.808050px;}
.ye6{bottom:168.816900px;}
.y199{bottom:170.136600px;}
.y16e{bottom:173.379150px;}
.yc3{bottom:178.299300px;}
.y7b{bottom:185.834100px;}
.y140{bottom:186.803400px;}
.y58{bottom:186.803550px;}
.ye5{bottom:186.812400px;}
.y1c{bottom:189.995100px;}
.y32{bottom:190.011600px;}
.ya1{bottom:195.311550px;}
.y198{bottom:197.136600px;}
.y7a{bottom:203.829600px;}
.y15a{bottom:204.043800px;}
.y17b{bottom:204.631050px;}
.ye4{bottom:204.807900px;}
.yc2{bottom:204.825900px;}
.ya0{bottom:213.307050px;}
.y57{bottom:213.312000px;}
.y103{bottom:213.316500px;}
.y79{bottom:221.825100px;}
.ye3{bottom:222.803400px;}
.yc1{bottom:222.821400px;}
.y16d{bottom:223.689750px;}
.y197{bottom:228.384600px;}
.y159{bottom:231.043800px;}
.y56{bottom:231.307500px;}
.y102{bottom:231.312000px;}
.y123{bottom:232.795050px;}
.y1b{bottom:235.304100px;}
.y31{bottom:235.320600px;}
.y78{bottom:239.820600px;}
.y9f{bottom:239.824500px;}
.yc0{bottom:240.816900px;}
.y101{bottom:249.307500px;}
.y1a{bottom:255.104100px;}
.y30{bottom:255.120600px;}
.y196{bottom:255.384600px;}
.y13f{bottom:257.811600px;}
.y77{bottom:257.816100px;}
.y9e{bottom:257.820000px;}
.y158{bottom:258.043800px;}
.ybf{bottom:258.812400px;}
.y122{bottom:259.795050px;}
.y19{bottom:274.904100px;}
.y2f{bottom:274.920600px;}
.y76{bottom:275.811600px;}
.y9d{bottom:275.815500px;}
.ybe{bottom:276.807900px;}
.y100{bottom:280.856700px;}
.y13e{bottom:284.324700px;}
.y195{bottom:286.632600px;}
.y121{bottom:286.795050px;}
.y17a{bottom:290.880600px;}
.y157{bottom:293.539800px;}
.y9c{bottom:293.811000px;}
.y18{bottom:294.704100px;}
.y2e{bottom:294.720600px;}
.ybd{bottom:294.803400px;}
.ye2{bottom:302.244750px;}
.y13d{bottom:302.320200px;}
.y55{bottom:307.155000px;}
.yff{bottom:307.856700px;}
.y16c{bottom:307.872600px;}
.y194{bottom:313.632600px;}
.y120{bottom:313.795050px;}
.y17{bottom:314.504100px;}
.y2d{bottom:314.520600px;}
.y179{bottom:317.880600px;}
.y13c{bottom:320.315700px;}
.y9b{bottom:320.323950px;}
.y156{bottom:320.539800px;}
.y54{bottom:334.155000px;}
.y16{bottom:334.304100px;}
.y2c{bottom:334.320600px;}
.yfe{bottom:334.856700px;}
.y16b{bottom:334.872600px;}
.y9a{bottom:338.319450px;}
.y193{bottom:340.632600px;}
.y178{bottom:344.880600px;}
.y155{bottom:347.539800px;}
.y11f{bottom:349.291050px;}
.y15{bottom:354.104100px;}
.y2b{bottom:354.120600px;}
.y99{bottom:356.314950px;}
.y53{bottom:361.155000px;}
.yfd{bottom:361.856700px;}
.y16a{bottom:361.872600px;}
.y13b{bottom:369.651000px;}
.y177{bottom:371.880600px;}
.y14{bottom:373.904100px;}
.y2a{bottom:373.920600px;}
.y154{bottom:374.539800px;}
.y11e{bottom:376.291050px;}
.ye1{bottom:381.459000px;}
.y98{bottom:382.827900px;}
.y52{bottom:388.155000px;}
.yfc{bottom:388.856700px;}
.y169{bottom:388.872600px;}
.y13{bottom:393.704100px;}
.y29{bottom:393.720600px;}
.y13a{bottom:396.651000px;}
.y192{bottom:398.880600px;}
.y97{bottom:400.823400px;}
.y153{bottom:401.539800px;}
.y11d{bottom:403.291050px;}
.ybc{bottom:405.308100px;}
.y176{bottom:407.376600px;}
.ye0{bottom:408.459000px;}
.y75{bottom:412.133100px;}
.y12{bottom:413.504100px;}
.y28{bottom:413.520600px;}
.y51{bottom:415.155000px;}
.yfb{bottom:415.856700px;}
.y96{bottom:418.818900px;}
.y139{bottom:423.651000px;}
.y168{bottom:424.368600px;}
.y152{bottom:428.539800px;}
.y191{bottom:430.128600px;}
.y11c{bottom:430.291050px;}
.ybb{bottom:432.308100px;}
.y11{bottom:433.304100px;}
.y27{bottom:433.320600px;}
.y175{bottom:434.376600px;}
.ydf{bottom:435.459000px;}
.y74{bottom:439.133100px;}
.y50{bottom:442.155000px;}
.y138{bottom:450.658950px;}
.yfa{bottom:451.352700px;}
.y167{bottom:451.368600px;}
.y10{bottom:453.104100px;}
.y26{bottom:453.120600px;}
.y151{bottom:455.539800px;}
.y190{bottom:457.128600px;}
.y11b{bottom:457.291050px;}
.yba{bottom:459.308100px;}
.y95{bottom:461.352750px;}
.y174{bottom:461.376600px;}
.yde{bottom:462.459000px;}
.y73{bottom:466.133100px;}
.y4f{bottom:469.155000px;}
.yf{bottom:472.904100px;}
.y25{bottom:472.920600px;}
.y137{bottom:477.658950px;}
.yf9{bottom:478.352700px;}
.y166{bottom:478.368600px;}
.y150{bottom:482.539800px;}
.y11a{bottom:484.291050px;}
.yb9{bottom:486.308100px;}
.y94{bottom:488.352750px;}
.y173{bottom:488.376600px;}
.ydd{bottom:489.459000px;}
.ye{bottom:492.704100px;}
.y24{bottom:492.720600px;}
.y72{bottom:493.133100px;}
.y4e{bottom:496.155000px;}
.y136{bottom:504.658950px;}
.yf8{bottom:505.360650px;}
.y165{bottom:505.368600px;}
.y14f{bottom:509.539800px;}
.y119{bottom:511.291050px;}
.yd{bottom:512.504100px;}
.y23{bottom:512.520600px;}
.yb8{bottom:513.308100px;}
.y18f{bottom:515.376600px;}
.ydc{bottom:516.459000px;}
.y71{bottom:520.133100px;}
.y93{bottom:523.848750px;}
.y172{bottom:523.872600px;}
.y4d{bottom:531.651000px;}
.y135{bottom:531.658950px;}
.yc{bottom:532.304100px;}
.y22{bottom:532.320600px;}
.yf7{bottom:532.360650px;}
.y164{bottom:532.368600px;}
.y14e{bottom:536.539800px;}
.y118{bottom:538.291050px;}
.y18e{bottom:542.376600px;}
.ydb{bottom:543.459000px;}
.y70{bottom:547.133100px;}
.y92{bottom:550.848750px;}
.y171{bottom:550.872600px;}
.yb{bottom:552.104100px;}
.y21{bottom:552.120600px;}
.y4c{bottom:558.651000px;}
.y134{bottom:558.658950px;}
.yf6{bottom:559.360650px;}
.y163{bottom:559.368600px;}
.ya{bottom:571.904100px;}
.y20{bottom:571.920600px;}
.y18d{bottom:573.624600px;}
.y117{bottom:573.787050px;}
.y6f{bottom:574.133100px;}
.y91{bottom:577.848750px;}
.yda{bottom:578.955000px;}
.y4b{bottom:585.651000px;}
.yf5{bottom:586.360650px;}
.y162{bottom:586.368600px;}
.y133{bottom:594.154950px;}
.yb7{bottom:599.794950px;}
.y18c{bottom:600.624600px;}
.y116{bottom:600.787050px;}
.y6e{bottom:601.149000px;}
.y9{bottom:604.458600px;}
.y1f{bottom:604.475100px;}
.y90{bottom:604.856850px;}
.yd9{bottom:605.955000px;}
.y4a{bottom:612.651000px;}
.yf4{bottom:613.360650px;}
.y161{bottom:613.368600px;}
.yb6{bottom:619.594950px;}
.y132{bottom:621.154950px;}
.y18b{bottom:627.624600px;}
.y115{bottom:627.787050px;}
.y14d{bottom:628.800900px;}
.y8f{bottom:631.856850px;}
.yd8{bottom:632.955000px;}
.y6d{bottom:636.645000px;}
.yb5{bottom:639.394950px;}
.y49{bottom:639.651000px;}
.y160{bottom:640.368600px;}
.y131{bottom:648.154950px;}
.y14c{bottom:648.600900px;}
.yf3{bottom:648.856650px;}
.y114{bottom:654.787050px;}
.y8e{bottom:658.856850px;}
.y18a{bottom:658.872600px;}
.yb4{bottom:659.194950px;}
.yd7{bottom:659.955000px;}
.y6c{bottom:663.645000px;}
.y48{bottom:666.658950px;}
.y15f{bottom:667.368600px;}
.y14b{bottom:668.400900px;}
.y130{bottom:675.154950px;}
.yf2{bottom:675.856650px;}
.yb3{bottom:678.994950px;}
.y113{bottom:681.787050px;}
.y8d{bottom:685.856850px;}
.y189{bottom:685.872600px;}
.yd6{bottom:686.955000px;}
.y14a{bottom:688.200900px;}
.y6b{bottom:690.645000px;}
.y47{bottom:693.658950px;}
.y15e{bottom:694.368600px;}
.yb2{bottom:698.794950px;}
.y12f{bottom:702.154950px;}
.yf1{bottom:702.856650px;}
.y149{bottom:708.000900px;}
.y112{bottom:708.787050px;}
.y188{bottom:712.872600px;}
.yd5{bottom:713.955000px;}
.y6a{bottom:717.645000px;}
.y46{bottom:720.658950px;}
.y8c{bottom:721.352850px;}
.y15d{bottom:721.368600px;}
.y12e{bottom:729.154950px;}
.yf0{bottom:729.856650px;}
.y111{bottom:735.787050px;}
.y187{bottom:739.872600px;}
.yd4{bottom:740.955000px;}
.y69{bottom:744.645000px;}
.y45{bottom:747.658950px;}
.y8b{bottom:748.352850px;}
.y15c{bottom:748.368600px;}
.y12d{bottom:756.154950px;}
.yef{bottom:756.864600px;}
.y110{bottom:762.787050px;}
.y148{bottom:770.321400px;}
.y1a3{bottom:771.108750px;}
.y186{bottom:771.120600px;}
.y68{bottom:771.645000px;}
.y44{bottom:774.658950px;}
.y8a{bottom:775.360650px;}
.y15b{bottom:775.368600px;}
.yd3{bottom:776.458950px;}
.y12c{bottom:783.154950px;}
.yb1{bottom:783.864600px;}
.y10f{bottom:789.795000px;}
.y1a2{bottom:798.108750px;}
.y185{bottom:798.120600px;}
.y43{bottom:801.658950px;}
.y89{bottom:802.360650px;}
.yd2{bottom:803.458950px;}
.y67{bottom:807.141000px;}
.y12b{bottom:810.154950px;}
.yb0{bottom:810.864600px;}
.y147{bottom:815.633100px;}
.y10e{bottom:816.795000px;}
.y1a1{bottom:825.108750px;}
.y42{bottom:828.658950px;}
.y88{bottom:829.360650px;}
.y184{bottom:829.368600px;}
.yd1{bottom:830.458950px;}
.y66{bottom:834.141000px;}
.y12a{bottom:837.154950px;}
.yaf{bottom:837.864600px;}
.y1a0{bottom:852.108750px;}
.y10d{bottom:852.291000px;}
.y5{bottom:852.539100px;}
.y41{bottom:855.658950px;}
.y183{bottom:856.368600px;}
.yd0{bottom:857.458950px;}
.y65{bottom:861.141000px;}
.y129{bottom:864.154950px;}
.y87{bottom:864.856650px;}
.yae{bottom:864.864600px;}
.y146{bottom:868.144950px;}
.yee{bottom:873.360600px;}
.y10c{bottom:879.291000px;}
.y4{bottom:880.836600px;}
.y40{bottom:882.658950px;}
.y19f{bottom:883.356750px;}
.ycf{bottom:884.458950px;}
.y182{bottom:887.616600px;}
.y145{bottom:887.944950px;}
.y64{bottom:888.141000px;}
.y128{bottom:891.154950px;}
.y86{bottom:891.856650px;}
.yad{bottom:891.864600px;}
.yed{bottom:900.360600px;}
.y10b{bottom:906.291000px;}
.y144{bottom:907.744950px;}
.y3f{bottom:909.658950px;}
.y19e{bottom:910.356750px;}
.y181{bottom:914.616600px;}
.y63{bottom:915.141000px;}
.y127{bottom:918.154950px;}
.y85{bottom:918.856650px;}
.yac{bottom:918.864600px;}
.yce{bottom:919.954950px;}
.yec{bottom:927.360600px;}
.y143{bottom:927.544950px;}
.y10a{bottom:933.291000px;}
.y19d{bottom:941.604750px;}
.y62{bottom:942.141000px;}
.y3e{bottom:945.154950px;}
.y84{bottom:945.856650px;}
.yab{bottom:945.864600px;}
.ycd{bottom:946.954950px;}
.yeb{bottom:954.360600px;}
.y109{bottom:960.291000px;}
.y19c{bottom:968.604750px;}
.y8{bottom:971.348850px;}
.y3d{bottom:972.154950px;}
.y83{bottom:972.856650px;}
.yaa{bottom:972.864600px;}
.ycc{bottom:973.954950px;}
.yea{bottom:981.360600px;}
.y3c{bottom:999.154950px;}
.y82{bottom:999.864600px;}
.ycb{bottom:1000.954950px;}
.y180{bottom:1004.112600px;}
.y7{bottom:1005.704700px;}
.ya9{bottom:1008.360600px;}
.y108{bottom:1010.162100px;}
.y3b{bottom:1026.154950px;}
.y81{bottom:1026.864600px;}
.yca{bottom:1027.954950px;}
.y17f{bottom:1031.112600px;}
.y61{bottom:1032.201600px;}
.y6{bottom:1032.704700px;}
.ya8{bottom:1035.360600px;}
.y3a{bottom:1053.154950px;}
.y80{bottom:1053.864600px;}
.y17e{bottom:1058.112600px;}
.ya7{bottom:1062.360600px;}
.yc9{bottom:1074.206850px;}
.y7f{bottom:1080.864600px;}
.ya6{bottom:1089.360600px;}
.y126{bottom:1099.407000px;}
.yc8{bottom:1115.957550px;}
.y60{bottom:1116.360600px;}
.y39{bottom:1143.215550px;}
.y5f{bottom:1143.360600px;}
.y2{bottom:1187.898450px;}
.y38{bottom:1204.375350px;}
.hc{height:37.520508px;}
.h10{height:38.934000px;}
.h3{height:39.418945px;}
.h9{height:43.095703px;}
.hd{height:43.798828px;}
.he{height:43.989258px;}
.h8{height:46.664062px;}
.hf{height:49.939453px;}
.h2{height:50.027344px;}
.h7{height:51.714844px;}
.h4{height:55.488281px;}
.ha{height:59.390625px;}
.h5{height:61.037109px;}
.h6{height:63.632812px;}
.hb{height:66.585938px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:73.338150px;}
.x7{left:86.527500px;}
.x2{left:106.299150px;}
.xb{left:127.559100px;}
.x10{left:131.805150px;}
.xf{left:140.314950px;}
.xe{left:148.818900px;}
.x5{left:372.618750px;}
.x4{left:378.674250px;}
.xd{left:411.592200px;}
.x6{left:455.455650px;}
.x8{left:492.632700px;}
.x9{left:706.047450px;}
.x1{left:793.488150px;}
.x3{left:832.882950px;}
.xc{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v4{vertical-align:-5.749333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.535467pt;}
.v2{vertical-align:21.312000pt;}
.ls8{letter-spacing:-14.016000pt;}
.ls3{letter-spacing:-12.864000pt;}
.lse{letter-spacing:-11.392000pt;}
.ls0{letter-spacing:-10.176000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls6{letter-spacing:-1.380544pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.336000pt;}
.ls5{letter-spacing:1.056000pt;}
.lsa{letter-spacing:2.880000pt;}
.ls9{letter-spacing:4.928000pt;}
.ls11{letter-spacing:4.985600pt;}
.ls12{letter-spacing:7.494400pt;}
.ls10{letter-spacing:8.038400pt;}
.lsf{letter-spacing:8.736000pt;}
.lsc{letter-spacing:11.840000pt;}
.lsb{letter-spacing:11.852800pt;}
.ls4{letter-spacing:49.742400pt;}
.ls7{letter-spacing:49.742933pt;}
.ws2{word-spacing:-18.666667pt;}
.ws11{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.666667pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.328000pt;}
.wsa{word-spacing:-8.550667pt;}
.ws9{word-spacing:-7.947456pt;}
.ws0{word-spacing:-5.824000pt;}
.wsf{word-spacing:-4.608000pt;}
.ws13{word-spacing:-4.544000pt;}
.wsc{word-spacing:-1.984000pt;}
.ws10{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.640000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:1.584000pt;}
.ws5{word-spacing:2.928000pt;}
.wse{word-spacing:5.040000pt;}
.ws8{word-spacing:5.712000pt;}
.ws7{word-spacing:8.352000pt;}
.ws4{word-spacing:12.864000pt;}
._1a{margin-left:-9.144000pt;}
._18{margin-left:-7.337600pt;}
._7{margin-left:-6.019200pt;}
._0{margin-left:-4.722667pt;}
._8{margin-left:-3.390933pt;}
._2{margin-left:-2.164800pt;}
._1{margin-left:-1.014933pt;}
._a{width:0.979733pt;}
._13{width:2.035733pt;}
._5{width:3.701867pt;}
._4{width:4.716800pt;}
._d{width:6.271467pt;}
._c{width:7.638400pt;}
._6{width:9.028800pt;}
._f{width:10.202133pt;}
._15{width:11.276800pt;}
._e{width:12.173333pt;}
._12{width:13.205867pt;}
._17{width:14.969600pt;}
._9{width:15.863467pt;}
._b{width:17.118933pt;}
._11{width:18.356800pt;}
._3{width:19.606400pt;}
._10{width:21.131733pt;}
._19{width:26.165333pt;}
._14{width:30.788267pt;}
._16{width:76.409600pt;}
._1b{width:157.760000pt;}
.fs7{font-size:34.202667pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:41.324400pt;}
.y37{bottom:50.334133pt;}
.y1{bottom:53.158267pt;}
.y35{bottom:54.103067pt;}
.y5d{bottom:55.724400pt;}
.y36{bottom:64.734133pt;}
.y3{bottom:94.488133pt;}
.y7e{bottom:94.488400pt;}
.ya5{bottom:94.492133pt;}
.ye9{bottom:94.492267pt;}
.y107{bottom:94.496400pt;}
.y5c{bottom:94.500400pt;}
.yc7{bottom:94.504267pt;}
.y19b{bottom:99.456533pt;}
.y170{bottom:106.114800pt;}
.ya4{bottom:110.488133pt;}
.ye8{bottom:110.488267pt;}
.y106{bottom:110.492400pt;}
.y5b{bottom:110.496400pt;}
.yc6{bottom:110.500267pt;}
.y17d{bottom:114.996667pt;}
.y7d{bottom:118.047600pt;}
.y19a{bottom:123.456533pt;}
.y1e{bottom:126.131200pt;}
.y34{bottom:126.145867pt;}
.y105{bottom:126.488400pt;}
.y5a{bottom:126.492400pt;}
.yc5{bottom:126.496267pt;}
.y16f{bottom:130.114800pt;}
.ya3{bottom:134.051200pt;}
.y125{bottom:134.051467pt;}
.y142{bottom:134.055467pt;}
.ye7{bottom:134.063467pt;}
.y17c{bottom:138.996667pt;}
.y7c{bottom:141.629867pt;}
.y59{bottom:142.488400pt;}
.yc4{bottom:142.492267pt;}
.y1d{bottom:143.731200pt;}
.y33{bottom:143.745867pt;}
.ya2{bottom:150.047200pt;}
.y124{bottom:150.047467pt;}
.y141{bottom:150.051467pt;}
.y104{bottom:150.051600pt;}
.ye6{bottom:150.059467pt;}
.y199{bottom:151.232533pt;}
.y16e{bottom:154.114800pt;}
.yc3{bottom:158.488267pt;}
.y7b{bottom:165.185867pt;}
.y140{bottom:166.047467pt;}
.y58{bottom:166.047600pt;}
.ye5{bottom:166.055467pt;}
.y1c{bottom:168.884533pt;}
.y32{bottom:168.899200pt;}
.ya1{bottom:173.610267pt;}
.y198{bottom:175.232533pt;}
.y7a{bottom:181.181867pt;}
.y15a{bottom:181.372267pt;}
.y17b{bottom:181.894267pt;}
.ye4{bottom:182.051467pt;}
.yc2{bottom:182.067467pt;}
.ya0{bottom:189.606267pt;}
.y57{bottom:189.610667pt;}
.y103{bottom:189.614667pt;}
.y79{bottom:197.177867pt;}
.ye3{bottom:198.047467pt;}
.yc1{bottom:198.063467pt;}
.y16d{bottom:198.835333pt;}
.y197{bottom:203.008533pt;}
.y159{bottom:205.372267pt;}
.y56{bottom:205.606667pt;}
.y102{bottom:205.610667pt;}
.y123{bottom:206.928933pt;}
.y1b{bottom:209.159200pt;}
.y31{bottom:209.173867pt;}
.y78{bottom:213.173867pt;}
.y9f{bottom:213.177333pt;}
.yc0{bottom:214.059467pt;}
.y101{bottom:221.606667pt;}
.y1a{bottom:226.759200pt;}
.y30{bottom:226.773867pt;}
.y196{bottom:227.008533pt;}
.y13f{bottom:229.165867pt;}
.y77{bottom:229.169867pt;}
.y9e{bottom:229.173333pt;}
.y158{bottom:229.372267pt;}
.ybf{bottom:230.055467pt;}
.y122{bottom:230.928933pt;}
.y19{bottom:244.359200pt;}
.y2f{bottom:244.373867pt;}
.y76{bottom:245.165867pt;}
.y9d{bottom:245.169333pt;}
.ybe{bottom:246.051467pt;}
.y100{bottom:249.650400pt;}
.y13e{bottom:252.733067pt;}
.y195{bottom:254.784533pt;}
.y121{bottom:254.928933pt;}
.y17a{bottom:258.560533pt;}
.y157{bottom:260.924267pt;}
.y9c{bottom:261.165333pt;}
.y18{bottom:261.959200pt;}
.y2e{bottom:261.973867pt;}
.ybd{bottom:262.047467pt;}
.ye2{bottom:268.662000pt;}
.y13d{bottom:268.729067pt;}
.y55{bottom:273.026667pt;}
.yff{bottom:273.650400pt;}
.y16c{bottom:273.664533pt;}
.y194{bottom:278.784533pt;}
.y120{bottom:278.928933pt;}
.y17{bottom:279.559200pt;}
.y2d{bottom:279.573867pt;}
.y179{bottom:282.560533pt;}
.y13c{bottom:284.725067pt;}
.y9b{bottom:284.732400pt;}
.y156{bottom:284.924267pt;}
.y54{bottom:297.026667pt;}
.y16{bottom:297.159200pt;}
.y2c{bottom:297.173867pt;}
.yfe{bottom:297.650400pt;}
.y16b{bottom:297.664533pt;}
.y9a{bottom:300.728400pt;}
.y193{bottom:302.784533pt;}
.y178{bottom:306.560533pt;}
.y155{bottom:308.924267pt;}
.y11f{bottom:310.480933pt;}
.y15{bottom:314.759200pt;}
.y2b{bottom:314.773867pt;}
.y99{bottom:316.724400pt;}
.y53{bottom:321.026667pt;}
.yfd{bottom:321.650400pt;}
.y16a{bottom:321.664533pt;}
.y13b{bottom:328.578667pt;}
.y177{bottom:330.560533pt;}
.y14{bottom:332.359200pt;}
.y2a{bottom:332.373867pt;}
.y154{bottom:332.924267pt;}
.y11e{bottom:334.480933pt;}
.ye1{bottom:339.074667pt;}
.y98{bottom:340.291467pt;}
.y52{bottom:345.026667pt;}
.yfc{bottom:345.650400pt;}
.y169{bottom:345.664533pt;}
.y13{bottom:349.959200pt;}
.y29{bottom:349.973867pt;}
.y13a{bottom:352.578667pt;}
.y192{bottom:354.560533pt;}
.y97{bottom:356.287467pt;}
.y153{bottom:356.924267pt;}
.y11d{bottom:358.480933pt;}
.ybc{bottom:360.273867pt;}
.y176{bottom:362.112533pt;}
.ye0{bottom:363.074667pt;}
.y75{bottom:366.340533pt;}
.y12{bottom:367.559200pt;}
.y28{bottom:367.573867pt;}
.y51{bottom:369.026667pt;}
.yfb{bottom:369.650400pt;}
.y96{bottom:372.283467pt;}
.y139{bottom:376.578667pt;}
.y168{bottom:377.216533pt;}
.y152{bottom:380.924267pt;}
.y191{bottom:382.336533pt;}
.y11c{bottom:382.480933pt;}
.ybb{bottom:384.273867pt;}
.y11{bottom:385.159200pt;}
.y27{bottom:385.173867pt;}
.y175{bottom:386.112533pt;}
.ydf{bottom:387.074667pt;}
.y74{bottom:390.340533pt;}
.y50{bottom:393.026667pt;}
.y138{bottom:400.585733pt;}
.yfa{bottom:401.202400pt;}
.y167{bottom:401.216533pt;}
.y10{bottom:402.759200pt;}
.y26{bottom:402.773867pt;}
.y151{bottom:404.924267pt;}
.y190{bottom:406.336533pt;}
.y11b{bottom:406.480933pt;}
.yba{bottom:408.273867pt;}
.y95{bottom:410.091333pt;}
.y174{bottom:410.112533pt;}
.yde{bottom:411.074667pt;}
.y73{bottom:414.340533pt;}
.y4f{bottom:417.026667pt;}
.yf{bottom:420.359200pt;}
.y25{bottom:420.373867pt;}
.y137{bottom:424.585733pt;}
.yf9{bottom:425.202400pt;}
.y166{bottom:425.216533pt;}
.y150{bottom:428.924267pt;}
.y11a{bottom:430.480933pt;}
.yb9{bottom:432.273867pt;}
.y94{bottom:434.091333pt;}
.y173{bottom:434.112533pt;}
.ydd{bottom:435.074667pt;}
.ye{bottom:437.959200pt;}
.y24{bottom:437.973867pt;}
.y72{bottom:438.340533pt;}
.y4e{bottom:441.026667pt;}
.y136{bottom:448.585733pt;}
.yf8{bottom:449.209467pt;}
.y165{bottom:449.216533pt;}
.y14f{bottom:452.924267pt;}
.y119{bottom:454.480933pt;}
.yd{bottom:455.559200pt;}
.y23{bottom:455.573867pt;}
.yb8{bottom:456.273867pt;}
.y18f{bottom:458.112533pt;}
.ydc{bottom:459.074667pt;}
.y71{bottom:462.340533pt;}
.y93{bottom:465.643333pt;}
.y172{bottom:465.664533pt;}
.y4d{bottom:472.578667pt;}
.y135{bottom:472.585733pt;}
.yc{bottom:473.159200pt;}
.y22{bottom:473.173867pt;}
.yf7{bottom:473.209467pt;}
.y164{bottom:473.216533pt;}
.y14e{bottom:476.924267pt;}
.y118{bottom:478.480933pt;}
.y18e{bottom:482.112533pt;}
.ydb{bottom:483.074667pt;}
.y70{bottom:486.340533pt;}
.y92{bottom:489.643333pt;}
.y171{bottom:489.664533pt;}
.yb{bottom:490.759200pt;}
.y21{bottom:490.773867pt;}
.y4c{bottom:496.578667pt;}
.y134{bottom:496.585733pt;}
.yf6{bottom:497.209467pt;}
.y163{bottom:497.216533pt;}
.ya{bottom:508.359200pt;}
.y20{bottom:508.373867pt;}
.y18d{bottom:509.888533pt;}
.y117{bottom:510.032933pt;}
.y6f{bottom:510.340533pt;}
.y91{bottom:513.643333pt;}
.yda{bottom:514.626667pt;}
.y4b{bottom:520.578667pt;}
.yf5{bottom:521.209467pt;}
.y162{bottom:521.216533pt;}
.y133{bottom:528.137733pt;}
.yb7{bottom:533.151067pt;}
.y18c{bottom:533.888533pt;}
.y116{bottom:534.032933pt;}
.y6e{bottom:534.354667pt;}
.y9{bottom:537.296533pt;}
.y1f{bottom:537.311200pt;}
.y90{bottom:537.650533pt;}
.yd9{bottom:538.626667pt;}
.y4a{bottom:544.578667pt;}
.yf4{bottom:545.209467pt;}
.y161{bottom:545.216533pt;}
.yb6{bottom:550.751067pt;}
.y132{bottom:552.137733pt;}
.y18b{bottom:557.888533pt;}
.y115{bottom:558.032933pt;}
.y14d{bottom:558.934133pt;}
.y8f{bottom:561.650533pt;}
.yd8{bottom:562.626667pt;}
.y6d{bottom:565.906667pt;}
.yb5{bottom:568.351067pt;}
.y49{bottom:568.578667pt;}
.y160{bottom:569.216533pt;}
.y131{bottom:576.137733pt;}
.y14c{bottom:576.534133pt;}
.yf3{bottom:576.761467pt;}
.y114{bottom:582.032933pt;}
.y8e{bottom:585.650533pt;}
.y18a{bottom:585.664533pt;}
.yb4{bottom:585.951067pt;}
.yd7{bottom:586.626667pt;}
.y6c{bottom:589.906667pt;}
.y48{bottom:592.585733pt;}
.y15f{bottom:593.216533pt;}
.y14b{bottom:594.134133pt;}
.y130{bottom:600.137733pt;}
.yf2{bottom:600.761467pt;}
.yb3{bottom:603.551067pt;}
.y113{bottom:606.032933pt;}
.y8d{bottom:609.650533pt;}
.y189{bottom:609.664533pt;}
.yd6{bottom:610.626667pt;}
.y14a{bottom:611.734133pt;}
.y6b{bottom:613.906667pt;}
.y47{bottom:616.585733pt;}
.y15e{bottom:617.216533pt;}
.yb2{bottom:621.151067pt;}
.y12f{bottom:624.137733pt;}
.yf1{bottom:624.761467pt;}
.y149{bottom:629.334133pt;}
.y112{bottom:630.032933pt;}
.y188{bottom:633.664533pt;}
.yd5{bottom:634.626667pt;}
.y6a{bottom:637.906667pt;}
.y46{bottom:640.585733pt;}
.y8c{bottom:641.202533pt;}
.y15d{bottom:641.216533pt;}
.y12e{bottom:648.137733pt;}
.yf0{bottom:648.761467pt;}
.y111{bottom:654.032933pt;}
.y187{bottom:657.664533pt;}
.yd4{bottom:658.626667pt;}
.y69{bottom:661.906667pt;}
.y45{bottom:664.585733pt;}
.y8b{bottom:665.202533pt;}
.y15c{bottom:665.216533pt;}
.y12d{bottom:672.137733pt;}
.yef{bottom:672.768533pt;}
.y110{bottom:678.032933pt;}
.y148{bottom:684.730133pt;}
.y1a3{bottom:685.430000pt;}
.y186{bottom:685.440533pt;}
.y68{bottom:685.906667pt;}
.y44{bottom:688.585733pt;}
.y8a{bottom:689.209467pt;}
.y15b{bottom:689.216533pt;}
.yd3{bottom:690.185733pt;}
.y12c{bottom:696.137733pt;}
.yb1{bottom:696.768533pt;}
.y10f{bottom:702.040000pt;}
.y1a2{bottom:709.430000pt;}
.y185{bottom:709.440533pt;}
.y43{bottom:712.585733pt;}
.y89{bottom:713.209467pt;}
.yd2{bottom:714.185733pt;}
.y67{bottom:717.458667pt;}
.y12b{bottom:720.137733pt;}
.yb0{bottom:720.768533pt;}
.y147{bottom:725.007200pt;}
.y10e{bottom:726.040000pt;}
.y1a1{bottom:733.430000pt;}
.y42{bottom:736.585733pt;}
.y88{bottom:737.209467pt;}
.y184{bottom:737.216533pt;}
.yd1{bottom:738.185733pt;}
.y66{bottom:741.458667pt;}
.y12a{bottom:744.137733pt;}
.yaf{bottom:744.768533pt;}
.y1a0{bottom:757.430000pt;}
.y10d{bottom:757.592000pt;}
.y5{bottom:757.812533pt;}
.y41{bottom:760.585733pt;}
.y183{bottom:761.216533pt;}
.yd0{bottom:762.185733pt;}
.y65{bottom:765.458667pt;}
.y129{bottom:768.137733pt;}
.y87{bottom:768.761467pt;}
.yae{bottom:768.768533pt;}
.y146{bottom:771.684400pt;}
.yee{bottom:776.320533pt;}
.y10c{bottom:781.592000pt;}
.y4{bottom:782.965867pt;}
.y40{bottom:784.585733pt;}
.y19f{bottom:785.206000pt;}
.ycf{bottom:786.185733pt;}
.y182{bottom:788.992533pt;}
.y145{bottom:789.284400pt;}
.y64{bottom:789.458667pt;}
.y128{bottom:792.137733pt;}
.y86{bottom:792.761467pt;}
.yad{bottom:792.768533pt;}
.yed{bottom:800.320533pt;}
.y10b{bottom:805.592000pt;}
.y144{bottom:806.884400pt;}
.y3f{bottom:808.585733pt;}
.y19e{bottom:809.206000pt;}
.y181{bottom:812.992533pt;}
.y63{bottom:813.458667pt;}
.y127{bottom:816.137733pt;}
.y85{bottom:816.761467pt;}
.yac{bottom:816.768533pt;}
.yce{bottom:817.737733pt;}
.yec{bottom:824.320533pt;}
.y143{bottom:824.484400pt;}
.y10a{bottom:829.592000pt;}
.y19d{bottom:836.982000pt;}
.y62{bottom:837.458667pt;}
.y3e{bottom:840.137733pt;}
.y84{bottom:840.761467pt;}
.yab{bottom:840.768533pt;}
.ycd{bottom:841.737733pt;}
.yeb{bottom:848.320533pt;}
.y109{bottom:853.592000pt;}
.y19c{bottom:860.982000pt;}
.y8{bottom:863.421200pt;}
.y3d{bottom:864.137733pt;}
.y83{bottom:864.761467pt;}
.yaa{bottom:864.768533pt;}
.ycc{bottom:865.737733pt;}
.yea{bottom:872.320533pt;}
.y3c{bottom:888.137733pt;}
.y82{bottom:888.768533pt;}
.ycb{bottom:889.737733pt;}
.y180{bottom:892.544533pt;}
.y7{bottom:893.959733pt;}
.ya9{bottom:896.320533pt;}
.y108{bottom:897.921867pt;}
.y3b{bottom:912.137733pt;}
.y81{bottom:912.768533pt;}
.yca{bottom:913.737733pt;}
.y17f{bottom:916.544533pt;}
.y61{bottom:917.512533pt;}
.y6{bottom:917.959733pt;}
.ya8{bottom:920.320533pt;}
.y3a{bottom:936.137733pt;}
.y80{bottom:936.768533pt;}
.y17e{bottom:940.544533pt;}
.ya7{bottom:944.320533pt;}
.yc9{bottom:954.850533pt;}
.y7f{bottom:960.768533pt;}
.ya6{bottom:968.320533pt;}
.y126{bottom:977.250667pt;}
.yc8{bottom:991.962267pt;}
.y60{bottom:992.320533pt;}
.y39{bottom:1016.191600pt;}
.y5f{bottom:1016.320533pt;}
.y2{bottom:1055.909733pt;}
.y38{bottom:1070.555867pt;}
.hc{height:33.351562pt;}
.h10{height:34.608000pt;}
.h3{height:35.039062pt;}
.h9{height:38.307292pt;}
.hd{height:38.932292pt;}
.he{height:39.101562pt;}
.h8{height:41.479167pt;}
.hf{height:44.390625pt;}
.h2{height:44.468750pt;}
.h7{height:45.968750pt;}
.h4{height:49.322917pt;}
.ha{height:52.791667pt;}
.h5{height:54.255208pt;}
.h6{height:56.562500pt;}
.hb{height:59.187500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.189467pt;}
.x7{left:76.913333pt;}
.x2{left:94.488133pt;}
.xb{left:113.385867pt;}
.x10{left:117.160133pt;}
.xf{left:124.724400pt;}
.xe{left:132.283467pt;}
.x5{left:331.216667pt;}
.x4{left:336.599333pt;}
.xd{left:365.859733pt;}
.x6{left:404.849467pt;}
.x8{left:437.895733pt;}
.x9{left:627.597733pt;}
.x1{left:705.322800pt;}
.x3{left:740.340400pt;}
.xc{left:745.507200pt;}
}




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