
    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_f9c5c63bf11e9cca821f045e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_88f2035d5090da5a9acd6526.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_52c1ab77d258463e1efaa014.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_969e87e45f2ba4e20e2da0e4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_ca8451b728049670c066f1f3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_0cadeb45053818db7837c116.woff')format("woff");}.ff6{font-family:ff6;line-height:0.800000;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;}
.m0{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);}
.m2{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);}
.m1{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);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v4{vertical-align:26.592000px;}
.v1{vertical-align:37.770000px;}
.ls13{letter-spacing:-7.200000px;}
.ls58{letter-spacing:-6.600000px;}
.ls48{letter-spacing:-5.280000px;}
.ls2e{letter-spacing:-3.816000px;}
.ls57{letter-spacing:-2.574000px;}
.ls24{letter-spacing:-1.512000px;}
.ls23{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-1.224000px;}
.ls36{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-1.056000px;}
.ls34{letter-spacing:-1.008000px;}
.ls56{letter-spacing:-0.990000px;}
.ls54{letter-spacing:-0.924000px;}
.ls35{letter-spacing:-0.864000px;}
.ls31{letter-spacing:-0.792000px;}
.ls5c{letter-spacing:-0.726000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls5d{letter-spacing:-0.594000px;}
.ls49{letter-spacing:-0.528000px;}
.ls26{letter-spacing:-0.504000px;}
.ls43{letter-spacing:-0.462000px;}
.ls2c{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.396000px;}
.ls27{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.330000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.264000px;}
.ls18{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.198000px;}
.ls19{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.132000px;}
.ls2d{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.066000px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012600px;}
.ls7{letter-spacing:0.066000px;}
.ls2a{letter-spacing:0.072000px;}
.ls3b{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259200px;}
.ls5b{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.396000px;}
.ls2b{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.594000px;}
.ls2f{letter-spacing:0.630000px;}
.ls12{letter-spacing:0.648000px;}
.ls3f{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.720000px;}
.ls45{letter-spacing:0.726000px;}
.lsf{letter-spacing:0.792000px;}
.ls4b{letter-spacing:0.858000px;}
.ls20{letter-spacing:0.864000px;}
.lse{letter-spacing:0.936000px;}
.ls33{letter-spacing:1.008000px;}
.ls17{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.386000px;}
.ls59{letter-spacing:1.775400px;}
.ls16{letter-spacing:1.893000px;}
.ls22{letter-spacing:3.600000px;}
.ls30{letter-spacing:4.189500px;}
.ls0{letter-spacing:4.200000px;}
.ls21{letter-spacing:4.435200px;}
.ls1d{letter-spacing:5.256000px;}
.ls4d{letter-spacing:5.478000px;}
.ls3{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls29{letter-spacing:6.912000px;}
.ls4{letter-spacing:7.200000px;}
.ls1f{letter-spacing:9.151200px;}
.ls4c{letter-spacing:10.032000px;}
.ls2{letter-spacing:10.200000px;}
.ls3d{letter-spacing:10.296000px;}
.ls42{letter-spacing:10.428000px;}
.ls53{letter-spacing:10.560000px;}
.ls41{letter-spacing:10.758000px;}
.ls4e{letter-spacing:10.824000px;}
.ls40{letter-spacing:10.890000px;}
.ls3c{letter-spacing:10.956000px;}
.ls50{letter-spacing:11.088000px;}
.ls51{letter-spacing:11.352000px;}
.ls4f{letter-spacing:11.550000px;}
.ls3e{letter-spacing:11.682000px;}
.ls4a{letter-spacing:11.814000px;}
.ls5a{letter-spacing:19.800000px;}
.ls32{letter-spacing:38.923200px;}
.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;}
}
.ws5d{word-spacing:-38.346000px;}
.ws0{word-spacing:-27.432000px;}
.ws3b{word-spacing:-22.860000px;}
.ws31{word-spacing:-20.232000px;}
.ws21{word-spacing:-19.872000px;}
.ws60{word-spacing:-19.800000px;}
.ws35{word-spacing:-19.728000px;}
.wsd{word-spacing:-17.784000px;}
.ws19{word-spacing:-17.136000px;}
.wsc{word-spacing:-16.860000px;}
.ws20{word-spacing:-16.344000px;}
.ws3c{word-spacing:-16.302000px;}
.ws33{word-spacing:-16.017000px;}
.ws2f{word-spacing:-13.968000px;}
.ws36{word-spacing:-12.355200px;}
.wse{word-spacing:-12.139200px;}
.ws4f{word-spacing:-11.814000px;}
.ws47{word-spacing:-11.682000px;}
.ws57{word-spacing:-11.550000px;}
.ws5a{word-spacing:-11.352000px;}
.ws58{word-spacing:-11.088000px;}
.ws42{word-spacing:-11.022000px;}
.ws44{word-spacing:-10.956000px;}
.ws4a{word-spacing:-10.890000px;}
.ws56{word-spacing:-10.824000px;}
.ws4c{word-spacing:-10.758000px;}
.ws5c{word-spacing:-10.560000px;}
.ws45{word-spacing:-10.296000px;}
.ws5{word-spacing:-10.200000px;}
.ws51{word-spacing:-10.032000px;}
.wsf{word-spacing:-7.200000px;}
.ws2a{word-spacing:-6.912000px;}
.ws4{word-spacing:-6.600000px;}
.ws6{word-spacing:-6.000000px;}
.ws1{word-spacing:-4.200000px;}
.ws24{word-spacing:-3.600000px;}
.ws30{word-spacing:-3.528000px;}
.ws5f{word-spacing:-3.234000px;}
.ws41{word-spacing:-1.386000px;}
.ws1e{word-spacing:-1.080000px;}
.ws37{word-spacing:-1.008000px;}
.ws14{word-spacing:-0.936000px;}
.ws23{word-spacing:-0.864000px;}
.ws50{word-spacing:-0.858000px;}
.ws15{word-spacing:-0.792000px;}
.ws48{word-spacing:-0.726000px;}
.ws11{word-spacing:-0.720000px;}
.ws49{word-spacing:-0.660000px;}
.ws12{word-spacing:-0.648000px;}
.ws32{word-spacing:-0.630000px;}
.ws8{word-spacing:-0.594000px;}
.ws13{word-spacing:-0.576000px;}
.ws7{word-spacing:-0.528000px;}
.ws29{word-spacing:-0.504000px;}
.ws2b{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.396000px;}
.ws16{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.288000px;}
.ws5e{word-spacing:-0.264000px;}
.ws17{word-spacing:-0.216000px;}
.ws3d{word-spacing:-0.198000px;}
.ws10{word-spacing:-0.144000px;}
.ws40{word-spacing:-0.132000px;}
.ws2e{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws4b{word-spacing:0.066000px;}
.ws2d{word-spacing:0.072000px;}
.ws9{word-spacing:0.132000px;}
.ws1b{word-spacing:0.144000px;}
.ws4d{word-spacing:0.198000px;}
.ws1a{word-spacing:0.216000px;}
.ws3f{word-spacing:0.264000px;}
.ws1f{word-spacing:0.288000px;}
.ws3e{word-spacing:0.330000px;}
.ws28{word-spacing:0.360000px;}
.wsa{word-spacing:0.396000px;}
.ws2c{word-spacing:0.432000px;}
.ws43{word-spacing:0.462000px;}
.ws27{word-spacing:0.504000px;}
.ws4e{word-spacing:0.528000px;}
.ws62{word-spacing:0.594000px;}
.ws1d{word-spacing:0.648000px;}
.ws46{word-spacing:0.660000px;}
.ws1c{word-spacing:0.720000px;}
.ws61{word-spacing:0.726000px;}
.ws34{word-spacing:0.792000px;}
.ws39{word-spacing:0.864000px;}
.ws52{word-spacing:0.924000px;}
.ws54{word-spacing:0.990000px;}
.ws38{word-spacing:1.008000px;}
.ws53{word-spacing:1.056000px;}
.ws3a{word-spacing:1.080000px;}
.ws26{word-spacing:1.224000px;}
.ws25{word-spacing:1.512000px;}
.ws55{word-spacing:2.574000px;}
.ws3{word-spacing:4.080000px;}
.ws59{word-spacing:6.600000px;}
.ws18{word-spacing:7.200000px;}
._9{margin-left:-21.352200px;}
._14{margin-left:-19.746000px;}
._12{margin-left:-14.644200px;}
._19{margin-left:-13.596000px;}
._13{margin-left:-12.078000px;}
._7{margin-left:-10.506000px;}
._1b{margin-left:-8.830800px;}
._b{margin-left:-7.650000px;}
._5{margin-left:-5.692800px;}
._e{margin-left:-4.414200px;}
._1{margin-left:-3.145800px;}
._0{margin-left:-1.230600px;}
._d{width:1.663200px;}
._3{width:2.680200px;}
._4{width:3.850800px;}
._c{width:5.746800px;}
._2{width:7.165200px;}
._f{width:9.066600px;}
._a{width:10.200000px;}
._6{width:11.253000px;}
._11{width:12.276000px;}
._15{width:13.441200px;}
._17{width:14.959800px;}
._1a{width:16.236000px;}
._8{width:17.391000px;}
._18{width:19.701000px;}
._16{width:21.120000px;}
._10{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:61.200000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y22{bottom:140.311950px;}
.y46{bottom:140.313450px;}
.y199{bottom:140.400900px;}
.y14d{bottom:141.454350px;}
.y1c1{bottom:142.651800px;}
.y1e5{bottom:142.951800px;}
.y173{bottom:143.087400px;}
.ycc{bottom:143.514300px;}
.y1fe{bottom:143.784300px;}
.ya8{bottom:145.864950px;}
.yf2{bottom:147.434700px;}
.y21{bottom:156.813450px;}
.y198{bottom:160.200900px;}
.y1c0{bottom:162.303300px;}
.y45{bottom:162.364950px;}
.y1e4{bottom:162.454800px;}
.y14c{bottom:162.460350px;}
.y172{bottom:162.590400px;}
.y1fd{bottom:163.732800px;}
.ycb{bottom:164.070300px;}
.yf1{bottom:168.728700px;}
.y113{bottom:173.313450px;}
.y20{bottom:178.864950px;}
.y197{bottom:180.000900px;}
.y1bf{bottom:181.954800px;}
.y1e3{bottom:181.957800px;}
.y171{bottom:182.093400px;}
.y14b{bottom:183.466350px;}
.y1fc{bottom:183.681300px;}
.yca{bottom:184.626300px;}
.ya7{bottom:187.464300px;}
.yf0{bottom:190.022700px;}
.y112{bottom:195.364950px;}
.y196{bottom:199.800900px;}
.y84{bottom:200.878350px;}
.y1e2{bottom:201.460800px;}
.y170{bottom:201.596400px;}
.y1be{bottom:201.606300px;}
.y1fb{bottom:203.629800px;}
.y14a{bottom:204.472350px;}
.y66{bottom:204.550350px;}
.yc9{bottom:205.182300px;}
.ya6{bottom:208.614300px;}
.yef{bottom:211.316700px;}
.y1f{bottom:213.931200px;}
.y44{bottom:216.622350px;}
.y195{bottom:219.600900px;}
.y1e1{bottom:220.963800px;}
.y16f{bottom:221.099400px;}
.y1bd{bottom:221.257800px;}
.y83{bottom:222.334350px;}
.y1fa{bottom:223.578300px;}
.y149{bottom:225.478350px;}
.y65{bottom:225.556350px;}
.yc8{bottom:225.738300px;}
.ya5{bottom:229.764300px;}
.yee{bottom:232.610700px;}
.y1e{bottom:233.285700px;}
.y131{bottom:234.648300px;}
.y111{bottom:236.112300px;}
.y43{bottom:237.772350px;}
.y194{bottom:239.400900px;}
.y1e0{bottom:240.466800px;}
.y16e{bottom:240.602400px;}
.y1bc{bottom:240.909300px;}
.y1f9{bottom:243.526800px;}
.y82{bottom:243.790350px;}
.yc7{bottom:246.294300px;}
.y148{bottom:246.484350px;}
.y64{bottom:246.562350px;}
.ya4{bottom:250.914300px;}
.y1d{bottom:252.640200px;}
.yed{bottom:253.904700px;}
.y130{bottom:255.654300px;}
.y110{bottom:257.118300px;}
.y42{bottom:259.066350px;}
.y193{bottom:259.200900px;}
.y1df{bottom:259.969800px;}
.y16d{bottom:260.105400px;}
.y1bb{bottom:260.560800px;}
.y1f8{bottom:263.475300px;}
.y81{bottom:265.246350px;}
.yc6{bottom:266.850300px;}
.y147{bottom:267.490350px;}
.y63{bottom:267.568350px;}
.y1c{bottom:271.994700px;}
.ya3{bottom:272.064300px;}
.yec{bottom:275.198700px;}
.y12f{bottom:276.660300px;}
.y10f{bottom:277.962300px;}
.y192{bottom:279.000900px;}
.y1de{bottom:279.472800px;}
.y16c{bottom:279.608400px;}
.y1ba{bottom:280.212300px;}
.y41{bottom:280.360350px;}
.y1f7{bottom:283.423800px;}
.y80{bottom:286.702350px;}
.yc5{bottom:287.406300px;}
.y146{bottom:288.496350px;}
.y62{bottom:288.574350px;}
.y1b{bottom:291.349200px;}
.ya2{bottom:293.214300px;}
.yeb{bottom:296.492700px;}
.y12e{bottom:297.666300px;}
.y191{bottom:298.800900px;}
.y10e{bottom:298.806300px;}
.y1dd{bottom:298.975800px;}
.y16b{bottom:299.111400px;}
.y1b9{bottom:299.863800px;}
.y40{bottom:301.654350px;}
.y1f6{bottom:303.372300px;}
.yc4{bottom:307.962300px;}
.y7f{bottom:308.158350px;}
.y145{bottom:309.502350px;}
.y61{bottom:309.580350px;}
.y1a{bottom:310.703700px;}
.ya1{bottom:314.364300px;}
.yea{bottom:317.786700px;}
.y1dc{bottom:318.478800px;}
.y190{bottom:318.600900px;}
.y16a{bottom:318.614400px;}
.y12d{bottom:318.672300px;}
.y1b8{bottom:319.515300px;}
.y10d{bottom:319.650300px;}
.y3f{bottom:322.948350px;}
.y1f5{bottom:323.320800px;}
.yc3{bottom:328.518300px;}
.y7e{bottom:329.614350px;}
.y19{bottom:330.058200px;}
.y144{bottom:330.508350px;}
.y60{bottom:330.586350px;}
.ya0{bottom:335.514300px;}
.y1db{bottom:337.981800px;}
.y169{bottom:338.117400px;}
.y18f{bottom:338.400900px;}
.ye9{bottom:339.080700px;}
.y1b7{bottom:339.166800px;}
.y12c{bottom:339.678300px;}
.y10c{bottom:340.494300px;}
.y1f4{bottom:343.269300px;}
.y3e{bottom:344.242350px;}
.yc2{bottom:349.074300px;}
.y18{bottom:349.412700px;}
.y7d{bottom:350.908350px;}
.y143{bottom:351.514350px;}
.y5f{bottom:351.592350px;}
.y9f{bottom:356.664300px;}
.y1da{bottom:357.484800px;}
.y168{bottom:357.620400px;}
.y18e{bottom:358.200900px;}
.y1b6{bottom:358.818300px;}
.ye8{bottom:360.374700px;}
.y12b{bottom:360.684300px;}
.y10b{bottom:361.338300px;}
.y1f3{bottom:363.217800px;}
.y3d{bottom:365.536350px;}
.y17{bottom:368.767200px;}
.yc1{bottom:369.630300px;}
.y7c{bottom:372.202350px;}
.y142{bottom:372.520350px;}
.y5e{bottom:372.598350px;}
.y1d9{bottom:376.987800px;}
.y167{bottom:377.123400px;}
.y9e{bottom:377.814300px;}
.y18d{bottom:378.000900px;}
.y1b5{bottom:378.469800px;}
.ye7{bottom:381.668700px;}
.y12a{bottom:381.690300px;}
.y10a{bottom:382.182300px;}
.y1f2{bottom:383.166300px;}
.y3c{bottom:386.830350px;}
.y16{bottom:388.121700px;}
.yc0{bottom:390.186300px;}
.y7b{bottom:393.496350px;}
.y141{bottom:393.526350px;}
.y5d{bottom:393.604350px;}
.y1d8{bottom:396.490800px;}
.y166{bottom:396.626400px;}
.y18c{bottom:397.800900px;}
.y1b4{bottom:398.121300px;}
.y9d{bottom:398.964300px;}
.y129{bottom:402.696300px;}
.ye6{bottom:402.962700px;}
.y109{bottom:403.026300px;}
.y1f1{bottom:403.114800px;}
.y15{bottom:407.476200px;}
.y3b{bottom:408.124350px;}
.ybf{bottom:410.742300px;}
.y5c{bottom:414.526350px;}
.y140{bottom:414.532350px;}
.y7a{bottom:414.790350px;}
.y1d7{bottom:415.993800px;}
.y165{bottom:416.129400px;}
.y18b{bottom:417.600900px;}
.y1b3{bottom:417.772800px;}
.y9c{bottom:420.114300px;}
.y1f0{bottom:423.063300px;}
.y128{bottom:423.702300px;}
.y108{bottom:423.870300px;}
.ye5{bottom:424.256700px;}
.y14{bottom:426.830700px;}
.y3a{bottom:429.418350px;}
.ybe{bottom:431.298300px;}
.y1d6{bottom:435.496800px;}
.y5b{bottom:435.532350px;}
.y13f{bottom:435.538350px;}
.y164{bottom:435.780900px;}
.y79{bottom:436.084350px;}
.y18a{bottom:437.400900px;}
.y1b2{bottom:437.424300px;}
.y9b{bottom:441.264300px;}
.y1ef{bottom:443.011800px;}
.y127{bottom:444.708300px;}
.y107{bottom:444.720300px;}
.ye4{bottom:445.550700px;}
.y39{bottom:450.712350px;}
.ybd{bottom:451.854300px;}
.y13{bottom:454.684650px;}
.y1d5{bottom:454.999800px;}
.y163{bottom:455.432400px;}
.y5a{bottom:456.538350px;}
.y13e{bottom:456.544350px;}
.y1b1{bottom:457.075800px;}
.y189{bottom:457.200900px;}
.y78{bottom:457.378350px;}
.y9a{bottom:462.414300px;}
.y106{bottom:465.564300px;}
.y126{bottom:465.702300px;}
.ye3{bottom:466.844700px;}
.y38{bottom:472.006350px;}
.ybc{bottom:472.410300px;}
.y1d4{bottom:474.502800px;}
.y162{bottom:475.083900px;}
.y1b0{bottom:476.727300px;}
.y188{bottom:477.000900px;}
.y59{bottom:477.544350px;}
.y13d{bottom:477.550350px;}
.y77{bottom:478.672350px;}
.y1ee{bottom:481.111800px;}
.y99{bottom:483.564300px;}
.y125{bottom:486.708300px;}
.ye2{bottom:488.138700px;}
.ybb{bottom:492.966300px;}
.y37{bottom:493.300350px;}
.y1d3{bottom:494.005800px;}
.y161{bottom:494.735400px;}
.y1af{bottom:496.378800px;}
.y187{bottom:496.800900px;}
.y58{bottom:498.550350px;}
.y13c{bottom:498.556350px;}
.y76{bottom:499.966350px;}
.y105{bottom:501.264300px;}
.y98{bottom:504.714300px;}
.y12{bottom:504.848100px;}
.y124{bottom:507.594300px;}
.ye1{bottom:509.432700px;}
.y1d2{bottom:513.508800px;}
.yba{bottom:513.522300px;}
.y160{bottom:514.386900px;}
.y36{bottom:514.594350px;}
.y1ae{bottom:516.030300px;}
.y186{bottom:516.600900px;}
.y1ed{bottom:519.061800px;}
.y57{bottom:519.556350px;}
.y13b{bottom:519.562350px;}
.y75{bottom:521.272350px;}
.y11{bottom:524.202600px;}
.y97{bottom:525.864300px;}
.y123{bottom:528.600300px;}
.ye0{bottom:530.726700px;}
.y1d1{bottom:533.011800px;}
.y15f{bottom:534.038400px;}
.yb9{bottom:534.078300px;}
.y1ad{bottom:535.681800px;}
.y35{bottom:535.888350px;}
.y185{bottom:536.400900px;}
.y56{bottom:540.562350px;}
.y13a{bottom:540.568350px;}
.y1ec{bottom:540.661800px;}
.y74{bottom:542.566350px;}
.y10{bottom:543.557100px;}
.y96{bottom:547.014300px;}
.y122{bottom:549.606300px;}
.ydf{bottom:552.020700px;}
.y104{bottom:552.498300px;}
.y15e{bottom:553.689900px;}
.yb8{bottom:554.634300px;}
.y1ac{bottom:555.333300px;}
.y184{bottom:555.903900px;}
.y34{bottom:557.182350px;}
.y55{bottom:561.568350px;}
.y139{bottom:561.574350px;}
.y1eb{bottom:562.261800px;}
.yf{bottom:562.911600px;}
.y73{bottom:563.860350px;}
.y95{bottom:568.164300px;}
.y1d0{bottom:570.211800px;}
.y121{bottom:570.612300px;}
.yde{bottom:573.314700px;}
.y15d{bottom:573.341400px;}
.y103{bottom:573.342300px;}
.y1ab{bottom:574.984800px;}
.yb7{bottom:575.190300px;}
.y183{bottom:575.703900px;}
.y33{bottom:578.476350px;}
.ye{bottom:582.266100px;}
.y54{bottom:582.574350px;}
.y138{bottom:582.580350px;}
.y94{bottom:589.314300px;}
.y120{bottom:591.618300px;}
.y15c{bottom:592.992900px;}
.y102{bottom:594.186300px;}
.ydd{bottom:594.608700px;}
.y1aa{bottom:594.636300px;}
.y182{bottom:595.503900px;}
.yb6{bottom:595.746300px;}
.y32{bottom:599.770350px;}
.y72{bottom:600.460350px;}
.yd{bottom:601.620600px;}
.y53{bottom:603.580350px;}
.y137{bottom:603.586350px;}
.y1cf{bottom:607.717800px;}
.y93{bottom:610.464300px;}
.y11f{bottom:612.624300px;}
.y15b{bottom:612.644400px;}
.y1a9{bottom:614.287800px;}
.y101{bottom:615.030300px;}
.y181{bottom:615.303900px;}
.ydc{bottom:615.902700px;}
.yb5{bottom:616.302300px;}
.yc{bottom:620.975100px;}
.y31{bottom:621.064350px;}
.y1ea{bottom:621.961800px;}
.y52{bottom:624.586350px;}
.y136{bottom:624.592350px;}
.y1ce{bottom:629.011800px;}
.y92{bottom:631.614300px;}
.y15a{bottom:632.295900px;}
.y11e{bottom:633.630300px;}
.y1a8{bottom:633.939300px;}
.y100{bottom:635.874300px;}
.yb4{bottom:636.858300px;}
.ydb{bottom:637.196700px;}
.y202{bottom:639.511800px;}
.y1e9{bottom:639.811800px;}
.yb{bottom:640.329600px;}
.y30{bottom:642.358350px;}
.y180{bottom:643.608000px;}
.y51{bottom:645.592350px;}
.y135{bottom:645.598350px;}
.y1cd{bottom:650.311800px;}
.y159{bottom:651.947400px;}
.y91{bottom:652.764300px;}
.y71{bottom:652.996350px;}
.y1a7{bottom:653.590800px;}
.y11d{bottom:654.636300px;}
.yff{bottom:656.718300px;}
.yb3{bottom:657.414300px;}
.y201{bottom:657.511800px;}
.y1e8{bottom:657.661800px;}
.yda{bottom:658.490700px;}
.ya{bottom:659.684100px;}
.y2f{bottom:663.652350px;}
.y50{bottom:666.598350px;}
.y134{bottom:666.604350px;}
.y158{bottom:671.598900px;}
.y1a6{bottom:673.242300px;}
.y90{bottom:673.914300px;}
.y70{bottom:674.290350px;}
.y1e7{bottom:675.511800px;}
.y11c{bottom:675.642300px;}
.yfe{bottom:677.562300px;}
.y9{bottom:679.038600px;}
.yd9{bottom:679.784700px;}
.y2e{bottom:684.946350px;}
.y4f{bottom:687.604350px;}
.y133{bottom:687.610350px;}
.y17f{bottom:691.111800px;}
.y157{bottom:691.250400px;}
.yb2{bottom:692.514300px;}
.y1a5{bottom:692.893800px;}
.y200{bottom:693.511800px;}
.y8f{bottom:695.064300px;}
.y6f{bottom:695.584350px;}
.y11b{bottom:696.648300px;}
.yfd{bottom:698.406300px;}
.yd8{bottom:701.078700px;}
.y2d{bottom:706.240350px;}
.y8{bottom:706.892550px;}
.y4e{bottom:708.592350px;}
.y1cc{bottom:709.411050px;}
.y156{bottom:710.901900px;}
.y17e{bottom:710.911800px;}
.y1a4{bottom:712.545300px;}
.y1e6{bottom:714.211800px;}
.y8e{bottom:716.214300px;}
.y6e{bottom:716.878350px;}
.y132{bottom:717.114300px;}
.y11a{bottom:717.654300px;}
.yfc{bottom:719.250300px;}
.yd7{bottom:722.372700px;}
.y1cb{bottom:726.211800px;}
.y2c{bottom:727.534350px;}
.y4d{bottom:729.598350px;}
.y155{bottom:730.553400px;}
.y17d{bottom:730.711800px;}
.y1a3{bottom:732.196800px;}
.y1ff{bottom:732.511800px;}
.y8d{bottom:737.364300px;}
.y6d{bottom:738.172350px;}
.y119{bottom:738.660300px;}
.yfb{bottom:740.094300px;}
.yb1{bottom:742.710300px;}
.yd6{bottom:743.666700px;}
.y2b{bottom:748.828350px;}
.y154{bottom:750.204900px;}
.y17c{bottom:750.511800px;}
.y4c{bottom:750.604350px;}
.y1a2{bottom:751.848300px;}
.y1ca{bottom:753.184800px;}
.y8c{bottom:758.514300px;}
.y6c{bottom:759.466350px;}
.y118{bottom:759.666300px;}
.yfa{bottom:760.938300px;}
.yb0{bottom:763.266300px;}
.y7{bottom:764.746500px;}
.yd5{bottom:764.960700px;}
.y153{bottom:769.856400px;}
.y2a{bottom:770.122350px;}
.y17b{bottom:770.311800px;}
.y1a1{bottom:771.499800px;}
.y4b{bottom:771.610350px;}
.y1c9{bottom:772.687800px;}
.y8b{bottom:779.664300px;}
.y117{bottom:780.672300px;}
.y6b{bottom:780.760350px;}
.yf9{bottom:781.782300px;}
.yaf{bottom:783.822300px;}
.yd4{bottom:786.254700px;}
.y17a{bottom:790.111800px;}
.y1a0{bottom:791.151300px;}
.y29{bottom:791.416350px;}
.y1c8{bottom:792.190800px;}
.y152{bottom:798.010350px;}
.y6{bottom:800.139000px;}
.y8a{bottom:800.814300px;}
.y4a{bottom:801.114300px;}
.y116{bottom:801.678300px;}
.yf8{bottom:802.626300px;}
.yae{bottom:804.378300px;}
.y179{bottom:809.911800px;}
.y6a{bottom:810.564300px;}
.y19f{bottom:810.802800px;}
.y1c7{bottom:811.693800px;}
.y28{bottom:812.722350px;}
.yd3{bottom:820.346700px;}
.y89{bottom:821.964300px;}
.y115{bottom:822.684300px;}
.yf7{bottom:823.470300px;}
.yad{bottom:824.934300px;}
.y178{bottom:829.711800px;}
.y5{bottom:829.846500px;}
.y19e{bottom:830.454300px;}
.y1c6{bottom:831.196800px;}
.y27{bottom:834.016350px;}
.yd2{bottom:838.490700px;}
.y88{bottom:843.114300px;}
.y114{bottom:843.690300px;}
.yf6{bottom:844.338300px;}
.y151{bottom:844.914300px;}
.yac{bottom:845.490300px;}
.y177{bottom:849.511800px;}
.y19d{bottom:850.105800px;}
.y1c5{bottom:850.699800px;}
.y26{bottom:855.322350px;}
.yd1{bottom:856.634700px;}
.y69{bottom:863.346300px;}
.y87{bottom:864.264300px;}
.y49{bottom:864.696300px;}
.yf5{bottom:865.182300px;}
.y150{bottom:865.614300px;}
.yab{bottom:866.046300px;}
.y176{bottom:869.311800px;}
.y19c{bottom:869.757300px;}
.y1c4{bottom:870.202800px;}
.yd0{bottom:874.778700px;}
.y25{bottom:876.616350px;}
.y4{bottom:884.206800px;}
.y68{bottom:884.802300px;}
.y86{bottom:885.414300px;}
.y48{bottom:885.702300px;}
.yf4{bottom:886.026300px;}
.y14f{bottom:886.314300px;}
.yaa{bottom:886.602300px;}
.y175{bottom:889.111800px;}
.y19b{bottom:889.408800px;}
.y1c3{bottom:889.705800px;}
.ycf{bottom:892.922700px;}
.y24{bottom:897.910350px;}
.y67{bottom:906.258300px;}
.y85{bottom:906.564300px;}
.y47{bottom:906.708300px;}
.yf3{bottom:906.870300px;}
.y14e{bottom:907.014300px;}
.ya9{bottom:907.158300px;}
.y174{bottom:908.911800px;}
.y19a{bottom:909.060300px;}
.y1c2{bottom:909.208800px;}
.y3{bottom:910.711800px;}
.yce{bottom:911.066700px;}
.y23{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.ycd{bottom:929.210700px;}
.hf{height:26.199902px;}
.ha{height:30.568359px;}
.h2{height:35.663086px;}
.h3{height:40.757812px;}
.h9{height:47.988281px;}
.hb{height:48.399902px;}
.h5{height:50.947266px;}
.h10{height:53.494629px;}
.h4{height:56.041992px;}
.h8{height:61.136719px;}
.hd{height:61.208719px;}
.h13{height:61.616719px;}
.h11{height:63.226031px;}
.hc{height:63.274031px;}
.h12{height:63.298031px;}
.h14{height:63.370031px;}
.he{height:63.658031px;}
.h6{height:86.610352px;}
.h7{height:89.736211px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x5{left:97.795200px;}
.x7{left:119.047650px;}
.xa{left:140.307150px;}
.x6{left:143.170350px;}
.x8{left:176.012700px;}
.xd{left:178.853250px;}
.x1{left:183.512700px;}
.x4{left:239.737800px;}
.xe{left:260.997600px;}
.x9{left:294.722700px;}
.x2{left:302.222700px;}
.xc{left:531.240300px;}
.xb{left:540.203550px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v4{vertical-align:23.637333pt;}
.v1{vertical-align:33.573333pt;}
.ls13{letter-spacing:-6.400000pt;}
.ls58{letter-spacing:-5.866667pt;}
.ls48{letter-spacing:-4.693333pt;}
.ls2e{letter-spacing:-3.392000pt;}
.ls57{letter-spacing:-2.288000pt;}
.ls24{letter-spacing:-1.344000pt;}
.ls23{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-1.088000pt;}
.ls36{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.938667pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls56{letter-spacing:-0.880000pt;}
.ls54{letter-spacing:-0.821333pt;}
.ls35{letter-spacing:-0.768000pt;}
.ls31{letter-spacing:-0.704000pt;}
.ls5c{letter-spacing:-0.645333pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls5d{letter-spacing:-0.528000pt;}
.ls49{letter-spacing:-0.469333pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls43{letter-spacing:-0.410667pt;}
.ls2c{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.293333pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.234667pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.176000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls2d{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.011200pt;}
.ls7{letter-spacing:0.058667pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls3b{letter-spacing:0.117333pt;}
.lsb{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.230400pt;}
.ls5b{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.352000pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.528000pt;}
.ls2f{letter-spacing:0.560000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls3f{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.645333pt;}
.lsf{letter-spacing:0.704000pt;}
.ls4b{letter-spacing:0.762667pt;}
.ls20{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.832000pt;}
.ls33{letter-spacing:0.896000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls37{letter-spacing:1.232000pt;}
.ls59{letter-spacing:1.578133pt;}
.ls16{letter-spacing:1.682667pt;}
.ls22{letter-spacing:3.200000pt;}
.ls30{letter-spacing:3.724000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls21{letter-spacing:3.942400pt;}
.ls1d{letter-spacing:4.672000pt;}
.ls4d{letter-spacing:4.869333pt;}
.ls3{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls29{letter-spacing:6.144000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:8.134400pt;}
.ls4c{letter-spacing:8.917333pt;}
.ls2{letter-spacing:9.066667pt;}
.ls3d{letter-spacing:9.152000pt;}
.ls42{letter-spacing:9.269333pt;}
.ls53{letter-spacing:9.386667pt;}
.ls41{letter-spacing:9.562667pt;}
.ls4e{letter-spacing:9.621333pt;}
.ls40{letter-spacing:9.680000pt;}
.ls3c{letter-spacing:9.738667pt;}
.ls50{letter-spacing:9.856000pt;}
.ls51{letter-spacing:10.090667pt;}
.ls4f{letter-spacing:10.266667pt;}
.ls3e{letter-spacing:10.384000pt;}
.ls4a{letter-spacing:10.501333pt;}
.ls5a{letter-spacing:17.600000pt;}
.ls32{letter-spacing:34.598400pt;}
.ws5d{word-spacing:-34.085333pt;}
.ws0{word-spacing:-24.384000pt;}
.ws3b{word-spacing:-20.320000pt;}
.ws31{word-spacing:-17.984000pt;}
.ws21{word-spacing:-17.664000pt;}
.ws60{word-spacing:-17.600000pt;}
.ws35{word-spacing:-17.536000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws19{word-spacing:-15.232000pt;}
.wsc{word-spacing:-14.986667pt;}
.ws20{word-spacing:-14.528000pt;}
.ws3c{word-spacing:-14.490667pt;}
.ws33{word-spacing:-14.237333pt;}
.ws2f{word-spacing:-12.416000pt;}
.ws36{word-spacing:-10.982400pt;}
.wse{word-spacing:-10.790400pt;}
.ws4f{word-spacing:-10.501333pt;}
.ws47{word-spacing:-10.384000pt;}
.ws57{word-spacing:-10.266667pt;}
.ws5a{word-spacing:-10.090667pt;}
.ws58{word-spacing:-9.856000pt;}
.ws42{word-spacing:-9.797333pt;}
.ws44{word-spacing:-9.738667pt;}
.ws4a{word-spacing:-9.680000pt;}
.ws56{word-spacing:-9.621333pt;}
.ws4c{word-spacing:-9.562667pt;}
.ws5c{word-spacing:-9.386667pt;}
.ws45{word-spacing:-9.152000pt;}
.ws5{word-spacing:-9.066667pt;}
.ws51{word-spacing:-8.917333pt;}
.wsf{word-spacing:-6.400000pt;}
.ws2a{word-spacing:-6.144000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws6{word-spacing:-5.333333pt;}
.ws1{word-spacing:-3.733333pt;}
.ws24{word-spacing:-3.200000pt;}
.ws30{word-spacing:-3.136000pt;}
.ws5f{word-spacing:-2.874667pt;}
.ws41{word-spacing:-1.232000pt;}
.ws1e{word-spacing:-0.960000pt;}
.ws37{word-spacing:-0.896000pt;}
.ws14{word-spacing:-0.832000pt;}
.ws23{word-spacing:-0.768000pt;}
.ws50{word-spacing:-0.762667pt;}
.ws15{word-spacing:-0.704000pt;}
.ws48{word-spacing:-0.645333pt;}
.ws11{word-spacing:-0.640000pt;}
.ws49{word-spacing:-0.586667pt;}
.ws12{word-spacing:-0.576000pt;}
.ws32{word-spacing:-0.560000pt;}
.ws8{word-spacing:-0.528000pt;}
.ws13{word-spacing:-0.512000pt;}
.ws7{word-spacing:-0.469333pt;}
.ws29{word-spacing:-0.448000pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.352000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws5e{word-spacing:-0.234667pt;}
.ws17{word-spacing:-0.192000pt;}
.ws3d{word-spacing:-0.176000pt;}
.ws10{word-spacing:-0.128000pt;}
.ws40{word-spacing:-0.117333pt;}
.ws2e{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.058667pt;}
.ws2d{word-spacing:0.064000pt;}
.ws9{word-spacing:0.117333pt;}
.ws1b{word-spacing:0.128000pt;}
.ws4d{word-spacing:0.176000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws3f{word-spacing:0.234667pt;}
.ws1f{word-spacing:0.256000pt;}
.ws3e{word-spacing:0.293333pt;}
.ws28{word-spacing:0.320000pt;}
.wsa{word-spacing:0.352000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws43{word-spacing:0.410667pt;}
.ws27{word-spacing:0.448000pt;}
.ws4e{word-spacing:0.469333pt;}
.ws62{word-spacing:0.528000pt;}
.ws1d{word-spacing:0.576000pt;}
.ws46{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.640000pt;}
.ws61{word-spacing:0.645333pt;}
.ws34{word-spacing:0.704000pt;}
.ws39{word-spacing:0.768000pt;}
.ws52{word-spacing:0.821333pt;}
.ws54{word-spacing:0.880000pt;}
.ws38{word-spacing:0.896000pt;}
.ws53{word-spacing:0.938667pt;}
.ws3a{word-spacing:0.960000pt;}
.ws26{word-spacing:1.088000pt;}
.ws25{word-spacing:1.344000pt;}
.ws55{word-spacing:2.288000pt;}
.ws3{word-spacing:3.626667pt;}
.ws59{word-spacing:5.866667pt;}
.ws18{word-spacing:6.400000pt;}
._9{margin-left:-18.979733pt;}
._14{margin-left:-17.552000pt;}
._12{margin-left:-13.017067pt;}
._19{margin-left:-12.085333pt;}
._13{margin-left:-10.736000pt;}
._7{margin-left:-9.338667pt;}
._1b{margin-left:-7.849600pt;}
._b{margin-left:-6.800000pt;}
._5{margin-left:-5.060267pt;}
._e{margin-left:-3.923733pt;}
._1{margin-left:-2.796267pt;}
._0{margin-left:-1.093867pt;}
._d{width:1.478400pt;}
._3{width:2.382400pt;}
._4{width:3.422933pt;}
._c{width:5.108267pt;}
._2{width:6.369067pt;}
._f{width:8.059200pt;}
._a{width:9.066667pt;}
._6{width:10.002667pt;}
._11{width:10.912000pt;}
._15{width:11.947733pt;}
._17{width:13.297600pt;}
._1a{width:14.432000pt;}
._8{width:15.458667pt;}
._18{width:17.512000pt;}
._16{width:18.773333pt;}
._10{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:54.400000pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y22{bottom:124.721733pt;}
.y46{bottom:124.723067pt;}
.y199{bottom:124.800800pt;}
.y14d{bottom:125.737200pt;}
.y1c1{bottom:126.801600pt;}
.y1e5{bottom:127.068267pt;}
.y173{bottom:127.188800pt;}
.ycc{bottom:127.568267pt;}
.y1fe{bottom:127.808267pt;}
.ya8{bottom:129.657733pt;}
.yf2{bottom:131.053067pt;}
.y21{bottom:139.389733pt;}
.y198{bottom:142.400800pt;}
.y1c0{bottom:144.269600pt;}
.y45{bottom:144.324400pt;}
.y1e4{bottom:144.404267pt;}
.y14c{bottom:144.409200pt;}
.y172{bottom:144.524800pt;}
.y1fd{bottom:145.540267pt;}
.ycb{bottom:145.840267pt;}
.yf1{bottom:149.981067pt;}
.y113{bottom:154.056400pt;}
.y20{bottom:158.991067pt;}
.y197{bottom:160.000800pt;}
.y1bf{bottom:161.737600pt;}
.y1e3{bottom:161.740267pt;}
.y171{bottom:161.860800pt;}
.y14b{bottom:163.081200pt;}
.y1fc{bottom:163.272267pt;}
.yca{bottom:164.112267pt;}
.ya7{bottom:166.634933pt;}
.yf0{bottom:168.909067pt;}
.y112{bottom:173.657733pt;}
.y196{bottom:177.600800pt;}
.y84{bottom:178.558533pt;}
.y1e2{bottom:179.076267pt;}
.y170{bottom:179.196800pt;}
.y1be{bottom:179.205600pt;}
.y1fb{bottom:181.004267pt;}
.y14a{bottom:181.753200pt;}
.y66{bottom:181.822533pt;}
.yc9{bottom:182.384267pt;}
.ya6{bottom:185.434933pt;}
.yef{bottom:187.837067pt;}
.y1f{bottom:190.161067pt;}
.y44{bottom:192.553200pt;}
.y195{bottom:195.200800pt;}
.y1e1{bottom:196.412267pt;}
.y16f{bottom:196.532800pt;}
.y1bd{bottom:196.673600pt;}
.y83{bottom:197.630533pt;}
.y1fa{bottom:198.736267pt;}
.y149{bottom:200.425200pt;}
.y65{bottom:200.494533pt;}
.yc8{bottom:200.656267pt;}
.ya5{bottom:204.234933pt;}
.yee{bottom:206.765067pt;}
.y1e{bottom:207.365067pt;}
.y131{bottom:208.576267pt;}
.y111{bottom:209.877600pt;}
.y43{bottom:211.353200pt;}
.y194{bottom:212.800800pt;}
.y1e0{bottom:213.748267pt;}
.y16e{bottom:213.868800pt;}
.y1bc{bottom:214.141600pt;}
.y1f9{bottom:216.468267pt;}
.y82{bottom:216.702533pt;}
.yc7{bottom:218.928267pt;}
.y148{bottom:219.097200pt;}
.y64{bottom:219.166533pt;}
.ya4{bottom:223.034933pt;}
.y1d{bottom:224.569067pt;}
.yed{bottom:225.693067pt;}
.y130{bottom:227.248267pt;}
.y110{bottom:228.549600pt;}
.y42{bottom:230.281200pt;}
.y193{bottom:230.400800pt;}
.y1df{bottom:231.084267pt;}
.y16d{bottom:231.204800pt;}
.y1bb{bottom:231.609600pt;}
.y1f8{bottom:234.200267pt;}
.y81{bottom:235.774533pt;}
.yc6{bottom:237.200267pt;}
.y147{bottom:237.769200pt;}
.y63{bottom:237.838533pt;}
.y1c{bottom:241.773067pt;}
.ya3{bottom:241.834933pt;}
.yec{bottom:244.621067pt;}
.y12f{bottom:245.920267pt;}
.y10f{bottom:247.077600pt;}
.y192{bottom:248.000800pt;}
.y1de{bottom:248.420267pt;}
.y16c{bottom:248.540800pt;}
.y1ba{bottom:249.077600pt;}
.y41{bottom:249.209200pt;}
.y1f7{bottom:251.932267pt;}
.y80{bottom:254.846533pt;}
.yc5{bottom:255.472267pt;}
.y146{bottom:256.441200pt;}
.y62{bottom:256.510533pt;}
.y1b{bottom:258.977067pt;}
.ya2{bottom:260.634933pt;}
.yeb{bottom:263.549067pt;}
.y12e{bottom:264.592267pt;}
.y191{bottom:265.600800pt;}
.y10e{bottom:265.605600pt;}
.y1dd{bottom:265.756267pt;}
.y16b{bottom:265.876800pt;}
.y1b9{bottom:266.545600pt;}
.y40{bottom:268.137200pt;}
.y1f6{bottom:269.664267pt;}
.yc4{bottom:273.744267pt;}
.y7f{bottom:273.918533pt;}
.y145{bottom:275.113200pt;}
.y61{bottom:275.182533pt;}
.y1a{bottom:276.181067pt;}
.ya1{bottom:279.434933pt;}
.yea{bottom:282.477067pt;}
.y1dc{bottom:283.092267pt;}
.y190{bottom:283.200800pt;}
.y16a{bottom:283.212800pt;}
.y12d{bottom:283.264267pt;}
.y1b8{bottom:284.013600pt;}
.y10d{bottom:284.133600pt;}
.y3f{bottom:287.065200pt;}
.y1f5{bottom:287.396267pt;}
.yc3{bottom:292.016267pt;}
.y7e{bottom:292.990533pt;}
.y19{bottom:293.385067pt;}
.y144{bottom:293.785200pt;}
.y60{bottom:293.854533pt;}
.ya0{bottom:298.234933pt;}
.y1db{bottom:300.428267pt;}
.y169{bottom:300.548800pt;}
.y18f{bottom:300.800800pt;}
.ye9{bottom:301.405067pt;}
.y1b7{bottom:301.481600pt;}
.y12c{bottom:301.936267pt;}
.y10c{bottom:302.661600pt;}
.y1f4{bottom:305.128267pt;}
.y3e{bottom:305.993200pt;}
.yc2{bottom:310.288267pt;}
.y18{bottom:310.589067pt;}
.y7d{bottom:311.918533pt;}
.y143{bottom:312.457200pt;}
.y5f{bottom:312.526533pt;}
.y9f{bottom:317.034933pt;}
.y1da{bottom:317.764267pt;}
.y168{bottom:317.884800pt;}
.y18e{bottom:318.400800pt;}
.y1b6{bottom:318.949600pt;}
.ye8{bottom:320.333067pt;}
.y12b{bottom:320.608267pt;}
.y10b{bottom:321.189600pt;}
.y1f3{bottom:322.860267pt;}
.y3d{bottom:324.921200pt;}
.y17{bottom:327.793067pt;}
.yc1{bottom:328.560267pt;}
.y7c{bottom:330.846533pt;}
.y142{bottom:331.129200pt;}
.y5e{bottom:331.198533pt;}
.y1d9{bottom:335.100267pt;}
.y167{bottom:335.220800pt;}
.y9e{bottom:335.834933pt;}
.y18d{bottom:336.000800pt;}
.y1b5{bottom:336.417600pt;}
.ye7{bottom:339.261067pt;}
.y12a{bottom:339.280267pt;}
.y10a{bottom:339.717600pt;}
.y1f2{bottom:340.592267pt;}
.y3c{bottom:343.849200pt;}
.y16{bottom:344.997067pt;}
.yc0{bottom:346.832267pt;}
.y7b{bottom:349.774533pt;}
.y141{bottom:349.801200pt;}
.y5d{bottom:349.870533pt;}
.y1d8{bottom:352.436267pt;}
.y166{bottom:352.556800pt;}
.y18c{bottom:353.600800pt;}
.y1b4{bottom:353.885600pt;}
.y9d{bottom:354.634933pt;}
.y129{bottom:357.952267pt;}
.ye6{bottom:358.189067pt;}
.y109{bottom:358.245600pt;}
.y1f1{bottom:358.324267pt;}
.y15{bottom:362.201067pt;}
.y3b{bottom:362.777200pt;}
.ybf{bottom:365.104267pt;}
.y5c{bottom:368.467867pt;}
.y140{bottom:368.473200pt;}
.y7a{bottom:368.702533pt;}
.y1d7{bottom:369.772267pt;}
.y165{bottom:369.892800pt;}
.y18b{bottom:371.200800pt;}
.y1b3{bottom:371.353600pt;}
.y9c{bottom:373.434933pt;}
.y1f0{bottom:376.056267pt;}
.y128{bottom:376.624267pt;}
.y108{bottom:376.773600pt;}
.ye5{bottom:377.117067pt;}
.y14{bottom:379.405067pt;}
.y3a{bottom:381.705200pt;}
.ybe{bottom:383.376267pt;}
.y1d6{bottom:387.108267pt;}
.y5b{bottom:387.139867pt;}
.y13f{bottom:387.145200pt;}
.y164{bottom:387.360800pt;}
.y79{bottom:387.630533pt;}
.y18a{bottom:388.800800pt;}
.y1b2{bottom:388.821600pt;}
.y9b{bottom:392.234933pt;}
.y1ef{bottom:393.788267pt;}
.y127{bottom:395.296267pt;}
.y107{bottom:395.306933pt;}
.ye4{bottom:396.045067pt;}
.y39{bottom:400.633200pt;}
.ybd{bottom:401.648267pt;}
.y13{bottom:404.164133pt;}
.y1d5{bottom:404.444267pt;}
.y163{bottom:404.828800pt;}
.y5a{bottom:405.811867pt;}
.y13e{bottom:405.817200pt;}
.y1b1{bottom:406.289600pt;}
.y189{bottom:406.400800pt;}
.y78{bottom:406.558533pt;}
.y9a{bottom:411.034933pt;}
.y106{bottom:413.834933pt;}
.y126{bottom:413.957600pt;}
.ye3{bottom:414.973067pt;}
.y38{bottom:419.561200pt;}
.ybc{bottom:419.920267pt;}
.y1d4{bottom:421.780267pt;}
.y162{bottom:422.296800pt;}
.y1b0{bottom:423.757600pt;}
.y188{bottom:424.000800pt;}
.y59{bottom:424.483867pt;}
.y13d{bottom:424.489200pt;}
.y77{bottom:425.486533pt;}
.y1ee{bottom:427.654933pt;}
.y99{bottom:429.834933pt;}
.y125{bottom:432.629600pt;}
.ye2{bottom:433.901067pt;}
.ybb{bottom:438.192267pt;}
.y37{bottom:438.489200pt;}
.y1d3{bottom:439.116267pt;}
.y161{bottom:439.764800pt;}
.y1af{bottom:441.225600pt;}
.y187{bottom:441.600800pt;}
.y58{bottom:443.155867pt;}
.y13c{bottom:443.161200pt;}
.y76{bottom:444.414533pt;}
.y105{bottom:445.568267pt;}
.y98{bottom:448.634933pt;}
.y12{bottom:448.753867pt;}
.y124{bottom:451.194933pt;}
.ye1{bottom:452.829067pt;}
.y1d2{bottom:456.452267pt;}
.yba{bottom:456.464267pt;}
.y160{bottom:457.232800pt;}
.y36{bottom:457.417200pt;}
.y1ae{bottom:458.693600pt;}
.y186{bottom:459.200800pt;}
.y1ed{bottom:461.388267pt;}
.y57{bottom:461.827867pt;}
.y13b{bottom:461.833200pt;}
.y75{bottom:463.353200pt;}
.y11{bottom:465.957867pt;}
.y97{bottom:467.434933pt;}
.y123{bottom:469.866933pt;}
.ye0{bottom:471.757067pt;}
.y1d1{bottom:473.788267pt;}
.y15f{bottom:474.700800pt;}
.yb9{bottom:474.736267pt;}
.y1ad{bottom:476.161600pt;}
.y35{bottom:476.345200pt;}
.y185{bottom:476.800800pt;}
.y56{bottom:480.499867pt;}
.y13a{bottom:480.505200pt;}
.y1ec{bottom:480.588267pt;}
.y74{bottom:482.281200pt;}
.y10{bottom:483.161867pt;}
.y96{bottom:486.234933pt;}
.y122{bottom:488.538933pt;}
.ydf{bottom:490.685067pt;}
.y104{bottom:491.109600pt;}
.y15e{bottom:492.168800pt;}
.yb8{bottom:493.008267pt;}
.y1ac{bottom:493.629600pt;}
.y184{bottom:494.136800pt;}
.y34{bottom:495.273200pt;}
.y55{bottom:499.171867pt;}
.y139{bottom:499.177200pt;}
.y1eb{bottom:499.788267pt;}
.yf{bottom:500.365867pt;}
.y73{bottom:501.209200pt;}
.y95{bottom:505.034933pt;}
.y1d0{bottom:506.854933pt;}
.y121{bottom:507.210933pt;}
.yde{bottom:509.613067pt;}
.y15d{bottom:509.636800pt;}
.y103{bottom:509.637600pt;}
.y1ab{bottom:511.097600pt;}
.yb7{bottom:511.280267pt;}
.y183{bottom:511.736800pt;}
.y33{bottom:514.201200pt;}
.ye{bottom:517.569867pt;}
.y54{bottom:517.843867pt;}
.y138{bottom:517.849200pt;}
.y94{bottom:523.834933pt;}
.y120{bottom:525.882933pt;}
.y15c{bottom:527.104800pt;}
.y102{bottom:528.165600pt;}
.ydd{bottom:528.541067pt;}
.y1aa{bottom:528.565600pt;}
.y182{bottom:529.336800pt;}
.yb6{bottom:529.552267pt;}
.y32{bottom:533.129200pt;}
.y72{bottom:533.742533pt;}
.yd{bottom:534.773867pt;}
.y53{bottom:536.515867pt;}
.y137{bottom:536.521200pt;}
.y1cf{bottom:540.193600pt;}
.y93{bottom:542.634933pt;}
.y11f{bottom:544.554933pt;}
.y15b{bottom:544.572800pt;}
.y1a9{bottom:546.033600pt;}
.y101{bottom:546.693600pt;}
.y181{bottom:546.936800pt;}
.ydc{bottom:547.469067pt;}
.yb5{bottom:547.824267pt;}
.yc{bottom:551.977867pt;}
.y31{bottom:552.057200pt;}
.y1ea{bottom:552.854933pt;}
.y52{bottom:555.187867pt;}
.y136{bottom:555.193200pt;}
.y1ce{bottom:559.121600pt;}
.y92{bottom:561.434933pt;}
.y15a{bottom:562.040800pt;}
.y11e{bottom:563.226933pt;}
.y1a8{bottom:563.501600pt;}
.y100{bottom:565.221600pt;}
.yb4{bottom:566.096267pt;}
.ydb{bottom:566.397067pt;}
.y202{bottom:568.454933pt;}
.y1e9{bottom:568.721600pt;}
.yb{bottom:569.181867pt;}
.y30{bottom:570.985200pt;}
.y180{bottom:572.096000pt;}
.y51{bottom:573.859867pt;}
.y135{bottom:573.865200pt;}
.y1cd{bottom:578.054933pt;}
.y159{bottom:579.508800pt;}
.y91{bottom:580.234933pt;}
.y71{bottom:580.441200pt;}
.y1a7{bottom:580.969600pt;}
.y11d{bottom:581.898933pt;}
.yff{bottom:583.749600pt;}
.yb3{bottom:584.368267pt;}
.y201{bottom:584.454933pt;}
.y1e8{bottom:584.588267pt;}
.yda{bottom:585.325067pt;}
.ya{bottom:586.385867pt;}
.y2f{bottom:589.913200pt;}
.y50{bottom:592.531867pt;}
.y134{bottom:592.537200pt;}
.y158{bottom:596.976800pt;}
.y1a6{bottom:598.437600pt;}
.y90{bottom:599.034933pt;}
.y70{bottom:599.369200pt;}
.y1e7{bottom:600.454933pt;}
.y11c{bottom:600.570933pt;}
.yfe{bottom:602.277600pt;}
.y9{bottom:603.589867pt;}
.yd9{bottom:604.253067pt;}
.y2e{bottom:608.841200pt;}
.y4f{bottom:611.203867pt;}
.y133{bottom:611.209200pt;}
.y17f{bottom:614.321600pt;}
.y157{bottom:614.444800pt;}
.yb2{bottom:615.568267pt;}
.y1a5{bottom:615.905600pt;}
.y200{bottom:616.454933pt;}
.y8f{bottom:617.834933pt;}
.y6f{bottom:618.297200pt;}
.y11b{bottom:619.242933pt;}
.yfd{bottom:620.805600pt;}
.yd8{bottom:623.181067pt;}
.y2d{bottom:627.769200pt;}
.y8{bottom:628.348933pt;}
.y4e{bottom:629.859867pt;}
.y1cc{bottom:630.587600pt;}
.y156{bottom:631.912800pt;}
.y17e{bottom:631.921600pt;}
.y1a4{bottom:633.373600pt;}
.y1e6{bottom:634.854933pt;}
.y8e{bottom:636.634933pt;}
.y6e{bottom:637.225200pt;}
.y132{bottom:637.434933pt;}
.y11a{bottom:637.914933pt;}
.yfc{bottom:639.333600pt;}
.yd7{bottom:642.109067pt;}
.y1cb{bottom:645.521600pt;}
.y2c{bottom:646.697200pt;}
.y4d{bottom:648.531867pt;}
.y155{bottom:649.380800pt;}
.y17d{bottom:649.521600pt;}
.y1a3{bottom:650.841600pt;}
.y1ff{bottom:651.121600pt;}
.y8d{bottom:655.434933pt;}
.y6d{bottom:656.153200pt;}
.y119{bottom:656.586933pt;}
.yfb{bottom:657.861600pt;}
.yb1{bottom:660.186933pt;}
.yd6{bottom:661.037067pt;}
.y2b{bottom:665.625200pt;}
.y154{bottom:666.848800pt;}
.y17c{bottom:667.121600pt;}
.y4c{bottom:667.203867pt;}
.y1a2{bottom:668.309600pt;}
.y1ca{bottom:669.497600pt;}
.y8c{bottom:674.234933pt;}
.y6c{bottom:675.081200pt;}
.y118{bottom:675.258933pt;}
.yfa{bottom:676.389600pt;}
.yb0{bottom:678.458933pt;}
.y7{bottom:679.774667pt;}
.yd5{bottom:679.965067pt;}
.y153{bottom:684.316800pt;}
.y2a{bottom:684.553200pt;}
.y17b{bottom:684.721600pt;}
.y1a1{bottom:685.777600pt;}
.y4b{bottom:685.875867pt;}
.y1c9{bottom:686.833600pt;}
.y8b{bottom:693.034933pt;}
.y117{bottom:693.930933pt;}
.y6b{bottom:694.009200pt;}
.yf9{bottom:694.917600pt;}
.yaf{bottom:696.730933pt;}
.yd4{bottom:698.893067pt;}
.y17a{bottom:702.321600pt;}
.y1a0{bottom:703.245600pt;}
.y29{bottom:703.481200pt;}
.y1c8{bottom:704.169600pt;}
.y152{bottom:709.342533pt;}
.y6{bottom:711.234667pt;}
.y8a{bottom:711.834933pt;}
.y4a{bottom:712.101600pt;}
.y116{bottom:712.602933pt;}
.yf8{bottom:713.445600pt;}
.yae{bottom:715.002933pt;}
.y179{bottom:719.921600pt;}
.y6a{bottom:720.501600pt;}
.y19f{bottom:720.713600pt;}
.y1c7{bottom:721.505600pt;}
.y28{bottom:722.419867pt;}
.yd3{bottom:729.197067pt;}
.y89{bottom:730.634933pt;}
.y115{bottom:731.274933pt;}
.yf7{bottom:731.973600pt;}
.yad{bottom:733.274933pt;}
.y178{bottom:737.521600pt;}
.y5{bottom:737.641333pt;}
.y19e{bottom:738.181600pt;}
.y1c6{bottom:738.841600pt;}
.y27{bottom:741.347867pt;}
.yd2{bottom:745.325067pt;}
.y88{bottom:749.434933pt;}
.y114{bottom:749.946933pt;}
.yf6{bottom:750.522933pt;}
.y151{bottom:751.034933pt;}
.yac{bottom:751.546933pt;}
.y177{bottom:755.121600pt;}
.y19d{bottom:755.649600pt;}
.y1c5{bottom:756.177600pt;}
.y26{bottom:760.286533pt;}
.yd1{bottom:761.453067pt;}
.y69{bottom:767.418933pt;}
.y87{bottom:768.234933pt;}
.y49{bottom:768.618933pt;}
.yf5{bottom:769.050933pt;}
.y150{bottom:769.434933pt;}
.yab{bottom:769.818933pt;}
.y176{bottom:772.721600pt;}
.y19c{bottom:773.117600pt;}
.y1c4{bottom:773.513600pt;}
.yd0{bottom:777.581067pt;}
.y25{bottom:779.214533pt;}
.y4{bottom:785.961600pt;}
.y68{bottom:786.490933pt;}
.y86{bottom:787.034933pt;}
.y48{bottom:787.290933pt;}
.yf4{bottom:787.578933pt;}
.y14f{bottom:787.834933pt;}
.yaa{bottom:788.090933pt;}
.y175{bottom:790.321600pt;}
.y19b{bottom:790.585600pt;}
.y1c3{bottom:790.849600pt;}
.ycf{bottom:793.709067pt;}
.y24{bottom:798.142533pt;}
.y67{bottom:805.562933pt;}
.y85{bottom:805.834933pt;}
.y47{bottom:805.962933pt;}
.yf3{bottom:806.106933pt;}
.y14e{bottom:806.234933pt;}
.ya9{bottom:806.362933pt;}
.y174{bottom:807.921600pt;}
.y19a{bottom:808.053600pt;}
.y1c2{bottom:808.185600pt;}
.y3{bottom:809.521600pt;}
.yce{bottom:809.837067pt;}
.y23{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.ycd{bottom:825.965067pt;}
.hf{height:23.288802pt;}
.ha{height:27.171875pt;}
.h2{height:31.700521pt;}
.h3{height:36.229167pt;}
.h9{height:42.656250pt;}
.hb{height:43.022135pt;}
.h5{height:45.286458pt;}
.h10{height:47.550781pt;}
.h4{height:49.815104pt;}
.h8{height:54.343750pt;}
.hd{height:54.407750pt;}
.h13{height:54.770417pt;}
.h11{height:56.200917pt;}
.hc{height:56.243583pt;}
.h12{height:56.264917pt;}
.h14{height:56.328917pt;}
.he{height:56.584917pt;}
.h6{height:76.986979pt;}
.h7{height:79.765521pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x5{left:86.929067pt;}
.x7{left:105.820133pt;}
.xa{left:124.717467pt;}
.x6{left:127.262533pt;}
.x8{left:156.455733pt;}
.xd{left:158.980667pt;}
.x1{left:163.122400pt;}
.x4{left:213.100267pt;}
.xe{left:231.997867pt;}
.x9{left:261.975733pt;}
.x2{left:268.642400pt;}
.xc{left:472.213600pt;}
.xb{left:480.180933pt;}
}




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