
    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_1bd2e9e13bf529a982ff19f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_9182d7717fe8bcf9d053ff18.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_918a7c079c974f0dfefd8fed.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cdd6ab1f063d9d6c98ad036c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.714232;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_2a8d75729e614a0dbb68bfac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_b82f443faa35d9995de276f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.429000;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_7e0452982ebe190df6fabfcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_137acfbb554508ef9864ef04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_5d53b18fc04fde5ccf8129da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.670000;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_c64dcb3f6ddf6e4fc13cff85.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_352d7208cc0f340cbdc88240.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_76b362ef9a43a4924cd04103.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.810000;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_fe2c0a3a298e7aef87b52690.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.829000;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_10dcd198cb36c69a2f0c353d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_de5387adefe0e0313aa56bae.woff2')format("woff");}.fff{font-family:fff;line-height:0.741211;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_6d3d421cdca7f2119bea2e95.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.669434;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_7d73e11b0d4f50a4b3288599.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.725000;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_44c35ba10f5cccdb004d2b84.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.514000;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_32864024b1d5a9f6d94e1dff.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919000;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_4297e319ac6227091a65f67a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.876000;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_a66ffe348fd5cbd87c82c04e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.888000;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_42051370a98548cea8b15ba4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.714046;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1bc038ccd0f88dd96dd4c09f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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;}
