
    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_8b45390bbe0109be6a795617.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c51755086569f0c4f9d6e66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_aa32ee4ad29c5a35bd381c64.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_3ac6d705d40b5069d4f91411.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_8630b14f1c764200284b04b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_456b9ddc8183d77ffdd4b231.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_4be14f7e9afa9ca2c5746270.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_e88be959df60f8bc8fcb29bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.799000;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_0e0fe3d70c928e3fe8a17338.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966000;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_1a6868a9756401f81615e51e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_0cdfc4320f704db516a359aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_12712b745622a5501004e0b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.174316;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_b7fff344b256572f0eaa13a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_a2d15a3581b60c95f55ddb85.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942871;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_31ed8ab03a941abda3af6168.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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_b7e8b5ffa5aa5215aa66d87a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.903320;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_ad8f7032b21d470295514bb5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.665000;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_1a6868a9756401f81615e51e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_c4ead9fe2f81f8280e412768.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006836;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_1dff22364b92a8a57c04f263.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.174316;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_aa748d88f30aab4943530d01.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.942871;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_b7fff344b256572f0eaa13a2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.727539;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_5f597f18439970ea106d6946.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b7e8b5ffa5aa5215aa66d87a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.903320;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:ff19;src:url('chunks/assets/font_caf0db17f4994f0929a6a94e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.717000;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;}
.m2a{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);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m21{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v1{vertical-align:-11.958000px;}
.v2{vertical-align:-10.920000px;}
.v9{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:19.524000px;}
.v6{vertical-align:23.550000px;}
.v8{vertical-align:32.874000px;}
.v3{vertical-align:40.464000px;}
.v4{vertical-align:52.770000px;}
.v5{vertical-align:66.378000px;}
.v7{vertical-align:87.006000px;}
.ls2f{letter-spacing:-0.360720px;}
.ls2b{letter-spacing:-0.156312px;}
.ls47{letter-spacing:-0.132264px;}
.ls46{letter-spacing:-0.126252px;}
.ls49{letter-spacing:-0.120240px;}
.ls4a{letter-spacing:-0.114228px;}
.ls2e{letter-spacing:-0.108216px;}
.ls43{letter-spacing:-0.102204px;}
.ls2a{letter-spacing:-0.090180px;}
.ls2c{letter-spacing:-0.084168px;}
.ls48{letter-spacing:-0.078156px;}
.ls34{letter-spacing:-0.076896px;}
.ls32{letter-spacing:-0.072144px;}
.ls31{letter-spacing:-0.066132px;}
.ls30{letter-spacing:-0.060120px;}
.ls44{letter-spacing:-0.036072px;}
.ls33{letter-spacing:-0.033552px;}
.ls45{letter-spacing:-0.030060px;}
.ls2d{letter-spacing:-0.024048px;}
.ls4b{letter-spacing:-0.012024px;}
.ls40{letter-spacing:-0.010800px;}
.ls41{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000612px;}
.ls3c{letter-spacing:0.006012px;}
.ls3a{letter-spacing:0.024048px;}
.ls20{letter-spacing:0.027000px;}
.ls1e{letter-spacing:0.028728px;}
.ls3e{letter-spacing:0.030060px;}
.ls36{letter-spacing:0.032400px;}
.ls1c{letter-spacing:0.033516px;}
.ls24{letter-spacing:0.036072px;}
.ls21{letter-spacing:0.037800px;}
.ls3d{letter-spacing:0.042084px;}
.ls29{letter-spacing:0.048060px;}
.ls27{letter-spacing:0.048096px;}
.ls38{letter-spacing:0.054000px;}
.ls25{letter-spacing:0.054108px;}
.ls4d{letter-spacing:0.058716px;}
.ls22{letter-spacing:0.064800px;}
.ls3b{letter-spacing:0.066132px;}
.ls23{letter-spacing:0.075600px;}
.ls39{letter-spacing:0.084168px;}
.ls28{letter-spacing:0.092268px;}
.ls26{letter-spacing:0.102204px;}
.ls42{letter-spacing:0.120240px;}
.ls37{letter-spacing:0.124200px;}
.ls4c{letter-spacing:0.150984px;}
.ls1f{letter-spacing:0.167580px;}
.ls1d{letter-spacing:0.181944px;}
.ls3f{letter-spacing:0.209700px;}
.ls18{letter-spacing:0.497764px;}
.ls15{letter-spacing:0.503764px;}
.lsc{letter-spacing:0.570571px;}
.lsf{letter-spacing:0.623675px;}
.lse{letter-spacing:0.670741px;}
.ls8{letter-spacing:0.676741px;}
.lsa{letter-spacing:1.224783px;}
.lsb{letter-spacing:1.409675px;}
.ls9{letter-spacing:1.420741px;}
.ls6{letter-spacing:2.607292px;}
.ls13{letter-spacing:2.986348px;}
.ls10{letter-spacing:3.516571px;}
.ls7{letter-spacing:4.302571px;}
.ls11{letter-spacing:7.688012px;}
.ls0{letter-spacing:10.461300px;}
.ls2{letter-spacing:11.954850px;}
.ls4e{letter-spacing:13.448400px;}
.ls4f{letter-spacing:13.454400px;}
.ls14{letter-spacing:14.094088px;}
.ls16{letter-spacing:14.100088px;}
.ls1b{letter-spacing:14.704798px;}
.ls12{letter-spacing:14.943900px;}
.ls1a{letter-spacing:15.003676px;}
.ls4{letter-spacing:20.335474px;}
.ls5{letter-spacing:24.495483px;}
.ls1{letter-spacing:28.453654px;}
.ls19{letter-spacing:419.382600px;}
.ls17{letter-spacing:426.108600px;}
.lsd{letter-spacing:885.858600px;}
.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;}
}
.wsa6{word-spacing:-60.120000px;}
.wsa5{word-spacing:-15.150240px;}
.ws4e{word-spacing:-14.943900px;}
.ws60{word-spacing:-13.449600px;}
.ws8a{word-spacing:-12.151944px;}
.ws8b{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.ws5b{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws16{word-spacing:-2.958912px;}
.ws4a{word-spacing:-2.929004px;}
.ws67{word-spacing:-2.809453px;}
.ws94{word-spacing:-2.737800px;}
.ws95{word-spacing:-2.732400px;}
.ws93{word-spacing:-2.727000px;}
.ws30{word-spacing:-2.630126px;}
.wsc2{word-spacing:-2.476944px;}
.ws14{word-spacing:-2.474726px;}
.ws87{word-spacing:-2.211697px;}
.wsd9{word-spacing:-2.205734px;}
.ws66{word-spacing:-1.912819px;}
.wsa4{word-spacing:-1.853044px;}
.ws3e{word-spacing:-1.733492px;}
.ws38{word-spacing:-1.673717px;}
.wsd6{word-spacing:-1.452557px;}
.ws89{word-spacing:-1.434614px;}
.wsae{word-spacing:-1.430856px;}
.ws5d{word-spacing:-1.374839px;}
.wsac{word-spacing:-1.312200px;}
.ws23{word-spacing:-1.075961px;}
.ws3c{word-spacing:-0.956410px;}
.ws86{word-spacing:-0.836858px;}
.wsd3{word-spacing:-0.806976px;}
.ws3b{word-spacing:-0.777083px;}
.ws1f{word-spacing:-0.717307px;}
.ws65{word-spacing:-0.657532px;}
.wsd2{word-spacing:-0.591782px;}
.wsaa{word-spacing:-0.567000px;}
.wsab{word-spacing:-0.529200px;}
.ws8e{word-spacing:-0.484186px;}
.ws1d{word-spacing:-0.478205px;}
.ws25{word-spacing:-0.418429px;}
.wse{word-spacing:-0.376589px;}
.ws31{word-spacing:-0.358654px;}
.wsb8{word-spacing:-0.336672px;}
.ws3d{word-spacing:-0.298878px;}
.ws90{word-spacing:-0.272916px;}
.ws11{word-spacing:-0.268992px;}
.ws9b{word-spacing:-0.246492px;}
.ws96{word-spacing:-0.243000px;}
.ws48{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.215194px;}
.ws33{word-spacing:-0.179327px;}
.ws9c{word-spacing:-0.162324px;}
.ws10{word-spacing:-0.161395px;}
.ws91{word-spacing:-0.119700px;}
.ws32{word-spacing:-0.119551px;}
.ws99{word-spacing:-0.114228px;}
.wsf{word-spacing:-0.107597px;}
.ws8c{word-spacing:-0.060120px;}
.wsb{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.wsd7{word-spacing:-0.008400px;}
.wscf{word-spacing:-0.006182px;}
.ws3{word-spacing:-0.003071px;}
.wsdc{word-spacing:-0.001843px;}
.ws2c{word-spacing:-0.001627px;}
.wsd5{word-spacing:-0.000182px;}
.ws1{word-spacing:0.000000px;}
.wsa2{word-spacing:0.042084px;}
.ws19{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.ws97{word-spacing:0.102600px;}
.ws63{word-spacing:0.107597px;}
.ws1c{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.ws12{word-spacing:0.161395px;}
.ws21{word-spacing:0.179327px;}
.wsad{word-spacing:0.183600px;}
.wsb7{word-spacing:0.210420px;}
.ws5f{word-spacing:0.215194px;}
.ws20{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.ws58{word-spacing:0.298878px;}
.wsc7{word-spacing:0.322790px;}
.ws54{word-spacing:0.358654px;}
.ws1b{word-spacing:0.418429px;}
.ws88{word-spacing:0.478205px;}
.wsd1{word-spacing:0.484186px;}
.ws7d{word-spacing:0.537980px;}
.wsca{word-spacing:0.537984px;}
.ws35{word-spacing:0.597756px;}
.ws8f{word-spacing:0.657532px;}
.ws6f{word-spacing:0.668400px;}
.ws6b{word-spacing:0.673200px;}
.ws78{word-spacing:0.674400px;}
.ws36{word-spacing:0.717307px;}
.ws47{word-spacing:0.777083px;}
.ws84{word-spacing:0.836858px;}
.ws7e{word-spacing:0.956410px;}
.ws39{word-spacing:1.135736px;}
.wsc1{word-spacing:1.184364px;}
.ws4b{word-spacing:1.195512px;}
.wsc3{word-spacing:1.255288px;}
.ws52{word-spacing:1.315063px;}
.ws82{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.wscc{word-spacing:1.398758px;}
.ws46{word-spacing:1.494390px;}
.ws59{word-spacing:1.554166px;}
.ws7b{word-spacing:1.673717px;}
.ws56{word-spacing:1.733492px;}
.ws3a{word-spacing:1.793268px;}
.wsb0{word-spacing:1.851696px;}
.ws57{word-spacing:1.853044px;}
.ws40{word-spacing:1.972595px;}
.wsaf{word-spacing:1.989972px;}
.wsb5{word-spacing:2.014020px;}
.ws5e{word-spacing:2.092146px;}
.ws41{word-spacing:2.151922px;}
.ws9e{word-spacing:2.308608px;}
.wsb6{word-spacing:2.326644px;}
.ws9a{word-spacing:2.332656px;}
.wsd4{word-spacing:2.367130px;}
.ws42{word-spacing:2.391024px;}
.ws24{word-spacing:2.450800px;}
.ws4f{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws26{word-spacing:2.630126px;}
.ws37{word-spacing:2.689902px;}
.ws50{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.wsce{word-spacing:2.905114px;}
.ws4d{word-spacing:2.929004px;}
.wsc0{word-spacing:2.939868px;}
.wscd{word-spacing:2.958912px;}
.ws80{word-spacing:2.988780px;}
.wsbf{word-spacing:3.084156px;}
.ws51{word-spacing:3.108331px;}
.ws28{word-spacing:3.168107px;}
.wsd8{word-spacing:3.227904px;}
.wsd{word-spacing:3.229005px;}
.wsb9{word-spacing:3.282552px;}
.wsbb{word-spacing:3.288564px;}
.ws18{word-spacing:3.306079px;}
.wsba{word-spacing:3.324636px;}
.ws5a{word-spacing:3.407209px;}
.ws83{word-spacing:3.466985px;}
.wsdd{word-spacing:3.496896px;}
.ws34{word-spacing:3.526760px;}
.ws1a{word-spacing:3.586536px;}
.ws44{word-spacing:3.646312px;}
.wscb{word-spacing:3.658291px;}
.wsb4{word-spacing:3.721428px;}
.ws4c{word-spacing:3.765863px;}
.wsd0{word-spacing:3.765888px;}
.wsdb{word-spacing:3.819686px;}
.wsda{word-spacing:3.834388px;}
.ws3f{word-spacing:4.004965px;}
.wsbc{word-spacing:4.016016px;}
.ws2a{word-spacing:4.124516px;}
.ws7c{word-spacing:4.303843px;}
.ws43{word-spacing:4.363619px;}
.wsc9{word-spacing:4.461175px;}
.wsc4{word-spacing:4.483170px;}
.wsa3{word-spacing:4.602721px;}
.ws22{word-spacing:4.662497px;}
.ws2f{word-spacing:4.722272px;}
.ws5c{word-spacing:4.768793px;}
.wsc5{word-spacing:4.782048px;}
.ws45{word-spacing:5.021150px;}
.ws2e{word-spacing:5.260253px;}
.ws9d{word-spacing:5.452884px;}
.ws8{word-spacing:5.481407px;}
.wsc8{word-spacing:5.595034px;}
.ws2b{word-spacing:5.678682px;}
.wsc6{word-spacing:5.977560px;}
.ws85{word-spacing:6.097111px;}
.ws9f{word-spacing:6.156288px;}
.wsbe{word-spacing:6.204384px;}
.wsa8{word-spacing:6.216662px;}
.wsa0{word-spacing:6.276528px;}
.wsa1{word-spacing:6.282540px;}
.ws27{word-spacing:6.515540px;}
.wsbd{word-spacing:6.541056px;}
.wsa9{word-spacing:6.635092px;}
.ws29{word-spacing:6.933970px;}
.ws55{word-spacing:7.232848px;}
.wsb3{word-spacing:7.328628px;}
.wsb2{word-spacing:7.376724px;}
.ws98{word-spacing:7.382736px;}
.ws81{word-spacing:7.591501px;}
.ws49{word-spacing:7.651277px;}
.ws53{word-spacing:7.950155px;}
.wsb1{word-spacing:7.983936px;}
.ws6{word-spacing:9.833058px;}
.ws92{word-spacing:11.620476px;}
.ws7{word-spacing:11.841512px;}
.ws7f{word-spacing:18.351109px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.wsa7{word-spacing:99.984960px;}
.ws8d{word-spacing:156.385872px;}
.ws61{word-spacing:340.985126px;}
.ws68{word-spacing:344.823264px;}
.ws76{word-spacing:360.065328px;}
.ws72{word-spacing:362.405789px;}
.ws74{word-spacing:366.950141px;}
.ws7a{word-spacing:370.230346px;}
.ws6c{word-spacing:378.280500px;}
.ws6a{word-spacing:381.320064px;}
.ws6e{word-spacing:384.630067px;}
.ws77{word-spacing:389.894976px;}
.ws73{word-spacing:391.732500px;}
.ws70{word-spacing:405.184500px;}
.ws64{word-spacing:413.965200px;}
.ws69{word-spacing:443.352614px;}
.ws62{word-spacing:469.351200px;}
.ws6d{word-spacing:474.986074px;}
.ws79{word-spacing:481.710874px;}
.ws71{word-spacing:488.435674px;}
.ws75{word-spacing:501.885274px;}
._30{margin-left:-20.228395px;}
._4{margin-left:-7.962163px;}
._7{margin-left:-6.168857px;}
._9{margin-left:-5.057050px;}
._1{margin-left:-3.891380px;}
._31{margin-left:-2.618359px;}
._0{margin-left:-1.506341px;}
._18{width:1.497181px;}
._2f{width:2.618359px;}
._27{width:11.446186px;}
._3{width:12.971268px;}
._13{width:14.621146px;}
._8{width:16.247102px;}
._2d{width:17.645753px;}
._a{width:18.649987px;}
._12{width:19.917226px;}
._14{width:21.280114px;}
._25{width:22.714728px;}
._d{width:24.041742px;}
._2{width:25.192966px;}
._16{width:26.420815px;}
._c{width:28.094532px;}
._15{width:29.660648px;}
._e{width:31.561517px;}
._b{width:33.235234px;}
._11{width:34.908950px;}
._17{width:43.390034px;}
._5{width:54.425484px;}
._6{width:69.372984px;}
._2c{width:141.354576px;}
._2b{width:161.628372px;}
._2a{width:226.559880px;}
._29{width:261.831420px;}
._28{width:326.033172px;}
._23{width:330.106982px;}
._20{width:413.010317px;}
._1b{width:414.301478px;}
._19{width:434.099290px;}
._1c{width:437.165798px;}
._22{width:458.361878px;}
._24{width:471.811968px;}
._1f{width:508.721981px;}
._f{width:516.018409px;}
._1e{width:520.043491px;}
._21{width:593.127360px;}
._1a{width:665.271014px;}
._1d{width:685.445414px;}
._26{width:2018.639952px;}
._2e{width:2432.322229px;}
._10{width:2456.232229px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(102,139,50);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs4{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fsd{font-size:83.880000px;}
.fse{font-size:96.120000px;}
.fs1{font-size:102.050280px;}
.fs3{font-size:107.596800px;}
.y130{bottom:-502.343550px;}
.y112{bottom:-489.580050px;}
.y145{bottom:-419.176128px;}
.y144{bottom:-400.006866px;}
.y143{bottom:-380.747424px;}
.y142{bottom:-361.578162px;}
.y141{bottom:-342.318720px;}
.y140{bottom:-323.059278px;}
.y13f{bottom:-303.890016px;}
.y13e{bottom:-284.630574px;}
.y13d{bottom:-260.959827px;}
.y13c{bottom:-223.700457px;}
.y11d{bottom:-204.907287px;}
.y13b{bottom:-204.441015px;}
.y11c{bottom:-185.647845px;}
.y13a{bottom:-185.270250px;}
.y11b{bottom:-166.388403px;}
.y139{bottom:-166.010808px;}
.y11a{bottom:-147.217638px;}
.y138{bottom:-146.751366px;}
.y119{bottom:-127.958196px;}
.y137{bottom:-127.582104px;}
.y118{bottom:-108.788934px;}
.y136{bottom:-108.322662px;}
.y117{bottom:-89.529492px;}
.y135{bottom:-89.153400px;}
.y116{bottom:-70.270050px;}
.y134{bottom:-52.343100px;}
.y133{bottom:-34.883550px;}
.y115{bottom:-33.460500px;}
.y132{bottom:-17.603550px;}
.y114{bottom:-16.090050px;}
.y0{bottom:0.000000px;}
.y131{bottom:4.806225px;}
.y113{bottom:6.319770px;}
.y14f{bottom:17.496450px;}
.y17{bottom:18.594033px;}
.y44{bottom:31.890000px;}
.y126{bottom:31.969950px;}
.y14d{bottom:50.527062px;}
.y124{bottom:65.000391px;}
.y146{bottom:77.796450px;}
.y11e{bottom:92.359950px;}
.y157{bottom:103.621500px;}
.y43{bottom:104.415000px;}
.y15{bottom:104.646000px;}
.ye8{bottom:106.419000px;}
.ya1{bottom:110.181000px;}
.y1a8{bottom:111.975000px;}
.yc0{bottom:115.309500px;}
.y10e{bottom:119.148000px;}
.y7b{bottom:119.596500px;}
.y156{bottom:122.449500px;}
.y14{bottom:122.535000px;}
.y42{bottom:123.244500px;}
.y12c{bottom:123.547500px;}
.ye7{bottom:125.248500px;}
.ya0{bottom:129.010500px;}
.y1a7{bottom:129.235500px;}
.ybe{bottom:131.748000px;}
.y10d{bottom:137.977500px;}
.y7a{bottom:138.426000px;}
.y13{bottom:140.422500px;}
.y155{bottom:141.279000px;}
.y41{bottom:142.074000px;}
.y12b{bottom:142.377000px;}
.ye6{bottom:144.078000px;}
.y1a6{bottom:146.496000px;}
.y9f{bottom:147.840000px;}
.ybd{bottom:148.186500px;}
.y147{bottom:156.186504px;}
.ybf{bottom:156.405000px;}
.y10c{bottom:156.807000px;}
.y79{bottom:157.255500px;}
.y12{bottom:158.310000px;}
.y154{bottom:160.108500px;}
.y40{bottom:160.903500px;}
.y12a{bottom:161.206500px;}
.ye5{bottom:162.907500px;}
.y1a5{bottom:163.756500px;}
.yba{bottom:164.625000px;}
.y9e{bottom:166.669500px;}
.y10b{bottom:175.636500px;}
.y78{bottom:176.085000px;}
.y11{bottom:176.199000px;}
.y153{bottom:178.938000px;}
.y3f{bottom:179.733000px;}
.y129{bottom:180.036000px;}
.y1a4{bottom:181.015500px;}
.ybc{bottom:181.063500px;}
.ye4{bottom:181.737000px;}
.y14e{bottom:181.836450px;}
.y9d{bottom:185.499000px;}
.y11f{bottom:189.560094px;}
.y10{bottom:194.086500px;}
.y10a{bottom:194.466000px;}
.y77{bottom:194.914500px;}
.ybb{bottom:197.500500px;}
.y1a3{bottom:198.276000px;}
.y3e{bottom:198.562500px;}
.ye3{bottom:200.566500px;}
.y9c{bottom:204.328500px;}
.y125{bottom:204.499950px;}
.y152{bottom:209.818500px;}
.yf{bottom:211.974000px;}
.y109{bottom:213.295500px;}
.y128{bottom:213.601500px;}
.y76{bottom:213.744000px;}
.yb9{bottom:213.939000px;}
.y1a2{bottom:215.536500px;}
.y3d{bottom:217.392000px;}
.ye2{bottom:219.394500px;}
.yb7{bottom:222.159000px;}
.y9b{bottom:223.158000px;}
.y151{bottom:229.051500px;}
.ye{bottom:229.863000px;}
.yb8{bottom:230.377500px;}
.y108{bottom:232.125000px;}
.y75{bottom:232.573500px;}
.y1a1{bottom:232.797000px;}
.y127{bottom:232.834500px;}
.y148{bottom:234.486387px;}
.y3c{bottom:236.221500px;}
.y16e{bottom:237.505500px;}
.ye1{bottom:238.224000px;}
.y9a{bottom:241.987500px;}
.yb6{bottom:246.816000px;}
.y150{bottom:248.284500px;}
.y19f{bottom:250.057500px;}
.y1a0{bottom:250.266000px;}
.y107{bottom:250.954500px;}
.y74{bottom:251.403000px;}
.yb5{bottom:255.036000px;}
.y3b{bottom:255.051000px;}
.ye0{bottom:257.053500px;}
.y10f{bottom:258.253500px;}
.y16d{bottom:264.045000px;}
.y99{bottom:265.300500px;}
.y19e{bottom:267.318000px;}
.y106{bottom:269.784000px;}
.y73{bottom:270.232500px;}
.y12d{bottom:273.702000px;}
.y3a{bottom:273.880500px;}
.ydf{bottom:275.883000px;}
.yb4{bottom:279.693000px;}
.y16c{bottom:281.619000px;}
.y19d{bottom:284.578500px;}
.y120{bottom:286.760238px;}
.y105{bottom:288.613500px;}
.y72{bottom:289.062000px;}
.y39{bottom:292.710000px;}
.yde{bottom:294.712500px;}
.yb3{bottom:296.131500px;}
.yd{bottom:298.876500px;}
.y98{bottom:298.924500px;}
.y19c{bottom:301.839000px;}
.y104{bottom:307.443000px;}
.y71{bottom:307.891500px;}
.y16b{bottom:308.160000px;}
.y38{bottom:311.539500px;}
.yb2{bottom:312.570000px;}
.y149{bottom:312.786270px;}
.ydd{bottom:313.542000px;}
.yc{bottom:316.764000px;}
.y97{bottom:317.754000px;}
.y19b{bottom:319.099500px;}
.y16a{bottom:325.734000px;}
.y103{bottom:326.272500px;}
.y70{bottom:326.719500px;}
.y37{bottom:330.369000px;}
.ydc{bottom:332.371500px;}
.yb{bottom:334.653000px;}
.yb1{bottom:336.210000px;}
.y19a{bottom:336.358500px;}
.y96{bottom:336.583500px;}
.y169{bottom:343.308000px;}
.y102{bottom:345.102000px;}
.y6f{bottom:345.549000px;}
.yaf{bottom:345.625500px;}
.y36{bottom:349.198500px;}
.ydb{bottom:351.201000px;}
.ya{bottom:352.540500px;}
.yb0{bottom:352.648500px;}
.y199{bottom:353.619000px;}
.y95{bottom:355.413000px;}
.y101{bottom:363.931500px;}
.y6e{bottom:364.378500px;}
.y35{bottom:368.028000px;}
.y168{bottom:369.849000px;}
.yda{bottom:370.030500px;}
.y198{bottom:370.879500px;}
.y94{bottom:374.242500px;}
.y9{bottom:380.889000px;}
.y100{bottom:382.761000px;}
.y6d{bottom:383.208000px;}
.y121{bottom:384.050553px;}
.y34{bottom:386.857500px;}
.yae{bottom:387.256500px;}
.y167{bottom:387.423000px;}
.y197{bottom:388.140000px;}
.yd9{bottom:388.860000px;}
.y14a{bottom:391.086153px;}
.y93{bottom:393.072000px;}
.yff{bottom:401.589000px;}
.y6c{bottom:402.037500px;}
.y166{bottom:404.997000px;}
.y196{bottom:405.400500px;}
.y33{bottom:405.687000px;}
.yd8{bottom:407.689500px;}
.y8{bottom:407.743500px;}
.y92{bottom:411.901500px;}
.yfe{bottom:420.418500px;}
.y6b{bottom:420.867000px;}
.y165{bottom:422.571000px;}
.y195{bottom:422.661000px;}
.yad{bottom:424.180500px;}
.y32{bottom:424.516500px;}
.y7{bottom:425.631000px;}
.yd7{bottom:426.519000px;}
.y91{bottom:430.731000px;}
.yfd{bottom:439.248000px;}
.y6a{bottom:439.696500px;}
.y194{bottom:439.921500px;}
.yac{bottom:443.010000px;}
.y31{bottom:443.346000px;}
.y6{bottom:443.520000px;}
.yd6{bottom:445.348500px;}
.y90{bottom:449.560500px;}
.y193{bottom:457.182000px;}
.yfc{bottom:458.077500px;}
.y69{bottom:458.526000px;}
.y5{bottom:461.407500px;}
.yab{bottom:461.839500px;}
.yd5{bottom:464.178000px;}
.y30{bottom:466.659000px;}
.y8f{bottom:468.390000px;}
.y14b{bottom:469.386036px;}
.y192{bottom:474.441000px;}
.yfb{bottom:476.907000px;}
.y68{bottom:477.355500px;}
.y4{bottom:479.295000px;}
.yaa{bottom:480.669000px;}
.y122{bottom:481.250697px;}
.yd4{bottom:483.007500px;}
.y8e{bottom:487.219500px;}
.y191{bottom:491.701500px;}
.yfa{bottom:495.736500px;}
.y67{bottom:496.185000px;}
.y3{bottom:497.184000px;}
.ya9{bottom:497.524500px;}
.yd3{bottom:501.837000px;}
.ya8{bottom:502.681500px;}
.y8d{bottom:506.049000px;}
.y190{bottom:508.962000px;}
.yf9{bottom:514.566000px;}
.y66{bottom:515.014500px;}
.y2{bottom:515.071500px;}
.yd2{bottom:520.666500px;}
.ya7{bottom:525.567000px;}
.y18f{bottom:526.222500px;}
.y8c{bottom:529.360500px;}
.y1{bottom:532.959000px;}
.yf8{bottom:533.395500px;}
.y65{bottom:533.844000px;}
.yd1{bottom:539.496000px;}
.y2f{bottom:541.809000px;}
.y18e{bottom:543.483000px;}
.ya6{bottom:544.396500px;}
.y14c{bottom:547.776090px;}
.y8b{bottom:548.190000px;}
.yf7{bottom:552.225000px;}
.y64{bottom:552.673500px;}
.yd0{bottom:558.325500px;}
.y18d{bottom:560.743500px;}
.ya5{bottom:563.226000px;}
.y8a{bottom:567.019500px;}
.yf6{bottom:571.054500px;}
.y63{bottom:571.503000px;}
.ycf{bottom:577.155000px;}
.y18c{bottom:578.004000px;}
.y123{bottom:578.450841px;}
.y2e{bottom:579.198000px;}
.ya4{bottom:582.055500px;}
.y89{bottom:585.849000px;}
.yf5{bottom:589.884000px;}
.y62{bottom:590.332500px;}
.y18b{bottom:595.264500px;}
.yce{bottom:595.984500px;}
.y2d{bottom:598.656000px;}
.y88{bottom:604.678500px;}
.yf4{bottom:608.713500px;}
.y61{bottom:609.162000px;}
.ya3{bottom:609.856500px;}
.y18a{bottom:612.525000px;}
.ycd{bottom:614.814000px;}
.y2c{bottom:618.112500px;}
.ya2{bottom:620.109000px;}
.y87{bottom:623.508000px;}
.yf3{bottom:627.543000px;}
.y60{bottom:627.991500px;}
.y189{bottom:629.784000px;}
.y12f{bottom:631.746585px;}
.ycc{bottom:633.643500px;}
.y2b{bottom:637.569000px;}
.y12e{bottom:641.376450px;}
.y86{bottom:642.337500px;}
.y111{bottom:644.510085px;}
.yf2{bottom:646.372500px;}
.y5f{bottom:646.821000px;}
.y188{bottom:647.044500px;}
.ycb{bottom:652.473000px;}
.y110{bottom:654.139950px;}
.y2a{bottom:657.027000px;}
.y85{bottom:661.167000px;}
.y187{bottom:664.305000px;}
.yf1{bottom:665.202000px;}
.y5e{bottom:665.650500px;}
.y29{bottom:676.483500px;}
.y84{bottom:679.996500px;}
.y186{bottom:681.565500px;}
.yf0{bottom:684.031500px;}
.y5d{bottom:684.480000px;}
.y28{bottom:695.940000px;}
.yca{bottom:698.247000px;}
.y83{bottom:698.826000px;}
.yef{bottom:702.861000px;}
.y5c{bottom:703.309500px;}
.yc9{bottom:715.309500px;}
.y27{bottom:715.398000px;}
.y185{bottom:716.086500px;}
.y82{bottom:717.655500px;}
.yee{bottom:721.690500px;}
.y5b{bottom:722.139000px;}
.yc8{bottom:732.373500px;}
.y184{bottom:733.347000px;}
.y26{bottom:734.854500px;}
.y81{bottom:736.485000px;}
.yed{bottom:740.520000px;}
.y5a{bottom:740.968500px;}
.yc7{bottom:749.436000px;}
.y183{bottom:750.607500px;}
.y25{bottom:754.312500px;}
.y80{bottom:755.314500px;}
.yec{bottom:759.349500px;}
.y59{bottom:759.798000px;}
.yc6{bottom:766.498500px;}
.y182{bottom:767.866500px;}
.y24{bottom:773.769000px;}
.y7f{bottom:774.144000px;}
.yeb{bottom:778.179000px;}
.y58{bottom:778.627500px;}
.yc5{bottom:783.561000px;}
.y181{bottom:785.127000px;}
.y7e{bottom:792.973500px;}
.y23{bottom:793.225500px;}
.yea{bottom:797.008500px;}
.y57{bottom:797.457000px;}
.yc4{bottom:800.625000px;}
.y180{bottom:802.387500px;}
.y7d{bottom:811.803000px;}
.y22{bottom:812.683500px;}
.y164{bottom:815.838000px;}
.y56{bottom:816.286500px;}
.y17f{bottom:819.648000px;}
.ye9{bottom:820.320000px;}
.yc3{bottom:824.578500px;}
.y7c{bottom:830.632500px;}
.y21{bottom:832.140000px;}
.y163{bottom:834.667500px;}
.y55{bottom:835.114500px;}
.y17e{bottom:836.908500px;}
.yc2{bottom:841.710000px;}
.y20{bottom:851.596500px;}
.y162{bottom:853.497000px;}
.y54{bottom:853.944000px;}
.y17d{bottom:854.169000px;}
.y17c{bottom:871.429500px;}
.y161{bottom:872.326500px;}
.y53{bottom:872.773500px;}
.yc1{bottom:873.328500px;}
.y17b{bottom:888.690000px;}
.y1f{bottom:890.182500px;}
.y160{bottom:891.156000px;}
.y52{bottom:891.603000px;}
.y1b3{bottom:905.875500px;}
.y17a{bottom:905.950500px;}
.y1e{bottom:906.322500px;}
.y15f{bottom:909.984000px;}
.y51{bottom:910.432500px;}
.y1d{bottom:922.461000px;}
.y1b2{bottom:923.136000px;}
.y179{bottom:923.209500px;}
.y15e{bottom:928.813500px;}
.y50{bottom:929.262000px;}
.y1b1{bottom:940.395000px;}
.y178{bottom:940.470000px;}
.y15d{bottom:947.643000px;}
.y4f{bottom:948.091500px;}
.y177{bottom:957.730500px;}
.y15c{bottom:966.472500px;}
.y4e{bottom:966.921000px;}
.y1c{bottom:971.478000px;}
.y176{bottom:974.991000px;}
.y1b0{bottom:979.474500px;}
.y15b{bottom:985.302000px;}
.y4d{bottom:985.750500px;}
.y175{bottom:992.251500px;}
.y1af{bottom:996.735000px;}
.y15a{bottom:1004.131500px;}
.y4c{bottom:1004.580000px;}
.y1b{bottom:1008.240000px;}
.y174{bottom:1009.512000px;}
.y1ae{bottom:1013.995500px;}
.y159{bottom:1022.961000px;}
.y4b{bottom:1023.409500px;}
.y173{bottom:1026.772500px;}
.y1ad{bottom:1031.254500px;}
.y1a{bottom:1036.485000px;}
.y4a{bottom:1042.239000px;}
.y172{bottom:1044.033000px;}
.y158{bottom:1046.274000px;}
.y1ac{bottom:1048.515000px;}
.y49{bottom:1061.068500px;}
.y171{bottom:1061.292000px;}
.y19{bottom:1064.728500px;}
.y1ab{bottom:1065.775500px;}
.y170{bottom:1078.552500px;}
.y48{bottom:1079.898000px;}
.y1aa{bottom:1083.036000px;}
.y18{bottom:1092.972000px;}
.y16f{bottom:1095.813000px;}
.y47{bottom:1098.727500px;}
.y1a9{bottom:1100.296500px;}
.y46{bottom:1117.557000px;}
.y16{bottom:1136.460000px;}
.y45{bottom:1177.662000px;}
.h2{height:36.319550px;}
.h10{height:38.896243px;}
.h8{height:41.508281px;}
.h16{height:42.760020px;}
.ha{height:43.217759px;}
.h5{height:43.815515px;}
.h1c{height:44.268047px;}
.h7{height:44.473046px;}
.h9{height:46.697011px;}
.h18{height:48.225586px;}
.h3{height:50.930649px;}
.hb{height:51.885221px;}
.h17{height:53.691152px;}
.h13{height:54.595550px;}
.h14{height:54.601550px;}
.h19{height:55.906348px;}
.he{height:68.769024px;}
.h4{height:69.190090px;}
.h1a{height:69.790254px;}
.h6{height:77.792486px;}
.h11{height:79.571011px;}
.hf{height:89.397024px;}
.hc{height:92.349221px;}
.hd{height:92.895221px;}
.h12{height:112.451011px;}
.h1b{height:596.947500px;}
.h15{height:609.711000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.606176px;}
.w3{width:633.275400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x50{left:-75.600600px;}
.x0{left:0.000000px;}
.x56{left:46.889400px;}
.x3{left:52.230000px;}
.x1{left:53.574000px;}
.x2{left:58.056215px;}
.x2b{left:62.541000px;}
.x59{left:65.339679px;}
.x54{left:68.399400px;}
.x33{left:71.479500px;}
.x38{left:75.097500px;}
.x3f{left:77.511000px;}
.x30{left:82.783500px;}
.x5b{left:85.848000px;}
.x55{left:93.240462px;}
.x58{left:97.199400px;}
.x52{left:119.969400px;}
.x5a{left:122.040462px;}
.x4f{left:129.606600px;}
.x53{left:151.829400px;}
.x35{left:156.216000px;}
.x39{left:169.039500px;}
.x3b{left:171.420000px;}
.x36{left:190.981500px;}
.x3c{left:192.582000px;}
.x3a{left:208.453500px;}
.x2c{left:245.794500px;}
.x5{left:248.526000px;}
.x4{left:249.591000px;}
.x57{left:268.109400px;}
.x6{left:281.479500px;}
.x20{left:284.184000px;}
.x25{left:298.110000px;}
.x44{left:303.310500px;}
.x26{left:305.583000px;}
.x43{left:307.332000px;}
.x2a{left:308.493000px;}
.x42{left:309.523500px;}
.x41{left:312.058500px;}
.x29{left:323.692500px;}
.x5d{left:325.968000px;}
.x5c{left:327.468000px;}
.x45{left:338.566500px;}
.x23{left:345.640500px;}
.x24{left:353.112000px;}
.x4b{left:368.068500px;}
.x4c{left:375.540000px;}
.x2d{left:406.408500px;}
.x19{left:416.661000px;}
.xf{left:430.897500px;}
.x10{left:445.842000px;}
.x1a{left:449.091000px;}
.x40{left:452.154000px;}
.x1b{left:464.035500px;}
.x27{left:467.736000px;}
.x2f{left:479.019000px;}
.x3d{left:481.077000px;}
.x1c{left:488.319000px;}
.x1d{left:495.790500px;}
.x1e{left:499.582500px;}
.x1f{left:507.054000px;}
.x28{left:541.962000px;}
.x49{left:589.080000px;}
.x31{left:597.225000px;}
.x4a{left:604.023000px;}
.x51{left:628.469229px;}
.x37{left:642.400500px;}
.x34{left:649.912500px;}
.x3e{left:657.370500px;}
.x2e{left:682.743000px;}
.x9{left:687.643500px;}
.xa{left:695.116500px;}
.x21{left:714.759000px;}
.x22{left:722.230500px;}
.x7{left:746.347500px;}
.x46{left:768.733500px;}
.x11{left:773.064000px;}
.x4d{left:775.591500px;}
.x12{left:780.535500px;}
.x13{left:784.267500px;}
.x47{left:787.488000px;}
.x4e{left:790.536000px;}
.x14{left:791.740500px;}
.x15{left:795.472500px;}
.x48{left:802.432500px;}
.xb{left:804.099000px;}
.x16{left:810.417000px;}
.xc{left:811.570500px;}
.x8{left:813.181500px;}
.x17{left:817.881000px;}
.xd{left:819.013500px;}
.x32{left:825.132000px;}
.x18{left:832.825500px;}
.xe{left:833.956500px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v2{vertical-align:-9.706667pt;}
.v9{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:17.354667pt;}
.v6{vertical-align:20.933333pt;}
.v8{vertical-align:29.221333pt;}
.v3{vertical-align:35.968000pt;}
.v4{vertical-align:46.906667pt;}
.v5{vertical-align:59.002667pt;}
.v7{vertical-align:77.338667pt;}
.ls2f{letter-spacing:-0.320640pt;}
.ls2b{letter-spacing:-0.138944pt;}
.ls47{letter-spacing:-0.117568pt;}
.ls46{letter-spacing:-0.112224pt;}
.ls49{letter-spacing:-0.106880pt;}
.ls4a{letter-spacing:-0.101536pt;}
.ls2e{letter-spacing:-0.096192pt;}
.ls43{letter-spacing:-0.090848pt;}
.ls2a{letter-spacing:-0.080160pt;}
.ls2c{letter-spacing:-0.074816pt;}
.ls48{letter-spacing:-0.069472pt;}
.ls34{letter-spacing:-0.068352pt;}
.ls32{letter-spacing:-0.064128pt;}
.ls31{letter-spacing:-0.058784pt;}
.ls30{letter-spacing:-0.053440pt;}
.ls44{letter-spacing:-0.032064pt;}
.ls33{letter-spacing:-0.029824pt;}
.ls45{letter-spacing:-0.026720pt;}
.ls2d{letter-spacing:-0.021376pt;}
.ls4b{letter-spacing:-0.010688pt;}
.ls40{letter-spacing:-0.009600pt;}
.ls41{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000544pt;}
.ls3c{letter-spacing:0.005344pt;}
.ls3a{letter-spacing:0.021376pt;}
.ls20{letter-spacing:0.024000pt;}
.ls1e{letter-spacing:0.025536pt;}
.ls3e{letter-spacing:0.026720pt;}
.ls36{letter-spacing:0.028800pt;}
.ls1c{letter-spacing:0.029792pt;}
.ls24{letter-spacing:0.032064pt;}
.ls21{letter-spacing:0.033600pt;}
.ls3d{letter-spacing:0.037408pt;}
.ls29{letter-spacing:0.042720pt;}
.ls27{letter-spacing:0.042752pt;}
.ls38{letter-spacing:0.048000pt;}
.ls25{letter-spacing:0.048096pt;}
.ls4d{letter-spacing:0.052192pt;}
.ls22{letter-spacing:0.057600pt;}
.ls3b{letter-spacing:0.058784pt;}
.ls23{letter-spacing:0.067200pt;}
.ls39{letter-spacing:0.074816pt;}
.ls28{letter-spacing:0.082016pt;}
.ls26{letter-spacing:0.090848pt;}
.ls42{letter-spacing:0.106880pt;}
.ls37{letter-spacing:0.110400pt;}
.ls4c{letter-spacing:0.134208pt;}
.ls1f{letter-spacing:0.148960pt;}
.ls1d{letter-spacing:0.161728pt;}
.ls3f{letter-spacing:0.186400pt;}
.ls18{letter-spacing:0.442457pt;}
.ls15{letter-spacing:0.447791pt;}
.lsc{letter-spacing:0.507174pt;}
.lsf{letter-spacing:0.554378pt;}
.lse{letter-spacing:0.596214pt;}
.ls8{letter-spacing:0.601548pt;}
.lsa{letter-spacing:1.088696pt;}
.lsb{letter-spacing:1.253044pt;}
.ls9{letter-spacing:1.262881pt;}
.ls6{letter-spacing:2.317593pt;}
.ls13{letter-spacing:2.654531pt;}
.ls10{letter-spacing:3.125841pt;}
.ls7{letter-spacing:3.824508pt;}
.ls11{letter-spacing:6.833788pt;}
.ls0{letter-spacing:9.298933pt;}
.ls2{letter-spacing:10.626533pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls4f{letter-spacing:11.959467pt;}
.ls14{letter-spacing:12.528078pt;}
.ls16{letter-spacing:12.533411pt;}
.ls1b{letter-spacing:13.070931pt;}
.ls12{letter-spacing:13.283467pt;}
.ls1a{letter-spacing:13.336601pt;}
.ls4{letter-spacing:18.075977pt;}
.ls5{letter-spacing:21.773762pt;}
.ls1{letter-spacing:25.292137pt;}
.ls19{letter-spacing:372.784533pt;}
.ls17{letter-spacing:378.763200pt;}
.lsd{letter-spacing:787.429867pt;}
.wsa6{word-spacing:-53.440000pt;}
.wsa5{word-spacing:-13.466880pt;}
.ws4e{word-spacing:-13.283467pt;}
.ws60{word-spacing:-11.955200pt;}
.ws8a{word-spacing:-10.801728pt;}
.ws8b{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws5b{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws16{word-spacing:-2.630144pt;}
.ws4a{word-spacing:-2.603559pt;}
.ws67{word-spacing:-2.497292pt;}
.ws94{word-spacing:-2.433600pt;}
.ws95{word-spacing:-2.428800pt;}
.ws93{word-spacing:-2.424000pt;}
.ws30{word-spacing:-2.337890pt;}
.wsc2{word-spacing:-2.201728pt;}
.ws14{word-spacing:-2.199757pt;}
.ws87{word-spacing:-1.965953pt;}
.wsd9{word-spacing:-1.960653pt;}
.ws66{word-spacing:-1.700284pt;}
.wsa4{word-spacing:-1.647150pt;}
.ws3e{word-spacing:-1.540882pt;}
.ws38{word-spacing:-1.487748pt;}
.wsd6{word-spacing:-1.291162pt;}
.ws89{word-spacing:-1.275213pt;}
.wsae{word-spacing:-1.271872pt;}
.ws5d{word-spacing:-1.222079pt;}
.wsac{word-spacing:-1.166400pt;}
.ws23{word-spacing:-0.956410pt;}
.ws3c{word-spacing:-0.850142pt;}
.ws86{word-spacing:-0.743874pt;}
.wsd3{word-spacing:-0.717312pt;}
.ws3b{word-spacing:-0.690740pt;}
.ws1f{word-spacing:-0.637606pt;}
.ws65{word-spacing:-0.584473pt;}
.wsd2{word-spacing:-0.526029pt;}
.wsaa{word-spacing:-0.504000pt;}
.wsab{word-spacing:-0.470400pt;}
.ws8e{word-spacing:-0.430387pt;}
.ws1d{word-spacing:-0.425071pt;}
.ws25{word-spacing:-0.371937pt;}
.wse{word-spacing:-0.334746pt;}
.ws31{word-spacing:-0.318803pt;}
.wsb8{word-spacing:-0.299264pt;}
.ws3d{word-spacing:-0.265669pt;}
.ws90{word-spacing:-0.242592pt;}
.ws11{word-spacing:-0.239104pt;}
.ws9b{word-spacing:-0.219104pt;}
.ws96{word-spacing:-0.216000pt;}
.ws48{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.191283pt;}
.ws33{word-spacing:-0.159402pt;}
.ws9c{word-spacing:-0.144288pt;}
.ws10{word-spacing:-0.143462pt;}
.ws91{word-spacing:-0.106400pt;}
.ws32{word-spacing:-0.106268pt;}
.ws99{word-spacing:-0.101536pt;}
.wsf{word-spacing:-0.095642pt;}
.ws8c{word-spacing:-0.053440pt;}
.wsb{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.wsd7{word-spacing:-0.007467pt;}
.wscf{word-spacing:-0.005495pt;}
.ws3{word-spacing:-0.002730pt;}
.wsdc{word-spacing:-0.001638pt;}
.ws2c{word-spacing:-0.001446pt;}
.wsd5{word-spacing:-0.000162pt;}
.ws1{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.037408pt;}
.ws19{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.ws97{word-spacing:0.091200pt;}
.ws63{word-spacing:0.095642pt;}
.ws1c{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.ws12{word-spacing:0.143462pt;}
.ws21{word-spacing:0.159402pt;}
.wsad{word-spacing:0.163200pt;}
.wsb7{word-spacing:0.187040pt;}
.ws5f{word-spacing:0.191283pt;}
.ws20{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.ws58{word-spacing:0.265669pt;}
.wsc7{word-spacing:0.286925pt;}
.ws54{word-spacing:0.318803pt;}
.ws1b{word-spacing:0.371937pt;}
.ws88{word-spacing:0.425071pt;}
.wsd1{word-spacing:0.430387pt;}
.ws7d{word-spacing:0.478205pt;}
.wsca{word-spacing:0.478208pt;}
.ws35{word-spacing:0.531339pt;}
.ws8f{word-spacing:0.584473pt;}
.ws6f{word-spacing:0.594133pt;}
.ws6b{word-spacing:0.598400pt;}
.ws78{word-spacing:0.599467pt;}
.ws36{word-spacing:0.637606pt;}
.ws47{word-spacing:0.690740pt;}
.ws84{word-spacing:0.743874pt;}
.ws7e{word-spacing:0.850142pt;}
.ws39{word-spacing:1.009543pt;}
.wsc1{word-spacing:1.052768pt;}
.ws4b{word-spacing:1.062677pt;}
.wsc3{word-spacing:1.115811pt;}
.ws52{word-spacing:1.168945pt;}
.ws82{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.wscc{word-spacing:1.243341pt;}
.ws46{word-spacing:1.328347pt;}
.ws59{word-spacing:1.381481pt;}
.ws7b{word-spacing:1.487748pt;}
.ws56{word-spacing:1.540882pt;}
.ws3a{word-spacing:1.594016pt;}
.wsb0{word-spacing:1.645952pt;}
.ws57{word-spacing:1.647150pt;}
.ws40{word-spacing:1.753418pt;}
.wsaf{word-spacing:1.768864pt;}
.wsb5{word-spacing:1.790240pt;}
.ws5e{word-spacing:1.859685pt;}
.ws41{word-spacing:1.912819pt;}
.ws9e{word-spacing:2.052096pt;}
.wsb6{word-spacing:2.068128pt;}
.ws9a{word-spacing:2.073472pt;}
.wsd4{word-spacing:2.104115pt;}
.ws42{word-spacing:2.125355pt;}
.ws24{word-spacing:2.178489pt;}
.ws4f{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws26{word-spacing:2.337890pt;}
.ws37{word-spacing:2.391024pt;}
.ws50{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.wsce{word-spacing:2.582323pt;}
.ws4d{word-spacing:2.603559pt;}
.wsc0{word-spacing:2.613216pt;}
.wscd{word-spacing:2.630144pt;}
.ws80{word-spacing:2.656693pt;}
.wsbf{word-spacing:2.741472pt;}
.ws51{word-spacing:2.762961pt;}
.ws28{word-spacing:2.816095pt;}
.wsd8{word-spacing:2.869248pt;}
.wsd{word-spacing:2.870226pt;}
.wsb9{word-spacing:2.917824pt;}
.wsbb{word-spacing:2.923168pt;}
.ws18{word-spacing:2.938737pt;}
.wsba{word-spacing:2.955232pt;}
.ws5a{word-spacing:3.028630pt;}
.ws83{word-spacing:3.081764pt;}
.wsdd{word-spacing:3.108352pt;}
.ws34{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.188032pt;}
.ws44{word-spacing:3.241166pt;}
.wscb{word-spacing:3.251814pt;}
.wsb4{word-spacing:3.307936pt;}
.ws4c{word-spacing:3.347434pt;}
.wsd0{word-spacing:3.347456pt;}
.wsdb{word-spacing:3.395277pt;}
.wsda{word-spacing:3.408345pt;}
.ws3f{word-spacing:3.559969pt;}
.wsbc{word-spacing:3.569792pt;}
.ws2a{word-spacing:3.666237pt;}
.ws7c{word-spacing:3.825638pt;}
.ws43{word-spacing:3.878772pt;}
.wsc9{word-spacing:3.965489pt;}
.wsc4{word-spacing:3.985040pt;}
.wsa3{word-spacing:4.091308pt;}
.ws22{word-spacing:4.144442pt;}
.ws2f{word-spacing:4.197575pt;}
.ws5c{word-spacing:4.238927pt;}
.wsc5{word-spacing:4.250709pt;}
.ws45{word-spacing:4.463245pt;}
.ws2e{word-spacing:4.675780pt;}
.ws9d{word-spacing:4.847008pt;}
.ws8{word-spacing:4.872362pt;}
.wsc8{word-spacing:4.973363pt;}
.ws2b{word-spacing:5.047717pt;}
.wsc6{word-spacing:5.313387pt;}
.ws85{word-spacing:5.419654pt;}
.ws9f{word-spacing:5.472256pt;}
.wsbe{word-spacing:5.515008pt;}
.wsa8{word-spacing:5.525922pt;}
.wsa0{word-spacing:5.579136pt;}
.wsa1{word-spacing:5.584480pt;}
.ws27{word-spacing:5.791591pt;}
.wsbd{word-spacing:5.814272pt;}
.wsa9{word-spacing:5.897859pt;}
.ws29{word-spacing:6.163529pt;}
.ws55{word-spacing:6.429198pt;}
.wsb3{word-spacing:6.514336pt;}
.wsb2{word-spacing:6.557088pt;}
.ws98{word-spacing:6.562432pt;}
.ws81{word-spacing:6.748001pt;}
.ws49{word-spacing:6.801135pt;}
.ws53{word-spacing:7.066804pt;}
.wsb1{word-spacing:7.096832pt;}
.ws6{word-spacing:8.740496pt;}
.ws92{word-spacing:10.329312pt;}
.ws7{word-spacing:10.525789pt;}
.ws7f{word-spacing:16.312097pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.wsa7{word-spacing:88.875520pt;}
.ws8d{word-spacing:139.009664pt;}
.ws61{word-spacing:303.097890pt;}
.ws68{word-spacing:306.509568pt;}
.ws76{word-spacing:320.058069pt;}
.ws72{word-spacing:322.138479pt;}
.ws74{word-spacing:326.177903pt;}
.ws7a{word-spacing:329.093641pt;}
.ws6c{word-spacing:336.249333pt;}
.ws6a{word-spacing:338.951168pt;}
.ws6e{word-spacing:341.893393pt;}
.ws77{word-spacing:346.573312pt;}
.ws73{word-spacing:348.206667pt;}
.ws70{word-spacing:360.164000pt;}
.ws64{word-spacing:367.969067pt;}
.ws69{word-spacing:394.091213pt;}
.ws62{word-spacing:417.201067pt;}
.ws6d{word-spacing:422.209843pt;}
.ws79{word-spacing:428.187443pt;}
.ws71{word-spacing:434.165043pt;}
.ws75{word-spacing:446.120243pt;}
._30{margin-left:-17.980795pt;}
._4{margin-left:-7.077478pt;}
._7{margin-left:-5.483429pt;}
._9{margin-left:-4.495155pt;}
._1{margin-left:-3.459005pt;}
._31{margin-left:-2.327430pt;}
._0{margin-left:-1.338970pt;}
._18{width:1.330828pt;}
._2f{width:2.327430pt;}
._27{width:10.174387pt;}
._3{width:11.530016pt;}
._13{width:12.996574pt;}
._8{width:14.441869pt;}
._2d{width:15.685114pt;}
._a{width:16.577766pt;}
._12{width:17.704201pt;}
._14{width:18.915657pt;}
._25{width:20.190869pt;}
._d{width:21.370437pt;}
._2{width:22.393747pt;}
._16{width:23.485169pt;}
._c{width:24.972917pt;}
._15{width:26.365021pt;}
._e{width:28.054682pt;}
._b{width:29.542430pt;}
._11{width:31.030178pt;}
._17{width:38.568919pt;}
._5{width:48.378208pt;}
._6{width:61.664875pt;}
._2c{width:125.648512pt;}
._2b{width:143.669664pt;}
._2a{width:201.386560pt;}
._29{width:232.739040pt;}
._28{width:289.807264pt;}
._23{width:293.428429pt;}
._20{width:367.120282pt;}
._1b{width:368.267981pt;}
._19{width:385.866035pt;}
._1c{width:388.591821pt;}
._22{width:407.432781pt;}
._24{width:419.388416pt;}
._1f{width:452.197316pt;}
._f{width:458.683030pt;}
._1e{width:462.260881pt;}
._21{width:527.224320pt;}
._1a{width:591.352013pt;}
._1d{width:609.284813pt;}
._26{width:1794.346624pt;}
._2e{width:2162.064204pt;}
._10{width:2183.317537pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs4{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fsd{font-size:74.560000pt;}
.fse{font-size:85.440000pt;}
.fs1{font-size:90.711360pt;}
.fs3{font-size:95.641600pt;}
.y130{bottom:-446.527600pt;}
.y112{bottom:-435.182267pt;}
.y145{bottom:-372.601003pt;}
.y144{bottom:-355.561659pt;}
.y143{bottom:-338.442155pt;}
.y142{bottom:-321.402811pt;}
.y141{bottom:-304.283307pt;}
.y140{bottom:-287.163803pt;}
.y13f{bottom:-270.124459pt;}
.y13e{bottom:-253.004955pt;}
.y13d{bottom:-231.964291pt;}
.y13c{bottom:-198.844851pt;}
.y11d{bottom:-182.139811pt;}
.y13b{bottom:-181.725347pt;}
.y11c{bottom:-165.020307pt;}
.y13a{bottom:-164.684667pt;}
.y11b{bottom:-147.900803pt;}
.y139{bottom:-147.565163pt;}
.y11a{bottom:-130.860123pt;}
.y138{bottom:-130.445659pt;}
.y119{bottom:-113.740619pt;}
.y137{bottom:-113.406315pt;}
.y118{bottom:-96.701275pt;}
.y136{bottom:-96.286811pt;}
.y117{bottom:-79.581771pt;}
.y135{bottom:-79.247467pt;}
.y116{bottom:-62.462267pt;}
.y134{bottom:-46.527200pt;}
.y133{bottom:-31.007600pt;}
.y115{bottom:-29.742667pt;}
.y132{bottom:-15.647600pt;}
.y114{bottom:-14.302267pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:4.272200pt;}
.y113{bottom:5.617573pt;}
.y14f{bottom:15.552400pt;}
.y17{bottom:16.528030pt;}
.y44{bottom:28.346667pt;}
.y126{bottom:28.417733pt;}
.y14d{bottom:44.912944pt;}
.y124{bottom:57.778125pt;}
.y146{bottom:69.152400pt;}
.y11e{bottom:82.097733pt;}
.y157{bottom:92.108000pt;}
.y43{bottom:92.813333pt;}
.y15{bottom:93.018667pt;}
.ye8{bottom:94.594667pt;}
.ya1{bottom:97.938667pt;}
.y1a8{bottom:99.533333pt;}
.yc0{bottom:102.497333pt;}
.y10e{bottom:105.909333pt;}
.y7b{bottom:106.308000pt;}
.y156{bottom:108.844000pt;}
.y14{bottom:108.920000pt;}
.y42{bottom:109.550667pt;}
.y12c{bottom:109.820000pt;}
.ye7{bottom:111.332000pt;}
.ya0{bottom:114.676000pt;}
.y1a7{bottom:114.876000pt;}
.ybe{bottom:117.109333pt;}
.y10d{bottom:122.646667pt;}
.y7a{bottom:123.045333pt;}
.y13{bottom:124.820000pt;}
.y155{bottom:125.581333pt;}
.y41{bottom:126.288000pt;}
.y12b{bottom:126.557333pt;}
.ye6{bottom:128.069333pt;}
.y1a6{bottom:130.218667pt;}
.y9f{bottom:131.413333pt;}
.ybd{bottom:131.721333pt;}
.y147{bottom:138.832448pt;}
.ybf{bottom:139.026667pt;}
.y10c{bottom:139.384000pt;}
.y79{bottom:139.782667pt;}
.y12{bottom:140.720000pt;}
.y154{bottom:142.318667pt;}
.y40{bottom:143.025333pt;}
.y12a{bottom:143.294667pt;}
.ye5{bottom:144.806667pt;}
.y1a5{bottom:145.561333pt;}
.yba{bottom:146.333333pt;}
.y9e{bottom:148.150667pt;}
.y10b{bottom:156.121333pt;}
.y78{bottom:156.520000pt;}
.y11{bottom:156.621333pt;}
.y153{bottom:159.056000pt;}
.y3f{bottom:159.762667pt;}
.y129{bottom:160.032000pt;}
.y1a4{bottom:160.902667pt;}
.ybc{bottom:160.945333pt;}
.ye4{bottom:161.544000pt;}
.y14e{bottom:161.632400pt;}
.y9d{bottom:164.888000pt;}
.y11f{bottom:168.497861pt;}
.y10{bottom:172.521333pt;}
.y10a{bottom:172.858667pt;}
.y77{bottom:173.257333pt;}
.ybb{bottom:175.556000pt;}
.y1a3{bottom:176.245333pt;}
.y3e{bottom:176.500000pt;}
.ye3{bottom:178.281333pt;}
.y9c{bottom:181.625333pt;}
.y125{bottom:181.777733pt;}
.y152{bottom:186.505333pt;}
.yf{bottom:188.421333pt;}
.y109{bottom:189.596000pt;}
.y128{bottom:189.868000pt;}
.y76{bottom:189.994667pt;}
.yb9{bottom:190.168000pt;}
.y1a2{bottom:191.588000pt;}
.y3d{bottom:193.237333pt;}
.ye2{bottom:195.017333pt;}
.yb7{bottom:197.474667pt;}
.y9b{bottom:198.362667pt;}
.y151{bottom:203.601333pt;}
.ye{bottom:204.322667pt;}
.yb8{bottom:204.780000pt;}
.y108{bottom:206.333333pt;}
.y75{bottom:206.732000pt;}
.y1a1{bottom:206.930667pt;}
.y127{bottom:206.964000pt;}
.y148{bottom:208.432344pt;}
.y3c{bottom:209.974667pt;}
.y16e{bottom:211.116000pt;}
.ye1{bottom:211.754667pt;}
.y9a{bottom:215.100000pt;}
.yb6{bottom:219.392000pt;}
.y150{bottom:220.697333pt;}
.y19f{bottom:222.273333pt;}
.y1a0{bottom:222.458667pt;}
.y107{bottom:223.070667pt;}
.y74{bottom:223.469333pt;}
.yb5{bottom:226.698667pt;}
.y3b{bottom:226.712000pt;}
.ye0{bottom:228.492000pt;}
.y10f{bottom:229.558667pt;}
.y16d{bottom:234.706667pt;}
.y99{bottom:235.822667pt;}
.y19e{bottom:237.616000pt;}
.y106{bottom:239.808000pt;}
.y73{bottom:240.206667pt;}
.y12d{bottom:243.290667pt;}
.y3a{bottom:243.449333pt;}
.ydf{bottom:245.229333pt;}
.yb4{bottom:248.616000pt;}
.y16c{bottom:250.328000pt;}
.y19d{bottom:252.958667pt;}
.y120{bottom:254.897989pt;}
.y105{bottom:256.545333pt;}
.y72{bottom:256.944000pt;}
.y39{bottom:260.186667pt;}
.yde{bottom:261.966667pt;}
.yb3{bottom:263.228000pt;}
.yd{bottom:265.668000pt;}
.y98{bottom:265.710667pt;}
.y19c{bottom:268.301333pt;}
.y104{bottom:273.282667pt;}
.y71{bottom:273.681333pt;}
.y16b{bottom:273.920000pt;}
.y38{bottom:276.924000pt;}
.yb2{bottom:277.840000pt;}
.y149{bottom:278.032240pt;}
.ydd{bottom:278.704000pt;}
.yc{bottom:281.568000pt;}
.y97{bottom:282.448000pt;}
.y19b{bottom:283.644000pt;}
.y16a{bottom:289.541333pt;}
.y103{bottom:290.020000pt;}
.y70{bottom:290.417333pt;}
.y37{bottom:293.661333pt;}
.ydc{bottom:295.441333pt;}
.yb{bottom:297.469333pt;}
.yb1{bottom:298.853333pt;}
.y19a{bottom:298.985333pt;}
.y96{bottom:299.185333pt;}
.y169{bottom:305.162667pt;}
.y102{bottom:306.757333pt;}
.y6f{bottom:307.154667pt;}
.yaf{bottom:307.222667pt;}
.y36{bottom:310.398667pt;}
.ydb{bottom:312.178667pt;}
.ya{bottom:313.369333pt;}
.yb0{bottom:313.465333pt;}
.y199{bottom:314.328000pt;}
.y95{bottom:315.922667pt;}
.y101{bottom:323.494667pt;}
.y6e{bottom:323.892000pt;}
.y35{bottom:327.136000pt;}
.y168{bottom:328.754667pt;}
.yda{bottom:328.916000pt;}
.y198{bottom:329.670667pt;}
.y94{bottom:332.660000pt;}
.y9{bottom:338.568000pt;}
.y100{bottom:340.232000pt;}
.y6d{bottom:340.629333pt;}
.y121{bottom:341.378269pt;}
.y34{bottom:343.873333pt;}
.yae{bottom:344.228000pt;}
.y167{bottom:344.376000pt;}
.y197{bottom:345.013333pt;}
.yd9{bottom:345.653333pt;}
.y14a{bottom:347.632136pt;}
.y93{bottom:349.397333pt;}
.yff{bottom:356.968000pt;}
.y6c{bottom:357.366667pt;}
.y166{bottom:359.997333pt;}
.y196{bottom:360.356000pt;}
.y33{bottom:360.610667pt;}
.yd8{bottom:362.390667pt;}
.y8{bottom:362.438667pt;}
.y92{bottom:366.134667pt;}
.yfe{bottom:373.705333pt;}
.y6b{bottom:374.104000pt;}
.y165{bottom:375.618667pt;}
.y195{bottom:375.698667pt;}
.yad{bottom:377.049333pt;}
.y32{bottom:377.348000pt;}
.y7{bottom:378.338667pt;}
.yd7{bottom:379.128000pt;}
.y91{bottom:382.872000pt;}
.yfd{bottom:390.442667pt;}
.y6a{bottom:390.841333pt;}
.y194{bottom:391.041333pt;}
.yac{bottom:393.786667pt;}
.y31{bottom:394.085333pt;}
.y6{bottom:394.240000pt;}
.yd6{bottom:395.865333pt;}
.y90{bottom:399.609333pt;}
.y193{bottom:406.384000pt;}
.yfc{bottom:407.180000pt;}
.y69{bottom:407.578667pt;}
.y5{bottom:410.140000pt;}
.yab{bottom:410.524000pt;}
.yd5{bottom:412.602667pt;}
.y30{bottom:414.808000pt;}
.y8f{bottom:416.346667pt;}
.y14b{bottom:417.232032pt;}
.y192{bottom:421.725333pt;}
.yfb{bottom:423.917333pt;}
.y68{bottom:424.316000pt;}
.y4{bottom:426.040000pt;}
.yaa{bottom:427.261333pt;}
.y122{bottom:427.778397pt;}
.yd4{bottom:429.340000pt;}
.y8e{bottom:433.084000pt;}
.y191{bottom:437.068000pt;}
.yfa{bottom:440.654667pt;}
.y67{bottom:441.053333pt;}
.y3{bottom:441.941333pt;}
.ya9{bottom:442.244000pt;}
.yd3{bottom:446.077333pt;}
.ya8{bottom:446.828000pt;}
.y8d{bottom:449.821333pt;}
.y190{bottom:452.410667pt;}
.yf9{bottom:457.392000pt;}
.y66{bottom:457.790667pt;}
.y2{bottom:457.841333pt;}
.yd2{bottom:462.814667pt;}
.ya7{bottom:467.170667pt;}
.y18f{bottom:467.753333pt;}
.y8c{bottom:470.542667pt;}
.y1{bottom:473.741333pt;}
.yf8{bottom:474.129333pt;}
.y65{bottom:474.528000pt;}
.yd1{bottom:479.552000pt;}
.y2f{bottom:481.608000pt;}
.y18e{bottom:483.096000pt;}
.ya6{bottom:483.908000pt;}
.y14c{bottom:486.912080pt;}
.y8b{bottom:487.280000pt;}
.yf7{bottom:490.866667pt;}
.y64{bottom:491.265333pt;}
.yd0{bottom:496.289333pt;}
.y18d{bottom:498.438667pt;}
.ya5{bottom:500.645333pt;}
.y8a{bottom:504.017333pt;}
.yf6{bottom:507.604000pt;}
.y63{bottom:508.002667pt;}
.ycf{bottom:513.026667pt;}
.y18c{bottom:513.781333pt;}
.y123{bottom:514.178525pt;}
.y2e{bottom:514.842667pt;}
.ya4{bottom:517.382667pt;}
.y89{bottom:520.754667pt;}
.yf5{bottom:524.341333pt;}
.y62{bottom:524.740000pt;}
.y18b{bottom:529.124000pt;}
.yce{bottom:529.764000pt;}
.y2d{bottom:532.138667pt;}
.y88{bottom:537.492000pt;}
.yf4{bottom:541.078667pt;}
.y61{bottom:541.477333pt;}
.ya3{bottom:542.094667pt;}
.y18a{bottom:544.466667pt;}
.ycd{bottom:546.501333pt;}
.y2c{bottom:549.433333pt;}
.ya2{bottom:551.208000pt;}
.y87{bottom:554.229333pt;}
.yf3{bottom:557.816000pt;}
.y60{bottom:558.214667pt;}
.y189{bottom:559.808000pt;}
.y12f{bottom:561.552520pt;}
.ycc{bottom:563.238667pt;}
.y2b{bottom:566.728000pt;}
.y12e{bottom:570.112400pt;}
.y86{bottom:570.966667pt;}
.y111{bottom:572.897853pt;}
.yf2{bottom:574.553333pt;}
.y5f{bottom:574.952000pt;}
.y188{bottom:575.150667pt;}
.ycb{bottom:579.976000pt;}
.y110{bottom:581.457733pt;}
.y2a{bottom:584.024000pt;}
.y85{bottom:587.704000pt;}
.y187{bottom:590.493333pt;}
.yf1{bottom:591.290667pt;}
.y5e{bottom:591.689333pt;}
.y29{bottom:601.318667pt;}
.y84{bottom:604.441333pt;}
.y186{bottom:605.836000pt;}
.yf0{bottom:608.028000pt;}
.y5d{bottom:608.426667pt;}
.y28{bottom:618.613333pt;}
.yca{bottom:620.664000pt;}
.y83{bottom:621.178667pt;}
.yef{bottom:624.765333pt;}
.y5c{bottom:625.164000pt;}
.yc9{bottom:635.830667pt;}
.y27{bottom:635.909333pt;}
.y185{bottom:636.521333pt;}
.y82{bottom:637.916000pt;}
.yee{bottom:641.502667pt;}
.y5b{bottom:641.901333pt;}
.yc8{bottom:650.998667pt;}
.y184{bottom:651.864000pt;}
.y26{bottom:653.204000pt;}
.y81{bottom:654.653333pt;}
.yed{bottom:658.240000pt;}
.y5a{bottom:658.638667pt;}
.yc7{bottom:666.165333pt;}
.y183{bottom:667.206667pt;}
.y25{bottom:670.500000pt;}
.y80{bottom:671.390667pt;}
.yec{bottom:674.977333pt;}
.y59{bottom:675.376000pt;}
.yc6{bottom:681.332000pt;}
.y182{bottom:682.548000pt;}
.y24{bottom:687.794667pt;}
.y7f{bottom:688.128000pt;}
.yeb{bottom:691.714667pt;}
.y58{bottom:692.113333pt;}
.yc5{bottom:696.498667pt;}
.y181{bottom:697.890667pt;}
.y7e{bottom:704.865333pt;}
.y23{bottom:705.089333pt;}
.yea{bottom:708.452000pt;}
.y57{bottom:708.850667pt;}
.yc4{bottom:711.666667pt;}
.y180{bottom:713.233333pt;}
.y7d{bottom:721.602667pt;}
.y22{bottom:722.385333pt;}
.y164{bottom:725.189333pt;}
.y56{bottom:725.588000pt;}
.y17f{bottom:728.576000pt;}
.ye9{bottom:729.173333pt;}
.yc3{bottom:732.958667pt;}
.y7c{bottom:738.340000pt;}
.y21{bottom:739.680000pt;}
.y163{bottom:741.926667pt;}
.y55{bottom:742.324000pt;}
.y17e{bottom:743.918667pt;}
.yc2{bottom:748.186667pt;}
.y20{bottom:756.974667pt;}
.y162{bottom:758.664000pt;}
.y54{bottom:759.061333pt;}
.y17d{bottom:759.261333pt;}
.y17c{bottom:774.604000pt;}
.y161{bottom:775.401333pt;}
.y53{bottom:775.798667pt;}
.yc1{bottom:776.292000pt;}
.y17b{bottom:789.946667pt;}
.y1f{bottom:791.273333pt;}
.y160{bottom:792.138667pt;}
.y52{bottom:792.536000pt;}
.y1b3{bottom:805.222667pt;}
.y17a{bottom:805.289333pt;}
.y1e{bottom:805.620000pt;}
.y15f{bottom:808.874667pt;}
.y51{bottom:809.273333pt;}
.y1d{bottom:819.965333pt;}
.y1b2{bottom:820.565333pt;}
.y179{bottom:820.630667pt;}
.y15e{bottom:825.612000pt;}
.y50{bottom:826.010667pt;}
.y1b1{bottom:835.906667pt;}
.y178{bottom:835.973333pt;}
.y15d{bottom:842.349333pt;}
.y4f{bottom:842.748000pt;}
.y177{bottom:851.316000pt;}
.y15c{bottom:859.086667pt;}
.y4e{bottom:859.485333pt;}
.y1c{bottom:863.536000pt;}
.y176{bottom:866.658667pt;}
.y1b0{bottom:870.644000pt;}
.y15b{bottom:875.824000pt;}
.y4d{bottom:876.222667pt;}
.y175{bottom:882.001333pt;}
.y1af{bottom:885.986667pt;}
.y15a{bottom:892.561333pt;}
.y4c{bottom:892.960000pt;}
.y1b{bottom:896.213333pt;}
.y174{bottom:897.344000pt;}
.y1ae{bottom:901.329333pt;}
.y159{bottom:909.298667pt;}
.y4b{bottom:909.697333pt;}
.y173{bottom:912.686667pt;}
.y1ad{bottom:916.670667pt;}
.y1a{bottom:921.320000pt;}
.y4a{bottom:926.434667pt;}
.y172{bottom:928.029333pt;}
.y158{bottom:930.021333pt;}
.y1ac{bottom:932.013333pt;}
.y49{bottom:943.172000pt;}
.y171{bottom:943.370667pt;}
.y19{bottom:946.425333pt;}
.y1ab{bottom:947.356000pt;}
.y170{bottom:958.713333pt;}
.y48{bottom:959.909333pt;}
.y1aa{bottom:962.698667pt;}
.y18{bottom:971.530667pt;}
.y16f{bottom:974.056000pt;}
.y47{bottom:976.646667pt;}
.y1a9{bottom:978.041333pt;}
.y46{bottom:993.384000pt;}
.y16{bottom:1010.186667pt;}
.y45{bottom:1046.810667pt;}
.h2{height:32.284045pt;}
.h10{height:34.574438pt;}
.h8{height:36.896250pt;}
.h16{height:38.008906pt;}
.ha{height:38.415786pt;}
.h5{height:38.947124pt;}
.h1c{height:39.349375pt;}
.h7{height:39.531597pt;}
.h9{height:41.508454pt;}
.h18{height:42.867188pt;}
.h3{height:45.271688pt;}
.hb{height:46.120196pt;}
.h17{height:47.725469pt;}
.h13{height:48.529378pt;}
.h14{height:48.534711pt;}
.h19{height:49.694531pt;}
.he{height:61.128021pt;}
.h4{height:61.502302pt;}
.h1a{height:62.035781pt;}
.h6{height:69.148877pt;}
.h11{height:70.729788pt;}
.hf{height:79.464021pt;}
.hc{height:82.088196pt;}
.hd{height:82.573530pt;}
.h12{height:99.956454pt;}
.h1b{height:530.620000pt;}
.h15{height:541.965333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.538823pt;}
.w3{width:562.911467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x50{left:-67.200533pt;}
.x0{left:0.000000pt;}
.x56{left:41.679467pt;}
.x3{left:46.426667pt;}
.x1{left:47.621333pt;}
.x2{left:51.605525pt;}
.x2b{left:55.592000pt;}
.x59{left:58.079715pt;}
.x54{left:60.799467pt;}
.x33{left:63.537333pt;}
.x38{left:66.753333pt;}
.x3f{left:68.898667pt;}
.x30{left:73.585333pt;}
.x5b{left:76.309333pt;}
.x55{left:82.880411pt;}
.x58{left:86.399467pt;}
.x52{left:106.639467pt;}
.x5a{left:108.480411pt;}
.x4f{left:115.205867pt;}
.x53{left:134.959467pt;}
.x35{left:138.858667pt;}
.x39{left:150.257333pt;}
.x3b{left:152.373333pt;}
.x36{left:169.761333pt;}
.x3c{left:171.184000pt;}
.x3a{left:185.292000pt;}
.x2c{left:218.484000pt;}
.x5{left:220.912000pt;}
.x4{left:221.858667pt;}
.x57{left:238.319467pt;}
.x6{left:250.204000pt;}
.x20{left:252.608000pt;}
.x25{left:264.986667pt;}
.x44{left:269.609333pt;}
.x26{left:271.629333pt;}
.x43{left:273.184000pt;}
.x2a{left:274.216000pt;}
.x42{left:275.132000pt;}
.x41{left:277.385333pt;}
.x29{left:287.726667pt;}
.x5d{left:289.749333pt;}
.x5c{left:291.082667pt;}
.x45{left:300.948000pt;}
.x23{left:307.236000pt;}
.x24{left:313.877333pt;}
.x4b{left:327.172000pt;}
.x4c{left:333.813333pt;}
.x2d{left:361.252000pt;}
.x19{left:370.365333pt;}
.xf{left:383.020000pt;}
.x10{left:396.304000pt;}
.x1a{left:399.192000pt;}
.x40{left:401.914667pt;}
.x1b{left:412.476000pt;}
.x27{left:415.765333pt;}
.x2f{left:425.794667pt;}
.x3d{left:427.624000pt;}
.x1c{left:434.061333pt;}
.x1d{left:440.702667pt;}
.x1e{left:444.073333pt;}
.x1f{left:450.714667pt;}
.x28{left:481.744000pt;}
.x49{left:523.626667pt;}
.x31{left:530.866667pt;}
.x4a{left:536.909333pt;}
.x51{left:558.639315pt;}
.x37{left:571.022667pt;}
.x34{left:577.700000pt;}
.x3e{left:584.329333pt;}
.x2e{left:606.882667pt;}
.x9{left:611.238667pt;}
.xa{left:617.881333pt;}
.x21{left:635.341333pt;}
.x22{left:641.982667pt;}
.x7{left:663.420000pt;}
.x46{left:683.318667pt;}
.x11{left:687.168000pt;}
.x4d{left:689.414667pt;}
.x12{left:693.809333pt;}
.x13{left:697.126667pt;}
.x47{left:699.989333pt;}
.x4e{left:702.698667pt;}
.x14{left:703.769333pt;}
.x15{left:707.086667pt;}
.x48{left:713.273333pt;}
.xb{left:714.754667pt;}
.x16{left:720.370667pt;}
.xc{left:721.396000pt;}
.x8{left:722.828000pt;}
.x17{left:727.005333pt;}
.xd{left:728.012000pt;}
.x32{left:733.450667pt;}
.x18{left:740.289333pt;}
.xe{left:741.294667pt;}
}




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