
    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_0ef555990687cf470711451a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156000;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_32911c2a0449b4c3bcf4f986.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.157000;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_0ef555990687cf470711451a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.156000;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_32911c2a0449b4c3bcf4f986.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.157000;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_597ea37f909ce0ba5fa348ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_dd7a2fe310c250267923597e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_18e1863fe88425f142717379.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0a3621c7f4766b4b6b781a71.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_917b84422e955b0a8f22ec38.woff2')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_f3862e9c797ed7b3937f4046.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.856445;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_31357af4c2f7246383d12b8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_fe7210a5c835c9b7b7600be7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_c16fea99c8dbcaad08fe1949.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;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_796fd6a1bd925f896e7229c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ff1341fcac09bbd3ad57cddc.woff2')format("woff");}.fff{font-family:fff;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7ee0c74cbf6c46ee36f47b4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0ef555990687cf470711451a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.156000;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_32911c2a0449b4c3bcf4f986.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.157000;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_879774f17d811fc491cd48c0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.419000;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_8d4d5668fc2eb504b61a57c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.728027;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_32911c2a0449b4c3bcf4f986.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.157000;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_0ef555990687cf470711451a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.156000;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_96450314c00b75459baad648.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.071777;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_9e76a9eea63509658d2915ee.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.088379;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_eb6db4cb83c6164219e49232.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.088379;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_82045579233087669d0a7208.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.919922;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;}