.m1{transform:matrix(0.000000,0.250005,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250005,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250005,-0.250000,0.000000,0,0);}
.m2{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);}
.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);}
.m3{transform:matrix(0.000000,-0.250007,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250007,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250007,0.250000,0.000000,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);}
.m4{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.696000px;}
.v4{vertical-align:-19.243789px;}
.v6{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.075285px;}
.v5{vertical-align:19.243789px;}
.v1{vertical-align:23.754000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.047821px;}
.lsd{letter-spacing:0.812950px;}
.ls2{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.988600px;}
.ls6{letter-spacing:2.988780px;}
.ls0{letter-spacing:2.990400px;}
.ls9{letter-spacing:9.105443px;}
.ls8{letter-spacing:19.427070px;}
.lsb{letter-spacing:19.593193px;}
.lsc{letter-spacing:19.594038px;}
.lsa{letter-spacing:22.495051px;}
.ls4{letter-spacing:29.887800px;}
.ls7{letter-spacing:35.865360px;}
.ls5{letter-spacing:715.358683px;}
.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;}
}
.ws3{word-spacing:-16.438350px;}
.ws1a{word-spacing:-14.920027px;}
.wsa7{word-spacing:-13.630903px;}
.ws58{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.506800px;}
.wsa0{word-spacing:-7.038999px;}
.ws9e{word-spacing:-6.984475px;}
.ws78{word-spacing:-6.623136px;}
.ws99{word-spacing:-5.008454px;}
.wsa2{word-spacing:-4.579984px;}
.wsa1{word-spacing:-4.525460px;}
.wsa6{word-spacing:-3.980224px;}
.ws26{word-spacing:-1.135736px;}
.ws1f{word-spacing:-1.075961px;}
.wsc6{word-spacing:-1.016185px;}
.wsb1{word-spacing:-0.956410px;}
.ws8d{word-spacing:-0.896634px;}
.ws3f{word-spacing:-0.836858px;}
.wsa9{word-spacing:-0.777083px;}
.wsc5{word-spacing:-0.717307px;}
.ws37{word-spacing:-0.657532px;}
.ws5e{word-spacing:-0.597756px;}
.ws93{word-spacing:-0.537980px;}
.ws38{word-spacing:-0.478205px;}
.ws56{word-spacing:-0.418429px;}
.ws94{word-spacing:-0.358654px;}
.wsc3{word-spacing:-0.239102px;}
.ws52{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws3e{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsec{word-spacing:-0.047821px;}
.ws53{word-spacing:0.000000px;}
.wsb7{word-spacing:0.011955px;}
.wsed{word-spacing:0.047821px;}
.ws7f{word-spacing:0.059776px;}
.wsdd{word-spacing:0.095641px;}
.wsb4{word-spacing:0.119551px;}
.ws79{word-spacing:0.239102px;}
.ws41{word-spacing:0.298878px;}
.ws82{word-spacing:0.358654px;}
.wse2{word-spacing:0.382565px;}
.ws42{word-spacing:0.418429px;}
.ws6d{word-spacing:0.478205px;}
.ws13{word-spacing:0.484186px;}
.ws76{word-spacing:0.597756px;}
.ws28{word-spacing:0.717307px;}
.ws2e{word-spacing:0.777083px;}
.wsf0{word-spacing:0.812950px;}
.wsb6{word-spacing:0.836858px;}
.ws4d{word-spacing:0.896634px;}
.ws70{word-spacing:0.956410px;}
.ws7d{word-spacing:1.016185px;}
.wsbc{word-spacing:1.075961px;}
.ws3a{word-spacing:1.135736px;}
.wsea{word-spacing:1.147694px;}
.ws57{word-spacing:1.195512px;}
.ws98{word-spacing:1.255288px;}
.ws65{word-spacing:1.315063px;}
.wsb{word-spacing:1.344960px;}
.wsd1{word-spacing:1.374839px;}
.ws21{word-spacing:1.434614px;}
.ws2d{word-spacing:1.554166px;}
.wsc9{word-spacing:1.613941px;}
.ws48{word-spacing:1.673717px;}
.ws8a{word-spacing:1.733492px;}
.wsca{word-spacing:1.793268px;}
.ws2b{word-spacing:1.853044px;}
.ws3b{word-spacing:1.912819px;}
.ws75{word-spacing:1.972595px;}
.wscf{word-spacing:2.032370px;}
.wsf9{word-spacing:2.056286px;}
.ws39{word-spacing:2.092146px;}
.wse6{word-spacing:2.247568px;}
.wsb5{word-spacing:2.271473px;}
.ws73{word-spacing:2.331248px;}
.wsbb{word-spacing:2.391024px;}
.ws8{word-spacing:2.420928px;}
.ws80{word-spacing:2.450800px;}
.ws6c{word-spacing:2.570351px;}
.wse1{word-spacing:2.582312px;}
.ws7e{word-spacing:2.630126px;}
.ws4b{word-spacing:2.689902px;}
.ws1e{word-spacing:2.749678px;}
.ws51{word-spacing:2.809453px;}
.wsf2{word-spacing:2.821415px;}
.ws33{word-spacing:2.869229px;}
.ws89{word-spacing:2.929004px;}
.wsd8{word-spacing:2.964877px;}
.wsab{word-spacing:2.988780px;}
.wsbd{word-spacing:3.048556px;}
.ws20{word-spacing:3.108331px;}
.wsd{word-spacing:3.120307px;}
.ws4c{word-spacing:3.168107px;}
.ws71{word-spacing:3.227882px;}
.ws7a{word-spacing:3.287658px;}
.wsc0{word-spacing:3.407209px;}
.ws87{word-spacing:3.466985px;}
.ws6f{word-spacing:3.526760px;}
.wsf5{word-spacing:3.586545px;}
.wsd2{word-spacing:3.646312px;}
.ws7c{word-spacing:3.706087px;}
.ws22{word-spacing:3.765863px;}
.wsdc{word-spacing:3.873469px;}
.ws11{word-spacing:3.873485px;}
.ws4a{word-spacing:3.885414px;}
.ws47{word-spacing:3.945190px;}
.ws5b{word-spacing:4.004965px;}
.ws2f{word-spacing:4.124516px;}
.wsa8{word-spacing:4.184292px;}
.wsf7{word-spacing:4.208213px;}
.wsbf{word-spacing:4.244068px;}
.wse3{word-spacing:4.256033px;}
.ws24{word-spacing:4.303843px;}
.ws10{word-spacing:4.357670px;}
.ws69{word-spacing:4.363619px;}
.ws43{word-spacing:4.423394px;}
.ws96{word-spacing:4.483170px;}
.ws62{word-spacing:4.542946px;}
.wscb{word-spacing:4.602721px;}
.ws7b{word-spacing:4.662497px;}
.ws83{word-spacing:4.722272px;}
.wsdb{word-spacing:4.782060px;}
.ws77{word-spacing:4.841824px;}
.ws55{word-spacing:4.901599px;}
.wsb9{word-spacing:4.961375px;}
.wscc{word-spacing:5.021150px;}
.wsee{word-spacing:5.021163px;}
.ws67{word-spacing:5.140702px;}
.ws6b{word-spacing:5.200477px;}
.ws7{word-spacing:5.218445px;}
.ws27{word-spacing:5.260253px;}
.wsf6{word-spacing:5.308087px;}
.wsae{word-spacing:5.320028px;}
.ws12{word-spacing:5.326042px;}
.ws74{word-spacing:5.379804px;}
.ws9{word-spacing:5.379840px;}
.ws86{word-spacing:5.439580px;}
.ws9c{word-spacing:5.452361px;}
.ws2a{word-spacing:5.499355px;}
.ws2c{word-spacing:5.559131px;}
.ws49{word-spacing:5.618906px;}
.ws6e{word-spacing:5.678682px;}
.wsb0{word-spacing:5.738458px;}
.ws1c{word-spacing:5.798233px;}
.wsef{word-spacing:5.834113px;}
.ws34{word-spacing:5.858009px;}
.wsaf{word-spacing:5.917784px;}
.ws4{word-spacing:5.977560px;}
.ws97{word-spacing:6.097111px;}
.ws5f{word-spacing:6.156887px;}
.wsc7{word-spacing:6.216662px;}
.ws4f{word-spacing:6.276438px;}
.ws3d{word-spacing:6.336214px;}
.wseb{word-spacing:6.360140px;}
.ws54{word-spacing:6.395989px;}
.wsce{word-spacing:6.455765px;}
.ws44{word-spacing:6.515540px;}
.ws23{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws85{word-spacing:6.635092px;}
.ws1d{word-spacing:6.694867px;}
.wsd7{word-spacing:6.694884px;}
.ws16{word-spacing:6.724800px;}
.wsba{word-spacing:6.754643px;}
.ws32{word-spacing:6.814418px;}
.ws9b{word-spacing:6.815452px;}
.ws5a{word-spacing:6.874194px;}
.ws14{word-spacing:6.939994px;}
.ws30{word-spacing:6.993745px;}
.ws29{word-spacing:7.053521px;}
.ws64{word-spacing:7.113296px;}
.ws92{word-spacing:7.173072px;}
.ws1b{word-spacing:7.292623px;}
.ws4e{word-spacing:7.352399px;}
.wsf1{word-spacing:7.507834px;}
.ws3c{word-spacing:7.531726px;}
.ws91{word-spacing:7.591501px;}
.ws46{word-spacing:7.651277px;}
.wsc4{word-spacing:7.711052px;}
.ws45{word-spacing:7.770828px;}
.ws6a{word-spacing:7.830604px;}
.ws72{word-spacing:7.890379px;}
.wsc2{word-spacing:7.950155px;}
.wsc8{word-spacing:8.009930px;}
.wsbe{word-spacing:8.189257px;}
.ws61{word-spacing:8.249033px;}
.ws35{word-spacing:8.308808px;}
.ws59{word-spacing:8.368584px;}
.wsc1{word-spacing:8.667462px;}
.ws6{word-spacing:8.715341px;}
.ws36{word-spacing:8.727238px;}
.ws40{word-spacing:8.787013px;}
.wsd6{word-spacing:8.846789px;}
.ws31{word-spacing:8.906564px;}
.wsdf{word-spacing:9.372838px;}
.wse7{word-spacing:9.420658px;}
.ws66{word-spacing:9.623872px;}
.wsf3{word-spacing:9.755402px;}
.wsb8{word-spacing:9.862974px;}
.wse8{word-spacing:10.042326px;}
.ws50{word-spacing:10.221628px;}
.wsc{word-spacing:10.275494px;}
.ws25{word-spacing:10.341179px;}
.ws60{word-spacing:10.460730px;}
.wsd4{word-spacing:10.640057px;}
.ws5c{word-spacing:10.879159px;}
.ws88{word-spacing:10.998710px;}
.ws18{word-spacing:11.243866px;}
.ws81{word-spacing:11.357364px;}
.wsf{word-spacing:11.620454px;}
.ws68{word-spacing:11.656242px;}
.ws84{word-spacing:11.955120px;}
.wsa{word-spacing:11.997043px;}
.wscd{word-spacing:12.014896px;}
.wsad{word-spacing:12.313774px;}
.wsd5{word-spacing:12.493100px;}
.ws90{word-spacing:12.851754px;}
.wsde{word-spacing:13.198486px;}
.ws5d{word-spacing:13.389734px;}
.wse{word-spacing:13.395802px;}
.wsd3{word-spacing:13.688612px;}
.wsb2{word-spacing:13.867939px;}
.ws8e{word-spacing:13.987490px;}
.wse5{word-spacing:14.154898px;}
.ws0{word-spacing:14.346180px;}
.wse0{word-spacing:14.489642px;}
.ws95{word-spacing:14.525471px;}
.wsd9{word-spacing:14.872207px;}
.ws8f{word-spacing:15.481880px;}
.wsf8{word-spacing:16.115542px;}
.wse4{word-spacing:16.163363px;}
.wsda{word-spacing:16.689389px;}
.ws8c{word-spacing:16.916495px;}
.wsac{word-spacing:17.872904px;}
.wsf4{word-spacing:17.884904px;}
.ws19{word-spacing:17.932680px;}
.ws8b{word-spacing:20.323704px;}
.ws63{word-spacing:20.861684px;}
.wse9{word-spacing:21.949655px;}
.ws17{word-spacing:24.639667px;}
.wsb3{word-spacing:28.752064px;}
.wsaa{word-spacing:35.805584px;}
.ws9f{word-spacing:68.154517px;}
.wsa4{word-spacing:95.416324px;}
.wsd0{word-spacing:182.548335px;}
.ws9d{word-spacing:254.679799px;}
.wsa5{word-spacing:277.307098px;}
.wsa3{word-spacing:318.254332px;}
.ws9a{word-spacing:1193.563327px;}
._1{margin-left:-7.298627px;}
._5{margin-left:-5.014645px;}
._6{margin-left:-4.004951px;}
._8{margin-left:-2.976851px;}
._0{margin-left:-1.434618px;}
._42{width:1.219451px;}
._2{width:2.252735px;}
._3{width:3.717486px;}
._4{width:5.518088px;}
._7{width:8.284954px;}
._d{width:10.042301px;}
._3d{width:12.971309px;}
._9{width:16.300915px;}
._3f{width:17.693578px;}
._b{width:18.829314px;}
._3e{width:20.443255px;}
._a{width:22.236523px;}
._c{width:29.887800px;}
._11{width:81.973718px;}
._37{width:97.815363px;}
._12{width:104.521767px;}
._2a{width:109.270006px;}
._15{width:116.784896px;}
._1c{width:119.025048px;}
._2f{width:141.107112px;}
._32{width:146.464334px;}
._1a{width:150.162716px;}
._3a{width:152.393500px;}
._41{width:183.002663px;}
._21{width:199.355521px;}
._40{width:205.719038px;}
._1f{width:226.000378px;}
._2e{width:227.505091px;}
._20{width:231.943452px;}
._25{width:234.996774px;}
._18{width:242.030320px;}
._e{width:263.240006px;}
._13{width:266.947612px;}
._1b{width:275.998532px;}
._28{width:286.521589px;}
._23{width:313.783396px;}
._14{width:319.780993px;}
._2c{width:341.045202px;}
._f{width:344.098525px;}
._22{width:372.341757px;}
._16{width:375.395079px;}
._27{width:411.707806px;}
._29{width:782.089348px;}
._19{width:797.353324px;}
._1d{width:804.385343px;}
._1e{width:870.150053px;}
._34{width:1008.525915px;}
._31{width:1010.161623px;}
._17{width:1025.755376px;}
._2b{width:1037.477953px;}
._24{width:1090.249491px;}
._26{width:1110.638687px;}
._33{width:1295.644628px;}
._10{width:1346.460635px;}
._3c{width:1349.928199px;}
._3b{width:1388.989054px;}
._30{width:1390.006335px;}
._38{width:1429.881764px;}
._2d{width:1439.805062px;}
._35{width:1475.899694px;}
._36{width:1503.233028px;}
._39{width:1575.405289px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,150);}
.fc4{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:18.016020px;}
.fs14{font-size:40.889475px;}
.fs11{font-size:40.892881px;}
.fs3{font-size:41.842800px;}
.fs12{font-size:45.432750px;}
.fs2{font-size:46.027200px;}
.fs8{font-size:46.052640px;}
.fs6{font-size:47.820600px;}
.fsf{font-size:48.042720px;}
.fs9{font-size:48.748703px;}
.fs13{font-size:49.976025px;}
.fs5{font-size:53.798400px;}
.fs10{font-size:54.523614px;}
.fs4{font-size:59.775600px;}
.fsd{font-size:60.053400px;}
.fs1{font-size:65.753400px;}
.fsb{font-size:96.085440px;}
.fs7{font-size:98.779680px;}
.fsa{font-size:120.106800px;}
.fs0{font-size:143.461800px;}
.fse{font-size:144.128160px;}
.y0{bottom:0.000000px;}
.y7c{bottom:0.151302px;}
.y106{bottom:0.243185px;}
.y18c{bottom:3.455342px;}
.y55{bottom:5.549123px;}
.y18b{bottom:19.356805px;}
.y18d{bottom:30.728531px;}
.yf4{bottom:38.690254px;}
.yf1{bottom:42.770832px;}
.yf3{bottom:44.630986px;}
.yf5{bottom:45.833516px;}
.yf7{bottom:49.558313px;}
.yf6{bottom:50.576208px;}
.y192{bottom:58.996879px;}
.y18e{bottom:67.014760px;}
.y56{bottom:71.521191px;}
.y104{bottom:72.219218px;}
.y105{bottom:95.090555px;}
.y7d{bottom:95.520473px;}
.y18f{bottom:103.300625px;}
.y34{bottom:113.332500px;}
.y57{bottom:117.635250px;}
.y9e{bottom:120.535491px;}
.y5e{bottom:126.217454px;}
.y33{bottom:131.265000px;}
.y12a{bottom:131.266500px;}
.y190{bottom:139.586854px;}
.y194{bottom:149.024872px;}
.y53{bottom:149.197500px;}
.y32{bottom:149.199000px;}
.y1ca{bottom:150.360000px;}
.yf0{bottom:151.050315px;}
.y5d{bottom:153.165992px;}
.y7e{bottom:157.169607px;}
.y193{bottom:161.149964px;}
.y1c9{bottom:163.809000px;}
.y52{bottom:167.130000px;}
.y31{bottom:167.131500px;}
.y132{bottom:172.390500px;}
.y191{bottom:175.872719px;}
.y1c8{bottom:177.258000px;}
.yed{bottom:184.978500px;}
.y30{bottom:185.064000px;}
.y15d{bottom:185.445000px;}
.y129{bottom:186.546000px;}
.ybd{bottom:189.790500px;}
.y131{bottom:190.323000px;}
.y1c7{bottom:190.708500px;}
.y9a{bottom:191.752500px;}
.y58{bottom:191.851407px;}
.y2f{bottom:202.996500px;}
.y188{bottom:203.209500px;}
.y15c{bottom:203.377500px;}
.y1c6{bottom:204.157500px;}
.yec{bottom:204.619500px;}
.y9d{bottom:206.804658px;}
.y130{bottom:209.332500px;}
.yef{bottom:210.437623px;}
.y128{bottom:212.059500px;}
.y9c{bottom:215.916966px;}
.y1c5{bottom:217.606500px;}
.ybc{bottom:217.858500px;}
.y2e{bottom:220.929000px;}
.y187{bottom:221.142000px;}
.y15b{bottom:221.310000px;}
.y5c{bottom:223.699211px;}
.y99{bottom:224.584500px;}
.yfb{bottom:226.412581px;}
.yfd{bottom:226.412773px;}
.yfe{bottom:226.412828px;}
.y100{bottom:226.592838px;}
.y12f{bottom:227.265000px;}
.yf9{bottom:228.272633px;}
.yf8{bottom:228.331279px;}
.y103{bottom:228.394520px;}
.y102{bottom:228.453166px;}
.yf2{bottom:228.511494px;}
.yfa{bottom:228.633110px;}
.yfc{bottom:228.633303px;}
.y101{bottom:228.691855px;}
.yff{bottom:228.872015px;}
.y127{bottom:229.681500px;}
.y1c4{bottom:231.057000px;}
.yeb{bottom:231.139500px;}
.ybb{bottom:235.791000px;}
.y2d{bottom:238.861500px;}
.y1a1{bottom:238.863000px;}
.y186{bottom:239.074500px;}
.y15a{bottom:239.244000px;}
.y98{bottom:242.517000px;}
.y1c3{bottom:244.506000px;}
.y12e{bottom:245.197500px;}
.y59{bottom:245.277117px;}
.y126{bottom:247.614000px;}
.yea{bottom:248.988000px;}
.y7b{bottom:251.168412px;}
.yba{bottom:253.725000px;}
.y51{bottom:256.794000px;}
.y2c{bottom:256.795500px;}
.y7a{bottom:256.817824px;}
.y185{bottom:257.007000px;}
.y159{bottom:257.176500px;}
.y5b{bottom:257.303029px;}
.y1c2{bottom:257.955000px;}
.y97{bottom:260.449500px;}
.y12d{bottom:263.130000px;}
.y1a0{bottom:263.230500px;}
.y125{bottom:265.546500px;}
.ye9{bottom:266.920500px;}
.y1c1{bottom:271.405500px;}
.yb9{bottom:271.657500px;}
.y2b{bottom:274.728000px;}
.y184{bottom:274.939500px;}
.y158{bottom:275.109000px;}
.y96{bottom:278.382000px;}
.y77{bottom:280.179000px;}
.y124{bottom:283.479000px;}
.y5a{bottom:283.978687px;}
.ye8{bottom:284.853000px;}
.y1c0{bottom:284.854500px;}
.y12c{bottom:289.536000px;}
.yb8{bottom:289.590000px;}
.y19f{bottom:291.009000px;}
.y2a{bottom:292.660500px;}
.y183{bottom:292.872000px;}
.y157{bottom:293.041500px;}
.y95{bottom:296.314500px;}
.y1bf{bottom:298.305000px;}
.ye7{bottom:304.494000px;}
.y123{bottom:305.808000px;}
.yb7{bottom:307.522500px;}
.y19e{bottom:308.941500px;}
.y76{bottom:310.005000px;}
.y29{bottom:310.593000px;}
.y156{bottom:310.974000px;}
.y1be{bottom:311.754000px;}
.y94{bottom:314.247000px;}
.y182{bottom:316.789500px;}
.y1bd{bottom:325.203000px;}
.y79{bottom:325.463121px;}
.y12b{bottom:326.698500px;}
.y19d{bottom:326.874000px;}
.y75{bottom:327.937500px;}
.y28{bottom:328.525500px;}
.y155{bottom:328.906500px;}
.yb6{bottom:330.196500px;}
.ye6{bottom:331.014000px;}
.y122{bottom:331.959000px;}
.y93{bottom:332.181000px;}
.y1bc{bottom:338.653500px;}
.y19c{bottom:344.808000px;}
.y74{bottom:345.870000px;}
.y27{bottom:346.458000px;}
.y181{bottom:346.617000px;}
.y154{bottom:346.840500px;}
.ye5{bottom:348.946500px;}
.y121{bottom:349.891500px;}
.y92{bottom:350.113500px;}
.y1bb{bottom:352.102500px;}
.yb5{bottom:358.264500px;}
.y19b{bottom:362.740500px;}
.y73{bottom:363.804000px;}
.y26{bottom:364.278000px;}
.y50{bottom:364.390500px;}
.y180{bottom:364.551000px;}
.y153{bottom:364.773000px;}
.y1ba{bottom:365.551500px;}
.ye4{bottom:366.795000px;}
.y120{bottom:367.824000px;}
.y91{bottom:368.046000px;}
.yb4{bottom:376.197000px;}
.y1b9{bottom:379.002000px;}
.y19a{bottom:380.673000px;}
.y72{bottom:381.736500px;}
.y25{bottom:382.212000px;}
.y4f{bottom:382.324500px;}
.y17f{bottom:382.483500px;}
.y152{bottom:382.705500px;}
.ye3{bottom:384.727500px;}
.y11f{bottom:385.756500px;}
.y90{bottom:385.978500px;}
.y1b8{bottom:392.451000px;}
.yb3{bottom:394.129500px;}
.y199{bottom:398.893500px;}
.y71{bottom:399.669000px;}
.y24{bottom:400.144500px;}
.y4e{bottom:400.257000px;}
.y17e{bottom:400.416000px;}
.y151{bottom:401.019000px;}
.ye2{bottom:402.660000px;}
.y8f{bottom:403.911000px;}
.y1b7{bottom:405.901500px;}
.yb2{bottom:412.062000px;}
.y198{bottom:416.826000px;}
.y70{bottom:417.601500px;}
.y23{bottom:418.077000px;}
.y4d{bottom:418.189500px;}
.y17d{bottom:418.348500px;}
.y150{bottom:418.953000px;}
.y1b6{bottom:419.350500px;}
.y8e{bottom:421.843500px;}
.ye1{bottom:422.301000px;}
.yb1{bottom:429.996000px;}
.y1b5{bottom:432.799500px;}
.y197{bottom:434.758500px;}
.y6f{bottom:435.534000px;}
.y22{bottom:436.009500px;}
.y4c{bottom:436.122000px;}
.y17c{bottom:436.494000px;}
.y14f{bottom:436.885500px;}
.y8d{bottom:439.777500px;}
.y11e{bottom:445.326463px;}
.y1b4{bottom:446.250000px;}
.yb0{bottom:447.928500px;}
.ye0{bottom:448.822500px;}
.y196{bottom:452.692500px;}
.y6e{bottom:453.466500px;}
.y21{bottom:453.942000px;}
.y4b{bottom:454.054500px;}
.y17b{bottom:454.426500px;}
.y14e{bottom:454.818000px;}
.y8c{bottom:458.275500px;}
.y1b3{bottom:459.699000px;}
.yaf{bottom:465.861000px;}
.y11d{bottom:465.928195px;}
.ydf{bottom:468.462000px;}
.y6d{bottom:471.400500px;}
.y20{bottom:471.874500px;}
.y4a{bottom:471.987000px;}
.y17a{bottom:472.360500px;}
.y14d{bottom:472.750500px;}
.y1b2{bottom:473.148000px;}
.y8b{bottom:476.208000px;}
.y11c{bottom:481.264051px;}
.yae{bottom:483.799500px;}
.y1b1{bottom:486.598500px;}
.y6c{bottom:489.333000px;}
.y1f{bottom:489.808500px;}
.y49{bottom:489.921000px;}
.y179{bottom:490.293000px;}
.y14c{bottom:490.683000px;}
.y8a{bottom:494.142000px;}
.yde{bottom:494.983500px;}
.y11b{bottom:496.598197px;}
.y1b0{bottom:500.047500px;}
.yad{bottom:501.732000px;}
.y195{bottom:504.568500px;}
.y6b{bottom:507.265500px;}
.y1e{bottom:507.741000px;}
.y48{bottom:507.853500px;}
.y178{bottom:508.225500px;}
.y14b{bottom:508.615500px;}
.y11a{bottom:511.932344px;}
.y89{bottom:512.074500px;}
.ydd{bottom:512.916000px;}
.y1af{bottom:513.498000px;}
.yac{bottom:519.664500px;}
.y1d{bottom:525.673500px;}
.y47{bottom:525.786000px;}
.y18a{bottom:526.087500px;}
.y177{bottom:526.158000px;}
.y14a{bottom:526.549500px;}
.y1ae{bottom:526.947000px;}
.y119{bottom:527.268200px;}
.y88{bottom:530.007000px;}
.y6a{bottom:531.180000px;}
.ydc{bottom:532.557000px;}
.yab{bottom:537.597000px;}
.y1ad{bottom:540.396000px;}
.y118{bottom:542.602347px;}
.y1c{bottom:543.606000px;}
.y46{bottom:543.718500px;}
.y176{bottom:544.090500px;}
.y149{bottom:544.482000px;}
.y87{bottom:547.939500px;}
.ydb{bottom:550.489500px;}
.y1ac{bottom:553.846500px;}
.yaa{bottom:555.531000px;}
.y117{bottom:557.936493px;}
.y69{bottom:561.006000px;}
.y1b{bottom:561.538500px;}
.y45{bottom:561.651000px;}
.y175{bottom:562.023000px;}
.y148{bottom:562.414500px;}
.y86{bottom:565.872000px;}
.y1ab{bottom:567.295500px;}
.y116{bottom:573.272350px;}
.ya9{bottom:573.463500px;}
.yda{bottom:577.009500px;}
.y68{bottom:578.940000px;}
.y44{bottom:579.583500px;}
.y174{bottom:579.957000px;}
.y147{bottom:580.347000px;}
.y1aa{bottom:580.744500px;}
.y85{bottom:583.804500px;}
.y1a{bottom:584.065500px;}
.y115{bottom:588.606496px;}
.ya8{bottom:591.396000px;}
.y1a9{bottom:594.195000px;}
.yd9{bottom:594.943500px;}
.y67{bottom:596.872500px;}
.y43{bottom:597.517500px;}
.y173{bottom:597.889500px;}
.y146{bottom:598.279500px;}
.y84{bottom:601.738500px;}
.y114{bottom:603.940642px;}
.y1a8{bottom:607.644000px;}
.ya7{bottom:609.328500px;}
.yd8{bottom:612.876000px;}
.y42{bottom:615.450000px;}
.y19{bottom:615.562500px;}
.y172{bottom:615.822000px;}
.y145{bottom:616.212000px;}
.y66{bottom:618.243000px;}
.y113{bottom:619.276499px;}
.y83{bottom:619.671000px;}
.y1a7{bottom:621.094500px;}
.ya6{bottom:627.267000px;}
.y18{bottom:630.507000px;}
.yd7{bottom:630.808500px;}
.y41{bottom:633.382500px;}
.y171{bottom:633.967500px;}
.y144{bottom:634.146000px;}
.y1a6{bottom:634.543500px;}
.y112{bottom:634.610645px;}
.y65{bottom:636.175500px;}
.y82{bottom:637.603500px;}
.ya5{bottom:645.199500px;}
.y17{bottom:645.337500px;}
.y1a5{bottom:647.992500px;}
.yd6{bottom:648.741000px;}
.y111{bottom:649.946502px;}
.y40{bottom:651.315000px;}
.y170{bottom:651.900000px;}
.y143{bottom:652.078500px;}
.y64{bottom:654.108000px;}
.y81{bottom:655.536000px;}
.y16{bottom:660.282000px;}
.y1a4{bottom:661.443000px;}
.ya4{bottom:663.132000px;}
.y110{bottom:665.280648px;}
.yd5{bottom:668.382000px;}
.y3f{bottom:669.247500px;}
.y16f{bottom:669.832500px;}
.y142{bottom:670.011000px;}
.y63{bottom:672.040500px;}
.y80{bottom:673.468500px;}
.y1a3{bottom:674.892000px;}
.y15{bottom:675.226500px;}
.y10f{bottom:680.614794px;}
.ya3{bottom:681.066000px;}
.y3e{bottom:687.181500px;}
.y16e{bottom:687.765000px;}
.y141{bottom:687.943500px;}
.y62{bottom:689.973000px;}
.y14{bottom:690.169500px;}
.yd4{bottom:694.902000px;}
.y10e{bottom:695.950651px;}
.y1a2{bottom:697.083000px;}
.ya2{bottom:698.998500px;}
.y13{bottom:705.114000px;}
.y16d{bottom:705.699000px;}
.y10d{bottom:711.284797px;}
.y61{bottom:711.343500px;}
.y140{bottom:711.918000px;}
.yd3{bottom:712.836000px;}
.ya1{bottom:716.931000px;}
.y12{bottom:720.058500px;}
.y3d{bottom:723.046500px;}
.y16c{bottom:723.631500px;}
.y7f{bottom:726.087000px;}
.y10c{bottom:726.618944px;}
.yd2{bottom:730.768500px;}
.ya0{bottom:734.863500px;}
.y11{bottom:735.001500px;}
.y3c{bottom:740.979000px;}
.y16b{bottom:741.564000px;}
.y10b{bottom:741.954800px;}
.y13f{bottom:743.179500px;}
.y78{bottom:747.606000px;}
.y189{bottom:748.192500px;}
.yd1{bottom:748.701000px;}
.y10{bottom:749.946000px;}
.y10a{bottom:757.288947px;}
.y3b{bottom:758.911500px;}
.y16a{bottom:759.496500px;}
.y13e{bottom:761.112000px;}
.y60{bottom:763.018500px;}
.yf{bottom:764.890500px;}
.yd0{bottom:766.633500px;}
.y3a{bottom:776.844000px;}
.y169{bottom:777.429000px;}
.y13d{bottom:779.044500px;}
.ye{bottom:779.833500px;}
.y5f{bottom:780.951000px;}
.y109{bottom:781.526680px;}
.ycf{bottom:784.566000px;}
.y9f{bottom:785.986500px;}
.yd{bottom:794.778000px;}
.y168{bottom:795.361500px;}
.y13c{bottom:796.978500px;}
.yce{bottom:802.414500px;}
.y54{bottom:802.471500px;}
.y9b{bottom:807.507000px;}
.yc{bottom:809.721000px;}
.y39{bottom:812.710500px;}
.y108{bottom:812.953500px;}
.y167{bottom:813.295500px;}
.ycd{bottom:820.347000px;}
.y13b{bottom:821.905500px;}
.yb{bottom:824.665500px;}
.y38{bottom:830.643000px;}
.y166{bottom:831.228000px;}
.ycc{bottom:838.279500px;}
.ya{bottom:839.610000px;}
.y107{bottom:841.945500px;}
.y37{bottom:848.575500px;}
.y165{bottom:849.160500px;}
.y13a{bottom:853.167000px;}
.y9{bottom:854.553000px;}
.ycb{bottom:856.212000px;}
.yee{bottom:863.464500px;}
.y36{bottom:866.508000px;}
.y164{bottom:867.093000px;}
.y8{bottom:869.497500px;}
.y139{bottom:871.099500px;}
.yca{bottom:874.144500px;}
.y35{bottom:884.440500px;}
.y7{bottom:884.442000px;}
.y163{bottom:885.025500px;}
.y138{bottom:889.032000px;}
.yc9{bottom:892.078500px;}
.y162{bottom:902.959500px;}
.y137{bottom:906.964500px;}
.yc8{bottom:910.011000px;}
.y161{bottom:920.892000px;}
.y136{bottom:924.898500px;}
.yc7{bottom:927.943500px;}
.y6{bottom:936.678000px;}
.y135{bottom:942.831000px;}
.y160{bottom:944.277000px;}
.yc6{bottom:945.876000px;}
.y5{bottom:960.594000px;}
.y134{bottom:960.763500px;}
.yc5{bottom:965.517000px;}
.y15f{bottom:974.104500px;}
.y4{bottom:979.087500px;}
.yc4{bottom:992.037000px;}
.y3{bottom:992.379000px;}
.y15e{bottom:1009.969500px;}
.yc3{bottom:1009.971000px;}
.y133{bottom:1012.888500px;}
.yc2{bottom:1027.903500px;}
.y2{bottom:1039.452000px;}
.yc1{bottom:1045.836000px;}
.yc0{bottom:1063.768500px;}
.y1{bottom:1081.296000px;}
.ybf{bottom:1081.701000px;}
.ybe{bottom:1099.633500px;}
.h14{height:13.124952px;}
.h20{height:28.391032px;}
.h3{height:28.787846px;}
.h1b{height:28.788588px;}
.hc{height:31.481297px;}
.h1e{height:31.545591px;}
.h21{height:32.900573px;}
.he{height:33.157687px;}
.h17{height:34.095946px;}
.h1f{height:34.700150px;}
.h10{height:37.299974px;}
.h6{height:37.336090px;}
.h19{height:37.512246px;}
.h7{height:37.562525px;}
.h5{height:37.605082px;}
.h18{height:38.068875px;}
.h1a{height:38.384624px;}
.ha{height:40.826735px;}
.h4{height:41.125613px;}
.h1c{height:41.758762px;}
.hf{height:42.141798px;}
.h2{height:55.420714px;}
.h15{height:56.300063px;}
.h9{height:67.525172px;}
.h13{height:90.080100px;}
.h1{height:98.701718px;}
.h12{height:112.600125px;}
.h16{height:135.120150px;}
.h1d{height:183.548310px;}
.h11{height:248.721165px;}
.hd{height:304.680000px;}
.h8{height:309.715455px;}
.hb{height:364.583400px;}
.h0{height:1188.000000px;}
.w5{width:338.928315px;}
.w2{width:376.576275px;}
.w3{width:376.584480px;}
.w1{width:376.597530px;}
.w4{width:602.535780px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x42{left:8.675175px;}
.x41{left:14.808623px;}
.xe{left:20.561052px;}
.xf{left:22.455780px;}
.xd{left:26.784625px;}
.x3f{left:27.870539px;}
.x1b{left:35.943709px;}
.x17{left:44.226313px;}
.x15{left:52.060059px;}
.x37{left:66.288945px;}
.x9{left:73.446000px;}
.x3c{left:80.164500px;}
.x3a{left:83.633694px;}
.x8{left:88.390500px;}
.x12{left:89.739000px;}
.x3e{left:91.620000px;}
.x13{left:103.333500px;}
.x16{left:109.124077px;}
.x3{left:120.465000px;}
.x2{left:131.980500px;}
.x19{left:137.996884px;}
.x1{left:139.083000px;}
.x38{left:142.028293px;}
.x40{left:154.627911px;}
.x1c{left:157.728000px;}
.x7{left:164.419500px;}
.x43{left:192.550500px;}
.x5{left:201.823500px;}
.xa{left:203.430000px;}
.x14{left:212.746500px;}
.x39{left:225.585000px;}
.x1a{left:280.121573px;}
.x36{left:286.815038px;}
.x6{left:315.144000px;}
.x1e{left:325.029019px;}
.x1f{left:330.603475px;}
.x20{left:341.471539px;}
.x21{left:352.339804px;}
.x22{left:363.212372px;}
.x10{left:364.841779px;}
.x11{left:366.848646px;}
.x23{left:374.080636px;}
.x24{left:384.291065px;}
.x2d{left:395.578252px;}
.x1d{left:402.425841px;}
.x27{left:406.450770px;}
.x28{left:419.656662px;}
.x2e{left:423.322922px;}
.x2f{left:434.195691px;}
.x29{left:438.816700px;}
.x30{left:445.063755px;}
.x2a{left:449.567659px;}
.x31{left:455.931919px;}
.x2b{left:460.377271px;}
.x32{left:466.741531px;}
.xb{left:467.967000px;}
.x2c{left:471.186883px;}
.x45{left:473.944500px;}
.x33{left:477.614099px;}
.xc{left:482.910000px;}
.x3b{left:484.260000px;}
.x34{left:488.482363px;}
.x18{left:492.259500px;}
.x46{left:495.355500px;}
.x35{left:499.350427px;}
.x25{left:510.223045px;}
.x26{left:521.032657px;}
.x4{left:558.501000px;}
.x3d{left:602.641500px;}
.x44{left:614.418000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v4{vertical-align:-17.105590pt;}
.v6{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.844698pt;}
.v5{vertical-align:17.105590pt;}
.v1{vertical-align:21.114667pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.042507pt;}
.lsd{letter-spacing:0.722622pt;}
.ls2{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.656533pt;}
.ls6{letter-spacing:2.656693pt;}
.ls0{letter-spacing:2.658133pt;}
.ls9{letter-spacing:8.093728pt;}
.ls8{letter-spacing:17.268507pt;}
.lsb{letter-spacing:17.416172pt;}
.lsc{letter-spacing:17.416923pt;}
.lsa{letter-spacing:19.995601pt;}
.ls4{letter-spacing:26.566933pt;}
.ls7{letter-spacing:31.880320pt;}
.ls5{letter-spacing:635.874385pt;}
.ws3{word-spacing:-14.611867pt;}
.ws1a{word-spacing:-13.262246pt;}
.wsa7{word-spacing:-12.116359pt;}
.ws58{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.228267pt;}
.wsa0{word-spacing:-6.256888pt;}
.ws9e{word-spacing:-6.208422pt;}
.ws78{word-spacing:-5.887232pt;}
.ws99{word-spacing:-4.451959pt;}
.wsa2{word-spacing:-4.071096pt;}
.wsa1{word-spacing:-4.022631pt;}
.wsa6{word-spacing:-3.537977pt;}
.ws26{word-spacing:-1.009543pt;}
.ws1f{word-spacing:-0.956410pt;}
.wsc6{word-spacing:-0.903276pt;}
.wsb1{word-spacing:-0.850142pt;}
.ws8d{word-spacing:-0.797008pt;}
.ws3f{word-spacing:-0.743874pt;}
.wsa9{word-spacing:-0.690740pt;}
.wsc5{word-spacing:-0.637606pt;}
.ws37{word-spacing:-0.584473pt;}
.ws5e{word-spacing:-0.531339pt;}
.ws93{word-spacing:-0.478205pt;}
.ws38{word-spacing:-0.425071pt;}
.ws56{word-spacing:-0.371937pt;}
.ws94{word-spacing:-0.318803pt;}
.wsc3{word-spacing:-0.212535pt;}
.ws52{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws3e{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsec{word-spacing:-0.042507pt;}
.ws53{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.010627pt;}
.wsed{word-spacing:0.042507pt;}
.ws7f{word-spacing:0.053134pt;}
.wsdd{word-spacing:0.085014pt;}
.wsb4{word-spacing:0.106268pt;}
.ws79{word-spacing:0.212535pt;}
.ws41{word-spacing:0.265669pt;}
.ws82{word-spacing:0.318803pt;}
.wse2{word-spacing:0.340058pt;}
.ws42{word-spacing:0.371937pt;}
.ws6d{word-spacing:0.425071pt;}
.ws13{word-spacing:0.430387pt;}
.ws76{word-spacing:0.531339pt;}
.ws28{word-spacing:0.637606pt;}
.ws2e{word-spacing:0.690740pt;}
.wsf0{word-spacing:0.722622pt;}
.wsb6{word-spacing:0.743874pt;}
.ws4d{word-spacing:0.797008pt;}
.ws70{word-spacing:0.850142pt;}
.ws7d{word-spacing:0.903276pt;}
.wsbc{word-spacing:0.956410pt;}
.ws3a{word-spacing:1.009543pt;}
.wsea{word-spacing:1.020173pt;}
.ws57{word-spacing:1.062677pt;}
.ws98{word-spacing:1.115811pt;}
.ws65{word-spacing:1.168945pt;}
.wsb{word-spacing:1.195520pt;}
.wsd1{word-spacing:1.222079pt;}
.ws21{word-spacing:1.275213pt;}
.ws2d{word-spacing:1.381481pt;}
.wsc9{word-spacing:1.434614pt;}
.ws48{word-spacing:1.487748pt;}
.ws8a{word-spacing:1.540882pt;}
.wsca{word-spacing:1.594016pt;}
.ws2b{word-spacing:1.647150pt;}
.ws3b{word-spacing:1.700284pt;}
.ws75{word-spacing:1.753418pt;}
.wscf{word-spacing:1.806551pt;}
.wsf9{word-spacing:1.827810pt;}
.ws39{word-spacing:1.859685pt;}
.wse6{word-spacing:1.997838pt;}
.wsb5{word-spacing:2.019087pt;}
.ws73{word-spacing:2.072221pt;}
.wsbb{word-spacing:2.125355pt;}
.ws8{word-spacing:2.151936pt;}
.ws80{word-spacing:2.178489pt;}
.ws6c{word-spacing:2.284756pt;}
.wse1{word-spacing:2.295389pt;}
.ws7e{word-spacing:2.337890pt;}
.ws4b{word-spacing:2.391024pt;}
.ws1e{word-spacing:2.444158pt;}
.ws51{word-spacing:2.497292pt;}
.wsf2{word-spacing:2.507925pt;}
.ws33{word-spacing:2.550426pt;}
.ws89{word-spacing:2.603559pt;}
.wsd8{word-spacing:2.635446pt;}
.wsab{word-spacing:2.656693pt;}
.wsbd{word-spacing:2.709827pt;}
.ws20{word-spacing:2.762961pt;}
.wsd{word-spacing:2.773606pt;}
.ws4c{word-spacing:2.816095pt;}
.ws71{word-spacing:2.869229pt;}
.ws7a{word-spacing:2.922363pt;}
.wsc0{word-spacing:3.028630pt;}
.ws87{word-spacing:3.081764pt;}
.ws6f{word-spacing:3.134898pt;}
.wsf5{word-spacing:3.188040pt;}
.wsd2{word-spacing:3.241166pt;}
.ws7c{word-spacing:3.294300pt;}
.ws22{word-spacing:3.347434pt;}
.wsdc{word-spacing:3.443083pt;}
.ws11{word-spacing:3.443098pt;}
.ws4a{word-spacing:3.453701pt;}
.ws47{word-spacing:3.506835pt;}
.ws5b{word-spacing:3.559969pt;}
.ws2f{word-spacing:3.666237pt;}
.wsa8{word-spacing:3.719371pt;}
.wsf7{word-spacing:3.740634pt;}
.wsbf{word-spacing:3.772505pt;}
.wse3{word-spacing:3.783141pt;}
.ws24{word-spacing:3.825638pt;}
.ws10{word-spacing:3.873485pt;}
.ws69{word-spacing:3.878772pt;}
.ws43{word-spacing:3.931906pt;}
.ws96{word-spacing:3.985040pt;}
.ws62{word-spacing:4.038174pt;}
.wscb{word-spacing:4.091308pt;}
.ws7b{word-spacing:4.144442pt;}
.ws83{word-spacing:4.197575pt;}
.wsdb{word-spacing:4.250720pt;}
.ws77{word-spacing:4.303843pt;}
.ws55{word-spacing:4.356977pt;}
.wsb9{word-spacing:4.410111pt;}
.wscc{word-spacing:4.463245pt;}
.wsee{word-spacing:4.463256pt;}
.ws67{word-spacing:4.569513pt;}
.ws6b{word-spacing:4.622646pt;}
.ws7{word-spacing:4.638618pt;}
.ws27{word-spacing:4.675780pt;}
.wsf6{word-spacing:4.718299pt;}
.wsae{word-spacing:4.728914pt;}
.ws12{word-spacing:4.734259pt;}
.ws74{word-spacing:4.782048pt;}
.ws9{word-spacing:4.782080pt;}
.ws86{word-spacing:4.835182pt;}
.ws9c{word-spacing:4.846543pt;}
.ws2a{word-spacing:4.888316pt;}
.ws2c{word-spacing:4.941450pt;}
.ws49{word-spacing:4.994583pt;}
.ws6e{word-spacing:5.047717pt;}
.wsb0{word-spacing:5.100851pt;}
.ws1c{word-spacing:5.153985pt;}
.wsef{word-spacing:5.185878pt;}
.ws34{word-spacing:5.207119pt;}
.wsaf{word-spacing:5.260253pt;}
.ws4{word-spacing:5.313387pt;}
.ws97{word-spacing:5.419654pt;}
.ws5f{word-spacing:5.472788pt;}
.wsc7{word-spacing:5.525922pt;}
.ws4f{word-spacing:5.579056pt;}
.ws3d{word-spacing:5.632190pt;}
.wseb{word-spacing:5.653458pt;}
.ws54{word-spacing:5.685324pt;}
.wsce{word-spacing:5.738458pt;}
.ws44{word-spacing:5.791591pt;}
.ws23{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws85{word-spacing:5.897859pt;}
.ws1d{word-spacing:5.950993pt;}
.wsd7{word-spacing:5.951008pt;}
.ws16{word-spacing:5.977600pt;}
.wsba{word-spacing:6.004127pt;}
.ws32{word-spacing:6.057261pt;}
.ws9b{word-spacing:6.058179pt;}
.ws5a{word-spacing:6.110395pt;}
.ws14{word-spacing:6.168883pt;}
.ws30{word-spacing:6.216662pt;}
.ws29{word-spacing:6.269796pt;}
.ws64{word-spacing:6.322930pt;}
.ws92{word-spacing:6.376064pt;}
.ws1b{word-spacing:6.482332pt;}
.ws4e{word-spacing:6.535466pt;}
.wsf1{word-spacing:6.673630pt;}
.ws3c{word-spacing:6.694867pt;}
.ws91{word-spacing:6.748001pt;}
.ws46{word-spacing:6.801135pt;}
.wsc4{word-spacing:6.854269pt;}
.ws45{word-spacing:6.907403pt;}
.ws6a{word-spacing:6.960537pt;}
.ws72{word-spacing:7.013670pt;}
.wsc2{word-spacing:7.066804pt;}
.wsc8{word-spacing:7.119938pt;}
.wsbe{word-spacing:7.279340pt;}
.ws61{word-spacing:7.332474pt;}
.ws35{word-spacing:7.385607pt;}
.ws59{word-spacing:7.438741pt;}
.wsc1{word-spacing:7.704411pt;}
.ws6{word-spacing:7.746970pt;}
.ws36{word-spacing:7.757545pt;}
.ws40{word-spacing:7.810678pt;}
.wsd6{word-spacing:7.863812pt;}
.ws31{word-spacing:7.916946pt;}
.wsdf{word-spacing:8.331411pt;}
.wse7{word-spacing:8.373918pt;}
.ws66{word-spacing:8.554553pt;}
.wsf3{word-spacing:8.671469pt;}
.wsb8{word-spacing:8.767088pt;}
.wse8{word-spacing:8.926512pt;}
.ws50{word-spacing:9.085891pt;}
.wsc{word-spacing:9.133773pt;}
.ws25{word-spacing:9.192159pt;}
.ws60{word-spacing:9.298427pt;}
.wsd4{word-spacing:9.457828pt;}
.ws5c{word-spacing:9.670364pt;}
.ws88{word-spacing:9.776631pt;}
.ws18{word-spacing:9.994547pt;}
.ws81{word-spacing:10.095435pt;}
.wsf{word-spacing:10.329293pt;}
.ws68{word-spacing:10.361104pt;}
.ws84{word-spacing:10.626773pt;}
.wsa{word-spacing:10.664038pt;}
.wscd{word-spacing:10.679907pt;}
.wsad{word-spacing:10.945577pt;}
.wsd5{word-spacing:11.104978pt;}
.ws90{word-spacing:11.423781pt;}
.wsde{word-spacing:11.731987pt;}
.ws5d{word-spacing:11.901986pt;}
.wse{word-spacing:11.907379pt;}
.wsd3{word-spacing:12.167655pt;}
.wsb2{word-spacing:12.327057pt;}
.ws8e{word-spacing:12.433325pt;}
.wse5{word-spacing:12.582131pt;}
.ws0{word-spacing:12.752160pt;}
.wse0{word-spacing:12.879682pt;}
.ws95{word-spacing:12.911530pt;}
.wsd9{word-spacing:13.219739pt;}
.ws8f{word-spacing:13.761671pt;}
.wsf8{word-spacing:14.324926pt;}
.wse4{word-spacing:14.367434pt;}
.wsda{word-spacing:14.835013pt;}
.ws8c{word-spacing:15.036884pt;}
.wsac{word-spacing:15.887026pt;}
.wsf4{word-spacing:15.897693pt;}
.ws19{word-spacing:15.940160pt;}
.ws8b{word-spacing:18.065515pt;}
.ws63{word-spacing:18.543719pt;}
.wse9{word-spacing:19.510805pt;}
.ws17{word-spacing:21.901926pt;}
.wsb3{word-spacing:25.557390pt;}
.wsaa{word-spacing:31.827186pt;}
.ws9f{word-spacing:60.581793pt;}
.wsa4{word-spacing:84.814510pt;}
.wsd0{word-spacing:162.265187pt;}
.ws9d{word-spacing:226.382043pt;}
.wsa5{word-spacing:246.495198pt;}
.wsa3{word-spacing:282.892740pt;}
.ws9a{word-spacing:1060.945179pt;}
._1{margin-left:-6.487669pt;}
._5{margin-left:-4.457462pt;}
._6{margin-left:-3.559956pt;}
._8{margin-left:-2.646090pt;}
._0{margin-left:-1.275216pt;}
._42{width:1.083957pt;}
._2{width:2.002431pt;}
._3{width:3.304432pt;}
._4{width:4.904967pt;}
._7{width:7.364403pt;}
._d{width:8.926490pt;}
._3d{width:11.530052pt;}
._9{width:14.489702pt;}
._3f{width:15.727625pt;}
._b{width:16.737168pt;}
._3e{width:18.171782pt;}
._a{width:19.765798pt;}
._c{width:26.566933pt;}
._11{width:72.865527pt;}
._37{width:86.946989pt;}
._12{width:92.908237pt;}
._2a{width:97.128894pt;}
._15{width:103.808796pt;}
._1c{width:105.800043pt;}
._2f{width:125.428544pt;}
._32{width:130.190519pt;}
._1a{width:133.477970pt;}
._3a{width:135.460889pt;}
._41{width:162.669033pt;}
._21{width:177.204908pt;}
._40{width:182.861367pt;}
._1f{width:200.889225pt;}
._2e{width:202.226748pt;}
._20{width:206.171957pt;}
._25{width:208.886022pt;}
._18{width:215.138063pt;}
._e{width:233.991116pt;}
._13{width:237.286766pt;}
._1b{width:245.332028pt;}
._28{width:254.685857pt;}
._23{width:278.918574pt;}
._14{width:284.249772pt;}
._2c{width:303.151291pt;}
._f{width:305.865355pt;}
._22{width:330.970450pt;}
._16{width:333.684515pt;}
._27{width:365.962494pt;}
._29{width:695.190531pt;}
._19{width:708.758510pt;}
._1d{width:715.009194pt;}
._1e{width:773.466714pt;}
._34{width:896.467480pt;}
._31{width:897.921443pt;}
._17{width:911.782557pt;}
._2b{width:922.202625pt;}
._24{width:969.110659pt;}
._26{width:987.234388pt;}
._33{width:1151.684113pt;}
._10{width:1196.853898pt;}
._3c{width:1199.936177pt;}
._3b{width:1234.656937pt;}
._30{width:1235.561187pt;}
._38{width:1271.006013pt;}
._2d{width:1279.826722pt;}
._35{width:1311.910839pt;}
._36{width:1336.207136pt;}
._39{width:1400.360256pt;}
.fsc{font-size:16.014240pt;}
.fs14{font-size:36.346200pt;}
.fs11{font-size:36.349228pt;}
.fs3{font-size:37.193600pt;}
.fs12{font-size:40.384667pt;}
.fs2{font-size:40.913067pt;}
.fs8{font-size:40.935680pt;}
.fs6{font-size:42.507200pt;}
.fsf{font-size:42.704640pt;}
.fs9{font-size:43.332180pt;}
.fs13{font-size:44.423133pt;}
.fs5{font-size:47.820800pt;}
.fs10{font-size:48.465434pt;}
.fs4{font-size:53.133867pt;}
.fsd{font-size:53.380800pt;}
.fs1{font-size:58.447467pt;}
.fsb{font-size:85.409280pt;}
.fs7{font-size:87.804160pt;}
.fsa{font-size:106.761600pt;}
.fs0{font-size:127.521600pt;}
.fse{font-size:128.113920pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:0.134491pt;}
.y106{bottom:0.216165pt;}
.y18c{bottom:3.071415pt;}
.y55{bottom:4.932554pt;}
.y18b{bottom:17.206049pt;}
.y18d{bottom:27.314250pt;}
.yf4{bottom:34.391337pt;}
.yf1{bottom:38.018518pt;}
.yf3{bottom:39.671988pt;}
.yf5{bottom:40.740903pt;}
.yf7{bottom:44.051833pt;}
.yf6{bottom:44.956629pt;}
.y192{bottom:52.441670pt;}
.y18e{bottom:59.568676pt;}
.y56{bottom:63.574392pt;}
.y104{bottom:64.194860pt;}
.y105{bottom:84.524938pt;}
.y7d{bottom:84.907087pt;}
.y18f{bottom:91.822778pt;}
.y34{bottom:100.740000pt;}
.y57{bottom:104.564666pt;}
.y9e{bottom:107.142658pt;}
.y5e{bottom:112.193293pt;}
.y33{bottom:116.680000pt;}
.y12a{bottom:116.681333pt;}
.y190{bottom:124.077204pt;}
.y194{bottom:132.466553pt;}
.y53{bottom:132.620000pt;}
.y32{bottom:132.621333pt;}
.y1ca{bottom:133.653333pt;}
.yf0{bottom:134.266947pt;}
.y5d{bottom:136.147548pt;}
.y7e{bottom:139.706317pt;}
.y193{bottom:143.244413pt;}
.y1c9{bottom:145.608000pt;}
.y52{bottom:148.560000pt;}
.y31{bottom:148.561333pt;}
.y132{bottom:153.236000pt;}
.y191{bottom:156.331306pt;}
.y1c8{bottom:157.562667pt;}
.yed{bottom:164.425333pt;}
.y30{bottom:164.501333pt;}
.y15d{bottom:164.840000pt;}
.y129{bottom:165.818667pt;}
.ybd{bottom:168.702667pt;}
.y131{bottom:169.176000pt;}
.y1c7{bottom:169.518667pt;}
.y9a{bottom:170.446667pt;}
.y58{bottom:170.534584pt;}
.y2f{bottom:180.441333pt;}
.y188{bottom:180.630667pt;}
.y15c{bottom:180.780000pt;}
.y1c6{bottom:181.473333pt;}
.yec{bottom:181.884000pt;}
.y9d{bottom:183.826362pt;}
.y130{bottom:186.073333pt;}
.yef{bottom:187.055665pt;}
.y128{bottom:188.497333pt;}
.y9c{bottom:191.926192pt;}
.y1c5{bottom:193.428000pt;}
.ybc{bottom:193.652000pt;}
.y2e{bottom:196.381333pt;}
.y187{bottom:196.570667pt;}
.y15b{bottom:196.720000pt;}
.y5c{bottom:198.843743pt;}
.y99{bottom:199.630667pt;}
.yfb{bottom:201.255627pt;}
.yfd{bottom:201.255798pt;}
.yfe{bottom:201.255847pt;}
.y100{bottom:201.415856pt;}
.y12f{bottom:202.013333pt;}
.yf9{bottom:202.909007pt;}
.yf8{bottom:202.961137pt;}
.y103{bottom:203.017351pt;}
.y102{bottom:203.069481pt;}
.yf2{bottom:203.121328pt;}
.yfa{bottom:203.229431pt;}
.yfc{bottom:203.229602pt;}
.y101{bottom:203.281649pt;}
.yff{bottom:203.441791pt;}
.y127{bottom:204.161333pt;}
.y1c4{bottom:205.384000pt;}
.yeb{bottom:205.457333pt;}
.ybb{bottom:209.592000pt;}
.y2d{bottom:212.321333pt;}
.y1a1{bottom:212.322667pt;}
.y186{bottom:212.510667pt;}
.y15a{bottom:212.661333pt;}
.y98{bottom:215.570667pt;}
.y1c3{bottom:217.338667pt;}
.y12e{bottom:217.953333pt;}
.y59{bottom:218.024104pt;}
.y126{bottom:220.101333pt;}
.yea{bottom:221.322667pt;}
.y7b{bottom:223.260811pt;}
.yba{bottom:225.533333pt;}
.y51{bottom:228.261333pt;}
.y2c{bottom:228.262667pt;}
.y7a{bottom:228.282510pt;}
.y185{bottom:228.450667pt;}
.y159{bottom:228.601333pt;}
.y5b{bottom:228.713803pt;}
.y1c2{bottom:229.293333pt;}
.y97{bottom:231.510667pt;}
.y12d{bottom:233.893333pt;}
.y1a0{bottom:233.982667pt;}
.y125{bottom:236.041333pt;}
.ye9{bottom:237.262667pt;}
.y1c1{bottom:241.249333pt;}
.yb9{bottom:241.473333pt;}
.y2b{bottom:244.202667pt;}
.y184{bottom:244.390667pt;}
.y158{bottom:244.541333pt;}
.y96{bottom:247.450667pt;}
.y77{bottom:249.048000pt;}
.y124{bottom:251.981333pt;}
.y5a{bottom:252.425500pt;}
.ye8{bottom:253.202667pt;}
.y1c0{bottom:253.204000pt;}
.y12c{bottom:257.365333pt;}
.yb8{bottom:257.413333pt;}
.y19f{bottom:258.674667pt;}
.y2a{bottom:260.142667pt;}
.y183{bottom:260.330667pt;}
.y157{bottom:260.481333pt;}
.y95{bottom:263.390667pt;}
.y1bf{bottom:265.160000pt;}
.ye7{bottom:270.661333pt;}
.y123{bottom:271.829333pt;}
.yb7{bottom:273.353333pt;}
.y19e{bottom:274.614667pt;}
.y76{bottom:275.560000pt;}
.y29{bottom:276.082667pt;}
.y156{bottom:276.421333pt;}
.y1be{bottom:277.114667pt;}
.y94{bottom:279.330667pt;}
.y182{bottom:281.590667pt;}
.y1bd{bottom:289.069333pt;}
.y79{bottom:289.300552pt;}
.y12b{bottom:290.398667pt;}
.y19d{bottom:290.554667pt;}
.y75{bottom:291.500000pt;}
.y28{bottom:292.022667pt;}
.y155{bottom:292.361333pt;}
.yb6{bottom:293.508000pt;}
.ye6{bottom:294.234667pt;}
.y122{bottom:295.074667pt;}
.y93{bottom:295.272000pt;}
.y1bc{bottom:301.025333pt;}
.y19c{bottom:306.496000pt;}
.y74{bottom:307.440000pt;}
.y27{bottom:307.962667pt;}
.y181{bottom:308.104000pt;}
.y154{bottom:308.302667pt;}
.ye5{bottom:310.174667pt;}
.y121{bottom:311.014667pt;}
.y92{bottom:311.212000pt;}
.y1bb{bottom:312.980000pt;}
.yb5{bottom:318.457333pt;}
.y19b{bottom:322.436000pt;}
.y73{bottom:323.381333pt;}
.y26{bottom:323.802667pt;}
.y50{bottom:323.902667pt;}
.y180{bottom:324.045333pt;}
.y153{bottom:324.242667pt;}
.y1ba{bottom:324.934667pt;}
.ye4{bottom:326.040000pt;}
.y120{bottom:326.954667pt;}
.y91{bottom:327.152000pt;}
.yb4{bottom:334.397333pt;}
.y1b9{bottom:336.890667pt;}
.y19a{bottom:338.376000pt;}
.y72{bottom:339.321333pt;}
.y25{bottom:339.744000pt;}
.y4f{bottom:339.844000pt;}
.y17f{bottom:339.985333pt;}
.y152{bottom:340.182667pt;}
.ye3{bottom:341.980000pt;}
.y11f{bottom:342.894667pt;}
.y90{bottom:343.092000pt;}
.y1b8{bottom:348.845333pt;}
.yb3{bottom:350.337333pt;}
.y199{bottom:354.572000pt;}
.y71{bottom:355.261333pt;}
.y24{bottom:355.684000pt;}
.y4e{bottom:355.784000pt;}
.y17e{bottom:355.925333pt;}
.y151{bottom:356.461333pt;}
.ye2{bottom:357.920000pt;}
.y8f{bottom:359.032000pt;}
.y1b7{bottom:360.801333pt;}
.yb2{bottom:366.277333pt;}
.y198{bottom:370.512000pt;}
.y70{bottom:371.201333pt;}
.y23{bottom:371.624000pt;}
.y4d{bottom:371.724000pt;}
.y17d{bottom:371.865333pt;}
.y150{bottom:372.402667pt;}
.y1b6{bottom:372.756000pt;}
.y8e{bottom:374.972000pt;}
.ye1{bottom:375.378667pt;}
.yb1{bottom:382.218667pt;}
.y1b5{bottom:384.710667pt;}
.y197{bottom:386.452000pt;}
.y6f{bottom:387.141333pt;}
.y22{bottom:387.564000pt;}
.y4c{bottom:387.664000pt;}
.y17c{bottom:387.994667pt;}
.y14f{bottom:388.342667pt;}
.y8d{bottom:390.913333pt;}
.y11e{bottom:395.845745pt;}
.y1b4{bottom:396.666667pt;}
.yb0{bottom:398.158667pt;}
.ye0{bottom:398.953333pt;}
.y196{bottom:402.393333pt;}
.y6e{bottom:403.081333pt;}
.y21{bottom:403.504000pt;}
.y4b{bottom:403.604000pt;}
.y17b{bottom:403.934667pt;}
.y14e{bottom:404.282667pt;}
.y8c{bottom:407.356000pt;}
.y1b3{bottom:408.621333pt;}
.yaf{bottom:414.098667pt;}
.y11d{bottom:414.158395pt;}
.ydf{bottom:416.410667pt;}
.y6d{bottom:419.022667pt;}
.y20{bottom:419.444000pt;}
.y4a{bottom:419.544000pt;}
.y17a{bottom:419.876000pt;}
.y14d{bottom:420.222667pt;}
.y1b2{bottom:420.576000pt;}
.y8b{bottom:423.296000pt;}
.y11c{bottom:427.790268pt;}
.yae{bottom:430.044000pt;}
.y1b1{bottom:432.532000pt;}
.y6c{bottom:434.962667pt;}
.y1f{bottom:435.385333pt;}
.y49{bottom:435.485333pt;}
.y179{bottom:435.816000pt;}
.y14c{bottom:436.162667pt;}
.y8a{bottom:439.237333pt;}
.yde{bottom:439.985333pt;}
.y11b{bottom:441.420620pt;}
.y1b0{bottom:444.486667pt;}
.yad{bottom:445.984000pt;}
.y195{bottom:448.505333pt;}
.y6b{bottom:450.902667pt;}
.y1e{bottom:451.325333pt;}
.y48{bottom:451.425333pt;}
.y178{bottom:451.756000pt;}
.y14b{bottom:452.102667pt;}
.y11a{bottom:455.050972pt;}
.y89{bottom:455.177333pt;}
.ydd{bottom:455.925333pt;}
.y1af{bottom:456.442667pt;}
.yac{bottom:461.924000pt;}
.y1d{bottom:467.265333pt;}
.y47{bottom:467.365333pt;}
.y18a{bottom:467.633333pt;}
.y177{bottom:467.696000pt;}
.y14a{bottom:468.044000pt;}
.y1ae{bottom:468.397333pt;}
.y119{bottom:468.682845pt;}
.y88{bottom:471.117333pt;}
.y6a{bottom:472.160000pt;}
.ydc{bottom:473.384000pt;}
.yab{bottom:477.864000pt;}
.y1ad{bottom:480.352000pt;}
.y118{bottom:482.313197pt;}
.y1c{bottom:483.205333pt;}
.y46{bottom:483.305333pt;}
.y176{bottom:483.636000pt;}
.y149{bottom:483.984000pt;}
.y87{bottom:487.057333pt;}
.ydb{bottom:489.324000pt;}
.y1ac{bottom:492.308000pt;}
.yaa{bottom:493.805333pt;}
.y117{bottom:495.943549pt;}
.y69{bottom:498.672000pt;}
.y1b{bottom:499.145333pt;}
.y45{bottom:499.245333pt;}
.y175{bottom:499.576000pt;}
.y148{bottom:499.924000pt;}
.y86{bottom:502.997333pt;}
.y1ab{bottom:504.262667pt;}
.y116{bottom:509.575422pt;}
.ya9{bottom:509.745333pt;}
.yda{bottom:512.897333pt;}
.y68{bottom:514.613333pt;}
.y44{bottom:515.185333pt;}
.y174{bottom:515.517333pt;}
.y147{bottom:515.864000pt;}
.y1aa{bottom:516.217333pt;}
.y85{bottom:518.937333pt;}
.y1a{bottom:519.169333pt;}
.y115{bottom:523.205774pt;}
.ya8{bottom:525.685333pt;}
.y1a9{bottom:528.173333pt;}
.yd9{bottom:528.838667pt;}
.y67{bottom:530.553333pt;}
.y43{bottom:531.126667pt;}
.y173{bottom:531.457333pt;}
.y146{bottom:531.804000pt;}
.y84{bottom:534.878667pt;}
.y114{bottom:536.836126pt;}
.y1a8{bottom:540.128000pt;}
.ya7{bottom:541.625333pt;}
.yd8{bottom:544.778667pt;}
.y42{bottom:547.066667pt;}
.y19{bottom:547.166667pt;}
.y172{bottom:547.397333pt;}
.y145{bottom:547.744000pt;}
.y66{bottom:549.549333pt;}
.y113{bottom:550.467999pt;}
.y83{bottom:550.818667pt;}
.y1a7{bottom:552.084000pt;}
.ya6{bottom:557.570667pt;}
.y18{bottom:560.450667pt;}
.yd7{bottom:560.718667pt;}
.y41{bottom:563.006667pt;}
.y171{bottom:563.526667pt;}
.y144{bottom:563.685333pt;}
.y1a6{bottom:564.038667pt;}
.y112{bottom:564.098351pt;}
.y65{bottom:565.489333pt;}
.y82{bottom:566.758667pt;}
.ya5{bottom:573.510667pt;}
.y17{bottom:573.633333pt;}
.y1a5{bottom:575.993333pt;}
.yd6{bottom:576.658667pt;}
.y111{bottom:577.730224pt;}
.y40{bottom:578.946667pt;}
.y170{bottom:579.466667pt;}
.y143{bottom:579.625333pt;}
.y64{bottom:581.429333pt;}
.y81{bottom:582.698667pt;}
.y16{bottom:586.917333pt;}
.y1a4{bottom:587.949333pt;}
.ya4{bottom:589.450667pt;}
.y110{bottom:591.360576pt;}
.yd5{bottom:594.117333pt;}
.y3f{bottom:594.886667pt;}
.y16f{bottom:595.406667pt;}
.y142{bottom:595.565333pt;}
.y63{bottom:597.369333pt;}
.y80{bottom:598.638667pt;}
.y1a3{bottom:599.904000pt;}
.y15{bottom:600.201333pt;}
.y10f{bottom:604.990928pt;}
.ya3{bottom:605.392000pt;}
.y3e{bottom:610.828000pt;}
.y16e{bottom:611.346667pt;}
.y141{bottom:611.505333pt;}
.y62{bottom:613.309333pt;}
.y14{bottom:613.484000pt;}
.yd4{bottom:617.690667pt;}
.y10e{bottom:618.622801pt;}
.y1a2{bottom:619.629333pt;}
.ya2{bottom:621.332000pt;}
.y13{bottom:626.768000pt;}
.y16d{bottom:627.288000pt;}
.y10d{bottom:632.253153pt;}
.y61{bottom:632.305333pt;}
.y140{bottom:632.816000pt;}
.yd3{bottom:633.632000pt;}
.ya1{bottom:637.272000pt;}
.y12{bottom:640.052000pt;}
.y3d{bottom:642.708000pt;}
.y16c{bottom:643.228000pt;}
.y7f{bottom:645.410667pt;}
.y10c{bottom:645.883505pt;}
.yd2{bottom:649.572000pt;}
.ya0{bottom:653.212000pt;}
.y11{bottom:653.334667pt;}
.y3c{bottom:658.648000pt;}
.y16b{bottom:659.168000pt;}
.y10b{bottom:659.515378pt;}
.y13f{bottom:660.604000pt;}
.y78{bottom:664.538667pt;}
.y189{bottom:665.060000pt;}
.yd1{bottom:665.512000pt;}
.y10{bottom:666.618667pt;}
.y10a{bottom:673.145730pt;}
.y3b{bottom:674.588000pt;}
.y16a{bottom:675.108000pt;}
.y13e{bottom:676.544000pt;}
.y60{bottom:678.238667pt;}
.yf{bottom:679.902667pt;}
.yd0{bottom:681.452000pt;}
.y3a{bottom:690.528000pt;}
.y169{bottom:691.048000pt;}
.y13d{bottom:692.484000pt;}
.ye{bottom:693.185333pt;}
.y5f{bottom:694.178667pt;}
.y109{bottom:694.690383pt;}
.ycf{bottom:697.392000pt;}
.y9f{bottom:698.654667pt;}
.yd{bottom:706.469333pt;}
.y168{bottom:706.988000pt;}
.y13c{bottom:708.425333pt;}
.yce{bottom:713.257333pt;}
.y54{bottom:713.308000pt;}
.y9b{bottom:717.784000pt;}
.yc{bottom:719.752000pt;}
.y39{bottom:722.409333pt;}
.y108{bottom:722.625333pt;}
.y167{bottom:722.929333pt;}
.ycd{bottom:729.197333pt;}
.y13b{bottom:730.582667pt;}
.yb{bottom:733.036000pt;}
.y38{bottom:738.349333pt;}
.y166{bottom:738.869333pt;}
.ycc{bottom:745.137333pt;}
.ya{bottom:746.320000pt;}
.y107{bottom:748.396000pt;}
.y37{bottom:754.289333pt;}
.y165{bottom:754.809333pt;}
.y13a{bottom:758.370667pt;}
.y9{bottom:759.602667pt;}
.ycb{bottom:761.077333pt;}
.yee{bottom:767.524000pt;}
.y36{bottom:770.229333pt;}
.y164{bottom:770.749333pt;}
.y8{bottom:772.886667pt;}
.y139{bottom:774.310667pt;}
.yca{bottom:777.017333pt;}
.y35{bottom:786.169333pt;}
.y7{bottom:786.170667pt;}
.y163{bottom:786.689333pt;}
.y138{bottom:790.250667pt;}
.yc9{bottom:792.958667pt;}
.y162{bottom:802.630667pt;}
.y137{bottom:806.190667pt;}
.yc8{bottom:808.898667pt;}
.y161{bottom:818.570667pt;}
.y136{bottom:822.132000pt;}
.yc7{bottom:824.838667pt;}
.y6{bottom:832.602667pt;}
.y135{bottom:838.072000pt;}
.y160{bottom:839.357333pt;}
.yc6{bottom:840.778667pt;}
.y5{bottom:853.861333pt;}
.y134{bottom:854.012000pt;}
.yc5{bottom:858.237333pt;}
.y15f{bottom:865.870667pt;}
.y4{bottom:870.300000pt;}
.yc4{bottom:881.810667pt;}
.y3{bottom:882.114667pt;}
.y15e{bottom:897.750667pt;}
.yc3{bottom:897.752000pt;}
.y133{bottom:900.345333pt;}
.yc2{bottom:913.692000pt;}
.y2{bottom:923.957333pt;}
.yc1{bottom:929.632000pt;}
.yc0{bottom:945.572000pt;}
.y1{bottom:961.152000pt;}
.ybf{bottom:961.512000pt;}
.ybe{bottom:977.452000pt;}
.h14{height:11.666624pt;}
.h20{height:25.236473pt;}
.h3{height:25.589197pt;}
.h1b{height:25.589856pt;}
.hc{height:27.983375pt;}
.h1e{height:28.040525pt;}
.h21{height:29.244954pt;}
.he{height:29.473499pt;}
.h17{height:30.307507pt;}
.h1f{height:30.844578pt;}
.h10{height:33.155533pt;}
.h6{height:33.187635pt;}
.h19{height:33.344219pt;}
.h7{height:33.388911pt;}
.h5{height:33.426739pt;}
.h18{height:33.839000pt;}
.h1a{height:34.119666pt;}
.ha{height:36.290431pt;}
.h4{height:36.556100pt;}
.h1c{height:37.118900pt;}
.hf{height:37.459376pt;}
.h2{height:49.262857pt;}
.h15{height:50.044500pt;}
.h9{height:60.022375pt;}
.h13{height:80.071200pt;}
.h1{height:87.734861pt;}
.h12{height:100.089000pt;}
.h16{height:120.106800pt;}
.h1d{height:163.154053pt;}
.h11{height:221.085480pt;}
.hd{height:270.826667pt;}
.h8{height:275.302627pt;}
.hb{height:324.074133pt;}
.h0{height:1056.000000pt;}
.w5{width:301.269613pt;}
.w2{width:334.734467pt;}
.w3{width:334.741760pt;}
.w1{width:334.753360pt;}
.w4{width:535.587360pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x42{left:7.711266pt;}
.x41{left:13.163221pt;}
.xe{left:18.276491pt;}
.xf{left:19.960693pt;}
.xd{left:23.808555pt;}
.x3f{left:24.773812pt;}
.x1b{left:31.949964pt;}
.x17{left:39.312278pt;}
.x15{left:46.275608pt;}
.x37{left:58.923506pt;}
.x9{left:65.285333pt;}
.x3c{left:71.257333pt;}
.x3a{left:74.341061pt;}
.x8{left:78.569333pt;}
.x12{left:79.768000pt;}
.x3e{left:81.440000pt;}
.x13{left:91.852000pt;}
.x16{left:96.999179pt;}
.x3{left:107.080000pt;}
.x2{left:117.316000pt;}
.x19{left:122.663897pt;}
.x1{left:123.629333pt;}
.x38{left:126.247371pt;}
.x40{left:137.447032pt;}
.x1c{left:140.202667pt;}
.x7{left:146.150667pt;}
.x43{left:171.156000pt;}
.x5{left:179.398667pt;}
.xa{left:180.826667pt;}
.x14{left:189.108000pt;}
.x39{left:200.520000pt;}
.x1a{left:248.996954pt;}
.x36{left:254.946701pt;}
.x6{left:280.128000pt;}
.x1e{left:288.914683pt;}
.x1f{left:293.869756pt;}
.x20{left:303.530257pt;}
.x21{left:313.190937pt;}
.x22{left:322.855441pt;}
.x10{left:324.303803pt;}
.x11{left:326.087686pt;}
.x23{left:332.516121pt;}
.x24{left:341.592058pt;}
.x2d{left:351.625113pt;}
.x1d{left:357.711858pt;}
.x27{left:361.289573pt;}
.x28{left:373.028144pt;}
.x2e{left:376.287042pt;}
.x2f{left:385.951725pt;}
.x29{left:390.059289pt;}
.x30{left:395.612226pt;}
.x2a{left:399.615697pt;}
.x31{left:405.272817pt;}
.x2b{left:409.224241pt;}
.x32{left:414.881361pt;}
.xb{left:415.970667pt;}
.x2c{left:418.832785pt;}
.x45{left:421.284000pt;}
.x33{left:424.545865pt;}
.xc{left:429.253333pt;}
.x3b{left:430.453333pt;}
.x34{left:434.206545pt;}
.x18{left:437.564000pt;}
.x46{left:440.316000pt;}
.x35{left:443.867046pt;}
.x25{left:453.531595pt;}
.x26{left:463.140139pt;}
.x4{left:496.445333pt;}
.x3d{left:535.681333pt;}
.x44{left:546.149333pt;}
}




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