
    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_7c2ea0b7ed3e7b83f279b67d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918500;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_0fa28d8603ca4ca40880e74e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_80ec1c41ef00a3ae0dd16077.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943500;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_7d2cf713a503d294e8068763.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091000;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_6de46113ebb3d96b2cbb5af5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.744500;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_718d390a46663f6927fdbd86.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.092500;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_e6b71c68aed6977d9dd9f23c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739000;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_fc6a23d5d02b678b5314fbee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_75b973ac95e26cced0ec8dbe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732500;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_ab719d1eec5e981ec1cdaafe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956500;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_612ef07071fe1ec331fab0cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923000;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_6097d50ddc1292b0dac98aa0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.266000;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_612ef07071fe1ec331fab0cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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_6097d50ddc1292b0dac98aa0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.266000;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_e6236a5bd6090e178480d21f.woff2')format("woff");}.fff{font-family:fff;line-height:0.744500;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_62f072429671d58c57fcc7bc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.890500;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_3a44406e5a85ddc299565d41.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.897000;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_a5c82e33194b655579815fb5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938000;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_a5c82e33194b655579815fb5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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_7079e43eba35cf2e9b1ba67e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a5c82e33194b655579815fb5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938000;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_9222608e19158e8f841460ad.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.900000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.900000px;}
