
    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_2711fee742f3e8b940c31125.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_18f82ad94da91b60056096ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_76f4908e517506a4dc3e0aba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8c28fac3624de3c57c6e04fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_06d296cda09dd9b725422185.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9c06edefc2c986ae6e2871c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_4b36e075c37f560367d50cc4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1f57f4693fef7c3817e9d8de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a95105493d70a3cc09c476f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.980469;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;}
.me{transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.235988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235988,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242726,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.243805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243805,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244262,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);}
.m18{transform:matrix(0.256758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256758,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.256795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256795,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.257439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257439,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.257741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257741,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.261217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261217,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.261218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261218,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.266529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266529,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.268279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268279,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.268482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268482,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.271376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271376,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.272101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272101,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.273373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273373,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.274971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274971,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.275323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275323,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.293871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293871,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.295722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295722,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.295866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295866,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.301859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301859,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.302064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302064,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.306268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306268,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.309345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309345,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.311459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311459,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.312482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312482,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.315687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315687,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.320448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320448,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-31.679901px;}
.v2{vertical-align:-26.640059px;}
.va{vertical-align:-4.328252px;}
.vd{vertical-align:-1.439757px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.471995px;}
.v1{vertical-align:12.240000px;}
.vc{vertical-align:17.279982px;}
.vb{vertical-align:23.759991px;}
.v9{vertical-align:25.189188px;}
.v7{vertical-align:28.067785px;}
.v5{vertical-align:30.234150px;}
.v4{vertical-align:31.679901px;}
.v8{vertical-align:56.860928px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.043134px;}
.ls7{letter-spacing:0.053918px;}
.ls5{letter-spacing:0.358830px;}
.ls6{letter-spacing:0.720727px;}
.ls9{letter-spacing:213.839046px;}
.ls4{letter-spacing:2571.839181px;}
.ls3{letter-spacing:2601.359019px;}
.ls2{letter-spacing:2602.079172px;}
.ls1{letter-spacing:2627.999217px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws18{word-spacing:-17.950348px;}
.ws2c{word-spacing:-15.157287px;}
.ws8{word-spacing:-14.758636px;}
.ws30{word-spacing:-14.360179px;}
.ws5{word-spacing:-13.860563px;}
.ws9{word-spacing:-13.163218px;}
.ws12{word-spacing:-11.966451px;}
.ws17{word-spacing:-11.767409px;}
.ws1e{word-spacing:-11.767126px;}
.ws7{word-spacing:-11.567392px;}
.ws4{word-spacing:-11.520450px;}
.ws24{word-spacing:-11.368067px;}
.ws32{word-spacing:-11.169076px;}
.ws11{word-spacing:-11.168742px;}
.ws1b{word-spacing:-10.570358px;}
.ws19{word-spacing:-10.371279px;}
.ws2b{word-spacing:-10.371033px;}
.ws16{word-spacing:-10.171299px;}
.ws28{word-spacing:-9.972386px;}
.ws25{word-spacing:-9.573324px;}
.ws1c{word-spacing:-8.974940px;}
.ws29{word-spacing:-8.376804px;}
.ws2{word-spacing:0.000000px;}
.ws2d{word-spacing:3.821020px;}
.ws1f{word-spacing:90.017768px;}
.wsa{word-spacing:94.356045px;}
.wse{word-spacing:103.856632px;}
.wsc{word-spacing:105.080635px;}
.ws10{word-spacing:106.304638px;}
.wsb{word-spacing:108.609399px;}
.ws26{word-spacing:114.280668px;}
.ws27{word-spacing:127.688578px;}
.ws1a{word-spacing:128.173762px;}
.ws2a{word-spacing:128.547103px;}
.wsf{word-spacing:130.784693px;}
.wsd{word-spacing:138.128709px;}
.ws23{word-spacing:139.149063px;}
.ws2e{word-spacing:143.141591px;}
.ws14{word-spacing:153.696709px;}
.ws15{word-spacing:154.392905px;}
.ws21{word-spacing:161.837582px;}
.ws20{word-spacing:162.917579px;}
.ws22{word-spacing:162.998055px;}
.ws1d{word-spacing:167.598734px;}
.ws13{word-spacing:185.725694px;}
.ws2f{word-spacing:507.894115px;}
.ws31{word-spacing:542.163897px;}
._23{margin-left:-361.190807px;}
._28{margin-left:-360.098254px;}
._26{margin-left:-253.497647px;}
._21{margin-left:-252.010982px;}
._46{margin-left:-250.778883px;}
._59{margin-left:-249.622013px;}
._54{margin-left:-248.547740px;}
._40{margin-left:-245.722590px;}
._42{margin-left:-244.391150px;}
._81{margin-left:-237.779011px;}
._75{margin-left:-232.879981px;}
._7b{margin-left:-230.984134px;}
._3e{margin-left:-219.368622px;}
._97{margin-left:-217.132368px;}
._5e{margin-left:-215.531801px;}
._85{margin-left:-214.063127px;}
._4a{margin-left:-207.948834px;}
._4d{margin-left:-205.335025px;}
._48{margin-left:-204.053287px;}
._5b{margin-left:-200.995113px;}
._82{margin-left:-188.181317px;}
._77{margin-left:-186.462793px;}
._7c{margin-left:-185.420931px;}
._60{margin-left:-172.927180px;}
._6b{margin-left:-170.926956px;}
._87{margin-left:-168.847626px;}
._a3{margin-left:-165.477942px;}
._92{margin-left:-163.838008px;}
._44{margin-left:-23.547986px;}
._16{margin-left:-21.749900px;}
._1b{margin-left:-17.374601px;}
._7{margin-left:-12.545684px;}
._1c{margin-left:-11.405124px;}
._5{margin-left:-9.917703px;}
._6{margin-left:-8.649049px;}
._e{margin-left:-7.603750px;}
._4{margin-left:-6.582751px;}
._2{margin-left:-4.861811px;}
._8{margin-left:-3.643016px;}
._3{margin-left:-2.573394px;}
._d{margin-left:-1.412235px;}
._0{width:1.048595px;}
._9{width:2.661341px;}
._b{width:4.368942px;}
._12{width:5.702616px;}
._11{width:7.572302px;}
._14{width:9.514191px;}
._10{width:10.615956px;}
._f{width:12.450734px;}
._a{width:14.256580px;}
._c{width:16.150213px;}
._1e{width:17.791886px;}
._a6{width:19.530152px;}
._ad{width:27.488661px;}
._b0{width:29.168237px;}
._af{width:37.389176px;}
._b5{width:54.832789px;}
._ae{width:56.114214px;}
._b3{width:57.635703px;}
._1d{width:60.466855px;}
._b4{width:65.789602px;}
._15{width:69.478344px;}
._b6{width:70.587893px;}
._90{width:77.250437px;}
._a1{width:79.382641px;}
._17{width:92.519244px;}
._5d{width:93.682525px;}
._70{width:104.497969px;}
._6c{width:106.044124px;}
._b1{width:109.149986px;}
._94{width:112.145241px;}
._a5{width:113.585137px;}
._89{width:114.856078px;}
._84{width:116.426897px;}
._18{width:117.920187px;}
._33{width:121.610648px;}
._36{width:122.637181px;}
._3c{width:124.554531px;}
._a9{width:126.488781px;}
._93{width:127.990252px;}
._a4{width:129.072397px;}
._2a{width:130.206833px;}
._62{width:133.721916px;}
._1a{width:135.461047px;}
._96{width:141.194635px;}
._b2{width:143.591454px;}
._73{width:144.736248px;}
._30{width:147.857314px;}
._91{width:150.154005px;}
._a2{width:152.284444px;}
._2e{width:154.425874px;}
._2f{width:156.001565px;}
._66{width:157.649070px;}
._69{width:160.543483px;}
._34{width:162.429868px;}
._65{width:166.037250px;}
._4c{width:169.758828px;}
._7a{width:170.813237px;}
._7d{width:174.683874px;}
._8a{width:175.977023px;}
._6d{width:177.073782px;}
._6e{width:178.261779px;}
._37{width:179.643619px;}
._5f{width:181.033515px;}
._53{width:182.288383px;}
._64{width:183.678397px;}
._9e{width:185.442892px;}
._83{width:193.328410px;}
._76{width:195.086905px;}
._74{width:198.131067px;}
._8b{width:200.121015px;}
._9b{width:202.249952px;}
._3a{width:204.758029px;}
._39{width:206.185677px;}
._63{width:207.368573px;}
._9c{width:208.872866px;}
._58{width:212.393955px;}
._45{width:213.980736px;}
._56{width:216.103804px;}
._71{width:217.494486px;}
._67{width:218.774520px;}
._78{width:221.890050px;}
._86{width:225.116819px;}
._98{width:227.065499px;}
._5a{width:228.494197px;}
._31{width:232.563509px;}
._3d{width:233.939621px;}
._51{width:236.010233px;}
._7f{width:237.271493px;}
._95{width:241.228288px;}
._4f{width:243.272939px;}
._50{width:245.196385px;}
._35{width:247.001536px;}
._49{width:248.676891px;}
._5c{width:252.371177px;}
._47{width:261.011821px;}
._19{width:266.199605px;}
._6a{width:269.772053px;}
._32{width:270.850434px;}
._72{width:272.813386px;}
._6f{width:278.585281px;}
._38{width:281.776039px;}
._41{width:294.907075px;}
._2d{width:298.968645px;}
._1f{width:301.679136px;}
._13{width:308.879096px;}
._43{width:316.799069px;}
._55{width:321.739989px;}
._3f{width:322.944930px;}
._ac{width:325.506745px;}
._3b{width:327.354328px;}
._8c{width:329.485465px;}
._68{width:334.957871px;}
._80{width:343.292746px;}
._8e{width:344.511514px;}
._9f{width:347.775194px;}
._4b{width:352.657057px;}
._61{width:356.784736px;}
._52{width:363.200302px;}
._8d{width:368.365802px;}
._9a{width:371.562985px;}
._24{width:378.481568px;}
._57{width:384.544897px;}
._7e{width:390.663454px;}
._99{width:395.818313px;}
._25{width:396.950673px;}
._2b{width:402.033698px;}
._4e{width:405.224205px;}
._29{width:409.047436px;}
._79{width:413.472891px;}
._a8{width:418.860521px;}
._22{width:431.337850px;}
._a7{width:432.973072px;}
._27{width:448.406797px;}
._88{width:470.183915px;}
._aa{width:490.535599px;}
._9d{width:498.204181px;}
._b9{width:508.704077px;}
._20{width:519.273730px;}
._b8{width:521.652596px;}
._ab{width:524.403435px;}
._8f{width:574.774094px;}
._2c{width:592.889543px;}
._a0{width:617.730795px;}
._b7{width:657.859470px;}
._ba{width:712.532433px;}
._1{width:1695.543615px;}
.fc3{color:rgb(0,36,109);}
.fc2{color:transparent;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:30.241170px;}
.fs18{font-size:32.400506px;}
.fs1e{font-size:34.560737px;}
.fs20{font-size:36.001395px;}
.fs12{font-size:36.719492px;}
.fs26{font-size:37.440552px;}
.fs15{font-size:37.441440px;}
.fs16{font-size:38.160137px;}
.fsf{font-size:40.320368px;}
.fs28{font-size:40.321575px;}
.fs1c{font-size:41.039953px;}
.fsa{font-size:41.759538px;}
.fs1a{font-size:42.480598px;}
.fs14{font-size:42.481620px;}
.fs10{font-size:43.200183px;}
.fs27{font-size:43.919769px;}
.fs21{font-size:45.361800px;}
.fs7{font-size:46.081800px;}
.fsc{font-size:47.520644px;}
.fs17{font-size:48.240229px;}
.fs1d{font-size:51.839630px;}
.fs29{font-size:51.841800px;}
.fsb{font-size:53.280275px;}
.fs1b{font-size:53.999861px;}
.fs23{font-size:54.002250px;}
.fs25{font-size:54.719446px;}
.fs24{font-size:54.722250px;}
.fs11{font-size:55.440506px;}
.fs9{font-size:55.442250px;}
.fs19{font-size:57.600736px;}
.fsd{font-size:61.200137px;}
.fs1f{font-size:61.919722px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs13{font-size:64.802700px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fse{font-size:72.719399px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.yed{bottom:-1.620002px;}
.y0{bottom:0.000000px;}
.y105{bottom:1.799608px;}
.y125{bottom:1.803616px;}
.yc6{bottom:1.977830px;}
.y110{bottom:1.979743px;}
.y143{bottom:1.979976px;}
.yea{bottom:1.980010px;}
.yf5{bottom:1.980011px;}
.ya4{bottom:2.156464px;}
.y1a1{bottom:2.160049px;}
.y130{bottom:2.160459px;}
.y80{bottom:2.163306px;}
.y119{bottom:2.338720px;}
.yd6{bottom:2.339951px;}
.yd8{bottom:2.340019px;}
.yd4{bottom:2.340020px;}
.ybe{bottom:2.340098px;}
.ycd{bottom:2.343381px;}
.y191{bottom:2.699958px;}
.y198{bottom:2.700027px;}
.y194{bottom:2.700028px;}
.yee{bottom:2.879998px;}
.y179{bottom:2.880586px;}
.y89{bottom:2.881995px;}
.yd2{bottom:3.419975px;}
.yda{bottom:3.420044px;}
.y18{bottom:55.800110px;}
.y1{bottom:55.800150px;}
.y19{bottom:58.860077px;}
.yfb{bottom:64.260132px;}
.yfa{bottom:92.880066px;}
.y127{bottom:109.623896px;}
.y1b1{bottom:116.640060px;}
.ybb{bottom:119.700096px;}
.y6f{bottom:121.320099px;}
.y4f{bottom:121.860077px;}
.y64{bottom:122.040047px;}
.y126{bottom:127.261407px;}
.y124{bottom:130.474813px;}
.y79{bottom:135.720085px;}
.y90{bottom:140.040047px;}
.y1bf{bottom:142.740074px;}
.y1b0{bottom:145.260064px;}
.y16{bottom:145.620000px;}
.yba{bottom:148.320099px;}
.y7a{bottom:149.940033px;}
.y133{bottom:150.300041px;}
.y123{bottom:154.983581px;}
.y78{bottom:164.160049px;}
.y8f{bottom:168.480079px;}
.y1be{bottom:171.360077px;}
.y1af{bottom:173.700096px;}
.y15{bottom:174.060000px;}
.y122{bottom:175.692207px;}
.yb9{bottom:176.760064px;}
.y6e{bottom:178.560036px;}
.y4e{bottom:178.920043px;}
.y63{bottom:179.100083px;}
.y121{bottom:191.892076px;}
.y19f{bottom:203.760064px;}
.yb8{bottom:205.380066px;}
.y33{bottom:207.000068px;}
.y4d{bottom:207.360077px;}
.y120{bottom:207.906089px;}
.y62{bottom:213.300041px;}
.y19e{bottom:219.780052px;}
.y77{bottom:221.220085px;}
.y11f{bottom:224.105959px;}
.y1ae{bottom:230.760064px;}
.y14{bottom:231.120000px;}
.yb7{bottom:233.820099px;}
.y32{bottom:235.620072px;}
.y4c{bottom:235.980079px;}
.y11e{bottom:240.127851px;}
.y177{bottom:247.860077px;}
.y61{bottom:249.660049px;}
.y76{bottom:249.840088px;}
.y19d{bottom:251.640060px;}
.y1bd{bottom:252.180039px;}
.y8e{bottom:254.160049px;}
.yef{bottom:254.520058px;}
.y1ad{bottom:259.380066px;}
.yb6{bottom:262.440033px;}
.y31{bottom:264.060036px;}
.yec{bottom:265.320099px;}
.y19c{bottom:266.760064px;}
.y11d{bottom:268.743279px;}
.y12c{bottom:272.159297px;}
.yeb{bottom:273.600083px;}
.y11c{bottom:275.221537px;}
.y60{bottom:275.940033px;}
.y176{bottom:276.300041px;}
.y12d{bottom:277.000399px;}
.y12e{bottom:277.026552px;}
.y75{bottom:278.280052px;}
.ye9{bottom:279.180039px;}
.y129{bottom:280.441057px;}
.y1bc{bottom:280.620072px;}
.y8d{bottom:282.600083px;}
.y1ac{bottom:283.140060px;}
.y155{bottom:285.300041px;}
.y19b{bottom:285.660049px;}
.y128{bottom:287.279391px;}
.y95{bottom:287.820099px;}
.y12b{bottom:290.701708px;}
.yb5{bottom:290.880066px;}
.y30{bottom:292.680039px;}
.y4b{bottom:293.040047px;}
.ye7{bottom:298.080093px;}
.ye6{bottom:298.800041px;}
.ye8{bottom:299.340088px;}
.y5f{bottom:299.700096px;}
.y19a{bottom:301.500068px;}
.y154{bottom:301.860077px;}
.y12a{bottom:304.021420px;}
.y175{bottom:304.920043px;}
.y74{bottom:306.900055px;}
.y8c{bottom:311.220085px;}
.y12f{bottom:313.380229px;}
.y199{bottom:315.360077px;}
.y13{bottom:316.800000px;}
.ye3{bottom:317.880066px;}
.ye2{bottom:318.240074px;}
.ye4{bottom:318.600083px;}
.ye5{bottom:318.780052px;}
.y6d{bottom:321.120072px;}
.y153{bottom:323.460091px;}
.y5e{bottom:330.120072px;}
.y1ab{bottom:330.660049px;}
.y174{bottom:333.360077px;}
.ydf{bottom:334.620072px;}
.yde{bottom:334.980079px;}
.ye0{bottom:335.340088px;}
.ye1{bottom:335.700096px;}
.y197{bottom:338.040047px;}
.y196{bottom:338.400055px;}
.y8b{bottom:339.660049px;}
.y152{bottom:341.820099px;}
.y12{bottom:345.240000px;}
.yb4{bottom:347.940033px;}
.y2f{bottom:349.740074px;}
.y4a{bottom:350.100083px;}
.ydb{bottom:351.540047px;}
.yd9{bottom:351.900055px;}
.ydc{bottom:352.260064px;}
.ydd{bottom:352.440033px;}
.y5d{bottom:352.980079px;}
.y195{bottom:354.060036px;}
.y193{bottom:354.420043px;}
.y151{bottom:355.860077px;}
.y1bb{bottom:361.620072px;}
.y173{bottom:361.980079px;}
.y73{bottom:363.960091px;}
.y150{bottom:370.080093px;}
.y192{bottom:372.780052px;}
.y11{bottom:373.860000px;}
.yb3{bottom:376.560036px;}
.y2e{bottom:378.180039px;}
.y49{bottom:378.540047px;}
.y5c{bottom:383.220085px;}
.yd7{bottom:384.300041px;}
.yf4{bottom:385.920043px;}
.y190{bottom:386.460091px;}
.y8a{bottom:386.647242px;}
.y1ba{bottom:390.060036px;}
.y172{bottom:390.420043px;}
.yd3{bottom:391.500068px;}
.y72{bottom:392.400055px;}
.yf1{bottom:395.100083px;}
.yd5{bottom:398.340088px;}
.y14f{bottom:398.520058px;}
.yf2{bottom:401.760064px;}
.y1aa{bottom:401.940033px;}
.y88{bottom:402.116158px;}
.yb2{bottom:405.000068px;}
.y5b{bottom:406.080093px;}
.y2d{bottom:406.800041px;}
.y48{bottom:407.160049px;}
.yf0{bottom:408.960091px;}
.y18f{bottom:411.840088px;}
.y14e{bottom:412.740074px;}
.yf3{bottom:419.040047px;}
.y87{bottom:421.737701px;}
.y1a9{bottom:425.700096px;}
.y14d{bottom:426.960091px;}
.y18e{bottom:427.860077px;}
.y107{bottom:428.397824px;}
.y188{bottom:428.403800px;}
.yf6{bottom:432.900055px;}
.y2c{bottom:435.240074px;}
.yd1{bottom:435.600083px;}
.y5a{bottom:436.500068px;}
.y86{bottom:438.298374px;}
.y7b{bottom:439.920043px;}
.y14c{bottom:441.000068px;}
.y1b9{bottom:442.440033px;}
.y106{bottom:445.315885px;}
.y171{bottom:447.480079px;}
.y104{bottom:448.187950px;}
.y18d{bottom:448.380066px;}
.y1a8{bottom:449.460091px;}
.y85{bottom:454.854918px;}
.y14b{bottom:455.220085px;}
.y187{bottom:455.585564px;}
.yb1{bottom:462.060036px;}
.y2b{bottom:463.860077px;}
.y59{bottom:465.840088px;}
.y10{bottom:466.560000px;}
.y1b8{bottom:470.880066px;}
.y84{bottom:471.232668px;}
.y103{bottom:471.240028px;}
.y6c{bottom:471.780052px;}
.y17c{bottom:472.505713px;}
.y1a7{bottom:473.220085px;}
.y14a{bottom:479.880066px;}
.y18c{bottom:480.060036px;}
.y15a{bottom:482.760064px;}
.y149{bottom:485.820099px;}
.y83{bottom:488.707579px;}
.y102{bottom:490.496120px;}
.y157{bottom:490.500068px;}
.y17d{bottom:492.127096px;}
.y2a{bottom:492.300041px;}
.y47{bottom:492.660049px;}
.yf{bottom:495.000000px;}
.y7e{bottom:495.369492px;}
.y156{bottom:496.260064px;}
.y1a6{bottom:496.980079px;}
.y159{bottom:499.140060px;}
.y71{bottom:501.840088px;}
.y82{bottom:502.388213px;}
.y18b{bottom:502.920043px;}
.y1a2{bottom:503.640060px;}
.y170{bottom:504.540047px;}
.y101{bottom:505.258341px;}
.y7c{bottom:509.046953px;}
.y158{bottom:510.840088px;}
.y17e{bottom:511.568933px;}
.y81{bottom:516.065736px;}
.y15b{bottom:518.760064px;}
.y58{bottom:519.120072px;}
.y100{bottom:520.197251px;}
.y29{bottom:520.920043px;}
.y46{bottom:521.280052px;}
.y7d{bottom:522.727650px;}
.y1b7{bottom:523.260064px;}
.y1a0{bottom:524.160049px;}
.y70{bottom:525.600083px;}
.y7f{bottom:527.407896px;}
.y17f{bottom:531.186158px;}
.yff{bottom:535.136089px;}
.y18a{bottom:535.140060px;}
.y57{bottom:541.980079px;}
.y1a5{bottom:544.680039px;}
.ye{bottom:547.380000px;}
.yb0{bottom:547.740074px;}
.y28{bottom:549.360077px;}
.y180{bottom:550.807542px;}
.yfe{bottom:551.517774px;}
.y1b6{bottom:551.700096px;}
.y189{bottom:558.900055px;}
.yc8{bottom:566.457038px;}
.y1a4{bottom:568.440033px;}
.y181{bottom:570.249378px;}
.y56{bottom:572.400055px;}
.yaf{bottom:576.180039px;}
.y27{bottom:577.980079px;}
.y45{bottom:578.340088px;}
.yfd{bottom:579.239710px;}
.y10c{bottom:582.296667px;}
.yc7{bottom:584.274728px;}
.yfc{bottom:585.178941px;}
.y16f{bottom:585.360077px;}
.y6b{bottom:585.900055px;}
.y10e{bottom:586.970536px;}
.y10d{bottom:586.971360px;}
.yc5{bottom:587.710584px;}
.y182{bottom:589.866603px;}
.y109{bottom:590.038058px;}
.y55{bottom:595.080093px;}
.y111{bottom:596.335355px;}
.y10b{bottom:599.578652px;}
.y108{bottom:602.455125px;}
.y1b5{bottom:604.080093px;}
.yae{bottom:604.800041px;}
.y26{bottom:606.420043px;}
.y44{bottom:606.780052px;}
.y183{bottom:609.304281px;}
.yc4{bottom:609.654764px;}
.y10a{bottom:611.818136px;}
.y16e{bottom:613.980079px;}
.y1a3{bottom:615.960091px;}
.y10f{bottom:620.636740px;}
.y54{bottom:625.500068px;}
.yc3{bottom:628.912921px;}
.y184{bottom:628.925665px;}
.y94{bottom:630.180039px;}
.y1b4{bottom:632.520058px;}
.yd{bottom:633.060000px;}
.yad{bottom:633.240074px;}
.y25{bottom:635.040047px;}
.y43{bottom:635.400055px;}
.y16d{bottom:642.420043px;}
.yc2{bottom:646.018148px;}
.y185{bottom:648.547049px;}
.y93{bottom:653.940033px;}
.y1b3{bottom:661.140060px;}
.yc{bottom:661.500000px;}
.yac{bottom:661.860077px;}
.yc1{bottom:663.110652px;}
.y24{bottom:663.480079px;}
.y42{bottom:663.840088px;}
.y141{bottom:667.440033px;}
.y186{bottom:667.984767px;}
.y16c{bottom:671.040047px;}
.y53{bottom:672.120072px;}
.yc0{bottom:680.397751px;}
.y140{bottom:687.240074px;}
.yb{bottom:690.120000px;}
.yab{bottom:690.300076px;}
.y23{bottom:692.100083px;}
.y41{bottom:692.460056px;}
.ybf{bottom:699.480066px;}
.y16b{bottom:699.480079px;}
.ycf{bottom:701.098346px;}
.y52{bottom:702.540081px;}
.yd0{bottom:706.327826px;}
.ybc{bottom:706.678352px;}
.y17a{bottom:707.223336px;}
.y13f{bottom:708.840054px;}
.ycb{bottom:710.280810px;}
.y17b{bottom:710.632492px;}
.ya6{bottom:711.171155px;}
.ybd{bottom:711.355265px;}
.yf9{bottom:717.300076px;}
.yaa{bottom:718.920078px;}
.yce{bottom:720.537664px;}
.y22{bottom:720.540081px;}
.y40{bottom:720.900055px;}
.yca{bottom:724.496042px;}
.y178{bottom:725.583974px;}
.y13e{bottom:727.380066px;}
.y16a{bottom:728.100083px;}
.y1b2{bottom:730.080059px;}
.ya5{bottom:731.336402px;}
.y51{bottom:731.880066px;}
.ycc{bottom:732.416146px;}
.yc9{bottom:734.037709px;}
.ya3{bottom:735.117941px;}
.y13d{bottom:741.420078px;}
.ya9{bottom:747.360077px;}
.y6a{bottom:749.160049px;}
.y3f{bottom:749.520058px;}
.y13c{bottom:755.460056px;}
.y169{bottom:756.540081px;}
.ya2{bottom:763.200977px;}
.ya1{bottom:764.647405px;}
.y13b{bottom:769.500068px;}
.y21{bottom:777.600083px;}
.y3e{bottom:777.960056px;}
.y13a{bottom:783.540081px;}
.y168{bottom:785.160049px;}
.ya0{bottom:792.897089px;}
.y139{bottom:797.580059px;}
.ya{bottom:804.240000px;}
.ya8{bottom:804.420078px;}
.y20{bottom:806.220051px;}
.y3d{bottom:806.580059px;}
.y138{bottom:811.620072px;}
.y167{bottom:813.600083px;}
.y9f{bottom:817.199317px;}
.y137{bottom:825.660049px;}
.y9{bottom:832.680000px;}
.ya7{bottom:833.040081px;}
.y69{bottom:834.660049px;}
.y3c{bottom:835.020058px;}
.y9e{bottom:836.100230px;}
.y136{bottom:839.700061px;}
.y166{bottom:842.220051px;}
.y9d{bottom:855.001188px;}
.y8{bottom:861.300000px;}
.y68{bottom:863.280052px;}
.y3b{bottom:863.640060px;}
.y135{bottom:864.540081px;}
.y148{bottom:867.600083px;}
.y134{bottom:870.300076px;}
.y165{bottom:870.660049px;}
.y9c{bottom:873.722811px;}
.y145{bottom:874.800076px;}
.y144{bottom:880.740074px;}
.y147{bottom:883.800076px;}
.y7{bottom:889.740000px;}
.y1f{bottom:891.720051px;}
.y3a{bottom:892.080059px;}
.y9b{bottom:892.616245px;}
.y146{bottom:895.320065px;}
.y164{bottom:899.280052px;}
.y142{bottom:903.420078px;}
.y9a{bottom:916.916761px;}
.y6{bottom:918.360000px;}
.y1e{bottom:920.340054px;}
.y39{bottom:920.700061px;}
.y97{bottom:924.834949px;}
.y163{bottom:927.720051px;}
.y92{bottom:929.700061px;}
.y99{bottom:932.393487px;}
.y96{bottom:940.317446px;}
.y98{bottom:948.055809px;}
.y67{bottom:948.780053px;}
.y38{bottom:949.140060px;}
.y91{bottom:953.640060px;}
.y162{bottom:956.340054px;}
.y117{bottom:969.653986px;}
.y5{bottom:975.420000px;}
.y1d{bottom:977.400072px;}
.y132{bottom:977.760064px;}
.y161{bottom:984.780069px;}
.y116{bottom:993.599255px;}
.y1c{bottom:1005.840070px;}
.y131{bottom:1006.200061px;}
.y160{bottom:1013.400072px;}
.y115{bottom:1014.660000px;}
.y114{bottom:1031.403117px;}
.y66{bottom:1034.460074px;}
.y37{bottom:1034.820065px;}
.y1c1{bottom:1039.140060px;}
.y17{bottom:1041.660000px;}
.y113{bottom:1052.997287px;}
.y50{bottom:1062.900072px;}
.y4{bottom:1063.260000px;}
.y36{bottom:1063.260064px;}
.y112{bottom:1066.858439px;}
.y1c0{bottom:1067.760064px;}
.y15f{bottom:1070.460074px;}
.y11b{bottom:1078.375713px;}
.yf8{bottom:1085.040064px;}
.y1b{bottom:1091.520058px;}
.y3{bottom:1091.880000px;}
.y35{bottom:1091.880066px;}
.y11a{bottom:1092.776174px;}
.y15e{bottom:1098.900072px;}
.yf7{bottom:1104.120072px;}
.y118{bottom:1104.298622px;}
.y1a{bottom:1119.960065px;}
.y2{bottom:1120.320000px;}
.y15d{bottom:1127.520066px;}
.y65{bottom:1148.580068px;}
.y34{bottom:1148.940067px;}
.y15c{bottom:1151.280069px;}
.h4b{height:6.299973px;}
.h45{height:6.300040px;}
.h89{height:6.479943px;}
.h33{height:6.480010px;}
.h4a{height:6.480011px;}
.h29{height:6.656294px;}
.h49{height:6.659980px;}
.h31{height:6.659981px;}
.h34{height:6.660049px;}
.h8b{height:6.840019px;}
.h8a{height:7.020057px;}
.h54{height:7.020373px;}
.h8c{height:7.200027px;}
.h67{height:7.203752px;}
.h8d{height:7.379997px;}
.h42{height:7.559966px;}
.h38{height:7.560035px;}
.h18{height:7.739625px;}
.h40{height:7.739937px;}
.h3d{height:7.740005px;}
.h2f{height:7.740006px;}
.h39{height:7.919975px;}
.h35{height:7.920044px;}
.h3e{height:8.099945px;}
.h3b{height:8.100014px;}
.h41{height:8.279983px;}
.h3a{height:8.279984px;}
.h37{height:8.280052px;}
.h3f{height:8.459954px;}
.h3c{height:8.460021px;}
.h44{height:8.819962px;}
.h1f{height:8.997885px;}
.h80{height:9.899985px;}
.h75{height:9.899986px;}
.h8f{height:10.080025px;}
.h2c{height:10.082209px;}
.h16{height:10.262094px;}
.h59{height:10.262641px;}
.h5e{height:10.801639px;}
.h6d{height:11.162371px;}
.h2e{height:11.703772px;}
.h23{height:11.881765px;}
.h48{height:14.939965px;}
.h81{height:15.304663px;}
.h55{height:29.046548px;}
.h57{height:29.252215px;}
.h68{height:30.983160px;}
.h6b{height:31.202540px;}
.h74{height:32.274688px;}
.h6f{height:32.503213px;}
.h2a{height:33.151534px;}
.h83{height:33.802530px;}
.h46{height:33.803331px;}
.h56{height:34.209967px;}
.h4d{height:34.452194px;}
.h8e{height:36.147662px;}
.h20{height:36.402520px;}
.h86{height:36.403609px;}
.h69{height:36.791677px;}
.h60{height:37.052184px;}
.h19{height:37.436774px;}
.h15{height:37.701849px;}
.h5d{height:38.083192px;}
.h47{height:38.084109px;}
.h5a{height:38.352845px;}
.h32{height:38.353767px;}
.h2b{height:38.728289px;}
.h22{height:39.002509px;}
.h85{height:39.373386px;}
.hd{height:40.434079px;}
.h73{height:40.954086px;}
.h7d{height:41.604125px;}
.h7a{height:42.031492px;}
.h7b{height:42.031767px;}
.h72{height:42.106041px;}
.h71{height:42.106176px;}
.h70{height:42.106181px;}
.h21{height:42.601515px;}
.h7c{height:42.751375px;}
.h78{height:42.751645px;}
.h79{height:42.751650px;}
.he{height:42.856065px;}
.h11{height:42.856200px;}
.h10{height:42.856204px;}
.h1a{height:42.903160px;}
.h4e{height:43.246612px;}
.h53{height:43.552824px;}
.h52{height:43.967748px;}
.h51{height:44.674507px;}
.h50{height:44.689171px;}
.h4f{height:44.689458px;}
.h88{height:46.475364px;}
.h66{height:46.802479px;}
.h87{height:46.804438px;}
.h64{height:47.169569px;}
.h62{height:47.216844px;}
.h17{height:47.764934px;}
.h65{height:47.881478px;}
.h63{height:47.912995px;}
.h61{height:47.929062px;}
.h5b{height:48.410031px;}
.h5c{height:48.752804px;}
.h84{height:49.055128px;}
.h82{height:49.402468px;}
.h28{height:50.053464px;}
.h24{height:50.395164px;}
.h26{height:51.122652px;}
.h27{height:51.139671px;}
.h25{height:51.173542px;}
.h12{height:51.715289px;}
.h58{height:52.003790px;}
.h1c{height:54.864967px;}
.h1d{height:55.253444px;}
.h7{height:55.303923px;}
.h76{height:55.543190px;}
.h9{height:55.596662px;}
.h6c{height:55.903109px;}
.h6e{height:56.263204px;}
.h7e{height:56.263343px;}
.h30{height:56.860572px;}
.h8{height:57.534328px;}
.h36{height:58.094608px;}
.h43{height:58.505953px;}
.h4c{height:59.641383px;}
.h6a{height:62.977692px;}
.h5f{height:64.405523px;}
.h5{height:64.414925px;}
.h1e{height:65.653403px;}
.h13{height:65.992187px;}
.h6{height:65.992812px;}
.h77{height:66.034943px;}
.h7f{height:67.405000px;}
.hb{height:67.836531px;}
.h2{height:67.838636px;}
.hf{height:69.496123px;}
.h14{height:70.346938px;}
.ha{height:83.395190px;}
.h4{height:83.395980px;}
.hc{height:84.416166px;}
.h3{height:84.416966px;}
.h2d{height:95.863437px;}
.h1b{height:104.833147px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2d{width:1.259994px;}
.w25{width:1.800007px;}
.w14{width:2.159981px;}
.w32{width:2.879997px;}
.w29{width:3.060001px;}
.w35{width:3.240005px;}
.w43{width:3.240006px;}
.w20{width:3.779983px;}
.w1b{width:3.779984px;}
.w30{width:3.960021px;}
.w38{width:4.139992px;}
.w16{width:4.500000px;}
.w18{width:4.859974px;}
.w22{width:4.860008px;}
.w45{width:4.860009px;}
.w40{width:5.040047px;}
.w27{width:5.220016px;}
.w1e{width:5.399987px;}
.w39{width:5.579990px;}
.w2e{width:5.580025px;}
.w3b{width:5.759994px;}
.w2a{width:6.120002px;}
.w23{width:6.120003px;}
.w33{width:6.299972px;}
.w36{width:6.479943px;}
.w1c{width:6.479976px;}
.w21{width:6.480010px;}
.w41{width:7.019990px;}
.w3d{width:7.199993px;}
.wf{width:9.000000px;}
.w6{width:9.000033px;}
.w53{width:12.239971px;}
.w5f{width:16.019990px;}
.w9{width:17.815875px;}
.w1d{width:18.000000px;}
.w58{width:20.159232px;}
.w55{width:20.161843px;}
.w64{width:20.339951px;}
.wa{width:21.419676px;}
.w46{width:21.599997px;}
.wc{width:22.500322px;}
.w26{width:22.680004px;}
.w5{width:22.866499px;}
.w66{width:25.560001px;}
.wb{width:26.459578px;}
.w11{width:26.819962px;}
.w4e{width:26.819995px;}
.w4d{width:26.819997px;}
.w10{width:26.820029px;}
.w42{width:27.179970px;}
.w17{width:27.180003px;}
.w15{width:27.180005px;}
.w3e{width:27.180038px;}
.we{width:27.359564px;}
.w50{width:27.359974px;}
.w19{width:31.680003px;}
.w4c{width:32.040012px;}
.w3f{width:36.179970px;}
.w44{width:36.180038px;}
.w52{width:37.800007px;}
.w2b{width:40.139991px;}
.w48{width:40.319996px;}
.w3a{width:40.680005px;}
.w63{width:40.860008px;}
.w37{width:43.020006px;}
.w1f{width:44.639991px;}
.w1a{width:44.639992px;}
.w2f{width:44.640026px;}
.w5e{width:47.879997px;}
.w12{width:51.300040px;}
.w4b{width:51.479994px;}
.w4f{width:51.839985px;}
.w31{width:52.740004px;}
.w28{width:52.920010px;}
.w34{width:53.100013px;}
.w3c{width:53.639992px;}
.w8{width:55.443889px;}
.w13{width:57.599997px;}
.w7{width:58.141872px;}
.w4{width:58.142844px;}
.w51{width:62.100013px;}
.w5a{width:62.640060px;}
.w24{width:65.340001px;}
.w5d{width:68.580007px;}
.w4a{width:69.839985px;}
.w2c{width:70.020006px;}
.wd{width:72.538937px;}
.w54{width:73.980011px;}
.w56{width:75.781953px;}
.w59{width:76.140093px;}
.w65{width:83.520057px;}
.w2{width:85.137729px;}
.w57{width:87.838336px;}
.w5c{width:88.199993px;}
.w47{width:93.240006px;}
.w49{width:102.780001px;}
.w62{width:115.380015px;}
.w3{width:121.683769px;}
.w60{width:170.100013px;}
.w61{width:175.860008px;}
.w5b{width:422.277299px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:89.819996px;}
.x92{left:92.159998px;}
.x90{left:103.500000px;}
.x3f{left:107.100515px;}
.x34{left:111.240102px;}
.x8f{left:113.219999px;}
.x33{left:116.101139px;}
.x15{left:123.120002px;}
.x2e{left:133.019998px;}
.x1{left:140.940000px;}
.x2{left:145.800000px;}
.x95{left:149.935638px;}
.x3{left:154.980000px;}
.x85{left:156.599997px;}
.x8{left:162.000000px;}
.x98{left:165.419992px;}
.x16{left:172.979994px;}
.x94{left:182.881762px;}
.x17{left:202.860008px;}
.x7{left:210.240000px;}
.x81{left:211.322814px;}
.x79{left:213.302025px;}
.x32{left:221.219999px;}
.x1b{left:223.560001px;}
.x1c{left:225.539996px;}
.x18{left:227.520006px;}
.x80{left:229.500156px;}
.x82{left:234.716286px;}
.x7d{left:236.699947px;}
.x96{left:239.580008px;}
.x76{left:245.340002px;}
.x35{left:246.597485px;}
.x4c{left:250.020006px;}
.x19{left:251.280001px;}
.x1a{left:253.259994px;}
.x40{left:257.223361px;}
.x5{left:260.640000px;}
.x6{left:264.780000px;}
.x43{left:265.857892px;}
.x88{left:267.840002px;}
.x8c{left:270.539996px;}
.x45{left:271.615938px;}
.x70{left:274.860008px;}
.x1e{left:276.300242px;}
.x8d{left:277.379998px;}
.x44{left:281.340949px;}
.x75{left:282.419992px;}
.x36{left:301.493234px;}
.x65{left:303.660015px;}
.xd{left:307.260000px;}
.x4{left:313.200000px;}
.x6f{left:314.639992px;}
.x71{left:316.620002px;}
.x30{left:319.680005px;}
.x37{left:324.174028px;}
.x31{left:327.600014px;}
.x5c{left:333.540012px;}
.x91{left:342.540012px;}
.xa{left:360.360000px;}
.xa0{left:366.300007px;}
.x9{left:367.740000px;}
.x97{left:369.000000px;}
.x83{left:372.056335px;}
.x7a{left:373.320234px;}
.x72{left:384.660015px;}
.x38{left:385.912791px;}
.x10{left:389.160015px;}
.x4d{left:403.019989px;}
.x39{left:404.096211px;}
.xc{left:410.940000px;}
.x9f{left:412.019989px;}
.x1d{left:415.800007px;}
.xb{left:419.580000px;}
.x5d{left:428.579990px;}
.x4e{left:430.199993px;}
.x46{left:437.753440px;}
.x84{left:444.236000px;}
.x7b{left:445.313919px;}
.x99{left:446.939999px;}
.x73{left:448.740006px;}
.x9b{left:453.959988px;}
.x66{left:455.579990px;}
.x2f{left:463.680005px;}
.x9e{left:465.480011px;}
.x29{left:467.819056px;}
.x3a{left:469.253466px;}
.x3b{left:474.113735px;}
.x89{left:476.639992px;}
.x20{left:478.805838px;}
.x1f{left:482.584007px;}
.x28{left:486.902351px;}
.x5e{left:492.480011px;}
.x4f{left:494.100014px;}
.x67{left:496.259994px;}
.x21{left:498.961294px;}
.x48{left:501.292481px;}
.x7e{left:506.342781px;}
.x49{left:508.852373px;}
.x47{left:518.392224px;}
.x7f{left:525.242088px;}
.x77{left:529.378297px;}
.x8a{left:531.000000px;}
.xe{left:532.800007px;}
.x50{left:533.879998px;}
.x8e{left:536.579990px;}
.x7c{left:537.836379px;}
.x52{left:539.100014px;}
.x4a{left:541.071624px;}
.x5a{left:546.480011px;}
.x4b{left:548.811780px;}
.x93{left:552.785482px;}
.x2b{left:561.960089px;}
.x59{left:563.939999px;}
.x51{left:565.560001px;}
.x22{left:574.743421px;}
.x5b{left:578.879998px;}
.x78{left:583.012797px;}
.x24{left:588.603225px;}
.x23{left:591.842778px;}
.x74{left:597.419975px;}
.x13{left:598.500000px;}
.x86{left:599.940033px;}
.x68{left:601.559967px;}
.x6a{left:606.779983px;}
.x25{left:609.121698px;}
.x2c{left:613.088130px;}
.x2a{left:614.163336px;}
.x53{left:615.240006px;}
.x5f{left:616.500000px;}
.x61{left:621.720017px;}
.x60{left:624.240006px;}
.x3c{left:626.214241px;}
.x69{left:628.740006px;}
.x56{left:638.100014px;}
.x6d{left:639.179970px;}
.x42{left:640.790388px;}
.x87{left:646.919975px;}
.x41{left:652.490213px;}
.x8b{left:653.580025px;}
.x6b{left:666.360008px;}
.x6e{left:670.860008px;}
.x54{left:673.740006px;}
.x58{left:677.700027px;}
.x57{left:678.960023px;}
.x62{left:681.299973px;}
.x14{left:683.100014px;}
.x64{left:685.440033px;}
.x3e{left:687.049160px;}
.x63{left:690.299973px;}
.x55{left:691.919975px;}
.x6c{left:693.539978px;}
.x9d{left:700.559967px;}
.x27{left:703.982010px;}
.x3d{left:708.293485px;}
.x26{left:717.486650px;}
.x2d{left:742.687756px;}
.x12{left:747.720017px;}
.x11{left:752.580025px;}
.x9c{left:782.460023px;}
.x9a{left:786.779983px;}
@media print{
.v3{vertical-align:-28.159912pt;}
.v2{vertical-align:-23.680052pt;}
.va{vertical-align:-3.847335pt;}
.vd{vertical-align:-1.279784pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.308440pt;}
.v1{vertical-align:10.880000pt;}
.vc{vertical-align:15.359984pt;}
.vb{vertical-align:21.119992pt;}
.v9{vertical-align:22.390389pt;}
.v7{vertical-align:24.949142pt;}
.v5{vertical-align:26.874800pt;}
.v4{vertical-align:28.159912pt;}
.v8{vertical-align:50.543047pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.038341pt;}
.ls7{letter-spacing:0.047927pt;}
.ls5{letter-spacing:0.318960pt;}
.ls6{letter-spacing:0.640646pt;}
.ls9{letter-spacing:190.079152pt;}
.ls4{letter-spacing:2286.079272pt;}
.ls3{letter-spacing:2312.319128pt;}
.ls2{letter-spacing:2312.959264pt;}
.ls1{letter-spacing:2335.999304pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws18{word-spacing:-15.955865pt;}
.ws2c{word-spacing:-13.473144pt;}
.ws8{word-spacing:-13.118788pt;}
.ws30{word-spacing:-12.764603pt;}
.ws5{word-spacing:-12.320500pt;}
.ws9{word-spacing:-11.700639pt;}
.ws12{word-spacing:-10.636845pt;}
.ws17{word-spacing:-10.459919pt;}
.ws1e{word-spacing:-10.459667pt;}
.ws7{word-spacing:-10.282126pt;}
.ws4{word-spacing:-10.240400pt;}
.ws24{word-spacing:-10.104948pt;}
.ws32{word-spacing:-9.928068pt;}
.ws11{word-spacing:-9.927771pt;}
.ws1b{word-spacing:-9.395874pt;}
.ws19{word-spacing:-9.218915pt;}
.ws2b{word-spacing:-9.218696pt;}
.ws16{word-spacing:-9.041155pt;}
.ws28{word-spacing:-8.864343pt;}
.ws25{word-spacing:-8.509621pt;}
.ws1c{word-spacing:-7.977725pt;}
.ws29{word-spacing:-7.446048pt;}
.ws2{word-spacing:0.000000pt;}
.ws2d{word-spacing:3.396462pt;}
.ws1f{word-spacing:80.015793pt;}
.wsa{word-spacing:83.872040pt;}
.wse{word-spacing:92.317007pt;}
.wsc{word-spacing:93.405009pt;}
.ws10{word-spacing:94.493011pt;}
.wsb{word-spacing:96.541688pt;}
.ws26{word-spacing:101.582816pt;}
.ws27{word-spacing:113.500958pt;}
.ws1a{word-spacing:113.932233pt;}
.ws2a{word-spacing:114.264091pt;}
.wsf{word-spacing:116.253060pt;}
.wsd{word-spacing:122.781075pt;}
.ws23{word-spacing:123.688056pt;}
.ws2e{word-spacing:127.236970pt;}
.ws14{word-spacing:136.619297pt;}
.ws15{word-spacing:137.238138pt;}
.ws21{word-spacing:143.855629pt;}
.ws20{word-spacing:144.815626pt;}
.ws22{word-spacing:144.887160pt;}
.ws1d{word-spacing:148.976652pt;}
.ws13{word-spacing:165.089506pt;}
.ws2f{word-spacing:451.461435pt;}
.ws31{word-spacing:481.923464pt;}
._23{margin-left:-321.058495pt;}
._28{margin-left:-320.087337pt;}
._26{margin-left:-225.331241pt;}
._21{margin-left:-224.009762pt;}
._46{margin-left:-222.914563pt;}
._59{margin-left:-221.886234pt;}
._54{margin-left:-220.931324pt;}
._40{margin-left:-218.420080pt;}
._42{margin-left:-217.236578pt;}
._81{margin-left:-211.359121pt;}
._75{margin-left:-207.004428pt;}
._7b{margin-left:-205.319231pt;}
._3e{margin-left:-194.994331pt;}
._97{margin-left:-193.006549pt;}
._5e{margin-left:-191.583823pt;}
._85{margin-left:-190.278336pt;}
._4a{margin-left:-184.843408pt;}
._4d{margin-left:-182.520022pt;}
._48{margin-left:-181.380699pt;}
._5b{margin-left:-178.662323pt;}
._82{margin-left:-167.272282pt;}
._77{margin-left:-165.744705pt;}
._7c{margin-left:-164.818605pt;}
._60{margin-left:-153.713049pt;}
._6b{margin-left:-151.935072pt;}
._87{margin-left:-150.086778pt;}
._a3{margin-left:-147.091504pt;}
._92{margin-left:-145.633785pt;}
._44{margin-left:-20.931543pt;}
._16{margin-left:-19.333245pt;}
._1b{margin-left:-15.444090pt;}
._7{margin-left:-11.151719pt;}
._1c{margin-left:-10.137888pt;}
._5{margin-left:-8.815736pt;}
._6{margin-left:-7.688044pt;}
._e{margin-left:-6.758889pt;}
._4{margin-left:-5.851334pt;}
._2{margin-left:-4.321610pt;}
._8{margin-left:-3.238237pt;}
._3{margin-left:-2.287461pt;}
._d{margin-left:-1.255320pt;}
._0{width:0.932084pt;}
._9{width:2.365636pt;}
._b{width:3.883504pt;}
._12{width:5.068992pt;}
._11{width:6.730935pt;}
._14{width:8.457059pt;}
._10{width:9.436405pt;}
._f{width:11.067320pt;}
._a{width:12.672516pt;}
._c{width:14.355745pt;}
._1e{width:15.815010pt;}
._a6{width:17.360135pt;}
._ad{width:24.434365pt;}
._b0{width:25.927322pt;}
._af{width:33.234823pt;}
._b5{width:48.740257pt;}
._ae{width:49.879302pt;}
._b3{width:51.231736pt;}
._1d{width:53.748316pt;}
._b4{width:58.479647pt;}
._15{width:61.758528pt;}
._b6{width:62.744793pt;}
._90{width:68.667055pt;}
._a1{width:70.562347pt;}
._17{width:82.239328pt;}
._5d{width:83.273356pt;}
._70{width:92.887084pt;}
._6c{width:94.261444pt;}
._b1{width:97.022210pt;}
._94{width:99.684658pt;}
._a5{width:100.964566pt;}
._89{width:102.094291pt;}
._84{width:103.490575pt;}
._18{width:104.817944pt;}
._33{width:108.098354pt;}
._36{width:109.010828pt;}
._3c{width:110.715139pt;}
._a9{width:112.434472pt;}
._93{width:113.769113pt;}
._a4{width:114.731019pt;}
._2a{width:115.739408pt;}
._62{width:118.863925pt;}
._1a{width:120.409819pt;}
._96{width:125.506342pt;}
._b2{width:127.636848pt;}
._73{width:128.654442pt;}
._30{width:131.428724pt;}
._91{width:133.470226pt;}
._a2{width:135.363950pt;}
._2e{width:137.267444pt;}
._2f{width:138.668058pt;}
._66{width:140.132506pt;}
._69{width:142.705319pt;}
._34{width:144.382105pt;}
._65{width:147.588666pt;}
._4c{width:150.896736pt;}
._7a{width:151.833988pt;}
._7d{width:155.274554pt;}
._8a{width:156.424020pt;}
._6d{width:157.398917pt;}
._6e{width:158.454914pt;}
._37{width:159.683217pt;}
._5f{width:160.918680pt;}
._53{width:162.034118pt;}
._64{width:163.269686pt;}
._9e{width:164.838126pt;}
._83{width:171.847476pt;}
._76{width:173.410582pt;}
._74{width:176.116504pt;}
._8b{width:177.885347pt;}
._9b{width:179.777735pt;}
._3a{width:182.007137pt;}
._39{width:183.276157pt;}
._63{width:184.327620pt;}
._9c{width:185.664770pt;}
._58{width:188.794627pt;}
._45{width:190.205098pt;}
._56{width:192.092270pt;}
._71{width:193.328432pt;}
._67{width:194.466240pt;}
._78{width:197.235600pt;}
._86{width:200.103839pt;}
._98{width:201.835999pt;}
._5a{width:203.105953pt;}
._31{width:206.723119pt;}
._3d{width:207.946330pt;}
._51{width:209.786874pt;}
._7f{width:210.907994pt;}
._95{width:214.425145pt;}
._4f{width:216.242612pt;}
._50{width:217.952342pt;}
._35{width:219.556921pt;}
._49{width:221.046125pt;}
._5c{width:224.329935pt;}
._47{width:232.010508pt;}
._19{width:236.621871pt;}
._6a{width:239.797380pt;}
._32{width:240.755942pt;}
._72{width:242.500788pt;}
._6f{width:247.631361pt;}
._38{width:250.467590pt;}
._41{width:262.139622pt;}
._2d{width:265.749907pt;}
._1f{width:268.159232pt;}
._13{width:274.559196pt;}
._43{width:281.599172pt;}
._55{width:285.991101pt;}
._3f{width:287.062160pt;}
._ac{width:289.339329pt;}
._3b{width:290.981625pt;}
._8c{width:292.875969pt;}
._68{width:297.740330pt;}
._80{width:305.149108pt;}
._8e{width:306.232457pt;}
._9f{width:309.133505pt;}
._4b{width:313.472939pt;}
._61{width:317.141988pt;}
._52{width:322.844713pt;}
._8d{width:327.436268pt;}
._9a{width:330.278209pt;}
._24{width:336.428060pt;}
._57{width:341.817686pt;}
._7e{width:347.256403pt;}
._99{width:351.838500pt;}
._25{width:352.845043pt;}
._2b{width:357.363288pt;}
._4e{width:360.199294pt;}
._29{width:363.597721pt;}
._79{width:367.531459pt;}
._a8{width:372.320463pt;}
._22{width:383.411422pt;}
._a7{width:384.864953pt;}
._27{width:398.583820pt;}
._88{width:417.941257pt;}
._aa{width:436.031644pt;}
._9d{width:442.848160pt;}
._b9{width:452.181402pt;}
._20{width:461.576649pt;}
._b8{width:463.691196pt;}
._ab{width:466.136387pt;}
._8f{width:510.910306pt;}
._2c{width:527.012927pt;}
._a0{width:549.094040pt;}
._b7{width:584.763973pt;}
._ba{width:633.362163pt;}
._1{width:1507.149880pt;}
.fs22{font-size:26.881040pt;}
.fs18{font-size:28.800450pt;}
.fs1e{font-size:30.720655pt;}
.fs20{font-size:32.001240pt;}
.fs12{font-size:32.639549pt;}
.fs26{font-size:33.280491pt;}
.fs15{font-size:33.281280pt;}
.fs16{font-size:33.920122pt;}
.fsf{font-size:35.840327pt;}
.fs28{font-size:35.841400pt;}
.fs1c{font-size:36.479958pt;}
.fsa{font-size:37.119590pt;}
.fs1a{font-size:37.760532pt;}
.fs14{font-size:37.761440pt;}
.fs10{font-size:38.400163pt;}
.fs27{font-size:39.039794pt;}
.fs21{font-size:40.321600pt;}
.fs7{font-size:40.961600pt;}
.fsc{font-size:42.240573pt;}
.fs17{font-size:42.880204pt;}
.fs1d{font-size:46.079671pt;}
.fs29{font-size:46.081600pt;}
.fsb{font-size:47.360245pt;}
.fs1b{font-size:47.999876pt;}
.fs23{font-size:48.002000pt;}
.fs25{font-size:48.639507pt;}
.fs24{font-size:48.642000pt;}
.fs11{font-size:49.280450pt;}
.fs9{font-size:49.282000pt;}
.fs19{font-size:51.200654pt;}
.fsd{font-size:54.400122pt;}
.fs1f{font-size:55.039753pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs13{font-size:57.602400pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fse{font-size:64.639466pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.yed{bottom:-1.440002pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:1.599652pt;}
.y125{bottom:1.603214pt;}
.yc6{bottom:1.758071pt;}
.y110{bottom:1.759772pt;}
.y143{bottom:1.759979pt;}
.yea{bottom:1.760009pt;}
.yf5{bottom:1.760010pt;}
.ya4{bottom:1.916857pt;}
.y1a1{bottom:1.920044pt;}
.y130{bottom:1.920408pt;}
.y80{bottom:1.922939pt;}
.y119{bottom:2.078862pt;}
.yd6{bottom:2.079956pt;}
.yd8{bottom:2.080017pt;}
.yd4{bottom:2.080018pt;}
.ybe{bottom:2.080087pt;}
.ycd{bottom:2.083005pt;}
.y191{bottom:2.399963pt;}
.y198{bottom:2.400024pt;}
.y194{bottom:2.400025pt;}
.yee{bottom:2.559998pt;}
.y179{bottom:2.560521pt;}
.y89{bottom:2.561773pt;}
.yd2{bottom:3.039978pt;}
.yda{bottom:3.040039pt;}
.y18{bottom:49.600098pt;}
.y1{bottom:49.600133pt;}
.y19{bottom:52.320069pt;}
.yfb{bottom:57.120118pt;}
.yfa{bottom:82.560059pt;}
.y127{bottom:97.443463pt;}
.y1b1{bottom:103.680054pt;}
.ybb{bottom:106.400086pt;}
.y6f{bottom:107.840088pt;}
.y4f{bottom:108.320069pt;}
.y64{bottom:108.480042pt;}
.y126{bottom:113.121251pt;}
.y124{bottom:115.977611pt;}
.y79{bottom:120.640076pt;}
.y90{bottom:124.480042pt;}
.y1bf{bottom:126.880066pt;}
.y1b0{bottom:129.120057pt;}
.y16{bottom:129.440000pt;}
.yba{bottom:131.840088pt;}
.y7a{bottom:133.280030pt;}
.y133{bottom:133.600037pt;}
.y123{bottom:137.763183pt;}
.y78{bottom:145.920044pt;}
.y8f{bottom:149.760071pt;}
.y1be{bottom:152.320069pt;}
.y1af{bottom:154.400086pt;}
.y15{bottom:154.720000pt;}
.y122{bottom:156.170851pt;}
.yb9{bottom:157.120057pt;}
.y6e{bottom:158.720032pt;}
.y4e{bottom:159.040039pt;}
.y63{bottom:159.200074pt;}
.y121{bottom:170.570735pt;}
.y19f{bottom:181.120057pt;}
.yb8{bottom:182.560059pt;}
.y33{bottom:184.000061pt;}
.y4d{bottom:184.320069pt;}
.y120{bottom:184.805413pt;}
.y62{bottom:189.600037pt;}
.y19e{bottom:195.360047pt;}
.y77{bottom:196.640076pt;}
.y11f{bottom:199.205297pt;}
.y1ae{bottom:205.120057pt;}
.y14{bottom:205.440000pt;}
.yb7{bottom:207.840088pt;}
.y32{bottom:209.440064pt;}
.y4c{bottom:209.760071pt;}
.y11e{bottom:213.446979pt;}
.y177{bottom:220.320069pt;}
.y61{bottom:221.920044pt;}
.y76{bottom:222.080079pt;}
.y19d{bottom:223.680054pt;}
.y1bd{bottom:224.160035pt;}
.y8e{bottom:225.920044pt;}
.yef{bottom:226.240052pt;}
.y1ad{bottom:230.560059pt;}
.yb6{bottom:233.280030pt;}
.y31{bottom:234.720032pt;}
.yec{bottom:235.840088pt;}
.y19c{bottom:237.120057pt;}
.y11d{bottom:238.882915pt;}
.y12c{bottom:241.919375pt;}
.yeb{bottom:243.200074pt;}
.y11c{bottom:244.641367pt;}
.y60{bottom:245.280030pt;}
.y176{bottom:245.600037pt;}
.y12d{bottom:246.222577pt;}
.y12e{bottom:246.245824pt;}
.y75{bottom:247.360047pt;}
.ye9{bottom:248.160035pt;}
.y129{bottom:249.280939pt;}
.y1bc{bottom:249.440064pt;}
.y8d{bottom:251.200074pt;}
.y1ac{bottom:251.680054pt;}
.y155{bottom:253.600037pt;}
.y19b{bottom:253.920044pt;}
.y128{bottom:255.359459pt;}
.y95{bottom:255.840088pt;}
.y12b{bottom:258.401518pt;}
.yb5{bottom:258.560059pt;}
.y30{bottom:260.160035pt;}
.y4b{bottom:260.480042pt;}
.ye7{bottom:264.960083pt;}
.ye6{bottom:265.600037pt;}
.ye8{bottom:266.080079pt;}
.y5f{bottom:266.400086pt;}
.y19a{bottom:268.000061pt;}
.y154{bottom:268.320069pt;}
.y12a{bottom:270.241262pt;}
.y175{bottom:271.040039pt;}
.y74{bottom:272.800049pt;}
.y8c{bottom:276.640076pt;}
.y12f{bottom:278.560203pt;}
.y199{bottom:280.320069pt;}
.y13{bottom:281.600000pt;}
.ye3{bottom:282.560059pt;}
.ye2{bottom:282.880066pt;}
.ye4{bottom:283.200074pt;}
.ye5{bottom:283.360047pt;}
.y6d{bottom:285.440064pt;}
.y153{bottom:287.520081pt;}
.y5e{bottom:293.440064pt;}
.y1ab{bottom:293.920044pt;}
.y174{bottom:296.320069pt;}
.ydf{bottom:297.440064pt;}
.yde{bottom:297.760071pt;}
.ye0{bottom:298.080079pt;}
.ye1{bottom:298.400086pt;}
.y197{bottom:300.480042pt;}
.y196{bottom:300.800049pt;}
.y8b{bottom:301.920044pt;}
.y152{bottom:303.840088pt;}
.y12{bottom:306.880000pt;}
.yb4{bottom:309.280030pt;}
.y2f{bottom:310.880066pt;}
.y4a{bottom:311.200074pt;}
.ydb{bottom:312.480042pt;}
.yd9{bottom:312.800049pt;}
.ydc{bottom:313.120057pt;}
.ydd{bottom:313.280030pt;}
.y5d{bottom:313.760071pt;}
.y195{bottom:314.720032pt;}
.y193{bottom:315.040039pt;}
.y151{bottom:316.320069pt;}
.y1bb{bottom:321.440064pt;}
.y173{bottom:321.760071pt;}
.y73{bottom:323.520081pt;}
.y150{bottom:328.960083pt;}
.y192{bottom:331.360047pt;}
.y11{bottom:332.320000pt;}
.yb3{bottom:334.720032pt;}
.y2e{bottom:336.160035pt;}
.y49{bottom:336.480042pt;}
.y5c{bottom:340.640076pt;}
.yd7{bottom:341.600037pt;}
.yf4{bottom:343.040039pt;}
.y190{bottom:343.520081pt;}
.y8a{bottom:343.686438pt;}
.y1ba{bottom:346.720032pt;}
.y172{bottom:347.040039pt;}
.yd3{bottom:348.000061pt;}
.y72{bottom:348.800049pt;}
.yf1{bottom:351.200074pt;}
.yd5{bottom:354.080079pt;}
.y14f{bottom:354.240052pt;}
.yf2{bottom:357.120057pt;}
.y1aa{bottom:357.280030pt;}
.y88{bottom:357.436585pt;}
.yb2{bottom:360.000061pt;}
.y5b{bottom:360.960083pt;}
.y2d{bottom:361.600037pt;}
.y48{bottom:361.920044pt;}
.yf0{bottom:363.520081pt;}
.y18f{bottom:366.080079pt;}
.y14e{bottom:366.880066pt;}
.yf3{bottom:372.480042pt;}
.y87{bottom:374.877956pt;}
.y1a9{bottom:378.400086pt;}
.y14d{bottom:379.520081pt;}
.y18e{bottom:380.320069pt;}
.y107{bottom:380.798066pt;}
.y188{bottom:380.803377pt;}
.yf6{bottom:384.800049pt;}
.y2c{bottom:386.880066pt;}
.yd1{bottom:387.200074pt;}
.y5a{bottom:388.000061pt;}
.y86{bottom:389.598554pt;}
.y7b{bottom:391.040039pt;}
.y14c{bottom:392.000061pt;}
.y1b9{bottom:393.280030pt;}
.y106{bottom:395.836342pt;}
.y171{bottom:397.760071pt;}
.y104{bottom:398.389289pt;}
.y18d{bottom:398.560059pt;}
.y1a8{bottom:399.520081pt;}
.y85{bottom:404.315483pt;}
.y14b{bottom:404.640076pt;}
.y187{bottom:404.964946pt;}
.yb1{bottom:410.720032pt;}
.y2b{bottom:412.320069pt;}
.y59{bottom:414.080079pt;}
.y10{bottom:414.720000pt;}
.y1b8{bottom:418.560059pt;}
.y84{bottom:418.873483pt;}
.y103{bottom:418.880025pt;}
.y6c{bottom:419.360047pt;}
.y17c{bottom:420.005078pt;}
.y1a7{bottom:420.640076pt;}
.y14a{bottom:426.560059pt;}
.y18c{bottom:426.720032pt;}
.y15a{bottom:429.120057pt;}
.y149{bottom:431.840088pt;}
.y83{bottom:434.406737pt;}
.y102{bottom:435.996551pt;}
.y157{bottom:436.000061pt;}
.y17d{bottom:437.446308pt;}
.y2a{bottom:437.600037pt;}
.y47{bottom:437.920044pt;}
.yf{bottom:440.000000pt;}
.y7e{bottom:440.328438pt;}
.y156{bottom:441.120057pt;}
.y1a6{bottom:441.760071pt;}
.y159{bottom:443.680054pt;}
.y71{bottom:446.080079pt;}
.y82{bottom:446.567301pt;}
.y18b{bottom:447.040039pt;}
.y1a2{bottom:447.680054pt;}
.y170{bottom:448.480042pt;}
.y101{bottom:449.118525pt;}
.y7c{bottom:452.486181pt;}
.y158{bottom:454.080079pt;}
.y17e{bottom:454.727940pt;}
.y81{bottom:458.725099pt;}
.y15b{bottom:461.120057pt;}
.y58{bottom:461.440064pt;}
.y100{bottom:462.397556pt;}
.y29{bottom:463.040039pt;}
.y46{bottom:463.360047pt;}
.y7d{bottom:464.646800pt;}
.y1b7{bottom:465.120057pt;}
.y1a0{bottom:465.920044pt;}
.y70{bottom:467.200074pt;}
.y7f{bottom:468.807019pt;}
.y17f{bottom:472.165474pt;}
.yff{bottom:475.676524pt;}
.y18a{bottom:475.680054pt;}
.y57{bottom:481.760071pt;}
.y1a5{bottom:484.160035pt;}
.ye{bottom:486.560000pt;}
.yb0{bottom:486.880066pt;}
.y28{bottom:488.320069pt;}
.y180{bottom:489.606704pt;}
.yfe{bottom:490.238021pt;}
.y1b6{bottom:490.400086pt;}
.y189{bottom:496.800049pt;}
.yc8{bottom:503.517367pt;}
.y1a4{bottom:505.280030pt;}
.y181{bottom:506.888336pt;}
.y56{bottom:508.800049pt;}
.yaf{bottom:512.160035pt;}
.y27{bottom:513.760071pt;}
.y45{bottom:514.080079pt;}
.yfd{bottom:514.879742pt;}
.y10c{bottom:517.597037pt;}
.yc7{bottom:519.355314pt;}
.yfc{bottom:520.159058pt;}
.y16f{bottom:520.320069pt;}
.y6b{bottom:520.800049pt;}
.y10e{bottom:521.751587pt;}
.y10d{bottom:521.752320pt;}
.yc5{bottom:522.409408pt;}
.y182{bottom:524.325870pt;}
.y109{bottom:524.478274pt;}
.y55{bottom:528.960083pt;}
.y111{bottom:530.075871pt;}
.y10b{bottom:532.958802pt;}
.y108{bottom:535.515667pt;}
.y1b5{bottom:536.960083pt;}
.yae{bottom:537.600037pt;}
.y26{bottom:539.040039pt;}
.y44{bottom:539.360047pt;}
.y183{bottom:541.603806pt;}
.yc4{bottom:541.915346pt;}
.y10a{bottom:543.838343pt;}
.y16e{bottom:545.760071pt;}
.y1a3{bottom:547.520081pt;}
.y10f{bottom:551.677103pt;}
.y54{bottom:556.000061pt;}
.yc3{bottom:559.033708pt;}
.y184{bottom:559.045036pt;}
.y94{bottom:560.160035pt;}
.y1b4{bottom:562.240052pt;}
.yd{bottom:562.720000pt;}
.yad{bottom:562.880066pt;}
.y25{bottom:564.480042pt;}
.y43{bottom:564.800049pt;}
.y16d{bottom:571.040039pt;}
.yc2{bottom:574.238354pt;}
.y185{bottom:576.486266pt;}
.y93{bottom:581.280030pt;}
.y1b3{bottom:587.680054pt;}
.yc{bottom:588.000000pt;}
.yac{bottom:588.320069pt;}
.yc1{bottom:589.431691pt;}
.y24{bottom:589.760071pt;}
.y42{bottom:590.080079pt;}
.y141{bottom:593.280030pt;}
.y186{bottom:593.764238pt;}
.y16c{bottom:596.480042pt;}
.y53{bottom:597.440064pt;}
.yc0{bottom:604.798001pt;}
.y140{bottom:610.880066pt;}
.yb{bottom:613.440000pt;}
.yab{bottom:613.600068pt;}
.y23{bottom:615.200074pt;}
.y41{bottom:615.520050pt;}
.ybf{bottom:621.760059pt;}
.y16b{bottom:621.760071pt;}
.ycf{bottom:623.198530pt;}
.y52{bottom:624.480072pt;}
.yd0{bottom:627.846956pt;}
.ybc{bottom:628.158535pt;}
.y17a{bottom:628.642965pt;}
.y13f{bottom:630.080048pt;}
.ycb{bottom:631.360720pt;}
.y17b{bottom:631.673326pt;}
.ya6{bottom:632.152138pt;}
.ybd{bottom:632.315791pt;}
.yf9{bottom:637.600068pt;}
.yaa{bottom:639.040070pt;}
.yce{bottom:640.477924pt;}
.y22{bottom:640.480072pt;}
.y40{bottom:640.800049pt;}
.yca{bottom:643.996482pt;}
.y178{bottom:644.963532pt;}
.y13e{bottom:646.560059pt;}
.y16a{bottom:647.200074pt;}
.y1b2{bottom:648.960053pt;}
.ya5{bottom:650.076802pt;}
.y51{bottom:650.560059pt;}
.ycc{bottom:651.036574pt;}
.yc9{bottom:652.477963pt;}
.ya3{bottom:653.438170pt;}
.y13d{bottom:659.040070pt;}
.ya9{bottom:664.320069pt;}
.y6a{bottom:665.920044pt;}
.y3f{bottom:666.240052pt;}
.y13c{bottom:671.520050pt;}
.y169{bottom:672.480072pt;}
.ya2{bottom:678.400868pt;}
.ya1{bottom:679.686582pt;}
.y13b{bottom:684.000061pt;}
.y21{bottom:691.200074pt;}
.y3e{bottom:691.520050pt;}
.y13a{bottom:696.480072pt;}
.y168{bottom:697.920044pt;}
.ya0{bottom:704.797412pt;}
.y139{bottom:708.960053pt;}
.ya{bottom:714.880000pt;}
.ya8{bottom:715.040070pt;}
.y20{bottom:716.640046pt;}
.y3d{bottom:716.960053pt;}
.y138{bottom:721.440064pt;}
.y167{bottom:723.200074pt;}
.y9f{bottom:726.399393pt;}
.y137{bottom:733.920044pt;}
.y9{bottom:740.160000pt;}
.ya7{bottom:740.480072pt;}
.y69{bottom:741.920044pt;}
.y3c{bottom:742.240052pt;}
.y9e{bottom:743.200204pt;}
.y136{bottom:746.400055pt;}
.y166{bottom:748.640046pt;}
.y9d{bottom:760.001056pt;}
.y8{bottom:765.600000pt;}
.y68{bottom:767.360047pt;}
.y3b{bottom:767.680054pt;}
.y135{bottom:768.480072pt;}
.y148{bottom:771.200074pt;}
.y134{bottom:773.600068pt;}
.y165{bottom:773.920044pt;}
.y9c{bottom:776.642498pt;}
.y145{bottom:777.600068pt;}
.y144{bottom:782.880066pt;}
.y147{bottom:785.600068pt;}
.y7{bottom:790.880000pt;}
.y1f{bottom:792.640046pt;}
.y3a{bottom:792.960053pt;}
.y9b{bottom:793.436662pt;}
.y146{bottom:795.840058pt;}
.y164{bottom:799.360047pt;}
.y142{bottom:803.040070pt;}
.y9a{bottom:815.037121pt;}
.y6{bottom:816.320000pt;}
.y1e{bottom:818.080048pt;}
.y39{bottom:818.400055pt;}
.y97{bottom:822.075511pt;}
.y163{bottom:824.640046pt;}
.y92{bottom:826.400055pt;}
.y99{bottom:828.794211pt;}
.y96{bottom:835.837730pt;}
.y98{bottom:842.716275pt;}
.y67{bottom:843.360047pt;}
.y38{bottom:843.680054pt;}
.y91{bottom:847.680054pt;}
.y162{bottom:850.080048pt;}
.y117{bottom:861.914654pt;}
.y5{bottom:867.040000pt;}
.y1d{bottom:868.800064pt;}
.y132{bottom:869.120057pt;}
.y161{bottom:875.360062pt;}
.y116{bottom:883.199338pt;}
.y1c{bottom:894.080063pt;}
.y131{bottom:894.400055pt;}
.y160{bottom:900.800064pt;}
.y115{bottom:901.920000pt;}
.y114{bottom:916.802771pt;}
.y66{bottom:919.520066pt;}
.y37{bottom:919.840058pt;}
.y1c1{bottom:923.680054pt;}
.y17{bottom:925.920000pt;}
.y113{bottom:935.997589pt;}
.y50{bottom:944.800064pt;}
.y4{bottom:945.120000pt;}
.y36{bottom:945.120057pt;}
.y112{bottom:948.318613pt;}
.y1c0{bottom:949.120057pt;}
.y15f{bottom:951.520066pt;}
.y11b{bottom:958.556189pt;}
.yf8{bottom:964.480057pt;}
.y1b{bottom:970.240052pt;}
.y3{bottom:970.560000pt;}
.y35{bottom:970.560059pt;}
.y11a{bottom:971.356599pt;}
.y15e{bottom:976.800064pt;}
.yf7{bottom:981.440064pt;}
.y118{bottom:981.598775pt;}
.y1a{bottom:995.520058pt;}
.y2{bottom:995.840000pt;}
.y15d{bottom:1002.240059pt;}
.y65{bottom:1020.960061pt;}
.y34{bottom:1021.280060pt;}
.y15c{bottom:1023.360062pt;}
.h4b{height:5.599976pt;}
.h45{height:5.600036pt;}
.h89{height:5.759949pt;}
.h33{height:5.760009pt;}
.h4a{height:5.760010pt;}
.h29{height:5.916705pt;}
.h49{height:5.919982pt;}
.h31{height:5.919983pt;}
.h34{height:5.920044pt;}
.h8b{height:6.080017pt;}
.h8a{height:6.240051pt;}
.h54{height:6.240332pt;}
.h8c{height:6.400024pt;}
.h67{height:6.403335pt;}
.h8d{height:6.559997pt;}
.h42{height:6.719970pt;}
.h38{height:6.720031pt;}
.h18{height:6.879667pt;}
.h40{height:6.879944pt;}
.h3d{height:6.880004pt;}
.h2f{height:6.880005pt;}
.h39{height:7.039978pt;}
.h35{height:7.040039pt;}
.h3e{height:7.199951pt;}
.h3b{height:7.200012pt;}
.h41{height:7.359985pt;}
.h3a{height:7.359986pt;}
.h37{height:7.360046pt;}
.h3f{height:7.519959pt;}
.h3c{height:7.520019pt;}
.h44{height:7.839966pt;}
.h1f{height:7.998120pt;}
.h80{height:8.799987pt;}
.h75{height:8.799988pt;}
.h8f{height:8.960022pt;}
.h2c{height:8.961964pt;}
.h16{height:9.121861pt;}
.h59{height:9.122348pt;}
.h5e{height:9.601457pt;}
.h6d{height:9.922108pt;}
.h2e{height:10.403353pt;}
.h23{height:10.561568pt;}
.h48{height:13.279969pt;}
.h81{height:13.604145pt;}
.h55{height:25.819153pt;}
.h57{height:26.001969pt;}
.h68{height:27.540587pt;}
.h6b{height:27.735591pt;}
.h74{height:28.688612pt;}
.h6f{height:28.891745pt;}
.h2a{height:29.468030pt;}
.h83{height:30.046693pt;}
.h46{height:30.047406pt;}
.h56{height:30.408860pt;}
.h4d{height:30.624173pt;}
.h8e{height:32.131255pt;}
.h20{height:32.357795pt;}
.h86{height:32.358764pt;}
.h69{height:32.703713pt;}
.h60{height:32.935275pt;}
.h19{height:33.277132pt;}
.h15{height:33.512754pt;}
.h5d{height:33.851727pt;}
.h47{height:33.852541pt;}
.h5a{height:34.091418pt;}
.h32{height:34.092238pt;}
.h2b{height:34.425146pt;}
.h22{height:34.668897pt;}
.h85{height:34.998566pt;}
.hd{height:35.941404pt;}
.h73{height:36.403632pt;}
.h7d{height:36.981445pt;}
.h7a{height:37.361326pt;}
.h7b{height:37.361570pt;}
.h72{height:37.427592pt;}
.h71{height:37.427712pt;}
.h70{height:37.427716pt;}
.h21{height:37.868013pt;}
.h7c{height:38.001222pt;}
.h78{height:38.001462pt;}
.h79{height:38.001466pt;}
.he{height:38.094280pt;}
.h11{height:38.094400pt;}
.h10{height:38.094404pt;}
.h1a{height:38.136142pt;}
.h4e{height:38.441433pt;}
.h53{height:38.713622pt;}
.h52{height:39.082442pt;}
.h51{height:39.710672pt;}
.h50{height:39.723707pt;}
.h4f{height:39.723963pt;}
.h88{height:41.311434pt;}
.h66{height:41.602203pt;}
.h87{height:41.603945pt;}
.h64{height:41.928506pt;}
.h62{height:41.970528pt;}
.h17{height:42.457719pt;}
.h65{height:42.561314pt;}
.h63{height:42.589329pt;}
.h61{height:42.603611pt;}
.h5b{height:43.031139pt;}
.h5c{height:43.335826pt;}
.h84{height:43.604558pt;}
.h82{height:43.913305pt;}
.h28{height:44.491968pt;}
.h24{height:44.795701pt;}
.h26{height:45.442358pt;}
.h27{height:45.457485pt;}
.h25{height:45.487593pt;}
.h12{height:45.969146pt;}
.h58{height:46.225591pt;}
.h1c{height:48.768859pt;}
.h1d{height:49.114172pt;}
.h7{height:49.159043pt;}
.h76{height:49.371725pt;}
.h9{height:49.419255pt;}
.h6c{height:49.691652pt;}
.h6e{height:50.011737pt;}
.h7e{height:50.011861pt;}
.h30{height:50.542731pt;}
.h8{height:51.141625pt;}
.h36{height:51.639652pt;}
.h43{height:52.005292pt;}
.h4c{height:53.014562pt;}
.h6a{height:55.980171pt;}
.h5f{height:57.249354pt;}
.h5{height:57.257711pt;}
.h1e{height:58.358581pt;}
.h13{height:58.659722pt;}
.h6{height:58.660277pt;}
.h77{height:58.697727pt;}
.h7f{height:59.915556pt;}
.hb{height:60.299139pt;}
.h2{height:60.301010pt;}
.hf{height:61.774332pt;}
.h14{height:62.530612pt;}
.ha{height:74.129058pt;}
.h4{height:74.129760pt;}
.hc{height:75.036592pt;}
.h3{height:75.037303pt;}
.h2d{height:85.211944pt;}
.h1b{height:93.185019pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2d{width:1.119995pt;}
.w25{width:1.600006pt;}
.w14{width:1.919983pt;}
.w32{width:2.559997pt;}
.w29{width:2.720001pt;}
.w35{width:2.880004pt;}
.w43{width:2.880005pt;}
.w20{width:3.359985pt;}
.w1b{width:3.359986pt;}
.w30{width:3.520019pt;}
.w38{width:3.679993pt;}
.w16{width:4.000000pt;}
.w18{width:4.319977pt;}
.w22{width:4.320007pt;}
.w45{width:4.320008pt;}
.w40{width:4.480042pt;}
.w27{width:4.640014pt;}
.w1e{width:4.799988pt;}
.w39{width:4.959991pt;}
.w2e{width:4.960022pt;}
.w3b{width:5.119995pt;}
.w2a{width:5.440002pt;}
.w23{width:5.440003pt;}
.w33{width:5.599975pt;}
.w36{width:5.759949pt;}
.w1c{width:5.759979pt;}
.w21{width:5.760009pt;}
.w41{width:6.239991pt;}
.w3d{width:6.399994pt;}
.wf{width:8.000000pt;}
.w6{width:8.000030pt;}
.w53{width:10.879974pt;}
.w5f{width:14.239991pt;}
.w9{width:15.836333pt;}
.w1d{width:16.000000pt;}
.w58{width:17.919317pt;}
.w55{width:17.921638pt;}
.w64{width:18.079956pt;}
.wa{width:19.039712pt;}
.w46{width:19.199997pt;}
.wc{width:20.000286pt;}
.w26{width:20.160004pt;}
.w5{width:20.325777pt;}
.w66{width:22.720001pt;}
.wb{width:23.519625pt;}
.w11{width:23.839966pt;}
.w4e{width:23.839996pt;}
.w4d{width:23.839997pt;}
.w10{width:23.840026pt;}
.w42{width:24.159973pt;}
.w17{width:24.160003pt;}
.w15{width:24.160004pt;}
.w3e{width:24.160034pt;}
.we{width:24.319613pt;}
.w50{width:24.319977pt;}
.w19{width:28.160003pt;}
.w4c{width:28.480011pt;}
.w3f{width:32.159973pt;}
.w44{width:32.160034pt;}
.w52{width:33.600006pt;}
.w2b{width:35.679992pt;}
.w48{width:35.839996pt;}
.w3a{width:36.160004pt;}
.w63{width:36.320007pt;}
.w37{width:38.240005pt;}
.w1f{width:39.679992pt;}
.w1a{width:39.679993pt;}
.w2f{width:39.680023pt;}
.w5e{width:42.559997pt;}
.w12{width:45.600036pt;}
.w4b{width:45.759995pt;}
.w4f{width:46.079987pt;}
.w31{width:46.880004pt;}
.w28{width:47.040009pt;}
.w34{width:47.200012pt;}
.w3c{width:47.679993pt;}
.w8{width:49.283457pt;}
.w13{width:51.199997pt;}
.w7{width:51.681664pt;}
.w4{width:51.682528pt;}
.w51{width:55.200012pt;}
.w5a{width:55.680053pt;}
.w24{width:58.080001pt;}
.w5d{width:60.960006pt;}
.w4a{width:62.079987pt;}
.w2c{width:62.240005pt;}
.wd{width:64.479055pt;}
.w54{width:65.760010pt;}
.w56{width:67.361736pt;}
.w59{width:67.680083pt;}
.w65{width:74.240051pt;}
.w2{width:75.677982pt;}
.w57{width:78.078521pt;}
.w5c{width:78.399994pt;}
.w47{width:82.880005pt;}
.w49{width:91.360001pt;}
.w62{width:102.560013pt;}
.w3{width:108.163350pt;}
.w60{width:151.200012pt;}
.w61{width:156.320007pt;}
.w5b{width:375.357599pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:79.839996pt;}
.x92{left:81.919998pt;}
.x90{left:92.000000pt;}
.x3f{left:95.200458pt;}
.x34{left:98.880090pt;}
.x8f{left:100.639999pt;}
.x33{left:103.201012pt;}
.x15{left:109.440002pt;}
.x2e{left:118.239998pt;}
.x1{left:125.280000pt;}
.x2{left:129.600000pt;}
.x95{left:133.276123pt;}
.x3{left:137.760000pt;}
.x85{left:139.199997pt;}
.x8{left:144.000000pt;}
.x98{left:147.039993pt;}
.x16{left:153.759995pt;}
.x94{left:162.561566pt;}
.x17{left:180.320007pt;}
.x7{left:186.880000pt;}
.x81{left:187.842501pt;}
.x79{left:189.601800pt;}
.x32{left:196.639999pt;}
.x1b{left:198.720001pt;}
.x1c{left:200.479996pt;}
.x18{left:202.240005pt;}
.x80{left:204.000139pt;}
.x82{left:208.636699pt;}
.x7d{left:210.399953pt;}
.x96{left:212.960007pt;}
.x76{left:218.080002pt;}
.x35{left:219.197764pt;}
.x4c{left:222.240005pt;}
.x19{left:223.360001pt;}
.x1a{left:225.119995pt;}
.x40{left:228.642988pt;}
.x5{left:231.680000pt;}
.x6{left:235.360000pt;}
.x43{left:236.318126pt;}
.x88{left:238.080002pt;}
.x8c{left:240.479996pt;}
.x45{left:241.436390pt;}
.x70{left:244.320007pt;}
.x1e{left:245.600215pt;}
.x8d{left:246.559998pt;}
.x44{left:250.080843pt;}
.x75{left:251.039993pt;}
.x36{left:267.993986pt;}
.x65{left:269.920013pt;}
.xd{left:273.120000pt;}
.x4{left:278.400000pt;}
.x6f{left:279.679993pt;}
.x71{left:281.440002pt;}
.x30{left:284.160004pt;}
.x37{left:288.154692pt;}
.x31{left:291.200012pt;}
.x5c{left:296.480011pt;}
.x91{left:304.480011pt;}
.xa{left:320.320000pt;}
.xa0{left:325.600006pt;}
.x9{left:326.880000pt;}
.x97{left:328.000000pt;}
.x83{left:330.716742pt;}
.x7a{left:331.840208pt;}
.x72{left:341.920013pt;}
.x38{left:343.033592pt;}
.x10{left:345.920013pt;}
.x4d{left:358.239990pt;}
.x39{left:359.196632pt;}
.xc{left:365.280000pt;}
.x9f{left:366.239990pt;}
.x1d{left:369.600006pt;}
.xb{left:372.960000pt;}
.x5d{left:380.959991pt;}
.x4e{left:382.399994pt;}
.x46{left:389.114169pt;}
.x84{left:394.876445pt;}
.x7b{left:395.834594pt;}
.x99{left:397.279999pt;}
.x73{left:398.880005pt;}
.x9b{left:403.519989pt;}
.x66{left:404.959991pt;}
.x2f{left:412.160004pt;}
.x9e{left:413.760010pt;}
.x29{left:415.839161pt;}
.x3a{left:417.114192pt;}
.x3b{left:421.434432pt;}
.x89{left:423.679993pt;}
.x20{left:425.605189pt;}
.x1f{left:428.963562pt;}
.x28{left:432.802090pt;}
.x5e{left:437.760010pt;}
.x4f{left:439.200012pt;}
.x67{left:441.119995pt;}
.x21{left:443.521150pt;}
.x48{left:445.593316pt;}
.x7e{left:450.082472pt;}
.x49{left:452.313221pt;}
.x47{left:460.793088pt;}
.x7f{left:466.881856pt;}
.x77{left:470.558486pt;}
.x8a{left:472.000000pt;}
.xe{left:473.600006pt;}
.x50{left:474.559998pt;}
.x8e{left:476.959991pt;}
.x7c{left:478.076782pt;}
.x52{left:479.200012pt;}
.x4a{left:480.952555pt;}
.x5a{left:485.760010pt;}
.x4b{left:487.832694pt;}
.x93{left:491.364873pt;}
.x2b{left:499.520079pt;}
.x59{left:501.279999pt;}
.x51{left:502.720001pt;}
.x22{left:510.883041pt;}
.x5b{left:514.559998pt;}
.x78{left:518.233597pt;}
.x24{left:523.202867pt;}
.x23{left:526.082469pt;}
.x74{left:531.039978pt;}
.x13{left:532.000000pt;}
.x86{left:533.280029pt;}
.x68{left:534.719971pt;}
.x6a{left:539.359985pt;}
.x25{left:541.441510pt;}
.x2c{left:544.967226pt;}
.x2a{left:545.922966pt;}
.x53{left:546.880005pt;}
.x5f{left:548.000000pt;}
.x61{left:552.640015pt;}
.x60{left:554.880005pt;}
.x3c{left:556.634881pt;}
.x69{left:558.880005pt;}
.x56{left:567.200012pt;}
.x6d{left:568.159973pt;}
.x42{left:569.591456pt;}
.x87{left:575.039978pt;}
.x41{left:579.991300pt;}
.x8b{left:580.960022pt;}
.x6b{left:592.320007pt;}
.x6e{left:596.320007pt;}
.x54{left:598.880005pt;}
.x58{left:602.400024pt;}
.x57{left:603.520020pt;}
.x62{left:605.599976pt;}
.x14{left:607.200012pt;}
.x64{left:609.280029pt;}
.x3e{left:610.710365pt;}
.x63{left:613.599976pt;}
.x55{left:615.039978pt;}
.x6c{left:616.479980pt;}
.x9d{left:622.719971pt;}
.x27{left:625.761787pt;}
.x3d{left:629.594209pt;}
.x26{left:637.765911pt;}
.x2d{left:660.166894pt;}
.x12{left:664.640015pt;}
.x11{left:668.960022pt;}
.x9c{left:695.520020pt;}
.x9a{left:699.359985pt;}
}




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