
    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_7c25d8e99dbfa38c8bd6e5f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_d16cf7c91f66ff882abedce4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_d6a2eb1c43c674767a6d3936.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_f8093aaaac2e3b81c95e9489.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_041eb2614f343f9c46806331.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ac12fddbc678174ce61e2161.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_2f02756dea42e2ee9f806ffb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_675f3dbe87ff3ccec982bbe5.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8374f2a68e4fa7250523dee6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_755f83998e7558cb64065de0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_b04dd3d0076d832d5a4beade.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_4e8f773751d56e6662e15de1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.915527;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_4e3efcb5dfbb3d8aa4201131.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693359;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_abde629dfb74c598285c96d2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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_e2369c14e3823f776b5db230.woff2')format("woff");}.fff{font-family:fff;line-height:1.104004;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_e4e45d1a780a2d7378a1cb0e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_17413438bf5f1ffd84156dcb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.731445;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_108e433172dcacc27573cd52.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_1f6242ad7b94d6c30aebdb2b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_7ebdd2ae9bf15e415a6ad2f6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.106934;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_6ebe0be97497ef7e6bfcf1c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.737305;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_2ac7943ae807a1591ecf62ad.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.737305;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_afed8f4e61be46b253b7961d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.992188;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_a215a5e856b5fe38817fa984.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939941;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_ffa669acf2d2c667fe3a2e04.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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:ff1a;src:url('chunks/assets/font_ec066c0f063bd055baa3bd40.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.758789;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:ff1b;src:url('chunks/assets/font_43754ff6c6f234a8a41a47e6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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:ff1c;src:url('chunks/assets/font_396ddb303aaeedd7e7fcc2b9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.112305;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:ff1d;src:url('chunks/assets/font_3ff25c2e6c85807c782a2519.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_75e623193a38b33b9bc9dc2f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.113281;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:ff1f;src:url('chunks/assets/font_67de6c033b68a18565410a47.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.106934;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:ff20;src:url('chunks/assets/font_44dc5be5421d54edbeedd396.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.106934;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;}
.m2{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,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);}
.m5{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.260000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-5.146848px;}
.ls5f{letter-spacing:-2.450880px;}
.ls60{letter-spacing:-1.294488px;}
.ls17{letter-spacing:-1.132704px;}
.ls1c{letter-spacing:-1.026720px;}
.ls62{letter-spacing:-0.993600px;}
.ls2b{letter-spacing:-0.935856px;}
.ls15{letter-spacing:-0.861120px;}
.ls1d{letter-spacing:-0.828000px;}
.ls5c{letter-spacing:-0.796608px;}
.ls37{letter-spacing:-0.763200px;}
.ls4b{letter-spacing:-0.758160px;}
.ls21{letter-spacing:-0.728640px;}
.ls2a{letter-spacing:-0.656064px;}
.ls14{letter-spacing:-0.463680px;}
.ls18{letter-spacing:-0.457056px;}
.lsf{letter-spacing:-0.417312px;}
.ls5d{letter-spacing:-0.411581px;}
.ls5e{letter-spacing:-0.398304px;}
.ls13{letter-spacing:-0.397440px;}
.ls43{letter-spacing:-0.381585px;}
.ls5a{letter-spacing:-0.358474px;}
.ls61{letter-spacing:-0.338558px;}
.ls9{letter-spacing:-0.331200px;}
.ls3f{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.304704px;}
.ls52{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.266400px;}
.lsb{letter-spacing:-0.264960px;}
.ls2d{letter-spacing:-0.244800px;}
.ls4e{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.192514px;}
.ls10{letter-spacing:-0.179568px;}
.ls1f{letter-spacing:-0.152352px;}
.ls4f{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.119232px;}
.ls2f{letter-spacing:-0.115200px;}
.ls3e{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.105984px;}
.ls35{letter-spacing:-0.043200px;}
.ls4c{letter-spacing:-0.033696px;}
.ls40{letter-spacing:-0.016200px;}
.ls1{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.007200px;}
.ls39{letter-spacing:0.013091px;}
.ls3d{letter-spacing:0.018000px;}
.ls26{letter-spacing:0.020052px;}
.ls31{letter-spacing:0.021600px;}
.ls54{letter-spacing:0.033120px;}
.ls23{letter-spacing:0.070560px;}
.ls2c{letter-spacing:0.086400px;}
.ls50{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.158400px;}
.ls42{letter-spacing:0.162000px;}
.ls28{letter-spacing:0.192960px;}
.ls19{letter-spacing:0.198720px;}
.ls0{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.241200px;}
.ls32{letter-spacing:0.244800px;}
.ls4d{letter-spacing:0.252720px;}
.lsd{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.304704px;}
.lsc{letter-spacing:0.305280px;}
.ls38{letter-spacing:0.309600px;}
.ls41{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.331200px;}
.ls29{letter-spacing:0.376272px;}
.ls58{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.542880px;}
.ls12{letter-spacing:0.630720px;}
.ls25{letter-spacing:0.731051px;}
.ls1e{letter-spacing:3.185280px;}
.ls34{letter-spacing:3.614400px;}
.ls1b{letter-spacing:4.625280px;}
.lse{letter-spacing:6.065280px;}
.ls1a{letter-spacing:6.785280px;}
.ls33{letter-spacing:7.214400px;}
.ls3c{letter-spacing:12.348000px;}
.ls24{letter-spacing:15.984000px;}
.ls5{letter-spacing:16.145280px;}
.ls47{letter-spacing:18.000000px;}
.ls6{letter-spacing:20.465280px;}
.ls53{letter-spacing:22.390560px;}
.ls57{letter-spacing:24.408000px;}
.ls51{letter-spacing:33.984000px;}
.ls22{letter-spacing:34.841280px;}
.ls56{letter-spacing:35.017920px;}
.ls3b{letter-spacing:37.908000px;}
.ls3a{letter-spacing:38.016000px;}
.ls46{letter-spacing:49.080000px;}
.ls20{letter-spacing:51.960000px;}
.ls4a{letter-spacing:51.984000px;}
.ls2{letter-spacing:52.841280px;}
.ls55{letter-spacing:59.345280px;}
.ls4{letter-spacing:60.785280px;}
.ls48{letter-spacing:64.224000px;}
.ls49{letter-spacing:82.224000px;}
.ls44{letter-spacing:148.818209px;}
.ls45{letter-spacing:352.584679px;}
.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;}
}
.ws3a{word-spacing:-337.702858px;}
.ws38{word-spacing:-166.371125px;}
.ws2{word-spacing:-120.240000px;}
.ws0{word-spacing:-108.000000px;}
.ws1{word-spacing:-95.760000px;}
.ws3e{word-spacing:-84.492720px;}
.ws3b{word-spacing:-84.240000px;}
.ws3d{word-spacing:-84.206304px;}
.ws3c{word-spacing:-83.481840px;}
.ws40{word-spacing:-72.216000px;}
.ws48{word-spacing:-72.144000px;}
.ws3f{word-spacing:-72.000000px;}
.ws47{word-spacing:-71.856000px;}
.ws43{word-spacing:-71.784000px;}
.ws49{word-spacing:-71.712000px;}
.ws13{word-spacing:-66.544704px;}
.ws19{word-spacing:-66.504960px;}
.ws4{word-spacing:-66.240000px;}
.ws6{word-spacing:-66.134016px;}
.wsa{word-spacing:-65.975040px;}
.ws27{word-spacing:-65.935296px;}
.ws7{word-spacing:-65.908800px;}
.ws1e{word-spacing:-65.842560px;}
.ws28{word-spacing:-65.412000px;}
.ws9{word-spacing:-61.093152px;}
.ws46{word-spacing:-54.396000px;}
.ws44{word-spacing:-54.144000px;}
.ws41{word-spacing:-54.072000px;}
.ws23{word-spacing:-53.786880px;}
.ws45{word-spacing:-53.196000px;}
.ws42{word-spacing:-52.956000px;}
.ws1a{word-spacing:-52.863552px;}
.ws25{word-spacing:-52.116480px;}
.ws2a{word-spacing:-51.600960px;}
.ws1c{word-spacing:-51.534720px;}
.ws1b{word-spacing:-51.459840px;}
.ws24{word-spacing:-50.872320px;}
.ws26{word-spacing:-45.109440px;}
.ws15{word-spacing:-42.302880px;}
.ws14{word-spacing:-41.760000px;}
.ws4a{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.745920px;}
.ws8{word-spacing:-18.719424px;}
.wse{word-spacing:-18.679680px;}
.ws16{word-spacing:-18.613440px;}
.ws29{word-spacing:-18.480960px;}
.ws85{word-spacing:-18.454752px;}
.wsd{word-spacing:-18.414720px;}
.wsb{word-spacing:-18.308736px;}
.ws1f{word-spacing:-18.262368px;}
.ws7d{word-spacing:-18.149760px;}
.ws18{word-spacing:-18.110016px;}
.wsc{word-spacing:-18.083520px;}
.wsb5{word-spacing:-18.056448px;}
.ws2c{word-spacing:-18.021600px;}
.ws12{word-spacing:-18.017280px;}
.ws20{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.884800px;}
.ws22{word-spacing:-17.752320px;}
.ws17{word-spacing:-17.553600px;}
.ws1d{word-spacing:-17.388000px;}
.ws37{word-spacing:-16.789747px;}
.wsba{word-spacing:-15.963840px;}
.ws32{word-spacing:-15.336000px;}
.ws31{word-spacing:-15.228000px;}
.ws33{word-spacing:-15.174000px;}
.ws2f{word-spacing:-15.012000px;}
.ws30{word-spacing:-14.995800px;}
.ws2d{word-spacing:-14.904000px;}
.ws2e{word-spacing:-14.688000px;}
.ws11{word-spacing:-12.152160px;}
.wsf{word-spacing:-11.609280px;}
.ws10{word-spacing:-11.429712px;}
.ws2b{word-spacing:-11.124144px;}
.ws5d{word-spacing:-2.856960px;}
.ws86{word-spacing:-1.563840px;}
.ws87{word-spacing:-1.486560px;}
.wsca{word-spacing:-0.898080px;}
.wsb9{word-spacing:-0.829440px;}
.wsa9{word-spacing:-0.667584px;}
.wsbc{word-spacing:-0.469440px;}
.ws67{word-spacing:-0.414720px;}
.ws34{word-spacing:-0.381585px;}
.ws65{word-spacing:-0.315648px;}
.wsbd{word-spacing:-0.195648px;}
.ws3{word-spacing:0.000000px;}
.wsbe{word-spacing:0.184320px;}
.wsab{word-spacing:0.194880px;}
.ws60{word-spacing:0.205056px;}
.ws66{word-spacing:0.282816px;}
.ws88{word-spacing:0.636480px;}
.ws5e{word-spacing:0.804672px;}
.ws5f{word-spacing:1.020960px;}
.ws70{word-spacing:1.370880px;}
.ws71{word-spacing:2.222880px;}
.wsaa{word-spacing:2.373120px;}
.ws6e{word-spacing:2.713920px;}
.ws7b{word-spacing:3.088512px;}
.ws6c{word-spacing:3.101760px;}
.ws6f{word-spacing:3.124800px;}
.ws7a{word-spacing:3.150720px;}
.ws7c{word-spacing:3.165120px;}
.ws6d{word-spacing:3.284352px;}
.ws79{word-spacing:3.523200px;}
.ws78{word-spacing:3.548160px;}
.wsb8{word-spacing:4.210560px;}
.ws5c{word-spacing:4.322880px;}
.wsb6{word-spacing:4.515840px;}
.ws59{word-spacing:4.712352px;}
.ws5a{word-spacing:4.812480px;}
.ws58{word-spacing:5.126400px;}
.ws9a{word-spacing:5.169600px;}
.ws61{word-spacing:5.345280px;}
.ws5b{word-spacing:5.440896px;}
.ws9e{word-spacing:5.553792px;}
.wsb7{word-spacing:5.844672px;}
.ws9b{word-spacing:5.867040px;}
.wsb1{word-spacing:6.223781px;}
.ws9d{word-spacing:6.336000px;}
.wsb2{word-spacing:6.478416px;}
.ws9c{word-spacing:6.564672px;}
.wsb0{word-spacing:6.670272px;}
.wsa0{word-spacing:6.884352px;}
.wsb3{word-spacing:7.214947px;}
.wsce{word-spacing:7.263216px;}
.wsb4{word-spacing:7.387056px;}
.wsa1{word-spacing:7.467840px;}
.wsa2{word-spacing:7.604352px;}
.ws50{word-spacing:7.784352px;}
.ws9f{word-spacing:7.810560px;}
.wsc9{word-spacing:7.963200px;}
.wsc8{word-spacing:8.012160px;}
.wscc{word-spacing:8.143680px;}
.ws4f{word-spacing:8.158560px;}
.ws51{word-spacing:8.346240px;}
.wsa3{word-spacing:8.724672px;}
.wsc3{word-spacing:9.264000px;}
.wsa4{word-spacing:9.573120px;}
.wsc1{word-spacing:9.731520px;}
.ws91{word-spacing:9.944294px;}
.wsbf{word-spacing:10.058880px;}
.ws39{word-spacing:10.302799px;}
.wscd{word-spacing:10.316088px;}
.ws92{word-spacing:10.341072px;}
.wsc2{word-spacing:10.463040px;}
.ws8e{word-spacing:10.993248px;}
.ws55{word-spacing:11.204352px;}
.ws8f{word-spacing:11.263781px;}
.ws64{word-spacing:11.288640px;}
.ws52{word-spacing:11.393280px;}
.wsc0{word-spacing:11.419200px;}
.ws54{word-spacing:11.580000px;}
.ws57{word-spacing:11.725056px;}
.ws53{word-spacing:11.728512px;}
.ws63{word-spacing:11.765760px;}
.ws56{word-spacing:11.916000px;}
.ws90{word-spacing:12.170496px;}
.ws62{word-spacing:12.644352px;}
.wsc5{word-spacing:14.526720px;}
.wsad{word-spacing:15.307200px;}
.wsc7{word-spacing:16.248960px;}
.wsaf{word-spacing:16.755840px;}
.wsae{word-spacing:17.100480px;}
.wsc6{word-spacing:18.105120px;}
.ws77{word-spacing:18.195840px;}
.ws76{word-spacing:18.247680px;}
.ws75{word-spacing:19.124352px;}
.ws74{word-spacing:19.817280px;}
.ws8c{word-spacing:19.844352px;}
.ws8b{word-spacing:20.324160px;}
.ws89{word-spacing:20.564352px;}
.ws8d{word-spacing:20.614080px;}
.ws8a{word-spacing:20.736000px;}
.ws98{word-spacing:26.225280px;}
.ws99{word-spacing:27.044352px;}
.ws6a{word-spacing:27.648000px;}
.ws6b{word-spacing:27.936000px;}
.ws73{word-spacing:34.033248px;}
.wsbb{word-spacing:34.659072px;}
.wscb{word-spacing:34.758533px;}
.ws72{word-spacing:35.353037px;}
.wsa5{word-spacing:35.467200px;}
.wsa7{word-spacing:36.198720px;}
.wsa8{word-spacing:36.463781px;}
.wsa6{word-spacing:37.813728px;}
.ws80{word-spacing:39.795840px;}
.ws7e{word-spacing:40.423680px;}
.ws7f{word-spacing:40.528512px;}
.wsd1{word-spacing:43.663680px;}
.wscf{word-spacing:43.691520px;}
.wsd0{word-spacing:46.137600px;}
.ws69{word-spacing:55.844352px;}
.ws68{word-spacing:56.404800px;}
.ws95{word-spacing:57.821760px;}
.ws97{word-spacing:57.864960px;}
.ws94{word-spacing:58.004352px;}
.ws96{word-spacing:58.230336px;}
.ws93{word-spacing:58.587840px;}
.wsc4{word-spacing:60.090240px;}
.ws83{word-spacing:65.706624px;}
.ws81{word-spacing:66.168864px;}
.ws84{word-spacing:66.556037px;}
.ws82{word-spacing:66.997104px;}
.ws4c{word-spacing:77.929440px;}
.ws4d{word-spacing:77.999040px;}
.ws4e{word-spacing:78.273792px;}
.ws4b{word-spacing:78.884352px;}
.ws35{word-spacing:209.871833px;}
.ws36{word-spacing:210.635003px;}
.wsac{word-spacing:1080.701280px;}
._54{margin-left:-352.966264px;}
._53{margin-left:-255.662051px;}
._55{margin-left:-228.187920px;}
._57{margin-left:-182.397702px;}
._56{margin-left:-155.686741px;}
._52{margin-left:-145.383942px;}
._5a{margin-left:-138.896995px;}
._5b{margin-left:-137.752239px;}
._58{margin-left:-128.975781px;}
._59{margin-left:-119.436152px;}
._46{margin-left:-62.198379px;}
._4f{margin-left:-22.513524px;}
._8{margin-left:-17.190288px;}
._a{margin-left:-15.862560px;}
._6{margin-left:-14.146992px;}
._49{margin-left:-12.973895px;}
._9{margin-left:-10.718640px;}
._2{margin-left:-9.619200px;}
._1d{margin-left:-8.297952px;}
._22{margin-left:-7.199458px;}
._5{margin-left:-6.189360px;}
._7{margin-left:-5.015232px;}
._3{margin-left:-3.847680px;}
._4{margin-left:-2.525040px;}
._1{margin-left:-1.082160px;}
._0{width:1.244880px;}
._13{width:2.247120px;}
._f{width:3.261360px;}
._14{width:4.529136px;}
._b{width:5.562816px;}
._10{width:7.021440px;}
._11{width:8.221680px;}
._1a{width:9.400080px;}
._d{width:10.863360px;}
._e{width:12.580320px;}
._12{width:13.826640px;}
._19{width:14.835360px;}
._1f{width:16.299312px;}
._5c{width:17.943840px;}
._20{width:19.813680px;}
._42{width:22.769918px;}
._27{width:24.490058px;}
._43{width:26.397983px;}
._5d{width:27.539040px;}
._23{width:29.382057px;}
._24{width:30.915771px;}
._3e{width:32.434738px;}
._25{width:33.516898px;}
._1c{width:34.529088px;}
._28{width:35.743813px;}
._41{width:37.963354px;}
._3f{width:39.690868px;}
._29{width:41.404995px;}
._40{width:42.999944px;}
._26{width:44.076091px;}
._2a{width:45.240246px;}
._1e{width:47.109888px;}
._17{width:52.529088px;}
._51{width:57.181190px;}
._18{width:59.090880px;}
._50{width:65.394289px;}
._2d{width:71.570849px;}
._16{width:77.247360px;}
._39{width:78.988126px;}
._15{width:87.072960px;}
._4a{width:90.467509px;}
._47{width:94.251532px;}
._38{width:98.830554px;}
._2b{width:106.843842px;}
._2e{width:110.152917px;}
._3a{width:111.590024px;}
._48{width:112.949204px;}
._45{width:121.913449px;}
._2c{width:125.541514px;}
._44{width:141.568091px;}
._4e{width:143.857602px;}
._2f{width:146.785092px;}
._3b{width:148.436623px;}
._4c{width:173.621243px;}
._32{width:186.213553px;}
._4b{width:194.226841px;}
._30{width:196.259958px;}
._33{width:217.885121px;}
._4d{width:235.819623px;}
._31{width:236.964378px;}
._3c{width:238.109134px;}
._35{width:257.951561px;}
._3d{width:259.096317px;}
._36{width:269.017531px;}
._37{width:290.004714px;}
._34{width:301.452268px;}
._1b{width:844.140000px;}
._c{width:845.741280px;}
._21{width:1261.686192px;}
.fc7{color:rgb(77,90,107);}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(47,84,150);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.158515px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fsa{font-size:65.454552px;}
.fsc{font-size:65.454578px;}
.fs4{font-size:66.240000px;}
.fsf{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y140{bottom:6.840000px;}
.y150{bottom:10.260000px;}
.y147{bottom:10.440000px;}
.y149{bottom:10.800000px;}
.y14c{bottom:10.980000px;}
.y1c9{bottom:13.858190px;}
.y1db{bottom:13.858218px;}
.y167{bottom:13.858583px;}
.y1aa{bottom:13.858611px;}
.y133{bottom:13.858732px;}
.y1a8{bottom:13.858864px;}
.y1a6{bottom:13.858878px;}
.y151{bottom:15.120000px;}
.y13a{bottom:15.300000px;}
.y13d{bottom:15.480000px;}
.y14a{bottom:15.660000px;}
.y14d{bottom:15.840000px;}
.y138{bottom:16.200000px;}
.y158{bottom:16.380000px;}
.y153{bottom:16.560000px;}
.y143{bottom:17.640000px;}
.y15f{bottom:17.685000px;}
.y145{bottom:18.540000px;}
.y13b{bottom:20.160000px;}
.y136{bottom:20.340000px;}
.y132{bottom:20.949525px;}
.y154{bottom:21.420000px;}
.y164{bottom:22.494000px;}
.y15d{bottom:22.500000px;}
.y160{bottom:22.545000px;}
.y141{bottom:23.400000px;}
.y1a7{bottom:23.797125px;}
.y1a5{bottom:27.521490px;}
.y1fe{bottom:28.152000px;}
.y166{bottom:28.677825px;}
.y1a9{bottom:28.841445px;}
.y13f{bottom:30.240000px;}
.y1ef{bottom:31.356000px;}
.y10c{bottom:57.000300px;}
.y1c8{bottom:57.192645px;}
.y1fd{bottom:57.852000px;}
.y1ee{bottom:61.092000px;}
.y1da{bottom:66.279435px;}
.y10b{bottom:73.560300px;}
.y134{bottom:75.276000px;}
.y10{bottom:79.416000px;}
.y10a{bottom:87.240300px;}
.y1fc{bottom:87.588000px;}
.y1a4{bottom:88.560000px;}
.y1ed{bottom:90.792000px;}
.y165{bottom:92.376000px;}
.yf{bottom:95.976000px;}
.y1a3{bottom:100.440000px;}
.y1a2{bottom:112.320000px;}
.y1c7{bottom:112.356000px;}
.y1fb{bottom:117.288000px;}
.y1ec{bottom:120.492000px;}
.y1a1{bottom:124.200000px;}
.y6d{bottom:126.216000px;}
.ydb{bottom:126.396000px;}
.y1c6{bottom:135.756000px;}
.y1a0{bottom:136.080000px;}
.y163{bottom:138.276000px;}
.yad{bottom:139.716000px;}
.y108{bottom:146.916000px;}
.ye8{bottom:147.456000px;}
.y7f{bottom:147.816000px;}
.y19f{bottom:147.960000px;}
.y107{bottom:148.356000px;}
.y1eb{bottom:150.195000px;}
.y1ff{bottom:154.440000px;}
.ye{bottom:158.250000px;}
.y3f{bottom:158.790000px;}
.y1c5{bottom:159.150000px;}
.y19e{bottom:159.840000px;}
.y6c{bottom:161.310000px;}
.yda{bottom:161.490000px;}
.y58{bottom:162.210000px;}
.ya2{bottom:166.350000px;}
.y19d{bottom:171.720000px;}
.yce{bottom:173.910000px;}
.yac{bottom:174.810000px;}
.yfb{bottom:179.130000px;}
.y1ea{bottom:179.895000px;}
.yde{bottom:182.550000px;}
.y7e{bottom:182.910000px;}
.y106{bottom:183.450000px;}
.y19c{bottom:183.600000px;}
.y162{bottom:183.990000px;}
.yfe{bottom:186.870000px;}
.y3e{bottom:193.890000px;}
.yd{bottom:195.330000px;}
.y19b{bottom:195.480000px;}
.y6b{bottom:196.410000px;}
.yd9{bottom:196.590000px;}
.y57{bottom:197.310000px;}
.y208{bottom:198.825000px;}
.ye7{bottom:200.550000px;}
.ya1{bottom:201.450000px;}
.y1c4{bottom:205.950000px;}
.y19a{bottom:207.360000px;}
.ycd{bottom:209.010000px;}
.y1e9{bottom:209.625000px;}
.yab{bottom:209.910000px;}
.yfd{bottom:215.310000px;}
.ydd{bottom:217.650000px;}
.y105{bottom:218.550000px;}
.y207{bottom:218.625000px;}
.y199{bottom:219.240000px;}
.y3d{bottom:228.990000px;}
.y95{bottom:229.350000px;}
.y198{bottom:231.120000px;}
.y6a{bottom:231.510000px;}
.yd8{bottom:231.690000px;}
.y56{bottom:232.410000px;}
.ye6{bottom:235.650000px;}
.y7d{bottom:235.830000px;}
.ya0{bottom:236.550000px;}
.yfa{bottom:237.270000px;}
.y206{bottom:238.470000px;}
.yb8{bottom:238.710000px;}
.y1e8{bottom:239.325000px;}
.yc{bottom:242.130000px;}
.y197{bottom:243.000000px;}
.yfc{bottom:243.750000px;}
.ycc{bottom:244.110000px;}
.y8e{bottom:252.750000px;}
.y104{bottom:253.650000px;}
.y196{bottom:254.880000px;}
.y205{bottom:258.270000px;}
.yaa{bottom:263.010000px;}
.y3c{bottom:264.090000px;}
.y94{bottom:264.450000px;}
.y69{bottom:266.610000px;}
.y195{bottom:266.760000px;}
.yd7{bottom:266.790000px;}
.y1e7{bottom:269.025000px;}
.ye5{bottom:270.750000px;}
.y9f{bottom:271.650000px;}
.yf9{bottom:272.370000px;}
.yb7{bottom:273.810000px;}
.y1c3{bottom:276.150000px;}
.y204{bottom:278.070000px;}
.y194{bottom:278.640000px;}
.y161{bottom:279.030000px;}
.ycb{bottom:279.210000px;}
.y55{bottom:285.510000px;}
.y8d{bottom:287.850000px;}
.y103{bottom:288.750000px;}
.yb{bottom:288.930000px;}
.y193{bottom:290.520000px;}
.y7c{bottom:296.490000px;}
.y203{bottom:297.870000px;}
.y1e6{bottom:298.725000px;}
.y3b{bottom:299.190000px;}
.y93{bottom:299.550000px;}
.y192{bottom:302.400000px;}
.ye4{bottom:305.850000px;}
.y9e{bottom:306.750000px;}
.yf8{bottom:307.470000px;}
.yb6{bottom:308.910000px;}
.y191{bottom:314.280000px;}
.y131{bottom:317.280000px;}
.ya9{bottom:317.550000px;}
.y202{bottom:317.670000px;}
.y68{bottom:319.710000px;}
.yd6{bottom:319.890000px;}
.y54{bottom:320.610000px;}
.y8c{bottom:322.950000px;}
.y102{bottom:323.850000px;}
.y190{bottom:326.160000px;}
.y15e{bottom:326.550000px;}
.y1e5{bottom:328.425000px;}
.y7b{bottom:331.050000px;}
.yca{bottom:332.310000px;}
.y3a{bottom:334.290000px;}
.y92{bottom:334.650000px;}
.y201{bottom:337.470000px;}
.y18f{bottom:338.040000px;}
.ye3{bottom:340.995000px;}
.y9d{bottom:341.895000px;}
.yf7{bottom:342.615000px;}
.yb5{bottom:344.055000px;}
.y130{bottom:345.360000px;}
.y1c2{bottom:346.395000px;}
.y18e{bottom:349.920000px;}
.ya{bottom:352.695000px;}
.y1fa{bottom:354.090000px;}
.y53{bottom:355.755000px;}
.y200{bottom:357.270000px;}
.y8b{bottom:358.095000px;}
.y101{bottom:358.995000px;}
.y18d{bottom:361.800000px;}
.yc9{bottom:367.455000px;}
.y39{bottom:369.435000px;}
.y91{bottom:369.795000px;}
.y15c{bottom:372.315000px;}
.y18c{bottom:373.680000px;}
.y67{bottom:374.295000px;}
.yd5{bottom:375.915000px;}
.ye2{bottom:376.095000px;}
.y12f{bottom:376.500000px;}
.yf6{bottom:377.715000px;}
.yb4{bottom:379.155000px;}
.y7a{bottom:384.735000px;}
.y18b{bottom:385.560000px;}
.ya8{bottom:387.795000px;}
.y209{bottom:388.155000px;}
.y9c{bottom:390.675000px;}
.y52{bottom:390.855000px;}
.y8a{bottom:393.195000px;}
.y100{bottom:394.095000px;}
.y12e{bottom:397.020000px;}
.y18a{bottom:397.440000px;}
.y9{bottom:399.495000px;}
.yc8{bottom:402.555000px;}
.y38{bottom:404.535000px;}
.y189{bottom:409.320000px;}
.y66{bottom:409.395000px;}
.ye1{bottom:411.195000px;}
.yf5{bottom:412.815000px;}
.yb3{bottom:414.255000px;}
.y1c1{bottom:416.595000px;}
.y12d{bottom:417.720000px;}
.y15b{bottom:418.215000px;}
.y79{bottom:419.835000px;}
.y188{bottom:421.200000px;}
.y90{bottom:421.815000px;}
.ya7{bottom:422.895000px;}
.y89{bottom:428.295000px;}
.y1f7{bottom:429.120000px;}
.yff{bottom:429.195000px;}
.y187{bottom:433.080000px;}
.yc7{bottom:437.655000px;}
.y12c{bottom:438.780000px;}
.y37{bottom:439.635000px;}
.y1c0{bottom:439.995000px;}
.y51{bottom:443.955000px;}
.y65{bottom:444.495000px;}
.y186{bottom:444.960000px;}
.y8{bottom:446.295000px;}
.yf4{bottom:447.915000px;}
.yb2{bottom:449.355000px;}
.y1e4{bottom:452.595000px;}
.y78{bottom:454.935000px;}
.y185{bottom:456.840000px;}
.ya6{bottom:457.995000px;}
.y1f6{bottom:458.850000px;}
.y12b{bottom:459.480000px;}
.y88{bottom:463.395000px;}
.y24{bottom:464.295000px;}
.y15a{bottom:465.735000px;}
.y184{bottom:468.720000px;}
.yc6{bottom:472.755000px;}
.y36{bottom:474.735000px;}
.y50{bottom:479.055000px;}
.y1f9{bottom:479.085000px;}
.y64{bottom:479.595000px;}
.y12a{bottom:480.180000px;}
.y183{bottom:480.600000px;}
.ye0{bottom:481.395000px;}
.yf3{bottom:483.015000px;}
.y1bf{bottom:486.795000px;}
.y1f5{bottom:488.550000px;}
.y77{bottom:490.035000px;}
.y182{bottom:492.480000px;}
.ya5{bottom:493.095000px;}
.y87{bottom:498.495000px;}
.y23{bottom:499.395000px;}
.y129{bottom:500.880000px;}
.yb1{bottom:502.455000px;}
.y181{bottom:504.360000px;}
.yc5{bottom:507.855000px;}
.y35{bottom:509.835000px;}
.y1be{bottom:510.195000px;}
.y159{bottom:511.455000px;}
.y7{bottom:513.255000px;}
.y4f{bottom:514.155000px;}
.y63{bottom:514.695000px;}
.y180{bottom:516.240000px;}
.ydf{bottom:516.495000px;}
.y1e3{bottom:517.245000px;}
.y1f4{bottom:518.250000px;}
.y128{bottom:521.580000px;}
.y76{bottom:524.595000px;}
.y17f{bottom:528.120000px;}
.ya4{bottom:528.195000px;}
.y86{bottom:533.595000px;}
.y22{bottom:534.495000px;}
.y157{bottom:535.575000px;}
.y17e{bottom:540.000000px;}
.y127{bottom:541.920000px;}
.yc4{bottom:542.955000px;}
.y34{bottom:544.935000px;}
.y1e2{bottom:546.945000px;}
.y1f3{bottom:547.950000px;}
.y4e{bottom:549.255000px;}
.y62{bottom:549.795000px;}
.ydc{bottom:551.595000px;}
.y17d{bottom:551.880000px;}
.yf2{bottom:553.035000px;}
.yb0{bottom:556.995000px;}
.y6{bottom:560.055000px;}
.y17c{bottom:563.760000px;}
.y21{bottom:569.595000px;}
.y126{bottom:574.860000px;}
.y1d9{bottom:574.995000px;}
.y17b{bottom:575.640000px;}
.y1e1{bottom:576.645000px;}
.y1f2{bottom:577.650000px;}
.yc3{bottom:578.055000px;}
.y75{bottom:578.235000px;}
.y156{bottom:578.775000px;}
.y33{bottom:580.035000px;}
.y1bd{bottom:580.395000px;}
.ya3{bottom:580.935000px;}
.y4d{bottom:584.355000px;}
.y61{bottom:584.895000px;}
.yd4{bottom:585.795000px;}
.y85{bottom:586.695000px;}
.y17a{bottom:587.520000px;}
.yaf{bottom:592.095000px;}
.y125{bottom:598.260000px;}
.y1d8{bottom:598.395000px;}
.y179{bottom:599.400000px;}
.y1bc{bottom:603.825000px;}
.y20{bottom:604.725000px;}
.y5{bottom:605.805000px;}
.y1e0{bottom:606.345000px;}
.y1f1{bottom:607.395000px;}
.y178{bottom:611.280000px;}
.yc2{bottom:613.185000px;}
.y32{bottom:615.165000px;}
.y4c{bottom:619.485000px;}
.y155{bottom:620.205000px;}
.yd3{bottom:620.925000px;}
.y84{bottom:621.825000px;}
.y177{bottom:623.160000px;}
.yf1{bottom:624.705000px;}
.y1bb{bottom:627.225000px;}
.y124{bottom:631.560000px;}
.y176{bottom:635.040000px;}
.y1df{bottom:636.045000px;}
.y1f0{bottom:637.095000px;}
.y60{bottom:638.025000px;}
.y74{bottom:638.925000px;}
.y1f{bottom:639.825000px;}
.y1d7{bottom:645.225000px;}
.yae{bottom:645.405000px;}
.y175{bottom:646.920000px;}
.yc1{bottom:648.285000px;}
.y31{bottom:650.265000px;}
.y1ba{bottom:650.625000px;}
.y4{bottom:652.605000px;}
.y4b{bottom:654.585000px;}
.y123{bottom:655.320000px;}
.yd2{bottom:656.025000px;}
.y83{bottom:656.925000px;}
.y174{bottom:658.800000px;}
.yf0{bottom:659.805000px;}
.y152{bottom:663.045000px;}
.y1f8{bottom:663.270000px;}
.y1d6{bottom:668.625000px;}
.y173{bottom:670.680000px;}
.y5f{bottom:673.125000px;}
.y73{bottom:674.025000px;}
.y1e{bottom:674.925000px;}
.y122{bottom:678.720000px;}
.y172{bottom:682.560000px;}
.y30{bottom:685.365000px;}
.y4a{bottom:689.685000px;}
.yd1{bottom:691.125000px;}
.y82{bottom:692.025000px;}
.y171{bottom:694.440000px;}
.yef{bottom:694.905000px;}
.y1b9{bottom:697.425000px;}
.y3{bottom:700.485000px;}
.yc0{bottom:701.385000px;}
.y121{bottom:702.840000px;}
.y1de{bottom:704.190000px;}
.y170{bottom:706.320000px;}
.y14f{bottom:706.605000px;}
.y5e{bottom:708.225000px;}
.y72{bottom:709.125000px;}
.y1d{bottom:710.025000px;}
.y1d5{bottom:715.425000px;}
.y16f{bottom:718.200000px;}
.y2f{bottom:720.465000px;}
.y1b8{bottom:720.825000px;}
.y49{bottom:724.785000px;}
.y1dd{bottom:726.555000px;}
.y120{bottom:726.780000px;}
.y81{bottom:727.125000px;}
.yee{bottom:730.005000px;}
.y16e{bottom:730.080000px;}
.ybf{bottom:736.485000px;}
.y14e{bottom:737.745000px;}
.y1d4{bottom:738.825000px;}
.y16d{bottom:741.960000px;}
.y71{bottom:744.225000px;}
.y1c{bottom:745.125000px;}
.y11f{bottom:750.180000px;}
.y1dc{bottom:751.755000px;}
.y16c{bottom:753.840000px;}
.y2e{bottom:755.565000px;}
.y48{bottom:759.885000px;}
.y2{bottom:760.425000px;}
.y5d{bottom:761.325000px;}
.y80{bottom:762.225000px;}
.yed{bottom:765.105000px;}
.y16b{bottom:765.720000px;}
.y1b7{bottom:767.625000px;}
.ybe{bottom:771.585000px;}
.y16a{bottom:777.600000px;}
.yd0{bottom:779.325000px;}
.y1b{bottom:780.225000px;}
.y11e{bottom:783.300000px;}
.y14b{bottom:785.265000px;}
.y1d3{bottom:785.625000px;}
.y9b{bottom:787.425000px;}
.y169{bottom:789.480000px;}
.y2d{bottom:790.665000px;}
.y1b6{bottom:791.025000px;}
.y47{bottom:794.985000px;}
.y5c{bottom:796.425000px;}
.y70{bottom:797.325000px;}
.yec{bottom:800.205000px;}
.y168{bottom:801.360000px;}
.y11d{bottom:807.060000px;}
.y1d2{bottom:809.025000px;}
.y8f{bottom:811.545000px;}
.ycf{bottom:814.425000px;}
.y1a{bottom:815.325000px;}
.y148{bottom:817.665000px;}
.y9a{bottom:822.525000px;}
.ybd{bottom:824.685000px;}
.y2c{bottom:825.765000px;}
.y11c{bottom:830.820000px;}
.y6f{bottom:832.425000px;}
.yeb{bottom:835.305000px;}
.y1b5{bottom:837.825000px;}
.y46{bottom:848.085000px;}
.y5b{bottom:849.525000px;}
.y146{bottom:849.705000px;}
.y19{bottom:850.425000px;}
.y11b{bottom:851.700000px;}
.y1d1{bottom:855.825000px;}
.y99{bottom:857.625000px;}
.y2b{bottom:860.865000px;}
.y1b4{bottom:861.225000px;}
.y6e{bottom:867.525000px;}
.yea{bottom:870.405000px;}
.y11a{bottom:872.400000px;}
.ybc{bottom:879.270000px;}
.y144{bottom:881.250000px;}
.y5a{bottom:884.670000px;}
.y18{bottom:885.570000px;}
.y98{bottom:892.770000px;}
.y119{bottom:893.100000px;}
.y2a{bottom:896.010000px;}
.y45{bottom:902.670000px;}
.y1b3{bottom:908.070000px;}
.y118{bottom:913.800000px;}
.ybb{bottom:914.370000px;}
.y59{bottom:919.770000px;}
.y17{bottom:920.670000px;}
.y1d0{bottom:926.070000px;}
.y142{bottom:928.770000px;}
.ye9{bottom:930.210000px;}
.y29{bottom:931.110000px;}
.y1b2{bottom:931.470000px;}
.y117{bottom:937.560000px;}
.y44{bottom:937.770000px;}
.y97{bottom:945.870000px;}
.yba{bottom:949.470000px;}
.y1b1{bottom:954.870000px;}
.y16{bottom:955.770000px;}
.y116{bottom:961.320000px;}
.y28{bottom:966.210000px;}
.y43{bottom:972.870000px;}
.y13e{bottom:974.490000px;}
.y1b0{bottom:978.270000px;}
.y115{bottom:985.080000px;}
.y15{bottom:990.870000px;}
.yb9{bottom:993.030000px;}
.y1cf{bottom:996.270000px;}
.y96{bottom:1000.410000px;}
.y27{bottom:1001.310000px;}
.y1af{bottom:1001.670000px;}
.y114{bottom:1005.960000px;}
.y42{bottom:1007.970000px;}
.y1ce{bottom:1019.670000px;}
.y13c{bottom:1022.010000px;}
.y1ae{bottom:1025.070000px;}
.y14{bottom:1025.970000px;}
.y113{bottom:1026.660000px;}
.y26{bottom:1036.410000px;}
.y41{bottom:1043.070000px;}
.y112{bottom:1047.360000px;}
.y1ad{bottom:1048.470000px;}
.y13{bottom:1061.070000px;}
.y139{bottom:1063.410000px;}
.y1cd{bottom:1066.470000px;}
.y111{bottom:1067.700000px;}
.y25{bottom:1071.510000px;}
.y1ac{bottom:1071.870000px;}
.y40{bottom:1078.170000px;}
.y110{bottom:1088.400000px;}
.y1cc{bottom:1089.870000px;}
.y12{bottom:1096.170000px;}
.y137{bottom:1104.450000px;}
.y10f{bottom:1108.740300px;}
.y1cb{bottom:1113.270000px;}
.y1ab{bottom:1123.890000px;}
.y10e{bottom:1126.020300px;}
.y1{bottom:1130.730000px;}
.y11{bottom:1131.270000px;}
.y1ca{bottom:1136.670000px;}
.y10d{bottom:1143.300300px;}
.y135{bottom:1146.780000px;}
.y109{bottom:1196.400000px;}
.h27{height:23.400000px;}
.h22{height:30.420000px;}
.h1f{height:30.636000px;}
.h20{height:31.320000px;}
.h21{height:31.680000px;}
.h2c{height:32.792474px;}
.ha{height:35.991211px;}
.h14{height:38.454540px;}
.h2d{height:38.454555px;}
.h19{height:39.313477px;}
.h28{height:39.814453px;}
.h1a{height:40.140000px;}
.h1c{height:40.680000px;}
.h25{height:40.716000px;}
.h24{height:42.120000px;}
.h16{height:42.229687px;}
.h26{height:42.300000px;}
.h11{height:42.327773px;}
.h18{height:42.336000px;}
.h23{height:42.660000px;}
.h1e{height:45.000000px;}
.h29{height:45.036000px;}
.h1d{height:46.800000px;}
.h15{height:47.045459px;}
.h2e{height:47.045478px;}
.hd{height:48.224531px;}
.h1b{height:48.410156px;}
.h10{height:52.435898px;}
.h17{height:53.100000px;}
.h30{height:53.332031px;}
.he{height:54.162422px;}
.h9{height:59.383125px;}
.h34{height:59.512219px;}
.h8{height:59.803594px;}
.hc{height:59.932969px;}
.h35{height:59.933602px;}
.h2f{height:60.999961px;}
.h36{height:61.063594px;}
.hb{height:61.197187px;}
.h13{height:63.175781px;}
.h12{height:63.949219px;}
.h2{height:64.546875px;}
.hf{height:65.003906px;}
.h32{height:76.054570px;}
.h33{height:76.184578px;}
.h3{height:85.847344px;}
.h4{height:86.455195px;}
.h7{height:97.505859px;}
.h5{height:97.716797px;}
.h6{height:108.791367px;}
.h31{height:810.000000px;}
.h2a{height:892.980000px;}
.h2b{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:38.454600px;}
.w27{width:46.651200px;}
.w16{width:48.420000px;}
.w22{width:48.675600px;}
.w12{width:48.780000px;}
.w25{width:51.284700px;}
.w28{width:57.538950px;}
.w26{width:60.592050px;}
.w1b{width:71.640000px;}
.w14{width:72.000000px;}
.w11{width:74.340000px;}
.w1e{width:74.700000px;}
.w20{width:75.060000px;}
.wf{width:81.180000px;}
.w18{width:81.720000px;}
.w1d{width:93.780000px;}
.w10{width:94.140000px;}
.w13{width:120.996000px;}
.w17{width:121.356000px;}
.w7{width:140.976000px;}
.we{width:141.336000px;}
.w21{width:148.176000px;}
.w9{width:148.536000px;}
.w1f{width:170.130000px;}
.wa{width:242.130000px;}
.wb{width:242.490000px;}
.w8{width:250.950000px;}
.w19{width:317.595000px;}
.w1a{width:319.395000px;}
.wd{width:391.035000px;}
.w1c{width:391.395000px;}
.w15{width:392.295000px;}
.wc{width:392.655000px;}
.w6{width:784.050000px;}
.w5{width:784.410000px;}
.w3{width:892.500000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2a{width:1169.999983px;}
.w29{width:1170.000000px;}
.w23{width:1262.880000px;}
.w24{width:1263.000000px;}
.x0{left:0.000000px;}
.x20{left:7.740000px;}
.x1c{left:9.818241px;}
.x35{left:13.500000px;}
.x26{left:16.560000px;}
.x2b{left:24.300000px;}
.x30{left:26.310000px;}
.x37{left:29.160000px;}
.x36{left:32.580000px;}
.x2e{left:36.180000px;}
.x38{left:37.800000px;}
.x28{left:40.320000px;}
.x2f{left:42.156000px;}
.x1d{left:53.999987px;}
.x3a{left:80.640000px;}
.x3b{left:83.160000px;}
.x39{left:85.185000px;}
.x34{left:107.130000px;}
.x24{left:121.005000px;}
.x33{left:124.410000px;}
.x22{left:125.685000px;}
.x14{left:127.620000px;}
.x45{left:132.479983px;}
.x1{left:135.035987px;}
.x8{left:139.175987px;}
.x15{left:142.380000px;}
.x46{left:148.211983px;}
.x27{left:158.970000px;}
.xe{left:162.029987px;}
.x7{left:166.529987px;}
.x17{left:174.420000px;}
.x3e{left:193.529987px;}
.x21{left:195.510000px;}
.xd{left:198.029987px;}
.x41{left:204.089983px;}
.x43{left:205.529983px;}
.xb{left:255.449987px;}
.x29{left:277.635000px;}
.x5{left:279.254987px;}
.x31{left:281.235000px;}
.x1e{left:289.155000px;}
.x4{left:303.194987px;}
.x32{left:306.075000px;}
.x25{left:310.215000px;}
.xa{left:316.694987px;}
.x19{left:320.939250px;}
.x16{left:328.319700px;}
.x1f{left:335.415000px;}
.x6{left:343.154987px;}
.x1a{left:354.419250px;}
.x9{left:364.214987px;}
.x2a{left:372.135000px;}
.x1b{left:428.940000px;}
.x3f{left:431.683500px;}
.x40{left:433.866000px;}
.x11{left:437.294987px;}
.xc{left:441.974987px;}
.x3{left:446.474987px;}
.x18{left:451.800000px;}
.x42{left:493.559983px;}
.x47{left:522.509983px;}
.x23{left:596.085000px;}
.x3d{left:608.305200px;}
.x3c{left:614.538450px;}
.x2c{left:644.865000px;}
.x2{left:659.129987px;}
.x13{left:697.469987px;}
.xf{left:758.309987px;}
.x2d{left:766.230000px;}
.x12{left:769.649987px;}
.x10{left:771.809987px;}
.x44{left:795.419983px;}
.x4a{left:796.649983px;}
.x48{left:799.274983px;}
.x4b{left:823.649983px;}
.x49{left:894.239983px;}
.x4c{left:909.749983px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.120000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-4.574976pt;}
.ls5f{letter-spacing:-2.178560pt;}
.ls60{letter-spacing:-1.150656pt;}
.ls17{letter-spacing:-1.006848pt;}
.ls1c{letter-spacing:-0.912640pt;}
.ls62{letter-spacing:-0.883200pt;}
.ls2b{letter-spacing:-0.831872pt;}
.ls15{letter-spacing:-0.765440pt;}
.ls1d{letter-spacing:-0.736000pt;}
.ls5c{letter-spacing:-0.708096pt;}
.ls37{letter-spacing:-0.678400pt;}
.ls4b{letter-spacing:-0.673920pt;}
.ls21{letter-spacing:-0.647680pt;}
.ls2a{letter-spacing:-0.583168pt;}
.ls14{letter-spacing:-0.412160pt;}
.ls18{letter-spacing:-0.406272pt;}
.lsf{letter-spacing:-0.370944pt;}
.ls5d{letter-spacing:-0.365850pt;}
.ls5e{letter-spacing:-0.354048pt;}
.ls13{letter-spacing:-0.353280pt;}
.ls43{letter-spacing:-0.339187pt;}
.ls5a{letter-spacing:-0.318643pt;}
.ls61{letter-spacing:-0.300941pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.270848pt;}
.ls52{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.236800pt;}
.lsb{letter-spacing:-0.235520pt;}
.ls2d{letter-spacing:-0.217600pt;}
.ls4e{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.171123pt;}
.ls10{letter-spacing:-0.159616pt;}
.ls1f{letter-spacing:-0.135424pt;}
.ls4f{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.105984pt;}
.ls2f{letter-spacing:-0.102400pt;}
.ls3e{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.094208pt;}
.ls35{letter-spacing:-0.038400pt;}
.ls4c{letter-spacing:-0.029952pt;}
.ls40{letter-spacing:-0.014400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.006400pt;}
.ls39{letter-spacing:0.011636pt;}
.ls3d{letter-spacing:0.016000pt;}
.ls26{letter-spacing:0.017824pt;}
.ls31{letter-spacing:0.019200pt;}
.ls54{letter-spacing:0.029440pt;}
.ls23{letter-spacing:0.062720pt;}
.ls2c{letter-spacing:0.076800pt;}
.ls50{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.140800pt;}
.ls42{letter-spacing:0.144000pt;}
.ls28{letter-spacing:0.171520pt;}
.ls19{letter-spacing:0.176640pt;}
.ls0{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.214400pt;}
.ls32{letter-spacing:0.217600pt;}
.ls4d{letter-spacing:0.224640pt;}
.lsd{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.270848pt;}
.lsc{letter-spacing:0.271360pt;}
.ls38{letter-spacing:0.275200pt;}
.ls41{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.294400pt;}
.ls29{letter-spacing:0.334464pt;}
.ls58{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.482560pt;}
.ls12{letter-spacing:0.560640pt;}
.ls25{letter-spacing:0.649823pt;}
.ls1e{letter-spacing:2.831360pt;}
.ls34{letter-spacing:3.212800pt;}
.ls1b{letter-spacing:4.111360pt;}
.lse{letter-spacing:5.391360pt;}
.ls1a{letter-spacing:6.031360pt;}
.ls33{letter-spacing:6.412800pt;}
.ls3c{letter-spacing:10.976000pt;}
.ls24{letter-spacing:14.208000pt;}
.ls5{letter-spacing:14.351360pt;}
.ls47{letter-spacing:16.000000pt;}
.ls6{letter-spacing:18.191360pt;}
.ls53{letter-spacing:19.902720pt;}
.ls57{letter-spacing:21.696000pt;}
.ls51{letter-spacing:30.208000pt;}
.ls22{letter-spacing:30.970027pt;}
.ls56{letter-spacing:31.127040pt;}
.ls3b{letter-spacing:33.696000pt;}
.ls3a{letter-spacing:33.792000pt;}
.ls46{letter-spacing:43.626667pt;}
.ls20{letter-spacing:46.186667pt;}
.ls4a{letter-spacing:46.208000pt;}
.ls2{letter-spacing:46.970027pt;}
.ls55{letter-spacing:52.751360pt;}
.ls4{letter-spacing:54.031360pt;}
.ls48{letter-spacing:57.088000pt;}
.ls49{letter-spacing:73.088000pt;}
.ls44{letter-spacing:132.282852pt;}
.ls45{letter-spacing:313.408603pt;}
.ws3a{word-spacing:-300.180318pt;}
.ws38{word-spacing:-147.885445pt;}
.ws2{word-spacing:-106.880000pt;}
.ws0{word-spacing:-96.000000pt;}
.ws1{word-spacing:-85.120000pt;}
.ws3e{word-spacing:-75.104640pt;}
.ws3b{word-spacing:-74.880000pt;}
.ws3d{word-spacing:-74.850048pt;}
.ws3c{word-spacing:-74.206080pt;}
.ws40{word-spacing:-64.192000pt;}
.ws48{word-spacing:-64.128000pt;}
.ws3f{word-spacing:-64.000000pt;}
.ws47{word-spacing:-63.872000pt;}
.ws43{word-spacing:-63.808000pt;}
.ws49{word-spacing:-63.744000pt;}
.ws13{word-spacing:-59.150848pt;}
.ws19{word-spacing:-59.115520pt;}
.ws4{word-spacing:-58.880000pt;}
.ws6{word-spacing:-58.785792pt;}
.wsa{word-spacing:-58.644480pt;}
.ws27{word-spacing:-58.609152pt;}
.ws7{word-spacing:-58.585600pt;}
.ws1e{word-spacing:-58.526720pt;}
.ws28{word-spacing:-58.144000pt;}
.ws9{word-spacing:-54.305024pt;}
.ws46{word-spacing:-48.352000pt;}
.ws44{word-spacing:-48.128000pt;}
.ws41{word-spacing:-48.064000pt;}
.ws23{word-spacing:-47.810560pt;}
.ws45{word-spacing:-47.285333pt;}
.ws42{word-spacing:-47.072000pt;}
.ws1a{word-spacing:-46.989824pt;}
.ws25{word-spacing:-46.325760pt;}
.ws2a{word-spacing:-45.867520pt;}
.ws1c{word-spacing:-45.808640pt;}
.ws1b{word-spacing:-45.742080pt;}
.ws24{word-spacing:-45.219840pt;}
.ws26{word-spacing:-40.097280pt;}
.ws15{word-spacing:-37.602560pt;}
.ws14{word-spacing:-37.120000pt;}
.ws4a{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.663040pt;}
.ws8{word-spacing:-16.639488pt;}
.wse{word-spacing:-16.604160pt;}
.ws16{word-spacing:-16.545280pt;}
.ws29{word-spacing:-16.427520pt;}
.ws85{word-spacing:-16.404224pt;}
.wsd{word-spacing:-16.368640pt;}
.wsb{word-spacing:-16.274432pt;}
.ws1f{word-spacing:-16.233216pt;}
.ws7d{word-spacing:-16.133120pt;}
.ws18{word-spacing:-16.097792pt;}
.wsc{word-spacing:-16.074240pt;}
.wsb5{word-spacing:-16.050176pt;}
.ws2c{word-spacing:-16.019200pt;}
.ws12{word-spacing:-16.015360pt;}
.ws20{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.897600pt;}
.ws22{word-spacing:-15.779840pt;}
.ws17{word-spacing:-15.603200pt;}
.ws1d{word-spacing:-15.456000pt;}
.ws37{word-spacing:-14.924219pt;}
.wsba{word-spacing:-14.190080pt;}
.ws32{word-spacing:-13.632000pt;}
.ws31{word-spacing:-13.536000pt;}
.ws33{word-spacing:-13.488000pt;}
.ws2f{word-spacing:-13.344000pt;}
.ws30{word-spacing:-13.329600pt;}
.ws2d{word-spacing:-13.248000pt;}
.ws2e{word-spacing:-13.056000pt;}
.ws11{word-spacing:-10.801920pt;}
.wsf{word-spacing:-10.319360pt;}
.ws10{word-spacing:-10.159744pt;}
.ws2b{word-spacing:-9.888128pt;}
.ws5d{word-spacing:-2.539520pt;}
.ws86{word-spacing:-1.390080pt;}
.ws87{word-spacing:-1.321387pt;}
.wsca{word-spacing:-0.798293pt;}
.wsb9{word-spacing:-0.737280pt;}
.wsa9{word-spacing:-0.593408pt;}
.wsbc{word-spacing:-0.417280pt;}
.ws67{word-spacing:-0.368640pt;}
.ws34{word-spacing:-0.339187pt;}
.ws65{word-spacing:-0.280576pt;}
.wsbd{word-spacing:-0.173909pt;}
.ws3{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.163840pt;}
.wsab{word-spacing:0.173227pt;}
.ws60{word-spacing:0.182272pt;}
.ws66{word-spacing:0.251392pt;}
.ws88{word-spacing:0.565760pt;}
.ws5e{word-spacing:0.715264pt;}
.ws5f{word-spacing:0.907520pt;}
.ws70{word-spacing:1.218560pt;}
.ws71{word-spacing:1.975893pt;}
.wsaa{word-spacing:2.109440pt;}
.ws6e{word-spacing:2.412373pt;}
.ws7b{word-spacing:2.745344pt;}
.ws6c{word-spacing:2.757120pt;}
.ws6f{word-spacing:2.777600pt;}
.ws7a{word-spacing:2.800640pt;}
.ws7c{word-spacing:2.813440pt;}
.ws6d{word-spacing:2.919424pt;}
.ws79{word-spacing:3.131733pt;}
.ws78{word-spacing:3.153920pt;}
.wsb8{word-spacing:3.742720pt;}
.ws5c{word-spacing:3.842560pt;}
.wsb6{word-spacing:4.014080pt;}
.ws59{word-spacing:4.188757pt;}
.ws5a{word-spacing:4.277760pt;}
.ws58{word-spacing:4.556800pt;}
.ws9a{word-spacing:4.595200pt;}
.ws61{word-spacing:4.751360pt;}
.ws5b{word-spacing:4.836352pt;}
.ws9e{word-spacing:4.936704pt;}
.wsb7{word-spacing:5.195264pt;}
.ws9b{word-spacing:5.215147pt;}
.wsb1{word-spacing:5.532250pt;}
.ws9d{word-spacing:5.632000pt;}
.wsb2{word-spacing:5.758592pt;}
.ws9c{word-spacing:5.835264pt;}
.wsb0{word-spacing:5.929131pt;}
.wsa0{word-spacing:6.119424pt;}
.wsb3{word-spacing:6.413286pt;}
.wsce{word-spacing:6.456192pt;}
.wsb4{word-spacing:6.566272pt;}
.wsa1{word-spacing:6.638080pt;}
.wsa2{word-spacing:6.759424pt;}
.ws50{word-spacing:6.919424pt;}
.ws9f{word-spacing:6.942720pt;}
.wsc9{word-spacing:7.078400pt;}
.wsc8{word-spacing:7.121920pt;}
.wscc{word-spacing:7.238827pt;}
.ws4f{word-spacing:7.252053pt;}
.ws51{word-spacing:7.418880pt;}
.wsa3{word-spacing:7.755264pt;}
.wsc3{word-spacing:8.234667pt;}
.wsa4{word-spacing:8.509440pt;}
.wsc1{word-spacing:8.650240pt;}
.ws91{word-spacing:8.839373pt;}
.wsbf{word-spacing:8.941227pt;}
.ws39{word-spacing:9.158044pt;}
.wscd{word-spacing:9.169856pt;}
.ws92{word-spacing:9.192064pt;}
.wsc2{word-spacing:9.300480pt;}
.ws8e{word-spacing:9.771776pt;}
.ws55{word-spacing:9.959424pt;}
.ws8f{word-spacing:10.012250pt;}
.ws64{word-spacing:10.034347pt;}
.ws52{word-spacing:10.127360pt;}
.wsc0{word-spacing:10.150400pt;}
.ws54{word-spacing:10.293333pt;}
.ws57{word-spacing:10.422272pt;}
.ws53{word-spacing:10.425344pt;}
.ws63{word-spacing:10.458453pt;}
.ws56{word-spacing:10.592000pt;}
.ws90{word-spacing:10.818219pt;}
.ws62{word-spacing:11.239424pt;}
.wsc5{word-spacing:12.912640pt;}
.wsad{word-spacing:13.606400pt;}
.wsc7{word-spacing:14.443520pt;}
.wsaf{word-spacing:14.894080pt;}
.wsae{word-spacing:15.200427pt;}
.wsc6{word-spacing:16.093440pt;}
.ws77{word-spacing:16.174080pt;}
.ws76{word-spacing:16.220160pt;}
.ws75{word-spacing:16.999424pt;}
.ws74{word-spacing:17.615360pt;}
.ws8c{word-spacing:17.639424pt;}
.ws8b{word-spacing:18.065920pt;}
.ws89{word-spacing:18.279424pt;}
.ws8d{word-spacing:18.323627pt;}
.ws8a{word-spacing:18.432000pt;}
.ws98{word-spacing:23.311360pt;}
.ws99{word-spacing:24.039424pt;}
.ws6a{word-spacing:24.576000pt;}
.ws6b{word-spacing:24.832000pt;}
.ws73{word-spacing:30.251776pt;}
.wsbb{word-spacing:30.808064pt;}
.wscb{word-spacing:30.896474pt;}
.ws72{word-spacing:31.424922pt;}
.wsa5{word-spacing:31.526400pt;}
.wsa7{word-spacing:32.176640pt;}
.wsa8{word-spacing:32.412250pt;}
.wsa6{word-spacing:33.612203pt;}
.ws80{word-spacing:35.374080pt;}
.ws7e{word-spacing:35.932160pt;}
.ws7f{word-spacing:36.025344pt;}
.wsd1{word-spacing:38.812160pt;}
.wscf{word-spacing:38.836907pt;}
.wsd0{word-spacing:41.011200pt;}
.ws69{word-spacing:49.639424pt;}
.ws68{word-spacing:50.137600pt;}
.ws95{word-spacing:51.397120pt;}
.ws97{word-spacing:51.435520pt;}
.ws94{word-spacing:51.559424pt;}
.ws96{word-spacing:51.760299pt;}
.ws93{word-spacing:52.078080pt;}
.wsc4{word-spacing:53.413547pt;}
.ws83{word-spacing:58.405888pt;}
.ws81{word-spacing:58.816768pt;}
.ws84{word-spacing:59.160922pt;}
.ws82{word-spacing:59.552981pt;}
.ws4c{word-spacing:69.270613pt;}
.ws4d{word-spacing:69.332480pt;}
.ws4e{word-spacing:69.576704pt;}
.ws4b{word-spacing:70.119424pt;}
.ws35{word-spacing:186.552740pt;}
.ws36{word-spacing:187.231114pt;}
.wsac{word-spacing:960.623360pt;}
._54{margin-left:-313.747790pt;}
._53{margin-left:-227.255156pt;}
._55{margin-left:-202.833706pt;}
._57{margin-left:-162.131290pt;}
._56{margin-left:-138.388214pt;}
._52{margin-left:-129.230171pt;}
._5a{margin-left:-123.463995pt;}
._5b{margin-left:-122.446435pt;}
._58{margin-left:-114.645138pt;}
._59{margin-left:-106.165468pt;}
._46{margin-left:-55.287448pt;}
._4f{margin-left:-20.012021pt;}
._8{margin-left:-15.280256pt;}
._a{margin-left:-14.100053pt;}
._6{margin-left:-12.575104pt;}
._49{margin-left:-11.532351pt;}
._9{margin-left:-9.527680pt;}
._2{margin-left:-8.550400pt;}
._1d{margin-left:-7.375957pt;}
._22{margin-left:-6.399518pt;}
._5{margin-left:-5.501653pt;}
._7{margin-left:-4.457984pt;}
._3{margin-left:-3.420160pt;}
._4{margin-left:-2.244480pt;}
._1{margin-left:-0.961920pt;}
._0{width:1.106560pt;}
._13{width:1.997440pt;}
._f{width:2.898987pt;}
._14{width:4.025899pt;}
._b{width:4.944725pt;}
._10{width:6.241280pt;}
._11{width:7.308160pt;}
._1a{width:8.355627pt;}
._d{width:9.656320pt;}
._e{width:11.182507pt;}
._12{width:12.290347pt;}
._19{width:13.186987pt;}
._1f{width:14.488277pt;}
._5c{width:15.950080pt;}
._20{width:17.612160pt;}
._42{width:20.239927pt;}
._27{width:21.768940pt;}
._43{width:23.464874pt;}
._5d{width:24.479147pt;}
._23{width:26.117384pt;}
._24{width:27.480686pt;}
._3e{width:28.830878pt;}
._25{width:29.792798pt;}
._1c{width:30.692523pt;}
._28{width:31.772278pt;}
._41{width:33.745204pt;}
._3f{width:35.280772pt;}
._29{width:36.804440pt;}
._40{width:38.222172pt;}
._26{width:39.178748pt;}
._2a{width:40.213552pt;}
._1e{width:41.875456pt;}
._17{width:46.692523pt;}
._51{width:50.827724pt;}
._18{width:52.525227pt;}
._50{width:58.128257pt;}
._2d{width:63.618532pt;}
._16{width:68.664320pt;}
._39{width:70.211668pt;}
._15{width:77.398187pt;}
._4a{width:80.415564pt;}
._47{width:83.779140pt;}
._38{width:87.849381pt;}
._2b{width:94.972304pt;}
._2e{width:97.913704pt;}
._3a{width:99.191132pt;}
._48{width:100.399293pt;}
._45{width:108.367510pt;}
._2c{width:111.592457pt;}
._44{width:125.838303pt;}
._4e{width:127.873424pt;}
._2f{width:130.475637pt;}
._3b{width:131.943665pt;}
._4c{width:154.329994pt;}
._32{width:165.523158pt;}
._4b{width:172.646081pt;}
._30{width:174.453296pt;}
._33{width:193.675663pt;}
._4d{width:209.617442pt;}
._31{width:210.635003pt;}
._3c{width:211.652563pt;}
._35{width:229.290277pt;}
._3d{width:230.307837pt;}
._36{width:239.126694pt;}
._37{width:257.781968pt;}
._34{width:267.957572pt;}
._1b{width:750.346667pt;}
._c{width:751.770027pt;}
._21{width:1121.498837pt;}
.fsb{font-size:33.918680pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fsa{font-size:58.181824pt;}
.fsc{font-size:58.181847pt;}
.fs4{font-size:58.880000pt;}
.fsf{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y140{bottom:6.080000pt;}
.y150{bottom:9.120000pt;}
.y147{bottom:9.280000pt;}
.y149{bottom:9.600000pt;}
.y14c{bottom:9.760000pt;}
.y1c9{bottom:12.318391pt;}
.y1db{bottom:12.318416pt;}
.y167{bottom:12.318740pt;}
.y1aa{bottom:12.318766pt;}
.y133{bottom:12.318873pt;}
.y1a8{bottom:12.318991pt;}
.y1a6{bottom:12.319003pt;}
.y151{bottom:13.440000pt;}
.y13a{bottom:13.600000pt;}
.y13d{bottom:13.760000pt;}
.y14a{bottom:13.920000pt;}
.y14d{bottom:14.080000pt;}
.y138{bottom:14.400000pt;}
.y158{bottom:14.560000pt;}
.y153{bottom:14.720000pt;}
.y143{bottom:15.680000pt;}
.y15f{bottom:15.720000pt;}
.y145{bottom:16.480000pt;}
.y13b{bottom:17.920000pt;}
.y136{bottom:18.080000pt;}
.y132{bottom:18.621800pt;}
.y154{bottom:19.040000pt;}
.y164{bottom:19.994667pt;}
.y15d{bottom:20.000000pt;}
.y160{bottom:20.040000pt;}
.y141{bottom:20.800000pt;}
.y1a7{bottom:21.153000pt;}
.y1a5{bottom:24.463547pt;}
.y1fe{bottom:25.024000pt;}
.y166{bottom:25.491400pt;}
.y1a9{bottom:25.636840pt;}
.y13f{bottom:26.880000pt;}
.y1ef{bottom:27.872000pt;}
.y10c{bottom:50.666933pt;}
.y1c8{bottom:50.837907pt;}
.y1fd{bottom:51.424000pt;}
.y1ee{bottom:54.304000pt;}
.y1da{bottom:58.915053pt;}
.y10b{bottom:65.386933pt;}
.y134{bottom:66.912000pt;}
.y10{bottom:70.592000pt;}
.y10a{bottom:77.546933pt;}
.y1fc{bottom:77.856000pt;}
.y1a4{bottom:78.720000pt;}
.y1ed{bottom:80.704000pt;}
.y165{bottom:82.112000pt;}
.yf{bottom:85.312000pt;}
.y1a3{bottom:89.280000pt;}
.y1a2{bottom:99.840000pt;}
.y1c7{bottom:99.872000pt;}
.y1fb{bottom:104.256000pt;}
.y1ec{bottom:107.104000pt;}
.y1a1{bottom:110.400000pt;}
.y6d{bottom:112.192000pt;}
.ydb{bottom:112.352000pt;}
.y1c6{bottom:120.672000pt;}
.y1a0{bottom:120.960000pt;}
.y163{bottom:122.912000pt;}
.yad{bottom:124.192000pt;}
.y108{bottom:130.592000pt;}
.ye8{bottom:131.072000pt;}
.y7f{bottom:131.392000pt;}
.y19f{bottom:131.520000pt;}
.y107{bottom:131.872000pt;}
.y1eb{bottom:133.506667pt;}
.y1ff{bottom:137.280000pt;}
.ye{bottom:140.666667pt;}
.y3f{bottom:141.146667pt;}
.y1c5{bottom:141.466667pt;}
.y19e{bottom:142.080000pt;}
.y6c{bottom:143.386667pt;}
.yda{bottom:143.546667pt;}
.y58{bottom:144.186667pt;}
.ya2{bottom:147.866667pt;}
.y19d{bottom:152.640000pt;}
.yce{bottom:154.586667pt;}
.yac{bottom:155.386667pt;}
.yfb{bottom:159.226667pt;}
.y1ea{bottom:159.906667pt;}
.yde{bottom:162.266667pt;}
.y7e{bottom:162.586667pt;}
.y106{bottom:163.066667pt;}
.y19c{bottom:163.200000pt;}
.y162{bottom:163.546667pt;}
.yfe{bottom:166.106667pt;}
.y3e{bottom:172.346667pt;}
.yd{bottom:173.626667pt;}
.y19b{bottom:173.760000pt;}
.y6b{bottom:174.586667pt;}
.yd9{bottom:174.746667pt;}
.y57{bottom:175.386667pt;}
.y208{bottom:176.733333pt;}
.ye7{bottom:178.266667pt;}
.ya1{bottom:179.066667pt;}
.y1c4{bottom:183.066667pt;}
.y19a{bottom:184.320000pt;}
.ycd{bottom:185.786667pt;}
.y1e9{bottom:186.333333pt;}
.yab{bottom:186.586667pt;}
.yfd{bottom:191.386667pt;}
.ydd{bottom:193.466667pt;}
.y105{bottom:194.266667pt;}
.y207{bottom:194.333333pt;}
.y199{bottom:194.880000pt;}
.y3d{bottom:203.546667pt;}
.y95{bottom:203.866667pt;}
.y198{bottom:205.440000pt;}
.y6a{bottom:205.786667pt;}
.yd8{bottom:205.946667pt;}
.y56{bottom:206.586667pt;}
.ye6{bottom:209.466667pt;}
.y7d{bottom:209.626667pt;}
.ya0{bottom:210.266667pt;}
.yfa{bottom:210.906667pt;}
.y206{bottom:211.973333pt;}
.yb8{bottom:212.186667pt;}
.y1e8{bottom:212.733333pt;}
.yc{bottom:215.226667pt;}
.y197{bottom:216.000000pt;}
.yfc{bottom:216.666667pt;}
.ycc{bottom:216.986667pt;}
.y8e{bottom:224.666667pt;}
.y104{bottom:225.466667pt;}
.y196{bottom:226.560000pt;}
.y205{bottom:229.573333pt;}
.yaa{bottom:233.786667pt;}
.y3c{bottom:234.746667pt;}
.y94{bottom:235.066667pt;}
.y69{bottom:236.986667pt;}
.y195{bottom:237.120000pt;}
.yd7{bottom:237.146667pt;}
.y1e7{bottom:239.133333pt;}
.ye5{bottom:240.666667pt;}
.y9f{bottom:241.466667pt;}
.yf9{bottom:242.106667pt;}
.yb7{bottom:243.386667pt;}
.y1c3{bottom:245.466667pt;}
.y204{bottom:247.173333pt;}
.y194{bottom:247.680000pt;}
.y161{bottom:248.026667pt;}
.ycb{bottom:248.186667pt;}
.y55{bottom:253.786667pt;}
.y8d{bottom:255.866667pt;}
.y103{bottom:256.666667pt;}
.yb{bottom:256.826667pt;}
.y193{bottom:258.240000pt;}
.y7c{bottom:263.546667pt;}
.y203{bottom:264.773333pt;}
.y1e6{bottom:265.533333pt;}
.y3b{bottom:265.946667pt;}
.y93{bottom:266.266667pt;}
.y192{bottom:268.800000pt;}
.ye4{bottom:271.866667pt;}
.y9e{bottom:272.666667pt;}
.yf8{bottom:273.306667pt;}
.yb6{bottom:274.586667pt;}
.y191{bottom:279.360000pt;}
.y131{bottom:282.026667pt;}
.ya9{bottom:282.266667pt;}
.y202{bottom:282.373333pt;}
.y68{bottom:284.186667pt;}
.yd6{bottom:284.346667pt;}
.y54{bottom:284.986667pt;}
.y8c{bottom:287.066667pt;}
.y102{bottom:287.866667pt;}
.y190{bottom:289.920000pt;}
.y15e{bottom:290.266667pt;}
.y1e5{bottom:291.933333pt;}
.y7b{bottom:294.266667pt;}
.yca{bottom:295.386667pt;}
.y3a{bottom:297.146667pt;}
.y92{bottom:297.466667pt;}
.y201{bottom:299.973333pt;}
.y18f{bottom:300.480000pt;}
.ye3{bottom:303.106667pt;}
.y9d{bottom:303.906667pt;}
.yf7{bottom:304.546667pt;}
.yb5{bottom:305.826667pt;}
.y130{bottom:306.986667pt;}
.y1c2{bottom:307.906667pt;}
.y18e{bottom:311.040000pt;}
.ya{bottom:313.506667pt;}
.y1fa{bottom:314.746667pt;}
.y53{bottom:316.226667pt;}
.y200{bottom:317.573333pt;}
.y8b{bottom:318.306667pt;}
.y101{bottom:319.106667pt;}
.y18d{bottom:321.600000pt;}
.yc9{bottom:326.626667pt;}
.y39{bottom:328.386667pt;}
.y91{bottom:328.706667pt;}
.y15c{bottom:330.946667pt;}
.y18c{bottom:332.160000pt;}
.y67{bottom:332.706667pt;}
.yd5{bottom:334.146667pt;}
.ye2{bottom:334.306667pt;}
.y12f{bottom:334.666667pt;}
.yf6{bottom:335.746667pt;}
.yb4{bottom:337.026667pt;}
.y7a{bottom:341.986667pt;}
.y18b{bottom:342.720000pt;}
.ya8{bottom:344.706667pt;}
.y209{bottom:345.026667pt;}
.y9c{bottom:347.266667pt;}
.y52{bottom:347.426667pt;}
.y8a{bottom:349.506667pt;}
.y100{bottom:350.306667pt;}
.y12e{bottom:352.906667pt;}
.y18a{bottom:353.280000pt;}
.y9{bottom:355.106667pt;}
.yc8{bottom:357.826667pt;}
.y38{bottom:359.586667pt;}
.y189{bottom:363.840000pt;}
.y66{bottom:363.906667pt;}
.ye1{bottom:365.506667pt;}
.yf5{bottom:366.946667pt;}
.yb3{bottom:368.226667pt;}
.y1c1{bottom:370.306667pt;}
.y12d{bottom:371.306667pt;}
.y15b{bottom:371.746667pt;}
.y79{bottom:373.186667pt;}
.y188{bottom:374.400000pt;}
.y90{bottom:374.946667pt;}
.ya7{bottom:375.906667pt;}
.y89{bottom:380.706667pt;}
.y1f7{bottom:381.440000pt;}
.yff{bottom:381.506667pt;}
.y187{bottom:384.960000pt;}
.yc7{bottom:389.026667pt;}
.y12c{bottom:390.026667pt;}
.y37{bottom:390.786667pt;}
.y1c0{bottom:391.106667pt;}
.y51{bottom:394.626667pt;}
.y65{bottom:395.106667pt;}
.y186{bottom:395.520000pt;}
.y8{bottom:396.706667pt;}
.yf4{bottom:398.146667pt;}
.yb2{bottom:399.426667pt;}
.y1e4{bottom:402.306667pt;}
.y78{bottom:404.386667pt;}
.y185{bottom:406.080000pt;}
.ya6{bottom:407.106667pt;}
.y1f6{bottom:407.866667pt;}
.y12b{bottom:408.426667pt;}
.y88{bottom:411.906667pt;}
.y24{bottom:412.706667pt;}
.y15a{bottom:413.986667pt;}
.y184{bottom:416.640000pt;}
.yc6{bottom:420.226667pt;}
.y36{bottom:421.986667pt;}
.y50{bottom:425.826667pt;}
.y1f9{bottom:425.853333pt;}
.y64{bottom:426.306667pt;}
.y12a{bottom:426.826667pt;}
.y183{bottom:427.200000pt;}
.ye0{bottom:427.906667pt;}
.yf3{bottom:429.346667pt;}
.y1bf{bottom:432.706667pt;}
.y1f5{bottom:434.266667pt;}
.y77{bottom:435.586667pt;}
.y182{bottom:437.760000pt;}
.ya5{bottom:438.306667pt;}
.y87{bottom:443.106667pt;}
.y23{bottom:443.906667pt;}
.y129{bottom:445.226667pt;}
.yb1{bottom:446.626667pt;}
.y181{bottom:448.320000pt;}
.yc5{bottom:451.426667pt;}
.y35{bottom:453.186667pt;}
.y1be{bottom:453.506667pt;}
.y159{bottom:454.626667pt;}
.y7{bottom:456.226667pt;}
.y4f{bottom:457.026667pt;}
.y63{bottom:457.506667pt;}
.y180{bottom:458.880000pt;}
.ydf{bottom:459.106667pt;}
.y1e3{bottom:459.773333pt;}
.y1f4{bottom:460.666667pt;}
.y128{bottom:463.626667pt;}
.y76{bottom:466.306667pt;}
.y17f{bottom:469.440000pt;}
.ya4{bottom:469.506667pt;}
.y86{bottom:474.306667pt;}
.y22{bottom:475.106667pt;}
.y157{bottom:476.066667pt;}
.y17e{bottom:480.000000pt;}
.y127{bottom:481.706667pt;}
.yc4{bottom:482.626667pt;}
.y34{bottom:484.386667pt;}
.y1e2{bottom:486.173333pt;}
.y1f3{bottom:487.066667pt;}
.y4e{bottom:488.226667pt;}
.y62{bottom:488.706667pt;}
.ydc{bottom:490.306667pt;}
.y17d{bottom:490.560000pt;}
.yf2{bottom:491.586667pt;}
.yb0{bottom:495.106667pt;}
.y6{bottom:497.826667pt;}
.y17c{bottom:501.120000pt;}
.y21{bottom:506.306667pt;}
.y126{bottom:510.986667pt;}
.y1d9{bottom:511.106667pt;}
.y17b{bottom:511.680000pt;}
.y1e1{bottom:512.573333pt;}
.y1f2{bottom:513.466667pt;}
.yc3{bottom:513.826667pt;}
.y75{bottom:513.986667pt;}
.y156{bottom:514.466667pt;}
.y33{bottom:515.586667pt;}
.y1bd{bottom:515.906667pt;}
.ya3{bottom:516.386667pt;}
.y4d{bottom:519.426667pt;}
.y61{bottom:519.906667pt;}
.yd4{bottom:520.706667pt;}
.y85{bottom:521.506667pt;}
.y17a{bottom:522.240000pt;}
.yaf{bottom:526.306667pt;}
.y125{bottom:531.786667pt;}
.y1d8{bottom:531.906667pt;}
.y179{bottom:532.800000pt;}
.y1bc{bottom:536.733333pt;}
.y20{bottom:537.533333pt;}
.y5{bottom:538.493333pt;}
.y1e0{bottom:538.973333pt;}
.y1f1{bottom:539.906667pt;}
.y178{bottom:543.360000pt;}
.yc2{bottom:545.053333pt;}
.y32{bottom:546.813333pt;}
.y4c{bottom:550.653333pt;}
.y155{bottom:551.293333pt;}
.yd3{bottom:551.933333pt;}
.y84{bottom:552.733333pt;}
.y177{bottom:553.920000pt;}
.yf1{bottom:555.293333pt;}
.y1bb{bottom:557.533333pt;}
.y124{bottom:561.386667pt;}
.y176{bottom:564.480000pt;}
.y1df{bottom:565.373333pt;}
.y1f0{bottom:566.306667pt;}
.y60{bottom:567.133333pt;}
.y74{bottom:567.933333pt;}
.y1f{bottom:568.733333pt;}
.y1d7{bottom:573.533333pt;}
.yae{bottom:573.693333pt;}
.y175{bottom:575.040000pt;}
.yc1{bottom:576.253333pt;}
.y31{bottom:578.013333pt;}
.y1ba{bottom:578.333333pt;}
.y4{bottom:580.093333pt;}
.y4b{bottom:581.853333pt;}
.y123{bottom:582.506667pt;}
.yd2{bottom:583.133333pt;}
.y83{bottom:583.933333pt;}
.y174{bottom:585.600000pt;}
.yf0{bottom:586.493333pt;}
.y152{bottom:589.373333pt;}
.y1f8{bottom:589.573333pt;}
.y1d6{bottom:594.333333pt;}
.y173{bottom:596.160000pt;}
.y5f{bottom:598.333333pt;}
.y73{bottom:599.133333pt;}
.y1e{bottom:599.933333pt;}
.y122{bottom:603.306667pt;}
.y172{bottom:606.720000pt;}
.y30{bottom:609.213333pt;}
.y4a{bottom:613.053333pt;}
.yd1{bottom:614.333333pt;}
.y82{bottom:615.133333pt;}
.y171{bottom:617.280000pt;}
.yef{bottom:617.693333pt;}
.y1b9{bottom:619.933333pt;}
.y3{bottom:622.653333pt;}
.yc0{bottom:623.453333pt;}
.y121{bottom:624.746667pt;}
.y1de{bottom:625.946667pt;}
.y170{bottom:627.840000pt;}
.y14f{bottom:628.093333pt;}
.y5e{bottom:629.533333pt;}
.y72{bottom:630.333333pt;}
.y1d{bottom:631.133333pt;}
.y1d5{bottom:635.933333pt;}
.y16f{bottom:638.400000pt;}
.y2f{bottom:640.413333pt;}
.y1b8{bottom:640.733333pt;}
.y49{bottom:644.253333pt;}
.y1dd{bottom:645.826667pt;}
.y120{bottom:646.026667pt;}
.y81{bottom:646.333333pt;}
.yee{bottom:648.893333pt;}
.y16e{bottom:648.960000pt;}
.ybf{bottom:654.653333pt;}
.y14e{bottom:655.773333pt;}
.y1d4{bottom:656.733333pt;}
.y16d{bottom:659.520000pt;}
.y71{bottom:661.533333pt;}
.y1c{bottom:662.333333pt;}
.y11f{bottom:666.826667pt;}
.y1dc{bottom:668.226667pt;}
.y16c{bottom:670.080000pt;}
.y2e{bottom:671.613333pt;}
.y48{bottom:675.453333pt;}
.y2{bottom:675.933333pt;}
.y5d{bottom:676.733333pt;}
.y80{bottom:677.533333pt;}
.yed{bottom:680.093333pt;}
.y16b{bottom:680.640000pt;}
.y1b7{bottom:682.333333pt;}
.ybe{bottom:685.853333pt;}
.y16a{bottom:691.200000pt;}
.yd0{bottom:692.733333pt;}
.y1b{bottom:693.533333pt;}
.y11e{bottom:696.266667pt;}
.y14b{bottom:698.013333pt;}
.y1d3{bottom:698.333333pt;}
.y9b{bottom:699.933333pt;}
.y169{bottom:701.760000pt;}
.y2d{bottom:702.813333pt;}
.y1b6{bottom:703.133333pt;}
.y47{bottom:706.653333pt;}
.y5c{bottom:707.933333pt;}
.y70{bottom:708.733333pt;}
.yec{bottom:711.293333pt;}
.y168{bottom:712.320000pt;}
.y11d{bottom:717.386667pt;}
.y1d2{bottom:719.133333pt;}
.y8f{bottom:721.373333pt;}
.ycf{bottom:723.933333pt;}
.y1a{bottom:724.733333pt;}
.y148{bottom:726.813333pt;}
.y9a{bottom:731.133333pt;}
.ybd{bottom:733.053333pt;}
.y2c{bottom:734.013333pt;}
.y11c{bottom:738.506667pt;}
.y6f{bottom:739.933333pt;}
.yeb{bottom:742.493333pt;}
.y1b5{bottom:744.733333pt;}
.y46{bottom:753.853333pt;}
.y5b{bottom:755.133333pt;}
.y146{bottom:755.293333pt;}
.y19{bottom:755.933333pt;}
.y11b{bottom:757.066667pt;}
.y1d1{bottom:760.733333pt;}
.y99{bottom:762.333333pt;}
.y2b{bottom:765.213333pt;}
.y1b4{bottom:765.533333pt;}
.y6e{bottom:771.133333pt;}
.yea{bottom:773.693333pt;}
.y11a{bottom:775.466667pt;}
.ybc{bottom:781.573333pt;}
.y144{bottom:783.333333pt;}
.y5a{bottom:786.373333pt;}
.y18{bottom:787.173333pt;}
.y98{bottom:793.573333pt;}
.y119{bottom:793.866667pt;}
.y2a{bottom:796.453333pt;}
.y45{bottom:802.373333pt;}
.y1b3{bottom:807.173333pt;}
.y118{bottom:812.266667pt;}
.ybb{bottom:812.773333pt;}
.y59{bottom:817.573333pt;}
.y17{bottom:818.373333pt;}
.y1d0{bottom:823.173333pt;}
.y142{bottom:825.573333pt;}
.ye9{bottom:826.853333pt;}
.y29{bottom:827.653333pt;}
.y1b2{bottom:827.973333pt;}
.y117{bottom:833.386667pt;}
.y44{bottom:833.573333pt;}
.y97{bottom:840.773333pt;}
.yba{bottom:843.973333pt;}
.y1b1{bottom:848.773333pt;}
.y16{bottom:849.573333pt;}
.y116{bottom:854.506667pt;}
.y28{bottom:858.853333pt;}
.y43{bottom:864.773333pt;}
.y13e{bottom:866.213333pt;}
.y1b0{bottom:869.573333pt;}
.y115{bottom:875.626667pt;}
.y15{bottom:880.773333pt;}
.yb9{bottom:882.693333pt;}
.y1cf{bottom:885.573333pt;}
.y96{bottom:889.253333pt;}
.y27{bottom:890.053333pt;}
.y1af{bottom:890.373333pt;}
.y114{bottom:894.186667pt;}
.y42{bottom:895.973333pt;}
.y1ce{bottom:906.373333pt;}
.y13c{bottom:908.453333pt;}
.y1ae{bottom:911.173333pt;}
.y14{bottom:911.973333pt;}
.y113{bottom:912.586667pt;}
.y26{bottom:921.253333pt;}
.y41{bottom:927.173333pt;}
.y112{bottom:930.986667pt;}
.y1ad{bottom:931.973333pt;}
.y13{bottom:943.173333pt;}
.y139{bottom:945.253333pt;}
.y1cd{bottom:947.973333pt;}
.y111{bottom:949.066667pt;}
.y25{bottom:952.453333pt;}
.y1ac{bottom:952.773333pt;}
.y40{bottom:958.373333pt;}
.y110{bottom:967.466667pt;}
.y1cc{bottom:968.773333pt;}
.y12{bottom:974.373333pt;}
.y137{bottom:981.733333pt;}
.y10f{bottom:985.546933pt;}
.y1cb{bottom:989.573333pt;}
.y1ab{bottom:999.013333pt;}
.y10e{bottom:1000.906933pt;}
.y1{bottom:1005.093333pt;}
.y11{bottom:1005.573333pt;}
.y1ca{bottom:1010.373333pt;}
.y10d{bottom:1016.266933pt;}
.y135{bottom:1019.360000pt;}
.y109{bottom:1063.466667pt;}
.h27{height:20.800000pt;}
.h22{height:27.040000pt;}
.h1f{height:27.232000pt;}
.h20{height:27.840000pt;}
.h21{height:28.160000pt;}
.h2c{height:29.148866pt;}
.ha{height:31.992188pt;}
.h14{height:34.181813pt;}
.h2d{height:34.181827pt;}
.h19{height:34.945312pt;}
.h28{height:35.390625pt;}
.h1a{height:35.680000pt;}
.h1c{height:36.160000pt;}
.h25{height:36.192000pt;}
.h24{height:37.440000pt;}
.h16{height:37.537500pt;}
.h26{height:37.600000pt;}
.h11{height:37.624687pt;}
.h18{height:37.632000pt;}
.h23{height:37.920000pt;}
.h1e{height:40.000000pt;}
.h29{height:40.032000pt;}
.h1d{height:41.600000pt;}
.h15{height:41.818186pt;}
.h2e{height:41.818202pt;}
.hd{height:42.866250pt;}
.h1b{height:43.031250pt;}
.h10{height:46.609688pt;}
.h17{height:47.200000pt;}
.h30{height:47.406250pt;}
.he{height:48.144375pt;}
.h9{height:52.785000pt;}
.h34{height:52.899750pt;}
.h8{height:53.158750pt;}
.hc{height:53.273750pt;}
.h35{height:53.274313pt;}
.h2f{height:54.222187pt;}
.h36{height:54.278750pt;}
.hb{height:54.397500pt;}
.h13{height:56.156250pt;}
.h12{height:56.843750pt;}
.h2{height:57.375000pt;}
.hf{height:57.781250pt;}
.h32{height:67.604062pt;}
.h33{height:67.719625pt;}
.h3{height:76.308750pt;}
.h4{height:76.849063pt;}
.h7{height:86.671875pt;}
.h5{height:86.859375pt;}
.h6{height:96.703437pt;}
.h31{height:720.000000pt;}
.h2a{height:793.760000pt;}
.h2b{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:34.181867pt;}
.w27{width:41.467733pt;}
.w16{width:43.040000pt;}
.w22{width:43.267200pt;}
.w12{width:43.360000pt;}
.w25{width:45.586400pt;}
.w28{width:51.145733pt;}
.w26{width:53.859600pt;}
.w1b{width:63.680000pt;}
.w14{width:64.000000pt;}
.w11{width:66.080000pt;}
.w1e{width:66.400000pt;}
.w20{width:66.720000pt;}
.wf{width:72.160000pt;}
.w18{width:72.640000pt;}
.w1d{width:83.360000pt;}
.w10{width:83.680000pt;}
.w13{width:107.552000pt;}
.w17{width:107.872000pt;}
.w7{width:125.312000pt;}
.we{width:125.632000pt;}
.w21{width:131.712000pt;}
.w9{width:132.032000pt;}
.w1f{width:151.226667pt;}
.wa{width:215.226667pt;}
.wb{width:215.546667pt;}
.w8{width:223.066667pt;}
.w19{width:282.306667pt;}
.w1a{width:283.906667pt;}
.wd{width:347.586667pt;}
.w1c{width:347.906667pt;}
.w15{width:348.706667pt;}
.wc{width:349.026667pt;}
.w6{width:696.933333pt;}
.w5{width:697.253333pt;}
.w3{width:793.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2a{width:1039.999985pt;}
.w29{width:1040.000000pt;}
.w23{width:1122.560000pt;}
.w24{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x20{left:6.880000pt;}
.x1c{left:8.727325pt;}
.x35{left:12.000000pt;}
.x26{left:14.720000pt;}
.x2b{left:21.600000pt;}
.x30{left:23.386667pt;}
.x37{left:25.920000pt;}
.x36{left:28.960000pt;}
.x2e{left:32.160000pt;}
.x38{left:33.600000pt;}
.x28{left:35.840000pt;}
.x2f{left:37.472000pt;}
.x1d{left:47.999988pt;}
.x3a{left:71.680000pt;}
.x3b{left:73.920000pt;}
.x39{left:75.720000pt;}
.x34{left:95.226667pt;}
.x24{left:107.560000pt;}
.x33{left:110.586667pt;}
.x22{left:111.720000pt;}
.x14{left:113.440000pt;}
.x45{left:117.759985pt;}
.x1{left:120.031988pt;}
.x8{left:123.711988pt;}
.x15{left:126.560000pt;}
.x46{left:131.743985pt;}
.x27{left:141.306667pt;}
.xe{left:144.026655pt;}
.x7{left:148.026655pt;}
.x17{left:155.040000pt;}
.x3e{left:172.026655pt;}
.x21{left:173.786667pt;}
.xd{left:176.026655pt;}
.x41{left:181.413318pt;}
.x43{left:182.693318pt;}
.xb{left:227.066655pt;}
.x29{left:246.786667pt;}
.x5{left:248.226655pt;}
.x31{left:249.986667pt;}
.x1e{left:257.026667pt;}
.x4{left:269.506655pt;}
.x32{left:272.066667pt;}
.x25{left:275.746667pt;}
.xa{left:281.506655pt;}
.x19{left:285.279333pt;}
.x16{left:291.839733pt;}
.x1f{left:298.146667pt;}
.x6{left:305.026655pt;}
.x1a{left:315.039333pt;}
.x9{left:323.746655pt;}
.x2a{left:330.786667pt;}
.x1b{left:381.280000pt;}
.x3f{left:383.718667pt;}
.x40{left:385.658667pt;}
.x11{left:388.706655pt;}
.xc{left:392.866655pt;}
.x3{left:396.866655pt;}
.x18{left:401.600000pt;}
.x42{left:438.719985pt;}
.x47{left:464.453318pt;}
.x23{left:529.853333pt;}
.x3d{left:540.715733pt;}
.x3c{left:546.256400pt;}
.x2c{left:573.213333pt;}
.x2{left:585.893322pt;}
.x13{left:619.973322pt;}
.xf{left:674.053322pt;}
.x2d{left:681.093333pt;}
.x12{left:684.133322pt;}
.x10{left:686.053322pt;}
.x44{left:707.039985pt;}
.x4a{left:708.133318pt;}
.x48{left:710.466651pt;}
.x4b{left:732.133318pt;}
.x49{left:794.879985pt;}
.x4c{left:808.666651pt;}
}




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