
    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_a97e76a8056f99be6187febc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_2d63b77d143ef53956c36f20.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_53ab3e6159593698114c908c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_a7530d512b663dd77ec7bdee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.044000;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_9490e306adc0cf88d900c24c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_c5c569c3456ecaa0bb2b53ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_743aa8f311d2fbe0f42721bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_0bed67d4de9400e9f18a1663.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.989000;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_cc0e3738b36687f48652c487.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.044000;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_58be1ce4c66492cf4230a2a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_0f0b494dda501332ac838880.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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_71ea46a0544e839515727ec7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_deaa95bee5ed8e919009870f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.953000;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_97184179bca537915c6a66fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_140053c43ed0a5d5c946981e.woff2')format("woff");}.fff{font-family:fff;line-height:1.045898;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_80a421a5fedded2940d5dbcb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.031738;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_6580f10fc260b83d7361e4a2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.730469;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_4062339858341a6dd3ed99d3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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_c13c7cb7febf1a55054eab4d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.031738;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_289515d58034646a1807d391.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.032715;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:ff15;src:url('chunks/assets/font_6580f10fc260b83d7361e4a2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.730469;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:ff16;src:url('chunks/assets/font_4062339858341a6dd3ed99d3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.031738;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:ff17;src:url('chunks/assets/font_c13c7cb7febf1a55054eab4d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.031738;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:ff18;src:url('chunks/assets/font_ab973c2c83a9119b33b0d726.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.898926;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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-41.957400px;}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:41.957400px;}
.ls9{letter-spacing:-0.726000px;}
.ls19{letter-spacing:-0.594000px;}
.ls16{letter-spacing:-0.396000px;}
.ls18{letter-spacing:-0.330000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.007800px;}
.ls10{letter-spacing:0.010200px;}
.ls3{letter-spacing:0.019200px;}
.ls8{letter-spacing:0.019800px;}
.ls15{letter-spacing:0.023400px;}
.ls6{letter-spacing:0.024600px;}
.ls2{letter-spacing:0.026400px;}
.lsd{letter-spacing:0.027000px;}
.ls5{letter-spacing:0.028200px;}
.lse{letter-spacing:0.028800px;}
.ls7{letter-spacing:0.031800px;}
.ls14{letter-spacing:0.136800px;}
.ls13{letter-spacing:0.137400px;}
.lsb{letter-spacing:0.384780px;}
.lsa{letter-spacing:0.660000px;}
.ls1{letter-spacing:2.520000px;}
.lsc{letter-spacing:4.659000px;}
.ls17{letter-spacing:4.686000px;}
.ls11{letter-spacing:7.755000px;}
.ls12{letter-spacing:7.755600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(210,32,39),0 0.015em rgb(210,32,39),0.015em 0 rgb(210,32,39),0 -0.015em  rgb(210,32,39);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(210,32,39);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-28.296000px;}
.ws3{word-spacing:-20.788614px;}
.ws4{word-spacing:-16.962000px;}
.ws18{word-spacing:-16.830000px;}
.ws22{word-spacing:-16.434000px;}
.wsc{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.200000px;}
.wsb{word-spacing:-16.170000px;}
.ws1d{word-spacing:-16.038000px;}
.ws1c{word-spacing:-15.972000px;}
.wsf{word-spacing:-15.642000px;}
.wse{word-spacing:-15.594000px;}
.ws1e{word-spacing:-15.576000px;}
.ws5{word-spacing:-15.420000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.880000px;}
.ws19{word-spacing:-14.700000px;}
.ws17{word-spacing:-9.927324px;}
.wsa{word-spacing:-9.542544px;}
.ws7{word-spacing:-8.675040px;}
.ws1f{word-spacing:-4.686000px;}
.ws20{word-spacing:-2.706000px;}
.ws9{word-spacing:-2.592000px;}
.ws1b{word-spacing:-2.508000px;}
.ws14{word-spacing:-1.188000px;}
.ws16{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.264000px;}
.ws10{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws21{word-spacing:0.198000px;}
.wsd{word-spacing:0.462000px;}
.ws11{word-spacing:0.528000px;}
.ws1a{word-spacing:0.792000px;}
.ws12{word-spacing:1.848000px;}
.ws15{word-spacing:3.960000px;}
.ws23{word-spacing:9.174000px;}
._5{margin-left:-22.681200px;}
._c{margin-left:-16.696800px;}
._19{margin-left:-10.690800px;}
._11{margin-left:-9.122400px;}
._2{margin-left:-7.804800px;}
._4{margin-left:-6.241200px;}
._3{margin-left:-5.073600px;}
._1{margin-left:-3.862800px;}
._0{margin-left:-1.990800px;}
._6{width:1.356600px;}
._9{width:2.397600px;}
._b{width:3.475200px;}
._a{width:4.966800px;}
._7{width:6.733800px;}
._8{width:8.694000px;}
._d{width:10.336800px;}
._14{width:11.839200px;}
._e{width:12.843600px;}
._f{width:14.097600px;}
._15{width:15.120600px;}
._1b{width:18.123600px;}
._1c{width:20.248800px;}
._1d{width:21.322200px;}
._17{width:23.253000px;}
._16{width:25.022400px;}
._18{width:26.065200px;}
._1a{width:27.330600px;}
._13{width:29.019000px;}
._12{width:30.209400px;}
._10{width:77.484000px;}
.fc2{color:transparent;}
.fc1{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.980000px;}
.fs9{font-size:38.478000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:73.458000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:114.000000px;}
.fs5{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:45.129900px;}
.y6c{bottom:45.165300px;}
.y69{bottom:97.795200px;}
.y30{bottom:97.795350px;}
.y11f{bottom:99.409200px;}
.ye6{bottom:102.790350px;}
.yf{bottom:109.849650px;}
.y1ca{bottom:111.555750px;}
.y172{bottom:112.335300px;}
.y68{bottom:115.795200px;}
.y2f{bottom:115.795350px;}
.y11e{bottom:119.209200px;}
.y1f5{bottom:120.017100px;}
.y90{bottom:120.790200px;}
.yb3{bottom:120.790350px;}
.ye{bottom:131.449650px;}
.y67{bottom:133.795200px;}
.y2e{bottom:133.795350px;}
.y1c9{bottom:135.607800px;}
.y171{bottom:136.387200px;}
.y11d{bottom:139.009200px;}
.y1f4{bottom:139.817100px;}
.ye5{bottom:142.736700px;}
.y66{bottom:151.795200px;}
.y2d{bottom:151.795350px;}
.y1c8{bottom:155.407800px;}
.y170{bottom:156.187200px;}
.y1f3{bottom:159.617100px;}
.yd6{bottom:160.396500px;}
.ye4{bottom:162.536700px;}
.y13a{bottom:166.788750px;}
.y65{bottom:169.795200px;}
.y2c{bottom:169.795350px;}
.yb2{bottom:173.832750px;}
.y16f{bottom:175.987200px;}
.y1c7{bottom:179.459700px;}
.yd5{bottom:180.196500px;}
.ye3{bottom:182.336850px;}
.y1f2{bottom:183.669000px;}
.y139{bottom:186.588750px;}
.y124{bottom:186.809100px;}
.y64{bottom:187.795200px;}
.y19a{bottom:187.795350px;}
.y4{bottom:188.629200px;}
.y8f{bottom:192.790200px;}
.y2b{bottom:192.790350px;}
.yb1{bottom:193.632900px;}
.y16e{bottom:195.787200px;}
.y1c6{bottom:199.259700px;}
.yd4{bottom:199.996650px;}
.ye2{bottom:202.136700px;}
.y123{bottom:203.309100px;}
.y1f1{bottom:203.469000px;}
.y63{bottom:205.795200px;}
.y199{bottom:205.795350px;}
.y138{bottom:206.388750px;}
.y3{bottom:210.229200px;}
.yb0{bottom:213.432750px;}
.y16d{bottom:215.587200px;}
.y1c5{bottom:219.059700px;}
.yd3{bottom:219.796650px;}
.ye1{bottom:221.936700px;}
.y62{bottom:223.795200px;}
.y137{bottom:226.188750px;}
.y1f0{bottom:227.521050px;}
.y103{bottom:228.790200px;}
.y198{bottom:228.790350px;}
.y2{bottom:231.829200px;}
.yaf{bottom:233.232750px;}
.y16c{bottom:236.287200px;}
.y2a{bottom:237.825000px;}
.ye0{bottom:241.736700px;}
.y61{bottom:241.795200px;}
.y1c4{bottom:243.111600px;}
.yd2{bottom:243.848550px;}
.y136{bottom:245.988750px;}
.y1ef{bottom:251.572950px;}
.y8e{bottom:251.884800px;}
.y16b{bottom:256.987200px;}
.y60{bottom:259.795200px;}
.y1c3{bottom:262.911600px;}
.yd1{bottom:263.648550px;}
.y197{bottom:265.023450px;}
.ydf{bottom:265.788750px;}
.yb8{bottom:268.576800px;}
.y29{bottom:270.380850px;}
.y1ee{bottom:271.372950px;}
.y8d{bottom:271.684800px;}
.y16a{bottom:276.787200px;}
.y5f{bottom:282.790200px;}
.yd0{bottom:283.448550px;}
.yb7{bottom:285.076800px;}
.yde{bottom:285.588750px;}
.y1c2{bottom:286.963650px;}
.y196{bottom:289.075350px;}
.y8c{bottom:291.484800px;}
.y1ed{bottom:295.425000px;}
.y5e{bottom:295.795200px;}
.y169{bottom:296.587200px;}
.yb6{bottom:301.576800px;}
.ycf{bottom:303.248550px;}
.ydd{bottom:305.388750px;}
.y1c1{bottom:311.015550px;}
.y8b{bottom:311.284800px;}
.y195{bottom:313.127400px;}
.y1ec{bottom:315.225000px;}
.y168{bottom:316.387200px;}
.yb5{bottom:318.076800px;}
.y5d{bottom:318.790200px;}
.yce{bottom:323.048550px;}
.ydc{bottom:325.188750px;}
.yb{bottom:326.852550px;}
.y1c0{bottom:330.815550px;}
.y8a{bottom:331.084800px;}
.y5c{bottom:331.795200px;}
.y194{bottom:332.927400px;}
.yb4{bottom:334.576800px;}
.y1eb{bottom:335.025000px;}
.y167{bottom:336.187200px;}
.ycd{bottom:342.848550px;}
.ydb{bottom:344.988750px;}
.y135{bottom:349.240650px;}
.y1bf{bottom:350.615550px;}
.y89{bottom:350.884800px;}
.y193{bottom:352.727400px;}
.y5b{bottom:354.790200px;}
.y166{bottom:355.987200px;}
.y1ea{bottom:359.076900px;}
.ycc{bottom:362.648550px;}
.yda{bottom:364.788750px;}
.y134{bottom:369.040650px;}
.y88{bottom:370.684800px;}
.y1be{bottom:374.667600px;}
.y165{bottom:375.787200px;}
.y192{bottom:376.779300px;}
.y102{bottom:379.004400px;}
.ycb{bottom:382.448550px;}
.y1e9{bottom:383.128950px;}
.yd9{bottom:384.588750px;}
.y133{bottom:388.840650px;}
.y87{bottom:390.484800px;}
.y28{bottom:394.280250px;}
.y1bd{bottom:394.467450px;}
.y101{bottom:398.804400px;}
.y164{bottom:399.839250px;}
.y5a{bottom:403.056450px;}
.y11c{bottom:403.580850px;}
.yd8{bottom:404.388750px;}
.y1e8{bottom:407.180850px;}
.y132{bottom:408.640650px;}
.y86{bottom:410.284800px;}
.y27{bottom:414.080250px;}
.y1bc{bottom:414.267600px;}
.yca{bottom:415.004400px;}
.y100{bottom:418.604400px;}
.y163{bottom:419.639250px;}
.yd{bottom:421.404600px;}
.y59{bottom:422.856450px;}
.y11b{bottom:423.380850px;}
.y191{bottom:424.883250px;}
.y1e7{bottom:426.980850px;}
.y131{bottom:428.440650px;}
.y85{bottom:434.336700px;}
.y1bb{bottom:438.319500px;}
.yff{bottom:438.404550px;}
.y162{bottom:439.439250px;}
.ye9{bottom:440.226450px;}
.y58{bottom:442.656450px;}
.y11a{bottom:443.180850px;}
.y190{bottom:444.683250px;}
.yc9{bottom:446.908350px;}
.y130{bottom:448.240650px;}
.y1e6{bottom:451.032750px;}
.y26{bottom:451.880100px;}
.y84{bottom:454.136700px;}
.ye8{bottom:456.726450px;}
.y1ba{bottom:458.119500px;}
.yfe{bottom:458.204400px;}
.y161{bottom:459.239250px;}
.y57{bottom:462.456450px;}
.ya{bottom:462.528900px;}
.y119{bottom:462.980850px;}
.y18f{bottom:464.483250px;}
.yc8{bottom:466.708350px;}
.y12f{bottom:468.040650px;}
.y25{bottom:469.880100px;}
.y1e5{bottom:470.832750px;}
.ye7{bottom:473.226450px;}
.y83{bottom:473.936700px;}
.y1b9{bottom:477.919500px;}
.yfd{bottom:478.004400px;}
.y160{bottom:479.039250px;}
.y203{bottom:479.336700px;}
.y56{bottom:482.256450px;}
.y118{bottom:482.780850px;}
.y18e{bottom:484.283250px;}
.yc7{bottom:486.508350px;}
.y12e{bottom:487.840650px;}
.y24{bottom:487.880100px;}
.y82{bottom:493.736700px;}
.y1e4{bottom:494.884800px;}
.y9{bottom:494.928900px;}
.yfc{bottom:497.804400px;}
.y15f{bottom:498.839250px;}
.y202{bottom:499.136700px;}
.y1b8{bottom:501.971400px;}
.y117{bottom:502.580850px;}
.y23{bottom:505.880100px;}
.y55{bottom:506.308350px;}
.y12d{bottom:507.640650px;}
.y18d{bottom:508.335300px;}
.y81{bottom:513.536700px;}
.y1e3{bottom:514.684800px;}
.yfb{bottom:517.604400px;}
.y15e{bottom:518.639250px;}
.y1b7{bottom:521.771550px;}
.y116{bottom:522.380850px;}
.y201{bottom:523.188750px;}
.y22{bottom:523.880100px;}
.y54{bottom:526.108350px;}
.y8{bottom:527.328900px;}
.y12c{bottom:527.440650px;}
.y18c{bottom:528.135300px;}
.y80{bottom:533.336700px;}
.yae{bottom:537.404550px;}
.y15d{bottom:538.439250px;}
.y1e2{bottom:538.736700px;}
.y21{bottom:541.880100px;}
.y200{bottom:542.988750px;}
.y1b6{bottom:545.823450px;}
.y53{bottom:545.908350px;}
.y115{bottom:546.432750px;}
.y12b{bottom:547.240650px;}
.y18b{bottom:547.935300px;}
.y7f{bottom:553.136700px;}
.yad{bottom:557.204400px;}
.y15c{bottom:558.239250px;}
.y20{bottom:559.880100px;}
.yfa{bottom:561.456450px;}
.y1e1{bottom:562.788750px;}
.y1b5{bottom:565.623450px;}
.y52{bottom:565.708350px;}
.y114{bottom:566.232750px;}
.y12a{bottom:567.040650px;}
.y18a{bottom:567.735300px;}
.y7e{bottom:572.936700px;}
.yac{bottom:577.004400px;}
.y1f{bottom:577.880100px;}
.y15b{bottom:578.039250px;}
.yf9{bottom:581.256450px;}
.y1e0{bottom:582.588750px;}
.y51{bottom:585.508350px;}
.y113{bottom:586.032750px;}
.y129{bottom:586.840650px;}
.y189{bottom:587.535300px;}
.y1b4{bottom:589.675350px;}
.y7d{bottom:592.736700px;}
.y1e{bottom:595.880100px;}
.yab{bottom:596.804400px;}
.y15a{bottom:597.839250px;}
.yf8{bottom:601.056450px;}
.y50{bottom:605.308350px;}
.y112{bottom:605.832750px;}
.y128{bottom:606.640650px;}
.y188{bottom:607.335300px;}
.y1b3{bottom:609.475500px;}
.y7c{bottom:612.536700px;}
.y1d{bottom:613.880100px;}
.yaa{bottom:616.604400px;}
.yf7{bottom:620.856450px;}
.y159{bottom:621.891150px;}
.yc{bottom:624.061200px;}
.y4f{bottom:625.108350px;}
.y111{bottom:625.632750px;}
.y127{bottom:626.440650px;}
.y187{bottom:627.135300px;}
.y1b2{bottom:629.275350px;}
.y1df{bottom:630.692700px;}
.y1c{bottom:631.880100px;}
.ya9{bottom:636.404550px;}
.yf6{bottom:640.656450px;}
.y158{bottom:641.691150px;}
.yc6{bottom:644.908350px;}
.y7b{bottom:645.092700px;}
.y126{bottom:646.240650px;}
.y186{bottom:646.935300px;}
.y4e{bottom:649.160400px;}
.y1de{bottom:650.492700px;}
.y1b1{bottom:653.327400px;}
.ya8{bottom:656.204400px;}
.y110{bottom:658.188750px;}
.yf5{bottom:660.456450px;}
.y157{bottom:661.491150px;}
.yc5{bottom:664.708350px;}
.y7a{bottom:664.892700px;}
.y125{bottom:666.040650px;}
.y185{bottom:666.735300px;}
.y4d{bottom:668.960400px;}
.y7{bottom:671.332050px;}
.y1b0{bottom:673.127400px;}
.y1dd{bottom:674.544600px;}
.ya7{bottom:676.004400px;}
.y156{bottom:681.291150px;}
.yc4{bottom:684.508350px;}
.y79{bottom:684.692700px;}
.y4c{bottom:688.760400px;}
.y10f{bottom:690.092700px;}
.y184{bottom:690.787200px;}
.y1b{bottom:691.280250px;}
.y1dc{bottom:694.344600px;}
.ya6{bottom:695.804400px;}
.y1af{bottom:697.179300px;}
.y155{bottom:701.091150px;}
.y13e{bottom:701.309100px;}
.yf4{bottom:704.308350px;}
.y6{bottom:707.332050px;}
.y4b{bottom:708.560400px;}
.y1a{bottom:709.280250px;}
.y10e{bottom:709.892700px;}
.y183{bottom:710.587200px;}
.y1db{bottom:714.144600px;}
.ya5{bottom:715.604400px;}
.y1ae{bottom:716.979300px;}
.y13d{bottom:717.809100px;}
.y1ff{bottom:718.396650px;}
.y154{bottom:720.891150px;}
.yf3{bottom:724.108350px;}
.y19{bottom:727.280250px;}
.y4a{bottom:728.360400px;}
.y10d{bottom:729.692700px;}
.y182{bottom:730.387200px;}
.y78{bottom:732.796650px;}
.y13c{bottom:734.309100px;}
.ya4{bottom:735.404550px;}
.y1da{bottom:738.196650px;}
.y1ad{bottom:741.031350px;}
.y1fe{bottom:742.448550px;}
.y5{bottom:743.332050px;}
.yf2{bottom:743.908350px;}
.y153{bottom:744.943200px;}
.y49{bottom:748.160400px;}
.y10c{bottom:749.492700px;}
.y181{bottom:750.187200px;}
.y13b{bottom:750.809100px;}
.ya3{bottom:755.204400px;}
.y77{bottom:757.748550px;}
.y1d9{bottom:757.996650px;}
.y1ac{bottom:760.831350px;}
.y1fd{bottom:762.248550px;}
.yf1{bottom:763.708350px;}
.y152{bottom:765.643050px;}
.y48{bottom:767.960400px;}
.y10b{bottom:769.292700px;}
.y180{bottom:769.987200px;}
.y18{bottom:770.480100px;}
.yd7{bottom:772.212300px;}
.ya2{bottom:775.004550px;}
.y1ab{bottom:780.631350px;}
.y1d8{bottom:782.048550px;}
.y76{bottom:782.700600px;}
.yf0{bottom:783.508350px;}
.y151{bottom:786.343200px;}
.yc3{bottom:787.760400px;}
.y17f{bottom:789.787200px;}
.y47{bottom:792.012300px;}
.y10a{bottom:793.344600px;}
.ya1{bottom:794.804400px;}
.y1d7{bottom:801.848550px;}
.yef{bottom:803.308350px;}
.y1aa{bottom:804.683250px;}
.y1fc{bottom:806.100450px;}
.y150{bottom:806.143200px;}
.yc2{bottom:807.560400px;}
.y75{bottom:807.652500px;}
.y17{bottom:808.436100px;}
.y17e{bottom:809.587350px;}
.y46{bottom:811.812450px;}
.y109{bottom:813.144600px;}
.ya0{bottom:814.604400px;}
.yee{bottom:823.108500px;}
.y1d6{bottom:825.900450px;}
.y14f{bottom:825.943200px;}
.yc1{bottom:827.360400px;}
.y1a9{bottom:828.735300px;}
.y17d{bottom:829.387200px;}
.y45{bottom:831.612300px;}
.y74{bottom:832.604400px;}
.y108{bottom:832.944600px;}
.y16{bottom:833.636100px;}
.y9f{bottom:838.656450px;}
.yed{bottom:842.908500px;}
.y1d5{bottom:845.700600px;}
.y14e{bottom:845.743050px;}
.yc0{bottom:847.160400px;}
.y1a8{bottom:848.535300px;}
.y44{bottom:851.412300px;}
.y107{bottom:852.744600px;}
.y73{bottom:857.556450px;}
.y9e{bottom:858.456450px;}
.y17c{bottom:861.943200px;}
.y14d{bottom:865.543050px;}
.ybf{bottom:866.960400px;}
.y1a7{bottom:868.335150px;}
.y1d4{bottom:869.752500px;}
.y43{bottom:871.212300px;}
.y106{bottom:872.544600px;}
.y9d{bottom:878.256450px;}
.y14c{bottom:885.343200px;}
.ybe{bottom:886.760400px;}
.y1d3{bottom:889.552500px;}
.y42{bottom:891.012300px;}
.y15{bottom:891.236100px;}
.y105{bottom:892.344600px;}
.y1a6{bottom:892.387200px;}
.y17b{bottom:893.847150px;}
.y9c{bottom:898.056450px;}
.ybd{bottom:906.560400px;}
.y14{bottom:909.236100px;}
.y1d2{bottom:909.352500px;}
.y14b{bottom:909.395100px;}
.y41{bottom:910.812450px;}
.y104{bottom:912.144600px;}
.y1a5{bottom:912.187200px;}
.y17a{bottom:913.647000px;}
.y9b{bottom:917.856450px;}
.yec{bottom:926.360400px;}
.y13{bottom:927.236100px;}
.y1d1{bottom:929.152500px;}
.y14a{bottom:929.195100px;}
.y40{bottom:930.612300px;}
.y179{bottom:933.447000px;}
.y1a4{bottom:936.239250px;}
.y9a{bottom:937.656450px;}
.yeb{bottom:946.160400px;}
.y1fb{bottom:948.952500px;}
.y149{bottom:948.995100px;}
.y72{bottom:950.412300px;}
.y1d0{bottom:953.204550px;}
.y178{bottom:953.247000px;}
.y3f{bottom:954.664350px;}
.y1a3{bottom:956.039250px;}
.y122{bottom:956.734350px;}
.y99{bottom:957.456450px;}
.yea{bottom:965.960400px;}
.y12{bottom:967.488150px;}
.y148{bottom:968.795100px;}
.y71{bottom:970.212300px;}
.y1fa{bottom:973.004550px;}
.y177{bottom:973.047150px;}
.y121{bottom:973.234350px;}
.y3e{bottom:974.464350px;}
.y1cf{bottom:977.256450px;}
.y1a2{bottom:980.091150px;}
.y98{bottom:981.508350px;}
.y147{bottom:988.595100px;}
.y120{bottom:989.734350px;}
.y70{bottom:990.012300px;}
.y1f9{bottom:992.804400px;}
.y176{bottom:992.847150px;}
.y3d{bottom:994.264350px;}
.y1ce{bottom:997.056450px;}
.y1a1{bottom:999.891150px;}
.y97{bottom:1001.308350px;}
.y146{bottom:1008.395100px;}
.y6f{bottom:1009.812450px;}
.y175{bottom:1012.647000px;}
.y3c{bottom:1014.064200px;}
.y1f8{bottom:1016.856450px;}
.y1a0{bottom:1019.691150px;}
.y96{bottom:1021.108500px;}
.y11{bottom:1021.147950px;}
.y145{bottom:1028.195100px;}
.y6e{bottom:1029.612300px;}
.y174{bottom:1032.447000px;}
.y3b{bottom:1033.864350px;}
.y1f7{bottom:1036.656450px;}
.y95{bottom:1040.908500px;}
.y19f{bottom:1043.743050px;}
.y144{bottom:1047.995100px;}
.ybc{bottom:1049.412300px;}
.y173{bottom:1052.247000px;}
.y3a{bottom:1053.664350px;}
.y10{bottom:1058.947950px;}
.y94{bottom:1060.708350px;}
.y19e{bottom:1063.543050px;}
.y1cd{bottom:1064.960400px;}
.ybb{bottom:1069.212300px;}
.y143{bottom:1072.047150px;}
.y39{bottom:1073.464350px;}
.y93{bottom:1080.508350px;}
.y19d{bottom:1083.343200px;}
.y1cc{bottom:1084.760400px;}
.yba{bottom:1089.012300px;}
.y142{bottom:1091.847150px;}
.y38{bottom:1093.264350px;}
.y92{bottom:1100.308350px;}
.y1f6{bottom:1104.560400px;}
.y19c{bottom:1107.395100px;}
.yb9{bottom:1108.812450px;}
.y141{bottom:1111.647000px;}
.y37{bottom:1113.064200px;}
.y91{bottom:1120.108500px;}
.y19b{bottom:1127.195100px;}
.y1cb{bottom:1128.612300px;}
.y140{bottom:1131.447000px;}
.y36{bottom:1132.864350px;}
.y13f{bottom:1151.247000px;}
.y35{bottom:1152.664350px;}
.y1{bottom:1153.541250px;}
.y34{bottom:1195.334700px;}
.y32{bottom:1196.234550px;}
.y6d{bottom:1198.334700px;}
.y6b{bottom:1199.234550px;}
.y31{bottom:1217.834700px;}
.y6a{bottom:1220.834700px;}
.h15{height:28.770000px;}
.h10{height:44.520000px;}
.hf{height:44.820000px;}
.h12{height:48.134766px;}
.h11{height:48.750000px;}
.hd{height:48.972000px;}
.hc{height:49.302000px;}
.h17{height:50.176758px;}
.h14{height:51.231050px;}
.h16{height:51.890625px;}
.h13{height:53.625000px;}
.h3{height:54.738281px;}
.h9{height:57.761719px;}
.he{height:63.084000px;}
.h2{height:67.388672px;}
.h6{height:70.728000px;}
.h8{height:73.920000px;}
.h7{height:81.108000px;}
.h5{height:95.040000px;}
.ha{height:99.162000px;}
.hb{height:99.768846px;}
.h4{height:103.884000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x8{left:97.834350px;}
.x16{left:102.533100px;}
.x1b{left:105.807600px;}
.x1a{left:110.191200px;}
.x1c{left:112.066200px;}
.x13{left:119.055150px;}
.x2b{left:127.559100px;}
.x3{left:130.748100px;}
.x19{left:140.314950px;}
.xe{left:167.896050px;}
.x9{left:169.739100px;}
.x27{left:172.226250px;}
.x20{left:174.695250px;}
.x26{left:176.378400px;}
.x21{left:181.052550px;}
.x28{left:182.238450px;}
.x24{left:189.238050px;}
.x23{left:192.010350px;}
.x2{left:242.905500px;}
.x15{left:263.671800px;}
.x25{left:282.885450px;}
.x22{left:301.151550px;}
.xa{left:327.874200px;}
.xf{left:353.501100px;}
.x6{left:400.122300px;}
.x7{left:406.494300px;}
.x29{left:408.150300px;}
.x10{left:451.211850px;}
.x1d{left:457.766550px;}
.x1e{left:473.246250px;}
.xb{left:478.230600px;}
.x4{left:523.527450px;}
.xd{left:526.592400px;}
.x1f{left:529.488900px;}
.xc{left:539.626950px;}
.x12{left:552.925950px;}
.x11{left:560.920800px;}
.x5{left:591.337950px;}
.x18{left:661.641750px;}
.x14{left:716.493000px;}
.x2a{left:775.078950px;}
.x17{left:783.964650px;}
@media print{
.v2{vertical-align:-37.295467pt;}
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:37.295467pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls19{letter-spacing:-0.528000pt;}
.ls16{letter-spacing:-0.352000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.006933pt;}
.ls10{letter-spacing:0.009067pt;}
.ls3{letter-spacing:0.017067pt;}
.ls8{letter-spacing:0.017600pt;}
.ls15{letter-spacing:0.020800pt;}
.ls6{letter-spacing:0.021867pt;}
.ls2{letter-spacing:0.023467pt;}
.lsd{letter-spacing:0.024000pt;}
.ls5{letter-spacing:0.025067pt;}
.lse{letter-spacing:0.025600pt;}
.ls7{letter-spacing:0.028267pt;}
.ls14{letter-spacing:0.121600pt;}
.ls13{letter-spacing:0.122133pt;}
.lsb{letter-spacing:0.342027pt;}
.lsa{letter-spacing:0.586667pt;}
.ls1{letter-spacing:2.240000pt;}
.lsc{letter-spacing:4.141333pt;}
.ls17{letter-spacing:4.165333pt;}
.ls11{letter-spacing:6.893333pt;}
.ls12{letter-spacing:6.893867pt;}
.ws1{word-spacing:-25.152000pt;}
.ws3{word-spacing:-18.478768pt;}
.ws4{word-spacing:-15.077333pt;}
.ws18{word-spacing:-14.960000pt;}
.ws22{word-spacing:-14.608000pt;}
.wsc{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.400000pt;}
.wsb{word-spacing:-14.373333pt;}
.ws1d{word-spacing:-14.256000pt;}
.ws1c{word-spacing:-14.197333pt;}
.wsf{word-spacing:-13.904000pt;}
.wse{word-spacing:-13.861333pt;}
.ws1e{word-spacing:-13.845333pt;}
.ws5{word-spacing:-13.706667pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.226667pt;}
.ws19{word-spacing:-13.066667pt;}
.ws17{word-spacing:-8.824288pt;}
.wsa{word-spacing:-8.482261pt;}
.ws7{word-spacing:-7.711147pt;}
.ws1f{word-spacing:-4.165333pt;}
.ws20{word-spacing:-2.405333pt;}
.ws9{word-spacing:-2.304000pt;}
.ws1b{word-spacing:-2.229333pt;}
.ws14{word-spacing:-1.056000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.234667pt;}
.ws10{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws21{word-spacing:0.176000pt;}
.wsd{word-spacing:0.410667pt;}
.ws11{word-spacing:0.469333pt;}
.ws1a{word-spacing:0.704000pt;}
.ws12{word-spacing:1.642667pt;}
.ws15{word-spacing:3.520000pt;}
.ws23{word-spacing:8.154667pt;}
._5{margin-left:-20.161067pt;}
._c{margin-left:-14.841600pt;}
._19{margin-left:-9.502933pt;}
._11{margin-left:-8.108800pt;}
._2{margin-left:-6.937600pt;}
._4{margin-left:-5.547733pt;}
._3{margin-left:-4.509867pt;}
._1{margin-left:-3.433600pt;}
._0{margin-left:-1.769600pt;}
._6{width:1.205867pt;}
._9{width:2.131200pt;}
._b{width:3.089067pt;}
._a{width:4.414933pt;}
._7{width:5.985600pt;}
._8{width:7.728000pt;}
._d{width:9.188267pt;}
._14{width:10.523733pt;}
._e{width:11.416533pt;}
._f{width:12.531200pt;}
._15{width:13.440533pt;}
._1b{width:16.109867pt;}
._1c{width:17.998933pt;}
._1d{width:18.953067pt;}
._17{width:20.669333pt;}
._16{width:22.242133pt;}
._18{width:23.169067pt;}
._1a{width:24.293867pt;}
._13{width:25.794667pt;}
._12{width:26.852800pt;}
._10{width:68.874667pt;}
.fsa{font-size:31.093333pt;}
.fs9{font-size:34.202667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:65.296000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:101.333333pt;}
.fs5{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:40.115467pt;}
.y6c{bottom:40.146933pt;}
.y69{bottom:86.929067pt;}
.y30{bottom:86.929200pt;}
.y11f{bottom:88.363733pt;}
.ye6{bottom:91.369200pt;}
.yf{bottom:97.644133pt;}
.y1ca{bottom:99.160667pt;}
.y172{bottom:99.853600pt;}
.y68{bottom:102.929067pt;}
.y2f{bottom:102.929200pt;}
.y11e{bottom:105.963733pt;}
.y1f5{bottom:106.681867pt;}
.y90{bottom:107.369067pt;}
.yb3{bottom:107.369200pt;}
.ye{bottom:116.844133pt;}
.y67{bottom:118.929067pt;}
.y2e{bottom:118.929200pt;}
.y1c9{bottom:120.540267pt;}
.y171{bottom:121.233067pt;}
.y11d{bottom:123.563733pt;}
.y1f4{bottom:124.281867pt;}
.ye5{bottom:126.877067pt;}
.y66{bottom:134.929067pt;}
.y2d{bottom:134.929200pt;}
.y1c8{bottom:138.140267pt;}
.y170{bottom:138.833067pt;}
.y1f3{bottom:141.881867pt;}
.yd6{bottom:142.574667pt;}
.ye4{bottom:144.477067pt;}
.y13a{bottom:148.256667pt;}
.y65{bottom:150.929067pt;}
.y2c{bottom:150.929200pt;}
.yb2{bottom:154.518000pt;}
.y16f{bottom:156.433067pt;}
.y1c7{bottom:159.519733pt;}
.yd5{bottom:160.174667pt;}
.ye3{bottom:162.077200pt;}
.y1f2{bottom:163.261333pt;}
.y139{bottom:165.856667pt;}
.y124{bottom:166.052533pt;}
.y64{bottom:166.929067pt;}
.y19a{bottom:166.929200pt;}
.y4{bottom:167.670400pt;}
.y8f{bottom:171.369067pt;}
.y2b{bottom:171.369200pt;}
.yb1{bottom:172.118133pt;}
.y16e{bottom:174.033067pt;}
.y1c6{bottom:177.119733pt;}
.yd4{bottom:177.774800pt;}
.ye2{bottom:179.677067pt;}
.y123{bottom:180.719200pt;}
.y1f1{bottom:180.861333pt;}
.y63{bottom:182.929067pt;}
.y199{bottom:182.929200pt;}
.y138{bottom:183.456667pt;}
.y3{bottom:186.870400pt;}
.yb0{bottom:189.718000pt;}
.y16d{bottom:191.633067pt;}
.y1c5{bottom:194.719733pt;}
.yd3{bottom:195.374800pt;}
.ye1{bottom:197.277067pt;}
.y62{bottom:198.929067pt;}
.y137{bottom:201.056667pt;}
.y1f0{bottom:202.240933pt;}
.y103{bottom:203.369067pt;}
.y198{bottom:203.369200pt;}
.y2{bottom:206.070400pt;}
.yaf{bottom:207.318000pt;}
.y16c{bottom:210.033067pt;}
.y2a{bottom:211.400000pt;}
.ye0{bottom:214.877067pt;}
.y61{bottom:214.929067pt;}
.y1c4{bottom:216.099200pt;}
.yd2{bottom:216.754267pt;}
.y136{bottom:218.656667pt;}
.y1ef{bottom:223.620400pt;}
.y8e{bottom:223.897600pt;}
.y16b{bottom:228.433067pt;}
.y60{bottom:230.929067pt;}
.y1c3{bottom:233.699200pt;}
.yd1{bottom:234.354267pt;}
.y197{bottom:235.576400pt;}
.ydf{bottom:236.256667pt;}
.yb8{bottom:238.734933pt;}
.y29{bottom:240.338533pt;}
.y1ee{bottom:241.220400pt;}
.y8d{bottom:241.497600pt;}
.y16a{bottom:246.033067pt;}
.y5f{bottom:251.369067pt;}
.yd0{bottom:251.954267pt;}
.yb7{bottom:253.401600pt;}
.yde{bottom:253.856667pt;}
.y1c2{bottom:255.078800pt;}
.y196{bottom:256.955867pt;}
.y8c{bottom:259.097600pt;}
.y1ed{bottom:262.600000pt;}
.y5e{bottom:262.929067pt;}
.y169{bottom:263.633067pt;}
.yb6{bottom:268.068267pt;}
.ycf{bottom:269.554267pt;}
.ydd{bottom:271.456667pt;}
.y1c1{bottom:276.458267pt;}
.y8b{bottom:276.697600pt;}
.y195{bottom:278.335467pt;}
.y1ec{bottom:280.200000pt;}
.y168{bottom:281.233067pt;}
.yb5{bottom:282.734933pt;}
.y5d{bottom:283.369067pt;}
.yce{bottom:287.154267pt;}
.ydc{bottom:289.056667pt;}
.yb{bottom:290.535600pt;}
.y1c0{bottom:294.058267pt;}
.y8a{bottom:294.297600pt;}
.y5c{bottom:294.929067pt;}
.y194{bottom:295.935467pt;}
.yb4{bottom:297.401600pt;}
.y1eb{bottom:297.800000pt;}
.y167{bottom:298.833067pt;}
.ycd{bottom:304.754267pt;}
.ydb{bottom:306.656667pt;}
.y135{bottom:310.436133pt;}
.y1bf{bottom:311.658267pt;}
.y89{bottom:311.897600pt;}
.y193{bottom:313.535467pt;}
.y5b{bottom:315.369067pt;}
.y166{bottom:316.433067pt;}
.y1ea{bottom:319.179467pt;}
.ycc{bottom:322.354267pt;}
.yda{bottom:324.256667pt;}
.y134{bottom:328.036133pt;}
.y88{bottom:329.497600pt;}
.y1be{bottom:333.037867pt;}
.y165{bottom:334.033067pt;}
.y192{bottom:334.914933pt;}
.y102{bottom:336.892800pt;}
.ycb{bottom:339.954267pt;}
.y1e9{bottom:340.559067pt;}
.yd9{bottom:341.856667pt;}
.y133{bottom:345.636133pt;}
.y87{bottom:347.097600pt;}
.y28{bottom:350.471333pt;}
.y1bd{bottom:350.637733pt;}
.y101{bottom:354.492800pt;}
.y164{bottom:355.412667pt;}
.y5a{bottom:358.272400pt;}
.y11c{bottom:358.738533pt;}
.yd8{bottom:359.456667pt;}
.y1e8{bottom:361.938533pt;}
.y132{bottom:363.236133pt;}
.y86{bottom:364.697600pt;}
.y27{bottom:368.071333pt;}
.y1bc{bottom:368.237867pt;}
.yca{bottom:368.892800pt;}
.y100{bottom:372.092800pt;}
.y163{bottom:373.012667pt;}
.yd{bottom:374.581867pt;}
.y59{bottom:375.872400pt;}
.y11b{bottom:376.338533pt;}
.y191{bottom:377.674000pt;}
.y1e7{bottom:379.538533pt;}
.y131{bottom:380.836133pt;}
.y85{bottom:386.077067pt;}
.y1bb{bottom:389.617333pt;}
.yff{bottom:389.692933pt;}
.y162{bottom:390.612667pt;}
.ye9{bottom:391.312400pt;}
.y58{bottom:393.472400pt;}
.y11a{bottom:393.938533pt;}
.y190{bottom:395.274000pt;}
.yc9{bottom:397.251867pt;}
.y130{bottom:398.436133pt;}
.y1e6{bottom:400.918000pt;}
.y26{bottom:401.671200pt;}
.y84{bottom:403.677067pt;}
.ye8{bottom:405.979067pt;}
.y1ba{bottom:407.217333pt;}
.yfe{bottom:407.292800pt;}
.y161{bottom:408.212667pt;}
.y57{bottom:411.072400pt;}
.ya{bottom:411.136800pt;}
.y119{bottom:411.538533pt;}
.y18f{bottom:412.874000pt;}
.yc8{bottom:414.851867pt;}
.y12f{bottom:416.036133pt;}
.y25{bottom:417.671200pt;}
.y1e5{bottom:418.518000pt;}
.ye7{bottom:420.645733pt;}
.y83{bottom:421.277067pt;}
.y1b9{bottom:424.817333pt;}
.yfd{bottom:424.892800pt;}
.y160{bottom:425.812667pt;}
.y203{bottom:426.077067pt;}
.y56{bottom:428.672400pt;}
.y118{bottom:429.138533pt;}
.y18e{bottom:430.474000pt;}
.yc7{bottom:432.451867pt;}
.y12e{bottom:433.636133pt;}
.y24{bottom:433.671200pt;}
.y82{bottom:438.877067pt;}
.y1e4{bottom:439.897600pt;}
.y9{bottom:439.936800pt;}
.yfc{bottom:442.492800pt;}
.y15f{bottom:443.412667pt;}
.y202{bottom:443.677067pt;}
.y1b8{bottom:446.196800pt;}
.y117{bottom:446.738533pt;}
.y23{bottom:449.671200pt;}
.y55{bottom:450.051867pt;}
.y12d{bottom:451.236133pt;}
.y18d{bottom:451.853600pt;}
.y81{bottom:456.477067pt;}
.y1e3{bottom:457.497600pt;}
.yfb{bottom:460.092800pt;}
.y15e{bottom:461.012667pt;}
.y1b7{bottom:463.796933pt;}
.y116{bottom:464.338533pt;}
.y201{bottom:465.056667pt;}
.y22{bottom:465.671200pt;}
.y54{bottom:467.651867pt;}
.y8{bottom:468.736800pt;}
.y12c{bottom:468.836133pt;}
.y18c{bottom:469.453600pt;}
.y80{bottom:474.077067pt;}
.yae{bottom:477.692933pt;}
.y15d{bottom:478.612667pt;}
.y1e2{bottom:478.877067pt;}
.y21{bottom:481.671200pt;}
.y200{bottom:482.656667pt;}
.y1b6{bottom:485.176400pt;}
.y53{bottom:485.251867pt;}
.y115{bottom:485.718000pt;}
.y12b{bottom:486.436133pt;}
.y18b{bottom:487.053600pt;}
.y7f{bottom:491.677067pt;}
.yad{bottom:495.292800pt;}
.y15c{bottom:496.212667pt;}
.y20{bottom:497.671200pt;}
.yfa{bottom:499.072400pt;}
.y1e1{bottom:500.256667pt;}
.y1b5{bottom:502.776400pt;}
.y52{bottom:502.851867pt;}
.y114{bottom:503.318000pt;}
.y12a{bottom:504.036133pt;}
.y18a{bottom:504.653600pt;}
.y7e{bottom:509.277067pt;}
.yac{bottom:512.892800pt;}
.y1f{bottom:513.671200pt;}
.y15b{bottom:513.812667pt;}
.yf9{bottom:516.672400pt;}
.y1e0{bottom:517.856667pt;}
.y51{bottom:520.451867pt;}
.y113{bottom:520.918000pt;}
.y129{bottom:521.636133pt;}
.y189{bottom:522.253600pt;}
.y1b4{bottom:524.155867pt;}
.y7d{bottom:526.877067pt;}
.y1e{bottom:529.671200pt;}
.yab{bottom:530.492800pt;}
.y15a{bottom:531.412667pt;}
.yf8{bottom:534.272400pt;}
.y50{bottom:538.051867pt;}
.y112{bottom:538.518000pt;}
.y128{bottom:539.236133pt;}
.y188{bottom:539.853600pt;}
.y1b3{bottom:541.756000pt;}
.y7c{bottom:544.477067pt;}
.y1d{bottom:545.671200pt;}
.yaa{bottom:548.092800pt;}
.yf7{bottom:551.872400pt;}
.y159{bottom:552.792133pt;}
.yc{bottom:554.721067pt;}
.y4f{bottom:555.651867pt;}
.y111{bottom:556.118000pt;}
.y127{bottom:556.836133pt;}
.y187{bottom:557.453600pt;}
.y1b2{bottom:559.355867pt;}
.y1df{bottom:560.615733pt;}
.y1c{bottom:561.671200pt;}
.ya9{bottom:565.692933pt;}
.yf6{bottom:569.472400pt;}
.y158{bottom:570.392133pt;}
.yc6{bottom:573.251867pt;}
.y7b{bottom:573.415733pt;}
.y126{bottom:574.436133pt;}
.y186{bottom:575.053600pt;}
.y4e{bottom:577.031467pt;}
.y1de{bottom:578.215733pt;}
.y1b1{bottom:580.735467pt;}
.ya8{bottom:583.292800pt;}
.y110{bottom:585.056667pt;}
.yf5{bottom:587.072400pt;}
.y157{bottom:587.992133pt;}
.yc5{bottom:590.851867pt;}
.y7a{bottom:591.015733pt;}
.y125{bottom:592.036133pt;}
.y185{bottom:592.653600pt;}
.y4d{bottom:594.631467pt;}
.y7{bottom:596.739600pt;}
.y1b0{bottom:598.335467pt;}
.y1dd{bottom:599.595200pt;}
.ya7{bottom:600.892800pt;}
.y156{bottom:605.592133pt;}
.yc4{bottom:608.451867pt;}
.y79{bottom:608.615733pt;}
.y4c{bottom:612.231467pt;}
.y10f{bottom:613.415733pt;}
.y184{bottom:614.033067pt;}
.y1b{bottom:614.471333pt;}
.y1dc{bottom:617.195200pt;}
.ya6{bottom:618.492800pt;}
.y1af{bottom:619.714933pt;}
.y155{bottom:623.192133pt;}
.y13e{bottom:623.385867pt;}
.yf4{bottom:626.051867pt;}
.y6{bottom:628.739600pt;}
.y4b{bottom:629.831467pt;}
.y1a{bottom:630.471333pt;}
.y10e{bottom:631.015733pt;}
.y183{bottom:631.633067pt;}
.y1db{bottom:634.795200pt;}
.ya5{bottom:636.092800pt;}
.y1ae{bottom:637.314933pt;}
.y13d{bottom:638.052533pt;}
.y1ff{bottom:638.574800pt;}
.y154{bottom:640.792133pt;}
.yf3{bottom:643.651867pt;}
.y19{bottom:646.471333pt;}
.y4a{bottom:647.431467pt;}
.y10d{bottom:648.615733pt;}
.y182{bottom:649.233067pt;}
.y78{bottom:651.374800pt;}
.y13c{bottom:652.719200pt;}
.ya4{bottom:653.692933pt;}
.y1da{bottom:656.174800pt;}
.y1ad{bottom:658.694533pt;}
.y1fe{bottom:659.954267pt;}
.y5{bottom:660.739600pt;}
.yf2{bottom:661.251867pt;}
.y153{bottom:662.171733pt;}
.y49{bottom:665.031467pt;}
.y10c{bottom:666.215733pt;}
.y181{bottom:666.833067pt;}
.y13b{bottom:667.385867pt;}
.ya3{bottom:671.292800pt;}
.y77{bottom:673.554267pt;}
.y1d9{bottom:673.774800pt;}
.y1ac{bottom:676.294533pt;}
.y1fd{bottom:677.554267pt;}
.yf1{bottom:678.851867pt;}
.y152{bottom:680.571600pt;}
.y48{bottom:682.631467pt;}
.y10b{bottom:683.815733pt;}
.y180{bottom:684.433067pt;}
.y18{bottom:684.871200pt;}
.yd7{bottom:686.410933pt;}
.ya2{bottom:688.892933pt;}
.y1ab{bottom:693.894533pt;}
.y1d8{bottom:695.154267pt;}
.y76{bottom:695.733867pt;}
.yf0{bottom:696.451867pt;}
.y151{bottom:698.971733pt;}
.yc3{bottom:700.231467pt;}
.y17f{bottom:702.033067pt;}
.y47{bottom:704.010933pt;}
.y10a{bottom:705.195200pt;}
.ya1{bottom:706.492800pt;}
.y1d7{bottom:712.754267pt;}
.yef{bottom:714.051867pt;}
.y1aa{bottom:715.274000pt;}
.y1fc{bottom:716.533733pt;}
.y150{bottom:716.571733pt;}
.yc2{bottom:717.831467pt;}
.y75{bottom:717.913333pt;}
.y17{bottom:718.609867pt;}
.y17e{bottom:719.633200pt;}
.y46{bottom:721.611067pt;}
.y109{bottom:722.795200pt;}
.ya0{bottom:724.092800pt;}
.yee{bottom:731.652000pt;}
.y1d6{bottom:734.133733pt;}
.y14f{bottom:734.171733pt;}
.yc1{bottom:735.431467pt;}
.y1a9{bottom:736.653600pt;}
.y17d{bottom:737.233067pt;}
.y45{bottom:739.210933pt;}
.y74{bottom:740.092800pt;}
.y108{bottom:740.395200pt;}
.y16{bottom:741.009867pt;}
.y9f{bottom:745.472400pt;}
.yed{bottom:749.252000pt;}
.y1d5{bottom:751.733867pt;}
.y14e{bottom:751.771600pt;}
.yc0{bottom:753.031467pt;}
.y1a8{bottom:754.253600pt;}
.y44{bottom:756.810933pt;}
.y107{bottom:757.995200pt;}
.y73{bottom:762.272400pt;}
.y9e{bottom:763.072400pt;}
.y17c{bottom:766.171733pt;}
.y14d{bottom:769.371600pt;}
.ybf{bottom:770.631467pt;}
.y1a7{bottom:771.853467pt;}
.y1d4{bottom:773.113333pt;}
.y43{bottom:774.410933pt;}
.y106{bottom:775.595200pt;}
.y9d{bottom:780.672400pt;}
.y14c{bottom:786.971733pt;}
.ybe{bottom:788.231467pt;}
.y1d3{bottom:790.713333pt;}
.y42{bottom:792.010933pt;}
.y15{bottom:792.209867pt;}
.y105{bottom:793.195200pt;}
.y1a6{bottom:793.233067pt;}
.y17b{bottom:794.530800pt;}
.y9c{bottom:798.272400pt;}
.ybd{bottom:805.831467pt;}
.y14{bottom:808.209867pt;}
.y1d2{bottom:808.313333pt;}
.y14b{bottom:808.351200pt;}
.y41{bottom:809.611067pt;}
.y104{bottom:810.795200pt;}
.y1a5{bottom:810.833067pt;}
.y17a{bottom:812.130667pt;}
.y9b{bottom:815.872400pt;}
.yec{bottom:823.431467pt;}
.y13{bottom:824.209867pt;}
.y1d1{bottom:825.913333pt;}
.y14a{bottom:825.951200pt;}
.y40{bottom:827.210933pt;}
.y179{bottom:829.730667pt;}
.y1a4{bottom:832.212667pt;}
.y9a{bottom:833.472400pt;}
.yeb{bottom:841.031467pt;}
.y1fb{bottom:843.513333pt;}
.y149{bottom:843.551200pt;}
.y72{bottom:844.810933pt;}
.y1d0{bottom:847.292933pt;}
.y178{bottom:847.330667pt;}
.y3f{bottom:848.590533pt;}
.y1a3{bottom:849.812667pt;}
.y122{bottom:850.430533pt;}
.y99{bottom:851.072400pt;}
.yea{bottom:858.631467pt;}
.y12{bottom:859.989467pt;}
.y148{bottom:861.151200pt;}
.y71{bottom:862.410933pt;}
.y1fa{bottom:864.892933pt;}
.y177{bottom:864.930800pt;}
.y121{bottom:865.097200pt;}
.y3e{bottom:866.190533pt;}
.y1cf{bottom:868.672400pt;}
.y1a2{bottom:871.192133pt;}
.y98{bottom:872.451867pt;}
.y147{bottom:878.751200pt;}
.y120{bottom:879.763867pt;}
.y70{bottom:880.010933pt;}
.y1f9{bottom:882.492800pt;}
.y176{bottom:882.530800pt;}
.y3d{bottom:883.790533pt;}
.y1ce{bottom:886.272400pt;}
.y1a1{bottom:888.792133pt;}
.y97{bottom:890.051867pt;}
.y146{bottom:896.351200pt;}
.y6f{bottom:897.611067pt;}
.y175{bottom:900.130667pt;}
.y3c{bottom:901.390400pt;}
.y1f8{bottom:903.872400pt;}
.y1a0{bottom:906.392133pt;}
.y96{bottom:907.652000pt;}
.y11{bottom:907.687067pt;}
.y145{bottom:913.951200pt;}
.y6e{bottom:915.210933pt;}
.y174{bottom:917.730667pt;}
.y3b{bottom:918.990533pt;}
.y1f7{bottom:921.472400pt;}
.y95{bottom:925.252000pt;}
.y19f{bottom:927.771600pt;}
.y144{bottom:931.551200pt;}
.ybc{bottom:932.810933pt;}
.y173{bottom:935.330667pt;}
.y3a{bottom:936.590533pt;}
.y10{bottom:941.287067pt;}
.y94{bottom:942.851867pt;}
.y19e{bottom:945.371600pt;}
.y1cd{bottom:946.631467pt;}
.ybb{bottom:950.410933pt;}
.y143{bottom:952.930800pt;}
.y39{bottom:954.190533pt;}
.y93{bottom:960.451867pt;}
.y19d{bottom:962.971733pt;}
.y1cc{bottom:964.231467pt;}
.yba{bottom:968.010933pt;}
.y142{bottom:970.530800pt;}
.y38{bottom:971.790533pt;}
.y92{bottom:978.051867pt;}
.y1f6{bottom:981.831467pt;}
.y19c{bottom:984.351200pt;}
.yb9{bottom:985.611067pt;}
.y141{bottom:988.130667pt;}
.y37{bottom:989.390400pt;}
.y91{bottom:995.652000pt;}
.y19b{bottom:1001.951200pt;}
.y1cb{bottom:1003.210933pt;}
.y140{bottom:1005.730667pt;}
.y36{bottom:1006.990533pt;}
.y13f{bottom:1023.330667pt;}
.y35{bottom:1024.590533pt;}
.y1{bottom:1025.370000pt;}
.y34{bottom:1062.519733pt;}
.y32{bottom:1063.319600pt;}
.y6d{bottom:1065.186400pt;}
.y6b{bottom:1065.986267pt;}
.y31{bottom:1082.519733pt;}
.y6a{bottom:1085.186400pt;}
.h15{height:25.573333pt;}
.h10{height:39.573333pt;}
.hf{height:39.840000pt;}
.h12{height:42.786458pt;}
.h11{height:43.333333pt;}
.hd{height:43.530667pt;}
.hc{height:43.824000pt;}
.h17{height:44.601562pt;}
.h14{height:45.538711pt;}
.h16{height:46.125000pt;}
.h13{height:47.666667pt;}
.h3{height:48.656250pt;}
.h9{height:51.343750pt;}
.he{height:56.074667pt;}
.h2{height:59.901042pt;}
.h6{height:62.869333pt;}
.h8{height:65.706667pt;}
.h7{height:72.096000pt;}
.h5{height:84.480000pt;}
.ha{height:88.144000pt;}
.hb{height:88.683419pt;}
.h4{height:92.341333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x8{left:86.963867pt;}
.x16{left:91.140533pt;}
.x1b{left:94.051200pt;}
.x1a{left:97.947733pt;}
.x1c{left:99.614400pt;}
.x13{left:105.826800pt;}
.x2b{left:113.385867pt;}
.x3{left:116.220533pt;}
.x19{left:124.724400pt;}
.xe{left:149.240933pt;}
.x9{left:150.879200pt;}
.x27{left:153.090000pt;}
.x20{left:155.284667pt;}
.x26{left:156.780800pt;}
.x21{left:160.935600pt;}
.x28{left:161.989733pt;}
.x24{left:168.211600pt;}
.x23{left:170.675867pt;}
.x2{left:215.916000pt;}
.x15{left:234.374933pt;}
.x25{left:251.453733pt;}
.x22{left:267.690267pt;}
.xa{left:291.443733pt;}
.xf{left:314.223200pt;}
.x6{left:355.664267pt;}
.x7{left:361.328267pt;}
.x29{left:362.800267pt;}
.x10{left:401.077200pt;}
.x1d{left:406.903600pt;}
.x1e{left:420.663333pt;}
.xb{left:425.093867pt;}
.x4{left:465.357733pt;}
.xd{left:468.082133pt;}
.x1f{left:470.656800pt;}
.xc{left:479.668400pt;}
.x12{left:491.489733pt;}
.x11{left:498.596267pt;}
.x5{left:525.633733pt;}
.x18{left:588.126000pt;}
.x14{left:636.882667pt;}
.x2a{left:688.959067pt;}
.x17{left:696.857467pt;}
}




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