.v5{vertical-align:-15.840000px;}
.v8{vertical-align:-14.803800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.512000px;}
.v9{vertical-align:14.850000px;}
.v6{vertical-align:17.280600px;}
.v7{vertical-align:20.250600px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:32.400600px;}
.ls4{letter-spacing:-10.752000px;}
.ls10{letter-spacing:-1.152000px;}
.ls5{letter-spacing:-1.050000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.015000px;}
.lsb{letter-spacing:0.016800px;}
.ls1b{letter-spacing:0.019800px;}
.ls1a{letter-spacing:0.020400px;}
.lsf{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.046200px;}
.lsa{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.054600px;}
.ls16{letter-spacing:0.061200px;}
.ls13{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.082800px;}
.ls14{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.109800px;}
.lse{letter-spacing:0.115800px;}
.ls15{letter-spacing:0.160200px;}
.ls2{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.576000px;}
.lsd{letter-spacing:1.248000px;}
.ls9{letter-spacing:2.898000px;}
.ls1d{letter-spacing:4.800000px;}
.ls1e{letter-spacing:5.280000px;}
.ls1{letter-spacing:6.000000px;}
.ls11{letter-spacing:6.720000px;}
.ls6{letter-spacing:8.400000px;}
.ls0{letter-spacing:10.800000px;}
.ls1c{letter-spacing:356.760000px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.ws1b{word-spacing:-48.576000px;}
.ws18{word-spacing:-48.432000px;}
.wsd{word-spacing:-48.288000px;}
.wsb{word-spacing:-48.000000px;}
.wsa4{word-spacing:-47.712000px;}
.ws76{word-spacing:-45.000000px;}
.wsa{word-spacing:-43.038000px;}
.ws3{word-spacing:-42.000000px;}
.ws1{word-spacing:-40.950000px;}
.ws19{word-spacing:-40.560000px;}
.ws24{word-spacing:-40.416000px;}
.ws16{word-spacing:-40.368000px;}
.ws2a{word-spacing:-40.176000px;}
.ws30{word-spacing:-40.128000px;}
.ws22{word-spacing:-40.032000px;}
.ws21{word-spacing:-39.888000px;}
.ws1d{word-spacing:-39.792000px;}
.ws2b{word-spacing:-39.744000px;}
.ws55{word-spacing:-39.696000px;}
.ws4e{word-spacing:-39.648000px;}
.ws29{word-spacing:-39.504000px;}
.ws20{word-spacing:-39.456000px;}
.ws1f{word-spacing:-39.120000px;}
.ws44{word-spacing:-39.024000px;}
.ws52{word-spacing:-38.688000px;}
.ws4c{word-spacing:-38.592000px;}
.ws23{word-spacing:-38.208000px;}
.ws50{word-spacing:-38.112000px;}
.ws45{word-spacing:-38.064000px;}
.ws10{word-spacing:-37.968000px;}
.ws75{word-spacing:-37.776000px;}
.ws51{word-spacing:-37.728000px;}
.ws32{word-spacing:-37.656000px;}
.ws56{word-spacing:-37.584000px;}
.ws1a{word-spacing:-37.560000px;}
.ws4f{word-spacing:-37.296000px;}
.ws1e{word-spacing:-36.720000px;}
.ws7e{word-spacing:-36.495000px;}
.ws85{word-spacing:-36.360000px;}
.ws89{word-spacing:-36.180000px;}
.ws1c{word-spacing:-36.144000px;}
.ws8a{word-spacing:-36.072000px;}
.ws9d{word-spacing:-35.955000px;}
.ws9c{word-spacing:-35.932500px;}
.ws7a{word-spacing:-35.910000px;}
.wsa0{word-spacing:-35.820000px;}
.wsa1{word-spacing:-35.797500px;}
.ws4b{word-spacing:-35.760000px;}
.ws54{word-spacing:-35.664000px;}
.ws8d{word-spacing:-35.640000px;}
.ws17{word-spacing:-35.520000px;}
.ws72{word-spacing:-35.472000px;}
.ws4a{word-spacing:-35.376000px;}
.wsf{word-spacing:-35.328000px;}
.ws86{word-spacing:-35.302500px;}
.ws91{word-spacing:-35.239500px;}
.ws90{word-spacing:-35.212500px;}
.ws28{word-spacing:-34.944000px;}
.ws96{word-spacing:-34.740000px;}
.ws7b{word-spacing:-34.605000px;}
.ws7c{word-spacing:-34.524000px;}
.ws73{word-spacing:-34.512000px;}
.wse{word-spacing:-34.296000px;}
.ws25{word-spacing:-34.128000px;}
.ws31{word-spacing:-34.032000px;}
.ws8c{word-spacing:-33.840000px;}
.ws93{word-spacing:-33.835500px;}
.ws92{word-spacing:-33.795000px;}
.ws4d{word-spacing:-33.648000px;}
.ws46{word-spacing:-33.600000px;}
.ws88{word-spacing:-33.435000px;}
.ws35{word-spacing:-33.408000px;}
.ws53{word-spacing:-33.264000px;}
.ws87{word-spacing:-33.165000px;}
.ws97{word-spacing:-33.075000px;}
.ws9f{word-spacing:-33.043500px;}
.ws9e{word-spacing:-33.030000px;}
.ws79{word-spacing:-32.805000px;}
.ws7d{word-spacing:-32.647500px;}
.ws4{word-spacing:-32.550000px;}
.ws7f{word-spacing:-32.490000px;}
.ws80{word-spacing:-31.950000px;}
.ws81{word-spacing:-31.927500px;}
.ws8f{word-spacing:-31.815000px;}
.ws27{word-spacing:-31.776000px;}
.ws84{word-spacing:-31.680000px;}
.ws26{word-spacing:-31.536000px;}
.ws77{word-spacing:-30.915000px;}
.ws7{word-spacing:-29.400000px;}
.wsa3{word-spacing:-28.215000px;}
.ws99{word-spacing:-28.102500px;}
.ws98{word-spacing:-28.080000px;}
.ws49{word-spacing:-27.744000px;}
.ws47{word-spacing:-27.696000px;}
.ws94{word-spacing:-27.270000px;}
.ws95{word-spacing:-27.225000px;}
.ws8e{word-spacing:-22.230000px;}
.ws8b{word-spacing:-22.050000px;}
.wsc{word-spacing:-20.580000px;}
.ws0{word-spacing:-20.496000px;}
.ws74{word-spacing:-16.464000px;}
.ws2f{word-spacing:-14.580000px;}
.ws48{word-spacing:-12.288000px;}
.ws59{word-spacing:-11.520000px;}
.ws33{word-spacing:-11.232000px;}
.ws2{word-spacing:-10.752000px;}
.ws78{word-spacing:-10.530000px;}
.ws8{word-spacing:-10.206000px;}
.wsa2{word-spacing:-10.170000px;}
.ws70{word-spacing:-8.601600px;}
.ws13{word-spacing:-8.400000px;}
.ws34{word-spacing:-7.862400px;}
.ws38{word-spacing:-7.654500px;}
.ws6{word-spacing:-7.526400px;}
.ws43{word-spacing:-6.720000px;}
.ws14{word-spacing:-6.000000px;}
.ws83{word-spacing:-5.280000px;}
.ws82{word-spacing:-4.800000px;}
.ws2c{word-spacing:-2.898000px;}
.ws12{word-spacing:-1.386000px;}
.ws2d{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.288000px;}
.ws9b{word-spacing:-0.180000px;}
.ws37{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.050400px;}
.ws36{word-spacing:-0.048000px;}
.ws11{word-spacing:0.000000px;}
.wsa5{word-spacing:0.288000px;}
.ws42{word-spacing:1.152000px;}
.ws67{word-spacing:3.168000px;}
.ws9a{word-spacing:4.455000px;}
.ws66{word-spacing:9.360000px;}
.ws3b{word-spacing:71.460000px;}
.ws71{word-spacing:101.531621px;}
.ws41{word-spacing:101.880000px;}
.ws63{word-spacing:129.960000px;}
.ws3d{word-spacing:132.615000px;}
.ws5c{word-spacing:137.385000px;}
.ws6b{word-spacing:141.075000px;}
.ws69{word-spacing:144.241009px;}
.ws68{word-spacing:146.518243px;}
.ws5f{word-spacing:169.380000px;}
.ws61{word-spacing:170.865000px;}
.ws62{word-spacing:171.405000px;}
.ws65{word-spacing:187.785000px;}
.ws5b{word-spacing:188.325000px;}
.ws5e{word-spacing:189.495000px;}
.ws5d{word-spacing:190.035000px;}
.ws3c{word-spacing:193.680000px;}
.ws6f{word-spacing:195.660000px;}
.ws40{word-spacing:223.650000px;}
.ws6e{word-spacing:227.295000px;}
.ws6a{word-spacing:234.495000px;}
.ws3e{word-spacing:235.080000px;}
.ws57{word-spacing:241.695000px;}
.ws60{word-spacing:246.571200px;}
.ws3a{word-spacing:257.130000px;}
.ws39{word-spacing:262.575000px;}
.ws64{word-spacing:272.670000px;}
.ws5a{word-spacing:272.670600px;}
.ws6d{word-spacing:297.630000px;}
.ws3f{word-spacing:303.705000px;}
.ws6c{word-spacing:365.265000px;}
.ws58{word-spacing:768.240000px;}
.ws15{word-spacing:2457.244200px;}
._5{margin-left:-26.629200px;}
._9{margin-left:-13.770000px;}
._e{margin-left:-12.420000px;}
._26{margin-left:-11.352000px;}
._27{margin-left:-6.321600px;}
._c{margin-left:-5.256000px;}
._f{margin-left:-4.200000px;}
._4{margin-left:-3.034800px;}
._0{margin-left:-1.092000px;}
._6{width:1.357200px;}
._3{width:3.150000px;}
._7{width:4.446000px;}
._b{width:5.616000px;}
._8{width:6.804000px;}
._a{width:8.100000px;}
._34{width:9.273000px;}
._35{width:10.410000px;}
._d{width:11.472000px;}
._10{width:15.744000px;}
._37{width:20.119500px;}
._36{width:21.915000px;}
._13{width:65.835000px;}
._15{width:75.960000px;}
._14{width:124.515000px;}
._1b{width:126.045000px;}
._33{width:133.290000px;}
._1c{width:151.515000px;}
._2e{width:174.845400px;}
._24{width:178.245000px;}
._2d{width:182.250000px;}
._2a{width:187.785000px;}
._2b{width:199.305000px;}
._2c{width:200.970000px;}
._18{width:205.200000px;}
._29{width:206.369400px;}
._25{width:219.960000px;}
._1a{width:225.180000px;}
._23{width:240.390000px;}
._1d{width:246.600000px;}
._1e{width:249.300000px;}
._21{width:251.280000px;}
._1f{width:268.650000px;}
._16{width:273.240000px;}
._28{width:276.705000px;}
._30{width:279.990000px;}
._19{width:281.835000px;}
._22{width:296.865000px;}
._32{width:300.060000px;}
._20{width:302.535000px;}
._31{width:319.095000px;}
._2f{width:343.035000px;}
._17{width:348.705000px;}
._1{width:791.112000px;}
._11{width:1035.384600px;}
._12{width:1219.266000px;}
._2{width:1336.566000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:29.400000px;}
.fsd{font-size:31.500000px;}
.fsb{font-size:33.600000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs10{font-size:46.234800px;}
.fs9{font-size:48.000000px;}
.fsf{font-size:48.451800px;}
.fs6{font-size:50.400000px;}
.fs11{font-size:52.014000px;}
.fs3{font-size:54.000000px;}
.fse{font-size:54.316200px;}
.fs1{font-size:57.540000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:78.120000px;}
.fs2{font-size:78.540000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:1.194900px;}
.y16d{bottom:4.223700px;}
.y14e{bottom:4.383150px;}
.yd8{bottom:4.410600px;}
.yac{bottom:6.795150px;}
.y14d{bottom:34.362000px;}
.y1{bottom:40.619700px;}
.y2{bottom:43.544700px;}
.ye{bottom:63.862650px;}
.yb0{bottom:76.414500px;}
.y1a2{bottom:76.444950px;}
.y77{bottom:76.453650px;}
.yaf{bottom:76.504800px;}
.y1c9{bottom:76.744950px;}
.y13b{bottom:77.939100px;}
.ycf{bottom:77.944800px;}
.y112{bottom:78.215100px;}
.yf9{bottom:78.319950px;}
.yd{bottom:78.867150px;}
.y20a{bottom:83.057400px;}
.yb1{bottom:83.914650px;}
.yb8{bottom:83.917200px;}
.yb2{bottom:83.918550px;}
.yab{bottom:89.200500px;}
.y1c8{bottom:92.494950px;}
.yc{bottom:93.871650px;}
.y1a1{bottom:95.944950px;}
.y76{bottom:95.953650px;}
.yae{bottom:95.995650px;}
.yaa{bottom:96.004800px;}
.y13a{bottom:97.439100px;}
.yce{bottom:97.444800px;}
.y111{bottom:97.715100px;}
.yf8{bottom:97.819950px;}
.y209{bottom:98.807400px;}
.y1c7{bottom:108.244950px;}
.y208{bottom:114.557400px;}
.y1a0{bottom:115.444950px;}
.y75{bottom:115.453650px;}
.ya9{bottom:115.504800px;}
.y139{bottom:116.939100px;}
.ycd{bottom:116.944800px;}
.y110{bottom:117.215100px;}
.yf7{bottom:117.319950px;}
.y1c6{bottom:123.994950px;}
.y207{bottom:130.307400px;}
.y40{bottom:134.617650px;}
.y19f{bottom:134.944950px;}
.y74{bottom:134.953650px;}
.ya8{bottom:135.004800px;}
.y3c{bottom:135.421650px;}
.y138{bottom:136.439100px;}
.ycc{bottom:136.444800px;}
.y10f{bottom:136.715100px;}
.yf6{bottom:136.819950px;}
.y1c5{bottom:139.744950px;}
.y206{bottom:146.057400px;}
.y3f{bottom:154.117650px;}
.y19e{bottom:154.444950px;}
.y73{bottom:154.453650px;}
.ya7{bottom:154.504800px;}
.y3b{bottom:154.921650px;}
.y1c4{bottom:155.494950px;}
.y137{bottom:155.939100px;}
.yd4{bottom:155.944800px;}
.y102{bottom:156.319950px;}
.y205{bottom:161.807400px;}
.ycb{bottom:165.694800px;}
.y16a{bottom:166.112250px;}
.y1c3{bottom:171.244950px;}
.y3e{bottom:173.617650px;}
.y19d{bottom:173.944950px;}
.y72{bottom:173.953650px;}
.ya6{bottom:174.004800px;}
.y136{bottom:175.439100px;}
.yd3{bottom:175.444800px;}
.yf5{bottom:175.819950px;}
.y204{bottom:177.557400px;}
.y165{bottom:181.937700px;}
.y1c2{bottom:186.994950px;}
.y3d{bottom:193.117650px;}
.y203{bottom:193.307400px;}
.y19c{bottom:193.444950px;}
.y71{bottom:193.453650px;}
.ya5{bottom:193.504800px;}
.y3a{bottom:193.921650px;}
.y135{bottom:194.939100px;}
.yd2{bottom:194.944800px;}
.y101{bottom:195.319950px;}
.y164{bottom:198.437700px;}
.y147{bottom:199.597500px;}
.y1c1{bottom:202.744950px;}
.yca{bottom:204.694800px;}
.y202{bottom:209.057400px;}
.y19b{bottom:212.944950px;}
.y70{bottom:212.953650px;}
.ya4{bottom:213.004800px;}
.y134{bottom:214.439100px;}
.yd1{bottom:214.444800px;}
.y100{bottom:214.819950px;}
.y163{bottom:214.937700px;}
.y1c0{bottom:218.494950px;}
.y201{bottom:224.807400px;}
.y19a{bottom:232.444950px;}
.y6f{bottom:232.453650px;}
.ya3{bottom:232.504800px;}
.y133{bottom:233.939100px;}
.yd0{bottom:233.944800px;}
.y1bf{bottom:234.244950px;}
.yf4{bottom:234.319950px;}
.y200{bottom:240.557400px;}
.y169{bottom:241.846500px;}
.y1be{bottom:249.994950px;}
.y199{bottom:251.944950px;}
.y6e{bottom:251.953650px;}
.ya2{bottom:252.004800px;}
.y132{bottom:253.439100px;}
.yc9{bottom:253.444800px;}
.yf3{bottom:253.819950px;}
.y1ff{bottom:256.307400px;}
.yb3{bottom:264.357300px;}
.y16b{bottom:264.553200px;}
.y39{bottom:264.624900px;}
.y1bd{bottom:265.744950px;}
.y198{bottom:271.444950px;}
.y6d{bottom:271.453650px;}
.ya1{bottom:271.504800px;}
.y1fe{bottom:272.057400px;}
.y131{bottom:272.939100px;}
.yc8{bottom:272.944800px;}
.yf2{bottom:273.319950px;}
.y166{bottom:276.061200px;}
.y1bc{bottom:281.494950px;}
.y38{bottom:284.124900px;}
.y1fd{bottom:287.807400px;}
.y197{bottom:290.944950px;}
.y6c{bottom:290.953650px;}
.ya0{bottom:291.004800px;}
.y130{bottom:292.439100px;}
.yc7{bottom:292.444800px;}
.yf1{bottom:292.819950px;}
.y1bb{bottom:297.244950px;}
.y1fc{bottom:303.557400px;}
.y196{bottom:310.444950px;}
.y6b{bottom:310.453650px;}
.y9f{bottom:310.504800px;}
.y12f{bottom:311.939100px;}
.yc6{bottom:311.944800px;}
.yf0{bottom:312.319950px;}
.y1ba{bottom:312.994950px;}
.y1fb{bottom:319.307400px;}
.y167{bottom:319.545029px;}
.y37{bottom:320.020650px;}
.y1b9{bottom:328.744950px;}
.y195{bottom:329.944950px;}
.y6a{bottom:329.953650px;}
.y9e{bottom:330.004800px;}
.y12e{bottom:331.439100px;}
.yc5{bottom:331.444800px;}
.yef{bottom:331.819950px;}
.y16c{bottom:334.253700px;}
.y1fa{bottom:335.057400px;}
.y36{bottom:342.525150px;}
.y1b8{bottom:344.494950px;}
.y194{bottom:349.444950px;}
.y69{bottom:349.453650px;}
.y9d{bottom:349.504800px;}
.y1f9{bottom:350.807400px;}
.y12d{bottom:350.939100px;}
.yc4{bottom:350.944800px;}
.yff{bottom:351.319950px;}
.y1b7{bottom:360.244950px;}
.yee{bottom:361.069950px;}
.y168{bottom:363.780174px;}
.y35{bottom:365.029650px;}
.y1f8{bottom:366.557400px;}
.y193{bottom:368.944950px;}
.y68{bottom:368.953650px;}
.y9c{bottom:369.004800px;}
.y12c{bottom:370.439100px;}
.yc3{bottom:370.444800px;}
.yfe{bottom:370.819950px;}
.y1b6{bottom:375.994950px;}
.y1f7{bottom:382.307400px;}
.y34{bottom:387.534150px;}
.y192{bottom:388.444950px;}
.y67{bottom:388.453650px;}
.y9b{bottom:388.504800px;}
.y12b{bottom:389.939100px;}
.yc2{bottom:389.944800px;}
.yfd{bottom:390.319950px;}
.y1b5{bottom:391.744950px;}
.y1f6{bottom:398.057400px;}
.y1b4{bottom:407.494950px;}
.y191{bottom:407.944950px;}
.y66{bottom:407.953650px;}
.y9a{bottom:408.004800px;}
.y12a{bottom:409.439100px;}
.yc1{bottom:409.444800px;}
.yed{bottom:409.819950px;}
.y33{bottom:410.038650px;}
.y1f5{bottom:413.807400px;}
.y1b3{bottom:423.244950px;}
.y190{bottom:427.444950px;}
.y65{bottom:427.453650px;}
.y99{bottom:427.504800px;}
.y129{bottom:428.939100px;}
.yc0{bottom:428.944800px;}
.yec{bottom:429.319950px;}
.y1f4{bottom:429.557400px;}
.y32{bottom:432.543150px;}
.y1b2{bottom:438.994950px;}
.y1f3{bottom:445.307400px;}
.y18f{bottom:446.944950px;}
.y64{bottom:446.953650px;}
.y98{bottom:447.004800px;}
.y128{bottom:448.439100px;}
.ybf{bottom:448.444800px;}
.yeb{bottom:448.819950px;}
.y1b1{bottom:454.744950px;}
.y31{bottom:455.047650px;}
.y1f2{bottom:461.057400px;}
.y162{bottom:466.103700px;}
.y18e{bottom:466.444950px;}
.y63{bottom:466.453650px;}
.y97{bottom:466.504800px;}
.y127{bottom:467.939100px;}
.ybe{bottom:467.944800px;}
.yea{bottom:468.319950px;}
.y1b0{bottom:470.494950px;}
.y1f1{bottom:476.807400px;}
.y30{bottom:477.552150px;}
.y18d{bottom:485.944950px;}
.y62{bottom:485.953650px;}
.y96{bottom:486.004800px;}
.y1af{bottom:486.244950px;}
.y161{bottom:487.163700px;}
.y126{bottom:487.439100px;}
.ybd{bottom:487.444800px;}
.ye9{bottom:487.819950px;}
.y21{bottom:487.950150px;}
.y1f0{bottom:492.557400px;}
.y2f{bottom:500.056650px;}
.y1ae{bottom:501.994950px;}
.y20{bottom:502.954650px;}
.y18c{bottom:505.444950px;}
.y61{bottom:505.453650px;}
.y95{bottom:505.504800px;}
.y125{bottom:506.939100px;}
.ybc{bottom:506.944800px;}
.ye8{bottom:507.319950px;}
.y160{bottom:508.223700px;}
.y1ef{bottom:508.307400px;}
.y1ad{bottom:517.744950px;}
.y1f{bottom:517.959150px;}
.y2e{bottom:522.561150px;}
.y1ee{bottom:524.057400px;}
.y18b{bottom:524.944950px;}
.y60{bottom:524.953650px;}
.y94{bottom:525.004800px;}
.y124{bottom:526.439100px;}
.ybb{bottom:526.444800px;}
.ye7{bottom:526.819950px;}
.y15f{bottom:529.283700px;}
.y1e{bottom:532.963650px;}
.y1ac{bottom:533.494950px;}
.y1ed{bottom:539.807400px;}
.y18a{bottom:544.444950px;}
.y5f{bottom:544.453650px;}
.y93{bottom:544.504800px;}
.y2d{bottom:545.065650px;}
.y123{bottom:545.939100px;}
.yba{bottom:545.944800px;}
.ye6{bottom:546.319950px;}
.y1ab{bottom:549.244950px;}
.y15e{bottom:550.343700px;}
.y1ec{bottom:555.557400px;}
.y1d{bottom:562.962150px;}
.yb4{bottom:563.607300px;}
.y189{bottom:563.944950px;}
.y5e{bottom:563.953650px;}
.y92{bottom:564.004800px;}
.y1aa{bottom:564.994950px;}
.y122{bottom:565.439100px;}
.yb9{bottom:565.444800px;}
.ye5{bottom:565.819950px;}
.y2c{bottom:567.570150px;}
.y1eb{bottom:571.307400px;}
.y15d{bottom:574.249950px;}
.y1c{bottom:577.966650px;}
.y1a9{bottom:580.744950px;}
.y188{bottom:583.444950px;}
.y5d{bottom:583.453650px;}
.y91{bottom:583.504800px;}
.y121{bottom:584.939100px;}
.yfc{bottom:585.319950px;}
.y1ea{bottom:587.057400px;}
.y2b{bottom:590.074650px;}
.y1b{bottom:592.971150px;}
.ye4{bottom:595.069950px;}
.y1a8{bottom:596.494950px;}
.yd6{bottom:597.525600px;}
.y15c{bottom:602.281050px;}
.y1e9{bottom:602.807400px;}
.y187{bottom:602.944950px;}
.y5c{bottom:602.953650px;}
.y120{bottom:604.439100px;}
.yfb{bottom:604.819950px;}
.y1a{bottom:607.975650px;}
.y1a7{bottom:612.244950px;}
.y2a{bottom:612.579150px;}
.y90{bottom:612.754800px;}
.yd5{bottom:614.025600px;}
.y1e8{bottom:618.557400px;}
.y15b{bottom:618.781050px;}
.y186{bottom:622.444950px;}
.y5b{bottom:622.453650px;}
.y19{bottom:622.980150px;}
.y11f{bottom:623.939100px;}
.yfa{bottom:624.319950px;}
.y8f{bottom:632.254800px;}
.y1e7{bottom:634.307400px;}
.y29{bottom:635.083650px;}
.y15a{bottom:635.281050px;}
.y1a6{bottom:637.732950px;}
.yd7{bottom:640.935000px;}
.y185{bottom:641.944950px;}
.y5a{bottom:641.953650px;}
.y11e{bottom:643.439100px;}
.ye3{bottom:643.819950px;}
.y1e6{bottom:650.057400px;}
.y18{bottom:652.978650px;}
.y28{bottom:657.588150px;}
.y184{bottom:661.444950px;}
.y59{bottom:661.453650px;}
.y11d{bottom:662.939100px;}
.ye2{bottom:663.319950px;}
.y1e5{bottom:665.807400px;}
.y17{bottom:672.708150px;}
.y27{bottom:680.092650px;}
.y183{bottom:680.944950px;}
.y58{bottom:680.953650px;}
.y8e{bottom:681.004800px;}
.y1e4{bottom:681.557400px;}
.y159{bottom:682.411200px;}
.y11c{bottom:682.439100px;}
.ye1{bottom:682.819950px;}
.y1a5{bottom:683.188950px;}
.y16{bottom:688.224150px;}
.y1e3{bottom:697.307400px;}
.y182{bottom:700.444950px;}
.y57{bottom:700.453650px;}
.y8d{bottom:700.504800px;}
.y11b{bottom:701.939100px;}
.ye0{bottom:702.319950px;}
.y26{bottom:702.597150px;}
.y15{bottom:703.228650px;}
.y158{bottom:703.471200px;}
.y1a4{bottom:712.444950px;}
.y1e2{bottom:713.057400px;}
.y181{bottom:719.944950px;}
.y56{bottom:719.953650px;}
.y8c{bottom:720.004800px;}
.y11a{bottom:721.439100px;}
.ydf{bottom:721.819950px;}
.y14{bottom:722.958150px;}
.y157{bottom:724.531200px;}
.y25{bottom:725.101650px;}
.y1e1{bottom:728.807400px;}
.yb5{bottom:731.230950px;}
.y13{bottom:738.478650px;}
.y180{bottom:739.444950px;}
.y55{bottom:739.453650px;}
.y8b{bottom:739.504800px;}
.y119{bottom:740.939100px;}
.yde{bottom:741.319950px;}
.y1e0{bottom:744.557400px;}
.y156{bottom:745.591200px;}
.y24{bottom:747.606150px;}
.y12{bottom:758.208150px;}
.y17f{bottom:758.944950px;}
.y54{bottom:758.953650px;}
.y8a{bottom:759.004800px;}
.y1df{bottom:760.307400px;}
.y118{bottom:760.439100px;}
.ydd{bottom:760.819950px;}
.y155{bottom:769.497450px;}
.y152{bottom:769.497600px;}
.y23{bottom:770.110650px;}
.y11{bottom:773.724150px;}
.y21f{bottom:776.048550px;}
.y1de{bottom:776.057400px;}
.y17e{bottom:778.444950px;}
.y53{bottom:778.453650px;}
.y89{bottom:778.504800px;}
.y117{bottom:779.939100px;}
.ydc{bottom:780.319950px;}
.y153{bottom:785.247600px;}
.y10{bottom:788.728650px;}
.y224{bottom:791.048550px;}
.y21e{bottom:791.798550px;}
.y1dd{bottom:791.807400px;}
.y22{bottom:792.610650px;}
.y154{bottom:797.003700px;}
.y17d{bottom:797.944950px;}
.y52{bottom:797.953650px;}
.y88{bottom:798.004800px;}
.y116{bottom:799.439100px;}
.ydb{bottom:799.819950px;}
.y21d{bottom:807.548550px;}
.y1dc{bottom:807.557400px;}
.yf{bottom:808.458150px;}
.y223{bottom:810.548550px;}
.y17c{bottom:817.444950px;}
.y51{bottom:817.453650px;}
.y87{bottom:817.504800px;}
.y115{bottom:818.939100px;}
.yda{bottom:819.319950px;}
.y21c{bottom:823.298550px;}
.y1db{bottom:823.307400px;}
.y151{bottom:825.034950px;}
.y222{bottom:830.048550px;}
.y17b{bottom:836.944950px;}
.y50{bottom:836.953650px;}
.y86{bottom:837.004800px;}
.y114{bottom:838.439100px;}
.yd9{bottom:838.819950px;}
.y21b{bottom:839.048550px;}
.y1da{bottom:839.057400px;}
.y150{bottom:841.534950px;}
.y1a3{bottom:846.700950px;}
.y221{bottom:849.548550px;}
.y21a{bottom:854.798550px;}
.y1d9{bottom:854.807400px;}
.yb{bottom:855.685500px;}
.y17a{bottom:856.444950px;}
.y4f{bottom:856.453650px;}
.y85{bottom:856.504800px;}
.y113{bottom:857.939100px;}
.y14f{bottom:858.034950px;}
.y220{bottom:869.048550px;}
.y219{bottom:870.548550px;}
.y1d8{bottom:870.557400px;}
.y179{bottom:875.944950px;}
.y4e{bottom:875.953650px;}
.y84{bottom:876.004800px;}
.y10e{bottom:880.685550px;}
.ya{bottom:882.685500px;}
.y218{bottom:886.298550px;}
.y1d7{bottom:886.307400px;}
.y146{bottom:890.199000px;}
.y13f{bottom:890.199150px;}
.yb6{bottom:894.355950px;}
.y178{bottom:895.444950px;}
.y4d{bottom:895.453650px;}
.y83{bottom:895.504800px;}
.y10d{bottom:901.741800px;}
.y217{bottom:902.048550px;}
.y1d6{bottom:902.057400px;}
.y13e{bottom:906.699150px;}
.y9{bottom:909.685500px;}
.y145{bottom:913.832560px;}
.y177{bottom:914.944950px;}
.y4c{bottom:914.953650px;}
.y82{bottom:915.004800px;}
.y14c{bottom:915.326514px;}
.y216{bottom:917.798550px;}
.y1d5{bottom:917.807400px;}
.y10c{bottom:922.797750px;}
.y13d{bottom:923.199150px;}
.y140{bottom:924.673650px;}
.y148{bottom:925.368150px;}
.y215{bottom:933.548550px;}
.y1d4{bottom:933.557400px;}
.y176{bottom:934.444950px;}
.y4b{bottom:934.453650px;}
.y81{bottom:934.504800px;}
.y13c{bottom:939.699150px;}
.y10b{bottom:943.854000px;}
.y214{bottom:949.298550px;}
.y1d3{bottom:949.307400px;}
.y175{bottom:953.944950px;}
.y4a{bottom:953.953650px;}
.y80{bottom:954.004800px;}
.y141{bottom:964.004399px;}
.y10a{bottom:964.910250px;}
.y213{bottom:965.048550px;}
.y1d2{bottom:965.057400px;}
.y8{bottom:967.506300px;}
.y174{bottom:973.444950px;}
.y49{bottom:973.453650px;}
.y7f{bottom:973.504800px;}
.y149{bottom:979.076970px;}
.y212{bottom:980.798550px;}
.y1d1{bottom:980.807400px;}
.y109{bottom:985.958700px;}
.y173{bottom:992.944950px;}
.y48{bottom:992.953650px;}
.y7e{bottom:993.004800px;}
.y211{bottom:996.548550px;}
.y1d0{bottom:996.557400px;}
.y7{bottom:1002.012300px;}
.y142{bottom:1003.359373px;}
.y108{bottom:1007.018700px;}
.y210{bottom:1012.298550px;}
.y1cf{bottom:1012.307400px;}
.y172{bottom:1012.444950px;}
.y47{bottom:1012.453650px;}
.y7d{bottom:1012.504800px;}
.y20f{bottom:1028.048550px;}
.y1ce{bottom:1028.057400px;}
.y107{bottom:1028.078700px;}
.y171{bottom:1031.944950px;}
.y46{bottom:1031.953650px;}
.y14a{bottom:1032.785791px;}
.y106{bottom:1033.388700px;}
.y7c{bottom:1041.754800px;}
.y143{bottom:1042.678009px;}
.y20e{bottom:1043.798550px;}
.y1cd{bottom:1043.807400px;}
.y105{bottom:1049.138700px;}
.y170{bottom:1051.444950px;}
.y45{bottom:1051.453650px;}
.yb7{bottom:1055.230950px;}
.y6{bottom:1056.012300px;}
.y20d{bottom:1059.548550px;}
.y1cc{bottom:1059.557400px;}
.y16f{bottom:1070.944950px;}
.y44{bottom:1070.953650px;}
.y104{bottom:1073.947950px;}
.y20c{bottom:1075.298550px;}
.y1cb{bottom:1075.307400px;}
.y7b{bottom:1080.754800px;}
.y144{bottom:1082.032983px;}
.y14b{bottom:1086.494611px;}
.y16e{bottom:1090.444950px;}
.y103{bottom:1090.447950px;}
.y43{bottom:1090.453650px;}
.y20b{bottom:1091.048550px;}
.y1ca{bottom:1091.057400px;}
.y5{bottom:1096.573650px;}
.y4{bottom:1115.319150px;}
.y3{bottom:1118.319150px;}
.y42{bottom:1126.684950px;}
.y79{bottom:1126.685700px;}
.y7a{bottom:1129.263000px;}
.y41{bottom:1129.384950px;}
.y78{bottom:1129.385700px;}
.h14{height:17.248500px;}
.h17{height:18.528000px;}
.h9{height:22.535100px;}
.h16{height:26.073600px;}
.ha{height:26.709900px;}
.h12{height:30.429000px;}
.hf{height:30.576000px;}
.h11{height:30.941400px;}
.h4{height:32.193000px;}
.h26{height:32.535000px;}
.h27{height:33.658934px;}
.h2b{height:34.492500px;}
.h24{height:35.232000px;}
.h22{height:35.272910px;}
.h18{height:37.248000px;}
.h29{height:37.866192px;}
.h2{height:38.157000px;}
.hb{height:38.304000px;}
.h25{height:39.312000px;}
.h1d{height:39.542194px;}
.h6{height:39.771000px;}
.h1b{height:40.882500px;}
.h19{height:41.040000px;}
.h20{height:41.055000px;}
.h21{height:41.056200px;}
.h1f{height:41.086200px;}
.h15{height:43.354200px;}
.he{height:43.608000px;}
.h2a{height:43.776000px;}
.h3{height:44.104410px;}
.h1e{height:47.354400px;}
.h13{height:47.623200px;}
.h1a{height:48.978600px;}
.hd{height:49.059000px;}
.hc{height:54.720000px;}
.h10{height:60.191460px;}
.h5{height:60.200910px;}
.h8{height:69.243000px;}
.h7{height:98.496000px;}
.h28{height:176.028000px;}
.h23{height:209.905500px;}
.h1c{height:459.169500px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w3{width:70.065000px;}
.w2{width:77.025000px;}
.w6{width:364.479000px;}
.w5{width:501.732000px;}
.w4{width:755.998500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.878200px;}
.x2f{left:11.581350px;}
.x16{left:32.945550px;}
.x2b{left:53.577600px;}
.x1{left:67.182000px;}
.xb{left:69.732000px;}
.x35{left:74.665500px;}
.x26{left:76.181100px;}
.x31{left:78.732300px;}
.x12{left:86.690250px;}
.xe{left:89.418150px;}
.x29{left:93.766550px;}
.xc{left:98.805900px;}
.xd{left:101.225100px;}
.x2a{left:131.631632px;}
.x37{left:135.569700px;}
.x34{left:145.096350px;}
.x36{left:159.462000px;}
.x38{left:163.194150px;}
.x27{left:181.121100px;}
.x32{left:182.198550px;}
.x5{left:198.209250px;}
.x6{left:200.839350px;}
.x13{left:215.508000px;}
.x30{left:224.146800px;}
.x15{left:238.571700px;}
.x33{left:285.654150px;}
.x17{left:292.534200px;}
.x2e{left:295.860300px;}
.x9{left:311.250000px;}
.x2c{left:337.268000px;}
.x7{left:342.184050px;}
.x8{left:344.814300px;}
.x18{left:358.872000px;}
.x24{left:369.382200px;}
.x2d{left:374.491095px;}
.x19{left:381.933750px;}
.x1a{left:428.936250px;}
.xa{left:458.729100px;}
.xf{left:461.406150px;}
.x39{left:476.681100px;}
.x25{left:478.162500px;}
.x10{left:480.918150px;}
.x1b{left:554.944200px;}
.x1c{left:571.444200px;}
.x28{left:596.976300px;}
.x1d{left:599.475450px;}
.x1f{left:626.981700px;}
.x1e{left:642.731700px;}
.x20{left:666.637800px;}
.x21{left:687.697800px;}
.x4{left:694.746900px;}
.x22{left:708.757800px;}
.x23{left:729.817800px;}
.x11{left:767.875500px;}
.x2{left:791.384700px;}
.x3{left:794.014950px;}
@media print{
.v3{vertical-align:-16.800000pt;}
.v5{vertical-align:-14.080000pt;}
.v8{vertical-align:-13.158933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.344000pt;}
.v9{vertical-align:13.200000pt;}
.v6{vertical-align:15.360533pt;}
.v7{vertical-align:18.000533pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:28.800533pt;}
.ls4{letter-spacing:-9.557333pt;}
.ls10{letter-spacing:-1.024000pt;}
.ls5{letter-spacing:-0.933333pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.013333pt;}
.lsb{letter-spacing:0.014933pt;}
.ls1b{letter-spacing:0.017600pt;}
.ls1a{letter-spacing:0.018133pt;}
.lsf{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.041067pt;}
.lsa{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.048533pt;}
.ls16{letter-spacing:0.054400pt;}
.ls13{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.073600pt;}
.ls14{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.097600pt;}
.lse{letter-spacing:0.102933pt;}
.ls15{letter-spacing:0.142400pt;}
.ls2{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.512000pt;}
.lsd{letter-spacing:1.109333pt;}
.ls9{letter-spacing:2.576000pt;}
.ls1d{letter-spacing:4.266667pt;}
.ls1e{letter-spacing:4.693333pt;}
.ls1{letter-spacing:5.333333pt;}
.ls11{letter-spacing:5.973333pt;}
.ls6{letter-spacing:7.466667pt;}
.ls0{letter-spacing:9.600000pt;}
.ls1c{letter-spacing:317.120000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws1b{word-spacing:-43.178667pt;}
.ws18{word-spacing:-43.050667pt;}
.wsd{word-spacing:-42.922667pt;}
.wsb{word-spacing:-42.666667pt;}
.wsa4{word-spacing:-42.410667pt;}
.ws76{word-spacing:-40.000000pt;}
.wsa{word-spacing:-38.256000pt;}
.ws3{word-spacing:-37.333333pt;}
.ws1{word-spacing:-36.400000pt;}
.ws19{word-spacing:-36.053333pt;}
.ws24{word-spacing:-35.925333pt;}
.ws16{word-spacing:-35.882667pt;}
.ws2a{word-spacing:-35.712000pt;}
.ws30{word-spacing:-35.669333pt;}
.ws22{word-spacing:-35.584000pt;}
.ws21{word-spacing:-35.456000pt;}
.ws1d{word-spacing:-35.370667pt;}
.ws2b{word-spacing:-35.328000pt;}
.ws55{word-spacing:-35.285333pt;}
.ws4e{word-spacing:-35.242667pt;}
.ws29{word-spacing:-35.114667pt;}
.ws20{word-spacing:-35.072000pt;}
.ws1f{word-spacing:-34.773333pt;}
.ws44{word-spacing:-34.688000pt;}
.ws52{word-spacing:-34.389333pt;}
.ws4c{word-spacing:-34.304000pt;}
.ws23{word-spacing:-33.962667pt;}
.ws50{word-spacing:-33.877333pt;}
.ws45{word-spacing:-33.834667pt;}
.ws10{word-spacing:-33.749333pt;}
.ws75{word-spacing:-33.578667pt;}
.ws51{word-spacing:-33.536000pt;}
.ws32{word-spacing:-33.472000pt;}
.ws56{word-spacing:-33.408000pt;}
.ws1a{word-spacing:-33.386667pt;}
.ws4f{word-spacing:-33.152000pt;}
.ws1e{word-spacing:-32.640000pt;}
.ws7e{word-spacing:-32.440000pt;}
.ws85{word-spacing:-32.320000pt;}
.ws89{word-spacing:-32.160000pt;}
.ws1c{word-spacing:-32.128000pt;}
.ws8a{word-spacing:-32.064000pt;}
.ws9d{word-spacing:-31.960000pt;}
.ws9c{word-spacing:-31.940000pt;}
.ws7a{word-spacing:-31.920000pt;}
.wsa0{word-spacing:-31.840000pt;}
.wsa1{word-spacing:-31.820000pt;}
.ws4b{word-spacing:-31.786667pt;}
.ws54{word-spacing:-31.701333pt;}
.ws8d{word-spacing:-31.680000pt;}
.ws17{word-spacing:-31.573333pt;}
.ws72{word-spacing:-31.530667pt;}
.ws4a{word-spacing:-31.445333pt;}
.wsf{word-spacing:-31.402667pt;}
.ws86{word-spacing:-31.380000pt;}
.ws91{word-spacing:-31.324000pt;}
.ws90{word-spacing:-31.300000pt;}
.ws28{word-spacing:-31.061333pt;}
.ws96{word-spacing:-30.880000pt;}
.ws7b{word-spacing:-30.760000pt;}
.ws7c{word-spacing:-30.688000pt;}
.ws73{word-spacing:-30.677333pt;}
.wse{word-spacing:-30.485333pt;}
.ws25{word-spacing:-30.336000pt;}
.ws31{word-spacing:-30.250667pt;}
.ws8c{word-spacing:-30.080000pt;}
.ws93{word-spacing:-30.076000pt;}
.ws92{word-spacing:-30.040000pt;}
.ws4d{word-spacing:-29.909333pt;}
.ws46{word-spacing:-29.866667pt;}
.ws88{word-spacing:-29.720000pt;}
.ws35{word-spacing:-29.696000pt;}
.ws53{word-spacing:-29.568000pt;}
.ws87{word-spacing:-29.480000pt;}
.ws97{word-spacing:-29.400000pt;}
.ws9f{word-spacing:-29.372000pt;}
.ws9e{word-spacing:-29.360000pt;}
.ws79{word-spacing:-29.160000pt;}
.ws7d{word-spacing:-29.020000pt;}
.ws4{word-spacing:-28.933333pt;}
.ws7f{word-spacing:-28.880000pt;}
.ws80{word-spacing:-28.400000pt;}
.ws81{word-spacing:-28.380000pt;}
.ws8f{word-spacing:-28.280000pt;}
.ws27{word-spacing:-28.245333pt;}
.ws84{word-spacing:-28.160000pt;}
.ws26{word-spacing:-28.032000pt;}
.ws77{word-spacing:-27.480000pt;}
.ws7{word-spacing:-26.133333pt;}
.wsa3{word-spacing:-25.080000pt;}
.ws99{word-spacing:-24.980000pt;}
.ws98{word-spacing:-24.960000pt;}
.ws49{word-spacing:-24.661333pt;}
.ws47{word-spacing:-24.618667pt;}
.ws94{word-spacing:-24.240000pt;}
.ws95{word-spacing:-24.200000pt;}
.ws8e{word-spacing:-19.760000pt;}
.ws8b{word-spacing:-19.600000pt;}
.wsc{word-spacing:-18.293333pt;}
.ws0{word-spacing:-18.218667pt;}
.ws74{word-spacing:-14.634667pt;}
.ws2f{word-spacing:-12.960000pt;}
.ws48{word-spacing:-10.922667pt;}
.ws59{word-spacing:-10.240000pt;}
.ws33{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.557333pt;}
.ws78{word-spacing:-9.360000pt;}
.ws8{word-spacing:-9.072000pt;}
.wsa2{word-spacing:-9.040000pt;}
.ws70{word-spacing:-7.645867pt;}
.ws13{word-spacing:-7.466667pt;}
.ws34{word-spacing:-6.988800pt;}
.ws38{word-spacing:-6.804000pt;}
.ws6{word-spacing:-6.690133pt;}
.ws43{word-spacing:-5.973333pt;}
.ws14{word-spacing:-5.333333pt;}
.ws83{word-spacing:-4.693333pt;}
.ws82{word-spacing:-4.266667pt;}
.ws2c{word-spacing:-2.576000pt;}
.ws12{word-spacing:-1.232000pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.256000pt;}
.ws9b{word-spacing:-0.160000pt;}
.ws37{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.044800pt;}
.ws36{word-spacing:-0.042667pt;}
.ws11{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.256000pt;}
.ws42{word-spacing:1.024000pt;}
.ws67{word-spacing:2.816000pt;}
.ws9a{word-spacing:3.960000pt;}
.ws66{word-spacing:8.320000pt;}
.ws3b{word-spacing:63.520000pt;}
.ws71{word-spacing:90.250330pt;}
.ws41{word-spacing:90.560000pt;}
.ws63{word-spacing:115.520000pt;}
.ws3d{word-spacing:117.880000pt;}
.ws5c{word-spacing:122.120000pt;}
.ws6b{word-spacing:125.400000pt;}
.ws69{word-spacing:128.214230pt;}
.ws68{word-spacing:130.238438pt;}
.ws5f{word-spacing:150.560000pt;}
.ws61{word-spacing:151.880000pt;}
.ws62{word-spacing:152.360000pt;}
.ws65{word-spacing:166.920000pt;}
.ws5b{word-spacing:167.400000pt;}
.ws5e{word-spacing:168.440000pt;}
.ws5d{word-spacing:168.920000pt;}
.ws3c{word-spacing:172.160000pt;}
.ws6f{word-spacing:173.920000pt;}
.ws40{word-spacing:198.800000pt;}
.ws6e{word-spacing:202.040000pt;}
.ws6a{word-spacing:208.440000pt;}
.ws3e{word-spacing:208.960000pt;}
.ws57{word-spacing:214.840000pt;}
.ws60{word-spacing:219.174400pt;}
.ws3a{word-spacing:228.560000pt;}
.ws39{word-spacing:233.400000pt;}
.ws64{word-spacing:242.373333pt;}
.ws5a{word-spacing:242.373867pt;}
.ws6d{word-spacing:264.560000pt;}
.ws3f{word-spacing:269.960000pt;}
.ws6c{word-spacing:324.680000pt;}
.ws58{word-spacing:682.880000pt;}
.ws15{word-spacing:2184.217067pt;}
._5{margin-left:-23.670400pt;}
._9{margin-left:-12.240000pt;}
._e{margin-left:-11.040000pt;}
._26{margin-left:-10.090667pt;}
._27{margin-left:-5.619200pt;}
._c{margin-left:-4.672000pt;}
._f{margin-left:-3.733333pt;}
._4{margin-left:-2.697600pt;}
._0{margin-left:-0.970667pt;}
._6{width:1.206400pt;}
._3{width:2.800000pt;}
._7{width:3.952000pt;}
._b{width:4.992000pt;}
._8{width:6.048000pt;}
._a{width:7.200000pt;}
._34{width:8.242667pt;}
._35{width:9.253333pt;}
._d{width:10.197333pt;}
._10{width:13.994667pt;}
._37{width:17.884000pt;}
._36{width:19.480000pt;}
._13{width:58.520000pt;}
._15{width:67.520000pt;}
._14{width:110.680000pt;}
._1b{width:112.040000pt;}
._33{width:118.480000pt;}
._1c{width:134.680000pt;}
._2e{width:155.418133pt;}
._24{width:158.440000pt;}
._2d{width:162.000000pt;}
._2a{width:166.920000pt;}
._2b{width:177.160000pt;}
._2c{width:178.640000pt;}
._18{width:182.400000pt;}
._29{width:183.439467pt;}
._25{width:195.520000pt;}
._1a{width:200.160000pt;}
._23{width:213.680000pt;}
._1d{width:219.200000pt;}
._1e{width:221.600000pt;}
._21{width:223.360000pt;}
._1f{width:238.800000pt;}
._16{width:242.880000pt;}
._28{width:245.960000pt;}
._30{width:248.880000pt;}
._19{width:250.520000pt;}
._22{width:263.880000pt;}
._32{width:266.720000pt;}
._20{width:268.920000pt;}
._31{width:283.640000pt;}
._2f{width:304.920000pt;}
._17{width:309.960000pt;}
._1{width:703.210667pt;}
._11{width:920.341867pt;}
._12{width:1083.792000pt;}
._2{width:1188.058667pt;}
.fs7{font-size:26.133333pt;}
.fsd{font-size:28.000000pt;}
.fsb{font-size:29.866667pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs10{font-size:41.097600pt;}
.fs9{font-size:42.666667pt;}
.fsf{font-size:43.068267pt;}
.fs6{font-size:44.800000pt;}
.fs11{font-size:46.234667pt;}
.fs3{font-size:48.000000pt;}
.fse{font-size:48.281067pt;}
.fs1{font-size:51.146667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:69.440000pt;}
.fs2{font-size:69.813333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:1.062133pt;}
.y16d{bottom:3.754400pt;}
.y14e{bottom:3.896133pt;}
.yd8{bottom:3.920533pt;}
.yac{bottom:6.040133pt;}
.y14d{bottom:30.544000pt;}
.y1{bottom:36.106400pt;}
.y2{bottom:38.706400pt;}
.ye{bottom:56.766800pt;}
.yb0{bottom:67.924000pt;}
.y1a2{bottom:67.951067pt;}
.y77{bottom:67.958800pt;}
.yaf{bottom:68.004267pt;}
.y1c9{bottom:68.217733pt;}
.y13b{bottom:69.279200pt;}
.ycf{bottom:69.284267pt;}
.y112{bottom:69.524533pt;}
.yf9{bottom:69.617733pt;}
.yd{bottom:70.104133pt;}
.y20a{bottom:73.828800pt;}
.yb1{bottom:74.590800pt;}
.yb8{bottom:74.593067pt;}
.yb2{bottom:74.594267pt;}
.yab{bottom:79.289333pt;}
.y1c8{bottom:82.217733pt;}
.yc{bottom:83.441467pt;}
.y1a1{bottom:85.284400pt;}
.y76{bottom:85.292133pt;}
.yae{bottom:85.329467pt;}
.yaa{bottom:85.337600pt;}
.y13a{bottom:86.612533pt;}
.yce{bottom:86.617600pt;}
.y111{bottom:86.857867pt;}
.yf8{bottom:86.951067pt;}
.y209{bottom:87.828800pt;}
.y1c7{bottom:96.217733pt;}
.y208{bottom:101.828800pt;}
.y1a0{bottom:102.617733pt;}
.y75{bottom:102.625467pt;}
.ya9{bottom:102.670933pt;}
.y139{bottom:103.945867pt;}
.ycd{bottom:103.950933pt;}
.y110{bottom:104.191200pt;}
.yf7{bottom:104.284400pt;}
.y1c6{bottom:110.217733pt;}
.y207{bottom:115.828800pt;}
.y40{bottom:119.660133pt;}
.y19f{bottom:119.951067pt;}
.y74{bottom:119.958800pt;}
.ya8{bottom:120.004267pt;}
.y3c{bottom:120.374800pt;}
.y138{bottom:121.279200pt;}
.ycc{bottom:121.284267pt;}
.y10f{bottom:121.524533pt;}
.yf6{bottom:121.617733pt;}
.y1c5{bottom:124.217733pt;}
.y206{bottom:129.828800pt;}
.y3f{bottom:136.993467pt;}
.y19e{bottom:137.284400pt;}
.y73{bottom:137.292133pt;}
.ya7{bottom:137.337600pt;}
.y3b{bottom:137.708133pt;}
.y1c4{bottom:138.217733pt;}
.y137{bottom:138.612533pt;}
.yd4{bottom:138.617600pt;}
.y102{bottom:138.951067pt;}
.y205{bottom:143.828800pt;}
.ycb{bottom:147.284267pt;}
.y16a{bottom:147.655333pt;}
.y1c3{bottom:152.217733pt;}
.y3e{bottom:154.326800pt;}
.y19d{bottom:154.617733pt;}
.y72{bottom:154.625467pt;}
.ya6{bottom:154.670933pt;}
.y136{bottom:155.945867pt;}
.yd3{bottom:155.950933pt;}
.yf5{bottom:156.284400pt;}
.y204{bottom:157.828800pt;}
.y165{bottom:161.722400pt;}
.y1c2{bottom:166.217733pt;}
.y3d{bottom:171.660133pt;}
.y203{bottom:171.828800pt;}
.y19c{bottom:171.951067pt;}
.y71{bottom:171.958800pt;}
.ya5{bottom:172.004267pt;}
.y3a{bottom:172.374800pt;}
.y135{bottom:173.279200pt;}
.yd2{bottom:173.284267pt;}
.y101{bottom:173.617733pt;}
.y164{bottom:176.389067pt;}
.y147{bottom:177.420000pt;}
.y1c1{bottom:180.217733pt;}
.yca{bottom:181.950933pt;}
.y202{bottom:185.828800pt;}
.y19b{bottom:189.284400pt;}
.y70{bottom:189.292133pt;}
.ya4{bottom:189.337600pt;}
.y134{bottom:190.612533pt;}
.yd1{bottom:190.617600pt;}
.y100{bottom:190.951067pt;}
.y163{bottom:191.055733pt;}
.y1c0{bottom:194.217733pt;}
.y201{bottom:199.828800pt;}
.y19a{bottom:206.617733pt;}
.y6f{bottom:206.625467pt;}
.ya3{bottom:206.670933pt;}
.y133{bottom:207.945867pt;}
.yd0{bottom:207.950933pt;}
.y1bf{bottom:208.217733pt;}
.yf4{bottom:208.284400pt;}
.y200{bottom:213.828800pt;}
.y169{bottom:214.974667pt;}
.y1be{bottom:222.217733pt;}
.y199{bottom:223.951067pt;}
.y6e{bottom:223.958800pt;}
.ya2{bottom:224.004267pt;}
.y132{bottom:225.279200pt;}
.yc9{bottom:225.284267pt;}
.yf3{bottom:225.617733pt;}
.y1ff{bottom:227.828800pt;}
.yb3{bottom:234.984267pt;}
.y16b{bottom:235.158400pt;}
.y39{bottom:235.222133pt;}
.y1bd{bottom:236.217733pt;}
.y198{bottom:241.284400pt;}
.y6d{bottom:241.292133pt;}
.ya1{bottom:241.337600pt;}
.y1fe{bottom:241.828800pt;}
.y131{bottom:242.612533pt;}
.yc8{bottom:242.617600pt;}
.yf2{bottom:242.951067pt;}
.y166{bottom:245.387733pt;}
.y1bc{bottom:250.217733pt;}
.y38{bottom:252.555467pt;}
.y1fd{bottom:255.828800pt;}
.y197{bottom:258.617733pt;}
.y6c{bottom:258.625467pt;}
.ya0{bottom:258.670933pt;}
.y130{bottom:259.945867pt;}
.yc7{bottom:259.950933pt;}
.yf1{bottom:260.284400pt;}
.y1bb{bottom:264.217733pt;}
.y1fc{bottom:269.828800pt;}
.y196{bottom:275.951067pt;}
.y6b{bottom:275.958800pt;}
.y9f{bottom:276.004267pt;}
.y12f{bottom:277.279200pt;}
.yc6{bottom:277.284267pt;}
.yf0{bottom:277.617733pt;}
.y1ba{bottom:278.217733pt;}
.y1fb{bottom:283.828800pt;}
.y167{bottom:284.040026pt;}
.y37{bottom:284.462800pt;}
.y1b9{bottom:292.217733pt;}
.y195{bottom:293.284400pt;}
.y6a{bottom:293.292133pt;}
.y9e{bottom:293.337600pt;}
.y12e{bottom:294.612533pt;}
.yc5{bottom:294.617600pt;}
.yef{bottom:294.951067pt;}
.y16c{bottom:297.114400pt;}
.y1fa{bottom:297.828800pt;}
.y36{bottom:304.466800pt;}
.y1b8{bottom:306.217733pt;}
.y194{bottom:310.617733pt;}
.y69{bottom:310.625467pt;}
.y9d{bottom:310.670933pt;}
.y1f9{bottom:311.828800pt;}
.y12d{bottom:311.945867pt;}
.yc4{bottom:311.950933pt;}
.yff{bottom:312.284400pt;}
.y1b7{bottom:320.217733pt;}
.yee{bottom:320.951067pt;}
.y168{bottom:323.360155pt;}
.y35{bottom:324.470800pt;}
.y1f8{bottom:325.828800pt;}
.y193{bottom:327.951067pt;}
.y68{bottom:327.958800pt;}
.y9c{bottom:328.004267pt;}
.y12c{bottom:329.279200pt;}
.yc3{bottom:329.284267pt;}
.yfe{bottom:329.617733pt;}
.y1b6{bottom:334.217733pt;}
.y1f7{bottom:339.828800pt;}
.y34{bottom:344.474800pt;}
.y192{bottom:345.284400pt;}
.y67{bottom:345.292133pt;}
.y9b{bottom:345.337600pt;}
.y12b{bottom:346.612533pt;}
.yc2{bottom:346.617600pt;}
.yfd{bottom:346.951067pt;}
.y1b5{bottom:348.217733pt;}
.y1f6{bottom:353.828800pt;}
.y1b4{bottom:362.217733pt;}
.y191{bottom:362.617733pt;}
.y66{bottom:362.625467pt;}
.y9a{bottom:362.670933pt;}
.y12a{bottom:363.945867pt;}
.yc1{bottom:363.950933pt;}
.yed{bottom:364.284400pt;}
.y33{bottom:364.478800pt;}
.y1f5{bottom:367.828800pt;}
.y1b3{bottom:376.217733pt;}
.y190{bottom:379.951067pt;}
.y65{bottom:379.958800pt;}
.y99{bottom:380.004267pt;}
.y129{bottom:381.279200pt;}
.yc0{bottom:381.284267pt;}
.yec{bottom:381.617733pt;}
.y1f4{bottom:381.828800pt;}
.y32{bottom:384.482800pt;}
.y1b2{bottom:390.217733pt;}
.y1f3{bottom:395.828800pt;}
.y18f{bottom:397.284400pt;}
.y64{bottom:397.292133pt;}
.y98{bottom:397.337600pt;}
.y128{bottom:398.612533pt;}
.ybf{bottom:398.617600pt;}
.yeb{bottom:398.951067pt;}
.y1b1{bottom:404.217733pt;}
.y31{bottom:404.486800pt;}
.y1f2{bottom:409.828800pt;}
.y162{bottom:414.314400pt;}
.y18e{bottom:414.617733pt;}
.y63{bottom:414.625467pt;}
.y97{bottom:414.670933pt;}
.y127{bottom:415.945867pt;}
.ybe{bottom:415.950933pt;}
.yea{bottom:416.284400pt;}
.y1b0{bottom:418.217733pt;}
.y1f1{bottom:423.828800pt;}
.y30{bottom:424.490800pt;}
.y18d{bottom:431.951067pt;}
.y62{bottom:431.958800pt;}
.y96{bottom:432.004267pt;}
.y1af{bottom:432.217733pt;}
.y161{bottom:433.034400pt;}
.y126{bottom:433.279200pt;}
.ybd{bottom:433.284267pt;}
.ye9{bottom:433.617733pt;}
.y21{bottom:433.733467pt;}
.y1f0{bottom:437.828800pt;}
.y2f{bottom:444.494800pt;}
.y1ae{bottom:446.217733pt;}
.y20{bottom:447.070800pt;}
.y18c{bottom:449.284400pt;}
.y61{bottom:449.292133pt;}
.y95{bottom:449.337600pt;}
.y125{bottom:450.612533pt;}
.ybc{bottom:450.617600pt;}
.ye8{bottom:450.951067pt;}
.y160{bottom:451.754400pt;}
.y1ef{bottom:451.828800pt;}
.y1ad{bottom:460.217733pt;}
.y1f{bottom:460.408133pt;}
.y2e{bottom:464.498800pt;}
.y1ee{bottom:465.828800pt;}
.y18b{bottom:466.617733pt;}
.y60{bottom:466.625467pt;}
.y94{bottom:466.670933pt;}
.y124{bottom:467.945867pt;}
.ybb{bottom:467.950933pt;}
.ye7{bottom:468.284400pt;}
.y15f{bottom:470.474400pt;}
.y1e{bottom:473.745467pt;}
.y1ac{bottom:474.217733pt;}
.y1ed{bottom:479.828800pt;}
.y18a{bottom:483.951067pt;}
.y5f{bottom:483.958800pt;}
.y93{bottom:484.004267pt;}
.y2d{bottom:484.502800pt;}
.y123{bottom:485.279200pt;}
.yba{bottom:485.284267pt;}
.ye6{bottom:485.617733pt;}
.y1ab{bottom:488.217733pt;}
.y15e{bottom:489.194400pt;}
.y1ec{bottom:493.828800pt;}
.y1d{bottom:500.410800pt;}
.yb4{bottom:500.984267pt;}
.y189{bottom:501.284400pt;}
.y5e{bottom:501.292133pt;}
.y92{bottom:501.337600pt;}
.y1aa{bottom:502.217733pt;}
.y122{bottom:502.612533pt;}
.yb9{bottom:502.617600pt;}
.ye5{bottom:502.951067pt;}
.y2c{bottom:504.506800pt;}
.y1eb{bottom:507.828800pt;}
.y15d{bottom:510.444400pt;}
.y1c{bottom:513.748133pt;}
.y1a9{bottom:516.217733pt;}
.y188{bottom:518.617733pt;}
.y5d{bottom:518.625467pt;}
.y91{bottom:518.670933pt;}
.y121{bottom:519.945867pt;}
.yfc{bottom:520.284400pt;}
.y1ea{bottom:521.828800pt;}
.y2b{bottom:524.510800pt;}
.y1b{bottom:527.085467pt;}
.ye4{bottom:528.951067pt;}
.y1a8{bottom:530.217733pt;}
.yd6{bottom:531.133867pt;}
.y15c{bottom:535.360933pt;}
.y1e9{bottom:535.828800pt;}
.y187{bottom:535.951067pt;}
.y5c{bottom:535.958800pt;}
.y120{bottom:537.279200pt;}
.yfb{bottom:537.617733pt;}
.y1a{bottom:540.422800pt;}
.y1a7{bottom:544.217733pt;}
.y2a{bottom:544.514800pt;}
.y90{bottom:544.670933pt;}
.yd5{bottom:545.800533pt;}
.y1e8{bottom:549.828800pt;}
.y15b{bottom:550.027600pt;}
.y186{bottom:553.284400pt;}
.y5b{bottom:553.292133pt;}
.y19{bottom:553.760133pt;}
.y11f{bottom:554.612533pt;}
.yfa{bottom:554.951067pt;}
.y8f{bottom:562.004267pt;}
.y1e7{bottom:563.828800pt;}
.y29{bottom:564.518800pt;}
.y15a{bottom:564.694267pt;}
.y1a6{bottom:566.873733pt;}
.yd7{bottom:569.720000pt;}
.y185{bottom:570.617733pt;}
.y5a{bottom:570.625467pt;}
.y11e{bottom:571.945867pt;}
.ye3{bottom:572.284400pt;}
.y1e6{bottom:577.828800pt;}
.y18{bottom:580.425467pt;}
.y28{bottom:584.522800pt;}
.y184{bottom:587.951067pt;}
.y59{bottom:587.958800pt;}
.y11d{bottom:589.279200pt;}
.ye2{bottom:589.617733pt;}
.y1e5{bottom:591.828800pt;}
.y17{bottom:597.962800pt;}
.y27{bottom:604.526800pt;}
.y183{bottom:605.284400pt;}
.y58{bottom:605.292133pt;}
.y8e{bottom:605.337600pt;}
.y1e4{bottom:605.828800pt;}
.y159{bottom:606.587733pt;}
.y11c{bottom:606.612533pt;}
.ye1{bottom:606.951067pt;}
.y1a5{bottom:607.279067pt;}
.y16{bottom:611.754800pt;}
.y1e3{bottom:619.828800pt;}
.y182{bottom:622.617733pt;}
.y57{bottom:622.625467pt;}
.y8d{bottom:622.670933pt;}
.y11b{bottom:623.945867pt;}
.ye0{bottom:624.284400pt;}
.y26{bottom:624.530800pt;}
.y15{bottom:625.092133pt;}
.y158{bottom:625.307733pt;}
.y1a4{bottom:633.284400pt;}
.y1e2{bottom:633.828800pt;}
.y181{bottom:639.951067pt;}
.y56{bottom:639.958800pt;}
.y8c{bottom:640.004267pt;}
.y11a{bottom:641.279200pt;}
.ydf{bottom:641.617733pt;}
.y14{bottom:642.629467pt;}
.y157{bottom:644.027733pt;}
.y25{bottom:644.534800pt;}
.y1e1{bottom:647.828800pt;}
.yb5{bottom:649.983067pt;}
.y13{bottom:656.425467pt;}
.y180{bottom:657.284400pt;}
.y55{bottom:657.292133pt;}
.y8b{bottom:657.337600pt;}
.y119{bottom:658.612533pt;}
.yde{bottom:658.951067pt;}
.y1e0{bottom:661.828800pt;}
.y156{bottom:662.747733pt;}
.y24{bottom:664.538800pt;}
.y12{bottom:673.962800pt;}
.y17f{bottom:674.617733pt;}
.y54{bottom:674.625467pt;}
.y8a{bottom:674.670933pt;}
.y1df{bottom:675.828800pt;}
.y118{bottom:675.945867pt;}
.ydd{bottom:676.284400pt;}
.y155{bottom:683.997733pt;}
.y152{bottom:683.997867pt;}
.y23{bottom:684.542800pt;}
.y11{bottom:687.754800pt;}
.y21f{bottom:689.820933pt;}
.y1de{bottom:689.828800pt;}
.y17e{bottom:691.951067pt;}
.y53{bottom:691.958800pt;}
.y89{bottom:692.004267pt;}
.y117{bottom:693.279200pt;}
.ydc{bottom:693.617733pt;}
.y153{bottom:697.997867pt;}
.y10{bottom:701.092133pt;}
.y224{bottom:703.154267pt;}
.y21e{bottom:703.820933pt;}
.y1dd{bottom:703.828800pt;}
.y22{bottom:704.542800pt;}
.y154{bottom:708.447733pt;}
.y17d{bottom:709.284400pt;}
.y52{bottom:709.292133pt;}
.y88{bottom:709.337600pt;}
.y116{bottom:710.612533pt;}
.ydb{bottom:710.951067pt;}
.y21d{bottom:717.820933pt;}
.y1dc{bottom:717.828800pt;}
.yf{bottom:718.629467pt;}
.y223{bottom:720.487600pt;}
.y17c{bottom:726.617733pt;}
.y51{bottom:726.625467pt;}
.y87{bottom:726.670933pt;}
.y115{bottom:727.945867pt;}
.yda{bottom:728.284400pt;}
.y21c{bottom:731.820933pt;}
.y1db{bottom:731.828800pt;}
.y151{bottom:733.364400pt;}
.y222{bottom:737.820933pt;}
.y17b{bottom:743.951067pt;}
.y50{bottom:743.958800pt;}
.y86{bottom:744.004267pt;}
.y114{bottom:745.279200pt;}
.yd9{bottom:745.617733pt;}
.y21b{bottom:745.820933pt;}
.y1da{bottom:745.828800pt;}
.y150{bottom:748.031067pt;}
.y1a3{bottom:752.623067pt;}
.y221{bottom:755.154267pt;}
.y21a{bottom:759.820933pt;}
.y1d9{bottom:759.828800pt;}
.yb{bottom:760.609333pt;}
.y17a{bottom:761.284400pt;}
.y4f{bottom:761.292133pt;}
.y85{bottom:761.337600pt;}
.y113{bottom:762.612533pt;}
.y14f{bottom:762.697733pt;}
.y220{bottom:772.487600pt;}
.y219{bottom:773.820933pt;}
.y1d8{bottom:773.828800pt;}
.y179{bottom:778.617733pt;}
.y4e{bottom:778.625467pt;}
.y84{bottom:778.670933pt;}
.y10e{bottom:782.831600pt;}
.ya{bottom:784.609333pt;}
.y218{bottom:787.820933pt;}
.y1d7{bottom:787.828800pt;}
.y146{bottom:791.288000pt;}
.y13f{bottom:791.288133pt;}
.yb6{bottom:794.983067pt;}
.y178{bottom:795.951067pt;}
.y4d{bottom:795.958800pt;}
.y83{bottom:796.004267pt;}
.y10d{bottom:801.548267pt;}
.y217{bottom:801.820933pt;}
.y1d6{bottom:801.828800pt;}
.y13e{bottom:805.954800pt;}
.y9{bottom:808.609333pt;}
.y145{bottom:812.295609pt;}
.y177{bottom:813.284400pt;}
.y4c{bottom:813.292133pt;}
.y82{bottom:813.337600pt;}
.y14c{bottom:813.623568pt;}
.y216{bottom:815.820933pt;}
.y1d5{bottom:815.828800pt;}
.y10c{bottom:820.264667pt;}
.y13d{bottom:820.621467pt;}
.y140{bottom:821.932133pt;}
.y148{bottom:822.549467pt;}
.y215{bottom:829.820933pt;}
.y1d4{bottom:829.828800pt;}
.y176{bottom:830.617733pt;}
.y4b{bottom:830.625467pt;}
.y81{bottom:830.670933pt;}
.y13c{bottom:835.288133pt;}
.y10b{bottom:838.981333pt;}
.y214{bottom:843.820933pt;}
.y1d3{bottom:843.828800pt;}
.y175{bottom:847.951067pt;}
.y4a{bottom:847.958800pt;}
.y80{bottom:848.004267pt;}
.y141{bottom:856.892799pt;}
.y10a{bottom:857.698000pt;}
.y213{bottom:857.820933pt;}
.y1d2{bottom:857.828800pt;}
.y8{bottom:860.005600pt;}
.y174{bottom:865.284400pt;}
.y49{bottom:865.292133pt;}
.y7f{bottom:865.337600pt;}
.y149{bottom:870.290640pt;}
.y212{bottom:871.820933pt;}
.y1d1{bottom:871.828800pt;}
.y109{bottom:876.407733pt;}
.y173{bottom:882.617733pt;}
.y48{bottom:882.625467pt;}
.y7e{bottom:882.670933pt;}
.y211{bottom:885.820933pt;}
.y1d0{bottom:885.828800pt;}
.y7{bottom:890.677600pt;}
.y142{bottom:891.874998pt;}
.y108{bottom:895.127733pt;}
.y210{bottom:899.820933pt;}
.y1cf{bottom:899.828800pt;}
.y172{bottom:899.951067pt;}
.y47{bottom:899.958800pt;}
.y7d{bottom:900.004267pt;}
.y20f{bottom:913.820933pt;}
.y1ce{bottom:913.828800pt;}
.y107{bottom:913.847733pt;}
.y171{bottom:917.284400pt;}
.y46{bottom:917.292133pt;}
.y14a{bottom:918.031814pt;}
.y106{bottom:918.567733pt;}
.y7c{bottom:926.004267pt;}
.y143{bottom:926.824897pt;}
.y20e{bottom:927.820933pt;}
.y1cd{bottom:927.828800pt;}
.y105{bottom:932.567733pt;}
.y170{bottom:934.617733pt;}
.y45{bottom:934.625467pt;}
.yb7{bottom:937.983067pt;}
.y6{bottom:938.677600pt;}
.y20d{bottom:941.820933pt;}
.y1cc{bottom:941.828800pt;}
.y16f{bottom:951.951067pt;}
.y44{bottom:951.958800pt;}
.y104{bottom:954.620400pt;}
.y20c{bottom:955.820933pt;}
.y1cb{bottom:955.828800pt;}
.y7b{bottom:960.670933pt;}
.y144{bottom:961.807096pt;}
.y14b{bottom:965.772987pt;}
.y16e{bottom:969.284400pt;}
.y103{bottom:969.287067pt;}
.y43{bottom:969.292133pt;}
.y20b{bottom:969.820933pt;}
.y1ca{bottom:969.828800pt;}
.y5{bottom:974.732133pt;}
.y4{bottom:991.394800pt;}
.y3{bottom:994.061467pt;}
.y42{bottom:1001.497733pt;}
.y79{bottom:1001.498400pt;}
.y7a{bottom:1003.789333pt;}
.y41{bottom:1003.897733pt;}
.y78{bottom:1003.898400pt;}
.h14{height:15.332000pt;}
.h17{height:16.469333pt;}
.h9{height:20.031200pt;}
.h16{height:23.176533pt;}
.ha{height:23.742133pt;}
.h12{height:27.048000pt;}
.hf{height:27.178667pt;}
.h11{height:27.503467pt;}
.h4{height:28.616000pt;}
.h26{height:28.920000pt;}
.h27{height:29.919053pt;}
.h2b{height:30.660000pt;}
.h24{height:31.317333pt;}
.h22{height:31.353698pt;}
.h18{height:33.109333pt;}
.h29{height:33.658837pt;}
.h2{height:33.917333pt;}
.hb{height:34.048000pt;}
.h25{height:34.944000pt;}
.h1d{height:35.148617pt;}
.h6{height:35.352000pt;}
.h1b{height:36.340000pt;}
.h19{height:36.480000pt;}
.h20{height:36.493333pt;}
.h21{height:36.494400pt;}
.h1f{height:36.521067pt;}
.h15{height:38.537067pt;}
.he{height:38.762667pt;}
.h2a{height:38.912000pt;}
.h3{height:39.203920pt;}
.h1e{height:42.092800pt;}
.h13{height:42.331733pt;}
.h1a{height:43.536533pt;}
.hd{height:43.608000pt;}
.hc{height:48.640000pt;}
.h10{height:53.503520pt;}
.h5{height:53.511920pt;}
.h8{height:61.549333pt;}
.h7{height:87.552000pt;}
.h28{height:156.469333pt;}
.h23{height:186.582667pt;}
.h1c{height:408.150667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w3{width:62.280000pt;}
.w2{width:68.466667pt;}
.w6{width:323.981333pt;}
.w5{width:445.984000pt;}
.w4{width:671.998667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.225067pt;}
.x2f{left:10.294533pt;}
.x16{left:29.284933pt;}
.x2b{left:47.624533pt;}
.x1{left:59.717333pt;}
.xb{left:61.984000pt;}
.x35{left:66.369333pt;}
.x26{left:67.716533pt;}
.x31{left:69.984267pt;}
.x12{left:77.058000pt;}
.xe{left:79.482800pt;}
.x29{left:83.348044pt;}
.xc{left:87.827467pt;}
.xd{left:89.977867pt;}
.x2a{left:117.005895pt;}
.x37{left:120.506400pt;}
.x34{left:128.974533pt;}
.x36{left:141.744000pt;}
.x38{left:145.061467pt;}
.x27{left:160.996533pt;}
.x32{left:161.954267pt;}
.x5{left:176.186000pt;}
.x6{left:178.523867pt;}
.x13{left:191.562667pt;}
.x30{left:199.241600pt;}
.x15{left:212.063733pt;}
.x33{left:253.914800pt;}
.x17{left:260.030400pt;}
.x2e{left:262.986933pt;}
.x9{left:276.666667pt;}
.x2c{left:299.793778pt;}
.x7{left:304.163600pt;}
.x8{left:306.501600pt;}
.x18{left:318.997333pt;}
.x24{left:328.339733pt;}
.x2d{left:332.880973pt;}
.x19{left:339.496667pt;}
.x1a{left:381.276667pt;}
.xa{left:407.759200pt;}
.xf{left:410.138800pt;}
.x39{left:423.716533pt;}
.x25{left:425.033333pt;}
.x10{left:427.482800pt;}
.x1b{left:493.283733pt;}
.x1c{left:507.950400pt;}
.x28{left:530.645600pt;}
.x1d{left:532.867067pt;}
.x1f{left:557.317067pt;}
.x1e{left:571.317067pt;}
.x20{left:592.566933pt;}
.x21{left:611.286933pt;}
.x4{left:617.552800pt;}
.x22{left:630.006933pt;}
.x23{left:648.726933pt;}
.x11{left:682.556000pt;}
.x2{left:703.453067pt;}
.x3{left:705.791067pt;}
}




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