
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_50ce390c91b901f692b5ab40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_6e1f9a8e80d0184e8d9dcd76.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.137667;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_f217ece2b94a26a67e9db054.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.137667;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_f1e3e6e542750f2d4a080e02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963000;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_7a6ab13cd43e5f1a868e0cee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_4cf98870b48dd285bd08188a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_f37b8fabc0d801ae5fc21e34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_767104c269c6f8eba29e0ddc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850000;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_398152a510014bdc12d133cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.886000;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_9f808e2773669493c3eedf24.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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_646131a3df8031b1377ff9b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893000;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_7f17312b42f376691a6158c9.woff2')format("woff");}.fff{font-family:fff;line-height:0.887000;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_da8cc03d5a60d7c0cece2903.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.710000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-5.318400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.252200px;}
.v1{vertical-align:77.400000px;}
.ls1{letter-spacing:-8.316864px;}
.ls2d{letter-spacing:-3.384000px;}
.ls28{letter-spacing:-1.323000px;}
.ls16{letter-spacing:-1.197000px;}
.ls22{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-0.945000px;}
.ls21{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.882000px;}
.ls1d{letter-spacing:-0.819000px;}
.ls9{letter-spacing:-0.693000px;}
.ls25{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.567000px;}
.ls11{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.441000px;}
.ls3{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.315000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.189000px;}
.lse{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.063000px;}
.ls6{letter-spacing:0.126000px;}
.ls23{letter-spacing:0.189000px;}
.lsb{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.315000px;}
.ls14{letter-spacing:0.378000px;}
.ls29{letter-spacing:0.441000px;}
.lsc{letter-spacing:0.504000px;}
.ls2b{letter-spacing:0.663000px;}
.ls1a{letter-spacing:0.693000px;}
.ls13{letter-spacing:0.756000px;}
.ls1c{letter-spacing:0.882000px;}
.ls2c{letter-spacing:0.918000px;}
.ls1e{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.071000px;}
.ls26{letter-spacing:1.701000px;}
.ls1b{letter-spacing:1.827000px;}
.ls24{letter-spacing:7.560000px;}
.ls27{letter-spacing:7.749000px;}
.ls2a{letter-spacing:10.080000px;}
.ls15{letter-spacing:21.546000px;}
.ls20{letter-spacing:22.050000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws2c{word-spacing:-22.050000px;}
.ws21{word-spacing:-21.546000px;}
.ws3b{word-spacing:-13.980000px;}
.ws41{word-spacing:-13.923000px;}
.ws40{word-spacing:-13.668000px;}
.ws3c{word-spacing:-13.005000px;}
.ws2e{word-spacing:-12.663000px;}
.ws17{word-spacing:-12.348000px;}
.ws2f{word-spacing:-12.222000px;}
.ws15{word-spacing:-11.466000px;}
.ws18{word-spacing:-11.088000px;}
.ws16{word-spacing:-11.025000px;}
.ws3e{word-spacing:-10.080000px;}
.ws37{word-spacing:-7.749000px;}
.ws33{word-spacing:-7.560000px;}
.ws27{word-spacing:-1.827000px;}
.ws42{word-spacing:-1.734000px;}
.ws36{word-spacing:-1.701000px;}
.ws1e{word-spacing:-1.071000px;}
.ws2b{word-spacing:-1.008000px;}
.ws28{word-spacing:-0.882000px;}
.ws1f{word-spacing:-0.756000px;}
.ws2a{word-spacing:-0.693000px;}
.ws11{word-spacing:-0.504000px;}
.ws39{word-spacing:-0.441000px;}
.ws20{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.315000px;}
.ws1a{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.252000px;}
.ws31{word-spacing:-0.189000px;}
.wsb{word-spacing:-0.126000px;}
.ws35{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws1b{word-spacing:0.126000px;}
.wsd{word-spacing:0.189000px;}
.ws38{word-spacing:0.252000px;}
.ws9{word-spacing:0.378000px;}
.ws8{word-spacing:0.432000px;}
.ws1c{word-spacing:0.441000px;}
.ws1d{word-spacing:0.504000px;}
.wsc{word-spacing:0.567000px;}
.ws34{word-spacing:0.630000px;}
.wse{word-spacing:0.693000px;}
.ws29{word-spacing:0.819000px;}
.ws22{word-spacing:0.882000px;}
.ws12{word-spacing:0.945000px;}
.ws26{word-spacing:1.008000px;}
.ws30{word-spacing:1.134000px;}
.ws13{word-spacing:1.323000px;}
.ws25{word-spacing:3.339000px;}
.ws32{word-spacing:7.119000px;}
.ws24{word-spacing:7.434000px;}
.ws3d{word-spacing:9.261000px;}
.ws23{word-spacing:14.742000px;}
.ws6{word-spacing:137.530800px;}
.ws19{word-spacing:503.997000px;}
.ws7{word-spacing:503.997600px;}
.ws14{word-spacing:6219.000000px;}
.ws5{word-spacing:6225.120000px;}
.ws3a{word-spacing:6234.192000px;}
.ws2d{word-spacing:6243.192000px;}
.ws3f{word-spacing:6247.368000px;}
._25{margin-left:-23.378902px;}
._1e{margin-left:-21.965410px;}
._1d{margin-left:-20.933095px;}
._1f{margin-left:-19.669459px;}
._1c{margin-left:-15.435902px;}
._2b{margin-left:-13.576200px;}
._2a{margin-left:-11.118031px;}
._28{margin-left:-9.622294px;}
._27{margin-left:-8.533922px;}
._26{margin-left:-7.404919px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.002293px;}
._b{width:1.410000px;}
._11{width:2.743505px;}
._a{width:3.870000px;}
._6{width:5.868000px;}
._9{width:7.495805px;}
._7{width:8.514000px;}
._14{width:9.981007px;}
._12{width:11.596800px;}
._8{width:13.914000px;}
._13{width:15.014410px;}
._f{width:16.285500px;}
._e{width:17.539200px;}
._19{width:19.076407px;}
._17{width:20.343602px;}
._18{width:21.741598px;}
._1b{width:22.908605px;}
._1a{width:23.909700px;}
._d{width:25.743593px;}
._23{width:27.194410px;}
._20{width:28.789498px;}
._10{width:30.941700px;}
._21{width:32.100298px;}
._15{width:33.876281px;}
._22{width:34.880714px;}
._16{width:37.904400px;}
._5{width:40.459805px;}
._24{width:45.446710px;}
._c{width:47.963100px;}
._29{width:679.511707px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:51.000000px;}
.fs9{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.y66{bottom:47.834700px;}
.y179{bottom:95.830200px;}
.y181{bottom:95.839950px;}
.y110{bottom:95.850450px;}
.y18b{bottom:95.887200px;}
.y8e{bottom:95.892450px;}
.ye4{bottom:95.897700px;}
.y47{bottom:95.965800px;}
.y64{bottom:96.091800px;}
.y1b8{bottom:96.091950px;}
.ybd{bottom:96.128700px;}
.y15b{bottom:96.175800px;}
.y177{bottom:96.286050px;}
.y178{bottom:116.834700px;}
.y10f{bottom:116.845200px;}
.y1dd{bottom:116.857200px;}
.y18a{bottom:116.881950px;}
.y8d{bottom:116.887200px;}
.ye3{bottom:116.892450px;}
.y46{bottom:116.960550px;}
.y63{bottom:117.086550px;}
.y1b7{bottom:117.086700px;}
.ybc{bottom:117.123450px;}
.y15a{bottom:117.170550px;}
.y176{bottom:117.280800px;}
.y10e{bottom:137.839950px;}
.y1dc{bottom:137.856450px;}
.y189{bottom:137.876700px;}
.y8c{bottom:137.881950px;}
.y45{bottom:137.955300px;}
.y62{bottom:138.081300px;}
.y1b6{bottom:138.081450px;}
.ybb{bottom:138.118200px;}
.y159{bottom:138.165300px;}
.y175{bottom:138.275550px;}
.y10d{bottom:158.834700px;}
.y188{bottom:158.871450px;}
.y8b{bottom:158.876700px;}
.y218{bottom:158.893200px;}
.ye2{bottom:158.897700px;}
.y44{bottom:158.950050px;}
.y61{bottom:159.076050px;}
.y1b5{bottom:159.076200px;}
.yba{bottom:159.112950px;}
.y158{bottom:159.160050px;}
.y174{bottom:159.270300px;}
.y1db{bottom:179.854950px;}
.y187{bottom:179.866200px;}
.y8a{bottom:179.871450px;}
.ye1{bottom:179.892450px;}
.y43{bottom:179.944800px;}
.y60{bottom:180.070800px;}
.y1b4{bottom:180.070950px;}
.yb9{bottom:180.107700px;}
.y157{bottom:180.154800px;}
.y173{bottom:180.265050px;}
.y10c{bottom:200.834700px;}
.y1da{bottom:200.854200px;}
.y186{bottom:200.860950px;}
.y89{bottom:200.866200px;}
.ye0{bottom:200.887200px;}
.y217{bottom:200.891700px;}
.y42{bottom:200.939550px;}
.y5f{bottom:201.065550px;}
.y1b3{bottom:201.065700px;}
.yb8{bottom:201.102450px;}
.y156{bottom:201.149550px;}
.y172{bottom:201.259800px;}
.y10b{bottom:221.834700px;}
.y180{bottom:221.850450px;}
.y1d9{bottom:221.853450px;}
.y185{bottom:221.855700px;}
.y88{bottom:221.860950px;}
.y1f2{bottom:221.865450px;}
.ydf{bottom:221.881950px;}
.y41{bottom:221.934300px;}
.y5e{bottom:222.060300px;}
.y1b2{bottom:222.060450px;}
.yb7{bottom:222.097200px;}
.y155{bottom:222.144300px;}
.y171{bottom:222.254550px;}
.y17f{bottom:242.845200px;}
.y184{bottom:242.850450px;}
.y87{bottom:242.855700px;}
.y1f1{bottom:242.864700px;}
.yde{bottom:242.876700px;}
.y216{bottom:242.890200px;}
.y40{bottom:242.929050px;}
.y5d{bottom:243.055050px;}
.y1b1{bottom:243.055200px;}
.yb6{bottom:243.091950px;}
.y154{bottom:243.139050px;}
.y170{bottom:243.249300px;}
.y17e{bottom:263.839950px;}
.y183{bottom:263.845200px;}
.y86{bottom:263.850450px;}
.y1d8{bottom:263.851950px;}
.y1f0{bottom:263.863950px;}
.ydd{bottom:263.871450px;}
.y215{bottom:263.889450px;}
.y3f{bottom:263.923800px;}
.y1b0{bottom:264.049950px;}
.yb5{bottom:264.086700px;}
.y153{bottom:264.133800px;}
.y17d{bottom:284.834700px;}
.y182{bottom:284.839950px;}
.y85{bottom:284.845200px;}
.y1d7{bottom:284.851200px;}
.y1ef{bottom:284.863200px;}
.ydc{bottom:284.866200px;}
.y214{bottom:284.888700px;}
.y1af{bottom:285.044700px;}
.y5c{bottom:285.060300px;}
.yb4{bottom:285.081450px;}
.y10a{bottom:285.086700px;}
.y16f{bottom:285.254550px;}
.y84{bottom:305.839950px;}
.y1d6{bottom:305.850450px;}
.ydb{bottom:305.860950px;}
.y213{bottom:305.887950px;}
.y3e{bottom:305.929050px;}
.y1ae{bottom:306.039450px;}
.y5b{bottom:306.055050px;}
.yb3{bottom:306.076200px;}
.y109{bottom:306.081450px;}
.y152{bottom:306.139050px;}
.y16e{bottom:306.249300px;}
.y1df{bottom:326.825700px;}
.y83{bottom:326.834700px;}
.y1d5{bottom:326.849700px;}
.yda{bottom:326.855700px;}
.y1ee{bottom:326.861700px;}
.y212{bottom:326.887200px;}
.y3d{bottom:326.923800px;}
.y1ad{bottom:327.034200px;}
.y5a{bottom:327.049800px;}
.yb2{bottom:327.070950px;}
.y108{bottom:327.076200px;}
.y151{bottom:327.133800px;}
.y16d{bottom:327.244050px;}
.y1de{bottom:347.830200px;}
.y1d4{bottom:347.848950px;}
.yd9{bottom:347.850450px;}
.y1ed{bottom:347.860950px;}
.y3c{bottom:347.918550px;}
.y1ac{bottom:348.028950px;}
.y59{bottom:348.044550px;}
.yb1{bottom:348.065700px;}
.y107{bottom:348.070950px;}
.y150{bottom:348.128550px;}
.y16c{bottom:348.238800px;}
.y7{bottom:352.018200px;}
.y82{bottom:368.834700px;}
.yd8{bottom:368.845200px;}
.y1ec{bottom:368.860200px;}
.y211{bottom:368.885700px;}
.y3b{bottom:368.913300px;}
.y1ab{bottom:369.023700px;}
.y58{bottom:369.039300px;}
.yb0{bottom:369.060450px;}
.y106{bottom:369.065700px;}
.y14f{bottom:369.123300px;}
.y16b{bottom:369.233550px;}
.y9{bottom:381.914100px;}
.y81{bottom:389.834700px;}
.yd7{bottom:389.839950px;}
.y1d3{bottom:389.847450px;}
.y210{bottom:389.884950px;}
.y3a{bottom:389.908050px;}
.y1aa{bottom:390.018450px;}
.y57{bottom:390.034050px;}
.yaf{bottom:390.055200px;}
.y105{bottom:390.060450px;}
.y14e{bottom:390.118050px;}
.y16a{bottom:390.228300px;}
.y80{bottom:410.834700px;}
.y1d2{bottom:410.846700px;}
.y1eb{bottom:410.858700px;}
.y20f{bottom:410.884200px;}
.y39{bottom:410.902800px;}
.y1a9{bottom:411.013200px;}
.y56{bottom:411.028800px;}
.yae{bottom:411.049950px;}
.y104{bottom:411.055200px;}
.y14d{bottom:411.112800px;}
.y169{bottom:411.223050px;}
.y1d1{bottom:431.845950px;}
.y1ea{bottom:431.857950px;}
.y20e{bottom:431.883450px;}
.y38{bottom:431.897550px;}
.y1a8{bottom:432.007950px;}
.y55{bottom:432.023550px;}
.yad{bottom:432.044700px;}
.y103{bottom:432.049950px;}
.y14c{bottom:432.107550px;}
.y168{bottom:432.217800px;}
.y6{bottom:445.018200px;}
.yd6{bottom:452.834700px;}
.y1e9{bottom:452.857200px;}
.y20d{bottom:452.882700px;}
.y37{bottom:452.892300px;}
.y7f{bottom:452.934450px;}
.y54{bottom:453.018300px;}
.yac{bottom:453.039450px;}
.y102{bottom:453.044700px;}
.y14b{bottom:453.102300px;}
.y167{bottom:453.212550px;}
.yd5{bottom:473.834700px;}
.y1d0{bottom:473.844450px;}
.y1e8{bottom:473.856450px;}
.y20c{bottom:473.881950px;}
.y36{bottom:473.887050px;}
.y7e{bottom:473.929200px;}
.y53{bottom:474.013050px;}
.y1a7{bottom:474.013200px;}
.yab{bottom:474.034200px;}
.y101{bottom:474.039450px;}
.y14a{bottom:474.097050px;}
.y1cf{bottom:494.843700px;}
.y1e7{bottom:494.855700px;}
.y35{bottom:494.881800px;}
.y7d{bottom:494.923950px;}
.y52{bottom:495.007800px;}
.y1a6{bottom:495.007950px;}
.yaa{bottom:495.028950px;}
.y100{bottom:495.034200px;}
.y149{bottom:495.091800px;}
.y166{bottom:495.217800px;}
.y1ce{bottom:515.842950px;}
.y34{bottom:515.876550px;}
.y20b{bottom:515.880450px;}
.y7c{bottom:515.918700px;}
.y51{bottom:516.002550px;}
.y1a5{bottom:516.002700px;}
.ya9{bottom:516.023700px;}
.yff{bottom:516.028950px;}
.y148{bottom:516.086550px;}
.y165{bottom:516.212550px;}
.y1cd{bottom:536.842200px;}
.y1e6{bottom:536.854200px;}
.y33{bottom:536.871300px;}
.y20a{bottom:536.879700px;}
.y7b{bottom:536.913450px;}
.y22f{bottom:536.917950px;}
.yd4{bottom:536.955450px;}
.y50{bottom:536.997300px;}
.y1a4{bottom:536.997450px;}
.ya8{bottom:537.018450px;}
.yfe{bottom:537.023700px;}
.y147{bottom:537.081300px;}
.y164{bottom:537.207300px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y1e5{bottom:557.853450px;}
.y32{bottom:557.866050px;}
.y209{bottom:557.878950px;}
.y7a{bottom:557.908200px;}
.y22e{bottom:557.917200px;}
.yd3{bottom:557.950200px;}
.y4f{bottom:557.992050px;}
.y1a3{bottom:557.992200px;}
.ya7{bottom:558.013200px;}
.yfd{bottom:558.018450px;}
.y146{bottom:558.076050px;}
.y163{bottom:558.202050px;}
.y1cc{bottom:578.840700px;}
.y1e4{bottom:578.852700px;}
.y31{bottom:578.860800px;}
.y208{bottom:578.878200px;}
.y79{bottom:578.902950px;}
.y22d{bottom:578.916450px;}
.yd2{bottom:578.944950px;}
.y4e{bottom:578.986800px;}
.y1a2{bottom:578.986950px;}
.yfc{bottom:579.013200px;}
.y145{bottom:579.070800px;}
.y162{bottom:579.196800px;}
.y1cb{bottom:599.839950px;}
.y1e3{bottom:599.851950px;}
.y30{bottom:599.855550px;}
.y207{bottom:599.877450px;}
.y78{bottom:599.897700px;}
.y22c{bottom:599.915700px;}
.y127{bottom:599.939550px;}
.yd1{bottom:599.939700px;}
.y4d{bottom:599.981550px;}
.y1a1{bottom:599.981700px;}
.yfb{bottom:600.007950px;}
.ya6{bottom:600.018450px;}
.y13e{bottom:600.049800px;}
.y161{bottom:600.191550px;}
.y1ca{bottom:620.839200px;}
.y2f{bottom:620.850300px;}
.y206{bottom:620.876700px;}
.y77{bottom:620.892450px;}
.y22b{bottom:620.914950px;}
.y126{bottom:620.934300px;}
.yd0{bottom:620.934450px;}
.y1a0{bottom:620.976450px;}
.yfa{bottom:621.002700px;}
.ya5{bottom:621.013200px;}
.y13d{bottom:621.044550px;}
.y144{bottom:621.076050px;}
.y160{bottom:621.186300px;}
.y4{bottom:631.018200px;}
.y2e{bottom:641.845050px;}
.y1e2{bottom:641.850450px;}
.y205{bottom:641.875950px;}
.y76{bottom:641.887200px;}
.y22a{bottom:641.914200px;}
.y125{bottom:641.929050px;}
.ycf{bottom:641.929200px;}
.y19f{bottom:641.971200px;}
.y4c{bottom:641.986800px;}
.yf9{bottom:641.997450px;}
.ya4{bottom:642.007950px;}
.y13c{bottom:642.039300px;}
.y143{bottom:642.070800px;}
.y15f{bottom:642.181050px;}
.y1c9{bottom:662.837700px;}
.y2d{bottom:662.839800px;}
.y1e1{bottom:662.849700px;}
.y204{bottom:662.875200px;}
.y75{bottom:662.881950px;}
.y124{bottom:662.923800px;}
.yce{bottom:662.923950px;}
.y19e{bottom:662.965950px;}
.y4b{bottom:662.981550px;}
.yf8{bottom:662.992200px;}
.ya3{bottom:663.002700px;}
.y13b{bottom:663.034050px;}
.y142{bottom:663.065550px;}
.y15e{bottom:663.175800px;}
.y2c{bottom:683.834550px;}
.y1c8{bottom:683.836950px;}
.y1d{bottom:683.848950px;}
.y74{bottom:683.876700px;}
.y229{bottom:683.912700px;}
.y123{bottom:683.918550px;}
.ycd{bottom:683.918700px;}
.y19d{bottom:683.960700px;}
.y4a{bottom:683.976300px;}
.ya2{bottom:683.997450px;}
.y141{bottom:684.060300px;}
.y1c7{bottom:704.836200px;}
.y1c{bottom:704.848200px;}
.y73{bottom:704.871450px;}
.y203{bottom:704.873700px;}
.y228{bottom:704.911950px;}
.y122{bottom:704.913300px;}
.ycc{bottom:704.913450px;}
.y49{bottom:704.971050px;}
.ya1{bottom:704.992200px;}
.yf7{bottom:704.997450px;}
.y13a{bottom:705.039300px;}
.y140{bottom:705.055050px;}
.y15d{bottom:705.181050px;}
.y2b{bottom:725.834700px;}
.y1c6{bottom:725.835450px;}
.y1b{bottom:725.847450px;}
.y72{bottom:725.866200px;}
.y202{bottom:725.872950px;}
.y121{bottom:725.908050px;}
.ycb{bottom:725.908200px;}
.y227{bottom:725.911200px;}
.y48{bottom:725.965800px;}
.y19c{bottom:725.965950px;}
.ya0{bottom:725.986950px;}
.yf6{bottom:725.992200px;}
.y139{bottom:726.034050px;}
.y13f{bottom:726.049800px;}
.y15c{bottom:726.175800px;}
.y1c5{bottom:746.834700px;}
.y1a{bottom:746.846700px;}
.y71{bottom:746.860950px;}
.y201{bottom:746.872200px;}
.y120{bottom:746.902800px;}
.yca{bottom:746.902950px;}
.y226{bottom:746.910450px;}
.y19b{bottom:746.960700px;}
.y9f{bottom:746.981700px;}
.yf5{bottom:746.986950px;}
.y138{bottom:747.028800px;}
.y3{bottom:751.738650px;}
.y17c{bottom:767.830200px;}
.y19{bottom:767.845950px;}
.y70{bottom:767.855700px;}
.y200{bottom:767.871450px;}
.y11f{bottom:767.897550px;}
.yc9{bottom:767.897700px;}
.y19a{bottom:767.955450px;}
.y9e{bottom:767.976450px;}
.yf4{bottom:767.981700px;}
.y137{bottom:768.023550px;}
.y17b{bottom:788.834700px;}
.y18{bottom:788.845200px;}
.y6f{bottom:788.850450px;}
.y1ff{bottom:788.870700px;}
.y11e{bottom:788.892300px;}
.yc8{bottom:788.892450px;}
.y225{bottom:788.908950px;}
.y199{bottom:788.950200px;}
.y9d{bottom:788.971200px;}
.yf3{bottom:788.976450px;}
.y136{bottom:789.018300px;}
.y2{bottom:791.931000px;}
.y2a{bottom:809.834700px;}
.y17{bottom:809.844450px;}
.y6e{bottom:809.845200px;}
.y1fe{bottom:809.869950px;}
.yc7{bottom:809.887200px;}
.y224{bottom:809.908200px;}
.y198{bottom:809.944950px;}
.y9c{bottom:809.965950px;}
.yf2{bottom:809.971200px;}
.y135{bottom:810.013050px;}
.y29{bottom:830.834700px;}
.y1e0{bottom:830.843700px;}
.yc6{bottom:830.881950px;}
.y11d{bottom:830.897550px;}
.y223{bottom:830.907450px;}
.y197{bottom:830.939700px;}
.y9b{bottom:830.960700px;}
.yf1{bottom:830.965950px;}
.y134{bottom:831.007800px;}
.y28{bottom:851.834700px;}
.y16{bottom:851.842950px;}
.y6d{bottom:851.850450px;}
.y1fd{bottom:851.868450px;}
.yc5{bottom:851.876700px;}
.y11c{bottom:851.892300px;}
.y222{bottom:851.906700px;}
.y196{bottom:851.934450px;}
.y9a{bottom:851.955450px;}
.yf0{bottom:851.960700px;}
.y133{bottom:852.002550px;}
.y1c4{bottom:852.154950px;}
.y1{bottom:859.112850px;}
.y27{bottom:872.834700px;}
.y15{bottom:872.842200px;}
.y6c{bottom:872.845200px;}
.y1fc{bottom:872.867700px;}
.y11b{bottom:872.887050px;}
.y195{bottom:872.929200px;}
.y99{bottom:872.950200px;}
.yef{bottom:872.955450px;}
.y132{bottom:872.997300px;}
.y1c3{bottom:873.149700px;}
.y26{bottom:893.834700px;}
.y6b{bottom:893.839950px;}
.y14{bottom:893.841450px;}
.y1fb{bottom:893.866950px;}
.y11a{bottom:893.881800px;}
.yc4{bottom:893.881950px;}
.y221{bottom:893.905200px;}
.y194{bottom:893.923950px;}
.y98{bottom:893.944950px;}
.yee{bottom:893.950200px;}
.y131{bottom:893.992050px;}
.y1c2{bottom:894.144450px;}
.y25{bottom:914.834700px;}
.y13{bottom:914.840700px;}
.y1fa{bottom:914.866200px;}
.y119{bottom:914.876550px;}
.yc3{bottom:914.876700px;}
.y220{bottom:914.904450px;}
.y193{bottom:914.918700px;}
.y97{bottom:914.939700px;}
.yed{bottom:914.944950px;}
.y130{bottom:914.986800px;}
.y1c1{bottom:915.139200px;}
.y24{bottom:935.834700px;}
.y12{bottom:935.839950px;}
.y1f9{bottom:935.865450px;}
.y118{bottom:935.871300px;}
.yc2{bottom:935.871450px;}
.y192{bottom:935.913450px;}
.y96{bottom:935.934450px;}
.yec{bottom:935.939700px;}
.y12f{bottom:935.981550px;}
.y1c0{bottom:936.133950px;}
.y23{bottom:956.834700px;}
.y11{bottom:956.839200px;}
.y117{bottom:956.866050px;}
.yc1{bottom:956.866200px;}
.y21f{bottom:956.902950px;}
.y191{bottom:956.908200px;}
.y95{bottom:956.929200px;}
.yeb{bottom:956.934450px;}
.y12e{bottom:956.976300px;}
.y1bf{bottom:957.128700px;}
.y22{bottom:977.834700px;}
.y10{bottom:977.838450px;}
.y116{bottom:977.860800px;}
.yc0{bottom:977.860950px;}
.y1f8{bottom:977.863950px;}
.y21e{bottom:977.902200px;}
.y190{bottom:977.902950px;}
.y94{bottom:977.923950px;}
.yea{bottom:977.929200px;}
.y12d{bottom:977.971050px;}
.y1be{bottom:978.123450px;}
.y6a{bottom:998.834700px;}
.yf{bottom:998.837700px;}
.y115{bottom:998.855550px;}
.ybf{bottom:998.855700px;}
.y1f7{bottom:998.863200px;}
.y18f{bottom:998.897700px;}
.y21d{bottom:998.901450px;}
.y93{bottom:998.918700px;}
.ye9{bottom:998.923950px;}
.y12c{bottom:998.965800px;}
.y1bd{bottom:999.118200px;}
.ye{bottom:1019.836950px;}
.y114{bottom:1019.850300px;}
.ybe{bottom:1019.850450px;}
.y1f6{bottom:1019.862450px;}
.y21c{bottom:1019.900700px;}
.y92{bottom:1019.913450px;}
.ye8{bottom:1019.918700px;}
.y12b{bottom:1019.960550px;}
.y1bc{bottom:1020.112950px;}
.y21{bottom:1034.834700px;}
.yd{bottom:1040.836200px;}
.y113{bottom:1040.845050px;}
.y69{bottom:1040.845200px;}
.y1f5{bottom:1040.861700px;}
.y21b{bottom:1040.899950px;}
.y18e{bottom:1040.902950px;}
.y91{bottom:1040.908200px;}
.ye7{bottom:1040.913450px;}
.y12a{bottom:1040.955300px;}
.y1bb{bottom:1041.107700px;}
.y20{bottom:1061.834700px;}
.yc{bottom:1061.835450px;}
.y112{bottom:1061.839800px;}
.y68{bottom:1061.839950px;}
.y1f4{bottom:1061.860950px;}
.y18d{bottom:1061.897700px;}
.y21a{bottom:1061.899200px;}
.y90{bottom:1061.902950px;}
.ye6{bottom:1061.908200px;}
.y129{bottom:1061.950050px;}
.y1ba{bottom:1062.102450px;}
.y111{bottom:1082.834550px;}
.yb{bottom:1082.834700px;}
.y1f3{bottom:1082.860200px;}
.y18c{bottom:1082.892450px;}
.y8f{bottom:1082.897700px;}
.y219{bottom:1082.898450px;}
.ye5{bottom:1082.902950px;}
.y128{bottom:1082.944800px;}
.y1b9{bottom:1083.097200px;}
.y1f{bottom:1091.331600px;}
.y65{bottom:1187.038800px;}
.y1e{bottom:1187.834700px;}
.y17a{bottom:1189.164300px;}
.h10{height:43.620000px;}
.hb{height:44.400000px;}
.h11{height:44.793000px;}
.h8{height:46.614000px;}
.hf{height:50.526000px;}
.h7{height:51.768000px;}
.h12{height:52.098000px;}
.ha{height:53.280000px;}
.he{height:54.480000px;}
.hd{height:54.840000px;}
.hc{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h9{height:130.680000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.xc{left:102.049350px;}
.x2{left:223.228350px;}
.xb{left:467.732850px;}
.x5{left:643.847250px;}
.x6{left:977.952750px;}
.x8{left:985.644750px;}
.x9{left:993.804750px;}
.xd{left:1045.984200px;}
.x7{left:1360.630500px;}
.xa{left:1377.624750px;}
@media print{
.v3{vertical-align:-4.727467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.779733pt;}
.v1{vertical-align:68.800000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls2d{letter-spacing:-3.008000pt;}
.ls28{letter-spacing:-1.176000pt;}
.ls16{letter-spacing:-1.064000pt;}
.ls22{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.840000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.784000pt;}
.ls1d{letter-spacing:-0.728000pt;}
.ls9{letter-spacing:-0.616000pt;}
.ls25{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.504000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.392000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.280000pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.168000pt;}
.lse{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.056000pt;}
.ls6{letter-spacing:0.112000pt;}
.ls23{letter-spacing:0.168000pt;}
.lsb{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.280000pt;}
.ls14{letter-spacing:0.336000pt;}
.ls29{letter-spacing:0.392000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls2b{letter-spacing:0.589333pt;}
.ls1a{letter-spacing:0.616000pt;}
.ls13{letter-spacing:0.672000pt;}
.ls1c{letter-spacing:0.784000pt;}
.ls2c{letter-spacing:0.816000pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.952000pt;}
.ls26{letter-spacing:1.512000pt;}
.ls1b{letter-spacing:1.624000pt;}
.ls24{letter-spacing:6.720000pt;}
.ls27{letter-spacing:6.888000pt;}
.ls2a{letter-spacing:8.960000pt;}
.ls15{letter-spacing:19.152000pt;}
.ls20{letter-spacing:19.600000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws2c{word-spacing:-19.600000pt;}
.ws21{word-spacing:-19.152000pt;}
.ws3b{word-spacing:-12.426667pt;}
.ws41{word-spacing:-12.376000pt;}
.ws40{word-spacing:-12.149333pt;}
.ws3c{word-spacing:-11.560000pt;}
.ws2e{word-spacing:-11.256000pt;}
.ws17{word-spacing:-10.976000pt;}
.ws2f{word-spacing:-10.864000pt;}
.ws15{word-spacing:-10.192000pt;}
.ws18{word-spacing:-9.856000pt;}
.ws16{word-spacing:-9.800000pt;}
.ws3e{word-spacing:-8.960000pt;}
.ws37{word-spacing:-6.888000pt;}
.ws33{word-spacing:-6.720000pt;}
.ws27{word-spacing:-1.624000pt;}
.ws42{word-spacing:-1.541333pt;}
.ws36{word-spacing:-1.512000pt;}
.ws1e{word-spacing:-0.952000pt;}
.ws2b{word-spacing:-0.896000pt;}
.ws28{word-spacing:-0.784000pt;}
.ws1f{word-spacing:-0.672000pt;}
.ws2a{word-spacing:-0.616000pt;}
.ws11{word-spacing:-0.448000pt;}
.ws39{word-spacing:-0.392000pt;}
.ws20{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.280000pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.224000pt;}
.ws31{word-spacing:-0.168000pt;}
.wsb{word-spacing:-0.112000pt;}
.ws35{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws1b{word-spacing:0.112000pt;}
.wsd{word-spacing:0.168000pt;}
.ws38{word-spacing:0.224000pt;}
.ws9{word-spacing:0.336000pt;}
.ws8{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.392000pt;}
.ws1d{word-spacing:0.448000pt;}
.wsc{word-spacing:0.504000pt;}
.ws34{word-spacing:0.560000pt;}
.wse{word-spacing:0.616000pt;}
.ws29{word-spacing:0.728000pt;}
.ws22{word-spacing:0.784000pt;}
.ws12{word-spacing:0.840000pt;}
.ws26{word-spacing:0.896000pt;}
.ws30{word-spacing:1.008000pt;}
.ws13{word-spacing:1.176000pt;}
.ws25{word-spacing:2.968000pt;}
.ws32{word-spacing:6.328000pt;}
.ws24{word-spacing:6.608000pt;}
.ws3d{word-spacing:8.232000pt;}
.ws23{word-spacing:13.104000pt;}
.ws6{word-spacing:122.249600pt;}
.ws19{word-spacing:447.997333pt;}
.ws7{word-spacing:447.997867pt;}
.ws14{word-spacing:5528.000000pt;}
.ws5{word-spacing:5533.440000pt;}
.ws3a{word-spacing:5541.504000pt;}
.ws2d{word-spacing:5549.504000pt;}
.ws3f{word-spacing:5553.216000pt;}
._25{margin-left:-20.781246pt;}
._1e{margin-left:-19.524809pt;}
._1d{margin-left:-18.607196pt;}
._1f{margin-left:-17.483964pt;}
._1c{margin-left:-13.720802pt;}
._2b{margin-left:-12.067733pt;}
._2a{margin-left:-9.882694pt;}
._28{margin-left:-8.553150pt;}
._27{margin-left:-7.585709pt;}
._26{margin-left:-6.582150pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.890927pt;}
._b{width:1.253333pt;}
._11{width:2.438671pt;}
._a{width:3.440000pt;}
._6{width:5.216000pt;}
._9{width:6.662938pt;}
._7{width:7.568000pt;}
._14{width:8.872006pt;}
._12{width:10.308267pt;}
._8{width:12.368000pt;}
._13{width:13.346142pt;}
._f{width:14.476000pt;}
._e{width:15.590400pt;}
._19{width:16.956806pt;}
._17{width:18.083202pt;}
._18{width:19.325865pt;}
._1b{width:20.363204pt;}
._1a{width:21.253067pt;}
._d{width:22.883194pt;}
._23{width:24.172809pt;}
._20{width:25.590665pt;}
._10{width:27.503733pt;}
._21{width:28.533598pt;}
._15{width:30.112250pt;}
._22{width:31.005079pt;}
._16{width:33.692800pt;}
._5{width:35.964271pt;}
._24{width:40.397075pt;}
._c{width:42.633867pt;}
._29{width:604.010406pt;}
.fs5{font-size:45.333333pt;}
.fs9{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.y66{bottom:42.519733pt;}
.y179{bottom:85.182400pt;}
.y181{bottom:85.191067pt;}
.y110{bottom:85.200400pt;}
.y18b{bottom:85.233067pt;}
.y8e{bottom:85.237733pt;}
.ye4{bottom:85.242400pt;}
.y47{bottom:85.302933pt;}
.y64{bottom:85.414933pt;}
.y1b8{bottom:85.415067pt;}
.ybd{bottom:85.447733pt;}
.y15b{bottom:85.489600pt;}
.y177{bottom:85.587600pt;}
.y178{bottom:103.853067pt;}
.y10f{bottom:103.862400pt;}
.y1dd{bottom:103.873067pt;}
.y18a{bottom:103.895067pt;}
.y8d{bottom:103.899733pt;}
.ye3{bottom:103.904400pt;}
.y46{bottom:103.964933pt;}
.y63{bottom:104.076933pt;}
.y1b7{bottom:104.077067pt;}
.ybc{bottom:104.109733pt;}
.y15a{bottom:104.151600pt;}
.y176{bottom:104.249600pt;}
.y10e{bottom:122.524400pt;}
.y1dc{bottom:122.539067pt;}
.y189{bottom:122.557067pt;}
.y8c{bottom:122.561733pt;}
.y45{bottom:122.626933pt;}
.y62{bottom:122.738933pt;}
.y1b6{bottom:122.739067pt;}
.ybb{bottom:122.771733pt;}
.y159{bottom:122.813600pt;}
.y175{bottom:122.911600pt;}
.y10d{bottom:141.186400pt;}
.y188{bottom:141.219067pt;}
.y8b{bottom:141.223733pt;}
.y218{bottom:141.238400pt;}
.ye2{bottom:141.242400pt;}
.y44{bottom:141.288933pt;}
.y61{bottom:141.400933pt;}
.y1b5{bottom:141.401067pt;}
.yba{bottom:141.433733pt;}
.y158{bottom:141.475600pt;}
.y174{bottom:141.573600pt;}
.y1db{bottom:159.871067pt;}
.y187{bottom:159.881067pt;}
.y8a{bottom:159.885733pt;}
.ye1{bottom:159.904400pt;}
.y43{bottom:159.950933pt;}
.y60{bottom:160.062933pt;}
.y1b4{bottom:160.063067pt;}
.yb9{bottom:160.095733pt;}
.y157{bottom:160.137600pt;}
.y173{bottom:160.235600pt;}
.y10c{bottom:178.519733pt;}
.y1da{bottom:178.537067pt;}
.y186{bottom:178.543067pt;}
.y89{bottom:178.547733pt;}
.ye0{bottom:178.566400pt;}
.y217{bottom:178.570400pt;}
.y42{bottom:178.612933pt;}
.y5f{bottom:178.724933pt;}
.y1b3{bottom:178.725067pt;}
.yb8{bottom:178.757733pt;}
.y156{bottom:178.799600pt;}
.y172{bottom:178.897600pt;}
.y10b{bottom:197.186400pt;}
.y180{bottom:197.200400pt;}
.y1d9{bottom:197.203067pt;}
.y185{bottom:197.205067pt;}
.y88{bottom:197.209733pt;}
.y1f2{bottom:197.213733pt;}
.ydf{bottom:197.228400pt;}
.y41{bottom:197.274933pt;}
.y5e{bottom:197.386933pt;}
.y1b2{bottom:197.387067pt;}
.yb7{bottom:197.419733pt;}
.y155{bottom:197.461600pt;}
.y171{bottom:197.559600pt;}
.y17f{bottom:215.862400pt;}
.y184{bottom:215.867067pt;}
.y87{bottom:215.871733pt;}
.y1f1{bottom:215.879733pt;}
.yde{bottom:215.890400pt;}
.y216{bottom:215.902400pt;}
.y40{bottom:215.936933pt;}
.y5d{bottom:216.048933pt;}
.y1b1{bottom:216.049067pt;}
.yb6{bottom:216.081733pt;}
.y154{bottom:216.123600pt;}
.y170{bottom:216.221600pt;}
.y17e{bottom:234.524400pt;}
.y183{bottom:234.529067pt;}
.y86{bottom:234.533733pt;}
.y1d8{bottom:234.535067pt;}
.y1f0{bottom:234.545733pt;}
.ydd{bottom:234.552400pt;}
.y215{bottom:234.568400pt;}
.y3f{bottom:234.598933pt;}
.y1b0{bottom:234.711067pt;}
.yb5{bottom:234.743733pt;}
.y153{bottom:234.785600pt;}
.y17d{bottom:253.186400pt;}
.y182{bottom:253.191067pt;}
.y85{bottom:253.195733pt;}
.y1d7{bottom:253.201067pt;}
.y1ef{bottom:253.211733pt;}
.ydc{bottom:253.214400pt;}
.y214{bottom:253.234400pt;}
.y1af{bottom:253.373067pt;}
.y5c{bottom:253.386933pt;}
.yb4{bottom:253.405733pt;}
.y10a{bottom:253.410400pt;}
.y16f{bottom:253.559600pt;}
.y84{bottom:271.857733pt;}
.y1d6{bottom:271.867067pt;}
.ydb{bottom:271.876400pt;}
.y213{bottom:271.900400pt;}
.y3e{bottom:271.936933pt;}
.y1ae{bottom:272.035067pt;}
.y5b{bottom:272.048933pt;}
.yb3{bottom:272.067733pt;}
.y109{bottom:272.072400pt;}
.y152{bottom:272.123600pt;}
.y16e{bottom:272.221600pt;}
.y1df{bottom:290.511733pt;}
.y83{bottom:290.519733pt;}
.y1d5{bottom:290.533067pt;}
.yda{bottom:290.538400pt;}
.y1ee{bottom:290.543733pt;}
.y212{bottom:290.566400pt;}
.y3d{bottom:290.598933pt;}
.y1ad{bottom:290.697067pt;}
.y5a{bottom:290.710933pt;}
.yb2{bottom:290.729733pt;}
.y108{bottom:290.734400pt;}
.y151{bottom:290.785600pt;}
.y16d{bottom:290.883600pt;}
.y1de{bottom:309.182400pt;}
.y1d4{bottom:309.199067pt;}
.yd9{bottom:309.200400pt;}
.y1ed{bottom:309.209733pt;}
.y3c{bottom:309.260933pt;}
.y1ac{bottom:309.359067pt;}
.y59{bottom:309.372933pt;}
.yb1{bottom:309.391733pt;}
.y107{bottom:309.396400pt;}
.y150{bottom:309.447600pt;}
.y16c{bottom:309.545600pt;}
.y7{bottom:312.905067pt;}
.y82{bottom:327.853067pt;}
.yd8{bottom:327.862400pt;}
.y1ec{bottom:327.875733pt;}
.y211{bottom:327.898400pt;}
.y3b{bottom:327.922933pt;}
.y1ab{bottom:328.021067pt;}
.y58{bottom:328.034933pt;}
.yb0{bottom:328.053733pt;}
.y106{bottom:328.058400pt;}
.y14f{bottom:328.109600pt;}
.y16b{bottom:328.207600pt;}
.y9{bottom:339.479200pt;}
.y81{bottom:346.519733pt;}
.yd7{bottom:346.524400pt;}
.y1d3{bottom:346.531067pt;}
.y210{bottom:346.564400pt;}
.y3a{bottom:346.584933pt;}
.y1aa{bottom:346.683067pt;}
.y57{bottom:346.696933pt;}
.yaf{bottom:346.715733pt;}
.y105{bottom:346.720400pt;}
.y14e{bottom:346.771600pt;}
.y16a{bottom:346.869600pt;}
.y80{bottom:365.186400pt;}
.y1d2{bottom:365.197067pt;}
.y1eb{bottom:365.207733pt;}
.y20f{bottom:365.230400pt;}
.y39{bottom:365.246933pt;}
.y1a9{bottom:365.345067pt;}
.y56{bottom:365.358933pt;}
.yae{bottom:365.377733pt;}
.y104{bottom:365.382400pt;}
.y14d{bottom:365.433600pt;}
.y169{bottom:365.531600pt;}
.y1d1{bottom:383.863067pt;}
.y1ea{bottom:383.873733pt;}
.y20e{bottom:383.896400pt;}
.y38{bottom:383.908933pt;}
.y1a8{bottom:384.007067pt;}
.y55{bottom:384.020933pt;}
.yad{bottom:384.039733pt;}
.y103{bottom:384.044400pt;}
.y14c{bottom:384.095600pt;}
.y168{bottom:384.193600pt;}
.y6{bottom:395.571733pt;}
.yd6{bottom:402.519733pt;}
.y1e9{bottom:402.539733pt;}
.y20d{bottom:402.562400pt;}
.y37{bottom:402.570933pt;}
.y7f{bottom:402.608400pt;}
.y54{bottom:402.682933pt;}
.yac{bottom:402.701733pt;}
.y102{bottom:402.706400pt;}
.y14b{bottom:402.757600pt;}
.y167{bottom:402.855600pt;}
.yd5{bottom:421.186400pt;}
.y1d0{bottom:421.195067pt;}
.y1e8{bottom:421.205733pt;}
.y20c{bottom:421.228400pt;}
.y36{bottom:421.232933pt;}
.y7e{bottom:421.270400pt;}
.y53{bottom:421.344933pt;}
.y1a7{bottom:421.345067pt;}
.yab{bottom:421.363733pt;}
.y101{bottom:421.368400pt;}
.y14a{bottom:421.419600pt;}
.y1cf{bottom:439.861067pt;}
.y1e7{bottom:439.871733pt;}
.y35{bottom:439.894933pt;}
.y7d{bottom:439.932400pt;}
.y52{bottom:440.006933pt;}
.y1a6{bottom:440.007067pt;}
.yaa{bottom:440.025733pt;}
.y100{bottom:440.030400pt;}
.y149{bottom:440.081600pt;}
.y166{bottom:440.193600pt;}
.y1ce{bottom:458.527067pt;}
.y34{bottom:458.556933pt;}
.y20b{bottom:458.560400pt;}
.y7c{bottom:458.594400pt;}
.y51{bottom:458.668933pt;}
.y1a5{bottom:458.669067pt;}
.ya9{bottom:458.687733pt;}
.yff{bottom:458.692400pt;}
.y148{bottom:458.743600pt;}
.y165{bottom:458.855600pt;}
.y1cd{bottom:477.193067pt;}
.y1e6{bottom:477.203733pt;}
.y33{bottom:477.218933pt;}
.y20a{bottom:477.226400pt;}
.y7b{bottom:477.256400pt;}
.y22f{bottom:477.260400pt;}
.yd4{bottom:477.293733pt;}
.y50{bottom:477.330933pt;}
.y1a4{bottom:477.331067pt;}
.ya8{bottom:477.349733pt;}
.yfe{bottom:477.354400pt;}
.y147{bottom:477.405600pt;}
.y164{bottom:477.517600pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y1e5{bottom:495.869733pt;}
.y32{bottom:495.880933pt;}
.y209{bottom:495.892400pt;}
.y7a{bottom:495.918400pt;}
.y22e{bottom:495.926400pt;}
.yd3{bottom:495.955733pt;}
.y4f{bottom:495.992933pt;}
.y1a3{bottom:495.993067pt;}
.ya7{bottom:496.011733pt;}
.yfd{bottom:496.016400pt;}
.y146{bottom:496.067600pt;}
.y163{bottom:496.179600pt;}
.y1cc{bottom:514.525067pt;}
.y1e4{bottom:514.535733pt;}
.y31{bottom:514.542933pt;}
.y208{bottom:514.558400pt;}
.y79{bottom:514.580400pt;}
.y22d{bottom:514.592400pt;}
.yd2{bottom:514.617733pt;}
.y4e{bottom:514.654933pt;}
.y1a2{bottom:514.655067pt;}
.yfc{bottom:514.678400pt;}
.y145{bottom:514.729600pt;}
.y162{bottom:514.841600pt;}
.y1cb{bottom:533.191067pt;}
.y1e3{bottom:533.201733pt;}
.y30{bottom:533.204933pt;}
.y207{bottom:533.224400pt;}
.y78{bottom:533.242400pt;}
.y22c{bottom:533.258400pt;}
.y127{bottom:533.279600pt;}
.yd1{bottom:533.279733pt;}
.y4d{bottom:533.316933pt;}
.y1a1{bottom:533.317067pt;}
.yfb{bottom:533.340400pt;}
.ya6{bottom:533.349733pt;}
.y13e{bottom:533.377600pt;}
.y161{bottom:533.503600pt;}
.y1ca{bottom:551.857067pt;}
.y2f{bottom:551.866933pt;}
.y206{bottom:551.890400pt;}
.y77{bottom:551.904400pt;}
.y22b{bottom:551.924400pt;}
.y126{bottom:551.941600pt;}
.yd0{bottom:551.941733pt;}
.y1a0{bottom:551.979067pt;}
.yfa{bottom:552.002400pt;}
.ya5{bottom:552.011733pt;}
.y13d{bottom:552.039600pt;}
.y144{bottom:552.067600pt;}
.y160{bottom:552.165600pt;}
.y4{bottom:560.905067pt;}
.y2e{bottom:570.528933pt;}
.y1e2{bottom:570.533733pt;}
.y205{bottom:570.556400pt;}
.y76{bottom:570.566400pt;}
.y22a{bottom:570.590400pt;}
.y125{bottom:570.603600pt;}
.ycf{bottom:570.603733pt;}
.y19f{bottom:570.641067pt;}
.y4c{bottom:570.654933pt;}
.yf9{bottom:570.664400pt;}
.ya4{bottom:570.673733pt;}
.y13c{bottom:570.701600pt;}
.y143{bottom:570.729600pt;}
.y15f{bottom:570.827600pt;}
.y1c9{bottom:589.189067pt;}
.y2d{bottom:589.190933pt;}
.y1e1{bottom:589.199733pt;}
.y204{bottom:589.222400pt;}
.y75{bottom:589.228400pt;}
.y124{bottom:589.265600pt;}
.yce{bottom:589.265733pt;}
.y19e{bottom:589.303067pt;}
.y4b{bottom:589.316933pt;}
.yf8{bottom:589.326400pt;}
.ya3{bottom:589.335733pt;}
.y13b{bottom:589.363600pt;}
.y142{bottom:589.391600pt;}
.y15e{bottom:589.489600pt;}
.y2c{bottom:607.852933pt;}
.y1c8{bottom:607.855067pt;}
.y1d{bottom:607.865733pt;}
.y74{bottom:607.890400pt;}
.y229{bottom:607.922400pt;}
.y123{bottom:607.927600pt;}
.ycd{bottom:607.927733pt;}
.y19d{bottom:607.965067pt;}
.y4a{bottom:607.978933pt;}
.ya2{bottom:607.997733pt;}
.y141{bottom:608.053600pt;}
.y1c7{bottom:626.521067pt;}
.y1c{bottom:626.531733pt;}
.y73{bottom:626.552400pt;}
.y203{bottom:626.554400pt;}
.y228{bottom:626.588400pt;}
.y122{bottom:626.589600pt;}
.ycc{bottom:626.589733pt;}
.y49{bottom:626.640933pt;}
.ya1{bottom:626.659733pt;}
.yf7{bottom:626.664400pt;}
.y13a{bottom:626.701600pt;}
.y140{bottom:626.715600pt;}
.y15d{bottom:626.827600pt;}
.y2b{bottom:645.186400pt;}
.y1c6{bottom:645.187067pt;}
.y1b{bottom:645.197733pt;}
.y72{bottom:645.214400pt;}
.y202{bottom:645.220400pt;}
.y121{bottom:645.251600pt;}
.ycb{bottom:645.251733pt;}
.y227{bottom:645.254400pt;}
.y48{bottom:645.302933pt;}
.y19c{bottom:645.303067pt;}
.ya0{bottom:645.321733pt;}
.yf6{bottom:645.326400pt;}
.y139{bottom:645.363600pt;}
.y13f{bottom:645.377600pt;}
.y15c{bottom:645.489600pt;}
.y1c5{bottom:663.853067pt;}
.y1a{bottom:663.863733pt;}
.y71{bottom:663.876400pt;}
.y201{bottom:663.886400pt;}
.y120{bottom:663.913600pt;}
.yca{bottom:663.913733pt;}
.y226{bottom:663.920400pt;}
.y19b{bottom:663.965067pt;}
.y9f{bottom:663.983733pt;}
.yf5{bottom:663.988400pt;}
.y138{bottom:664.025600pt;}
.y3{bottom:668.212133pt;}
.y17c{bottom:682.515733pt;}
.y19{bottom:682.529733pt;}
.y70{bottom:682.538400pt;}
.y200{bottom:682.552400pt;}
.y11f{bottom:682.575600pt;}
.yc9{bottom:682.575733pt;}
.y19a{bottom:682.627067pt;}
.y9e{bottom:682.645733pt;}
.yf4{bottom:682.650400pt;}
.y137{bottom:682.687600pt;}
.y17b{bottom:701.186400pt;}
.y18{bottom:701.195733pt;}
.y6f{bottom:701.200400pt;}
.y1ff{bottom:701.218400pt;}
.y11e{bottom:701.237600pt;}
.yc8{bottom:701.237733pt;}
.y225{bottom:701.252400pt;}
.y199{bottom:701.289067pt;}
.y9d{bottom:701.307733pt;}
.yf3{bottom:701.312400pt;}
.y136{bottom:701.349600pt;}
.y2{bottom:703.938667pt;}
.y2a{bottom:719.853067pt;}
.y17{bottom:719.861733pt;}
.y6e{bottom:719.862400pt;}
.y1fe{bottom:719.884400pt;}
.yc7{bottom:719.899733pt;}
.y224{bottom:719.918400pt;}
.y198{bottom:719.951067pt;}
.y9c{bottom:719.969733pt;}
.yf2{bottom:719.974400pt;}
.y135{bottom:720.011600pt;}
.y29{bottom:738.519733pt;}
.y1e0{bottom:738.527733pt;}
.yc6{bottom:738.561733pt;}
.y11d{bottom:738.575600pt;}
.y223{bottom:738.584400pt;}
.y197{bottom:738.613067pt;}
.y9b{bottom:738.631733pt;}
.yf1{bottom:738.636400pt;}
.y134{bottom:738.673600pt;}
.y28{bottom:757.186400pt;}
.y16{bottom:757.193733pt;}
.y6d{bottom:757.200400pt;}
.y1fd{bottom:757.216400pt;}
.yc5{bottom:757.223733pt;}
.y11c{bottom:757.237600pt;}
.y222{bottom:757.250400pt;}
.y196{bottom:757.275067pt;}
.y9a{bottom:757.293733pt;}
.yf0{bottom:757.298400pt;}
.y133{bottom:757.335600pt;}
.y1c4{bottom:757.471067pt;}
.y1{bottom:763.655867pt;}
.y27{bottom:775.853067pt;}
.y15{bottom:775.859733pt;}
.y6c{bottom:775.862400pt;}
.y1fc{bottom:775.882400pt;}
.y11b{bottom:775.899600pt;}
.y195{bottom:775.937067pt;}
.y99{bottom:775.955733pt;}
.yef{bottom:775.960400pt;}
.y132{bottom:775.997600pt;}
.y1c3{bottom:776.133067pt;}
.y26{bottom:794.519733pt;}
.y6b{bottom:794.524400pt;}
.y14{bottom:794.525733pt;}
.y1fb{bottom:794.548400pt;}
.y11a{bottom:794.561600pt;}
.yc4{bottom:794.561733pt;}
.y221{bottom:794.582400pt;}
.y194{bottom:794.599067pt;}
.y98{bottom:794.617733pt;}
.yee{bottom:794.622400pt;}
.y131{bottom:794.659600pt;}
.y1c2{bottom:794.795067pt;}
.y25{bottom:813.186400pt;}
.y13{bottom:813.191733pt;}
.y1fa{bottom:813.214400pt;}
.y119{bottom:813.223600pt;}
.yc3{bottom:813.223733pt;}
.y220{bottom:813.248400pt;}
.y193{bottom:813.261067pt;}
.y97{bottom:813.279733pt;}
.yed{bottom:813.284400pt;}
.y130{bottom:813.321600pt;}
.y1c1{bottom:813.457067pt;}
.y24{bottom:831.853067pt;}
.y12{bottom:831.857733pt;}
.y1f9{bottom:831.880400pt;}
.y118{bottom:831.885600pt;}
.yc2{bottom:831.885733pt;}
.y192{bottom:831.923067pt;}
.y96{bottom:831.941733pt;}
.yec{bottom:831.946400pt;}
.y12f{bottom:831.983600pt;}
.y1c0{bottom:832.119067pt;}
.y23{bottom:850.519733pt;}
.y11{bottom:850.523733pt;}
.y117{bottom:850.547600pt;}
.yc1{bottom:850.547733pt;}
.y21f{bottom:850.580400pt;}
.y191{bottom:850.585067pt;}
.y95{bottom:850.603733pt;}
.yeb{bottom:850.608400pt;}
.y12e{bottom:850.645600pt;}
.y1bf{bottom:850.781067pt;}
.y22{bottom:869.186400pt;}
.y10{bottom:869.189733pt;}
.y116{bottom:869.209600pt;}
.yc0{bottom:869.209733pt;}
.y1f8{bottom:869.212400pt;}
.y21e{bottom:869.246400pt;}
.y190{bottom:869.247067pt;}
.y94{bottom:869.265733pt;}
.yea{bottom:869.270400pt;}
.y12d{bottom:869.307600pt;}
.y1be{bottom:869.443067pt;}
.y6a{bottom:887.853067pt;}
.yf{bottom:887.855733pt;}
.y115{bottom:887.871600pt;}
.ybf{bottom:887.871733pt;}
.y1f7{bottom:887.878400pt;}
.y18f{bottom:887.909067pt;}
.y21d{bottom:887.912400pt;}
.y93{bottom:887.927733pt;}
.ye9{bottom:887.932400pt;}
.y12c{bottom:887.969600pt;}
.y1bd{bottom:888.105067pt;}
.ye{bottom:906.521733pt;}
.y114{bottom:906.533600pt;}
.ybe{bottom:906.533733pt;}
.y1f6{bottom:906.544400pt;}
.y21c{bottom:906.578400pt;}
.y92{bottom:906.589733pt;}
.ye8{bottom:906.594400pt;}
.y12b{bottom:906.631600pt;}
.y1bc{bottom:906.767067pt;}
.y21{bottom:919.853067pt;}
.yd{bottom:925.187733pt;}
.y113{bottom:925.195600pt;}
.y69{bottom:925.195733pt;}
.y1f5{bottom:925.210400pt;}
.y21b{bottom:925.244400pt;}
.y18e{bottom:925.247067pt;}
.y91{bottom:925.251733pt;}
.ye7{bottom:925.256400pt;}
.y12a{bottom:925.293600pt;}
.y1bb{bottom:925.429067pt;}
.y20{bottom:943.853067pt;}
.yc{bottom:943.853733pt;}
.y112{bottom:943.857600pt;}
.y68{bottom:943.857733pt;}
.y1f4{bottom:943.876400pt;}
.y18d{bottom:943.909067pt;}
.y21a{bottom:943.910400pt;}
.y90{bottom:943.913733pt;}
.ye6{bottom:943.918400pt;}
.y129{bottom:943.955600pt;}
.y1ba{bottom:944.091067pt;}
.y111{bottom:962.519600pt;}
.yb{bottom:962.519733pt;}
.y1f3{bottom:962.542400pt;}
.y18c{bottom:962.571067pt;}
.y8f{bottom:962.575733pt;}
.y219{bottom:962.576400pt;}
.ye5{bottom:962.580400pt;}
.y128{bottom:962.617600pt;}
.y1b9{bottom:962.753067pt;}
.y1f{bottom:970.072533pt;}
.y65{bottom:1055.145600pt;}
.y1e{bottom:1055.853067pt;}
.y17a{bottom:1057.034933pt;}
.h10{height:38.773333pt;}
.hb{height:39.466667pt;}
.h11{height:39.816000pt;}
.h8{height:41.434667pt;}
.hf{height:44.912000pt;}
.h7{height:46.016000pt;}
.h12{height:46.309333pt;}
.ha{height:47.360000pt;}
.he{height:48.426667pt;}
.hd{height:48.746667pt;}
.hc{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h9{height:116.160000pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.xc{left:90.710533pt;}
.x2{left:198.425200pt;}
.xb{left:415.762533pt;}
.x5{left:572.308667pt;}
.x6{left:869.291333pt;}
.x8{left:876.128667pt;}
.x9{left:883.382000pt;}
.xd{left:929.763733pt;}
.x7{left:1209.449333pt;}
.xa{left:1224.555333pt;}
}




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