
    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_df7bde925d06e03fd297600a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2ef63fd27e4f3a260dd2a94c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_e17733d23e9b59db6b214700.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_9b89004e112ebe1495c2cb8d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_2aefbd87e591b91f3647ebfa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_efb7438376bfc1430f73a5aa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_356e63424e287968936ab731.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_d724cc9dd7a5b770110fba2e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_7fcf5250ea3f18853987da79.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_12f5ba79ee8b2e8cc5ed92b4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_9de2a22db3e26bba3f3292e6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.ma{transform:matrix(0.152707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152707,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.161011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161011,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.227127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227127,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.227732,0.000000,-0.075903,0.238199,0,0);-ms-transform:matrix(0.227732,0.000000,-0.075903,0.238199,0,0);-webkit-transform:matrix(0.227732,0.000000,-0.075903,0.238199,0,0);}
.m1f{transform:matrix(0.230389,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.230389,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230389,0.000001,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.230881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230881,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.231257,0.000000,-0.077078,0.237821,0,0);-ms-transform:matrix(0.231257,0.000000,-0.077078,0.237821,0,0);-webkit-transform:matrix(0.231257,0.000000,-0.077078,0.237821,0,0);}
.m16{transform:matrix(0.233387,0.000000,-0.077787,0.237590,0,0);-ms-transform:matrix(0.233387,0.000000,-0.077787,0.237590,0,0);-webkit-transform:matrix(0.233387,0.000000,-0.077787,0.237590,0,0);}
.m5{transform:matrix(0.237724,0.000000,-0.079233,0.237112,0,0);-ms-transform:matrix(0.237724,0.000000,-0.079233,0.237112,0,0);-webkit-transform:matrix(0.237724,0.000000,-0.079233,0.237112,0,0);}
.m13{transform:matrix(0.239014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239014,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240254,0.000000,-0.080077,0.236829,0,0);-ms-transform:matrix(0.240254,0.000000,-0.080077,0.236829,0,0);-webkit-transform:matrix(0.240254,0.000000,-0.080077,0.236829,0,0);}
.m17{transform:matrix(0.243099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243099,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.244423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244423,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.244444,0.000000,-0.081473,0.236352,0,0);-ms-transform:matrix(0.244444,0.000000,-0.081473,0.236352,0,0);-webkit-transform:matrix(0.244444,0.000000,-0.081473,0.236352,0,0);}
.m1b{transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244909,0.000000,-0.081628,0.236298,0,0);-ms-transform:matrix(0.244909,0.000000,-0.081628,0.236298,0,0);-webkit-transform:matrix(0.244909,0.000000,-0.081628,0.236298,0,0);}
.m8{transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248728,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);}
.m4{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251879,0.000000,-0.083951,0.235483,0,0);-ms-transform:matrix(0.251879,0.000000,-0.083951,0.235483,0,0);-webkit-transform:matrix(0.251879,0.000000,-0.083951,0.235483,0,0);}
.mb{transform:matrix(0.253616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253616,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258559,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.260814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260814,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.262993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262993,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.267407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267407,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-106.892833px;}
.v13{vertical-align:-82.800000px;}
.ve{vertical-align:-59.385623px;}
.v12{vertical-align:-57.589525px;}
.vd{vertical-align:-53.604322px;}
.v3{vertical-align:-49.289769px;}
.vb{vertical-align:-47.507209px;}
.v7{vertical-align:-42.638738px;}
.vc{vertical-align:-33.907940px;}
.v5{vertical-align:-26.984544px;}
.v8{vertical-align:-23.343321px;}
.v2{vertical-align:-22.134031px;}
.v10{vertical-align:-20.630929px;}
.v6{vertical-align:-19.147323px;}
.va{vertical-align:-13.438140px;}
.v11{vertical-align:-10.936226px;}
.v1{vertical-align:-5.940000px;}
.v4{vertical-align:-4.843380px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:82.587102px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.lsd{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.192000px;}
.ls15{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.408000px;}
.ls12{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.624000px;}
.ls10{letter-spacing:0.660000px;}
.ls5{letter-spacing:7.200000px;}
.ls1b{letter-spacing:8.204396px;}
.ls2c{letter-spacing:15.610285px;}
.ls21{letter-spacing:21.995610px;}
.ls11{letter-spacing:26.400000px;}
.ls52{letter-spacing:31.690665px;}
.ls22{letter-spacing:32.400000px;}
.ls4b{letter-spacing:33.044441px;}
.ls2e{letter-spacing:34.895501px;}
.ls49{letter-spacing:35.656356px;}
.ls24{letter-spacing:36.540000px;}
.ls51{letter-spacing:58.581578px;}
.ls4a{letter-spacing:58.704649px;}
.ls36{letter-spacing:58.929081px;}
.ls2f{letter-spacing:60.000000px;}
.ls45{letter-spacing:63.442834px;}
.ls17{letter-spacing:64.970143px;}
.ls4c{letter-spacing:65.098990px;}
.ls30{letter-spacing:67.907178px;}
.ls41{letter-spacing:73.903861px;}
.ls42{letter-spacing:74.088467px;}
.ls35{letter-spacing:77.453158px;}
.ls25{letter-spacing:77.804172px;}
.ls4f{letter-spacing:84.048000px;}
.ls37{letter-spacing:88.486180px;}
.ls3b{letter-spacing:92.681274px;}
.ls34{letter-spacing:94.641248px;}
.ls3c{letter-spacing:97.644041px;}
.ls1d{letter-spacing:98.261947px;}
.ls31{letter-spacing:101.932098px;}
.ls1e{letter-spacing:103.153696px;}
.ls2b{letter-spacing:111.047055px;}
.ls28{letter-spacing:111.053500px;}
.ls18{letter-spacing:118.897523px;}
.ls3a{letter-spacing:119.557555px;}
.ls26{letter-spacing:119.683557px;}
.ls4d{letter-spacing:120.703193px;}
.ls39{letter-spacing:121.168842px;}
.ls4e{letter-spacing:126.048000px;}
.ls1a{letter-spacing:140.520000px;}
.ls29{letter-spacing:140.686310px;}
.ls32{letter-spacing:147.298659px;}
.ls48{letter-spacing:154.831563px;}
.ls2d{letter-spacing:172.140000px;}
.ls2a{letter-spacing:183.186857px;}
.ls19{letter-spacing:186.033191px;}
.ls47{letter-spacing:192.171524px;}
.ls50{letter-spacing:194.400000px;}
.ls1c{letter-spacing:308.166698px;}
.ls20{letter-spacing:308.290109px;}
.ls44{letter-spacing:325.120537px;}
.ls43{letter-spacing:331.564587px;}
.ls16{letter-spacing:355.544367px;}
.ls40{letter-spacing:404.046528px;}
.ls3f{letter-spacing:409.331552px;}
.ls1f{letter-spacing:423.575119px;}
.ls38{letter-spacing:493.076416px;}
.ls27{letter-spacing:533.140007px;}
.ls3e{letter-spacing:537.138901px;}
.ls46{letter-spacing:646.978104px;}
.ls33{letter-spacing:681.639701px;}
.ls3d{letter-spacing:799.649909px;}
.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;}
}
.ws17{word-spacing:-94.715656px;}
.wsb{word-spacing:-72.000000px;}
.ws28{word-spacing:-22.170682px;}
.ws3c{word-spacing:-21.000000px;}
.wsf{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.192000px;}
.ws15{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wsc{word-spacing:-12.000000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws16{word-spacing:-0.039875px;}
.wse{word-spacing:0.000000px;}
.ws30{word-spacing:26.451243px;}
.ws38{word-spacing:29.799724px;}
.ws3b{word-spacing:30.171864px;}
.ws3a{word-spacing:39.264754px;}
.ws35{word-spacing:43.235022px;}
.ws34{word-spacing:46.591064px;}
.ws2e{word-spacing:49.599436px;}
.ws12{word-spacing:54.386716px;}
.ws37{word-spacing:56.067629px;}
.ws18{word-spacing:57.606839px;}
.ws2a{word-spacing:58.708267px;}
.ws2b{word-spacing:58.740266px;}
.ws1f{word-spacing:60.832657px;}
.ws27{word-spacing:61.666691px;}
.ws2f{word-spacing:67.700716px;}
.ws33{word-spacing:67.987584px;}
.ws24{word-spacing:69.988511px;}
.ws32{word-spacing:72.618444px;}
.ws2c{word-spacing:74.472963px;}
.ws2d{word-spacing:76.533621px;}
.ws23{word-spacing:91.688652px;}
.ws1e{word-spacing:93.121912px;}
.ws13{word-spacing:101.807073px;}
.ws31{word-spacing:108.394912px;}
.ws22{word-spacing:112.728682px;}
.ws21{word-spacing:114.056918px;}
.ws1d{word-spacing:114.425429px;}
.ws1c{word-spacing:115.767028px;}
.ws14{word-spacing:147.051982px;}
.ws20{word-spacing:196.338140px;}
.ws1b{word-spacing:199.204476px;}
.ws39{word-spacing:199.547730px;}
.ws36{word-spacing:233.853639px;}
.ws26{word-spacing:272.641379px;}
.ws25{word-spacing:280.671593px;}
.ws19{word-spacing:299.650353px;}
.ws1a{word-spacing:299.875812px;}
.ws29{word-spacing:313.756405px;}
.ws11{word-spacing:345.230534px;}
.ws10{word-spacing:345.526700px;}
._7b{margin-left:-297.467348px;}
._4e{margin-left:-257.454400px;}
._4d{margin-left:-205.723563px;}
._49{margin-left:-8.487099px;}
._4c{margin-left:-6.134957px;}
._39{margin-left:-5.112000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._11{width:2.076000px;}
._d{width:3.672000px;}
._e{width:4.680000px;}
._a{width:5.904000px;}
._b{width:7.470000px;}
._13{width:8.496000px;}
._6{width:9.504000px;}
._7{width:10.728000px;}
._1a{width:11.868000px;}
._5{width:13.032000px;}
._4{width:14.430000px;}
._f{width:15.450000px;}
._10{width:16.476000px;}
._44{width:19.080000px;}
._15{width:20.808000px;}
._12{width:21.816000px;}
._25{width:23.400000px;}
._45{width:24.540000px;}
._24{width:25.704000px;}
._26{width:27.648000px;}
._8{width:29.448000px;}
._9{width:30.672000px;}
._29{width:31.698000px;}
._1d{width:33.408000px;}
._1e{width:35.052000px;}
._28{width:36.360000px;}
._2f{width:37.452000px;}
._2d{width:38.736000px;}
._33{width:40.104000px;}
._1f{width:41.760000px;}
._20{width:43.416000px;}
._31{width:44.424000px;}
._32{width:45.576000px;}
._17{width:46.584000px;}
._18{width:47.880000px;}
._36{width:50.112000px;}
._37{width:51.408000px;}
._3a{width:52.776000px;}
._3b{width:53.928000px;}
._23{width:55.092000px;}
._22{width:56.148000px;}
._47{width:57.174000px;}
._3c{width:58.752000px;}
._3d{width:59.904000px;}
._2c{width:61.488000px;}
._46{width:62.568000px;}
._14{width:63.600000px;}
._2e{width:64.668000px;}
._2a{width:66.672000px;}
._2b{width:67.824000px;}
._30{width:69.408000px;}
._38{width:71.208000px;}
._50{width:72.294968px;}
._3f{width:74.088000px;}
._40{width:75.672000px;}
._c{width:77.064000px;}
._41{width:78.240000px;}
._3e{width:80.424000px;}
._34{width:81.576000px;}
._35{width:82.584000px;}
._16{width:83.808000px;}
._75{width:87.083449px;}
._52{width:88.415715px;}
._7d{width:90.360000px;}
._7e{width:91.512000px;}
._4f{width:94.827983px;}
._6e{width:96.727871px;}
._76{width:98.743778px;}
._42{width:102.168000px;}
._78{width:104.935141px;}
._71{width:108.128020px;}
._27{width:109.860000px;}
._7f{width:111.072000px;}
._57{width:112.375598px;}
._51{width:113.985665px;}
._7c{width:115.200000px;}
._19{width:117.216000px;}
._63{width:118.276880px;}
._58{width:119.511903px;}
._69{width:122.504318px;}
._48{width:130.770608px;}
._68{width:132.468490px;}
._6b{width:136.546066px;}
._43{width:140.112000px;}
._61{width:146.050099px;}
._56{width:149.234794px;}
._7a{width:153.545856px;}
._5f{width:157.159386px;}
._55{width:161.895778px;}
._54{width:169.612235px;}
._5a{width:172.327921px;}
._5d{width:179.440411px;}
._4a{width:182.002030px;}
._1b{width:183.816000px;}
._1c{width:184.824000px;}
._21{width:192.096000px;}
._79{width:194.916000px;}
._53{width:199.681894px;}
._62{width:207.743675px;}
._74{width:215.510263px;}
._5b{width:220.058727px;}
._5e{width:230.556077px;}
._65{width:233.369098px;}
._6d{width:235.560210px;}
._6a{width:243.031553px;}
._60{width:267.585703px;}
._59{width:293.968638px;}
._5c{width:299.024505px;}
._64{width:318.614364px;}
._70{width:344.404856px;}
._6c{width:347.314511px;}
._72{width:357.723701px;}
._80{width:378.936000px;}
._73{width:436.339141px;}
._67{width:537.104484px;}
._77{width:574.656412px;}
._6f{width:699.423806px;}
._4b{width:740.542694px;}
._66{width:994.336658px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs31{font-size:29.651573px;}
.fs1f{font-size:31.067041px;}
.fs1a{font-size:31.338547px;}
.fs26{font-size:32.421689px;}
.fsd{font-size:32.442042px;}
.fs21{font-size:32.642510px;}
.fsa{font-size:36.226910px;}
.fs12{font-size:39.875264px;}
.fs2f{font-size:40.981063px;}
.fs35{font-size:42.607842px;}
.fs2d{font-size:42.637115px;}
.fs1d{font-size:42.846325px;}
.fs14{font-size:43.008847px;}
.fs18{font-size:43.277394px;}
.fs10{font-size:44.151972px;}
.fs24{font-size:44.735150px;}
.fse{font-size:44.801281px;}
.fs22{font-size:45.078119px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:50.028046px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs16{font-size:68.743245px;}
.fs36{font-size:68.885534px;}
.fs13{font-size:69.027672px;}
.fs30{font-size:70.914861px;}
.fs5{font-size:72.000000px;}
.fs34{font-size:73.579566px;}
.fs2c{font-size:73.808684px;}
.fs1e{font-size:74.061916px;}
.fs2a{font-size:74.260766px;}
.fs15{font-size:74.408450px;}
.fs19{font-size:74.917065px;}
.fs32{font-size:75.026836px;}
.fs11{font-size:76.386140px;}
.fs25{font-size:77.470717px;}
.fs2e{font-size:77.588342px;}
.fs20{font-size:78.034283px;}
.fs29{font-size:78.094803px;}
.fs2b{font-size:78.139527px;}
.fs1b{font-size:79.083658px;}
.fsf{font-size:81.602103px;}
.fs27{font-size:81.944294px;}
.fs0{font-size:84.000000px;}
.fs9{font-size:86.603052px;}
.fsb{font-size:91.941989px;}
.fs33{font-size:106.297109px;}
.fs1c{font-size:112.372512px;}
.fs28{font-size:116.122289px;}
.fs23{font-size:122.206512px;}
.fs17{font-size:122.516953px;}
.fsc{font-size:129.901011px;}
.fs7{font-size:141.627839px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y83{bottom:3.601158px;}
.y142{bottom:3.681233px;}
.y9f{bottom:3.852651px;}
.yb1{bottom:3.852652px;}
.yaa{bottom:3.852653px;}
.y23{bottom:3.900000px;}
.y149{bottom:4.376983px;}
.y6d{bottom:4.453585px;}
.y78{bottom:4.453587px;}
.y147{bottom:4.737293px;}
.y92{bottom:4.737308px;}
.y14e{bottom:4.737322px;}
.y151{bottom:4.737323px;}
.y115{bottom:4.737326px;}
.y11b{bottom:4.774555px;}
.y87{bottom:4.863219px;}
.y12d{bottom:5.048245px;}
.ybc{bottom:5.388210px;}
.y7{bottom:5.400000px;}
.y10f{bottom:5.766309px;}
.ycb{bottom:5.766334px;}
.y106{bottom:5.860315px;}
.yb{bottom:6.000000px;}
.y84{bottom:6.505241px;}
.yc{bottom:6.750000px;}
.y95{bottom:7.473202px;}
.y124{bottom:7.701888px;}
.ybf{bottom:8.192854px;}
.yc4{bottom:8.340466px;}
.y13f{bottom:8.456058px;}
.y110{bottom:8.727227px;}
.ycc{bottom:8.727257px;}
.y148{bottom:8.822761px;}
.y146{bottom:9.549043px;}
.y118{bottom:9.549056px;}
.y93{bottom:9.549062px;}
.y116{bottom:9.549069px;}
.y114{bottom:9.549073px;}
.y117{bottom:9.549083px;}
.y14d{bottom:9.549102px;}
.y152{bottom:9.549108px;}
.y14f{bottom:9.549121px;}
.y11e{bottom:9.586440px;}
.y11c{bottom:9.586452px;}
.y11a{bottom:9.586456px;}
.y11d{bottom:9.586465px;}
.y88{bottom:9.802880px;}
.y90{bottom:10.235909px;}
.ybe{bottom:10.776181px;}
.y85{bottom:11.500390px;}
.y126{bottom:12.492493px;}
.y128{bottom:12.492514px;}
.y122{bottom:12.492526px;}
.y125{bottom:12.492528px;}
.ybb{bottom:12.990439px;}
.y127{bottom:13.524317px;}
.y10e{bottom:13.753238px;}
.yca{bottom:13.753263px;}
.ya4{bottom:13.951882px;}
.y12f{bottom:14.653444px;}
.yba{bottom:15.536939px;}
.yc3{bottom:15.536942px;}
.yc0{bottom:15.536950px;}
.y72{bottom:16.128157px;}
.yc2{bottom:16.348163px;}
.y10d{bottom:16.441133px;}
.yc9{bottom:16.441141px;}
.y111{bottom:16.441163px;}
.ycd{bottom:16.441202px;}
.ya9{bottom:16.794826px;}
.yb4{bottom:17.317795px;}
.y133{bottom:17.318101px;}
.y134{bottom:17.844381px;}
.y8f{bottom:17.956242px;}
.y141{bottom:18.115293px;}
.y105{bottom:18.167323px;}
.y9d{bottom:18.926769px;}
.y77{bottom:19.414558px;}
.y104{bottom:19.689987px;}
.ya{bottom:19.950000px;}
.y103{bottom:20.002588px;}
.y80{bottom:20.019097px;}
.y6{bottom:20.550000px;}
.y123{bottom:20.747132px;}
.yad{bottom:21.620218px;}
.ya2{bottom:21.620220px;}
.yaf{bottom:21.620227px;}
.y6b{bottom:21.879050px;}
.y12e{bottom:21.910043px;}
.ydb{bottom:22.113357px;}
.yed{bottom:22.113359px;}
.ye4{bottom:22.113360px;}
.y13e{bottom:22.853439px;}
.yb9{bottom:23.841081px;}
.yc1{bottom:23.841083px;}
.ybd{bottom:23.841124px;}
.y26{bottom:24.600000px;}
.y22{bottom:24.645000px;}
.y7b{bottom:24.992644px;}
.y70{bottom:24.992646px;}
.y7d{bottom:24.992650px;}
.y132{bottom:29.867868px;}
.y140{bottom:29.924582px;}
.y102{bottom:30.356715px;}
.y9{bottom:33.900000px;}
.y13d{bottom:34.662728px;}
.ye3{bottom:35.514431px;}
.y5{bottom:36.000000px;}
.y109{bottom:36.060668px;}
.y101{bottom:36.880816px;}
.yd1{bottom:38.092496px;}
.y100{bottom:38.600072px;}
.y131{bottom:39.929370px;}
.yff{bottom:40.514255px;}
.ye7{bottom:40.514260px;}
.ya8{bottom:41.744080px;}
.y130{bottom:43.470197px;}
.y12c{bottom:44.242268px;}
.yfe{bottom:44.851860px;}
.y21{bottom:45.345000px;}
.ya1{bottom:46.606426px;}
.yb3{bottom:46.606498px;}
.yac{bottom:46.606504px;}
.y76{bottom:48.255507px;}
.y9e{bottom:53.787508px;}
.yb0{bottom:53.787509px;}
.y6f{bottom:53.876369px;}
.y7e{bottom:53.876393px;}
.y7a{bottom:53.876397px;}
.yda{bottom:54.617847px;}
.yfd{bottom:54.658155px;}
.ya7{bottom:55.021636px;}
.yfc{bottom:57.197556px;}
.y3{bottom:57.637500px;}
.y6c{bottom:62.177542px;}
.yd9{bottom:62.548637px;}
.yec{bottom:62.548638px;}
.yfb{bottom:63.447733px;}
.y75{bottom:63.604170px;}
.ya3{bottom:63.887202px;}
.y20{bottom:66.045000px;}
.ya6{bottom:66.730301px;}
.y9c{bottom:68.899267px;}
.yb2{bottom:71.554139px;}
.yab{bottom:71.554150px;}
.ya0{bottom:71.554152px;}
.yae{bottom:71.554158px;}
.ydd{bottom:73.020416px;}
.y71{bottom:73.852648px;}
.yd8{bottom:74.816946px;}
.ye2{bottom:75.949739px;}
.y108{bottom:76.497558px;}
.y74{bottom:77.139228px;}
.y7f{bottom:77.743766px;}
.y6a{bottom:79.646519px;}
.yfa{bottom:80.951164px;}
.ye6{bottom:80.951171px;}
.ydc{bottom:80.951173px;}
.ye8{bottom:80.951180px;}
.y2{bottom:81.637500px;}
.yf9{bottom:82.045241px;}
.y79{bottom:82.715531px;}
.y6e{bottom:82.715532px;}
.y7c{bottom:82.715537px;}
.y1f{bottom:86.745000px;}
.yf8{bottom:89.740724px;}
.ya5{bottom:90.630526px;}
.yd7{bottom:92.164095px;}
.yeb{bottom:92.164096px;}
.yf7{bottom:94.390912px;}
.yf6{bottom:100.641089px;}
.ye1{bottom:100.641093px;}
.y73{bottom:104.767541px;}
.ye0{bottom:105.563557px;}
.y107{bottom:106.111406px;}
.yf5{bottom:106.931554px;}
.y1e{bottom:107.445000px;}
.yd0{bottom:108.143234px;}
.yf4{bottom:110.564992px;}
.ye5{bottom:110.564997px;}
.y3d{bottom:110.587500px;}
.yf3{bottom:112.986785px;}
.yf2{bottom:119.277244px;}
.yd6{bottom:124.668584px;}
.yf1{bottom:124.707281px;}
.y68{bottom:126.637500px;}
.yd5{bottom:129.160849px;}
.y14b{bottom:129.337500px;}
.ydf{bottom:131.154039px;}
.yf0{bottom:131.584268px;}
.y180{bottom:132.187500px;}
.y3c{bottom:134.437500px;}
.yef{bottom:137.052971px;}
.yea{bottom:141.508140px;}
.yde{bottom:141.508142px;}
.yd4{bottom:144.867683px;}
.yee{bottom:149.398666px;}
.y67{bottom:150.495000px;}
.y17f{bottom:152.895000px;}
.y14a{bottom:153.195000px;}
.yd3{bottom:157.213363px;}
.y3b{bottom:158.295000px;}
.y9a{bottom:158.580000px;}
.yd2{bottom:162.562830px;}
.ye9{bottom:162.562832px;}
.y17e{bottom:173.595000px;}
.y66{bottom:174.345000px;}
.y144{bottom:177.045000px;}
.y145{bottom:177.075000px;}
.y3a{bottom:181.995000px;}
.y99{bottom:182.430000px;}
.y17d{bottom:194.295000px;}
.y65{bottom:198.195000px;}
.y39{bottom:205.830000px;}
.y98{bottom:206.130000px;}
.y143{bottom:213.045000px;}
.y13c{bottom:213.075000px;}
.y17c{bottom:214.995000px;}
.y64{bottom:221.895000px;}
.y38{bottom:229.695000px;}
.y97{bottom:229.995000px;}
.y17b{bottom:238.545000px;}
.y63{bottom:245.745000px;}
.y37{bottom:253.380000px;}
.y96{bottom:253.695000px;}
.y94{bottom:253.725000px;}
.y17a{bottom:259.245000px;}
.y62{bottom:269.595000px;}
.y13b{bottom:271.995000px;}
.y1a7{bottom:276.045000px;}
.y36{bottom:277.245000px;}
.y179{bottom:279.945000px;}
.y91{bottom:283.995000px;}
.y8e{bottom:284.024980px;}
.y61{bottom:293.295000px;}
.y13a{bottom:295.845000px;}
.y178{bottom:300.630000px;}
.y35{bottom:301.080000px;}
.y60{bottom:317.130000px;}
.y139{bottom:319.695000px;}
.y8d{bottom:319.995000px;}
.y1a6{bottom:320.580000px;}
.y177{bottom:324.045000px;}
.y34{bottom:324.945000px;}
.y5f{bottom:340.995000px;}
.y1a5{bottom:341.295000px;}
.y138{bottom:343.395000px;}
.y8c{bottom:343.695000px;}
.y176{bottom:344.745000px;}
.y33{bottom:348.645000px;}
.y1a4{bottom:361.995000px;}
.y5e{bottom:364.695000px;}
.y175{bottom:365.445000px;}
.y137{bottom:367.245000px;}
.y8b{bottom:367.545000px;}
.y32{bottom:372.495000px;}
.y1a3{bottom:382.725000px;}
.y174{bottom:386.175000px;}
.y5d{bottom:388.575000px;}
.y136{bottom:391.125000px;}
.y8a{bottom:391.425000px;}
.y31{bottom:396.375000px;}
.y1a2{bottom:403.425000px;}
.y173{bottom:406.875000px;}
.y5c{bottom:412.425000px;}
.y135{bottom:414.825000px;}
.y89{bottom:415.125000px;}
.y30{bottom:420.075000px;}
.y1a1{bottom:426.975000px;}
.y172{bottom:430.425000px;}
.y5b{bottom:436.125000px;}
.y12b{bottom:438.675000px;}
.y86{bottom:438.974959px;}
.y82{bottom:438.975000px;}
.y2f{bottom:443.925000px;}
.y1a0{bottom:447.675000px;}
.y171{bottom:451.125000px;}
.y5a{bottom:459.975000px;}
.y2e{bottom:467.775000px;}
.y19f{bottom:468.375000px;}
.y170{bottom:471.825000px;}
.y69{bottom:476.924959px;}
.y81{bottom:476.925000px;}
.y59{bottom:483.825000px;}
.y19e{bottom:489.075000px;}
.y2d{bottom:491.475000px;}
.y16f{bottom:492.525000px;}
.y12a{bottom:501.675000px;}
.y58{bottom:507.525000px;}
.y19d{bottom:512.475000px;}
.y16e{bottom:513.225000px;}
.y2c{bottom:515.325000px;}
.y121{bottom:521.624959px;}
.y129{bottom:521.625000px;}
.y57{bottom:531.375000px;}
.y19c{bottom:533.175000px;}
.y16d{bottom:533.925000px;}
.y2b{bottom:539.175000px;}
.y19b{bottom:553.875000px;}
.y16c{bottom:554.625000px;}
.y56{bottom:555.225000px;}
.y120{bottom:562.575000px;}
.y2a{bottom:562.875000px;}
.y19a{bottom:574.575000px;}
.y16b{bottom:575.325000px;}
.y55{bottom:579.075000px;}
.y119{bottom:586.424959px;}
.y11f{bottom:586.425000px;}
.y29{bottom:586.725000px;}
.y199{bottom:595.275000px;}
.y16a{bottom:596.025000px;}
.y54{bottom:602.775000px;}
.y28{bottom:610.575000px;}
.y198{bottom:615.975000px;}
.y169{bottom:616.725000px;}
.y113{bottom:621.674959px;}
.y112{bottom:621.675000px;}
.y53{bottom:626.625000px;}
.y197{bottom:639.525000px;}
.y168{bottom:640.275000px;}
.y27{bottom:643.275000px;}
.y52{bottom:650.475000px;}
.y10c{bottom:656.924959px;}
.y10b{bottom:656.925000px;}
.y25{bottom:660.075000px;}
.y196{bottom:660.225000px;}
.y167{bottom:660.975000px;}
.y51{bottom:674.175000px;}
.y166{bottom:681.675000px;}
.y195{bottom:683.775000px;}
.y50{bottom:698.025000px;}
.ycf{bottom:699.974919px;}
.y10a{bottom:699.975000px;}
.y24{bottom:701.475000px;}
.y165{bottom:702.375000px;}
.y194{bottom:704.475000px;}
.y4f{bottom:721.875000px;}
.y1d{bottom:722.175000px;}
.y164{bottom:723.075000px;}
.y193{bottom:725.175000px;}
.y163{bottom:743.670000px;}
.y4e{bottom:745.620000px;}
.y192{bottom:745.920000px;}
.y191{bottom:769.320000px;}
.y4d{bottom:769.470000px;}
.y162{bottom:770.370000px;}
.y190{bottom:790.020000px;}
.y4c{bottom:793.320000px;}
.y161{bottom:794.205000px;}
.y18f{bottom:810.720000px;}
.y4b{bottom:817.020000px;}
.y160{bottom:817.920000px;}
.y18e{bottom:831.420000px;}
.y4a{bottom:840.870000px;}
.y15f{bottom:841.770000px;}
.y1c{bottom:850.020000px;}
.y18d{bottom:852.120000px;}
.y49{bottom:864.720000px;}
.y15e{bottom:865.620000px;}
.y1b{bottom:869.220000px;}
.y18c{bottom:875.670000px;}
.yce{bottom:881.820000px;}
.y48{bottom:888.420000px;}
.y15d{bottom:889.320000px;}
.y1a{bottom:889.920000px;}
.y18b{bottom:896.370000px;}
.yc8{bottom:905.474919px;}
.yc7{bottom:905.520000px;}
.y19{bottom:910.620000px;}
.y47{bottom:912.270000px;}
.y15c{bottom:913.170000px;}
.y18a{bottom:917.070000px;}
.y18{bottom:931.320000px;}
.y46{bottom:936.120000px;}
.y15b{bottom:937.020000px;}
.y189{bottom:937.770000px;}
.yc6{bottom:948.570000px;}
.y17{bottom:952.020000px;}
.y188{bottom:958.470000px;}
.y45{bottom:959.970000px;}
.y15a{bottom:960.720000px;}
.yb8{bottom:972.374919px;}
.yc5{bottom:972.420000px;}
.y16{bottom:972.720000px;}
.y187{bottom:979.170000px;}
.y44{bottom:983.670000px;}
.y159{bottom:984.570000px;}
.y15{bottom:993.420000px;}
.y186{bottom:999.870000px;}
.y43{bottom:1007.520000px;}
.y158{bottom:1008.420000px;}
.y14{bottom:1014.120000px;}
.yb7{bottom:1016.670000px;}
.y185{bottom:1023.270000px;}
.y42{bottom:1031.370000px;}
.y157{bottom:1032.120000px;}
.y13{bottom:1034.820000px;}
.yb6{bottom:1040.520000px;}
.y184{bottom:1043.970000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y156{bottom:1055.970000px;}
.y9b{bottom:1064.174919px;}
.yb5{bottom:1064.220000px;}
.y183{bottom:1064.670000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y155{bottom:1079.774919px;}
.y154{bottom:1079.820000px;}
.y182{bottom:1085.370000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y181{bottom:1106.100000px;}
.y153{bottom:1115.100000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y14c{bottom:1138.874919px;}
.y150{bottom:1138.950000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.he{height:20.700000px;}
.h29{height:23.250216px;}
.h6d{height:28.200077px;}
.h26{height:28.200097px;}
.h50{height:28.200117px;}
.h71{height:28.200158px;}
.h6e{height:28.949151px;}
.h23{height:28.949172px;}
.h20{height:28.949642px;}
.h61{height:29.086919px;}
.h3a{height:30.475432px;}
.h2f{height:30.741768px;}
.h1c{height:30.899693px;}
.h48{height:31.804283px;}
.h1d{height:31.824250px;}
.h41{height:32.020900px;}
.h58{height:34.050155px;}
.h15{height:35.537042px;}
.h4f{height:35.999548px;}
.h3f{height:35.999589px;}
.h37{height:37.199985px;}
.h65{height:37.959510px;}
.h24{height:39.115920px;}
.h3d{height:39.687246px;}
.h33{height:40.086531px;}
.h62{height:40.200662px;}
.h5f{height:40.220672px;}
.hf{height:41.400000px;}
.h4c{height:41.436806px;}
.h6a{height:41.796462px;}
.h5a{height:41.825177px;}
.h3b{height:42.030404px;}
.h38{height:42.051325px;}
.h27{height:42.189831px;}
.h30{height:42.453264px;}
.h2d{height:42.474395px;}
.h21{height:43.311188px;}
.h49{height:43.883260px;}
.h46{height:43.905103px;}
.h1e{height:43.948131px;}
.h42{height:44.219698px;}
.h6{height:45.300000px;}
.h19{height:46.339454px;}
.h3{height:48.600000px;}
.h16{height:49.075363px;}
.h13{height:49.099791px;}
.h68{height:52.048960px;}
.h10{height:52.066406px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h5e{height:55.950565px;}
.h4{height:58.886719px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h66{height:65.686275px;}
.h2a{height:67.467735px;}
.h70{height:67.573749px;}
.h6f{height:67.607385px;}
.h25{height:67.713180px;}
.h6c{height:68.154510px;}
.h5d{height:68.366735px;}
.h3e{height:68.601296px;}
.h57{height:68.785485px;}
.h53{height:68.922280px;}
.h34{height:69.393395px;}
.h64{height:69.495072px;}
.h63{height:69.564432px;}
.h60{height:69.599058px;}
.h73{height:70.628906px;}
.hb{height:70.664062px;}
.h4d{height:71.758765px;}
.h5c{height:71.867717px;}
.h6b{height:72.178393px;}
.h69{height:72.214320px;}
.h52{height:72.336837px;}
.h56{height:72.378263px;}
.h5b{height:72.403148px;}
.h59{height:72.439187px;}
.ha{height:72.562500px;}
.h3c{height:72.651557px;}
.h39{height:72.687721px;}
.h55{height:72.846620px;}
.h54{height:72.882880px;}
.h28{height:72.991492px;}
.h51{height:73.027825px;}
.h32{height:73.252783px;}
.h31{height:73.490422px;}
.h2e{height:73.527002px;}
.h22{height:74.931521px;}
.h1f{height:75.585541px;}
.h4b{height:75.902503px;}
.h4a{height:75.995445px;}
.h47{height:76.033272px;}
.h43{height:76.548279px;}
.h40{height:76.586381px;}
.h1a{height:80.217768px;}
.h2{height:82.441406px;}
.h17{height:84.953872px;}
.h14{height:84.996159px;}
.h18{height:85.163063px;}
.h72{height:86.338763px;}
.h67{height:98.459773px;}
.h2b{height:102.899204px;}
.h36{height:104.087234px;}
.h4e{height:107.560538px;}
.h45{height:113.196168px;}
.h2c{height:113.483721px;}
.h11{height:118.949949px;}
.h1b{height:120.323348px;}
.hd{height:124.237500px;}
.h12{height:131.185552px;}
.h44{height:174.760356px;}
.h35{height:186.674336px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w1c{width:18.000590px;}
.wc{width:18.000740px;}
.wb{width:19.950024px;}
.wa{width:30.899376px;}
.w19{width:39.750123px;}
.w1b{width:41.248873px;}
.wd{width:52.048495px;}
.w13{width:64.950542px;}
.w11{width:64.950583px;}
.we{width:73.949088px;}
.w14{width:73.950787px;}
.w15{width:79.050505px;}
.w1a{width:126.003403px;}
.w6{width:178.350000px;}
.w18{width:187.655198px;}
.w16{width:192.891989px;}
.w5{width:262.995000px;}
.w9{width:279.001864px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w17{width:299.087351px;}
.wf{width:305.996491px;}
.w12{width:324.158345px;}
.w10{width:358.063133px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:3.090828px;}
.x38{left:5.066351px;}
.x4{left:6.900000px;}
.x70{left:8.899628px;}
.x36{left:11.365155px;}
.x9{left:12.435000px;}
.x26{left:14.392815px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.x4e{left:24.154597px;}
.x53{left:25.244920px;}
.x7e{left:26.662491px;}
.x4a{left:27.968971px;}
.x2e{left:28.970267px;}
.x5a{left:30.509431px;}
.xb{left:32.100000px;}
.x50{left:36.058803px;}
.x5f{left:37.723503px;}
.x3{left:42.599987px;}
.x2f{left:48.483419px;}
.x43{left:51.321273px;}
.x6e{left:52.408682px;}
.x3d{left:56.318202px;}
.x25{left:57.339679px;}
.x79{left:58.456058px;}
.x30{left:60.107388px;}
.x21{left:63.430152px;}
.x65{left:64.443399px;}
.x3b{left:66.081976px;}
.x2d{left:68.458180px;}
.x46{left:74.105520px;}
.x1f{left:75.284916px;}
.x63{left:79.476450px;}
.x2b{left:85.064382px;}
.x20{left:86.956572px;}
.x68{left:89.793473px;}
.x41{left:92.007090px;}
.x76{left:94.226226px;}
.x1c{left:95.699987px;}
.x2c{left:96.736037px;}
.x5d{left:97.774107px;}
.x71{left:99.112081px;}
.x10{left:100.499987px;}
.x59{left:103.053437px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x27{left:111.497748px;}
.x37{left:113.699987px;}
.x22{left:116.109943px;}
.x24{left:118.463734px;}
.x4b{left:119.523784px;}
.x6{left:121.687500px;}
.x28{left:124.321490px;}
.x66{left:125.340572px;}
.x48{left:126.373616px;}
.xa{left:128.130000px;}
.x3e{left:131.824368px;}
.x67{left:134.932660px;}
.x2a{left:135.947367px;}
.x77{left:136.989176px;}
.x5e{left:139.970365px;}
.x3c{left:141.588142px;}
.x5c{left:142.629997px;}
.x62{left:143.636544px;}
.x80{left:145.124990px;}
.x49{left:147.151551px;}
.x47{left:149.649245px;}
.x74{left:154.136614px;}
.x55{left:158.467966px;}
.x44{left:161.801154px;}
.x81{left:163.094987px;}
.x42{left:167.544555px;}
.x3a{left:169.679987px;}
.x40{left:175.165903px;}
.x7f{left:177.179987px;}
.x32{left:179.024980px;}
.x39{left:180.779987px;}
.x45{left:181.895227px;}
.x64{left:187.692539px;}
.x75{left:194.356561px;}
.x23{left:198.545866px;}
.x33{left:209.894987px;}
.x34{left:220.724980px;}
.x58{left:228.153998px;}
.x35{left:240.644987px;}
.x4f{left:246.960337px;}
.x4d{left:252.994216px;}
.x5b{left:269.065399px;}
.x57{left:276.064495px;}
.x61{left:278.080906px;}
.x73{left:286.739609px;}
.x3f{left:298.844610px;}
.x60{left:302.227795px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x56{left:308.560313px;}
.x31{left:374.744987px;}
.x12{left:401.324987px;}
.x13{left:417.974987px;}
.x1e{left:457.274987px;}
.x1d{left:510.374987px;}
.x17{left:534.974987px;}
.x6f{left:536.324987px;}
.x11{left:545.024987px;}
.x6a{left:557.474959px;}
.x7b{left:577.874959px;}
.x7c{left:617.624987px;}
.x6b{left:622.424987px;}
.xc{left:625.425000px;}
.x6c{left:633.974959px;}
.x19{left:650.669987px;}
.x15{left:686.654987px;}
.x7a{left:698.069987px;}
.x72{left:703.319987px;}
.x6d{left:707.954987px;}
.x18{left:712.604987px;}
.xf{left:713.655000px;}
.x52{left:729.674919px;}
.x14{left:749.069987px;}
.x7d{left:759.254987px;}
.x69{left:781.469987px;}
.x54{left:794.654987px;}
.x78{left:809.504987px;}
.x51{left:815.369987px;}
.x4c{left:816.404987px;}
.x2{left:829.619987px;}
.x16{left:850.619987px;}
@media print{
.vf{vertical-align:-95.015851pt;}
.v13{vertical-align:-73.600000pt;}
.ve{vertical-align:-52.787221pt;}
.v12{vertical-align:-51.190688pt;}
.vd{vertical-align:-47.648287pt;}
.v3{vertical-align:-43.813128pt;}
.vb{vertical-align:-42.228631pt;}
.v7{vertical-align:-37.901101pt;}
.vc{vertical-align:-30.140392pt;}
.v5{vertical-align:-23.986261pt;}
.v8{vertical-align:-20.749618pt;}
.v2{vertical-align:-19.674694pt;}
.v10{vertical-align:-18.338604pt;}
.v6{vertical-align:-17.019843pt;}
.va{vertical-align:-11.945014pt;}
.v11{vertical-align:-9.721090pt;}
.v1{vertical-align:-5.280000pt;}
.v4{vertical-align:-4.305226pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:73.410757pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.lsd{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.170667pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.362667pt;}
.ls12{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.554667pt;}
.ls10{letter-spacing:0.586667pt;}
.ls5{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.292796pt;}
.ls2c{letter-spacing:13.875809pt;}
.ls21{letter-spacing:19.551653pt;}
.ls11{letter-spacing:23.466667pt;}
.ls52{letter-spacing:28.169480pt;}
.ls22{letter-spacing:28.800000pt;}
.ls4b{letter-spacing:29.372836pt;}
.ls2e{letter-spacing:31.018223pt;}
.ls49{letter-spacing:31.694539pt;}
.ls24{letter-spacing:32.480000pt;}
.ls51{letter-spacing:52.072514pt;}
.ls4a{letter-spacing:52.181910pt;}
.ls36{letter-spacing:52.381405pt;}
.ls2f{letter-spacing:53.333333pt;}
.ls45{letter-spacing:56.393630pt;}
.ls17{letter-spacing:57.751238pt;}
.ls4c{letter-spacing:57.865769pt;}
.ls30{letter-spacing:60.361936pt;}
.ls41{letter-spacing:65.692321pt;}
.ls42{letter-spacing:65.856415pt;}
.ls35{letter-spacing:68.847251pt;}
.ls25{letter-spacing:69.159264pt;}
.ls4f{letter-spacing:74.709333pt;}
.ls37{letter-spacing:78.654382pt;}
.ls3b{letter-spacing:82.383355pt;}
.ls34{letter-spacing:84.125553pt;}
.ls3c{letter-spacing:86.794703pt;}
.ls1d{letter-spacing:87.343953pt;}
.ls31{letter-spacing:90.606310pt;}
.ls1e{letter-spacing:91.692174pt;}
.ls2b{letter-spacing:98.708493pt;}
.ls28{letter-spacing:98.714222pt;}
.ls18{letter-spacing:105.686687pt;}
.ls3a{letter-spacing:106.273382pt;}
.ls26{letter-spacing:106.385384pt;}
.ls4d{letter-spacing:107.291727pt;}
.ls39{letter-spacing:107.705638pt;}
.ls4e{letter-spacing:112.042667pt;}
.ls1a{letter-spacing:124.906667pt;}
.ls29{letter-spacing:125.054498pt;}
.ls32{letter-spacing:130.932141pt;}
.ls48{letter-spacing:137.628056pt;}
.ls2d{letter-spacing:153.013333pt;}
.ls2a{letter-spacing:162.832762pt;}
.ls19{letter-spacing:165.362837pt;}
.ls47{letter-spacing:170.819132pt;}
.ls50{letter-spacing:172.800000pt;}
.ls1c{letter-spacing:273.925954pt;}
.ls20{letter-spacing:274.035653pt;}
.ls44{letter-spacing:288.996033pt;}
.ls43{letter-spacing:294.724077pt;}
.ls16{letter-spacing:316.039437pt;}
.ls40{letter-spacing:359.152470pt;}
.ls3f{letter-spacing:363.850269pt;}
.ls1f{letter-spacing:376.511217pt;}
.ls38{letter-spacing:438.290147pt;}
.ls27{letter-spacing:473.902228pt;}
.ls3e{letter-spacing:477.456801pt;}
.ls46{letter-spacing:575.091648pt;}
.ls33{letter-spacing:605.901957pt;}
.ls3d{letter-spacing:710.799919pt;}
.ws17{word-spacing:-84.191694pt;}
.wsb{word-spacing:-64.000000pt;}
.ws28{word-spacing:-19.707273pt;}
.ws3c{word-spacing:-18.666667pt;}
.wsf{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.170667pt;}
.ws15{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wsc{word-spacing:-10.666667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws16{word-spacing:-0.035445pt;}
.wse{word-spacing:0.000000pt;}
.ws30{word-spacing:23.512216pt;}
.ws38{word-spacing:26.488644pt;}
.ws3b{word-spacing:26.819435pt;}
.ws3a{word-spacing:34.902004pt;}
.ws35{word-spacing:38.431130pt;}
.ws34{word-spacing:41.414279pt;}
.ws2e{word-spacing:44.088387pt;}
.ws12{word-spacing:48.343748pt;}
.ws37{word-spacing:49.837893pt;}
.ws18{word-spacing:51.206079pt;}
.ws2a{word-spacing:52.185126pt;}
.ws2b{word-spacing:52.213569pt;}
.ws1f{word-spacing:54.073473pt;}
.ws27{word-spacing:54.814836pt;}
.ws2f{word-spacing:60.178415pt;}
.ws33{word-spacing:60.433408pt;}
.ws24{word-spacing:62.212010pt;}
.ws32{word-spacing:64.549728pt;}
.ws2c{word-spacing:66.198189pt;}
.ws2d{word-spacing:68.029885pt;}
.ws23{word-spacing:81.501024pt;}
.ws1e{word-spacing:82.775033pt;}
.ws13{word-spacing:90.495176pt;}
.ws31{word-spacing:96.351033pt;}
.ws22{word-spacing:100.203273pt;}
.ws21{word-spacing:101.383927pt;}
.ws1d{word-spacing:101.711492pt;}
.ws1c{word-spacing:102.904025pt;}
.ws14{word-spacing:130.712873pt;}
.ws20{word-spacing:174.522791pt;}
.ws1b{word-spacing:177.070645pt;}
.ws39{word-spacing:177.375760pt;}
.ws36{word-spacing:207.869902pt;}
.ws26{word-spacing:242.347892pt;}
.ws25{word-spacing:249.485860pt;}
.ws19{word-spacing:266.355870pt;}
.ws1a{word-spacing:266.556277pt;}
.ws29{word-spacing:278.894583pt;}
.ws11{word-spacing:306.871586pt;}
.ws10{word-spacing:307.134845pt;}
._7b{margin-left:-264.415420pt;}
._4e{margin-left:-228.848356pt;}
._4d{margin-left:-182.865389pt;}
._49{margin-left:-7.544088pt;}
._4c{margin-left:-5.453295pt;}
._39{margin-left:-4.544000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._11{width:1.845333pt;}
._d{width:3.264000pt;}
._e{width:4.160000pt;}
._a{width:5.248000pt;}
._b{width:6.640000pt;}
._13{width:7.552000pt;}
._6{width:8.448000pt;}
._7{width:9.536000pt;}
._1a{width:10.549333pt;}
._5{width:11.584000pt;}
._4{width:12.826667pt;}
._f{width:13.733333pt;}
._10{width:14.645333pt;}
._44{width:16.960000pt;}
._15{width:18.496000pt;}
._12{width:19.392000pt;}
._25{width:20.800000pt;}
._45{width:21.813333pt;}
._24{width:22.848000pt;}
._26{width:24.576000pt;}
._8{width:26.176000pt;}
._9{width:27.264000pt;}
._29{width:28.176000pt;}
._1d{width:29.696000pt;}
._1e{width:31.157333pt;}
._28{width:32.320000pt;}
._2f{width:33.290667pt;}
._2d{width:34.432000pt;}
._33{width:35.648000pt;}
._1f{width:37.120000pt;}
._20{width:38.592000pt;}
._31{width:39.488000pt;}
._32{width:40.512000pt;}
._17{width:41.408000pt;}
._18{width:42.560000pt;}
._36{width:44.544000pt;}
._37{width:45.696000pt;}
._3a{width:46.912000pt;}
._3b{width:47.936000pt;}
._23{width:48.970667pt;}
._22{width:49.909333pt;}
._47{width:50.821333pt;}
._3c{width:52.224000pt;}
._3d{width:53.248000pt;}
._2c{width:54.656000pt;}
._46{width:55.616000pt;}
._14{width:56.533333pt;}
._2e{width:57.482667pt;}
._2a{width:59.264000pt;}
._2b{width:60.288000pt;}
._30{width:61.696000pt;}
._38{width:63.296000pt;}
._50{width:64.262194pt;}
._3f{width:65.856000pt;}
._40{width:67.264000pt;}
._c{width:68.501333pt;}
._41{width:69.546667pt;}
._3e{width:71.488000pt;}
._34{width:72.512000pt;}
._35{width:73.408000pt;}
._16{width:74.496000pt;}
._75{width:77.407511pt;}
._52{width:78.591747pt;}
._7d{width:80.320000pt;}
._7e{width:81.344000pt;}
._4f{width:84.291541pt;}
._6e{width:85.980329pt;}
._76{width:87.772247pt;}
._42{width:90.816000pt;}
._78{width:93.275681pt;}
._71{width:96.113796pt;}
._27{width:97.653333pt;}
._7f{width:98.730667pt;}
._57{width:99.889420pt;}
._51{width:101.320592pt;}
._7c{width:102.400000pt;}
._19{width:104.192000pt;}
._63{width:105.135005pt;}
._58{width:106.232802pt;}
._69{width:108.892727pt;}
._48{width:116.240540pt;}
._68{width:117.749769pt;}
._6b{width:121.374281pt;}
._43{width:124.544000pt;}
._61{width:129.822310pt;}
._56{width:132.653150pt;}
._7a{width:136.485205pt;}
._5f{width:139.697232pt;}
._55{width:143.907358pt;}
._54{width:150.766431pt;}
._5a{width:153.180374pt;}
._5d{width:159.502587pt;}
._4a{width:161.779582pt;}
._1b{width:163.392000pt;}
._1c{width:164.288000pt;}
._21{width:170.752000pt;}
._79{width:173.258667pt;}
._53{width:177.495017pt;}
._62{width:184.661045pt;}
._74{width:191.564678pt;}
._5b{width:195.607757pt;}
._5e{width:204.938735pt;}
._65{width:207.439198pt;}
._6d{width:209.386853pt;}
._6a{width:216.028047pt;}
._60{width:237.853959pt;}
._59{width:261.305456pt;}
._5c{width:265.799560pt;}
._64{width:283.212768pt;}
._70{width:306.137649pt;}
._6c{width:308.724010pt;}
._72{width:317.976623pt;}
._80{width:336.832000pt;}
._73{width:387.857014pt;}
._67{width:477.426208pt;}
._77{width:510.805700pt;}
._6f{width:621.710050pt;}
._4b{width:658.260173pt;}
._66{width:883.854807pt;}
.fs31{font-size:26.356954pt;}
.fs1f{font-size:27.615147pt;}
.fs1a{font-size:27.856486pt;}
.fs26{font-size:28.819279pt;}
.fsd{font-size:28.837371pt;}
.fs21{font-size:29.015564pt;}
.fsa{font-size:32.201698pt;}
.fs12{font-size:35.444679pt;}
.fs2f{font-size:36.427612pt;}
.fs35{font-size:37.873637pt;}
.fs2d{font-size:37.899657pt;}
.fs1d{font-size:38.085623pt;}
.fs14{font-size:38.230086pt;}
.fs18{font-size:38.468794pt;}
.fs10{font-size:39.246198pt;}
.fs24{font-size:39.764578pt;}
.fse{font-size:39.823361pt;}
.fs22{font-size:40.069439pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:44.469374pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs16{font-size:61.105106pt;}
.fs36{font-size:61.231586pt;}
.fs13{font-size:61.357930pt;}
.fs30{font-size:63.035432pt;}
.fs5{font-size:64.000000pt;}
.fs34{font-size:65.404059pt;}
.fs2c{font-size:65.607719pt;}
.fs1e{font-size:65.832814pt;}
.fs2a{font-size:66.009569pt;}
.fs15{font-size:66.140845pt;}
.fs19{font-size:66.592947pt;}
.fs32{font-size:66.690521pt;}
.fs11{font-size:67.898791pt;}
.fs25{font-size:68.862860pt;}
.fs2e{font-size:68.967415pt;}
.fs20{font-size:69.363807pt;}
.fs29{font-size:69.417603pt;}
.fs2b{font-size:69.457357pt;}
.fs1b{font-size:70.296585pt;}
.fsf{font-size:72.535202pt;}
.fs27{font-size:72.839373pt;}
.fs0{font-size:74.666667pt;}
.fs9{font-size:76.980490pt;}
.fsb{font-size:81.726212pt;}
.fs33{font-size:94.486319pt;}
.fs1c{font-size:99.886678pt;}
.fs28{font-size:103.219813pt;}
.fs23{font-size:108.628011pt;}
.fs17{font-size:108.903958pt;}
.fsc{font-size:115.467565pt;}
.fs7{font-size:125.891412pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y83{bottom:3.201029pt;}
.y142{bottom:3.272207pt;}
.y9f{bottom:3.424578pt;}
.yb1{bottom:3.424580pt;}
.yaa{bottom:3.424581pt;}
.y23{bottom:3.466667pt;}
.y149{bottom:3.890652pt;}
.y6d{bottom:3.958742pt;}
.y78{bottom:3.958744pt;}
.y147{bottom:4.210927pt;}
.y92{bottom:4.210940pt;}
.y14e{bottom:4.210953pt;}
.y151{bottom:4.210954pt;}
.y115{bottom:4.210957pt;}
.y11b{bottom:4.244049pt;}
.y87{bottom:4.322862pt;}
.y12d{bottom:4.487329pt;}
.ybc{bottom:4.789520pt;}
.y7{bottom:4.800000pt;}
.y10f{bottom:5.125608pt;}
.ycb{bottom:5.125630pt;}
.y106{bottom:5.209169pt;}
.yb{bottom:5.333333pt;}
.y84{bottom:5.782436pt;}
.yc{bottom:6.000000pt;}
.y95{bottom:6.642847pt;}
.y124{bottom:6.846123pt;}
.ybf{bottom:7.282537pt;}
.yc4{bottom:7.413748pt;}
.y13f{bottom:7.516496pt;}
.y110{bottom:7.757535pt;}
.ycc{bottom:7.757562pt;}
.y148{bottom:7.842454pt;}
.y146{bottom:8.488039pt;}
.y118{bottom:8.488050pt;}
.y93{bottom:8.488055pt;}
.y116{bottom:8.488061pt;}
.y114{bottom:8.488065pt;}
.y117{bottom:8.488073pt;}
.y14d{bottom:8.488091pt;}
.y152{bottom:8.488096pt;}
.y14f{bottom:8.488107pt;}
.y11e{bottom:8.521280pt;}
.y11c{bottom:8.521291pt;}
.y11a{bottom:8.521294pt;}
.y11d{bottom:8.521302pt;}
.y88{bottom:8.713671pt;}
.y90{bottom:9.098586pt;}
.ybe{bottom:9.578828pt;}
.y85{bottom:10.222569pt;}
.y126{bottom:11.104438pt;}
.y128{bottom:11.104457pt;}
.y122{bottom:11.104468pt;}
.y125{bottom:11.104469pt;}
.ybb{bottom:11.547057pt;}
.y127{bottom:12.021615pt;}
.y10e{bottom:12.225101pt;}
.yca{bottom:12.225123pt;}
.ya4{bottom:12.401673pt;}
.y12f{bottom:13.025283pt;}
.yba{bottom:13.810612pt;}
.yc3{bottom:13.810615pt;}
.yc0{bottom:13.810622pt;}
.y72{bottom:14.336139pt;}
.yc2{bottom:14.531701pt;}
.y10d{bottom:14.614340pt;}
.yc9{bottom:14.614348pt;}
.y111{bottom:14.614367pt;}
.ycd{bottom:14.614402pt;}
.ya9{bottom:14.928735pt;}
.yb4{bottom:15.393595pt;}
.y133{bottom:15.393867pt;}
.y134{bottom:15.861672pt;}
.y8f{bottom:15.961104pt;}
.y141{bottom:16.102483pt;}
.y105{bottom:16.148731pt;}
.y9d{bottom:16.823794pt;}
.y77{bottom:17.257385pt;}
.y104{bottom:17.502211pt;}
.ya{bottom:17.733333pt;}
.y103{bottom:17.780078pt;}
.y80{bottom:17.794753pt;}
.y6{bottom:18.266667pt;}
.y123{bottom:18.441895pt;}
.yad{bottom:19.217972pt;}
.ya2{bottom:19.217973pt;}
.yaf{bottom:19.217979pt;}
.y6b{bottom:19.448045pt;}
.y12e{bottom:19.475594pt;}
.ydb{bottom:19.656318pt;}
.yed{bottom:19.656319pt;}
.ye4{bottom:19.656320pt;}
.y13e{bottom:20.314168pt;}
.yb9{bottom:21.192072pt;}
.yc1{bottom:21.192074pt;}
.ybd{bottom:21.192110pt;}
.y26{bottom:21.866667pt;}
.y22{bottom:21.906667pt;}
.y7b{bottom:22.215684pt;}
.y70{bottom:22.215685pt;}
.y7d{bottom:22.215689pt;}
.y132{bottom:26.549216pt;}
.y140{bottom:26.599628pt;}
.y102{bottom:26.983747pt;}
.y9{bottom:30.133333pt;}
.y13d{bottom:30.811314pt;}
.ye3{bottom:31.568383pt;}
.y5{bottom:32.000000pt;}
.y109{bottom:32.053927pt;}
.y101{bottom:32.782948pt;}
.yd1{bottom:33.859997pt;}
.y100{bottom:34.311175pt;}
.y131{bottom:35.492773pt;}
.yff{bottom:36.012671pt;}
.ye7{bottom:36.012675pt;}
.ya8{bottom:37.105849pt;}
.y130{bottom:38.640175pt;}
.y12c{bottom:39.326460pt;}
.yfe{bottom:39.868320pt;}
.y21{bottom:40.306667pt;}
.ya1{bottom:41.427934pt;}
.yb3{bottom:41.427998pt;}
.yac{bottom:41.428004pt;}
.y76{bottom:42.893784pt;}
.y9e{bottom:47.811118pt;}
.yb0{bottom:47.811119pt;}
.y6f{bottom:47.890105pt;}
.y7e{bottom:47.890127pt;}
.y7a{bottom:47.890131pt;}
.yda{bottom:48.549197pt;}
.yfd{bottom:48.585026pt;}
.ya7{bottom:48.908121pt;}
.yfc{bottom:50.842272pt;}
.y3{bottom:51.233333pt;}
.y6c{bottom:55.268926pt;}
.yd9{bottom:55.598788pt;}
.yec{bottom:55.598789pt;}
.yfb{bottom:56.397985pt;}
.y75{bottom:56.537040pt;}
.ya3{bottom:56.788624pt;}
.y20{bottom:58.706667pt;}
.ya6{bottom:59.315823pt;}
.y9c{bottom:61.243792pt;}
.yb2{bottom:63.603679pt;}
.yab{bottom:63.603689pt;}
.ya0{bottom:63.603690pt;}
.yae{bottom:63.603696pt;}
.ydd{bottom:64.907037pt;}
.y71{bottom:65.646798pt;}
.yd8{bottom:66.503952pt;}
.ye2{bottom:67.510879pt;}
.y108{bottom:67.997830pt;}
.y74{bottom:68.568203pt;}
.y7f{bottom:69.105570pt;}
.y6a{bottom:70.796906pt;}
.yfa{bottom:71.956590pt;}
.ye6{bottom:71.956596pt;}
.ydc{bottom:71.956598pt;}
.ye8{bottom:71.956604pt;}
.y2{bottom:72.566667pt;}
.yf9{bottom:72.929103pt;}
.y79{bottom:73.524916pt;}
.y6e{bottom:73.524917pt;}
.y7c{bottom:73.524921pt;}
.y1f{bottom:77.106667pt;}
.yf8{bottom:79.769533pt;}
.ya5{bottom:80.560468pt;}
.yd7{bottom:81.923640pt;}
.yeb{bottom:81.923641pt;}
.yf7{bottom:83.903033pt;}
.yf6{bottom:89.458746pt;}
.ye1{bottom:89.458749pt;}
.y73{bottom:93.126703pt;}
.ye0{bottom:93.834273pt;}
.y107{bottom:94.321249pt;}
.yf5{bottom:95.050270pt;}
.y1e{bottom:95.506667pt;}
.yd0{bottom:96.127319pt;}
.yf4{bottom:98.279993pt;}
.ye5{bottom:98.279997pt;}
.y3d{bottom:98.300000pt;}
.yf3{bottom:100.432697pt;}
.yf2{bottom:106.024217pt;}
.yd6{bottom:110.816519pt;}
.yf1{bottom:110.850916pt;}
.y68{bottom:112.566667pt;}
.yd5{bottom:114.809644pt;}
.y14b{bottom:114.966667pt;}
.ydf{bottom:116.581368pt;}
.yf0{bottom:116.963794pt;}
.y180{bottom:117.500000pt;}
.y3c{bottom:119.500000pt;}
.yef{bottom:121.824863pt;}
.yea{bottom:125.785013pt;}
.yde{bottom:125.785015pt;}
.yd4{bottom:128.771274pt;}
.yee{bottom:132.798814pt;}
.y67{bottom:133.773333pt;}
.y17f{bottom:135.906667pt;}
.y14a{bottom:136.173333pt;}
.yd3{bottom:139.745211pt;}
.y3b{bottom:140.706667pt;}
.y9a{bottom:140.960000pt;}
.yd2{bottom:144.500293pt;}
.ye9{bottom:144.500295pt;}
.y17e{bottom:154.306667pt;}
.y66{bottom:154.973333pt;}
.y144{bottom:157.373333pt;}
.y145{bottom:157.400000pt;}
.y3a{bottom:161.773333pt;}
.y99{bottom:162.160000pt;}
.y17d{bottom:172.706667pt;}
.y65{bottom:176.173333pt;}
.y39{bottom:182.960000pt;}
.y98{bottom:183.226667pt;}
.y143{bottom:189.373333pt;}
.y13c{bottom:189.400000pt;}
.y17c{bottom:191.106667pt;}
.y64{bottom:197.240000pt;}
.y38{bottom:204.173333pt;}
.y97{bottom:204.440000pt;}
.y17b{bottom:212.040000pt;}
.y63{bottom:218.440000pt;}
.y37{bottom:225.226667pt;}
.y96{bottom:225.506667pt;}
.y94{bottom:225.533333pt;}
.y17a{bottom:230.440000pt;}
.y62{bottom:239.640000pt;}
.y13b{bottom:241.773333pt;}
.y1a7{bottom:245.373333pt;}
.y36{bottom:246.440000pt;}
.y179{bottom:248.840000pt;}
.y91{bottom:252.440000pt;}
.y8e{bottom:252.466649pt;}
.y61{bottom:260.706667pt;}
.y13a{bottom:262.973333pt;}
.y178{bottom:267.226667pt;}
.y35{bottom:267.626667pt;}
.y60{bottom:281.893333pt;}
.y139{bottom:284.173333pt;}
.y8d{bottom:284.440000pt;}
.y1a6{bottom:284.960000pt;}
.y177{bottom:288.040000pt;}
.y34{bottom:288.840000pt;}
.y5f{bottom:303.106667pt;}
.y1a5{bottom:303.373333pt;}
.y138{bottom:305.240000pt;}
.y8c{bottom:305.506667pt;}
.y176{bottom:306.440000pt;}
.y33{bottom:309.906667pt;}
.y1a4{bottom:321.773333pt;}
.y5e{bottom:324.173333pt;}
.y175{bottom:324.840000pt;}
.y137{bottom:326.440000pt;}
.y8b{bottom:326.706667pt;}
.y32{bottom:331.106667pt;}
.y1a3{bottom:340.200000pt;}
.y174{bottom:343.266667pt;}
.y5d{bottom:345.400000pt;}
.y136{bottom:347.666667pt;}
.y8a{bottom:347.933333pt;}
.y31{bottom:352.333333pt;}
.y1a2{bottom:358.600000pt;}
.y173{bottom:361.666667pt;}
.y5c{bottom:366.600000pt;}
.y135{bottom:368.733333pt;}
.y89{bottom:369.000000pt;}
.y30{bottom:373.400000pt;}
.y1a1{bottom:379.533333pt;}
.y172{bottom:382.600000pt;}
.y5b{bottom:387.666667pt;}
.y12b{bottom:389.933333pt;}
.y86{bottom:390.199964pt;}
.y82{bottom:390.200000pt;}
.y2f{bottom:394.600000pt;}
.y1a0{bottom:397.933333pt;}
.y171{bottom:401.000000pt;}
.y5a{bottom:408.866667pt;}
.y2e{bottom:415.800000pt;}
.y19f{bottom:416.333333pt;}
.y170{bottom:419.400000pt;}
.y69{bottom:423.933297pt;}
.y81{bottom:423.933333pt;}
.y59{bottom:430.066667pt;}
.y19e{bottom:434.733333pt;}
.y2d{bottom:436.866667pt;}
.y16f{bottom:437.800000pt;}
.y12a{bottom:445.933333pt;}
.y58{bottom:451.133333pt;}
.y19d{bottom:455.533333pt;}
.y16e{bottom:456.200000pt;}
.y2c{bottom:458.066667pt;}
.y121{bottom:463.666630pt;}
.y129{bottom:463.666667pt;}
.y57{bottom:472.333333pt;}
.y19c{bottom:473.933333pt;}
.y16d{bottom:474.600000pt;}
.y2b{bottom:479.266667pt;}
.y19b{bottom:492.333333pt;}
.y16c{bottom:493.000000pt;}
.y56{bottom:493.533333pt;}
.y120{bottom:500.066667pt;}
.y2a{bottom:500.333333pt;}
.y19a{bottom:510.733333pt;}
.y16b{bottom:511.400000pt;}
.y55{bottom:514.733333pt;}
.y119{bottom:521.266630pt;}
.y11f{bottom:521.266667pt;}
.y29{bottom:521.533333pt;}
.y199{bottom:529.133333pt;}
.y16a{bottom:529.800000pt;}
.y54{bottom:535.800000pt;}
.y28{bottom:542.733333pt;}
.y198{bottom:547.533333pt;}
.y169{bottom:548.200000pt;}
.y113{bottom:552.599964pt;}
.y112{bottom:552.600000pt;}
.y53{bottom:557.000000pt;}
.y197{bottom:568.466667pt;}
.y168{bottom:569.133333pt;}
.y27{bottom:571.800000pt;}
.y52{bottom:578.200000pt;}
.y10c{bottom:583.933297pt;}
.y10b{bottom:583.933333pt;}
.y25{bottom:586.733333pt;}
.y196{bottom:586.866667pt;}
.y167{bottom:587.533333pt;}
.y51{bottom:599.266667pt;}
.y166{bottom:605.933333pt;}
.y195{bottom:607.800000pt;}
.y50{bottom:620.466667pt;}
.ycf{bottom:622.199928pt;}
.y10a{bottom:622.200000pt;}
.y24{bottom:623.533333pt;}
.y165{bottom:624.333333pt;}
.y194{bottom:626.200000pt;}
.y4f{bottom:641.666667pt;}
.y1d{bottom:641.933333pt;}
.y164{bottom:642.733333pt;}
.y193{bottom:644.600000pt;}
.y163{bottom:661.040000pt;}
.y4e{bottom:662.773333pt;}
.y192{bottom:663.040000pt;}
.y191{bottom:683.840000pt;}
.y4d{bottom:683.973333pt;}
.y162{bottom:684.773333pt;}
.y190{bottom:702.240000pt;}
.y4c{bottom:705.173333pt;}
.y161{bottom:705.960000pt;}
.y18f{bottom:720.640000pt;}
.y4b{bottom:726.240000pt;}
.y160{bottom:727.040000pt;}
.y18e{bottom:739.040000pt;}
.y4a{bottom:747.440000pt;}
.y15f{bottom:748.240000pt;}
.y1c{bottom:755.573333pt;}
.y18d{bottom:757.440000pt;}
.y49{bottom:768.640000pt;}
.y15e{bottom:769.440000pt;}
.y1b{bottom:772.640000pt;}
.y18c{bottom:778.373333pt;}
.yce{bottom:783.840000pt;}
.y48{bottom:789.706667pt;}
.y15d{bottom:790.506667pt;}
.y1a{bottom:791.040000pt;}
.y18b{bottom:796.773333pt;}
.yc8{bottom:804.866594pt;}
.yc7{bottom:804.906667pt;}
.y19{bottom:809.440000pt;}
.y47{bottom:810.906667pt;}
.y15c{bottom:811.706667pt;}
.y18a{bottom:815.173333pt;}
.y18{bottom:827.840000pt;}
.y46{bottom:832.106667pt;}
.y15b{bottom:832.906667pt;}
.y189{bottom:833.573333pt;}
.yc6{bottom:843.173333pt;}
.y17{bottom:846.240000pt;}
.y188{bottom:851.973333pt;}
.y45{bottom:853.306667pt;}
.y15a{bottom:853.973333pt;}
.yb8{bottom:864.333261pt;}
.yc5{bottom:864.373333pt;}
.y16{bottom:864.640000pt;}
.y187{bottom:870.373333pt;}
.y44{bottom:874.373333pt;}
.y159{bottom:875.173333pt;}
.y15{bottom:883.040000pt;}
.y186{bottom:888.773333pt;}
.y43{bottom:895.573333pt;}
.y158{bottom:896.373333pt;}
.y14{bottom:901.440000pt;}
.yb7{bottom:903.706667pt;}
.y185{bottom:909.573333pt;}
.y42{bottom:916.773333pt;}
.y157{bottom:917.440000pt;}
.y13{bottom:919.840000pt;}
.yb6{bottom:924.906667pt;}
.y184{bottom:927.973333pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y156{bottom:938.640000pt;}
.y9b{bottom:945.933261pt;}
.yb5{bottom:945.973333pt;}
.y183{bottom:946.373333pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y155{bottom:959.799928pt;}
.y154{bottom:959.840000pt;}
.y182{bottom:964.773333pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y181{bottom:983.200000pt;}
.y153{bottom:991.200000pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y14c{bottom:1012.333261pt;}
.y150{bottom:1012.400000pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.he{height:18.400000pt;}
.h29{height:20.666859pt;}
.h6d{height:25.066735pt;}
.h26{height:25.066753pt;}
.h50{height:25.066771pt;}
.h71{height:25.066807pt;}
.h6e{height:25.732579pt;}
.h23{height:25.732597pt;}
.h20{height:25.733016pt;}
.h61{height:25.855039pt;}
.h3a{height:27.089273pt;}
.h2f{height:27.326016pt;}
.h1c{height:27.466394pt;}
.h48{height:28.270474pt;}
.h1d{height:28.288222pt;}
.h41{height:28.463022pt;}
.h58{height:30.266805pt;}
.h15{height:31.588482pt;}
.h4f{height:31.999598pt;}
.h3f{height:31.999635pt;}
.h37{height:33.066653pt;}
.h65{height:33.741787pt;}
.h24{height:34.769707pt;}
.h3d{height:35.277552pt;}
.h33{height:35.632472pt;}
.h62{height:35.733922pt;}
.h5f{height:35.751709pt;}
.hf{height:36.800000pt;}
.h4c{height:36.832717pt;}
.h6a{height:37.152411pt;}
.h5a{height:37.177935pt;}
.h3b{height:37.360359pt;}
.h38{height:37.378956pt;}
.h27{height:37.502072pt;}
.h30{height:37.736234pt;}
.h2d{height:37.755018pt;}
.h21{height:38.498834pt;}
.h49{height:39.007342pt;}
.h46{height:39.026758pt;}
.h1e{height:39.065006pt;}
.h42{height:39.306398pt;}
.h6{height:40.266667pt;}
.h19{height:41.190626pt;}
.h3{height:43.200000pt;}
.h16{height:43.622545pt;}
.h13{height:43.644259pt;}
.h68{height:46.265742pt;}
.h10{height:46.281250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h5e{height:49.733835pt;}
.h4{height:52.343750pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h66{height:58.387800pt;}
.h2a{height:59.971320pt;}
.h70{height:60.065555pt;}
.h6f{height:60.095453pt;}
.h25{height:60.189493pt;}
.h6c{height:60.581787pt;}
.h5d{height:60.770432pt;}
.h3e{height:60.978930pt;}
.h57{height:61.142653pt;}
.h53{height:61.264249pt;}
.h34{height:61.683018pt;}
.h64{height:61.773397pt;}
.h63{height:61.835050pt;}
.h60{height:61.865829pt;}
.h73{height:62.781250pt;}
.hb{height:62.812500pt;}
.h4d{height:63.785569pt;}
.h5c{height:63.882415pt;}
.h6b{height:64.158571pt;}
.h69{height:64.190507pt;}
.h52{height:64.299411pt;}
.h56{height:64.336234pt;}
.h5b{height:64.358354pt;}
.h59{height:64.390389pt;}
.ha{height:64.500000pt;}
.h3c{height:64.579162pt;}
.h39{height:64.611307pt;}
.h55{height:64.752551pt;}
.h54{height:64.784783pt;}
.h28{height:64.881327pt;}
.h51{height:64.913622pt;}
.h32{height:65.113585pt;}
.h31{height:65.324819pt;}
.h2e{height:65.357335pt;}
.h22{height:66.605797pt;}
.h1f{height:67.187148pt;}
.h4b{height:67.468891pt;}
.h4a{height:67.551507pt;}
.h47{height:67.585131pt;}
.h43{height:68.042914pt;}
.h40{height:68.076783pt;}
.h1a{height:71.304683pt;}
.h2{height:73.281250pt;}
.h17{height:75.514553pt;}
.h14{height:75.552141pt;}
.h18{height:75.700500pt;}
.h72{height:76.745567pt;}
.h67{height:87.519798pt;}
.h2b{height:91.465959pt;}
.h36{height:92.521986pt;}
.h4e{height:95.609367pt;}
.h45{height:100.618816pt;}
.h2c{height:100.874418pt;}
.h11{height:105.733288pt;}
.h1b{height:106.954087pt;}
.hd{height:110.433333pt;}
.h12{height:116.609379pt;}
.h44{height:155.342539pt;}
.h35{height:165.932743pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w1c{width:16.000524pt;}
.wc{width:16.000657pt;}
.wb{width:17.733354pt;}
.wa{width:27.466112pt;}
.w19{width:35.333443pt;}
.w1b{width:36.665665pt;}
.wd{width:46.265329pt;}
.w13{width:57.733815pt;}
.w11{width:57.733852pt;}
.we{width:65.732523pt;}
.w14{width:65.734033pt;}
.w15{width:70.267116pt;}
.w1a{width:112.003025pt;}
.w6{width:158.533333pt;}
.w18{width:166.804620pt;}
.w16{width:171.459545pt;}
.w5{width:233.773333pt;}
.w9{width:248.001657pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w17{width:265.855423pt;}
.wf{width:271.996881pt;}
.w12{width:288.140751pt;}
.w10{width:318.278340pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:2.747403pt;}
.x38{left:4.503423pt;}
.x4{left:6.133333pt;}
.x70{left:7.910780pt;}
.x36{left:10.102360pt;}
.x9{left:11.053333pt;}
.x26{left:12.793614pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.x4e{left:21.470753pt;}
.x53{left:22.439929pt;}
.x7e{left:23.699992pt;}
.x4a{left:24.861308pt;}
.x2e{left:25.751349pt;}
.x5a{left:27.119494pt;}
.xb{left:28.533333pt;}
.x50{left:32.052269pt;}
.x5f{left:33.532003pt;}
.x3{left:37.866655pt;}
.x2f{left:43.096372pt;}
.x43{left:45.618910pt;}
.x6e{left:46.585495pt;}
.x3d{left:50.060624pt;}
.x25{left:50.968604pt;}
.x79{left:51.960941pt;}
.x30{left:53.428789pt;}
.x21{left:56.382358pt;}
.x65{left:57.283022pt;}
.x3b{left:58.739534pt;}
.x2d{left:60.851715pt;}
.x46{left:65.871573pt;}
.x1f{left:66.919925pt;}
.x63{left:70.645733pt;}
.x2b{left:75.612784pt;}
.x20{left:77.294730pt;}
.x68{left:79.816420pt;}
.x41{left:81.784080pt;}
.x76{left:83.756645pt;}
.x1c{left:85.066655pt;}
.x2c{left:85.987589pt;}
.x5d{left:86.910318pt;}
.x71{left:88.099627pt;}
.x10{left:89.333322pt;}
.x59{left:91.603055pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x27{left:99.109109pt;}
.x37{left:101.066655pt;}
.x22{left:103.208838pt;}
.x24{left:105.301097pt;}
.x4b{left:106.243364pt;}
.x6{left:108.166667pt;}
.x28{left:110.507991pt;}
.x66{left:111.413842pt;}
.x48{left:112.332103pt;}
.xa{left:113.893333pt;}
.x3e{left:117.177216pt;}
.x67{left:119.940142pt;}
.x2a{left:120.842104pt;}
.x77{left:121.768156pt;}
.x5e{left:124.418102pt;}
.x3c{left:125.856126pt;}
.x5c{left:126.782220pt;}
.x62{left:127.676928pt;}
.x80{left:128.999991pt;}
.x49{left:130.801378pt;}
.x47{left:133.021551pt;}
.x74{left:137.010323pt;}
.x55{left:140.860414pt;}
.x44{left:143.823248pt;}
.x81{left:144.973322pt;}
.x42{left:148.928494pt;}
.x3a{left:150.826655pt;}
.x40{left:155.703025pt;}
.x7f{left:157.493322pt;}
.x32{left:159.133315pt;}
.x39{left:160.693322pt;}
.x45{left:161.684646pt;}
.x64{left:166.837813pt;}
.x75{left:172.761387pt;}
.x23{left:176.485214pt;}
.x33{left:186.573322pt;}
.x34{left:196.199982pt;}
.x58{left:202.803554pt;}
.x35{left:213.906655pt;}
.x4f{left:219.520299pt;}
.x4d{left:224.883748pt;}
.x5b{left:239.169243pt;}
.x57{left:245.390662pt;}
.x61{left:247.183027pt;}
.x73{left:254.879652pt;}
.x3f{left:265.639653pt;}
.x60{left:268.646929pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x56{left:274.275834pt;}
.x31{left:333.106655pt;}
.x12{left:356.733322pt;}
.x13{left:371.533322pt;}
.x1e{left:406.466655pt;}
.x1d{left:453.666655pt;}
.x17{left:475.533322pt;}
.x6f{left:476.733322pt;}
.x11{left:484.466655pt;}
.x6a{left:495.533297pt;}
.x7b{left:513.666630pt;}
.x7c{left:548.999988pt;}
.x6b{left:553.266655pt;}
.xc{left:555.933333pt;}
.x6c{left:563.533297pt;}
.x19{left:578.373322pt;}
.x15{left:610.359988pt;}
.x7a{left:620.506655pt;}
.x72{left:625.173322pt;}
.x6d{left:629.293322pt;}
.x18{left:633.426655pt;}
.xf{left:634.360000pt;}
.x52{left:648.599928pt;}
.x14{left:665.839988pt;}
.x7d{left:674.893322pt;}
.x69{left:694.639988pt;}
.x54{left:706.359988pt;}
.x78{left:719.559988pt;}
.x51{left:724.773322pt;}
.x4c{left:725.693322pt;}
.x2{left:737.439988pt;}
.x16{left:756.106655pt;}
}




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