
    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_47eb20165467eb1a5aa58279.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_0c002de5d2d7e670c59e5882.woff')format("woff");}.ff2{font-family:ff2;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bd8f10f6eedcc9022ad5f2a1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_e57cd88cce7204976edbf9fa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.858398;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_3dc62fa77f39e0442723db03.woff')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_af03ef605591941fa38f43af.woff')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_dafbd4a503cd06ac838a2e21.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_0392ac77b18f81a088aa514f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_4f3e1d9811dc21aabbabb16d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_ec7501ec3bf24b5e7fa43877.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_29554127429a28582d3f665a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_c097f02020cf99b023f610dc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_49371ce3d5f5139e2835ec00.woff')format("woff");}.ffd{font-family:ffd;line-height:0.925293;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_66c7c1682081343a35c828fa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.948000;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_1befb28e7e46e4630edd10cb.woff')format("woff");}.fff{font-family:fff;line-height:0.863000;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_408463143303cce0972dd96e.woff')format("woff");}.ff10{font-family:ff10;line-height:1.001000;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_b4232df58f12f146a61547a9.woff')format("woff");}.ff11{font-family:ff11;line-height:0.731445;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_08cb0f9d8fd1e183e257a042.woff')format("woff");}.ff12{font-family:ff12;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3f0ee1021c9f4abe7a9fa133.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d10d8e815c9248772f803160.woff')format("woff");}.ff14{font-family:ff14;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.126839,0.215434,-0.215380,0.126932,0,0);-ms-transform:matrix(0.126839,0.215434,-0.215380,0.126932,0,0);-webkit-transform:matrix(0.126839,0.215434,-0.215380,0.126932,0,0);}
.m5{transform:matrix(0.217878,0.122593,-0.122604,0.217872,0,0);-ms-transform:matrix(0.217878,0.122593,-0.122604,0.217872,0,0);-webkit-transform:matrix(0.217878,0.122593,-0.122604,0.217872,0,0);}
.m7{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m4{transform:matrix(0.246030,0.044377,-0.044166,0.246068,0,0);-ms-transform:matrix(0.246030,0.044377,-0.044166,0.246068,0,0);-webkit-transform:matrix(0.246030,0.044377,-0.044166,0.246068,0,0);}
.m2{transform:matrix(0.247653,-0.034172,0.034269,0.247640,0,0);-ms-transform:matrix(0.247653,-0.034172,0.034269,0.247640,0,0);-webkit-transform:matrix(0.247653,-0.034172,0.034269,0.247640,0,0);}
.m3{transform:matrix(0.250000,0.000190,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000190,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000190,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);}
.m1{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);}
.v4{vertical-align:-41.776138px;}
.v3{vertical-align:-29.978812px;}
.v5{vertical-align:-13.948965px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.487256px;}
.v2{vertical-align:40.500001px;}
.v1{vertical-align:62.999998px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:107.972093px;}
.ls6{letter-spacing:107.986262px;}
.ls1{letter-spacing:107.986397px;}
.ls3{letter-spacing:108.000354px;}
.ls4{letter-spacing:108.000363px;}
.ls2{letter-spacing:108.000426px;}
.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;}
}
.ws7{word-spacing:-44.544003px;}
.wsa{word-spacing:-38.400000px;}
.wsd{word-spacing:-34.056002px;}
.ws3{word-spacing:-27.864001px;}
.ws2{word-spacing:-27.648001px;}
.wsb{word-spacing:-26.112000px;}
.ws10{word-spacing:-24.814801px;}
.wsc{word-spacing:-24.576002px;}
.ws1{word-spacing:-24.408001px;}
.ws9{word-spacing:-23.268000px;}
.ws6{word-spacing:-23.040001px;}
.wsf{word-spacing:-21.696001px;}
.wse{word-spacing:-21.672000px;}
.ws5{word-spacing:-21.588000px;}
.ws4{word-spacing:-21.504000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:73.926232px;}
._14{margin-left:-15.852001px;}
._a{margin-left:-13.456800px;}
._9{margin-left:-11.875200px;}
._12{margin-left:-10.824001px;}
._3{margin-left:-8.694000px;}
._8{margin-left:-7.480800px;}
._7{margin-left:-6.156000px;}
._6{margin-left:-5.073600px;}
._2{margin-left:-3.864000px;}
._1{margin-left:-2.704800px;}
._5{margin-left:-1.399200px;}
._4{width:1.644330px;}
._16{width:2.849779px;}
._0{width:3.864000px;}
._13{width:107.982234px;}
._b{width:795.025818px;}
._f{width:799.698694px;}
._c{width:805.197740px;}
._d{width:841.087432px;}
._10{width:1055.827028px;}
._15{width:1124.068264px;}
._11{width:1330.997879px;}
._e{width:1495.789512px;}
.fc8{color:rgb(164,175,183);}
.fc7{color:rgb(232,97,97);}
.fc6{color:transparent;}
.fca{color:rgb(85,85,85);}
.fc9{color:rgb(204,204,204);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(183,183,183);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(89,89,89);}
.fc2{color:rgb(0,151,167);}
.fc0{color:rgb(98,16,204);}
.fs8{font-size:42.000000px;}
.fs5{font-size:48.000003px;}
.fs11{font-size:54.000001px;}
.fs12{font-size:54.000006px;}
.fse{font-size:54.000007px;}
.fsf{font-size:54.000013px;}
.fs10{font-size:54.000023px;}
.fs7{font-size:60.000000px;}
.fs14{font-size:66.000004px;}
.fsd{font-size:72.000002px;}
.fs4{font-size:72.000006px;}
.fsa{font-size:78.000005px;}
.fsc{font-size:84.000000px;}
.fs16{font-size:90.000003px;}
.fs19{font-size:96.000006px;}
.fs13{font-size:102.000000px;}
.fs3{font-size:108.000003px;}
.fs1c{font-size:109.800004px;}
.fs2{font-size:112.000005px;}
.fs1b{font-size:121.199764px;}
.fsb{font-size:132.000007px;}
.fs15{font-size:145.200020px;}
.fs9{font-size:149.999999px;}
.fs6{font-size:151.200005px;}
.fs17{font-size:174.000012px;}
.fs1{font-size:180.000006px;}
.fs0{font-size:193.200009px;}
.fs18{font-size:208.039997px;}
.fs1a{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.yb{bottom:10.738938px;}
.yc9{bottom:17.726795px;}
.ybe{bottom:17.726809px;}
.y90{bottom:27.606737px;}
.ya{bottom:28.082245px;}
.y40{bottom:32.744749px;}
.yad{bottom:32.837922px;}
.y5{bottom:34.191659px;}
.y2e{bottom:40.435276px;}
.yc8{bottom:42.476796px;}
.ybd{bottom:42.476809px;}
.y92{bottom:46.801152px;}
.y7e{bottom:48.920641px;}
.y26{bottom:51.110651px;}
.y4f{bottom:54.189482px;}
.y5a{bottom:55.177407px;}
.y75{bottom:55.177902px;}
.y9b{bottom:55.664251px;}
.y48{bottom:55.872484px;}
.y65{bottom:60.636628px;}
.y66{bottom:61.295529px;}
.y51{bottom:61.684185px;}
.y58{bottom:61.684202px;}
.y2d{bottom:65.635275px;}
.y89{bottom:68.090923px;}
.y74{bottom:68.184901px;}
.y39{bottom:69.987223px;}
.y25{bottom:75.860657px;}
.y7d{bottom:75.920642px;}
.y3e{bottom:77.744751px;}
.yb4{bottom:86.425397px;}
.y9a{bottom:90.854252px;}
.y9{bottom:92.729976px;}
.y37{bottom:98.581686px;}
.ya2{bottom:99.617462px;}
.y76{bottom:100.177409px;}
.y73{bottom:100.584906px;}
.y24{bottom:100.610658px;}
.y7c{bottom:102.920643px;}
.y5e{bottom:105.948873px;}
.y69{bottom:106.295530px;}
.y87{bottom:113.630902px;}
.y2c{bottom:114.603751px;}
.y9c{bottom:114.785872px;}
.yc7{bottom:117.541769px;}
.y99{bottom:126.044253px;}
.yc2{bottom:129.916769px;}
.y7b{bottom:129.920643px;}
.ybc{bottom:130.356727px;}
.yb3{bottom:131.965393px;}
.yd6{bottom:135.815857px;}
.y5d{bottom:138.348874px;}
.y80{bottom:140.639388px;}
.yc6{bottom:142.291769px;}
.y34{bottom:142.463370px;}
.yb8{bottom:142.731728px;}
.y47{bottom:142.849841px;}
.y15{bottom:146.911823px;}
.y38{bottom:147.389216px;}
.y64{bottom:147.457556px;}
.y6e{bottom:148.753781px;}
.y36{bottom:150.484540px;}
.y3f{bottom:152.140418px;}
.yc1{bottom:154.666770px;}
.y57{bottom:155.054446px;}
.y50{bottom:155.054452px;}
.ybb{bottom:155.106728px;}
.y78{bottom:156.814358px;}
.y7a{bottom:156.920648px;}
.y98{bottom:161.234254px;}
.ye1{bottom:161.663869px;}
.yd7{bottom:162.578011px;}
.y33{bottom:163.838372px;}
.yc5{bottom:167.041770px;}
.yb7{bottom:167.481728px;}
.y46{bottom:167.599839px;}
.y23{bottom:168.110655px;}
.y5c{bottom:170.748882px;}
.y7{bottom:174.521911px;}
.y8c{bottom:174.625272px;}
.yb2{bottom:177.505389px;}
.yab{bottom:178.795395px;}
.yc0{bottom:179.416771px;}
.yba{bottom:179.856729px;}
.y63{bottom:179.857561px;}
.y9e{bottom:180.307561px;}
.y6d{bottom:181.153786px;}
.y29{bottom:181.991563px;}
.ya4{bottom:182.633872px;}
.y77{bottom:183.814356px;}
.y79{bottom:183.920646px;}
.ya6{bottom:184.065964px;}
.y6{bottom:188.921912px;}
.y35{bottom:191.069969px;}
.yd5{bottom:191.075893px;}
.y1b{bottom:191.186441px;}
.yc4{bottom:191.791775px;}
.yb6{bottom:192.231729px;}
.y22{bottom:192.860660px;}
.y16{bottom:194.572303px;}
.yc{bottom:197.054379px;}
.y8b{bottom:198.025266px;}
.ye0{bottom:199.355893px;}
.y5b{bottom:203.148887px;}
.ybf{bottom:204.166776px;}
.yb9{bottom:204.606730px;}
.y86{bottom:204.710916px;}
.y28{bottom:206.741556px;}
.yaa{bottom:207.595393px;}
.ya3{bottom:211.433871px;}
.ya9{bottom:211.827520px;}
.ya5{bottom:212.865962px;}
.y1a{bottom:215.936442px;}
.yc3{bottom:216.541776px;}
.y11{bottom:216.915805px;}
.y21{bottom:217.610661px;}
.y4{bottom:217.751005px;}
.y8a{bottom:221.425266px;}
.y32{bottom:221.569885px;}
.yb1{bottom:223.045390px;}
.yd4{bottom:227.075894px;}
.y27{bottom:231.491556px;}
.y97{bottom:231.614257px;}
.y30{bottom:232.778393px;}
.ydf{bottom:235.355894px;}
.y14{bottom:237.991814px;}
.ya8{bottom:240.627512px;}
.y19{bottom:240.686448px;}
.y9d{bottom:243.842006px;}
.y4c{bottom:244.163468px;}
.y4b{bottom:245.436519px;}
.yac{bottom:246.990712px;}
.y3{bottom:247.127006px;}
.y4e{bottom:248.513191px;}
.y85{bottom:250.250906px;}
.y3d{bottom:253.119334px;}
.y45{bottom:255.036010px;}
.yd3{bottom:260.195895px;}
.y18{bottom:265.436449px;}
.y96{bottom:266.804258px;}
.yde{bottom:268.475895px;}
.y2f{bottom:268.509242px;}
.ya7{bottom:269.427510px;}
.y91{bottom:272.384290px;}
.y4d{bottom:273.263191px;}
.y31{bottom:276.068914px;}
.y3c{bottom:278.319333px;}
.y10{bottom:281.715818px;}
.ycd{bottom:284.309995px;}
.y20{bottom:285.110659px;}
.yb5{bottom:292.530714px;}
.yd2{bottom:293.315896px;}
.y88{bottom:295.790908px;}
.y7f{bottom:298.140594px;}
.y8e{bottom:300.227829px;}
.ydd{bottom:301.595896px;}
.y95{bottom:301.994259px;}
.y1f{bottom:309.860664px;}
.y43{bottom:314.131806px;}
.y1d{bottom:321.977308px;}
.y8d{bottom:323.627830px;}
.yd1{bottom:326.435897px;}
.y13{bottom:329.071812px;}
.y3a{bottom:330.757632px;}
.y1e{bottom:334.610665px;}
.ydc{bottom:334.715902px;}
.ya1{bottom:338.070710px;}
.y84{bottom:341.330898px;}
.yb0{bottom:356.070710px;}
.y2b{bottom:359.814705px;}
.ycc{bottom:360.390693px;}
.y1c{bottom:360.695312px;}
.yd0{bottom:360.815887px;}
.ydb{bottom:367.835910px;}
.y94{bottom:372.374261px;}
.y6c{bottom:381.729784px;}
.y72{bottom:381.824588px;}
.ya0{bottom:383.610705px;}
.y83{bottom:386.870899px;}
.y42{bottom:388.651808px;}
.y60{bottom:389.508232px;}
.y71{bottom:390.936481px;}
.ycb{bottom:397.650706px;}
.ycf{bottom:398.075900px;}
.yda{bottom:400.955897px;}
.yaf{bottom:401.610706px;}
.y93{bottom:407.564258px;}
.ye{bottom:412.683069px;}
.y6b{bottom:414.129792px;}
.y62{bottom:418.008155px;}
.y61{bottom:418.009123px;}
.y3b{bottom:419.274986px;}
.y12{bottom:420.151809px;}
.y2{bottom:420.217962px;}
.y5f{bottom:421.908238px;}
.y70{bottom:423.336488px;}
.y2a{bottom:425.910707px;}
.y41{bottom:425.911809px;}
.y17{bottom:426.874415px;}
.y9f{bottom:429.150707px;}
.y68{bottom:429.380776px;}
.y82{bottom:432.410889px;}
.y49{bottom:434.137451px;}
.yca{bottom:434.910707px;}
.yce{bottom:435.335901px;}
.y6a{bottom:446.529797px;}
.yae{bottom:447.150707px;}
.y6f{bottom:455.736494px;}
.y4a{bottom:458.887451px;}
.y67{bottom:461.780782px;}
.yd{bottom:464.433070px;}
.y1{bottom:478.177964px;}
.y8f{bottom:488.478774px;}
.yd9{bottom:500.235124px;}
.y8{bottom:508.524991px;}
.y44{bottom:509.964981px;}
.y55{bottom:518.332204px;}
.y53{bottom:518.710154px;}
.y81{bottom:526.812989px;}
.y56{bottom:529.705161px;}
.y59{bottom:536.476651px;}
.yd8{bottom:538.395073px;}
.y54{bottom:539.707204px;}
.y52{bottom:540.085155px;}
.yf{bottom:569.232755px;}
.h9{height:30.146484px;}
.h7{height:32.648440px;}
.h5{height:34.453127px;}
.h15{height:39.771000px;}
.h11{height:39.771005px;}
.h12{height:39.771009px;}
.h14{height:39.771017px;}
.h8{height:43.125000px;}
.h17{height:49.632003px;}
.h13{height:52.417970px;}
.h10{height:54.144002px;}
.hb{height:58.656004px;}
.h1c{height:61.154297px;}
.hf{height:63.168000px;}
.h19{height:67.680002px;}
.h21{height:69.000004px;}
.h1d{height:72.192005px;}
.h1f{height:73.406252px;}
.h16{height:76.704000px;}
.h4{height:77.519534px;}
.h20{height:77.625002px;}
.h23{height:78.811526px;}
.hc{height:81.216003px;}
.h3{height:92.179693px;}
.h22{height:93.445018px;}
.hd{height:99.264005px;}
.h18{height:109.190415px;}
.ha{height:112.799999px;}
.he{height:113.702404px;}
.h6{height:116.575204px;}
.h1a{height:130.848009px;}
.h2{height:139.125001px;}
.h1{height:148.957207px;}
.h1b{height:159.982757px;}
.h1e{height:166.536005px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:35.672246px;}
.x70{left:40.976434px;}
.x7{left:46.939963px;}
.x78{left:48.458999px;}
.x19{left:52.589038px;}
.xc{left:54.011364px;}
.x3e{left:55.565083px;}
.x64{left:56.595475px;}
.xe{left:57.631857px;}
.x5{left:58.831805px;}
.x6f{left:62.331299px;}
.x50{left:63.380905px;}
.x1a{left:64.887681px;}
.x77{left:66.739804px;}
.x79{left:68.156525px;}
.x66{left:72.011365px;}
.x48{left:74.099374px;}
.x80{left:75.631858px;}
.x11{left:82.579106px;}
.x51{left:85.130901px;}
.x4b{left:88.139782px;}
.x1{left:92.621289px;}
.x10{left:97.260445px;}
.x46{left:99.380911px;}
.x33{left:100.939964px;}
.x54{left:102.079725px;}
.x47{left:104.190031px;}
.x12{left:107.072722px;}
.x49{left:108.380912px;}
.x59{left:112.737311px;}
.x53{left:117.380912px;}
.x55{left:119.444888px;}
.x1c{left:122.741590px;}
.x16{left:125.778366px;}
.xf{left:127.074447px;}
.x24{left:130.083040px;}
.x57{left:139.806709px;}
.x5c{left:152.335635px;}
.x2a{left:162.705457px;}
.x1d{left:164.287884px;}
.x4e{left:167.491940px;}
.x2b{left:169.922765px;}
.x2d{left:172.055188px;}
.x35{left:176.522698px;}
.x25{left:180.510402px;}
.x18{left:188.015470px;}
.x2{left:195.279398px;}
.x58{left:210.866320px;}
.x4c{left:220.027575px;}
.x17{left:223.772677px;}
.x8{left:229.390770px;}
.x15{left:251.015476px;}
.x29{left:258.173070px;}
.x1b{left:260.015476px;}
.x52{left:265.382491px;}
.x28{left:269.673558px;}
.x72{left:272.332444px;}
.x2c{left:274.382138px;}
.x5e{left:277.582374px;}
.x26{left:293.224364px;}
.x81{left:296.270537px;}
.x69{left:302.729059px;}
.x7e{left:305.924399px;}
.x68{left:310.815236px;}
.x27{left:330.663281px;}
.x2e{left:336.763305px;}
.x4{left:348.673131px;}
.x3a{left:367.293814px;}
.x71{left:410.007894px;}
.x5d{left:415.253983px;}
.x3{left:416.760833px;}
.x34{left:430.689119px;}
.x36{left:437.162328px;}
.x61{left:445.437191px;}
.x7f{left:449.407173px;}
.x41{left:466.333654px;}
.x42{left:468.411313px;}
.x3b{left:472.346807px;}
.x62{left:475.270069px;}
.x3c{left:478.527682px;}
.xd{left:489.369753px;}
.x67{left:499.594898px;}
.x76{left:503.578940px;}
.x37{left:517.043705px;}
.x22{left:541.361534px;}
.x13{left:542.410724px;}
.x60{left:548.722480px;}
.x14{left:555.044305px;}
.xb{left:559.210687px;}
.x23{left:566.735850px;}
.x4a{left:595.795294px;}
.x5f{left:603.463576px;}
.x2f{left:612.363170px;}
.x4f{left:621.654563px;}
.x6a{left:625.324565px;}
.xa{left:626.960158px;}
.x6b{left:634.082405px;}
.x31{left:638.432683px;}
.x1f{left:650.194034px;}
.x4d{left:656.007516px;}
.x5a{left:679.102865px;}
.x20{left:691.614432px;}
.x3d{left:696.972296px;}
.x21{left:710.058713px;}
.x56{left:717.747829px;}
.x5b{left:719.692954px;}
.x74{left:721.680216px;}
.x75{left:732.289859px;}
.x73{left:743.130928px;}
.x38{left:759.485961px;}
.x1e{left:779.062120px;}
.x7d{left:782.195931px;}
.x32{left:784.918573px;}
.x82{left:820.447050px;}
.x63{left:822.873566px;}
.x39{left:824.833275px;}
.x30{left:860.679703px;}
.x44{left:870.136071px;}
.x45{left:874.438525px;}
.x43{left:899.233113px;}
.x40{left:903.894387px;}
.x7c{left:905.741963px;}
.x7b{left:907.483991px;}
.x3f{left:914.451494px;}
.x65{left:926.949855px;}
.x6d{left:928.081349px;}
.x6e{left:938.818631px;}
.x6c{left:951.439722px;}
.x7a{left:956.344717px;}
.x9{left:1047.027099px;}
@media print{
.v4{vertical-align:-37.134345pt;}
.v3{vertical-align:-26.647833pt;}
.v5{vertical-align:-12.399080pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:20.877561pt;}
.v2{vertical-align:36.000001pt;}
.v1{vertical-align:55.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:95.975194pt;}
.ls6{letter-spacing:95.987788pt;}
.ls1{letter-spacing:95.987908pt;}
.ls3{letter-spacing:96.000315pt;}
.ls4{letter-spacing:96.000323pt;}
.ls2{letter-spacing:96.000379pt;}
.ws7{word-spacing:-39.594669pt;}
.wsa{word-spacing:-34.133333pt;}
.wsd{word-spacing:-30.272002pt;}
.ws3{word-spacing:-24.768001pt;}
.ws2{word-spacing:-24.576001pt;}
.wsb{word-spacing:-23.210667pt;}
.ws10{word-spacing:-22.057601pt;}
.wsc{word-spacing:-21.845335pt;}
.ws1{word-spacing:-21.696001pt;}
.ws9{word-spacing:-20.682667pt;}
.ws6{word-spacing:-20.480001pt;}
.wsf{word-spacing:-19.285335pt;}
.wse{word-spacing:-19.264000pt;}
.ws5{word-spacing:-19.189333pt;}
.ws4{word-spacing:-19.114667pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:65.712206pt;}
._14{margin-left:-14.090668pt;}
._a{margin-left:-11.961600pt;}
._9{margin-left:-10.555734pt;}
._12{margin-left:-9.621334pt;}
._3{margin-left:-7.728000pt;}
._8{margin-left:-6.649600pt;}
._7{margin-left:-5.472000pt;}
._6{margin-left:-4.509867pt;}
._2{margin-left:-3.434667pt;}
._1{margin-left:-2.404267pt;}
._5{margin-left:-1.243733pt;}
._4{width:1.461627pt;}
._16{width:2.533137pt;}
._0{width:3.434667pt;}
._13{width:95.984208pt;}
._b{width:706.689616pt;}
._f{width:710.843284pt;}
._c{width:715.731324pt;}
._d{width:747.633273pt;}
._10{width:938.512914pt;}
._15{width:999.171790pt;}
._11{width:1183.109226pt;}
._e{width:1329.590677pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:42.666669pt;}
.fs11{font-size:48.000001pt;}
.fs12{font-size:48.000005pt;}
.fse{font-size:48.000006pt;}
.fsf{font-size:48.000011pt;}
.fs10{font-size:48.000021pt;}
.fs7{font-size:53.333334pt;}
.fs14{font-size:58.666670pt;}
.fsd{font-size:64.000002pt;}
.fs4{font-size:64.000005pt;}
.fsa{font-size:69.333338pt;}
.fsc{font-size:74.666666pt;}
.fs16{font-size:80.000003pt;}
.fs19{font-size:85.333339pt;}
.fs13{font-size:90.666667pt;}
.fs3{font-size:96.000003pt;}
.fs1c{font-size:97.600003pt;}
.fs2{font-size:99.555560pt;}
.fs1b{font-size:107.733123pt;}
.fsb{font-size:117.333340pt;}
.fs15{font-size:129.066684pt;}
.fs9{font-size:133.333332pt;}
.fs6{font-size:134.400004pt;}
.fs17{font-size:154.666677pt;}
.fs1{font-size:160.000005pt;}
.fs0{font-size:171.733341pt;}
.fs18{font-size:184.924442pt;}
.fs1a{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:9.545723pt;}
.yc9{bottom:15.757151pt;}
.ybe{bottom:15.757163pt;}
.y90{bottom:24.539322pt;}
.ya{bottom:24.961996pt;}
.y40{bottom:29.106444pt;}
.yad{bottom:29.189264pt;}
.y5{bottom:30.392586pt;}
.y2e{bottom:35.942468pt;}
.yc8{bottom:37.757152pt;}
.ybd{bottom:37.757164pt;}
.y92{bottom:41.601024pt;}
.y7e{bottom:43.485014pt;}
.y26{bottom:45.431690pt;}
.y4f{bottom:48.168428pt;}
.y5a{bottom:49.046584pt;}
.y75{bottom:49.047024pt;}
.y9b{bottom:49.479334pt;}
.y48{bottom:49.664430pt;}
.y65{bottom:53.899224pt;}
.y66{bottom:54.484914pt;}
.y51{bottom:54.830386pt;}
.y58{bottom:54.830401pt;}
.y2d{bottom:58.342467pt;}
.y89{bottom:60.525265pt;}
.y74{bottom:60.608801pt;}
.y39{bottom:62.210865pt;}
.y25{bottom:67.431695pt;}
.y7d{bottom:67.485015pt;}
.y3e{bottom:69.106445pt;}
.yb4{bottom:76.822575pt;}
.y9a{bottom:80.759335pt;}
.y9{bottom:82.426645pt;}
.y37{bottom:87.628166pt;}
.ya2{bottom:88.548856pt;}
.y76{bottom:89.046586pt;}
.y73{bottom:89.408806pt;}
.y24{bottom:89.431696pt;}
.y7c{bottom:91.485016pt;}
.y5e{bottom:94.176776pt;}
.y69{bottom:94.484916pt;}
.y87{bottom:101.005246pt;}
.y2c{bottom:101.870001pt;}
.y9c{bottom:102.031886pt;}
.yc7{bottom:104.481572pt;}
.y99{bottom:112.039336pt;}
.yc2{bottom:115.481572pt;}
.y7b{bottom:115.485016pt;}
.ybc{bottom:115.872646pt;}
.yb3{bottom:117.302571pt;}
.yd6{bottom:120.725207pt;}
.y5d{bottom:122.976777pt;}
.y80{bottom:125.012790pt;}
.yc6{bottom:126.481573pt;}
.y34{bottom:126.634107pt;}
.yb8{bottom:126.872647pt;}
.y47{bottom:126.977637pt;}
.y15{bottom:130.588287pt;}
.y38{bottom:131.012637pt;}
.y64{bottom:131.073383pt;}
.y6e{bottom:132.225583pt;}
.y36{bottom:133.764036pt;}
.y3f{bottom:135.235927pt;}
.yc1{bottom:137.481573pt;}
.y57{bottom:137.826174pt;}
.y50{bottom:137.826179pt;}
.ybb{bottom:137.872647pt;}
.y78{bottom:139.390540pt;}
.y7a{bottom:139.485020pt;}
.y98{bottom:143.319337pt;}
.ye1{bottom:143.701217pt;}
.yd7{bottom:144.513787pt;}
.y33{bottom:145.634108pt;}
.yc5{bottom:148.481573pt;}
.yb7{bottom:148.872647pt;}
.y46{bottom:148.977634pt;}
.y23{bottom:149.431694pt;}
.y5c{bottom:151.776784pt;}
.y7{bottom:155.130588pt;}
.y8c{bottom:155.222464pt;}
.yb2{bottom:157.782568pt;}
.yab{bottom:158.929240pt;}
.yc0{bottom:159.481574pt;}
.yba{bottom:159.872648pt;}
.y63{bottom:159.873388pt;}
.y9e{bottom:160.273388pt;}
.y6d{bottom:161.025588pt;}
.y29{bottom:161.770278pt;}
.ya4{bottom:162.341220pt;}
.y77{bottom:163.390539pt;}
.y79{bottom:163.485019pt;}
.ya6{bottom:163.614190pt;}
.y6{bottom:167.930588pt;}
.y35{bottom:169.839972pt;}
.yd5{bottom:169.845238pt;}
.y1b{bottom:169.943503pt;}
.yc4{bottom:170.481578pt;}
.yb6{bottom:170.872648pt;}
.y22{bottom:171.431698pt;}
.y16{bottom:172.953158pt;}
.yc{bottom:175.159448pt;}
.y8b{bottom:176.022458pt;}
.ye0{bottom:177.205238pt;}
.y5b{bottom:180.576788pt;}
.ybf{bottom:181.481579pt;}
.yb9{bottom:181.872649pt;}
.y86{bottom:181.965259pt;}
.y28{bottom:183.770272pt;}
.yaa{bottom:184.529239pt;}
.ya3{bottom:187.941219pt;}
.ya9{bottom:188.291129pt;}
.ya5{bottom:189.214189pt;}
.y1a{bottom:191.943504pt;}
.yc3{bottom:192.481579pt;}
.y11{bottom:192.814049pt;}
.y21{bottom:193.431699pt;}
.y4{bottom:193.556449pt;}
.y8a{bottom:196.822459pt;}
.y32{bottom:196.951009pt;}
.yb1{bottom:198.262569pt;}
.yd4{bottom:201.845239pt;}
.y27{bottom:205.770272pt;}
.y97{bottom:205.879339pt;}
.y30{bottom:206.914127pt;}
.ydf{bottom:209.205239pt;}
.y14{bottom:211.548279pt;}
.ya8{bottom:213.891122pt;}
.y19{bottom:213.943510pt;}
.y9d{bottom:216.748450pt;}
.y4c{bottom:217.034194pt;}
.y4b{bottom:218.165795pt;}
.yac{bottom:219.547300pt;}
.y3{bottom:219.668450pt;}
.y4e{bottom:220.900614pt;}
.y85{bottom:222.445250pt;}
.y3d{bottom:224.994964pt;}
.y45{bottom:226.698676pt;}
.yd3{bottom:231.285240pt;}
.y18{bottom:235.943510pt;}
.y96{bottom:237.159340pt;}
.yde{bottom:238.645240pt;}
.y2f{bottom:238.674882pt;}
.ya7{bottom:239.491120pt;}
.y91{bottom:242.119368pt;}
.y4d{bottom:242.900614pt;}
.y31{bottom:245.394591pt;}
.y3c{bottom:247.394963pt;}
.y10{bottom:250.414061pt;}
.ycd{bottom:252.719996pt;}
.y20{bottom:253.431697pt;}
.yb5{bottom:260.027301pt;}
.yd2{bottom:260.725241pt;}
.y88{bottom:262.925251pt;}
.y7f{bottom:265.013861pt;}
.y8e{bottom:266.869181pt;}
.ydd{bottom:268.085241pt;}
.y95{bottom:268.439341pt;}
.y1f{bottom:275.431702pt;}
.y43{bottom:279.228272pt;}
.y1d{bottom:286.202052pt;}
.y8d{bottom:287.669182pt;}
.yd1{bottom:290.165242pt;}
.y13{bottom:292.508277pt;}
.y3a{bottom:294.006784pt;}
.y1e{bottom:297.431702pt;}
.ydc{bottom:297.525246pt;}
.ya1{bottom:300.507297pt;}
.y84{bottom:303.405242pt;}
.yb0{bottom:316.507298pt;}
.y2b{bottom:319.835293pt;}
.ycc{bottom:320.347283pt;}
.y1c{bottom:320.618055pt;}
.yd0{bottom:320.725233pt;}
.ydb{bottom:326.965253pt;}
.y94{bottom:330.999343pt;}
.y6c{bottom:339.315364pt;}
.y72{bottom:339.399634pt;}
.ya0{bottom:340.987294pt;}
.y83{bottom:343.885244pt;}
.y42{bottom:345.468274pt;}
.y60{bottom:346.229540pt;}
.y71{bottom:347.499094pt;}
.ycb{bottom:353.467294pt;}
.ycf{bottom:353.845244pt;}
.yda{bottom:356.405242pt;}
.yaf{bottom:356.987294pt;}
.y93{bottom:362.279340pt;}
.ye{bottom:366.829394pt;}
.y6b{bottom:368.115370pt;}
.y62{bottom:371.562805pt;}
.y61{bottom:371.563665pt;}
.y3b{bottom:372.688877pt;}
.y12{bottom:373.468275pt;}
.y2{bottom:373.527078pt;}
.y5f{bottom:375.029545pt;}
.y70{bottom:376.299101pt;}
.y2a{bottom:378.587295pt;}
.y41{bottom:378.588275pt;}
.y17{bottom:379.443925pt;}
.y9f{bottom:381.467295pt;}
.y68{bottom:381.671801pt;}
.y82{bottom:384.365235pt;}
.y49{bottom:385.899956pt;}
.yca{bottom:386.587295pt;}
.yce{bottom:386.965245pt;}
.y6a{bottom:396.915375pt;}
.yae{bottom:397.467295pt;}
.y6f{bottom:405.099106pt;}
.y4a{bottom:407.899957pt;}
.y67{bottom:410.471806pt;}
.yd{bottom:412.829396pt;}
.y1{bottom:425.047079pt;}
.y8f{bottom:434.203355pt;}
.yd9{bottom:444.653444pt;}
.y8{bottom:452.022214pt;}
.y44{bottom:453.302205pt;}
.y55{bottom:460.739736pt;}
.y53{bottom:461.075692pt;}
.y81{bottom:468.278213pt;}
.y56{bottom:470.849032pt;}
.y59{bottom:476.868134pt;}
.yd8{bottom:478.573398pt;}
.y54{bottom:479.739737pt;}
.y52{bottom:480.075693pt;}
.yf{bottom:505.984671pt;}
.h9{height:26.796875pt;}
.h7{height:29.020835pt;}
.h5{height:30.625002pt;}
.h15{height:35.352000pt;}
.h11{height:35.352005pt;}
.h12{height:35.352008pt;}
.h14{height:35.352015pt;}
.h8{height:38.333334pt;}
.h17{height:44.117336pt;}
.h13{height:46.593751pt;}
.h10{height:48.128002pt;}
.hb{height:52.138670pt;}
.h1c{height:54.359375pt;}
.hf{height:56.149333pt;}
.h19{height:60.160002pt;}
.h21{height:61.333337pt;}
.h1d{height:64.170671pt;}
.h1f{height:65.250002pt;}
.h16{height:68.181334pt;}
.h4{height:68.906252pt;}
.h20{height:69.000002pt;}
.h23{height:70.054690pt;}
.hc{height:72.192002pt;}
.h3{height:81.937505pt;}
.h22{height:83.062238pt;}
.hd{height:88.234671pt;}
.h18{height:97.058146pt;}
.ha{height:100.266666pt;}
.he{height:101.068803pt;}
.h6{height:103.622403pt;}
.h1a{height:116.309341pt;}
.h2{height:123.666668pt;}
.h1{height:132.406406pt;}
.h1b{height:142.206896pt;}
.h1e{height:148.032005pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:31.708663pt;}
.x70{left:36.423497pt;}
.x7{left:41.724411pt;}
.x78{left:43.074665pt;}
.x19{left:46.745811pt;}
.xc{left:48.010102pt;}
.x3e{left:49.391185pt;}
.x64{left:50.307089pt;}
.xe{left:51.228318pt;}
.x5{left:52.294938pt;}
.x6f{left:55.405599pt;}
.x50{left:56.338582pt;}
.x1a{left:57.677939pt;}
.x77{left:59.324270pt;}
.x79{left:60.583578pt;}
.x66{left:64.010102pt;}
.x48{left:65.866110pt;}
.x80{left:67.228318pt;}
.x11{left:73.403649pt;}
.x51{left:75.671912pt;}
.x4b{left:78.346473pt;}
.x1{left:82.330035pt;}
.x10{left:86.453729pt;}
.x46{left:88.338588pt;}
.x33{left:89.724413pt;}
.x54{left:90.737533pt;}
.x47{left:92.613361pt;}
.x12{left:95.175753pt;}
.x49{left:96.338588pt;}
.x59{left:100.210943pt;}
.x53{left:104.338588pt;}
.x55{left:106.173233pt;}
.x1c{left:109.103635pt;}
.x16{left:111.802992pt;}
.xf{left:112.955064pt;}
.x24{left:115.629369pt;}
.x57{left:124.272630pt;}
.x5c{left:135.409453pt;}
.x2a{left:144.627072pt;}
.x1d{left:146.033675pt;}
.x4e{left:148.881725pt;}
.x2b{left:151.042458pt;}
.x2d{left:152.937945pt;}
.x35{left:156.909065pt;}
.x25{left:160.453691pt;}
.x18{left:167.124862pt;}
.x2{left:173.581688pt;}
.x58{left:187.436729pt;}
.x4c{left:195.580066pt;}
.x17{left:198.909046pt;}
.x8{left:203.902907pt;}
.x15{left:223.124867pt;}
.x29{left:229.487173pt;}
.x1b{left:231.124867pt;}
.x52{left:235.895548pt;}
.x28{left:239.709830pt;}
.x72{left:242.073284pt;}
.x2c{left:243.895234pt;}
.x5e{left:246.739888pt;}
.x26{left:260.643879pt;}
.x81{left:263.351588pt;}
.x69{left:269.092497pt;}
.x7e{left:271.932799pt;}
.x68{left:276.280210pt;}
.x27{left:293.922916pt;}
.x2e{left:299.345160pt;}
.x4{left:309.931672pt;}
.x3a{left:326.483390pt;}
.x71{left:364.451462pt;}
.x5d{left:369.114652pt;}
.x3{left:370.454074pt;}
.x34{left:382.834772pt;}
.x36{left:388.588736pt;}
.x61{left:395.944170pt;}
.x7f{left:399.473043pt;}
.x41{left:414.518803pt;}
.x42{left:416.365611pt;}
.x3b{left:419.863828pt;}
.x62{left:422.462284pt;}
.x3c{left:425.357940pt;}
.xd{left:434.995336pt;}
.x67{left:444.084354pt;}
.x76{left:447.625724pt;}
.x37{left:459.594405pt;}
.x22{left:481.210252pt;}
.x13{left:482.142865pt;}
.x60{left:487.753316pt;}
.x14{left:493.372716pt;}
.xb{left:497.076166pt;}
.x23{left:503.765200pt;}
.x4a{left:529.595817pt;}
.x5f{left:536.412067pt;}
.x2f{left:544.322817pt;}
.x4f{left:552.581834pt;}
.x6a{left:555.844058pt;}
.xa{left:557.297918pt;}
.x6b{left:563.628804pt;}
.x31{left:567.495718pt;}
.x1f{left:577.950252pt;}
.x4d{left:583.117792pt;}
.x5a{left:603.646991pt;}
.x20{left:614.768384pt;}
.x3d{left:619.530930pt;}
.x21{left:631.163300pt;}
.x56{left:637.998070pt;}
.x5b{left:639.727070pt;}
.x74{left:641.493526pt;}
.x75{left:650.924319pt;}
.x73{left:660.560825pt;}
.x38{left:675.098632pt;}
.x1e{left:692.499662pt;}
.x7d{left:695.285272pt;}
.x32{left:697.705398pt;}
.x82{left:729.286266pt;}
.x63{left:731.443169pt;}
.x39{left:733.185133pt;}
.x30{left:765.048624pt;}
.x44{left:773.454286pt;}
.x45{left:777.278689pt;}
.x43{left:799.318323pt;}
.x40{left:803.461678pt;}
.x7c{left:805.103967pt;}
.x7b{left:806.652437pt;}
.x3f{left:812.845772pt;}
.x65{left:823.955426pt;}
.x6d{left:824.961199pt;}
.x6e{left:834.505450pt;}
.x6c{left:845.724197pt;}
.x7a{left:850.084193pt;}
.x9{left:930.690755pt;}
}




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