.m3{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,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);}
.mc{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-5.039998px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.039998px;}
.v4{vertical-align:12.000000px;}
.v3{vertical-align:15.985800px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.019260px;}
.ls6{letter-spacing:0.048000px;}
.lse{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.215860px;}
.lsb{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.316481px;}
.lsa{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.920000px;}
.ls4{letter-spacing:112.552635px;}
.ls3{letter-spacing:753.169601px;}
.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;}
}
.ws2{word-spacing:-64.800000px;}
.ws18{word-spacing:-61.200000px;}
.ws2c{word-spacing:-49.679980px;}
.ws2d{word-spacing:-20.015992px;}
.ws2a{word-spacing:-18.414713px;}
.ws2b{word-spacing:-16.559993px;}
.ws9{word-spacing:-15.894000px;}
.ws0{word-spacing:-15.227854px;}
.ws29{word-spacing:-14.970234px;}
.ws2e{word-spacing:-10.560000px;}
.ws16{word-spacing:-8.172000px;}
.ws65{word-spacing:-6.156480px;}
.ws3e{word-spacing:-5.184000px;}
.wsad{word-spacing:-5.136000px;}
.ws99{word-spacing:-5.088000px;}
.ws36{word-spacing:-4.896000px;}
.ws72{word-spacing:-4.848000px;}
.wsa5{word-spacing:-4.416000px;}
.ws5b{word-spacing:-4.320000px;}
.wsb0{word-spacing:-4.272000px;}
.ws2f{word-spacing:-4.224000px;}
.ws94{word-spacing:-4.080000px;}
.ws66{word-spacing:-4.032000px;}
.ws9e{word-spacing:-3.984000px;}
.ws30{word-spacing:-3.840000px;}
.ws75{word-spacing:-3.792000px;}
.ws4f{word-spacing:-3.696000px;}
.ws7f{word-spacing:-3.600000px;}
.ws5f{word-spacing:-3.552000px;}
.ws5e{word-spacing:-3.360000px;}
.ws76{word-spacing:-3.168000px;}
.ws70{word-spacing:-3.120000px;}
.ws62{word-spacing:-3.072000px;}
.ws77{word-spacing:-2.880000px;}
.ws9c{word-spacing:-2.832000px;}
.ws58{word-spacing:-2.784000px;}
.ws32{word-spacing:-2.688000px;}
.ws6f{word-spacing:-2.544000px;}
.ws42{word-spacing:-2.448000px;}
.wsaf{word-spacing:-2.352000px;}
.ws3a{word-spacing:-2.304000px;}
.ws95{word-spacing:-2.112000px;}
.ws6d{word-spacing:-2.064000px;}
.ws5d{word-spacing:-2.016000px;}
.ws68{word-spacing:-1.920000px;}
.ws33{word-spacing:-1.872000px;}
.wsb1{word-spacing:-1.824000px;}
.ws61{word-spacing:-1.776000px;}
.ws80{word-spacing:-1.632000px;}
.ws93{word-spacing:-1.488000px;}
.ws44{word-spacing:-1.296000px;}
.ws87{word-spacing:-1.152000px;}
.ws84{word-spacing:-1.056000px;}
.wsa1{word-spacing:-1.008000px;}
.ws7e{word-spacing:-0.960000px;}
.ws53{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.816000px;}
.ws81{word-spacing:-0.528000px;}
.ws4b{word-spacing:-0.480000px;}
.ws79{word-spacing:-0.384000px;}
.wsa6{word-spacing:-0.240000px;}
.ws67{word-spacing:-0.192000px;}
.ws8e{word-spacing:-0.096000px;}
.ws7a{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.wsa2{word-spacing:0.096000px;}
.ws50{word-spacing:0.192000px;}
.ws8d{word-spacing:0.240000px;}
.ws85{word-spacing:0.288000px;}
.ws88{word-spacing:0.384000px;}
.ws4{word-spacing:0.612000px;}
.ws56{word-spacing:0.672000px;}
.wsa8{word-spacing:0.768000px;}
.ws74{word-spacing:0.816000px;}
.ws6b{word-spacing:0.864000px;}
.ws38{word-spacing:0.960000px;}
.ws59{word-spacing:1.008000px;}
.wsb2{word-spacing:1.104000px;}
.ws9d{word-spacing:1.152000px;}
.wsd{word-spacing:1.170000px;}
.ws8c{word-spacing:1.200000px;}
.ws83{word-spacing:1.248000px;}
.ws9f{word-spacing:1.344000px;}
.ws40{word-spacing:1.440000px;}
.ws41{word-spacing:1.488000px;}
.ws8a{word-spacing:1.680000px;}
.ws89{word-spacing:1.728000px;}
.wsb{word-spacing:1.764000px;}
.wsa9{word-spacing:1.776000px;}
.ws7d{word-spacing:1.872000px;}
.ws4c{word-spacing:1.968000px;}
.wsac{word-spacing:2.208000px;}
.ws31{word-spacing:2.256000px;}
.ws13{word-spacing:2.394000px;}
.ws5a{word-spacing:2.448000px;}
.wsa4{word-spacing:2.544000px;}
.ws47{word-spacing:2.592000px;}
.wsa7{word-spacing:2.640000px;}
.ws8b{word-spacing:2.688000px;}
.ws46{word-spacing:2.736000px;}
.ws43{word-spacing:2.832000px;}
.wsae{word-spacing:3.024000px;}
.ws91{word-spacing:3.072000px;}
.ws90{word-spacing:3.168000px;}
.ws57{word-spacing:3.360000px;}
.wsab{word-spacing:3.408000px;}
.ws60{word-spacing:3.600000px;}
.ws96{word-spacing:3.648000px;}
.ws51{word-spacing:3.696000px;}
.ws49{word-spacing:3.744000px;}
.ws23{word-spacing:3.834000px;}
.ws98{word-spacing:3.888000px;}
.ws45{word-spacing:4.080000px;}
.ws8f{word-spacing:4.176000px;}
.ws3d{word-spacing:4.224000px;}
.ws78{word-spacing:4.560000px;}
.ws6a{word-spacing:4.608000px;}
.ws34{word-spacing:4.656000px;}
.ws48{word-spacing:4.752000px;}
.ws3c{word-spacing:5.040000px;}
.ws69{word-spacing:5.232000px;}
.ws11{word-spacing:5.274000px;}
.ws4a{word-spacing:5.280000px;}
.ws54{word-spacing:5.376000px;}
.ws52{word-spacing:5.568000px;}
.ws4d{word-spacing:5.616000px;}
.wsb3{word-spacing:5.712000px;}
.ws17{word-spacing:5.760000px;}
.ws6e{word-spacing:5.904000px;}
.ws3f{word-spacing:5.952000px;}
.ws9a{word-spacing:6.000000px;}
.ws19{word-spacing:6.072000px;}
.wsa0{word-spacing:6.192000px;}
.ws73{word-spacing:6.624000px;}
.ws20{word-spacing:6.750000px;}
.ws92{word-spacing:6.816000px;}
.ws71{word-spacing:6.864000px;}
.ws1b{word-spacing:6.930000px;}
.ws7c{word-spacing:7.200000px;}
.ws7b{word-spacing:7.248000px;}
.ws39{word-spacing:7.440000px;}
.ws86{word-spacing:7.488000px;}
.wsa3{word-spacing:7.632000px;}
.ws5c{word-spacing:7.824000px;}
.ws1d{word-spacing:8.352000px;}
.ws14{word-spacing:8.370000px;}
.ws82{word-spacing:8.400000px;}
.ws4e{word-spacing:8.496000px;}
.ws25{word-spacing:8.892000px;}
.ws55{word-spacing:9.264000px;}
.ws63{word-spacing:9.360000px;}
.ws10{word-spacing:9.558000px;}
.ws28{word-spacing:9.594000px;}
.wsaa{word-spacing:9.600000px;}
.ws27{word-spacing:9.630000px;}
.ws26{word-spacing:9.720000px;}
.ws97{word-spacing:9.792000px;}
.wsc{word-spacing:9.810000px;}
.ws64{word-spacing:9.840000px;}
.ws37{word-spacing:10.080000px;}
.ws6c{word-spacing:10.224000px;}
.ws5{word-spacing:10.512000px;}
.ws3b{word-spacing:10.560000px;}
.ws9b{word-spacing:10.608000px;}
.ws1a{word-spacing:10.728000px;}
.wse{word-spacing:10.890000px;}
.ws21{word-spacing:11.070000px;}
.ws3{word-spacing:11.160000px;}
.ws22{word-spacing:12.600000px;}
.ws6{word-spacing:15.048000px;}
.wsf{word-spacing:16.110000px;}
.ws12{word-spacing:16.794000px;}
.wsa{word-spacing:22.554000px;}
.ws1c{word-spacing:24.264000px;}
.ws24{word-spacing:26.766000px;}
.ws1e{word-spacing:28.260000px;}
.ws8{word-spacing:68.650667px;}
.ws15{word-spacing:86.310000px;}
.ws7{word-spacing:142.735304px;}
.ws1f{word-spacing:489.258000px;}
._1f{margin-left:-33.426000px;}
._52{margin-left:-5.952000px;}
._4f{margin-left:-4.896000px;}
._50{margin-left:-3.888000px;}
._1{margin-left:-2.744295px;}
._0{margin-left:-1.008000px;}
._3{width:1.152000px;}
._26{width:2.425892px;}
._51{width:3.552000px;}
._2{width:4.624591px;}
._54{width:5.649181px;}
._53{width:6.847409px;}
._55{width:8.368591px;}
._56{width:9.552000px;}
._10{width:11.772000px;}
._4{width:18.728289px;}
._17{width:22.500000px;}
._15{width:25.308000px;}
._d{width:26.334000px;}
._8{width:28.098000px;}
._24{width:29.142000px;}
._9{width:30.780000px;}
._f{width:31.932000px;}
._7{width:33.588000px;}
._1a{width:34.794000px;}
._e{width:35.874000px;}
._6{width:37.872000px;}
._14{width:38.988000px;}
._16{width:40.680000px;}
._12{width:42.192000px;}
._18{width:44.100000px;}
._11{width:46.350000px;}
._a{width:47.616000px;}
._1b{width:48.942000px;}
._5{width:50.130000px;}
._13{width:52.236000px;}
._1e{width:53.346000px;}
._19{width:54.396000px;}
._1c{width:56.376000px;}
._23{width:58.338000px;}
._1d{width:59.436000px;}
._b{width:60.456000px;}
._20{width:70.200000px;}
._2d{width:83.657690px;}
._21{width:85.446000px;}
._22{width:119.196000px;}
._30{width:123.123752px;}
._44{width:141.545566px;}
._c{width:144.018000px;}
._4c{width:155.572960px;}
._3f{width:159.650387px;}
._25{width:175.697652px;}
._38{width:177.776874px;}
._4a{width:181.552682px;}
._3b{width:211.140379px;}
._2f{width:214.772700px;}
._43{width:222.025414px;}
._46{width:235.343837px;}
._35{width:247.726279px;}
._4d{width:253.466945px;}
._36{width:267.088258px;}
._41{width:270.310831px;}
._40{width:272.339709px;}
._3c{width:273.605419px;}
._31{width:277.248618px;}
._2e{width:284.549357px;}
._4b{width:291.468483px;}
._48{width:295.361410px;}
._3a{width:310.250466px;}
._37{width:332.490931px;}
._47{width:336.161816px;}
._32{width:342.356667px;}
._3e{width:346.144396px;}
._49{width:350.641629px;}
._2a{width:367.235176px;}
._45{width:369.320310px;}
._42{width:384.684710px;}
._33{width:402.083793px;}
._34{width:405.338117px;}
._39{width:460.576974px;}
._3d{width:497.106254px;}
._4e{width:504.458096px;}
._2c{width:508.099717px;}
._27{width:543.897185px;}
._2b{width:653.308076px;}
._28{width:671.725934px;}
._29{width:697.493283px;}
.fc8{color:rgb(167,165,166);}
.fc7{color:rgb(189,188,188);}
.fc6{color:rgb(229,228,228);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc5{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:18.000000px;}
.fs7{font-size:24.000000px;}
.fs11{font-size:27.984000px;}
.fs8{font-size:36.000000px;}
.fse{font-size:41.759983px;}
.fsa{font-size:48.000000px;}
.fs0{font-size:53.999978px;}
.fs4{font-size:54.000000px;}
.fsd{font-size:59.759976px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fsc{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsf{font-size:72.000000px;}
.fs2{font-size:84.239966px;}
.fsb{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fs10{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yed{bottom:3.599350px;}
.yf2{bottom:3.600088px;}
.yf6{bottom:3.600118px;}
.yfa{bottom:3.600148px;}
.ydc{bottom:3.780465px;}
.y6{bottom:3.960702px;}
.y8{bottom:3.960753px;}
.y10d{bottom:63.049500px;}
.ye9{bottom:75.300327px;}
.y7b{bottom:75.900870px;}
.y151{bottom:90.475650px;}
.y1a5{bottom:96.026100px;}
.y146{bottom:104.875650px;}
.y1ea{bottom:110.194650px;}
.y19a{bottom:110.425650px;}
.y1a4{bottom:110.426100px;}
.ye8{bottom:113.460312px;}
.y7a{bottom:114.060854px;}
.y145{bottom:119.275650px;}
.y1e9{bottom:124.594650px;}
.y199{bottom:124.825650px;}
.y1a3{bottom:124.826100px;}
.y65{bottom:125.041450px;}
.y144{bottom:133.675650px;}
.y225{bottom:134.938650px;}
.y104{bottom:138.300302px;}
.y1e8{bottom:138.994650px;}
.y198{bottom:139.225650px;}
.y1a2{bottom:139.226100px;}
.y4b{bottom:142.501443px;}
.y143{bottom:148.075650px;}
.y224{bottom:149.338650px;}
.yd6{bottom:150.241440px;}
.y1e7{bottom:153.394650px;}
.y197{bottom:153.625650px;}
.yd9{bottom:154.740838px;}
.y64{bottom:161.761435px;}
.y142{bottom:162.475650px;}
.y223{bottom:163.738650px;}
.y196{bottom:168.025650px;}
.y103{bottom:176.280286px;}
.y141{bottom:176.875650px;}
.y4a{bottom:180.661428px;}
.y1e6{bottom:182.194650px;}
.y1a1{bottom:182.425650px;}
.yd5{bottom:188.221425px;}
.y140{bottom:191.275650px;}
.y222{bottom:192.538650px;}
.ybc{bottom:192.541423px;}
.yd8{bottom:192.720823px;}
.ya2{bottom:192.900823px;}
.y1e5{bottom:196.594650px;}
.y195{bottom:196.825650px;}
.y63{bottom:198.301421px;}
.y13f{bottom:205.675650px;}
.y1e4{bottom:210.994650px;}
.y194{bottom:211.225650px;}
.y102{bottom:215.520271px;}
.y49{bottom:218.821412px;}
.y13e{bottom:220.075650px;}
.y221{bottom:221.338650px;}
.y1e3{bottom:225.394650px;}
.y193{bottom:225.625650px;}
.yd4{bottom:226.201410px;}
.ya1{bottom:230.700808px;}
.ybb{bottom:230.701408px;}
.y13d{bottom:234.475650px;}
.y62{bottom:235.021406px;}
.y220{bottom:235.738650px;}
.y1e2{bottom:239.794650px;}
.y192{bottom:240.025650px;}
.y4{bottom:248.521401px;}
.y13c{bottom:248.875650px;}
.y21f{bottom:250.138650px;}
.y1e1{bottom:254.194650px;}
.y191{bottom:254.425650px;}
.y101{bottom:256.200255px;}
.y48{bottom:256.981397px;}
.y13b{bottom:263.275650px;}
.yd3{bottom:264.001394px;}
.y21e{bottom:264.538650px;}
.ya0{bottom:268.500793px;}
.yba{bottom:268.501393px;}
.y1e0{bottom:268.594650px;}
.y93{bottom:268.680793px;}
.y190{bottom:268.825650px;}
.y61{bottom:271.561391px;}
.y150{bottom:277.675650px;}
.y21d{bottom:278.938650px;}
.y1df{bottom:282.994650px;}
.y18f{bottom:283.225650px;}
.y13a{bottom:292.075650px;}
.y21c{bottom:293.338650px;}
.y100{bottom:294.180239px;}
.y47{bottom:295.141382px;}
.y1de{bottom:297.394650px;}
.y18e{bottom:297.625650px;}
.yd2{bottom:301.981379px;}
.y139{bottom:306.475650px;}
.y9f{bottom:306.480777px;}
.yb9{bottom:306.481377px;}
.y92{bottom:306.660777px;}
.y21b{bottom:307.738650px;}
.y60{bottom:308.281377px;}
.y1dd{bottom:311.794650px;}
.y18d{bottom:312.025650px;}
.y138{bottom:320.875650px;}
.y21a{bottom:322.138650px;}
.y1dc{bottom:326.194650px;}
.y18c{bottom:326.425650px;}
.yff{bottom:331.980224px;}
.y46{bottom:333.301367px;}
.ye{bottom:334.201366px;}
.y137{bottom:335.275650px;}
.y219{bottom:336.538650px;}
.yd1{bottom:339.961364px;}
.y1db{bottom:340.594650px;}
.y18b{bottom:340.825650px;}
.y9e{bottom:344.460762px;}
.yb7{bottom:344.461362px;}
.y91{bottom:344.640762px;}
.y5f{bottom:344.821362px;}
.y136{bottom:349.675650px;}
.y218{bottom:350.938650px;}
.y1da{bottom:354.994650px;}
.y18a{bottom:355.225650px;}
.y7{bottom:362.640600px;}
.y135{bottom:364.075650px;}
.y217{bottom:365.338650px;}
.y189{bottom:369.625650px;}
.yfe{bottom:369.960209px;}
.y45{bottom:371.461351px;}
.yd0{bottom:377.941349px;}
.y134{bottom:378.475650px;}
.y216{bottom:379.738650px;}
.y5e{bottom:381.541347px;}
.y9d{bottom:382.440747px;}
.yb6{bottom:382.441347px;}
.y90{bottom:382.620747px;}
.y1d9{bottom:383.794650px;}
.y188{bottom:384.025650px;}
.y30{bottom:391.320000px;}
.y133{bottom:392.875650px;}
.y1d8{bottom:398.194650px;}
.y1a0{bottom:398.425650px;}
.y14f{bottom:407.275650px;}
.yfd{bottom:407.940194px;}
.y215{bottom:408.538650px;}
.y44{bottom:409.621336px;}
.y1d7{bottom:412.594650px;}
.y187{bottom:412.825650px;}
.ycf{bottom:415.921334px;}
.y5d{bottom:418.081333px;}
.y9c{bottom:420.420732px;}
.yb5{bottom:420.421332px;}
.y8f{bottom:420.600732px;}
.y132{bottom:421.675650px;}
.y214{bottom:422.938650px;}
.y1d6{bottom:426.994650px;}
.y186{bottom:427.225650px;}
.yb8{bottom:427.981329px;}
.y131{bottom:436.075650px;}
.y213{bottom:437.338650px;}
.y1d5{bottom:441.394650px;}
.y185{bottom:441.625650px;}
.y79{bottom:445.261322px;}
.yfc{bottom:445.920179px;}
.y43{bottom:447.781321px;}
.y14e{bottom:450.475650px;}
.y212{bottom:451.738650px;}
.yce{bottom:453.721319px;}
.y5c{bottom:454.801318px;}
.y1d4{bottom:455.794650px;}
.y184{bottom:456.025650px;}
.y8e{bottom:458.220717px;}
.yb4{bottom:458.221317px;}
.y2f{bottom:463.680000px;}
.y130{bottom:464.875650px;}
.y211{bottom:466.138650px;}
.y1d3{bottom:470.194650px;}
.y183{bottom:470.425650px;}
.y12f{bottom:479.275650px;}
.y210{bottom:480.538650px;}
.y78{bottom:483.241307px;}
.yfb{bottom:483.900163px;}
.y1d2{bottom:484.594650px;}
.y182{bottom:484.825650px;}
.y42{bottom:485.941306px;}
.y2e{bottom:490.680000px;}
.y5b{bottom:491.341303px;}
.ycd{bottom:491.701303px;}
.y5{bottom:492.240600px;}
.y12e{bottom:493.675650px;}
.y20f{bottom:494.938650px;}
.y8d{bottom:496.200702px;}
.yb3{bottom:496.201302px;}
.y1d1{bottom:498.994650px;}
.y181{bottom:499.225650px;}
.y12d{bottom:508.075650px;}
.y180{bottom:513.625650px;}
.y2d{bottom:517.680000px;}
.yf9{bottom:518.280000px;}
.y77{bottom:519.961292px;}
.yf8{bottom:521.880148px;}
.y12c{bottom:522.475650px;}
.y20e{bottom:523.738650px;}
.y41{bottom:524.101290px;}
.y1d0{bottom:527.794650px;}
.y5a{bottom:527.881289px;}
.y17f{bottom:528.025650px;}
.yc{bottom:528.601289px;}
.ycc{bottom:529.681288px;}
.yda{bottom:534.000686px;}
.y9b{bottom:534.180686px;}
.yb2{bottom:534.181286px;}
.y8c{bottom:534.360686px;}
.y12b{bottom:536.875650px;}
.y20d{bottom:538.138650px;}
.y1cf{bottom:542.194650px;}
.y19f{bottom:542.425650px;}
.y12a{bottom:551.275650px;}
.y20c{bottom:552.538650px;}
.y76{bottom:556.501277px;}
.y1ce{bottom:556.594650px;}
.y17e{bottom:556.825650px;}
.yf7{bottom:559.680133px;}
.y40{bottom:562.261275px;}
.y59{bottom:564.601274px;}
.y129{bottom:565.675650px;}
.y20b{bottom:566.938650px;}
.ycb{bottom:567.661273px;}
.y1cd{bottom:570.994650px;}
.y17d{bottom:571.225650px;}
.y8b{bottom:572.160671px;}
.yb1{bottom:572.161271px;}
.y128{bottom:580.075650px;}
.y20a{bottom:581.338650px;}
.y1cc{bottom:585.394650px;}
.y17c{bottom:585.625650px;}
.y75{bottom:593.221263px;}
.yb{bottom:593.401263px;}
.yf5{bottom:594.060000px;}
.y127{bottom:594.475650px;}
.yf4{bottom:597.660118px;}
.y1cb{bottom:599.794650px;}
.y17b{bottom:600.025650px;}
.y3f{bottom:600.421260px;}
.y58{bottom:601.141260px;}
.yca{bottom:605.641258px;}
.y126{bottom:608.875650px;}
.y209{bottom:610.138650px;}
.y9a{bottom:610.140656px;}
.yb0{bottom:610.141256px;}
.y8a{bottom:610.320656px;}
.y1ca{bottom:614.194650px;}
.y17a{bottom:614.425650px;}
.y125{bottom:623.275650px;}
.y208{bottom:624.538650px;}
.y2c{bottom:625.680000px;}
.y1c9{bottom:628.594650px;}
.y179{bottom:628.825650px;}
.y74{bottom:629.761248px;}
.yf3{bottom:635.640103px;}
.y124{bottom:637.675650px;}
.y57{bottom:637.861245px;}
.y3e{bottom:638.581245px;}
.y207{bottom:638.938650px;}
.y1c8{bottom:642.994650px;}
.y178{bottom:643.225650px;}
.yc9{bottom:643.620643px;}
.y99{bottom:648.120641px;}
.yaf{bottom:648.121241px;}
.y89{bottom:648.300641px;}
.y123{bottom:652.075650px;}
.y206{bottom:653.338650px;}
.y1c7{bottom:657.394650px;}
.y177{bottom:657.625650px;}
.ya{bottom:658.201237px;}
.ye7{bottom:661.441235px;}
.y2b{bottom:661.680000px;}
.y122{bottom:666.475650px;}
.y73{bottom:666.481233px;}
.y205{bottom:667.738650px;}
.yf1{bottom:670.020000px;}
.y1c6{bottom:671.794650px;}
.y176{bottom:672.025650px;}
.yf0{bottom:673.620088px;}
.y56{bottom:674.401230px;}
.y3d{bottom:676.741229px;}
.y121{bottom:680.875650px;}
.yc8{bottom:681.420627px;}
.y204{bottom:682.138650px;}
.y98{bottom:685.920626px;}
.yae{bottom:685.921226px;}
.y88{bottom:686.100626px;}
.y1c5{bottom:686.194650px;}
.y175{bottom:686.425650px;}
.y120{bottom:695.275650px;}
.y1e{bottom:696.240000px;}
.y2a{bottom:697.320000px;}
.ye6{bottom:699.421220px;}
.y1c4{bottom:700.594650px;}
.y174{bottom:700.825650px;}
.y72{bottom:703.021219px;}
.y11f{bottom:709.675650px;}
.y203{bottom:710.938650px;}
.y55{bottom:711.121216px;}
.yef{bottom:713.040720px;}
.yec{bottom:714.300720px;}
.y3c{bottom:714.901214px;}
.y1c3{bottom:714.994650px;}
.y173{bottom:715.225650px;}
.yee{bottom:716.640070px;}
.yeb{bottom:717.900070px;}
.yc7{bottom:719.400612px;}
.y87{bottom:723.900610px;}
.yad{bottom:723.901210px;}
.y11e{bottom:724.075650px;}
.y202{bottom:725.338650px;}
.y1c2{bottom:729.394650px;}
.y172{bottom:729.625650px;}
.ye5{bottom:737.401205px;}
.y11d{bottom:738.475650px;}
.y201{bottom:739.738650px;}
.y71{bottom:739.741204px;}
.y3{bottom:741.181204px;}
.y1c1{bottom:743.794650px;}
.y171{bottom:744.025650px;}
.y54{bottom:747.661201px;}
.y11c{bottom:752.875650px;}
.y3b{bottom:753.061199px;}
.y200{bottom:754.138650px;}
.yc6{bottom:757.380597px;}
.y1c0{bottom:758.194650px;}
.y170{bottom:758.425650px;}
.y10a{bottom:760.261196px;}
.y86{bottom:761.880595px;}
.yac{bottom:761.881195px;}
.y2{bottom:765.661194px;}
.y11b{bottom:767.275650px;}
.y1d{bottom:767.880000px;}
.y1ff{bottom:768.538650px;}
.y29{bottom:769.680000px;}
.yea{bottom:770.820049px;}
.y1bf{bottom:772.594650px;}
.y19e{bottom:772.825650px;}
.y70{bottom:776.281189px;}
.ye4{bottom:776.641189px;}
.y11a{bottom:781.675650px;}
.y53{bottom:784.381186px;}
.y1be{bottom:786.994650px;}
.y16f{bottom:787.225650px;}
.y3a{bottom:791.221184px;}
.yc5{bottom:795.360582px;}
.y119{bottom:796.075650px;}
.y1fe{bottom:797.338650px;}
.y109{bottom:798.061181px;}
.y85{bottom:799.860580px;}
.yab{bottom:799.861180px;}
.y1bd{bottom:801.394650px;}
.y16e{bottom:801.625650px;}
.y28{bottom:805.680000px;}
.y118{bottom:810.475650px;}
.y1fd{bottom:811.738650px;}
.y6f{bottom:813.001175px;}
.y1bc{bottom:815.794650px;}
.ye3{bottom:815.881174px;}
.y16d{bottom:816.025650px;}
.yd{bottom:819.661172px;}
.y52{bottom:823.261171px;}
.y117{bottom:824.875650px;}
.y1fc{bottom:826.138650px;}
.y39{bottom:829.381168px;}
.y1bb{bottom:830.194650px;}
.y16c{bottom:830.425650px;}
.yc4{bottom:833.340567px;}
.y84{bottom:837.840565px;}
.yaa{bottom:837.841165px;}
.y116{bottom:839.275650px;}
.y1fb{bottom:840.538650px;}
.y1c{bottom:840.600000px;}
.y1ba{bottom:844.594650px;}
.y16b{bottom:844.825650px;}
.y6e{bottom:849.541160px;}
.y9{bottom:852.241159px;}
.y115{bottom:853.675650px;}
.ye2{bottom:855.301158px;}
.y1b9{bottom:858.994650px;}
.y19d{bottom:859.225650px;}
.y51{bottom:862.501155px;}
.y38{bottom:867.541153px;}
.y1b{bottom:867.600000px;}
.y114{bottom:868.075650px;}
.y1fa{bottom:869.338650px;}
.yc3{bottom:871.140552px;}
.y108{bottom:873.120551px;}
.y1b8{bottom:873.394650px;}
.y16a{bottom:873.625650px;}
.y83{bottom:875.640550px;}
.ya9{bottom:875.641150px;}
.y1{bottom:876.541149px;}
.y27{bottom:878.040000px;}
.y113{bottom:882.475650px;}
.y1f9{bottom:883.738650px;}
.y6d{bottom:886.081146px;}
.y1b7{bottom:887.794650px;}
.y169{bottom:888.025650px;}
.ye1{bottom:893.101143px;}
.y1a{bottom:894.600000px;}
.y112{bottom:896.875650px;}
.y1f8{bottom:898.138650px;}
.y50{bottom:901.741139px;}
.y1b6{bottom:902.194650px;}
.y168{bottom:902.425650px;}
.y37{bottom:905.701138px;}
.yc2{bottom:909.120536px;}
.y107{bottom:911.100536px;}
.y111{bottom:911.275650px;}
.y97{bottom:913.620535px;}
.ya8{bottom:913.621135px;}
.y82{bottom:913.800534px;}
.y26{bottom:914.040000px;}
.y1b5{bottom:916.594650px;}
.y167{bottom:916.825650px;}
.y19{bottom:921.960000px;}
.y6c{bottom:922.801131px;}
.y14d{bottom:925.675650px;}
.y1f7{bottom:926.938650px;}
.y1b4{bottom:930.994650px;}
.ye0{bottom:931.081128px;}
.y166{bottom:931.225650px;}
.y14c{bottom:940.075650px;}
.y4f{bottom:940.981124px;}
.y1f6{bottom:941.338650px;}
.y36{bottom:943.861122px;}
.y1b3{bottom:945.394650px;}
.y165{bottom:945.625650px;}
.yc1{bottom:947.100521px;}
.y106{bottom:949.080520px;}
.y25{bottom:950.040000px;}
.y96{bottom:951.600519px;}
.ya7{bottom:951.601119px;}
.y81{bottom:951.780519px;}
.y155{bottom:954.025650px;}
.y14b{bottom:954.475650px;}
.y1f5{bottom:955.738650px;}
.y18{bottom:957.600000px;}
.y6b{bottom:959.341116px;}
.y1b2{bottom:959.794650px;}
.y19c{bottom:960.025650px;}
.y154{bottom:968.425650px;}
.y14a{bottom:968.875650px;}
.ydf{bottom:969.061112px;}
.y1b1{bottom:974.194650px;}
.y164{bottom:974.425650px;}
.y4e{bottom:980.221108px;}
.y35{bottom:982.021107px;}
.y153{bottom:982.825650px;}
.y149{bottom:983.275650px;}
.y1f4{bottom:984.538650px;}
.y17{bottom:984.960000px;}
.yc0{bottom:985.080506px;}
.y24{bottom:986.040000px;}
.y105{bottom:988.320505px;}
.y1b0{bottom:988.594650px;}
.y163{bottom:988.825650px;}
.y80{bottom:989.580504px;}
.ya6{bottom:989.581104px;}
.y6a{bottom:996.061102px;}
.y148{bottom:997.675650px;}
.y1f3{bottom:998.938650px;}
.y1af{bottom:1002.994650px;}
.y162{bottom:1003.225650px;}
.yde{bottom:1007.041097px;}
.y16{bottom:1011.600000px;}
.y147{bottom:1012.075650px;}
.y1f2{bottom:1013.338650px;}
.y1ae{bottom:1017.394650px;}
.y161{bottom:1017.625650px;}
.y4d{bottom:1019.461092px;}
.y34{bottom:1020.181092px;}
.y23{bottom:1021.680000px;}
.ybf{bottom:1023.060491px;}
.y110{bottom:1026.475650px;}
.y7f{bottom:1027.560489px;}
.ya5{bottom:1027.561089px;}
.y1ad{bottom:1031.794650px;}
.y19b{bottom:1032.025650px;}
.y69{bottom:1032.601087px;}
.y10f{bottom:1040.875650px;}
.y1f1{bottom:1042.138650px;}
.y1ac{bottom:1046.194650px;}
.ydd{bottom:1046.281081px;}
.y160{bottom:1046.425650px;}
.y1f0{bottom:1056.538650px;}
.y33{bottom:1058.341077px;}
.y4c{bottom:1058.521077px;}
.y1ab{bottom:1060.594650px;}
.y15f{bottom:1060.825650px;}
.ybe{bottom:1061.040476px;}
.y95{bottom:1065.540474px;}
.ya4{bottom:1065.541074px;}
.y7e{bottom:1065.720474px;}
.y68{bottom:1069.321072px;}
.y1ef{bottom:1070.938650px;}
.y1aa{bottom:1074.994650px;}
.y15e{bottom:1075.225650px;}
.ydb{bottom:1083.360600px;}
.y1a9{bottom:1089.394650px;}
.y15d{bottom:1089.625650px;}
.y15{bottom:1096.200000px;}
.y32{bottom:1096.501061px;}
.ybd{bottom:1098.840460px;}
.y1ee{bottom:1099.738650px;}
.y14{bottom:1102.680000px;}
.y94{bottom:1103.340459px;}
.ya3{bottom:1103.341059px;}
.y7d{bottom:1103.520459px;}
.y1a8{bottom:1103.794650px;}
.y15c{bottom:1104.025650px;}
.y67{bottom:1105.861058px;}
.y13{bottom:1112.760000px;}
.y1ed{bottom:1114.138650px;}
.y1a7{bottom:1118.194650px;}
.y15b{bottom:1118.425650px;}
.y152{bottom:1121.557200px;}
.y12{bottom:1127.880000px;}
.y1ec{bottom:1128.538650px;}
.y15a{bottom:1132.825650px;}
.y21{bottom:1135.440000px;}
.y11{bottom:1136.520000px;}
.y31{bottom:1136.641045px;}
.yd7{bottom:1141.320443px;}
.y7c{bottom:1141.500443px;}
.y66{bottom:1142.581043px;}
.y1eb{bottom:1142.938650px;}
.y1a6{bottom:1142.950650px;}
.y20{bottom:1144.080000px;}
.y159{bottom:1147.225650px;}
.y22{bottom:1148.040000px;}
.yf{bottom:1152.000000px;}
.y1f{bottom:1157.040000px;}
.y10{bottom:1167.120000px;}
.y10c{bottom:1180.189350px;}
.y157{bottom:1180.523400px;}
.y10e{bottom:1190.594400px;}
.y158{bottom:1190.969400px;}
.y10b{bottom:1201.789350px;}
.y156{bottom:1202.123250px;}
.h16{height:0.000000px;}
.h10{height:18.140625px;}
.h21{height:18.540000px;}
.h1e{height:18.900000px;}
.h4{height:20.700000px;}
.hc{height:24.187500px;}
.hb{height:25.031250px;}
.h24{height:31.324219px;}
.h2a{height:33.656250px;}
.hd{height:37.546875px;}
.h1d{height:39.212624px;}
.h27{height:40.945312px;}
.h26{height:41.765625px;}
.h29{height:41.767425px;}
.h17{height:42.894123px;}
.h19{height:44.149201px;}
.h25{height:46.986328px;}
.h18{height:49.284472px;}
.h1{height:50.543980px;}
.he{height:52.998047px;}
.h2b{height:53.765625px;}
.h14{height:54.628572px;}
.h8{height:56.320312px;}
.h13{height:57.133454px;}
.hf{height:58.886719px;}
.h9{height:60.468750px;}
.h23{height:61.417969px;}
.h1b{height:62.000615px;}
.h1a{height:62.199335px;}
.h1c{height:62.201735px;}
.h12{height:62.578125px;}
.h1f{height:67.239333px;}
.h5{height:67.391973px;}
.h2{height:67.607973px;}
.ha{height:68.835938px;}
.h15{height:69.473293px;}
.h3{height:79.101328px;}
.h11{height:106.183594px;}
.h7{height:112.429688px;}
.h28{height:153.544922px;}
.h20{height:892.500000px;}
.h22{height:1262.835000px;}
.h0{height:1263.000000px;}
.h6{height:1267.500000px;}
.wa{width:3.600000px;}
.w9{width:8.100000px;}
.wb{width:8.280000px;}
.w6{width:9.180000px;}
.w7{width:40.320000px;}
.w1{width:99.000000px;}
.w2{width:117.000000px;}
.w5{width:150.480720px;}
.w3{width:382.500000px;}
.w0{width:892.500000px;}
.wc{width:892.914000px;}
.wd{width:893.250000px;}
.w4{width:924.000000px;}
.w8{width:1263.000000px;}
.xd{left:-117.000132px;}
.xc{left:-99.000139px;}
.x0{left:0.000000px;}
.x52{left:24.750000px;}
.x4e{left:63.747000px;}
.x51{left:70.167450px;}
.x4d{left:84.975000px;}
.x1a{left:92.880000px;}
.x1b{left:94.320000px;}
.x1f{left:105.840000px;}
.x1e{left:107.280000px;}
.xf{left:120.600000px;}
.x1c{left:124.560000px;}
.x17{left:126.720000px;}
.x16{left:127.800000px;}
.x12{left:153.000000px;}
.x2e{left:159.480024px;}
.x13{left:211.320000px;}
.x14{left:239.040000px;}
.x15{left:248.400000px;}
.x18{left:250.560000px;}
.x32{left:256.860000px;}
.x45{left:298.063800px;}
.x19{left:313.200000px;}
.x46{left:314.264874px;}
.x6{left:329.220000px;}
.x33{left:337.680000px;}
.x1d{left:340.200000px;}
.x5{left:347.220000px;}
.x3f{left:350.983800px;}
.x40{left:367.184853px;}
.x10{left:374.040000px;}
.x34{left:378.000000px;}
.x28{left:418.860463px;}
.x36{left:432.343800px;}
.xb{left:446.220000px;}
.x2c{left:448.739821px;}
.x23{left:465.660041px;}
.x50{left:467.763000px;}
.x26{left:469.979855px;}
.x2b{left:474.301167px;}
.x4f{left:488.991000px;}
.xa{left:490.319804px;}
.x43{left:509.023800px;}
.x24{left:510.660097px;}
.x29{left:517.320459px;}
.x27{left:523.079561px;}
.x44{left:525.404790px;}
.x11{left:531.000000px;}
.x8{left:548.639781px;}
.x3{left:553.499779px;}
.x22{left:579.599919px;}
.x7{left:599.759760px;}
.x2a{left:601.381127px;}
.x2{left:603.899758px;}
.x37{left:619.903800px;}
.x20{left:623.159751px;}
.x48{left:628.559749px;}
.x38{left:631.604747px;}
.x25{left:637.560015px;}
.xe{left:642.599743px;}
.x47{left:653.219739px;}
.x41{left:682.903800px;}
.x42{left:699.104720px;}
.x9{left:709.019716px;}
.x4b{left:718.425600px;}
.x2f{left:733.859706px;}
.x4a{left:735.121950px;}
.x49{left:737.257650px;}
.x30{left:741.599703px;}
.x4{left:750.599700px;}
.x1{left:763.199695px;}
.x21{left:765.359694px;}
.x31{left:769.859692px;}
.x2d{left:778.319689px;}
.x39{left:794.864682px;}
.x4c{left:847.232250px;}
.x3a{left:889.363800px;}
.x3b{left:905.564638px;}
.x3c{left:1027.603800px;}
.x3d{left:1043.804582px;}
.x3e{left:1104.283800px;}
.x35{left:1139.744544px;}
@media print{
.v2{vertical-align:-4.479998pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.479998pt;}
.v4{vertical-align:10.666667pt;}
.v3{vertical-align:14.209600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017120pt;}
.ls6{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.191875pt;}
.lsb{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.281317pt;}
.lsa{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.706667pt;}
.ls4{letter-spacing:100.046787pt;}
.ls3{letter-spacing:669.484090pt;}
.ws2{word-spacing:-57.600000pt;}
.ws18{word-spacing:-54.400000pt;}
.ws2c{word-spacing:-44.159982pt;}
.ws2d{word-spacing:-17.791993pt;}
.ws2a{word-spacing:-16.368633pt;}
.ws2b{word-spacing:-14.719994pt;}
.ws9{word-spacing:-14.128000pt;}
.ws0{word-spacing:-13.535870pt;}
.ws29{word-spacing:-13.306875pt;}
.ws2e{word-spacing:-9.386667pt;}
.ws16{word-spacing:-7.264000pt;}
.ws65{word-spacing:-5.472427pt;}
.ws3e{word-spacing:-4.608000pt;}
.wsad{word-spacing:-4.565333pt;}
.ws99{word-spacing:-4.522667pt;}
.ws36{word-spacing:-4.352000pt;}
.ws72{word-spacing:-4.309333pt;}
.wsa5{word-spacing:-3.925333pt;}
.ws5b{word-spacing:-3.840000pt;}
.wsb0{word-spacing:-3.797333pt;}
.ws2f{word-spacing:-3.754667pt;}
.ws94{word-spacing:-3.626667pt;}
.ws66{word-spacing:-3.584000pt;}
.ws9e{word-spacing:-3.541333pt;}
.ws30{word-spacing:-3.413333pt;}
.ws75{word-spacing:-3.370667pt;}
.ws4f{word-spacing:-3.285333pt;}
.ws7f{word-spacing:-3.200000pt;}
.ws5f{word-spacing:-3.157333pt;}
.ws5e{word-spacing:-2.986667pt;}
.ws76{word-spacing:-2.816000pt;}
.ws70{word-spacing:-2.773333pt;}
.ws62{word-spacing:-2.730667pt;}
.ws77{word-spacing:-2.560000pt;}
.ws9c{word-spacing:-2.517333pt;}
.ws58{word-spacing:-2.474667pt;}
.ws32{word-spacing:-2.389333pt;}
.ws6f{word-spacing:-2.261333pt;}
.ws42{word-spacing:-2.176000pt;}
.wsaf{word-spacing:-2.090667pt;}
.ws3a{word-spacing:-2.048000pt;}
.ws95{word-spacing:-1.877333pt;}
.ws6d{word-spacing:-1.834667pt;}
.ws5d{word-spacing:-1.792000pt;}
.ws68{word-spacing:-1.706667pt;}
.ws33{word-spacing:-1.664000pt;}
.wsb1{word-spacing:-1.621333pt;}
.ws61{word-spacing:-1.578667pt;}
.ws80{word-spacing:-1.450667pt;}
.ws93{word-spacing:-1.322667pt;}
.ws44{word-spacing:-1.152000pt;}
.ws87{word-spacing:-1.024000pt;}
.ws84{word-spacing:-0.938667pt;}
.wsa1{word-spacing:-0.896000pt;}
.ws7e{word-spacing:-0.853333pt;}
.ws53{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.725333pt;}
.ws81{word-spacing:-0.469333pt;}
.ws4b{word-spacing:-0.426667pt;}
.ws79{word-spacing:-0.341333pt;}
.wsa6{word-spacing:-0.213333pt;}
.ws67{word-spacing:-0.170667pt;}
.ws8e{word-spacing:-0.085333pt;}
.ws7a{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.085333pt;}
.ws50{word-spacing:0.170667pt;}
.ws8d{word-spacing:0.213333pt;}
.ws85{word-spacing:0.256000pt;}
.ws88{word-spacing:0.341333pt;}
.ws4{word-spacing:0.544000pt;}
.ws56{word-spacing:0.597333pt;}
.wsa8{word-spacing:0.682667pt;}
.ws74{word-spacing:0.725333pt;}
.ws6b{word-spacing:0.768000pt;}
.ws38{word-spacing:0.853333pt;}
.ws59{word-spacing:0.896000pt;}
.wsb2{word-spacing:0.981333pt;}
.ws9d{word-spacing:1.024000pt;}
.wsd{word-spacing:1.040000pt;}
.ws8c{word-spacing:1.066667pt;}
.ws83{word-spacing:1.109333pt;}
.ws9f{word-spacing:1.194667pt;}
.ws40{word-spacing:1.280000pt;}
.ws41{word-spacing:1.322667pt;}
.ws8a{word-spacing:1.493333pt;}
.ws89{word-spacing:1.536000pt;}
.wsb{word-spacing:1.568000pt;}
.wsa9{word-spacing:1.578667pt;}
.ws7d{word-spacing:1.664000pt;}
.ws4c{word-spacing:1.749333pt;}
.wsac{word-spacing:1.962667pt;}
.ws31{word-spacing:2.005333pt;}
.ws13{word-spacing:2.128000pt;}
.ws5a{word-spacing:2.176000pt;}
.wsa4{word-spacing:2.261333pt;}
.ws47{word-spacing:2.304000pt;}
.wsa7{word-spacing:2.346667pt;}
.ws8b{word-spacing:2.389333pt;}
.ws46{word-spacing:2.432000pt;}
.ws43{word-spacing:2.517333pt;}
.wsae{word-spacing:2.688000pt;}
.ws91{word-spacing:2.730667pt;}
.ws90{word-spacing:2.816000pt;}
.ws57{word-spacing:2.986667pt;}
.wsab{word-spacing:3.029333pt;}
.ws60{word-spacing:3.200000pt;}
.ws96{word-spacing:3.242667pt;}
.ws51{word-spacing:3.285333pt;}
.ws49{word-spacing:3.328000pt;}
.ws23{word-spacing:3.408000pt;}
.ws98{word-spacing:3.456000pt;}
.ws45{word-spacing:3.626667pt;}
.ws8f{word-spacing:3.712000pt;}
.ws3d{word-spacing:3.754667pt;}
.ws78{word-spacing:4.053333pt;}
.ws6a{word-spacing:4.096000pt;}
.ws34{word-spacing:4.138667pt;}
.ws48{word-spacing:4.224000pt;}
.ws3c{word-spacing:4.480000pt;}
.ws69{word-spacing:4.650667pt;}
.ws11{word-spacing:4.688000pt;}
.ws4a{word-spacing:4.693333pt;}
.ws54{word-spacing:4.778667pt;}
.ws52{word-spacing:4.949333pt;}
.ws4d{word-spacing:4.992000pt;}
.wsb3{word-spacing:5.077333pt;}
.ws17{word-spacing:5.120000pt;}
.ws6e{word-spacing:5.248000pt;}
.ws3f{word-spacing:5.290667pt;}
.ws9a{word-spacing:5.333333pt;}
.ws19{word-spacing:5.397333pt;}
.wsa0{word-spacing:5.504000pt;}
.ws73{word-spacing:5.888000pt;}
.ws20{word-spacing:6.000000pt;}
.ws92{word-spacing:6.058667pt;}
.ws71{word-spacing:6.101333pt;}
.ws1b{word-spacing:6.160000pt;}
.ws7c{word-spacing:6.400000pt;}
.ws7b{word-spacing:6.442667pt;}
.ws39{word-spacing:6.613333pt;}
.ws86{word-spacing:6.656000pt;}
.wsa3{word-spacing:6.784000pt;}
.ws5c{word-spacing:6.954667pt;}
.ws1d{word-spacing:7.424000pt;}
.ws14{word-spacing:7.440000pt;}
.ws82{word-spacing:7.466667pt;}
.ws4e{word-spacing:7.552000pt;}
.ws25{word-spacing:7.904000pt;}
.ws55{word-spacing:8.234667pt;}
.ws63{word-spacing:8.320000pt;}
.ws10{word-spacing:8.496000pt;}
.ws28{word-spacing:8.528000pt;}
.wsaa{word-spacing:8.533333pt;}
.ws27{word-spacing:8.560000pt;}
.ws26{word-spacing:8.640000pt;}
.ws97{word-spacing:8.704000pt;}
.wsc{word-spacing:8.720000pt;}
.ws64{word-spacing:8.746667pt;}
.ws37{word-spacing:8.960000pt;}
.ws6c{word-spacing:9.088000pt;}
.ws5{word-spacing:9.344000pt;}
.ws3b{word-spacing:9.386667pt;}
.ws9b{word-spacing:9.429333pt;}
.ws1a{word-spacing:9.536000pt;}
.wse{word-spacing:9.680000pt;}
.ws21{word-spacing:9.840000pt;}
.ws3{word-spacing:9.920000pt;}
.ws22{word-spacing:11.200000pt;}
.ws6{word-spacing:13.376000pt;}
.wsf{word-spacing:14.320000pt;}
.ws12{word-spacing:14.928000pt;}
.wsa{word-spacing:20.048000pt;}
.ws1c{word-spacing:21.568000pt;}
.ws24{word-spacing:23.792000pt;}
.ws1e{word-spacing:25.120000pt;}
.ws8{word-spacing:61.022815pt;}
.ws15{word-spacing:76.720000pt;}
.ws7{word-spacing:126.875826pt;}
.ws1f{word-spacing:434.896000pt;}
._1f{margin-left:-29.712000pt;}
._52{margin-left:-5.290667pt;}
._4f{margin-left:-4.352000pt;}
._50{margin-left:-3.456000pt;}
._1{margin-left:-2.439373pt;}
._0{margin-left:-0.896000pt;}
._3{width:1.024000pt;}
._26{width:2.156349pt;}
._51{width:3.157333pt;}
._2{width:4.110747pt;}
._54{width:5.021494pt;}
._53{width:6.086586pt;}
._55{width:7.438747pt;}
._56{width:8.490667pt;}
._10{width:10.464000pt;}
._4{width:16.647368pt;}
._17{width:20.000000pt;}
._15{width:22.496000pt;}
._d{width:23.408000pt;}
._8{width:24.976000pt;}
._24{width:25.904000pt;}
._9{width:27.360000pt;}
._f{width:28.384000pt;}
._7{width:29.856000pt;}
._1a{width:30.928000pt;}
._e{width:31.888000pt;}
._6{width:33.664000pt;}
._14{width:34.656000pt;}
._16{width:36.160000pt;}
._12{width:37.504000pt;}
._18{width:39.200000pt;}
._11{width:41.200000pt;}
._a{width:42.325333pt;}
._1b{width:43.504000pt;}
._5{width:44.560000pt;}
._13{width:46.432000pt;}
._1e{width:47.418667pt;}
._19{width:48.352000pt;}
._1c{width:50.112000pt;}
._23{width:51.856000pt;}
._1d{width:52.832000pt;}
._b{width:53.738667pt;}
._20{width:62.400000pt;}
._2d{width:74.362391pt;}
._21{width:75.952000pt;}
._22{width:105.952000pt;}
._30{width:109.443335pt;}
._44{width:125.818281pt;}
._c{width:128.016000pt;}
._4c{width:138.287076pt;}
._3f{width:141.911455pt;}
._25{width:156.175691pt;}
._38{width:158.023888pt;}
._4a{width:161.380161pt;}
._3b{width:187.680337pt;}
._2f{width:190.909067pt;}
._43{width:197.355923pt;}
._46{width:209.194522pt;}
._35{width:220.201137pt;}
._4d{width:225.303951pt;}
._36{width:237.411785pt;}
._41{width:240.276294pt;}
._40{width:242.079742pt;}
._3c{width:243.204817pt;}
._31{width:246.443216pt;}
._2e{width:252.932761pt;}
._4b{width:259.083096pt;}
._48{width:262.543476pt;}
._3a{width:275.778192pt;}
._37{width:295.547494pt;}
._47{width:298.810503pt;}
._32{width:304.317037pt;}
._3e{width:307.683908pt;}
._49{width:311.681448pt;}
._2a{width:326.431267pt;}
._45{width:328.284720pt;}
._42{width:341.941964pt;}
._33{width:357.407816pt;}
._34{width:360.300548pt;}
._39{width:409.401755pt;}
._3d{width:441.872226pt;}
._4e{width:448.407197pt;}
._2c{width:451.644193pt;}
._27{width:483.464164pt;}
._2b{width:580.718290pt;}
._28{width:597.089719pt;}
._29{width:619.994030pt;}
.fs9{font-size:16.000000pt;}
.fs7{font-size:21.333333pt;}
.fs11{font-size:24.874667pt;}
.fs8{font-size:32.000000pt;}
.fse{font-size:37.119985pt;}
.fsa{font-size:42.666667pt;}
.fs0{font-size:47.999981pt;}
.fs4{font-size:48.000000pt;}
.fsd{font-size:53.119979pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fsc{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsf{font-size:64.000000pt;}
.fs2{font-size:74.879970pt;}
.fsb{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fs10{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:3.199422pt;}
.yf2{bottom:3.200078pt;}
.yf6{bottom:3.200105pt;}
.yfa{bottom:3.200132pt;}
.ydc{bottom:3.360413pt;}
.y6{bottom:3.520624pt;}
.y8{bottom:3.520670pt;}
.y10d{bottom:56.044000pt;}
.ye9{bottom:66.933624pt;}
.y7b{bottom:67.467440pt;}
.y151{bottom:80.422800pt;}
.y1a5{bottom:85.356533pt;}
.y146{bottom:93.222800pt;}
.y1ea{bottom:97.950800pt;}
.y19a{bottom:98.156133pt;}
.y1a4{bottom:98.156533pt;}
.ye8{bottom:100.853610pt;}
.y7a{bottom:101.387426pt;}
.y145{bottom:106.022800pt;}
.y1e9{bottom:110.750800pt;}
.y199{bottom:110.956133pt;}
.y1a3{bottom:110.956533pt;}
.y65{bottom:111.147956pt;}
.y144{bottom:118.822800pt;}
.y225{bottom:119.945467pt;}
.y104{bottom:122.933601pt;}
.y1e8{bottom:123.550800pt;}
.y198{bottom:123.756133pt;}
.y1a2{bottom:123.756533pt;}
.y4b{bottom:126.667949pt;}
.y143{bottom:131.622800pt;}
.y224{bottom:132.745467pt;}
.yd6{bottom:133.547947pt;}
.y1e7{bottom:136.350800pt;}
.y197{bottom:136.556133pt;}
.yd9{bottom:137.547412pt;}
.y64{bottom:143.787942pt;}
.y142{bottom:144.422800pt;}
.y223{bottom:145.545467pt;}
.y196{bottom:149.356133pt;}
.y103{bottom:156.693588pt;}
.y141{bottom:157.222800pt;}
.y4a{bottom:160.587936pt;}
.y1e6{bottom:161.950800pt;}
.y1a1{bottom:162.156133pt;}
.yd5{bottom:167.307933pt;}
.y140{bottom:170.022800pt;}
.y222{bottom:171.145467pt;}
.ybc{bottom:171.147932pt;}
.yd8{bottom:171.307398pt;}
.ya2{bottom:171.467398pt;}
.y1e5{bottom:174.750800pt;}
.y195{bottom:174.956133pt;}
.y63{bottom:176.267929pt;}
.y13f{bottom:182.822800pt;}
.y1e4{bottom:187.550800pt;}
.y194{bottom:187.756133pt;}
.y102{bottom:191.573574pt;}
.y49{bottom:194.507922pt;}
.y13e{bottom:195.622800pt;}
.y221{bottom:196.745467pt;}
.y1e3{bottom:200.350800pt;}
.y193{bottom:200.556133pt;}
.yd4{bottom:201.067920pt;}
.ya1{bottom:205.067385pt;}
.ybb{bottom:205.067918pt;}
.y13d{bottom:208.422800pt;}
.y62{bottom:208.907916pt;}
.y220{bottom:209.545467pt;}
.y1e2{bottom:213.150800pt;}
.y192{bottom:213.356133pt;}
.y4{bottom:220.907912pt;}
.y13c{bottom:221.222800pt;}
.y21f{bottom:222.345467pt;}
.y1e1{bottom:225.950800pt;}
.y191{bottom:226.156133pt;}
.y101{bottom:227.733560pt;}
.y48{bottom:228.427909pt;}
.y13b{bottom:234.022800pt;}
.yd3{bottom:234.667906pt;}
.y21e{bottom:235.145467pt;}
.ya0{bottom:238.667371pt;}
.yba{bottom:238.667905pt;}
.y1e0{bottom:238.750800pt;}
.y93{bottom:238.827371pt;}
.y190{bottom:238.956133pt;}
.y61{bottom:241.387903pt;}
.y150{bottom:246.822800pt;}
.y21d{bottom:247.945467pt;}
.y1df{bottom:251.550800pt;}
.y18f{bottom:251.756133pt;}
.y13a{bottom:259.622800pt;}
.y21c{bottom:260.745467pt;}
.y100{bottom:261.493546pt;}
.y47{bottom:262.347895pt;}
.y1de{bottom:264.350800pt;}
.y18e{bottom:264.556133pt;}
.yd2{bottom:268.427893pt;}
.y139{bottom:272.422800pt;}
.y9f{bottom:272.427358pt;}
.yb9{bottom:272.427891pt;}
.y92{bottom:272.587358pt;}
.y21b{bottom:273.545467pt;}
.y60{bottom:274.027890pt;}
.y1dd{bottom:277.150800pt;}
.y18d{bottom:277.356133pt;}
.y138{bottom:285.222800pt;}
.y21a{bottom:286.345467pt;}
.y1dc{bottom:289.950800pt;}
.y18c{bottom:290.156133pt;}
.yff{bottom:295.093533pt;}
.y46{bottom:296.267881pt;}
.ye{bottom:297.067881pt;}
.y137{bottom:298.022800pt;}
.y219{bottom:299.145467pt;}
.yd1{bottom:302.187879pt;}
.y1db{bottom:302.750800pt;}
.y18b{bottom:302.956133pt;}
.y9e{bottom:306.187344pt;}
.yb7{bottom:306.187878pt;}
.y91{bottom:306.347344pt;}
.y5f{bottom:306.507877pt;}
.y136{bottom:310.822800pt;}
.y218{bottom:311.945467pt;}
.y1da{bottom:315.550800pt;}
.y18a{bottom:315.756133pt;}
.y7{bottom:322.347200pt;}
.y135{bottom:323.622800pt;}
.y217{bottom:324.745467pt;}
.y189{bottom:328.556133pt;}
.yfe{bottom:328.853519pt;}
.y45{bottom:330.187868pt;}
.yd0{bottom:335.947866pt;}
.y134{bottom:336.422800pt;}
.y216{bottom:337.545467pt;}
.y5e{bottom:339.147864pt;}
.y9d{bottom:339.947331pt;}
.yb6{bottom:339.947864pt;}
.y90{bottom:340.107331pt;}
.y1d9{bottom:341.150800pt;}
.y188{bottom:341.356133pt;}
.y30{bottom:347.840000pt;}
.y133{bottom:349.222800pt;}
.y1d8{bottom:353.950800pt;}
.y1a0{bottom:354.156133pt;}
.y14f{bottom:362.022800pt;}
.yfd{bottom:362.613506pt;}
.y215{bottom:363.145467pt;}
.y44{bottom:364.107854pt;}
.y1d7{bottom:366.750800pt;}
.y187{bottom:366.956133pt;}
.ycf{bottom:369.707852pt;}
.y5d{bottom:371.627851pt;}
.y9c{bottom:373.707317pt;}
.yb5{bottom:373.707851pt;}
.y8f{bottom:373.867317pt;}
.y132{bottom:374.822800pt;}
.y214{bottom:375.945467pt;}
.y1d6{bottom:379.550800pt;}
.y186{bottom:379.756133pt;}
.yb8{bottom:380.427848pt;}
.y131{bottom:387.622800pt;}
.y213{bottom:388.745467pt;}
.y1d5{bottom:392.350800pt;}
.y185{bottom:392.556133pt;}
.y79{bottom:395.787842pt;}
.yfc{bottom:396.373492pt;}
.y43{bottom:398.027841pt;}
.y14e{bottom:400.422800pt;}
.y212{bottom:401.545467pt;}
.yce{bottom:403.307839pt;}
.y5c{bottom:404.267838pt;}
.y1d4{bottom:405.150800pt;}
.y184{bottom:405.356133pt;}
.y8e{bottom:407.307304pt;}
.yb4{bottom:407.307837pt;}
.y2f{bottom:412.160000pt;}
.y130{bottom:413.222800pt;}
.y211{bottom:414.345467pt;}
.y1d3{bottom:417.950800pt;}
.y183{bottom:418.156133pt;}
.y12f{bottom:426.022800pt;}
.y210{bottom:427.145467pt;}
.y78{bottom:429.547828pt;}
.yfb{bottom:430.133479pt;}
.y1d2{bottom:430.750800pt;}
.y182{bottom:430.956133pt;}
.y42{bottom:431.947827pt;}
.y2e{bottom:436.160000pt;}
.y5b{bottom:436.747825pt;}
.ycd{bottom:437.067825pt;}
.y5{bottom:437.547200pt;}
.y12e{bottom:438.822800pt;}
.y20f{bottom:439.945467pt;}
.y8d{bottom:441.067290pt;}
.yb3{bottom:441.067824pt;}
.y1d1{bottom:443.550800pt;}
.y181{bottom:443.756133pt;}
.y12d{bottom:451.622800pt;}
.y180{bottom:456.556133pt;}
.y2d{bottom:460.160000pt;}
.yf9{bottom:460.693333pt;}
.y77{bottom:462.187815pt;}
.yf8{bottom:463.893465pt;}
.y12c{bottom:464.422800pt;}
.y20e{bottom:465.545467pt;}
.y41{bottom:465.867814pt;}
.y1d0{bottom:469.150800pt;}
.y5a{bottom:469.227812pt;}
.y17f{bottom:469.356133pt;}
.yc{bottom:469.867812pt;}
.ycc{bottom:470.827812pt;}
.yda{bottom:474.667277pt;}
.y9b{bottom:474.827277pt;}
.yb2{bottom:474.827810pt;}
.y8c{bottom:474.987277pt;}
.y12b{bottom:477.222800pt;}
.y20d{bottom:478.345467pt;}
.y1cf{bottom:481.950800pt;}
.y19f{bottom:482.156133pt;}
.y12a{bottom:490.022800pt;}
.y20c{bottom:491.145467pt;}
.y76{bottom:494.667802pt;}
.y1ce{bottom:494.750800pt;}
.y17e{bottom:494.956133pt;}
.yf7{bottom:497.493452pt;}
.y40{bottom:499.787800pt;}
.y59{bottom:501.867799pt;}
.y129{bottom:502.822800pt;}
.y20b{bottom:503.945467pt;}
.ycb{bottom:504.587798pt;}
.y1cd{bottom:507.550800pt;}
.y17d{bottom:507.756133pt;}
.y8b{bottom:508.587263pt;}
.yb1{bottom:508.587797pt;}
.y128{bottom:515.622800pt;}
.y20a{bottom:516.745467pt;}
.y1cc{bottom:520.350800pt;}
.y17c{bottom:520.556133pt;}
.y75{bottom:527.307789pt;}
.yb{bottom:527.467789pt;}
.yf5{bottom:528.053333pt;}
.y127{bottom:528.422800pt;}
.yf4{bottom:531.253438pt;}
.y1cb{bottom:533.150800pt;}
.y17b{bottom:533.356133pt;}
.y3f{bottom:533.707787pt;}
.y58{bottom:534.347786pt;}
.yca{bottom:538.347785pt;}
.y126{bottom:541.222800pt;}
.y209{bottom:542.345467pt;}
.y9a{bottom:542.347250pt;}
.yb0{bottom:542.347783pt;}
.y8a{bottom:542.507250pt;}
.y1ca{bottom:545.950800pt;}
.y17a{bottom:546.156133pt;}
.y125{bottom:554.022800pt;}
.y208{bottom:555.145467pt;}
.y2c{bottom:556.160000pt;}
.y1c9{bottom:558.750800pt;}
.y179{bottom:558.956133pt;}
.y74{bottom:559.787776pt;}
.yf3{bottom:565.013425pt;}
.y124{bottom:566.822800pt;}
.y57{bottom:566.987773pt;}
.y3e{bottom:567.627773pt;}
.y207{bottom:567.945467pt;}
.y1c8{bottom:571.550800pt;}
.y178{bottom:571.756133pt;}
.yc9{bottom:572.107238pt;}
.y99{bottom:576.107236pt;}
.yaf{bottom:576.107770pt;}
.y89{bottom:576.267236pt;}
.y123{bottom:579.622800pt;}
.y206{bottom:580.745467pt;}
.y1c7{bottom:584.350800pt;}
.y177{bottom:584.556133pt;}
.ya{bottom:585.067766pt;}
.ye7{bottom:587.947765pt;}
.y2b{bottom:588.160000pt;}
.y122{bottom:592.422800pt;}
.y73{bottom:592.427763pt;}
.y205{bottom:593.545467pt;}
.yf1{bottom:595.573333pt;}
.y1c6{bottom:597.150800pt;}
.y176{bottom:597.356133pt;}
.yf0{bottom:598.773411pt;}
.y56{bottom:599.467760pt;}
.y3d{bottom:601.547759pt;}
.y121{bottom:605.222800pt;}
.yc8{bottom:605.707224pt;}
.y204{bottom:606.345467pt;}
.y98{bottom:609.707223pt;}
.yae{bottom:609.707756pt;}
.y88{bottom:609.867223pt;}
.y1c5{bottom:609.950800pt;}
.y175{bottom:610.156133pt;}
.y120{bottom:618.022800pt;}
.y1e{bottom:618.880000pt;}
.y2a{bottom:619.840000pt;}
.ye6{bottom:621.707751pt;}
.y1c4{bottom:622.750800pt;}
.y174{bottom:622.956133pt;}
.y72{bottom:624.907750pt;}
.y11f{bottom:630.822800pt;}
.y203{bottom:631.945467pt;}
.y55{bottom:632.107747pt;}
.yef{bottom:633.813973pt;}
.yec{bottom:634.933973pt;}
.y3c{bottom:635.467746pt;}
.y1c3{bottom:635.550800pt;}
.y173{bottom:635.756133pt;}
.yee{bottom:637.013396pt;}
.yeb{bottom:638.133395pt;}
.yc7{bottom:639.467211pt;}
.y87{bottom:643.467209pt;}
.yad{bottom:643.467743pt;}
.y11e{bottom:643.622800pt;}
.y202{bottom:644.745467pt;}
.y1c2{bottom:648.350800pt;}
.y172{bottom:648.556133pt;}
.ye5{bottom:655.467738pt;}
.y11d{bottom:656.422800pt;}
.y201{bottom:657.545467pt;}
.y71{bottom:657.547737pt;}
.y3{bottom:658.827736pt;}
.y1c1{bottom:661.150800pt;}
.y171{bottom:661.356133pt;}
.y54{bottom:664.587734pt;}
.y11c{bottom:669.222800pt;}
.y3b{bottom:669.387732pt;}
.y200{bottom:670.345467pt;}
.yc6{bottom:673.227197pt;}
.y1c0{bottom:673.950800pt;}
.y170{bottom:674.156133pt;}
.y10a{bottom:675.787730pt;}
.y86{bottom:677.227196pt;}
.yac{bottom:677.227729pt;}
.y2{bottom:680.587728pt;}
.y11b{bottom:682.022800pt;}
.y1d{bottom:682.560000pt;}
.y1ff{bottom:683.145467pt;}
.y29{bottom:684.160000pt;}
.yea{bottom:685.173377pt;}
.y1bf{bottom:686.750800pt;}
.y19e{bottom:686.956133pt;}
.y70{bottom:690.027724pt;}
.ye4{bottom:690.347724pt;}
.y11a{bottom:694.822800pt;}
.y53{bottom:697.227721pt;}
.y1be{bottom:699.550800pt;}
.y16f{bottom:699.756133pt;}
.y3a{bottom:703.307719pt;}
.yc5{bottom:706.987184pt;}
.y119{bottom:707.622800pt;}
.y1fe{bottom:708.745467pt;}
.y109{bottom:709.387716pt;}
.y85{bottom:710.987182pt;}
.yab{bottom:710.987716pt;}
.y1bd{bottom:712.350800pt;}
.y16e{bottom:712.556133pt;}
.y28{bottom:716.160000pt;}
.y118{bottom:720.422800pt;}
.y1fd{bottom:721.545467pt;}
.y6f{bottom:722.667711pt;}
.y1bc{bottom:725.150800pt;}
.ye3{bottom:725.227710pt;}
.y16d{bottom:725.356133pt;}
.yd{bottom:728.587709pt;}
.y52{bottom:731.787707pt;}
.y117{bottom:733.222800pt;}
.y1fc{bottom:734.345467pt;}
.y39{bottom:737.227705pt;}
.y1bb{bottom:737.950800pt;}
.y16c{bottom:738.156133pt;}
.yc4{bottom:740.747170pt;}
.y84{bottom:744.747169pt;}
.yaa{bottom:744.747702pt;}
.y116{bottom:746.022800pt;}
.y1fb{bottom:747.145467pt;}
.y1c{bottom:747.200000pt;}
.y1ba{bottom:750.750800pt;}
.y16b{bottom:750.956133pt;}
.y6e{bottom:755.147698pt;}
.y9{bottom:757.547697pt;}
.y115{bottom:758.822800pt;}
.ye2{bottom:760.267696pt;}
.y1b9{bottom:763.550800pt;}
.y19d{bottom:763.756133pt;}
.y51{bottom:766.667693pt;}
.y38{bottom:771.147692pt;}
.y1b{bottom:771.200000pt;}
.y114{bottom:771.622800pt;}
.y1fa{bottom:772.745467pt;}
.yc3{bottom:774.347157pt;}
.y108{bottom:776.107156pt;}
.y1b8{bottom:776.350800pt;}
.y16a{bottom:776.556133pt;}
.y83{bottom:778.347155pt;}
.ya9{bottom:778.347689pt;}
.y1{bottom:779.147688pt;}
.y27{bottom:780.480000pt;}
.y113{bottom:784.422800pt;}
.y1f9{bottom:785.545467pt;}
.y6d{bottom:787.627685pt;}
.y1b7{bottom:789.150800pt;}
.y169{bottom:789.356133pt;}
.ye1{bottom:793.867682pt;}
.y1a{bottom:795.200000pt;}
.y112{bottom:797.222800pt;}
.y1f8{bottom:798.345467pt;}
.y50{bottom:801.547679pt;}
.y1b6{bottom:801.950800pt;}
.y168{bottom:802.156133pt;}
.y37{bottom:805.067678pt;}
.yc2{bottom:808.107143pt;}
.y107{bottom:809.867143pt;}
.y111{bottom:810.022800pt;}
.y97{bottom:812.107142pt;}
.ya8{bottom:812.107675pt;}
.y82{bottom:812.267142pt;}
.y26{bottom:812.480000pt;}
.y1b5{bottom:814.750800pt;}
.y167{bottom:814.956133pt;}
.y19{bottom:819.520000pt;}
.y6c{bottom:820.267672pt;}
.y14d{bottom:822.822800pt;}
.y1f7{bottom:823.945467pt;}
.y1b4{bottom:827.550800pt;}
.ye0{bottom:827.627669pt;}
.y166{bottom:827.756133pt;}
.y14c{bottom:835.622800pt;}
.y4f{bottom:836.427665pt;}
.y1f6{bottom:836.745467pt;}
.y36{bottom:838.987664pt;}
.y1b3{bottom:840.350800pt;}
.y165{bottom:840.556133pt;}
.yc1{bottom:841.867130pt;}
.y106{bottom:843.627129pt;}
.y25{bottom:844.480000pt;}
.y96{bottom:845.867128pt;}
.ya7{bottom:845.867662pt;}
.y81{bottom:846.027128pt;}
.y155{bottom:848.022800pt;}
.y14b{bottom:848.422800pt;}
.y1f5{bottom:849.545467pt;}
.y18{bottom:851.200000pt;}
.y6b{bottom:852.747659pt;}
.y1b2{bottom:853.150800pt;}
.y19c{bottom:853.356133pt;}
.y154{bottom:860.822800pt;}
.y14a{bottom:861.222800pt;}
.ydf{bottom:861.387655pt;}
.y1b1{bottom:865.950800pt;}
.y164{bottom:866.156133pt;}
.y4e{bottom:871.307651pt;}
.y35{bottom:872.907651pt;}
.y153{bottom:873.622800pt;}
.y149{bottom:874.022800pt;}
.y1f4{bottom:875.145467pt;}
.y17{bottom:875.520000pt;}
.yc0{bottom:875.627116pt;}
.y24{bottom:876.480000pt;}
.y105{bottom:878.507115pt;}
.y1b0{bottom:878.750800pt;}
.y163{bottom:878.956133pt;}
.y80{bottom:879.627115pt;}
.ya6{bottom:879.627648pt;}
.y6a{bottom:885.387646pt;}
.y148{bottom:886.822800pt;}
.y1f3{bottom:887.945467pt;}
.y1af{bottom:891.550800pt;}
.y162{bottom:891.756133pt;}
.yde{bottom:895.147642pt;}
.y16{bottom:899.200000pt;}
.y147{bottom:899.622800pt;}
.y1f2{bottom:900.745467pt;}
.y1ae{bottom:904.350800pt;}
.y161{bottom:904.556133pt;}
.y4d{bottom:906.187638pt;}
.y34{bottom:906.827637pt;}
.y23{bottom:908.160000pt;}
.ybf{bottom:909.387103pt;}
.y110{bottom:912.422800pt;}
.y7f{bottom:913.387101pt;}
.ya5{bottom:913.387635pt;}
.y1ad{bottom:917.150800pt;}
.y19b{bottom:917.356133pt;}
.y69{bottom:917.867633pt;}
.y10f{bottom:925.222800pt;}
.y1f1{bottom:926.345467pt;}
.y1ac{bottom:929.950800pt;}
.ydd{bottom:930.027628pt;}
.y160{bottom:930.156133pt;}
.y1f0{bottom:939.145467pt;}
.y33{bottom:940.747624pt;}
.y4c{bottom:940.907624pt;}
.y1ab{bottom:942.750800pt;}
.y15f{bottom:942.956133pt;}
.ybe{bottom:943.147089pt;}
.y95{bottom:947.147088pt;}
.ya4{bottom:947.147621pt;}
.y7e{bottom:947.307088pt;}
.y68{bottom:950.507620pt;}
.y1ef{bottom:951.945467pt;}
.y1aa{bottom:955.550800pt;}
.y15e{bottom:955.756133pt;}
.ydb{bottom:962.987200pt;}
.y1a9{bottom:968.350800pt;}
.y15d{bottom:968.556133pt;}
.y15{bottom:974.400000pt;}
.y32{bottom:974.667610pt;}
.ybd{bottom:976.747076pt;}
.y1ee{bottom:977.545467pt;}
.y14{bottom:980.160000pt;}
.y94{bottom:980.747074pt;}
.ya3{bottom:980.747608pt;}
.y7d{bottom:980.907074pt;}
.y1a8{bottom:981.150800pt;}
.y15c{bottom:981.356133pt;}
.y67{bottom:982.987607pt;}
.y13{bottom:989.120000pt;}
.y1ed{bottom:990.345467pt;}
.y1a7{bottom:993.950800pt;}
.y15b{bottom:994.156133pt;}
.y152{bottom:996.939733pt;}
.y12{bottom:1002.560000pt;}
.y1ec{bottom:1003.145467pt;}
.y15a{bottom:1006.956133pt;}
.y21{bottom:1009.280000pt;}
.y11{bottom:1010.240000pt;}
.y31{bottom:1010.347596pt;}
.yd7{bottom:1014.507061pt;}
.y7c{bottom:1014.667061pt;}
.y66{bottom:1015.627594pt;}
.y1eb{bottom:1015.945467pt;}
.y1a6{bottom:1015.956133pt;}
.y20{bottom:1016.960000pt;}
.y159{bottom:1019.756133pt;}
.y22{bottom:1020.480000pt;}
.yf{bottom:1024.000000pt;}
.y1f{bottom:1028.480000pt;}
.y10{bottom:1037.440000pt;}
.y10c{bottom:1049.057200pt;}
.y157{bottom:1049.354133pt;}
.y10e{bottom:1058.306133pt;}
.y158{bottom:1058.639467pt;}
.y10b{bottom:1068.257200pt;}
.y156{bottom:1068.554000pt;}
.h16{height:0.000000pt;}
.h10{height:16.125000pt;}
.h21{height:16.480000pt;}
.h1e{height:16.800000pt;}
.h4{height:18.400000pt;}
.hc{height:21.500000pt;}
.hb{height:22.250000pt;}
.h24{height:27.843750pt;}
.h2a{height:29.916667pt;}
.hd{height:33.375000pt;}
.h1d{height:34.855666pt;}
.h27{height:36.395833pt;}
.h26{height:37.125000pt;}
.h29{height:37.126600pt;}
.h17{height:38.128110pt;}
.h19{height:39.243734pt;}
.h25{height:41.765625pt;}
.h18{height:43.808420pt;}
.h1{height:44.927982pt;}
.he{height:47.109375pt;}
.h2b{height:47.791667pt;}
.h14{height:48.558731pt;}
.h8{height:50.062500pt;}
.h13{height:50.785292pt;}
.hf{height:52.343750pt;}
.h9{height:53.750000pt;}
.h23{height:54.593750pt;}
.h1b{height:55.111658pt;}
.h1a{height:55.288298pt;}
.h1c{height:55.290431pt;}
.h12{height:55.625000pt;}
.h1f{height:59.768296pt;}
.h5{height:59.903976pt;}
.h2{height:60.095976pt;}
.ha{height:61.187500pt;}
.h15{height:61.754038pt;}
.h3{height:70.312292pt;}
.h11{height:94.385417pt;}
.h7{height:99.937500pt;}
.h28{height:136.484375pt;}
.h20{height:793.333333pt;}
.h22{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.h6{height:1126.666667pt;}
.wa{width:3.200000pt;}
.w9{width:7.200000pt;}
.wb{width:7.360000pt;}
.w6{width:8.160000pt;}
.w7{width:35.840000pt;}
.w1{width:88.000000pt;}
.w2{width:104.000000pt;}
.w5{width:133.760640pt;}
.w3{width:340.000000pt;}
.w0{width:793.333333pt;}
.wc{width:793.701333pt;}
.wd{width:794.000000pt;}
.w4{width:821.333333pt;}
.w8{width:1122.666667pt;}
.xd{left:-104.000117pt;}
.xc{left:-88.000123pt;}
.x0{left:0.000000pt;}
.x52{left:22.000000pt;}
.x4e{left:56.664000pt;}
.x51{left:62.371067pt;}
.x4d{left:75.533333pt;}
.x1a{left:82.560000pt;}
.x1b{left:83.840000pt;}
.x1f{left:94.080000pt;}
.x1e{left:95.360000pt;}
.xf{left:107.200000pt;}
.x1c{left:110.720000pt;}
.x17{left:112.640000pt;}
.x16{left:113.600000pt;}
.x12{left:136.000000pt;}
.x2e{left:141.760021pt;}
.x13{left:187.840000pt;}
.x14{left:212.480000pt;}
.x15{left:220.800000pt;}
.x18{left:222.720000pt;}
.x32{left:228.320000pt;}
.x45{left:264.945600pt;}
.x19{left:278.400000pt;}
.x46{left:279.346555pt;}
.x6{left:292.640000pt;}
.x33{left:300.160000pt;}
.x1d{left:302.400000pt;}
.x5{left:308.640000pt;}
.x3f{left:311.985600pt;}
.x40{left:326.386536pt;}
.x10{left:332.480000pt;}
.x34{left:336.000000pt;}
.x28{left:372.320412pt;}
.x36{left:384.305600pt;}
.xb{left:396.640000pt;}
.x2c{left:398.879840pt;}
.x23{left:413.920037pt;}
.x50{left:415.789333pt;}
.x26{left:417.759871pt;}
.x2b{left:421.601038pt;}
.x4f{left:434.658667pt;}
.xa{left:435.839826pt;}
.x43{left:452.465600pt;}
.x24{left:453.920086pt;}
.x29{left:459.840408pt;}
.x27{left:464.959610pt;}
.x44{left:467.026480pt;}
.x11{left:472.000000pt;}
.x8{left:487.679805pt;}
.x3{left:491.999803pt;}
.x22{left:515.199928pt;}
.x7{left:533.119787pt;}
.x2a{left:534.561002pt;}
.x2{left:536.799785pt;}
.x37{left:551.025600pt;}
.x20{left:553.919778pt;}
.x48{left:558.719777pt;}
.x38{left:561.426442pt;}
.x25{left:566.720013pt;}
.xe{left:571.199772pt;}
.x47{left:580.639768pt;}
.x41{left:607.025600pt;}
.x42{left:621.426418pt;}
.x9{left:630.239748pt;}
.x4b{left:638.600533pt;}
.x2f{left:652.319739pt;}
.x4a{left:653.441733pt;}
.x49{left:655.340133pt;}
.x30{left:659.199736pt;}
.x4{left:667.199733pt;}
.x1{left:678.399729pt;}
.x21{left:680.319728pt;}
.x31{left:684.319726pt;}
.x2d{left:691.839723pt;}
.x39{left:706.546384pt;}
.x4c{left:753.095333pt;}
.x3a{left:790.545600pt;}
.x3b{left:804.946345pt;}
.x3c{left:913.425600pt;}
.x3d{left:927.826296pt;}
.x3e{left:981.585600pt;}
.x35{left:1013.106261pt;}
}




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